Contact Form by BestWebSoft - Version 4.0.1

Version Description

  • 19.07.2016 =
  • Update : An ability to enable/disable Captcha, Google Captcha, Subscribe checkbox and an ability to save email to the database for each multi forms (if Contact Form Multi is activated).
  • Update : Color picker script was replaced.
Download this release

Release Info

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

Code changes from version 4.0.0 to 4.0.1

Files changed (52) hide show
  1. bws_menu/bws_functions.php +37 -21
  2. bws_menu/bws_menu.php +33 -29
  3. bws_menu/css/general_style.css +1 -4
  4. bws_menu/css/style.css +15 -18
  5. bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
  6. bws_menu/languages/bestwebsoft-fr_FR.po +173 -175
  7. bws_menu/languages/bestwebsoft-pl_PL.mo +0 -0
  8. bws_menu/languages/bestwebsoft-pl_PL.po +90 -93
  9. bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
  10. bws_menu/languages/bestwebsoft-ru_RU.po +102 -97
  11. bws_menu/languages/bestwebsoft-uk.mo +0 -0
  12. bws_menu/languages/bestwebsoft-uk.po +102 -97
  13. bws_menu/product_list.php +136 -116
  14. contact_form.php +1099 -727
  15. css/style.css +60 -7
  16. js/script.js +5 -3
  17. languages/contact-form-plugin-af_ZA.mo +0 -0
  18. languages/contact-form-plugin-af_ZA.po +315 -308
  19. languages/contact-form-plugin-ca.mo +0 -0
  20. languages/contact-form-plugin-ca.po +320 -313
  21. languages/contact-form-plugin-cs_CZ.mo +0 -0
  22. languages/contact-form-plugin-cs_CZ.po +322 -312
  23. languages/contact-form-plugin-da_DK.mo +0 -0
  24. languages/contact-form-plugin-da_DK.po +323 -315
  25. languages/contact-form-plugin-de_DE.mo +0 -0
  26. languages/contact-form-plugin-de_DE.po +319 -309
  27. languages/contact-form-plugin-el.mo +0 -0
  28. languages/contact-form-plugin-el.po +334 -323
  29. languages/contact-form-plugin-es_ES.mo +0 -0
  30. languages/contact-form-plugin-es_ES.po +324 -311
  31. languages/contact-form-plugin-et.mo +0 -0
  32. languages/contact-form-plugin-et.po +322 -312
  33. languages/contact-form-plugin-fr_FR.mo +0 -0
  34. languages/contact-form-plugin-fr_FR.po +327 -314
  35. languages/contact-form-plugin-ja.mo +0 -0
  36. languages/contact-form-plugin-ja.po +318 -311
  37. languages/contact-form-plugin-nb_NO.mo +0 -0
  38. languages/contact-form-plugin-nb_NO.po +322 -312
  39. languages/contact-form-plugin-nl_NL.mo +0 -0
  40. languages/contact-form-plugin-nl_NL.po +324 -313
  41. languages/contact-form-plugin-pt_BR.mo +0 -0
  42. languages/contact-form-plugin-pt_BR.po +332 -327
  43. languages/contact-form-plugin-ru_RU.mo +0 -0
  44. languages/contact-form-plugin-ru_RU.po +299 -350
  45. languages/contact-form-plugin-sk_SK.mo +0 -0
  46. languages/contact-form-plugin-sk_SK.po +321 -311
  47. languages/contact-form-plugin-sv_SE.mo +0 -0
  48. languages/contact-form-plugin-sv_SE.po +321 -314
  49. languages/contact-form-plugin-tr.mo +0 -0
  50. languages/contact-form-plugin-tr.po +323 -314
  51. languages/contact-form-plugin-uk.mo +0 -0
  52. languages/contact-form-plugin-uk.po +273 -324
bws_menu/bws_functions.php CHANGED
@@ -27,15 +27,15 @@ if ( ! function_exists ( 'bws_general_menu' ) ) {
27
  if ( ! $bws_general_menu_exist ) {
28
  /* we check also menu exist in global array as in old plugins $bws_general_menu_exist variable not exist */
29
  foreach ( $menu as $value_menu ) {
30
- if ( 'bws_plugins' == $value_menu[2] ) {
31
  $bws_general_menu_exist = true;
32
  return;
33
  }
34
  }
35
 
36
- add_menu_page( 'BWS Panel', 'BWS Panel', 'manage_options', 'bws_panel', 'bws_add_menu_render', plugins_url( 'images/bestwebsoft-logo-white.svg', __FILE__ ), '2.1' );
37
 
38
- add_submenu_page( 'bws_panel', __( 'Plugins', 'bestwebsoft' ), __( 'Plugins', 'bestwebsoft' ), 'manage_options', 'bws_plugins', 'bws_add_menu_render' );
39
  add_submenu_page( 'bws_panel', __( 'Themes', 'bestwebsoft' ), __( 'Themes', 'bestwebsoft' ), 'manage_options', 'bws_themes', 'bws_add_menu_render' );
40
  add_submenu_page( 'bws_panel', __( 'System Status', 'bestwebsoft' ), __( 'System Status', 'bestwebsoft' ), 'manage_options', 'bws_system_status', 'bws_add_menu_render' );
41
 
@@ -323,7 +323,7 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
323
  } elseif ( "you_are_banned" == $value->package ) {
324
  $result['error'] = __( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' );
325
  } elseif ( "time_out" == $value->package ) {
326
- $result['error'] = __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your", 'bestwebsoft' ) . ' <a href="http://bestwebsoft.com/wp-admin/admin.php?page=bws_plugins_client_area">Client area</a>';
327
  } elseif ( "duplicate_domen_for_trial" == $value->package ) {
328
  $result['error'] = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
329
  }
@@ -736,14 +736,19 @@ if ( ! function_exists( 'bws_plugin_banner_to_settings' ) ) {
736
  function bws_plugin_banner_to_settings( $plugin_info, $plugin_options_name, $banner_url_or_slug, $settings_url, $post_type_url = false ) {
737
  global $wp_version, $bws_plugin_banner_to_settings;
738
 
739
- $plugin_options = get_option( $plugin_options_name );
 
 
740
 
741
  if ( isset( $plugin_options['display_settings_notice'] ) && 0 == $plugin_options['display_settings_notice'] )
742
  return;
743
 
744
  if ( isset( $_POST['bws_hide_settings_notice_' . $plugin_options_name ] ) && check_admin_referer( plugin_basename( __FILE__ ), 'bws_settings_nonce_name' ) ) {
745
  $plugin_options['display_settings_notice'] = 0;
746
- update_option( $plugin_options_name, $plugin_options );
 
 
 
747
  return;
748
  }
749
 
@@ -765,27 +770,33 @@ if ( ! function_exists( 'bws_plugin_suggest_feature_banner' ) ) {
765
  function bws_plugin_suggest_feature_banner( $plugin_info, $plugin_options_name, $banner_url_or_slug ) {
766
  global $wp_version;
767
 
768
- $plugin_options = get_option( $plugin_options_name );
 
 
769
 
770
  if ( isset( $plugin_options['display_suggest_feature_banner'] ) && 0 == $plugin_options['display_suggest_feature_banner'] )
771
  return;
772
 
773
  if ( ! isset( $plugin_options['first_install'] ) ) {
774
  $plugin_options['first_install'] = strtotime( "now" );
775
- update_option( $plugin_options_name, $plugin_options );
776
- $return = true;
777
  } elseif ( strtotime( '-2 week' ) < $plugin_options['first_install'] ) {
778
  $return = true;
779
  }
780
 
781
  if ( ! isset( $plugin_options['go_settings_counter'] ) ) {
782
  $plugin_options['go_settings_counter'] = 1;
783
- update_option( $plugin_options_name, $plugin_options );
784
- $return = true;
785
  } elseif ( 20 > $plugin_options['go_settings_counter'] ) {
786
  $plugin_options['go_settings_counter'] = $plugin_options['go_settings_counter'] + 1;
787
- update_option( $plugin_options_name, $plugin_options );
788
- $return = true;
 
 
 
 
 
 
789
  }
790
 
791
  if ( isset( $return ) )
@@ -793,7 +804,10 @@ if ( ! function_exists( 'bws_plugin_suggest_feature_banner' ) ) {
793
 
794
  if ( isset( $_POST['bws_hide_suggest_feature_banner_' . $plugin_options_name ] ) && check_admin_referer( $plugin_info['Name'], 'bws_settings_nonce_name' ) ) {
795
  $plugin_options['display_suggest_feature_banner'] = 0;
796
- update_option( $plugin_options_name, $plugin_options );
 
 
 
797
  return;
798
  }
799
 
@@ -862,7 +876,7 @@ if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
862
  $result = activate_plugin( $plugin, '', is_network_admin() );
863
  if ( is_wp_error( $result ) ) {
864
  if ( 'unexpected_output' == $result->get_error_code() ) {
865
- $redirect = self_admin_url( 'admin.php?page=bws_plugins&error=true&charsout=' . strlen( $result->get_error_data() ) . '&plugin=' . $plugin );
866
  wp_redirect( add_query_arg( '_error_nonce', wp_create_nonce( 'plugin-activation-error_' . $plugin ), $redirect ) );
867
  exit();
868
  } else {
@@ -879,11 +893,11 @@ if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
879
  unset( $recent[ $plugin ] );
880
  update_site_option( 'recently_activated', $recent );
881
  }
882
- wp_redirect( self_admin_url( 'admin.php?page=bws_plugins&activate=true' ) );
883
  exit();
884
  }
885
 
886
- if ( isset( $_GET['page'] ) && $_GET['page'] == 'bws_plugins' ) {
887
  if ( ! session_id() )
888
  @session_start();
889
  }
@@ -898,7 +912,7 @@ if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
898
  wp_enqueue_style( 'bws-admin-css', plugins_url( 'css/general_style.css', __FILE__ ) );
899
  wp_enqueue_script( 'bws-admin-scripts', plugins_url( 'js/general_script.js', __FILE__ ), array( 'jquery' ) );
900
 
901
- if ( isset( $_GET['page'] ) && in_array( $_GET['page'], array( 'bws_panel', 'bws_plugins', 'bws_themes', 'bws_system_status' ) ) ) {
902
  wp_enqueue_style( 'bws_menu_style', plugins_url( 'css/style.css', __FILE__ ) );
903
  wp_enqueue_script( 'bws_menu_script', plugins_url( 'js/bws_menu.js' , __FILE__ ) );
904
  wp_enqueue_script( 'theme-install' );
@@ -911,7 +925,7 @@ if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
911
  if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
912
  function bws_plugins_admin_head() {
913
  global $bws_shortcode_list, $wp_version, $post_type;
914
- if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) { ?>
915
  <noscript>
916
  <style type="text/css">
917
  .bws_product_button {
@@ -1222,7 +1236,9 @@ if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
1222
  /* add help tab */
1223
  if ( ! function_exists( 'bws_help_tab' ) ) {
1224
  function bws_help_tab( $screen, $args ) {
1225
- $content = '<p><a href="http://support.bestwebsoft.com/hc/en-us/sections/' . $args['section'] . '" target="_blank">' . __( 'Visit Help Center', 'bestwebsoft' ) . '</a></p>';
 
 
1226
 
1227
  $screen->add_help_tab(
1228
  array(
@@ -1380,7 +1396,7 @@ if ( ! function_exists( 'bws_custom_code_tab' ) ) {
1380
  } ?>
1381
  </big></p>
1382
  <p><label><input type="checkbox" name="bws_custom_<?php echo $extension; ?>_active" value="1" <?php if ( ${"is_{$extension}_active"} ) echo "checked"; ?> /> <?php _e( 'Activate', 'bestwebsoft' ); ?></label></p>
1383
- <textarea cols="70" rows="25" name="bws_newcontent_<?php echo $extension; ?>" id="bws_newcontent_<?php echo $extension; ?>"><?php echo ${"content_{$extension}"}; ?></textarea>
1384
  <p class="description">
1385
  <a href="<?php echo ( 'css' == $extension ) ? 'https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Getting_started' : 'http://php.net/' ?>" target="_blank">
1386
  <?php printf( __( 'Learn more about %s', 'bestwebsoft' ), strtoupper( $extension ) ); ?>
27
  if ( ! $bws_general_menu_exist ) {
28
  /* we check also menu exist in global array as in old plugins $bws_general_menu_exist variable not exist */
29
  foreach ( $menu as $value_menu ) {
30
+ if ( 'bws_panel' == $value_menu[2] ) {
31
  $bws_general_menu_exist = true;
32
  return;
33
  }
34
  }
35
 
36
+ add_menu_page( 'BWS Panel', 'BWS Panel', 'manage_options', 'bws_panel', 'bws_add_menu_render', plugins_url( 'images/bestwebsoft-logo-white.svg', __FILE__ ), '1001' );
37
 
38
+ add_submenu_page( 'bws_panel', __( 'Plugins', 'bestwebsoft' ), __( 'Plugins', 'bestwebsoft' ), 'manage_options', 'bws_panel', 'bws_add_menu_render' );
39
  add_submenu_page( 'bws_panel', __( 'Themes', 'bestwebsoft' ), __( 'Themes', 'bestwebsoft' ), 'manage_options', 'bws_themes', 'bws_add_menu_render' );
40
  add_submenu_page( 'bws_panel', __( 'System Status', 'bestwebsoft' ), __( 'System Status', 'bestwebsoft' ), 'manage_options', 'bws_system_status', 'bws_add_menu_render' );
41
 
323
  } elseif ( "you_are_banned" == $value->package ) {
324
  $result['error'] = __( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' );
325
  } elseif ( "time_out" == $value->package ) {
326
+ $result['error'] = __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your", 'bestwebsoft' ) . ' <a href="http://bestwebsoft.com/wp-admin/admin.php?page=client-area">Client area</a>';
327
  } elseif ( "duplicate_domen_for_trial" == $value->package ) {
328
  $result['error'] = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
329
  }
736
  function bws_plugin_banner_to_settings( $plugin_info, $plugin_options_name, $banner_url_or_slug, $settings_url, $post_type_url = false ) {
737
  global $wp_version, $bws_plugin_banner_to_settings;
738
 
739
+ $is_network_admin = is_network_admin();
740
+
741
+ $plugin_options = $is_network_admin ? get_site_option( $plugin_options_name ) : get_option( $plugin_options_name );
742
 
743
  if ( isset( $plugin_options['display_settings_notice'] ) && 0 == $plugin_options['display_settings_notice'] )
744
  return;
745
 
746
  if ( isset( $_POST['bws_hide_settings_notice_' . $plugin_options_name ] ) && check_admin_referer( plugin_basename( __FILE__ ), 'bws_settings_nonce_name' ) ) {
747
  $plugin_options['display_settings_notice'] = 0;
748
+ if ( $is_network_admin )
749
+ update_site_option( $plugin_options_name, $plugin_options );
750
+ else
751
+ update_option( $plugin_options_name, $plugin_options );
752
  return;
753
  }
754
 
770
  function bws_plugin_suggest_feature_banner( $plugin_info, $plugin_options_name, $banner_url_or_slug ) {
771
  global $wp_version;
772
 
773
+ $is_network_admin = is_network_admin();
774
+
775
+ $plugin_options = $is_network_admin ? get_site_option( $plugin_options_name ) : get_option( $plugin_options_name );
776
 
777
  if ( isset( $plugin_options['display_suggest_feature_banner'] ) && 0 == $plugin_options['display_suggest_feature_banner'] )
778
  return;
779
 
780
  if ( ! isset( $plugin_options['first_install'] ) ) {
781
  $plugin_options['first_install'] = strtotime( "now" );
782
+ $update_option = $return = true;
 
783
  } elseif ( strtotime( '-2 week' ) < $plugin_options['first_install'] ) {
784
  $return = true;
785
  }
786
 
787
  if ( ! isset( $plugin_options['go_settings_counter'] ) ) {
788
  $plugin_options['go_settings_counter'] = 1;
789
+ $update_option = $return = true;
 
790
  } elseif ( 20 > $plugin_options['go_settings_counter'] ) {
791
  $plugin_options['go_settings_counter'] = $plugin_options['go_settings_counter'] + 1;
792
+ $update_option = $return = true;
793
+ }
794
+
795
+ if ( isset( $update_option ) ) {
796
+ if ( $is_network_admin )
797
+ update_site_option( $plugin_options_name, $plugin_options );
798
+ else
799
+ update_option( $plugin_options_name, $plugin_options );
800
  }
801
 
802
  if ( isset( $return ) )
804
 
805
  if ( isset( $_POST['bws_hide_suggest_feature_banner_' . $plugin_options_name ] ) && check_admin_referer( $plugin_info['Name'], 'bws_settings_nonce_name' ) ) {
806
  $plugin_options['display_suggest_feature_banner'] = 0;
807
+ if ( $is_network_admin )
808
+ update_site_option( $plugin_options_name, $plugin_options );
809
+ else
810
+ update_option( $plugin_options_name, $plugin_options );
811
  return;
812
  }
813
 
876
  $result = activate_plugin( $plugin, '', is_network_admin() );
877
  if ( is_wp_error( $result ) ) {
878
  if ( 'unexpected_output' == $result->get_error_code() ) {
879
+ $redirect = self_admin_url( 'admin.php?page=bws_panel&error=true&charsout=' . strlen( $result->get_error_data() ) . '&plugin=' . $plugin );
880
  wp_redirect( add_query_arg( '_error_nonce', wp_create_nonce( 'plugin-activation-error_' . $plugin ), $redirect ) );
881
  exit();
882
  } else {
893
  unset( $recent[ $plugin ] );
894
  update_site_option( 'recently_activated', $recent );
895
  }
896
+ wp_redirect( self_admin_url( 'admin.php?page=bws_panel&activate=true' ) );
897
  exit();
898
  }
899
 
900
+ if ( isset( $_GET['page'] ) && $_GET['page'] == 'bws_panel' ) {
901
  if ( ! session_id() )
902
  @session_start();
903
  }
912
  wp_enqueue_style( 'bws-admin-css', plugins_url( 'css/general_style.css', __FILE__ ) );
913
  wp_enqueue_script( 'bws-admin-scripts', plugins_url( 'js/general_script.js', __FILE__ ), array( 'jquery' ) );
914
 
915
+ if ( isset( $_GET['page'] ) && in_array( $_GET['page'], array( 'bws_panel', 'bws_themes', 'bws_system_status' ) ) ) {
916
  wp_enqueue_style( 'bws_menu_style', plugins_url( 'css/style.css', __FILE__ ) );
917
  wp_enqueue_script( 'bws_menu_script', plugins_url( 'js/bws_menu.js' , __FILE__ ) );
918
  wp_enqueue_script( 'theme-install' );
925
  if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
926
  function bws_plugins_admin_head() {
927
  global $bws_shortcode_list, $wp_version, $post_type;
928
+ if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_panel" ) { ?>
929
  <noscript>
930
  <style type="text/css">
931
  .bws_product_button {
1236
  /* add help tab */
1237
  if ( ! function_exists( 'bws_help_tab' ) ) {
1238
  function bws_help_tab( $screen, $args ) {
1239
+ $url = ( ! empty( $args['section'] ) ) ? 'http://support.bestwebsoft.com/hc/en-us/sections/' . $args['section'] : 'http://support.bestwebsoft.com/';
1240
+
1241
+ $content = '<p><a href="' . $url . '" target="_blank">' . __( 'Visit Help Center', 'bestwebsoft' ) . '</a></p>';
1242
 
1243
  $screen->add_help_tab(
1244
  array(
1396
  } ?>
1397
  </big></p>
1398
  <p><label><input type="checkbox" name="bws_custom_<?php echo $extension; ?>_active" value="1" <?php if ( ${"is_{$extension}_active"} ) echo "checked"; ?> /> <?php _e( 'Activate', 'bestwebsoft' ); ?></label></p>
1399
+ <textarea cols="70" rows="25" name="bws_newcontent_<?php echo $extension; ?>" id="bws_newcontent_<?php echo $extension; ?>"><?php if ( isset( ${"content_{$extension}"} ) ) echo ${"content_{$extension}"}; ?></textarea>
1400
  <p class="description">
1401
  <a href="<?php echo ( 'css' == $extension ) ? 'https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Getting_started' : 'http://php.net/' ?>" target="_blank">
1402
  <?php printf( __( 'Learn more about %s', 'bestwebsoft' ), strtoupper( $extension ) ); ?>
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 1.8.8
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
@@ -12,7 +12,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
12
  global $wpdb, $wp_version, $bws_plugin_info, $bstwbsftwppdtplgns_options;
13
  $error = $message = $bwsmn_form_email = '';
14
 
15
- if ( 'bws_plugins' == $_GET['page'] || 'bws_panel' == $_GET['page'] ) {
16
 
17
  if ( ! function_exists( 'is_plugin_active_for_network' ) )
18
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
@@ -26,12 +26,14 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
26
  $update_availible_all = get_site_transient( 'update_plugins' );
27
 
28
  $plugin_category = isset( $_GET['category'] ) ? $_GET['category'] : 'all';
29
- $plugin_categories_count = array();
30
 
31
  if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || ! isset( $_GET['sub'] ) ) {
32
  $bws_plugins_update_availible = $bws_plugins_expired = array();
33
  foreach ( $bws_plugins as $key_plugin => $value_plugin ) {
34
- $plugin_categories_count[ $value_plugin['category'] ] = isset( $plugin_categories_count[ $value_plugin['category'] ] ) ? $plugin_categories_count[ $value_plugin['category'] ] + 1 : 1;
 
 
 
35
 
36
  $is_installed = array_key_exists( $key_plugin, $all_plugins );
37
  $is_pro_installed = false;
@@ -59,7 +61,9 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
59
  $bws_plugins = $bws_plugins_update_availible + $bws_plugins_expired + $bws_plugins;
60
  } else {
61
  foreach ( $bws_plugins as $key_plugin => $value_plugin ) {
62
- $plugin_categories_count[ $value_plugin['category'] ] = isset( $plugin_categories_count[ $value_plugin['category'] ] ) ? $plugin_categories_count[ $value_plugin['category'] ] + 1 : 1;
 
 
63
  }
64
  }
65
 
@@ -109,11 +113,11 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
109
  if ( "wrong_license_key" == $value->package ) {
110
  $error = __( "Wrong license key", 'bestwebsoft' );
111
  } elseif ( "wrong_domain" == $value->package ) {
112
- $error = __( 'This license key is bind to another website. Change it via personal Client Area.', 'bestwebsoft' ) . '<a target="_blank" href="http://bestwebsoft.com/wp-admin/admin.php?page=bws_plugins_client_area">' . __( 'Log in', 'bestwebsoft' ) . '</a>';
113
  } elseif ( "you_are_banned" == $value->package ) {
114
  $error = __( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' );
115
  } elseif ( "time_out" == $value->package ) {
116
- $error = __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your", 'bestwebsoft' ) . ' <a target="_blank" href="http://bestwebsoft.com/wp-admin/admin.php?page=bws_plugins_client_area">Client Area</a>';
117
  } elseif ( "duplicate_domen_for_trial" == $value->package ) {
118
  $error = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
119
  } elseif ( is_array( $value->package ) && ! empty( $value->package ) ) {
@@ -142,7 +146,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
142
  update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
143
  }
144
  } else {
145
- $error = __( "Please, enter Your license key", 'bestwebsoft' );
146
  }
147
  }
148
  }
@@ -275,22 +279,20 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
275
  </div>
276
  <div class="bws-menu-item-icon">&#8226;&#8226;&#8226;</div>
277
  <div class="bws-nav-tab-wrapper">
278
- <a class="bws-nav-tab<?php if ( 'bws_plugins' == $_GET['page'] || 'bws_panel' == $_GET['page'] ) echo ' bws-nav-tab-active'; ?>" href="admin.php?page=bws_plugins"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
279
  <a class="bws-nav-tab<?php if ( 'bws_themes' == $_GET['page'] ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_themes' ); ?>"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
280
  </div>
281
  <div class="bws-help-links-wrapper">
282
  <a <?php if ( 'bws_system_status' == $_GET['page'] ) echo ' class="bws-nav-tab-active"'; ?> href="<?php echo self_admin_url( 'admin.php?page=bws_system_status' ); ?>"><?php _e( 'System status', 'bestwebsoft' ); ?></a>
283
  <a href="<?php echo esc_url( 'http://support.bestwebsoft.com/home' ); ?>" target="_blank"><?php _e( 'Support', 'bestwebsoft' ); ?></a>
284
- <a href="<?php echo esc_url( 'http://bestwebsoft.com/wp-login.php' ); ?>" target="_blank" title="<?php _e( 'Manage purchased licenses & subscriptions', 'bestwebsoft' ); ?>"><?php _e( 'My Account', 'bestwebsoft' ); ?></a>
285
  </div>
286
  <div class="clear"></div>
287
  </div>
288
- <?php if ( ( 'bws_plugins' == $_GET['page'] || 'bws_panel' == $_GET['page'] ) && ! isset( $_POST['bws_plugin_action_submit'] ) ) { ?>
289
  <div class="bws-membership-wrap">
290
  <div class="bws-membership-backround"></div>
291
  <div class="bws-membership">
292
- <div class="bws-membership-title"><?php printf( __( 'Get Access to %s+ Premium Plugins', 'bestwebsoft' ), '30' ); ?></div>
293
- <div class="bws-membership-description"><?php printf( __( 'Join BestWebSoft Pro Membership today, cancel any time and use all plugins on a single website %s for only %s per month.', 'bestwebsoft' ), "<br/>", '$40' ); ?></div>
294
  <form method="post" action="">
295
  <?php if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) &&
296
  '5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
@@ -315,12 +317,12 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
315
  <div class="bws_error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><?php echo $error; ?></div>
316
  <?php } ?>
317
  </form>
318
- <div class="bws-membership-link"><?php _e( 'Don’t have valid license key yet?', 'bestwebsoft' ); ?> <a target="_blank" href="http://bestwebsoft.com/membership/"><?php _e( 'Subscribe to Pro Membership', 'bestwebsoft' ); ?></a></div>
319
  </div>
320
  </div>
321
  <?php } ?>
322
  <div class="bws-wrap-content wrap">
323
- <?php if ( 'bws_plugins' == $_GET['page'] || 'bws_panel' == $_GET['page'] ) { ?>
324
  <div class="updated notice is-dismissible inline" <?php if ( '' == $message || '' != $error ) echo "style=\"display:none\""; ?>><p><?php echo $message; ?></p></div>
325
  <h1>
326
  <?php _e( 'Plugins', 'bestwebsoft' ); ?>
@@ -431,10 +433,10 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
431
  <span>(<?php echo count( $bws_plugins ); ?>)</span>
432
  </a>
433
  </li>
434
- <?php foreach ( $bws_plugins_category as $key => $value ) { ?>
435
  <li>
436
- <a <?php if ( $key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( 'admin.php?page=bws_panel' . $sub_in_url . '&amp;category=' . $key ) ); ?>"><?php echo $value; ?>
437
- <span>(<?php echo $plugin_categories_count[ $key ]; ?>)</span>
438
  </a>
439
  </li>
440
  <?php } ?>
@@ -445,7 +447,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
445
  <?php $nothing_found = true;
446
  foreach ( $bws_plugins as $key_plugin => $value_plugin ) {
447
 
448
- if ( 'all' != $plugin_category && isset( $bws_plugins_category[ $plugin_category ] ) && $plugin_category != $value_plugin['category'] )
449
  continue;
450
 
451
  $key_plugin_explode = explode( '/', $key_plugin );
@@ -465,27 +467,29 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
465
  ( isset( $_GET['sub'] ) && 'not_installed' == $_GET['sub'] && ( $is_pro_installed || $is_installed ) ) )
466
  continue;
467
 
 
 
468
  $nothing_found = false; ?>
469
  <div class="bws_product_box<?php if ( $is_active || $is_pro_active ) echo ' bws_product_active'; ?>">
470
  <div class="bws_product_image">
471
- <a href="<?php echo esc_url( self_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $key_plugin_explode[0] .
472
- '&from=import&TB_iframe=true&width=600&height=550' ) ); ?>" class="thickbox open-plugin-details-modal"><img src="<?php echo $icon; ?>"/></a>
473
  </div>
474
  <div class="bws_product_content">
475
- <div class="bws_product_title"><a href="<?php echo esc_url( self_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $key_plugin_explode[0] .
476
- '&from=import&TB_iframe=true&width=600&height=550' ) ); ?>" class="thickbox open-plugin-details-modal"><?php echo $value_plugin['name']; ?></a></div>
477
  <div class="bws-version">
478
  <?php
479
  if ( $is_pro_installed ) {
480
  echo '<span';
481
  if ( ! empty( $value_plugin['expired'] ) || ! empty( $value_plugin['update_availible'] ) )
482
  echo ' class="bws-update-available"';
483
- echo '>' . $all_plugins[ $value_plugin['pro_version'] ]['Version'] . '</span>';
484
  } elseif ( $is_installed ) {
485
  echo '<span';
486
  if ( ! empty( $value_plugin['expired'] ) || ! empty( $value_plugin['update_availible'] ) )
487
  echo ' class="bws-update-available"';
488
- echo '>' . $all_plugins[ $key_plugin ]['Version'] . '</span>';
 
 
489
  }
490
 
491
  if ( ! empty( $value_plugin['expired'] ) ) {
@@ -496,7 +500,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
496
  } ?>
497
  </div>
498
  <div class="bws_product_description">
499
- <?php echo ( strlen( $value_plugin['description'] ) > 80 ) ? substr( $value_plugin['description'], 0, 80 ) . '...' : $value_plugin['description']; ?>
500
  </div>
501
  <div class="bws_product_links">
502
  <?php if ( $is_active || $is_pro_active ) {
@@ -558,10 +562,10 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
558
  <span>(<?php echo count( $bws_plugins ); ?>)</span>
559
  </a>
560
  </li>
561
- <?php foreach ( $bws_plugins_category as $key => $value ) { ?>
562
  <li>
563
- <a <?php if ( $key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( 'admin.php?page=bws_panel' . $sub_in_url . '&amp;category=' . $key ) ); ?>"><?php echo $value; ?>
564
- <span>(<?php echo $plugin_categories_count[ $key ]; ?>)</span>
565
  </a>
566
  </li>
567
  <?php } ?>
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 1.9.1
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
12
  global $wpdb, $wp_version, $bws_plugin_info, $bstwbsftwppdtplgns_options;
13
  $error = $message = $bwsmn_form_email = '';
14
 
15
+ if ( 'bws_panel' == $_GET['page'] ) {
16
 
17
  if ( ! function_exists( 'is_plugin_active_for_network' ) )
18
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
26
  $update_availible_all = get_site_transient( 'update_plugins' );
27
 
28
  $plugin_category = isset( $_GET['category'] ) ? $_GET['category'] : 'all';
 
29
 
30
  if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || ! isset( $_GET['sub'] ) ) {
31
  $bws_plugins_update_availible = $bws_plugins_expired = array();
32
  foreach ( $bws_plugins as $key_plugin => $value_plugin ) {
33
+
34
+ foreach ( $value_plugin['category'] as $category_key ) {
35
+ $bws_plugins_category[ $category_key ]['count'] = isset( $bws_plugins_category[ $category_key ]['count'] ) ? $bws_plugins_category[ $category_key ]['count'] + 1 : 1;
36
+ }
37
 
38
  $is_installed = array_key_exists( $key_plugin, $all_plugins );
39
  $is_pro_installed = false;
61
  $bws_plugins = $bws_plugins_update_availible + $bws_plugins_expired + $bws_plugins;
62
  } else {
63
  foreach ( $bws_plugins as $key_plugin => $value_plugin ) {
64
+ foreach ( $value_plugin['category'] as $category_key ) {
65
+ $bws_plugins_category[ $category_key ]['count'] = isset( $bws_plugins_category[ $category_key ]['count'] ) ? $bws_plugins_category[ $category_key ]['count'] + 1 : 1;
66
+ }
67
  }
68
  }
69
 
113
  if ( "wrong_license_key" == $value->package ) {
114
  $error = __( "Wrong license key", 'bestwebsoft' );
115
  } elseif ( "wrong_domain" == $value->package ) {
116
+ $error = __( 'This license key is bind to another website. Change it via personal Client Area.', 'bestwebsoft' ) . '<a target="_blank" href="http://bestwebsoft.com/wp-admin/admin.php?page=client-area">' . __( 'Log in', 'bestwebsoft' ) . '</a>';
117
  } elseif ( "you_are_banned" == $value->package ) {
118
  $error = __( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' );
119
  } elseif ( "time_out" == $value->package ) {
120
+ $error = __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your", 'bestwebsoft' ) . ' <a target="_blank" href="http://bestwebsoft.com/wp-admin/admin.php?page=client-area">Client Area</a>';
121
  } elseif ( "duplicate_domen_for_trial" == $value->package ) {
122
  $error = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
123
  } elseif ( is_array( $value->package ) && ! empty( $value->package ) ) {
146
  update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
147
  }
148
  } else {
149
+ $error = __( "Please enter your license key.", 'bestwebsoft' );
150
  }
151
  }
152
  }
279
  </div>
280
  <div class="bws-menu-item-icon">&#8226;&#8226;&#8226;</div>
281
  <div class="bws-nav-tab-wrapper">
282
+ <a class="bws-nav-tab<?php if ( 'bws_panel' == $_GET['page'] ) echo ' bws-nav-tab-active'; ?>" href="admin.php?page=bws_panel"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
283
  <a class="bws-nav-tab<?php if ( 'bws_themes' == $_GET['page'] ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_themes' ); ?>"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
284
  </div>
285
  <div class="bws-help-links-wrapper">
286
  <a <?php if ( 'bws_system_status' == $_GET['page'] ) echo ' class="bws-nav-tab-active"'; ?> href="<?php echo self_admin_url( 'admin.php?page=bws_system_status' ); ?>"><?php _e( 'System status', 'bestwebsoft' ); ?></a>
287
  <a href="<?php echo esc_url( 'http://support.bestwebsoft.com/home' ); ?>" target="_blank"><?php _e( 'Support', 'bestwebsoft' ); ?></a>
288
+ <a href="<?php echo esc_url( 'http://bestwebsoft.com/wp-admin/admin.php?page=client-area' ); ?>" target="_blank" title="<?php _e( 'Manage purchased licenses & subscriptions', 'bestwebsoft' ); ?>"><?php _e( 'Client Area', 'bestwebsoft' ); ?></a>
289
  </div>
290
  <div class="clear"></div>
291
  </div>
292
+ <?php if ( 'bws_panel' == $_GET['page'] && ! isset( $_POST['bws_plugin_action_submit'] ) ) { ?>
293
  <div class="bws-membership-wrap">
294
  <div class="bws-membership-backround"></div>
295
  <div class="bws-membership">
 
 
296
  <form method="post" action="">
297
  <?php if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) &&
298
  '5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
317
  <div class="bws_error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><?php echo $error; ?></div>
318
  <?php } ?>
319
  </form>
320
+ <div class="bws-membership-link"><?php _e( 'Don’t have valid license key yet?', 'bestwebsoft' ); ?> <a target="_blank" href="http://bestwebsoft.com/membership/"><?php _e( 'Subscribe to Pro Membership Now', 'bestwebsoft' ); ?></a></div>
321
  </div>
322
  </div>
323
  <?php } ?>
324
  <div class="bws-wrap-content wrap">
325
+ <?php if ( 'bws_panel' == $_GET['page'] ) { ?>
326
  <div class="updated notice is-dismissible inline" <?php if ( '' == $message || '' != $error ) echo "style=\"display:none\""; ?>><p><?php echo $message; ?></p></div>
327
  <h1>
328
  <?php _e( 'Plugins', 'bestwebsoft' ); ?>
433
  <span>(<?php echo count( $bws_plugins ); ?>)</span>
434
  </a>
435
  </li>
436
+ <?php foreach ( $bws_plugins_category as $category_key => $category_value ) { ?>
437
  <li>
438
+ <a <?php if ( $category_key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( 'admin.php?page=bws_panel' . $sub_in_url . '&amp;category=' . $category_key ) ); ?>"><?php echo $category_value['name']; ?>
439
+ <span>(<?php echo $category_value['count']; ?>)</span>
440
  </a>
441
  </li>
442
  <?php } ?>
447
  <?php $nothing_found = true;
448
  foreach ( $bws_plugins as $key_plugin => $value_plugin ) {
449
 
450
+ if ( 'all' != $plugin_category && isset( $bws_plugins_category[ $plugin_category ] ) && ! in_array( $plugin_category, $value_plugin['category'] ) )
451
  continue;
452
 
453
  $key_plugin_explode = explode( '/', $key_plugin );
467
  ( isset( $_GET['sub'] ) && 'not_installed' == $_GET['sub'] && ( $is_pro_installed || $is_installed ) ) )
468
  continue;
469
 
470
+ $link_attr = isset( $value_plugin['install_url'] ) ? 'href="' . $value_plugin['install_url'] . '" target="_blank"' : 'href="' . esc_url( self_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $key_plugin_explode[0] . '&from=import&TB_iframe=true&width=600&height=550' ) ) . '" class="thickbox open-plugin-details-modal"';
471
+
472
  $nothing_found = false; ?>
473
  <div class="bws_product_box<?php if ( $is_active || $is_pro_active ) echo ' bws_product_active'; ?>">
474
  <div class="bws_product_image">
475
+ <a <?php echo $link_attr; ?>><img src="<?php echo $icon; ?>"/></a>
 
476
  </div>
477
  <div class="bws_product_content">
478
+ <div class="bws_product_title"><a <?php echo $link_attr; ?>><?php echo $value_plugin['name']; ?></a></div>
 
479
  <div class="bws-version">
480
  <?php
481
  if ( $is_pro_installed ) {
482
  echo '<span';
483
  if ( ! empty( $value_plugin['expired'] ) || ! empty( $value_plugin['update_availible'] ) )
484
  echo ' class="bws-update-available"';
485
+ echo '>v ' . $all_plugins[ $value_plugin['pro_version'] ]['Version'] . '</span>';
486
  } elseif ( $is_installed ) {
487
  echo '<span';
488
  if ( ! empty( $value_plugin['expired'] ) || ! empty( $value_plugin['update_availible'] ) )
489
  echo ' class="bws-update-available"';
490
+ echo '>v ' . $all_plugins[ $key_plugin ]['Version'] . '</span>';
491
+ } else {
492
+ echo '<span>' . __( 'Not installed', 'bestwebsoft' ) . '</span>';
493
  }
494
 
495
  if ( ! empty( $value_plugin['expired'] ) ) {
500
  } ?>
501
  </div>
502
  <div class="bws_product_description">
503
+ <?php echo ( strlen( $value_plugin['description'] ) > 100 ) ? substr( $value_plugin['description'], 0, 100 ) . '...' : $value_plugin['description']; ?>
504
  </div>
505
  <div class="bws_product_links">
506
  <?php if ( $is_active || $is_pro_active ) {
562
  <span>(<?php echo count( $bws_plugins ); ?>)</span>
563
  </a>
564
  </li>
565
+ <?php foreach ( $bws_plugins_category as $category_key => $category_value ) { ?>
566
  <li>
567
+ <a <?php if ( $category_key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( 'admin.php?page=bws_panel' . $sub_in_url . '&amp;category=' . $category_key ) ); ?>"><?php echo $category_value['name']; ?>
568
+ <span>(<?php echo $category_value['count']; ?>)</span>
569
  </a>
570
  </li>
571
  <?php } ?>
bws_menu/css/general_style.css CHANGED
@@ -4,10 +4,7 @@
4
  #adminmenu #toplevel_page_bws_panel.wp-has-current-submenu div.wp-menu-image img {
5
  width: 18px;
6
  }
7
- #adminmenu #toplevel_page_bws_panel .wp-submenu .wp-first-item {
8
- display: none;
9
- }
10
- #adminmenu #toplevel_page_bws_panel .wp-submenu li:nth-child(5) a {
11
  border-bottom: 1px solid #444;
12
  padding-bottom: 12px;
13
  margin-bottom: 5px;
4
  #adminmenu #toplevel_page_bws_panel.wp-has-current-submenu div.wp-menu-image img {
5
  width: 18px;
6
  }
7
+ #adminmenu #toplevel_page_bws_panel .wp-submenu li:nth-child(4) a {
 
 
 
8
  border-bottom: 1px solid #444;
9
  padding-bottom: 12px;
10
  margin-bottom: 5px;
bws_menu/css/style.css CHANGED
@@ -2,14 +2,12 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
2
  display: none;
3
  }
4
  .toplevel_page_bws_panel #wpcontent,
5
- .bws-panel_page_bws_plugins #wpcontent,
6
  .bws-panel_page_bws_themes #wpcontent,
7
  .bws-panel_page_bws_system_status #wpcontent {
8
  padding-left: 0;
9
  padding-right: 0;
10
  }
11
  .toplevel_page_bws_panel .update-nag,
12
- .bws-panel_page_bws_plugins .update-nag,
13
  .bws-panel_page_bws_themes .update-nag,
14
  .bws-panel_page_bws_system_status .update-nag {
15
  display: none;
@@ -36,7 +34,7 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
36
  }
37
  .bws-title {
38
  text-transform: uppercase;
39
- font-weight: bold;
40
  font-size: 18px;
41
  letter-spacing: 0.1em;
42
  margin-top: 15px;
@@ -112,6 +110,8 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
112
  background: url("../images/membership-background.jpg") no-repeat center #fff;
113
  overflow: hidden;
114
  position: relative;
 
 
115
  }
116
  .bws-membership-backround {
117
  background-color: #000;
@@ -131,23 +131,11 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
131
  .bws-membership * {
132
  text-align: center;
133
  }
134
- .bws-membership-title {
135
- font-size: 27px;
136
- font-weight: bolder;
137
- line-height: initial;
138
- }
139
- .bws-membership-description {
140
- font-size: 15px;
141
- line-height: 24px;
142
- margin: 18px 0 23px;
143
- color: #999;
144
- }
145
  .bws-membership input[type="text"] {
146
  border-radius: 3px;
147
  border: none;
148
  font-size: 16.14px;
149
- line-height: 18.16px;
150
- padding: 9px 20px;
151
  text-align: left;
152
  }
153
  .bws-membership .bws-button {
@@ -157,7 +145,7 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
157
  display: inline-block;
158
  text-decoration: none;
159
  font-size: 16px;
160
- font-weight: bolder;
161
  padding: 8px 30px;
162
  border-radius: 3px;
163
  border: none;
@@ -174,6 +162,9 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
174
  text-decoration: none;
175
  border-bottom: 1px solid #999;
176
  }
 
 
 
177
  .bws_error {
178
  color: #c5412b;
179
  margin-top: 5px;
@@ -219,6 +210,9 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
219
  margin-right: 10px;
220
  max-width: 400px;
221
  }
 
 
 
222
  .bws_system_info th {
223
  padding: 10px 0;
224
  text-align: left;
@@ -273,6 +267,7 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
273
  }
274
  .bws_product_title a {
275
  color: #444;
 
276
  }
277
  .bws_product_title a:hover {
278
  color: #00a0d2;
@@ -295,6 +290,7 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
295
  font-size: 13px;
296
  line-height: 18px;
297
  margin: 6px 0 2px;
 
298
  }
299
  .bws_product_links {
300
  margin: 15px 0;
@@ -316,6 +312,7 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
316
  background: #dd6930;
317
  border: 1px solid #c16436;
318
  color: #fff;
 
319
  }
320
  a.bws_settings,
321
  a.bws_donate {
@@ -405,7 +402,7 @@ a.bws_donate {
405
  width: 1020px;
406
  }
407
  }
408
- @media screen and (max-width: 1450px) {
409
  .bws-products {
410
  width: 700px;
411
  }
2
  display: none;
3
  }
4
  .toplevel_page_bws_panel #wpcontent,
 
5
  .bws-panel_page_bws_themes #wpcontent,
6
  .bws-panel_page_bws_system_status #wpcontent {
7
  padding-left: 0;
8
  padding-right: 0;
9
  }
10
  .toplevel_page_bws_panel .update-nag,
 
11
  .bws-panel_page_bws_themes .update-nag,
12
  .bws-panel_page_bws_system_status .update-nag {
13
  display: none;
34
  }
35
  .bws-title {
36
  text-transform: uppercase;
37
+ font-weight: 600;
38
  font-size: 18px;
39
  letter-spacing: 0.1em;
40
  margin-top: 15px;
110
  background: url("../images/membership-background.jpg") no-repeat center #fff;
111
  overflow: hidden;
112
  position: relative;
113
+ margin: 20px 20px 0 20px;
114
+ border-radius: 4px;
115
  }
116
  .bws-membership-backround {
117
  background-color: #000;
131
  .bws-membership * {
132
  text-align: center;
133
  }
 
 
 
 
 
 
 
 
 
 
 
134
  .bws-membership input[type="text"] {
135
  border-radius: 3px;
136
  border: none;
137
  font-size: 16.14px;
138
+ padding: 8px 20px 8px 10px;
 
139
  text-align: left;
140
  }
141
  .bws-membership .bws-button {
145
  display: inline-block;
146
  text-decoration: none;
147
  font-size: 16px;
148
+ font-weight: 600;
149
  padding: 8px 30px;
150
  border-radius: 3px;
151
  border: none;
162
  text-decoration: none;
163
  border-bottom: 1px solid #999;
164
  }
165
+ .bws-membership-link a:hover {
166
+ border-bottom: none;
167
+ }
168
  .bws_error {
169
  color: #c5412b;
170
  margin-top: 5px;
210
  margin-right: 10px;
211
  max-width: 400px;
212
  }
213
+ .rtl .bws_system_info {
214
+ float: right;
215
+ }
216
  .bws_system_info th {
217
  padding: 10px 0;
218
  text-align: left;
267
  }
268
  .bws_product_title a {
269
  color: #444;
270
+ font-weight: 600;
271
  }
272
  .bws_product_title a:hover {
273
  color: #00a0d2;
290
  font-size: 13px;
291
  line-height: 18px;
292
  margin: 6px 0 2px;
293
+ color: #666;
294
  }
295
  .bws_product_links {
296
  margin: 15px 0;
312
  background: #dd6930;
313
  border: 1px solid #c16436;
314
  color: #fff;
315
+ margin-right: 12px;
316
  }
317
  a.bws_settings,
318
  a.bws_donate {
402
  width: 1020px;
403
  }
404
  }
405
+ @media screen and (max-width: 1425px) {
406
  .bws-products {
407
  width: 700px;
408
  }
bws_menu/languages/bestwebsoft-fr_FR.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-06-20 18:01+0300\n"
6
- "PO-Revision-Date: 2016-06-20 18:01+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:330
21
  msgid "Plugins"
22
  msgstr "Extensions"
23
 
@@ -26,9 +26,8 @@ msgid "Themes"
26
  msgstr "Thèmes"
27
 
28
  #: bws_functions.php:40
29
- #, fuzzy
30
  msgid "System Status"
31
- msgstr "System status"
32
 
33
  #: bws_functions.php:75 bws_functions.php:101
34
  msgid "requires"
@@ -80,24 +79,21 @@ msgid "Add New"
80
  msgstr "Ajouter"
81
 
82
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
83
- #: bws_functions.php:724 bws_functions.php:814
84
  msgid "Close notice"
85
  msgstr "Effacer l'avertissement"
86
 
87
  #: bws_functions.php:142
88
- #, fuzzy
89
  msgid "Thank you for installing plugins by BestWebSoft!"
90
- msgstr "Merci d'avoir installé"
91
 
92
  #: bws_functions.php:144
93
- #, fuzzy
94
  msgid "More Details"
95
- msgstr "Détails"
96
 
97
  #: bws_functions.php:145
98
- #, fuzzy
99
  msgid "Less Details"
100
- msgstr "Détails"
101
 
102
  #: bws_functions.php:218
103
  msgid "It’s time to upgrade your"
@@ -137,7 +133,7 @@ msgstr "Si vous avez une question, n'hésitez pas à nous contacter"
137
 
138
  #: bws_functions.php:247
139
  msgid "Donations play an important role in supporting great projects"
140
- msgstr ""
141
 
142
  #: bws_functions.php:277
143
  msgid "Check premium options on the plugin settings page!"
@@ -193,19 +189,19 @@ msgstr ""
193
  "peut-être installée qu'une seule fois."
194
 
195
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
196
- #: bws_menu.php:370 bws_menu.php:401 bws_menu.php:412
197
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
198
  msgstr ""
199
  "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension "
200
  "manuellement."
201
 
202
- #: bws_functions.php:361 bws_menu.php:387
203
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
204
  msgstr ""
205
  "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
206
  "manuellement."
207
 
208
- #: bws_functions.php:367 bws_menu.php:394
209
  msgid ""
210
  "Your server does not support either ZipArchive or Phar. Please, upload the "
211
  "plugin manually"
@@ -213,7 +209,7 @@ msgstr ""
213
  "Votre serveur n'a pas le support du format des archives ZIP ou Phar. Merci "
214
  "de télécharger l'extension manuellement."
215
 
216
- #: bws_functions.php:374 bws_menu.php:404
217
  msgid "UploadDir is not writable. Please, upload the plugin manually"
218
  msgstr ""
219
  "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
@@ -227,12 +223,11 @@ msgstr ""
227
  "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
228
  "l'extension manuellement.Nous sommes désolés pour le désagrément."
229
 
230
- #: bws_functions.php:422 bws_menu.php:149
231
  msgid "Please, enter Your license key"
232
  msgstr "Merci de saisir votre clé de licence"
233
 
234
  #: bws_functions.php:452
235
- #, fuzzy
236
  msgid ""
237
  "Congratulations! Pro version of the plugin is successfully installed and "
238
  "activated."
@@ -258,22 +253,20 @@ msgstr "Voir les fonctionnalités de la version PRO"
258
 
259
  #: bws_functions.php:469
260
  msgid "Enter your license key to install and activate"
261
- msgstr ""
262
 
263
  #: bws_functions.php:471
264
- #, fuzzy
265
  msgid "version of the plugin."
266
- msgstr "Voter pour l'extension"
267
 
268
  #: bws_functions.php:473 bws_functions.php:514
269
  msgid "License key can be found in the"
270
- msgstr ""
271
 
272
  #: bws_functions.php:475 bws_functions.php:516
273
- #, fuzzy
274
  msgid "(your username is the email address specified during the purchase)."
275
  msgstr ""
276
- "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de "
277
  "l'achat de l'extension)."
278
 
279
  #: bws_functions.php:479
@@ -282,7 +275,7 @@ msgid "Start Your Free %s-Day Trial Now"
282
  msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
283
 
284
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
285
- #: bws_functions.php:532 bws_functions.php:1382 bws_menu.php:531
286
  #: bws_menu.php:540
287
  msgid "Activate"
288
  msgstr "Activé"
@@ -300,7 +293,7 @@ msgid "After that you can activate it by entering your license key."
300
  msgstr ""
301
  " Après vous pouvez activer cette extension en donnant votre clé de licence."
302
 
303
- #: bws_functions.php:526 bws_menu.php:118 bws_menu.php:306
304
  msgid "Unfortunately, you have exceeded the number of available tries per day."
305
  msgstr ""
306
  "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
@@ -371,16 +364,15 @@ msgstr ""
371
  "licence sur votre page personnelle (zone client) sur notre site web."
372
 
373
  #: bws_functions.php:647
374
- #, fuzzy
375
  msgid ""
376
  "(your username is the email address specified during the purchase). If "
377
  "necessary, please submit \"Lost your password?\" request."
378
  msgstr ""
379
- "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de "
380
  "l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de "
381
  "mot de passe perdu."
382
 
383
- #: bws_functions.php:651 bws_menu.php:304 bws_menu.php:315
384
  msgid "Check license key"
385
  msgstr "Vérifier la clé de licence"
386
 
@@ -417,7 +409,7 @@ msgstr ""
417
  "Votre licence est terminée. Pour continuer à disposer du support rapide et "
418
  "des mises à jour de l'extension vous devez la renouveller."
419
 
420
- #: bws_functions.php:675 bws_functions.php:728 bws_functions.php:1337
421
  msgid "Learn more"
422
  msgstr "En savoir plus"
423
 
@@ -447,11 +439,11 @@ msgstr "se termine le"
447
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
448
  msgstr "et vous ne disposerez plus du support rapide et des mises à jour."
449
 
450
- #: bws_functions.php:809
451
  msgid "Thank you for choosing"
452
  msgstr "Merci d'avoir choisi"
453
 
454
- #: bws_functions.php:810
455
  msgid ""
456
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
457
  "we'd love to hear about it!"
@@ -459,23 +451,23 @@ msgstr ""
459
  "Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
460
  "souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
461
 
462
- #: bws_functions.php:811
463
  msgid "Suggest a Feature"
464
  msgstr "Proposer une fonctionnalité"
465
 
466
- #: bws_functions.php:827
467
  msgid "Notice"
468
  msgstr "Avertissement"
469
 
470
- #: bws_functions.php:827
471
  msgid "The plugin's settings have been changed."
472
  msgstr "Les paramètres de l'extension ont été modifiés."
473
 
474
- #: bws_functions.php:828 bws_functions.php:1393
475
  msgid "Save Changes"
476
  msgstr "Sauvegarder les modifications"
477
 
478
- #: bws_functions.php:842
479
  msgid ""
480
  "You can always look at premium options by clicking on the \"Show Pro features"
481
  "\" in the \"Go PRO\" tab"
@@ -483,124 +475,125 @@ msgstr ""
483
  "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
484
  "\"Voir les fonctionnalités de la version PRO\" dans l'onglet Passer PRO"
485
 
486
- #: bws_functions.php:971
487
  msgid "Add shortcode"
488
  msgstr "Ajouter le code court"
489
 
490
- #: bws_functions.php:971
491
  msgid "Add BestWebSoft plugins' shortcodes using this button."
492
  msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
493
 
494
- #: bws_functions.php:1020
495
  msgid "Close"
496
  msgstr "Fermer"
497
 
498
- #: bws_functions.php:1112
499
  msgid "Restore all plugin settings to defaults"
500
  msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
501
 
502
- #: bws_functions.php:1114
503
  msgid "Restore settings"
504
  msgstr "Remettre les paramètres"
505
 
506
- #: bws_functions.php:1125
507
  msgid "Are you sure you want to restore all settings by default?"
508
  msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
509
 
510
- #: bws_functions.php:1128
511
  msgid "Yes, restore all settings"
512
  msgstr "Oui, remettre les valeurs par défaut"
513
 
514
- #: bws_functions.php:1129
515
  msgid "No, go back to the settings page"
516
  msgstr "Non, retourner à la page des paramètres"
517
 
518
- #: bws_functions.php:1175
519
  msgid "Plugin"
520
  msgstr "Extension"
521
 
522
- #: bws_functions.php:1184
523
  msgid "Shortcode settings"
524
  msgstr "Paramètres du code court"
525
 
526
- #: bws_functions.php:1189
527
  msgid "The shortcode will be inserted"
528
  msgstr "Le code court sera inséré"
529
 
530
- #: bws_functions.php:1194
531
  msgid "Insert"
532
  msgstr "Insérer"
533
 
534
- #: bws_functions.php:1225
535
  msgid "Visit Help Center"
536
  msgstr "Visiter le site du support"
537
 
538
- #: bws_functions.php:1230
539
  msgid "FAQ"
540
  msgstr "FAQ"
541
 
542
- #: bws_functions.php:1236
543
  msgid "For more information:"
544
  msgstr "Pour plus d'informations&nbsp;:"
545
 
546
- #: bws_functions.php:1237
547
  msgid "Documentation"
548
  msgstr "Documentation"
549
 
550
- #: bws_functions.php:1238
551
  msgid "Video Instructions"
552
  msgstr "Vidéo explicative"
553
 
554
- #: bws_functions.php:1239
555
  msgid "Submit a Request"
556
  msgstr "Soumettre une requête"
557
 
558
- #: bws_functions.php:1250
559
  msgid "You do not have sufficient permissions to edit plugins for this site."
560
  msgstr ""
561
  "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
562
 
563
- #: bws_functions.php:1301 bws_functions.php:1328
564
- #, fuzzy, php-format
565
  msgid "File %s edited successfully."
566
- msgstr "Le fichier a été modifié avec succès."
567
 
568
- #: bws_functions.php:1303 bws_functions.php:1330
569
  msgid "Not enough permissions to create or update the file"
570
  msgstr "Pas assez de droits pour créer ou modifier le fichier"
571
 
572
- #: bws_functions.php:1333
573
- #, fuzzy
574
  msgid "Not enough permissions to create the file"
575
- msgstr "Pas assez de droits pour créer ou modifier le fichier"
576
 
577
- #: bws_functions.php:1371
578
  msgid "These styles will be added to the header on all pages of your site."
579
  msgstr ""
580
  "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
581
 
582
- #: bws_functions.php:1373
583
  #, php-format
584
  msgid ""
585
  "These PHP code will be hooked to the %s action and will be printed on front "
586
  "end only."
587
  msgstr ""
 
 
588
 
589
- #: bws_functions.php:1377
590
  msgid "Editing"
591
  msgstr "Modifier"
592
 
593
- #: bws_functions.php:1379
594
  msgid "Browsing"
595
  msgstr "Parcourir"
596
 
597
- #: bws_functions.php:1386
598
- #, fuzzy, php-format
599
  msgid "Learn more about %s"
600
- msgstr "En savoir plus sur les CSS"
601
 
602
- #: bws_functions.php:1397
603
- #, fuzzy, php-format
604
  msgid ""
605
  "You need to make this files writable before you can save your changes. See "
606
  "%s the Codex %s for more information."
@@ -609,23 +602,27 @@ msgstr ""
609
  "modifications. Regarder %s du Codex %s pour plus d'informations."
610
 
611
  #: bws_menu.php:116
612
- #, fuzzy
613
  msgid ""
614
  "This license key is bind to another website. Change it via personal Client "
615
  "Area."
616
- msgstr "La clé de licence correspond à un autre site."
 
 
617
 
618
  #: bws_menu.php:116
619
  msgid "Log in"
620
- msgstr ""
621
 
622
  #: bws_menu.php:132
623
- #, fuzzy
624
  msgid "Congratulations! Pro Membership license is successfully activated."
625
  msgstr ""
626
  "Félicitations! La version PRO de cette extension a été téléchargée et "
627
  "activée avec succès."
628
 
 
 
 
 
629
  #: bws_menu.php:161
630
  msgid "Not set"
631
  msgstr "Not set"
@@ -757,7 +754,7 @@ msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
757
 
758
  #: bws_menu.php:286 bws_menu.php:626
759
  msgid "System status"
760
- msgstr "System status"
761
 
762
  #: bws_menu.php:287
763
  msgid "Support"
@@ -765,48 +762,34 @@ msgstr "Support"
765
 
766
  #: bws_menu.php:288
767
  msgid "Manage purchased licenses & subscriptions"
768
- msgstr ""
769
 
770
  #: bws_menu.php:288
771
- msgid "My Account"
772
- msgstr ""
773
 
774
- #: bws_menu.php:296
775
- #, php-format
776
- msgid "Get Access to %s+ Premium Plugins"
777
- msgstr ""
778
-
779
- #: bws_menu.php:297
780
- #, php-format
781
- msgid ""
782
- "Join BestWebSoft Pro Membership today, cancel any time and use all plugins "
783
- "on a single website %s for only %s per month."
784
- msgstr ""
785
-
786
- #: bws_menu.php:309
787
- #, fuzzy
788
  msgid "Enter your license key"
789
  msgstr "Merci de saisir votre clé de licence"
790
 
791
- #: bws_menu.php:313
792
- #, fuzzy
793
  msgid "Activate Membership"
794
- msgstr "Thème actif"
795
 
796
- #: bws_menu.php:322
797
  msgid "Don’t have valid license key yet?"
798
- msgstr ""
799
-
800
- #: bws_menu.php:322
801
- msgid "Subscribe to Pro Membership"
802
- msgstr ""
803
 
804
- #: bws_menu.php:331
805
  #, fuzzy
 
 
 
 
806
  msgid "Upload Plugin"
807
- msgstr "Extension"
808
 
809
- #: bws_menu.php:335
810
  #, php-format
811
  msgid ""
812
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -814,77 +797,82 @@ msgid ""
814
  "messages, problems with syndication feeds or other issues, try deactivating "
815
  "or removing this plugin."
816
  msgstr ""
 
 
 
 
817
 
818
- #: bws_menu.php:337
819
  msgid ""
820
  "Plugin could not be activated because it triggered a <strong>fatal error</"
821
  "strong>."
822
  msgstr ""
 
 
823
 
824
- #: bws_menu.php:340
825
  msgid "Plugin <strong>activated</strong>."
826
- msgstr ""
827
 
828
- #: bws_menu.php:347
829
- #, fuzzy
830
  msgid "Installing Plugin"
831
  msgstr "Extensions installées"
832
 
833
- #: bws_menu.php:353
834
  msgid "Downloading install package from"
835
- msgstr ""
836
 
837
- #: bws_menu.php:378
838
  msgid "Unpacking the package"
839
- msgstr ""
840
 
841
- #: bws_menu.php:383 bws_menu.php:391
842
- #, fuzzy
843
  msgid "Installing the plugin"
844
- msgstr "Extensions installées"
845
 
846
- #: bws_menu.php:397
847
- #, fuzzy
848
  msgid "Successfully installed the plugin"
849
- msgstr "Extensions installées"
850
 
851
- #: bws_menu.php:409
852
- #, fuzzy
853
  msgid "Activate Plugin"
854
- msgstr "Extensions actives"
855
 
856
- #: bws_menu.php:409 bws_menu.php:415
857
  msgid "Return to BestWebSoft Panel"
858
- msgstr ""
859
 
860
- #: bws_menu.php:419 bws_menu.php:434 bws_menu.php:561
861
  msgid "All"
862
  msgstr "Tous"
863
 
864
- #: bws_menu.php:420
865
  msgid "Installed"
866
  msgstr "Installé"
867
 
868
- #: bws_menu.php:421
869
- #, fuzzy
870
  msgid "Not Installed"
871
- msgstr "Installé"
872
 
873
- #: bws_menu.php:427
874
  msgid "Filter results"
875
- msgstr ""
876
 
877
- #: bws_menu.php:430 bws_menu.php:557
878
  msgid "Category"
879
- msgstr ""
880
 
881
- #: bws_menu.php:496
882
  #, fuzzy
 
 
 
 
883
  msgid "Renew to get updates"
884
- msgstr "Rediriger vers la page"
885
 
886
  #: bws_menu.php:499
887
- #, fuzzy, php-format
888
  msgid "Update to v %s"
889
  msgstr "Mettre à jour avec la version %s"
890
 
@@ -894,24 +882,23 @@ msgstr "Installer maintenant"
894
 
895
  #: bws_menu.php:517
896
  msgid "Upgrade to Pro"
897
- msgstr ""
898
 
899
  #: bws_menu.php:521
900
  msgid "Donate"
901
- msgstr ""
902
 
903
  #: bws_menu.php:531 bws_menu.php:540
904
  msgid "Activate this plugin"
905
  msgstr "Activer cette extension"
906
 
907
  #: bws_menu.php:543
908
- #, fuzzy
909
  msgid "Install this plugin"
910
- msgstr "Extensions installées"
911
 
912
  #: bws_menu.php:552
913
  msgid "Nothing found. Try another criteria."
914
- msgstr ""
915
 
916
  #: bws_menu.php:589 bws_menu.php:609
917
  #, php-format
@@ -924,7 +911,7 @@ msgstr "Déjà installé"
924
 
925
  #: bws_menu.php:623
926
  msgid "Browse Free WordPress Themes"
927
- msgstr ""
928
 
929
  #: bws_menu.php:632
930
  msgid "Send to support"
@@ -948,62 +935,57 @@ msgstr "Extensions inactives"
948
 
949
  #: product_list.php:7
950
  msgid "Advertisement"
951
- msgstr ""
952
 
953
  #: product_list.php:8
954
  msgid "Content & Media"
955
- msgstr ""
956
 
957
  #: product_list.php:9
958
  msgid "Management"
959
- msgstr ""
960
 
961
  #: product_list.php:10
962
- msgid "Security"
963
- msgstr ""
964
 
965
  #: product_list.php:11
966
- #, fuzzy
967
- msgid "Site Stats"
968
- msgstr "System status"
969
 
970
  #: product_list.php:12
971
- msgid "Social"
972
- msgstr ""
973
 
974
  #: product_list.php:13
975
- msgid "Utilities"
976
- msgstr ""
977
 
978
  #: product_list.php:14
979
- msgid "Other"
980
- msgstr ""
981
 
982
- #~ msgid "You can download and activate"
983
- #~ msgstr "Vous pouvez télécharger et activer la version "
 
984
 
985
- #~ msgid "version of this plugin by entering Your license key."
986
- #~ msgstr " de cette extension en donnant votre clé de licence."
987
 
988
  #~ msgid ""
989
- #~ "You can find your license key on your personal page Client area, by "
990
- #~ "clicking on the link"
991
  #~ msgstr ""
992
- #~ "Vous pouvez trouver votre clé de licence sur votre page personnelle dans "
993
- #~ "la zone cliente en cliquant sur le lien"
 
994
 
995
- #~ msgid "Configure Settings"
996
- #~ msgstr "Configuration des paramètres"
997
 
998
  #~ msgid "Need help?"
999
  #~ msgstr "Besoin d'aide ?"
1000
 
1001
- #~ msgid "Client area"
1002
- #~ msgstr "Espace client"
1003
-
1004
- #~ msgid "Recommended"
1005
- #~ msgstr "Recommandé"
1006
-
1007
  #~ msgid "Go"
1008
  #~ msgstr "Passez"
1009
 
@@ -1016,6 +998,9 @@ msgstr ""
1016
  #~ msgid "Install now"
1017
  #~ msgstr "Installer maintenant"
1018
 
 
 
 
1019
  #~ msgid "Try again"
1020
  #~ msgstr "Essayer de nouveau"
1021
 
@@ -1034,6 +1019,19 @@ msgstr ""
1034
  #~ msgid "Preview"
1035
  #~ msgstr "Pré-visualiser"
1036
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1037
  #~ msgid "Add BWS Plugins Shortcode"
1038
  #~ msgstr "Ajouter le code court de l'extension BWS"
1039
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-14 15:18+0300\n"
6
+ "PO-Revision-Date: 2016-07-14 15:18+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
17
  "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:328
21
  msgid "Plugins"
22
  msgstr "Extensions"
23
 
26
  msgstr "Thèmes"
27
 
28
  #: bws_functions.php:40
 
29
  msgid "System Status"
30
+ msgstr "Etat du système"
31
 
32
  #: bws_functions.php:75 bws_functions.php:101
33
  msgid "requires"
79
  msgstr "Ajouter"
80
 
81
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
82
+ #: bws_functions.php:724 bws_functions.php:828
83
  msgid "Close notice"
84
  msgstr "Effacer l'avertissement"
85
 
86
  #: bws_functions.php:142
 
87
  msgid "Thank you for installing plugins by BestWebSoft!"
88
+ msgstr "Merci d'avoir installé des extensions de BestWebSoft!"
89
 
90
  #: bws_functions.php:144
 
91
  msgid "More Details"
92
+ msgstr "Plus de détails"
93
 
94
  #: bws_functions.php:145
 
95
  msgid "Less Details"
96
+ msgstr "Moins de détails"
97
 
98
  #: bws_functions.php:218
99
  msgid "It’s time to upgrade your"
133
 
134
  #: bws_functions.php:247
135
  msgid "Donations play an important role in supporting great projects"
136
+ msgstr "Les dons jouent un rôle important dans l'aide aux projets"
137
 
138
  #: bws_functions.php:277
139
  msgid "Check premium options on the plugin settings page!"
189
  "peut-être installée qu'une seule fois."
190
 
191
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
192
+ #: bws_menu.php:368 bws_menu.php:399 bws_menu.php:410
193
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
194
  msgstr ""
195
  "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension "
196
  "manuellement."
197
 
198
+ #: bws_functions.php:361 bws_menu.php:385
199
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
200
  msgstr ""
201
  "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
202
  "manuellement."
203
 
204
+ #: bws_functions.php:367 bws_menu.php:392
205
  msgid ""
206
  "Your server does not support either ZipArchive or Phar. Please, upload the "
207
  "plugin manually"
209
  "Votre serveur n'a pas le support du format des archives ZIP ou Phar. Merci "
210
  "de télécharger l'extension manuellement."
211
 
212
+ #: bws_functions.php:374 bws_menu.php:402
213
  msgid "UploadDir is not writable. Please, upload the plugin manually"
214
  msgstr ""
215
  "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
223
  "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
224
  "l'extension manuellement.Nous sommes désolés pour le désagrément."
225
 
226
+ #: bws_functions.php:422
227
  msgid "Please, enter Your license key"
228
  msgstr "Merci de saisir votre clé de licence"
229
 
230
  #: bws_functions.php:452
 
231
  msgid ""
232
  "Congratulations! Pro version of the plugin is successfully installed and "
233
  "activated."
253
 
254
  #: bws_functions.php:469
255
  msgid "Enter your license key to install and activate"
256
+ msgstr "Saisir votre clé de licence pour installer et activer"
257
 
258
  #: bws_functions.php:471
 
259
  msgid "version of the plugin."
260
+ msgstr "version de l'extension."
261
 
262
  #: bws_functions.php:473 bws_functions.php:514
263
  msgid "License key can be found in the"
264
+ msgstr "La clé de licence peut être trouvée dans "
265
 
266
  #: bws_functions.php:475 bws_functions.php:516
 
267
  msgid "(your username is the email address specified during the purchase)."
268
  msgstr ""
269
+ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors de "
270
  "l'achat de l'extension)."
271
 
272
  #: bws_functions.php:479
275
  msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
276
 
277
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
278
+ #: bws_functions.php:532 bws_functions.php:1398 bws_menu.php:531
279
  #: bws_menu.php:540
280
  msgid "Activate"
281
  msgstr "Activé"
293
  msgstr ""
294
  " Après vous pouvez activer cette extension en donnant votre clé de licence."
295
 
296
+ #: bws_functions.php:526 bws_menu.php:118 bws_menu.php:304
297
  msgid "Unfortunately, you have exceeded the number of available tries per day."
298
  msgstr ""
299
  "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
364
  "licence sur votre page personnelle (zone client) sur notre site web."
365
 
366
  #: bws_functions.php:647
 
367
  msgid ""
368
  "(your username is the email address specified during the purchase). If "
369
  "necessary, please submit \"Lost your password?\" request."
370
  msgstr ""
371
+ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors de "
372
  "l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de "
373
  "mot de passe perdu."
374
 
375
+ #: bws_functions.php:651 bws_menu.php:302 bws_menu.php:313
376
  msgid "Check license key"
377
  msgstr "Vérifier la clé de licence"
378
 
409
  "Votre licence est terminée. Pour continuer à disposer du support rapide et "
410
  "des mises à jour de l'extension vous devez la renouveller."
411
 
412
+ #: bws_functions.php:675 bws_functions.php:728 bws_functions.php:1353
413
  msgid "Learn more"
414
  msgstr "En savoir plus"
415
 
439
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
440
  msgstr "et vous ne disposerez plus du support rapide et des mises à jour."
441
 
442
+ #: bws_functions.php:823
443
  msgid "Thank you for choosing"
444
  msgstr "Merci d'avoir choisi"
445
 
446
+ #: bws_functions.php:824
447
  msgid ""
448
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
449
  "we'd love to hear about it!"
451
  "Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
452
  "souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
453
 
454
+ #: bws_functions.php:825
455
  msgid "Suggest a Feature"
456
  msgstr "Proposer une fonctionnalité"
457
 
458
+ #: bws_functions.php:841
459
  msgid "Notice"
460
  msgstr "Avertissement"
461
 
462
+ #: bws_functions.php:841
463
  msgid "The plugin's settings have been changed."
464
  msgstr "Les paramètres de l'extension ont été modifiés."
465
 
466
+ #: bws_functions.php:842 bws_functions.php:1409
467
  msgid "Save Changes"
468
  msgstr "Sauvegarder les modifications"
469
 
470
+ #: bws_functions.php:856
471
  msgid ""
472
  "You can always look at premium options by clicking on the \"Show Pro features"
473
  "\" in the \"Go PRO\" tab"
475
  "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
476
  "\"Voir les fonctionnalités de la version PRO\" dans l'onglet Passer PRO"
477
 
478
+ #: bws_functions.php:985
479
  msgid "Add shortcode"
480
  msgstr "Ajouter le code court"
481
 
482
+ #: bws_functions.php:985
483
  msgid "Add BestWebSoft plugins' shortcodes using this button."
484
  msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
485
 
486
+ #: bws_functions.php:1034
487
  msgid "Close"
488
  msgstr "Fermer"
489
 
490
+ #: bws_functions.php:1126
491
  msgid "Restore all plugin settings to defaults"
492
  msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
493
 
494
+ #: bws_functions.php:1128
495
  msgid "Restore settings"
496
  msgstr "Remettre les paramètres"
497
 
498
+ #: bws_functions.php:1139
499
  msgid "Are you sure you want to restore all settings by default?"
500
  msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
501
 
502
+ #: bws_functions.php:1142
503
  msgid "Yes, restore all settings"
504
  msgstr "Oui, remettre les valeurs par défaut"
505
 
506
+ #: bws_functions.php:1143
507
  msgid "No, go back to the settings page"
508
  msgstr "Non, retourner à la page des paramètres"
509
 
510
+ #: bws_functions.php:1189
511
  msgid "Plugin"
512
  msgstr "Extension"
513
 
514
+ #: bws_functions.php:1198
515
  msgid "Shortcode settings"
516
  msgstr "Paramètres du code court"
517
 
518
+ #: bws_functions.php:1203
519
  msgid "The shortcode will be inserted"
520
  msgstr "Le code court sera inséré"
521
 
522
+ #: bws_functions.php:1208
523
  msgid "Insert"
524
  msgstr "Insérer"
525
 
526
+ #: bws_functions.php:1241
527
  msgid "Visit Help Center"
528
  msgstr "Visiter le site du support"
529
 
530
+ #: bws_functions.php:1246
531
  msgid "FAQ"
532
  msgstr "FAQ"
533
 
534
+ #: bws_functions.php:1252
535
  msgid "For more information:"
536
  msgstr "Pour plus d'informations&nbsp;:"
537
 
538
+ #: bws_functions.php:1253
539
  msgid "Documentation"
540
  msgstr "Documentation"
541
 
542
+ #: bws_functions.php:1254
543
  msgid "Video Instructions"
544
  msgstr "Vidéo explicative"
545
 
546
+ #: bws_functions.php:1255
547
  msgid "Submit a Request"
548
  msgstr "Soumettre une requête"
549
 
550
+ #: bws_functions.php:1266
551
  msgid "You do not have sufficient permissions to edit plugins for this site."
552
  msgstr ""
553
  "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
554
 
555
+ #: bws_functions.php:1317 bws_functions.php:1344
556
+ #, php-format
557
  msgid "File %s edited successfully."
558
+ msgstr "Le fichier %s a été modifié avec succès."
559
 
560
+ #: bws_functions.php:1319 bws_functions.php:1346
561
  msgid "Not enough permissions to create or update the file"
562
  msgstr "Pas assez de droits pour créer ou modifier le fichier"
563
 
564
+ #: bws_functions.php:1349
 
565
  msgid "Not enough permissions to create the file"
566
+ msgstr "Pas assez de droits pour créer le fichier"
567
 
568
+ #: bws_functions.php:1387
569
  msgid "These styles will be added to the header on all pages of your site."
570
  msgstr ""
571
  "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
572
 
573
+ #: bws_functions.php:1389
574
  #, php-format
575
  msgid ""
576
  "These PHP code will be hooked to the %s action and will be printed on front "
577
  "end only."
578
  msgstr ""
579
+ "Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
580
+ "partie publique."
581
 
582
+ #: bws_functions.php:1393
583
  msgid "Editing"
584
  msgstr "Modifier"
585
 
586
+ #: bws_functions.php:1395
587
  msgid "Browsing"
588
  msgstr "Parcourir"
589
 
590
+ #: bws_functions.php:1402
591
+ #, php-format
592
  msgid "Learn more about %s"
593
+ msgstr "En savoir plus sur %s"
594
 
595
+ #: bws_functions.php:1413
596
+ #, php-format
597
  msgid ""
598
  "You need to make this files writable before you can save your changes. See "
599
  "%s the Codex %s for more information."
602
  "modifications. Regarder %s du Codex %s pour plus d'informations."
603
 
604
  #: bws_menu.php:116
 
605
  msgid ""
606
  "This license key is bind to another website. Change it via personal Client "
607
  "Area."
608
+ msgstr ""
609
+ "La clé de licence correspond à un autre site. Modifier là au travers de "
610
+ "votre espace client."
611
 
612
  #: bws_menu.php:116
613
  msgid "Log in"
614
+ msgstr "Connexion"
615
 
616
  #: bws_menu.php:132
 
617
  msgid "Congratulations! Pro Membership license is successfully activated."
618
  msgstr ""
619
  "Félicitations! La version PRO de cette extension a été téléchargée et "
620
  "activée avec succès."
621
 
622
+ #: bws_menu.php:149
623
+ msgid "Please enter your license key."
624
+ msgstr "Merci de saisir votre clé de licence."
625
+
626
  #: bws_menu.php:161
627
  msgid "Not set"
628
  msgstr "Not set"
754
 
755
  #: bws_menu.php:286 bws_menu.php:626
756
  msgid "System status"
757
+ msgstr "Etat du système"
758
 
759
  #: bws_menu.php:287
760
  msgid "Support"
762
 
763
  #: bws_menu.php:288
764
  msgid "Manage purchased licenses & subscriptions"
765
+ msgstr "Gérer les licences et les adhésions"
766
 
767
  #: bws_menu.php:288
768
+ msgid "Client Area"
769
+ msgstr "Espace client"
770
 
771
+ #: bws_menu.php:307
 
 
 
 
 
 
 
 
 
 
 
 
 
772
  msgid "Enter your license key"
773
  msgstr "Merci de saisir votre clé de licence"
774
 
775
+ #: bws_menu.php:311
 
776
  msgid "Activate Membership"
777
+ msgstr "Activer l'adhésion"
778
 
779
+ #: bws_menu.php:320
780
  msgid "Don’t have valid license key yet?"
781
+ msgstr "Vous n'avez pas encore de licence valide ?"
 
 
 
 
782
 
783
+ #: bws_menu.php:320
784
  #, fuzzy
785
+ msgid "Subscribe to Pro Membership Now"
786
+ msgstr "Souscrire une adhésion PRO"
787
+
788
+ #: bws_menu.php:329
789
  msgid "Upload Plugin"
790
+ msgstr "Charger l'extension"
791
 
792
+ #: bws_menu.php:333
793
  #, php-format
794
  msgid ""
795
  "The plugin generated %d characters of <strong>unexpected output</strong> "
797
  "messages, problems with syndication feeds or other issues, try deactivating "
798
  "or removing this plugin."
799
  msgstr ""
800
+ "Cette extension a produit %d caractères <strong>inattendus</strong> durant "
801
+ "l'activation. Si vous constatez le message &#8220;headers already "
802
+ "sent&#8221;, des problèmes avec les flux de syndication ou autres, essayez "
803
+ "de désactiver l'extension ou supprimer l'extension."
804
 
805
+ #: bws_menu.php:335
806
  msgid ""
807
  "Plugin could not be activated because it triggered a <strong>fatal error</"
808
  "strong>."
809
  msgstr ""
810
+ "L'extension ne peut pas être activée car une <strong>erreur fatale</strong> "
811
+ "a été détectée."
812
 
813
+ #: bws_menu.php:338
814
  msgid "Plugin <strong>activated</strong>."
815
+ msgstr "Extension <strong>activée</strong>."
816
 
817
+ #: bws_menu.php:345
 
818
  msgid "Installing Plugin"
819
  msgstr "Extensions installées"
820
 
821
+ #: bws_menu.php:351
822
  msgid "Downloading install package from"
823
+ msgstr "Télécharger le paquet d'installation depuis"
824
 
825
+ #: bws_menu.php:376
826
  msgid "Unpacking the package"
827
+ msgstr "Décompresser le paquet"
828
 
829
+ #: bws_menu.php:381 bws_menu.php:389
 
830
  msgid "Installing the plugin"
831
+ msgstr "Installer l'extension"
832
 
833
+ #: bws_menu.php:395
 
834
  msgid "Successfully installed the plugin"
835
+ msgstr "Extension installée avec succès"
836
 
837
+ #: bws_menu.php:407
 
838
  msgid "Activate Plugin"
839
+ msgstr "Activer l'extension"
840
 
841
+ #: bws_menu.php:407 bws_menu.php:413
842
  msgid "Return to BestWebSoft Panel"
843
+ msgstr "Retourner à l'administration BestWebSoft"
844
 
845
+ #: bws_menu.php:417 bws_menu.php:432 bws_menu.php:561
846
  msgid "All"
847
  msgstr "Tous"
848
 
849
+ #: bws_menu.php:418
850
  msgid "Installed"
851
  msgstr "Installé"
852
 
853
+ #: bws_menu.php:419
 
854
  msgid "Not Installed"
855
+ msgstr "Non installé"
856
 
857
+ #: bws_menu.php:425
858
  msgid "Filter results"
859
+ msgstr "Filtrer les résultats"
860
 
861
+ #: bws_menu.php:428 bws_menu.php:557
862
  msgid "Category"
863
+ msgstr "Catégorie"
864
 
865
+ #: bws_menu.php:492
866
  #, fuzzy
867
+ msgid "Not installed"
868
+ msgstr "Non installé"
869
+
870
+ #: bws_menu.php:496
871
  msgid "Renew to get updates"
872
+ msgstr "Se réabonner pour avoir les mises à jour"
873
 
874
  #: bws_menu.php:499
875
+ #, php-format
876
  msgid "Update to v %s"
877
  msgstr "Mettre à jour avec la version %s"
878
 
882
 
883
  #: bws_menu.php:517
884
  msgid "Upgrade to Pro"
885
+ msgstr "Passer à la version PRO"
886
 
887
  #: bws_menu.php:521
888
  msgid "Donate"
889
+ msgstr "Don"
890
 
891
  #: bws_menu.php:531 bws_menu.php:540
892
  msgid "Activate this plugin"
893
  msgstr "Activer cette extension"
894
 
895
  #: bws_menu.php:543
 
896
  msgid "Install this plugin"
897
+ msgstr "Installer cette extension"
898
 
899
  #: bws_menu.php:552
900
  msgid "Nothing found. Try another criteria."
901
+ msgstr "Pas de réponse. essayer d'autres critères."
902
 
903
  #: bws_menu.php:589 bws_menu.php:609
904
  #, php-format
911
 
912
  #: bws_menu.php:623
913
  msgid "Browse Free WordPress Themes"
914
+ msgstr "Parcourir les thèmes gratuits pour WordPress"
915
 
916
  #: bws_menu.php:632
917
  msgid "Send to support"
935
 
936
  #: product_list.php:7
937
  msgid "Advertisement"
938
+ msgstr "Publicité"
939
 
940
  #: product_list.php:8
941
  msgid "Content & Media"
942
+ msgstr "Contenu & média"
943
 
944
  #: product_list.php:9
945
  msgid "Management"
946
+ msgstr "Administration"
947
 
948
  #: product_list.php:10
949
+ msgid "Recommended"
950
+ msgstr "Recommandé"
951
 
952
  #: product_list.php:11
953
+ msgid "Security"
954
+ msgstr "Sécurité"
 
955
 
956
  #: product_list.php:12
957
+ msgid "Site Stats"
958
+ msgstr "Statistiques"
959
 
960
  #: product_list.php:13
961
+ msgid "Social"
962
+ msgstr "Social"
963
 
964
  #: product_list.php:14
965
+ msgid "Utilities"
966
+ msgstr "Utilitaires"
967
 
968
+ #: product_list.php:15
969
+ msgid "Other"
970
+ msgstr "Autre"
971
 
972
+ #~ msgid "Get Access to %s+ Premium Plugins"
973
+ #~ msgstr "Accéder à plus de %s extension premiums"
974
 
975
  #~ msgid ""
976
+ #~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
977
+ #~ "plugins on a single website %s for only %s per month."
978
  #~ msgstr ""
979
+ #~ "Rejoignez le réseau PRO de BestWebSoft, arrêtez quand vous le vouler et "
980
+ #~ "utiliser toutes les extensions sur un seul site %s pour seulement %s par "
981
+ #~ "mois."
982
 
983
+ #~ msgid "My Account"
984
+ #~ msgstr "Mon compte"
985
 
986
  #~ msgid "Need help?"
987
  #~ msgstr "Besoin d'aide ?"
988
 
 
 
 
 
 
 
989
  #~ msgid "Go"
990
  #~ msgstr "Passez"
991
 
998
  #~ msgid "Install now"
999
  #~ msgstr "Installer maintenant"
1000
 
1001
+ #~ msgid "Configure Settings"
1002
+ #~ msgstr "Configuration des paramètres"
1003
+
1004
  #~ msgid "Try again"
1005
  #~ msgstr "Essayer de nouveau"
1006
 
1019
  #~ msgid "Preview"
1020
  #~ msgstr "Pré-visualiser"
1021
 
1022
+ #~ msgid "You can download and activate"
1023
+ #~ msgstr "Vous pouvez télécharger et activer la version "
1024
+
1025
+ #~ msgid "version of this plugin by entering Your license key."
1026
+ #~ msgstr " de cette extension en donnant votre clé de licence."
1027
+
1028
+ #~ msgid ""
1029
+ #~ "You can find your license key on your personal page Client area, by "
1030
+ #~ "clicking on the link"
1031
+ #~ msgstr ""
1032
+ #~ "Vous pouvez trouver votre clé de licence sur votre page personnelle dans "
1033
+ #~ "la zone cliente en cliquant sur le lien"
1034
+
1035
  #~ msgid "Add BWS Plugins Shortcode"
1036
  #~ msgstr "Ajouter le code court de l'extension BWS"
1037
 
bws_menu/languages/bestwebsoft-pl_PL.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-06-20 18:01+0300\n"
6
- "PO-Revision-Date: 2016-06-20 18:01+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Damian Dąbrowski <contact@codester.pl>\n"
9
  "Language: pl_PL\n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "|| n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:330
22
  msgid "Plugins"
23
  msgstr "Wtyczki"
24
 
@@ -81,7 +81,7 @@ msgid "Add New"
81
  msgstr "Dodaj nowy"
82
 
83
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
84
- #: bws_functions.php:724 bws_functions.php:814
85
  msgid "Close notice"
86
  msgstr "Zamknij powiadomienie"
87
 
@@ -188,26 +188,26 @@ msgstr ""
188
  "może być wykorzystana tylko raz."
189
 
190
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
191
- #: bws_menu.php:370 bws_menu.php:401 bws_menu.php:412
192
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
193
  msgstr ""
194
  "Pobieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
195
  "manualnie"
196
 
197
- #: bws_functions.php:361 bws_menu.php:387
198
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
199
  msgstr ""
200
  "Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
201
  "manualnie"
202
 
203
- #: bws_functions.php:367 bws_menu.php:394
204
  msgid ""
205
  "Your server does not support either ZipArchive or Phar. Please, upload the "
206
  "plugin manually"
207
  msgstr ""
208
  "Twój serwer nie wspiera ZipAcrchive lub Phar. Proszę dodać wtyczkę manualnie"
209
 
210
- #: bws_functions.php:374 bws_menu.php:404
211
  msgid "UploadDir is not writable. Please, upload the plugin manually"
212
  msgstr ""
213
  "Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę manualnie"
@@ -220,7 +220,7 @@ msgstr ""
220
  "Coś poszło nie tak. Spróbuj ponowie później lub dodaj wtyczkę manualnie. "
221
  "Przepraszamy za niedogodności."
222
 
223
- #: bws_functions.php:422 bws_menu.php:149
224
  msgid "Please, enter Your license key"
225
  msgstr "Proszę podać klucz licencji."
226
 
@@ -271,7 +271,7 @@ msgid "Start Your Free %s-Day Trial Now"
271
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
272
 
273
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
274
- #: bws_functions.php:532 bws_functions.php:1382 bws_menu.php:531
275
  #: bws_menu.php:540
276
  msgid "Activate"
277
  msgstr "Aktywuj"
@@ -288,7 +288,7 @@ msgstr ""
288
  msgid "After that you can activate it by entering your license key."
289
  msgstr "Po wszystkim możesz aktywować wtyczkę poprzez podanie klucza licencji."
290
 
291
- #: bws_functions.php:526 bws_menu.php:118 bws_menu.php:306
292
  msgid "Unfortunately, you have exceeded the number of available tries per day."
293
  msgstr "Niestety, przekroczono dzienną liczbę dostępnych prób."
294
 
@@ -360,7 +360,7 @@ msgstr ""
360
  "(login to adres email podany przy zakupie). Jeśli to koniczne użyj opcji "
361
  "\"Zgubiłeś swoje hasło?\"."
362
 
363
- #: bws_functions.php:651 bws_menu.php:304 bws_menu.php:315
364
  msgid "Check license key"
365
  msgstr "Sprawdź klucz licencji"
366
 
@@ -396,7 +396,7 @@ msgstr ""
396
  "Twoja licencja wygasła. Aby podtrzymać szybki dostęp do pomocy i "
397
  "aktualizacji powinieneś przedłużyć licencję."
398
 
399
- #: bws_functions.php:675 bws_functions.php:728 bws_functions.php:1337
400
  msgid "Learn more"
401
  msgstr "Dowiedz się więcej"
402
 
@@ -427,34 +427,34 @@ msgstr ""
427
  "zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
428
  "AKTUALIZACJI."
429
 
430
- #: bws_functions.php:809
431
  #, fuzzy
432
  msgid "Thank you for choosing"
433
  msgstr "Dziękujemy za instalację"
434
 
435
- #: bws_functions.php:810
436
  msgid ""
437
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
438
  "we'd love to hear about it!"
439
  msgstr ""
440
 
441
- #: bws_functions.php:811
442
  msgid "Suggest a Feature"
443
  msgstr ""
444
 
445
- #: bws_functions.php:827
446
  msgid "Notice"
447
  msgstr "Uwaga"
448
 
449
- #: bws_functions.php:827
450
  msgid "The plugin's settings have been changed."
451
  msgstr "Ustawienia wtyczki zostały zmienione."
452
 
453
- #: bws_functions.php:828 bws_functions.php:1393
454
  msgid "Save Changes"
455
  msgstr "Zapisz zmiany"
456
 
457
- #: bws_functions.php:842
458
  msgid ""
459
  "You can always look at premium options by clicking on the \"Show Pro features"
460
  "\" in the \"Go PRO\" tab"
@@ -462,124 +462,124 @@ msgstr ""
462
  "Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
463
  "PRO\" w zakładce \"Go PRO\""
464
 
465
- #: bws_functions.php:971
466
  #, fuzzy
467
  msgid "Add shortcode"
468
  msgstr "Dodaj BWS Shortcode"
469
 
470
- #: bws_functions.php:971
471
  msgid "Add BestWebSoft plugins' shortcodes using this button."
472
  msgstr ""
473
 
474
- #: bws_functions.php:1020
475
  msgid "Close"
476
  msgstr "Zamknij"
477
 
478
- #: bws_functions.php:1112
479
  msgid "Restore all plugin settings to defaults"
480
  msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
481
 
482
- #: bws_functions.php:1114
483
  msgid "Restore settings"
484
  msgstr "Przywróć ustawienia"
485
 
486
- #: bws_functions.php:1125
487
  msgid "Are you sure you want to restore all settings by default?"
488
  msgstr ""
489
  "Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
490
  "domyślnych?"
491
 
492
- #: bws_functions.php:1128
493
  msgid "Yes, restore all settings"
494
  msgstr "Tak, przywróć wszystkie ustawienia"
495
 
496
- #: bws_functions.php:1129
497
  msgid "No, go back to the settings page"
498
  msgstr "Nie, wróć do ustawień"
499
 
500
- #: bws_functions.php:1175
501
  msgid "Plugin"
502
  msgstr "Wtyczka"
503
 
504
- #: bws_functions.php:1184
505
  msgid "Shortcode settings"
506
  msgstr "Ustawienia shortcode"
507
 
508
- #: bws_functions.php:1189
509
  msgid "The shortcode will be inserted"
510
  msgstr "Shortcode zostanie umieszczony"
511
 
512
- #: bws_functions.php:1194
513
  msgid "Insert"
514
  msgstr "Umieść"
515
 
516
- #: bws_functions.php:1225
517
  msgid "Visit Help Center"
518
  msgstr ""
519
 
520
- #: bws_functions.php:1230
521
  msgid "FAQ"
522
  msgstr "FAQ"
523
 
524
- #: bws_functions.php:1236
525
  msgid "For more information:"
526
  msgstr ""
527
 
528
- #: bws_functions.php:1237
529
  msgid "Documentation"
530
  msgstr ""
531
 
532
- #: bws_functions.php:1238
533
  msgid "Video Instructions"
534
  msgstr ""
535
 
536
- #: bws_functions.php:1239
537
  #, fuzzy
538
  msgid "Submit a Request"
539
  msgstr "送信ボタン"
540
 
541
- #: bws_functions.php:1250
542
  msgid "You do not have sufficient permissions to edit plugins for this site."
543
  msgstr ""
544
 
545
- #: bws_functions.php:1301 bws_functions.php:1328
546
  #, php-format
547
  msgid "File %s edited successfully."
548
  msgstr ""
549
 
550
- #: bws_functions.php:1303 bws_functions.php:1330
551
  msgid "Not enough permissions to create or update the file"
552
  msgstr ""
553
 
554
- #: bws_functions.php:1333
555
  msgid "Not enough permissions to create the file"
556
  msgstr ""
557
 
558
- #: bws_functions.php:1371
559
  msgid "These styles will be added to the header on all pages of your site."
560
  msgstr ""
561
 
562
- #: bws_functions.php:1373
563
  #, php-format
564
  msgid ""
565
  "These PHP code will be hooked to the %s action and will be printed on front "
566
  "end only."
567
  msgstr ""
568
 
569
- #: bws_functions.php:1377
570
  msgid "Editing"
571
  msgstr ""
572
 
573
- #: bws_functions.php:1379
574
  msgid "Browsing"
575
  msgstr ""
576
 
577
- #: bws_functions.php:1386
578
  #, fuzzy, php-format
579
  msgid "Learn more about %s"
580
  msgstr "Dowiedz się więcej"
581
 
582
- #: bws_functions.php:1397
583
  #, php-format
584
  msgid ""
585
  "You need to make this files writable before you can save your changes. See "
@@ -602,6 +602,11 @@ msgstr ""
602
  msgid "Congratulations! Pro Membership license is successfully activated."
603
  msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
604
 
 
 
 
 
 
605
  #: bws_menu.php:161
606
  msgid "Not set"
607
  msgstr "Nie ustawiono"
@@ -744,45 +749,34 @@ msgid "Manage purchased licenses & subscriptions"
744
  msgstr ""
745
 
746
  #: bws_menu.php:288
747
- msgid "My Account"
748
- msgstr ""
749
-
750
- #: bws_menu.php:296
751
- #, php-format
752
- msgid "Get Access to %s+ Premium Plugins"
753
- msgstr ""
754
-
755
- #: bws_menu.php:297
756
- #, php-format
757
- msgid ""
758
- "Join BestWebSoft Pro Membership today, cancel any time and use all plugins "
759
- "on a single website %s for only %s per month."
760
- msgstr ""
761
 
762
- #: bws_menu.php:309
763
  #, fuzzy
764
  msgid "Enter your license key"
765
  msgstr "Podaj klucz licencji"
766
 
767
- #: bws_menu.php:313
768
  #, fuzzy
769
  msgid "Activate Membership"
770
  msgstr "有効なテーマ"
771
 
772
- #: bws_menu.php:322
773
  msgid "Don’t have valid license key yet?"
774
  msgstr ""
775
 
776
- #: bws_menu.php:322
777
- msgid "Subscribe to Pro Membership"
778
  msgstr ""
779
 
780
- #: bws_menu.php:331
781
  #, fuzzy
782
  msgid "Upload Plugin"
783
  msgstr "Wtyczka"
784
 
785
- #: bws_menu.php:335
786
  #, php-format
787
  msgid ""
788
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -791,69 +785,74 @@ msgid ""
791
  "or removing this plugin."
792
  msgstr ""
793
 
794
- #: bws_menu.php:337
795
  msgid ""
796
  "Plugin could not be activated because it triggered a <strong>fatal error</"
797
  "strong>."
798
  msgstr ""
799
 
800
- #: bws_menu.php:340
801
  msgid "Plugin <strong>activated</strong>."
802
  msgstr ""
803
 
804
- #: bws_menu.php:347
805
  #, fuzzy
806
  msgid "Installing Plugin"
807
  msgstr "Zainstalowane"
808
 
809
- #: bws_menu.php:353
810
  msgid "Downloading install package from"
811
  msgstr ""
812
 
813
- #: bws_menu.php:378
814
  msgid "Unpacking the package"
815
  msgstr ""
816
 
817
- #: bws_menu.php:383 bws_menu.php:391
818
  #, fuzzy
819
  msgid "Installing the plugin"
820
  msgstr "Zainstalowane"
821
 
822
- #: bws_menu.php:397
823
  #, fuzzy
824
  msgid "Successfully installed the plugin"
825
  msgstr "Zainstalowane"
826
 
827
- #: bws_menu.php:409
828
  #, fuzzy
829
  msgid "Activate Plugin"
830
  msgstr "Aktywne wtyczki"
831
 
832
- #: bws_menu.php:409 bws_menu.php:415
833
  msgid "Return to BestWebSoft Panel"
834
  msgstr ""
835
 
836
- #: bws_menu.php:419 bws_menu.php:434 bws_menu.php:561
837
  msgid "All"
838
  msgstr "Wszystko"
839
 
840
- #: bws_menu.php:420
841
  msgid "Installed"
842
  msgstr "Zainstalowane"
843
 
844
- #: bws_menu.php:421
845
  #, fuzzy
846
  msgid "Not Installed"
847
  msgstr "Zainstalowane"
848
 
849
- #: bws_menu.php:427
850
  msgid "Filter results"
851
  msgstr ""
852
 
853
- #: bws_menu.php:430 bws_menu.php:557
854
  msgid "Category"
855
  msgstr ""
856
 
 
 
 
 
 
857
  #: bws_menu.php:496
858
  #, fuzzy
859
  msgid "Renew to get updates"
@@ -935,23 +934,27 @@ msgid "Management"
935
  msgstr ""
936
 
937
  #: product_list.php:10
 
 
 
 
938
  msgid "Security"
939
  msgstr ""
940
 
941
- #: product_list.php:11
942
  #, fuzzy
943
  msgid "Site Stats"
944
  msgstr "Status systemu"
945
 
946
- #: product_list.php:12
947
  msgid "Social"
948
  msgstr ""
949
 
950
- #: product_list.php:13
951
  msgid "Utilities"
952
  msgstr ""
953
 
954
- #: product_list.php:14
955
  msgid "Other"
956
  msgstr ""
957
 
@@ -974,12 +977,6 @@ msgstr ""
974
  #~ msgid "Need help?"
975
  #~ msgstr "Potrzebujesz pomocy?"
976
 
977
- #~ msgid "Client area"
978
- #~ msgstr "Panel Klienta"
979
-
980
- #~ msgid "Recommended"
981
- #~ msgstr "Polecane"
982
-
983
  #~ msgid "Go"
984
  #~ msgstr "Go"
985
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-14 15:18+0300\n"
6
+ "PO-Revision-Date: 2016-07-14 15:18+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Damian Dąbrowski <contact@codester.pl>\n"
9
  "Language: pl_PL\n"
18
  "|| n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:328
22
  msgid "Plugins"
23
  msgstr "Wtyczki"
24
 
81
  msgstr "Dodaj nowy"
82
 
83
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
84
+ #: bws_functions.php:724 bws_functions.php:828
85
  msgid "Close notice"
86
  msgstr "Zamknij powiadomienie"
87
 
188
  "może być wykorzystana tylko raz."
189
 
190
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
191
+ #: bws_menu.php:368 bws_menu.php:399 bws_menu.php:410
192
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
193
  msgstr ""
194
  "Pobieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
195
  "manualnie"
196
 
197
+ #: bws_functions.php:361 bws_menu.php:385
198
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
199
  msgstr ""
200
  "Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
201
  "manualnie"
202
 
203
+ #: bws_functions.php:367 bws_menu.php:392
204
  msgid ""
205
  "Your server does not support either ZipArchive or Phar. Please, upload the "
206
  "plugin manually"
207
  msgstr ""
208
  "Twój serwer nie wspiera ZipAcrchive lub Phar. Proszę dodać wtyczkę manualnie"
209
 
210
+ #: bws_functions.php:374 bws_menu.php:402
211
  msgid "UploadDir is not writable. Please, upload the plugin manually"
212
  msgstr ""
213
  "Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę manualnie"
220
  "Coś poszło nie tak. Spróbuj ponowie później lub dodaj wtyczkę manualnie. "
221
  "Przepraszamy za niedogodności."
222
 
223
+ #: bws_functions.php:422
224
  msgid "Please, enter Your license key"
225
  msgstr "Proszę podać klucz licencji."
226
 
271
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
272
 
273
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
274
+ #: bws_functions.php:532 bws_functions.php:1398 bws_menu.php:531
275
  #: bws_menu.php:540
276
  msgid "Activate"
277
  msgstr "Aktywuj"
288
  msgid "After that you can activate it by entering your license key."
289
  msgstr "Po wszystkim możesz aktywować wtyczkę poprzez podanie klucza licencji."
290
 
291
+ #: bws_functions.php:526 bws_menu.php:118 bws_menu.php:304
292
  msgid "Unfortunately, you have exceeded the number of available tries per day."
293
  msgstr "Niestety, przekroczono dzienną liczbę dostępnych prób."
294
 
360
  "(login to adres email podany przy zakupie). Jeśli to koniczne użyj opcji "
361
  "\"Zgubiłeś swoje hasło?\"."
362
 
363
+ #: bws_functions.php:651 bws_menu.php:302 bws_menu.php:313
364
  msgid "Check license key"
365
  msgstr "Sprawdź klucz licencji"
366
 
396
  "Twoja licencja wygasła. Aby podtrzymać szybki dostęp do pomocy i "
397
  "aktualizacji powinieneś przedłużyć licencję."
398
 
399
+ #: bws_functions.php:675 bws_functions.php:728 bws_functions.php:1353
400
  msgid "Learn more"
401
  msgstr "Dowiedz się więcej"
402
 
427
  "zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
428
  "AKTUALIZACJI."
429
 
430
+ #: bws_functions.php:823
431
  #, fuzzy
432
  msgid "Thank you for choosing"
433
  msgstr "Dziękujemy za instalację"
434
 
435
+ #: bws_functions.php:824
436
  msgid ""
437
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
438
  "we'd love to hear about it!"
439
  msgstr ""
440
 
441
+ #: bws_functions.php:825
442
  msgid "Suggest a Feature"
443
  msgstr ""
444
 
445
+ #: bws_functions.php:841
446
  msgid "Notice"
447
  msgstr "Uwaga"
448
 
449
+ #: bws_functions.php:841
450
  msgid "The plugin's settings have been changed."
451
  msgstr "Ustawienia wtyczki zostały zmienione."
452
 
453
+ #: bws_functions.php:842 bws_functions.php:1409
454
  msgid "Save Changes"
455
  msgstr "Zapisz zmiany"
456
 
457
+ #: bws_functions.php:856
458
  msgid ""
459
  "You can always look at premium options by clicking on the \"Show Pro features"
460
  "\" in the \"Go PRO\" tab"
462
  "Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
463
  "PRO\" w zakładce \"Go PRO\""
464
 
465
+ #: bws_functions.php:985
466
  #, fuzzy
467
  msgid "Add shortcode"
468
  msgstr "Dodaj BWS Shortcode"
469
 
470
+ #: bws_functions.php:985
471
  msgid "Add BestWebSoft plugins' shortcodes using this button."
472
  msgstr ""
473
 
474
+ #: bws_functions.php:1034
475
  msgid "Close"
476
  msgstr "Zamknij"
477
 
478
+ #: bws_functions.php:1126
479
  msgid "Restore all plugin settings to defaults"
480
  msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
481
 
482
+ #: bws_functions.php:1128
483
  msgid "Restore settings"
484
  msgstr "Przywróć ustawienia"
485
 
486
+ #: bws_functions.php:1139
487
  msgid "Are you sure you want to restore all settings by default?"
488
  msgstr ""
489
  "Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
490
  "domyślnych?"
491
 
492
+ #: bws_functions.php:1142
493
  msgid "Yes, restore all settings"
494
  msgstr "Tak, przywróć wszystkie ustawienia"
495
 
496
+ #: bws_functions.php:1143
497
  msgid "No, go back to the settings page"
498
  msgstr "Nie, wróć do ustawień"
499
 
500
+ #: bws_functions.php:1189
501
  msgid "Plugin"
502
  msgstr "Wtyczka"
503
 
504
+ #: bws_functions.php:1198
505
  msgid "Shortcode settings"
506
  msgstr "Ustawienia shortcode"
507
 
508
+ #: bws_functions.php:1203
509
  msgid "The shortcode will be inserted"
510
  msgstr "Shortcode zostanie umieszczony"
511
 
512
+ #: bws_functions.php:1208
513
  msgid "Insert"
514
  msgstr "Umieść"
515
 
516
+ #: bws_functions.php:1241
517
  msgid "Visit Help Center"
518
  msgstr ""
519
 
520
+ #: bws_functions.php:1246
521
  msgid "FAQ"
522
  msgstr "FAQ"
523
 
524
+ #: bws_functions.php:1252
525
  msgid "For more information:"
526
  msgstr ""
527
 
528
+ #: bws_functions.php:1253
529
  msgid "Documentation"
530
  msgstr ""
531
 
532
+ #: bws_functions.php:1254
533
  msgid "Video Instructions"
534
  msgstr ""
535
 
536
+ #: bws_functions.php:1255
537
  #, fuzzy
538
  msgid "Submit a Request"
539
  msgstr "送信ボタン"
540
 
541
+ #: bws_functions.php:1266
542
  msgid "You do not have sufficient permissions to edit plugins for this site."
543
  msgstr ""
544
 
545
+ #: bws_functions.php:1317 bws_functions.php:1344
546
  #, php-format
547
  msgid "File %s edited successfully."
548
  msgstr ""
549
 
550
+ #: bws_functions.php:1319 bws_functions.php:1346
551
  msgid "Not enough permissions to create or update the file"
552
  msgstr ""
553
 
554
+ #: bws_functions.php:1349
555
  msgid "Not enough permissions to create the file"
556
  msgstr ""
557
 
558
+ #: bws_functions.php:1387
559
  msgid "These styles will be added to the header on all pages of your site."
560
  msgstr ""
561
 
562
+ #: bws_functions.php:1389
563
  #, php-format
564
  msgid ""
565
  "These PHP code will be hooked to the %s action and will be printed on front "
566
  "end only."
567
  msgstr ""
568
 
569
+ #: bws_functions.php:1393
570
  msgid "Editing"
571
  msgstr ""
572
 
573
+ #: bws_functions.php:1395
574
  msgid "Browsing"
575
  msgstr ""
576
 
577
+ #: bws_functions.php:1402
578
  #, fuzzy, php-format
579
  msgid "Learn more about %s"
580
  msgstr "Dowiedz się więcej"
581
 
582
+ #: bws_functions.php:1413
583
  #, php-format
584
  msgid ""
585
  "You need to make this files writable before you can save your changes. See "
602
  msgid "Congratulations! Pro Membership license is successfully activated."
603
  msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
604
 
605
+ #: bws_menu.php:149
606
+ #, fuzzy
607
+ msgid "Please enter your license key."
608
+ msgstr "Podaj klucz licencji"
609
+
610
  #: bws_menu.php:161
611
  msgid "Not set"
612
  msgstr "Nie ustawiono"
749
  msgstr ""
750
 
751
  #: bws_menu.php:288
752
+ #, fuzzy
753
+ msgid "Client Area"
754
+ msgstr "Panel Klienta"
 
 
 
 
 
 
 
 
 
 
 
755
 
756
+ #: bws_menu.php:307
757
  #, fuzzy
758
  msgid "Enter your license key"
759
  msgstr "Podaj klucz licencji"
760
 
761
+ #: bws_menu.php:311
762
  #, fuzzy
763
  msgid "Activate Membership"
764
  msgstr "有効なテーマ"
765
 
766
+ #: bws_menu.php:320
767
  msgid "Don’t have valid license key yet?"
768
  msgstr ""
769
 
770
+ #: bws_menu.php:320
771
+ msgid "Subscribe to Pro Membership Now"
772
  msgstr ""
773
 
774
+ #: bws_menu.php:329
775
  #, fuzzy
776
  msgid "Upload Plugin"
777
  msgstr "Wtyczka"
778
 
779
+ #: bws_menu.php:333
780
  #, php-format
781
  msgid ""
782
  "The plugin generated %d characters of <strong>unexpected output</strong> "
785
  "or removing this plugin."
786
  msgstr ""
787
 
788
+ #: bws_menu.php:335
789
  msgid ""
790
  "Plugin could not be activated because it triggered a <strong>fatal error</"
791
  "strong>."
792
  msgstr ""
793
 
794
+ #: bws_menu.php:338
795
  msgid "Plugin <strong>activated</strong>."
796
  msgstr ""
797
 
798
+ #: bws_menu.php:345
799
  #, fuzzy
800
  msgid "Installing Plugin"
801
  msgstr "Zainstalowane"
802
 
803
+ #: bws_menu.php:351
804
  msgid "Downloading install package from"
805
  msgstr ""
806
 
807
+ #: bws_menu.php:376
808
  msgid "Unpacking the package"
809
  msgstr ""
810
 
811
+ #: bws_menu.php:381 bws_menu.php:389
812
  #, fuzzy
813
  msgid "Installing the plugin"
814
  msgstr "Zainstalowane"
815
 
816
+ #: bws_menu.php:395
817
  #, fuzzy
818
  msgid "Successfully installed the plugin"
819
  msgstr "Zainstalowane"
820
 
821
+ #: bws_menu.php:407
822
  #, fuzzy
823
  msgid "Activate Plugin"
824
  msgstr "Aktywne wtyczki"
825
 
826
+ #: bws_menu.php:407 bws_menu.php:413
827
  msgid "Return to BestWebSoft Panel"
828
  msgstr ""
829
 
830
+ #: bws_menu.php:417 bws_menu.php:432 bws_menu.php:561
831
  msgid "All"
832
  msgstr "Wszystko"
833
 
834
+ #: bws_menu.php:418
835
  msgid "Installed"
836
  msgstr "Zainstalowane"
837
 
838
+ #: bws_menu.php:419
839
  #, fuzzy
840
  msgid "Not Installed"
841
  msgstr "Zainstalowane"
842
 
843
+ #: bws_menu.php:425
844
  msgid "Filter results"
845
  msgstr ""
846
 
847
+ #: bws_menu.php:428 bws_menu.php:557
848
  msgid "Category"
849
  msgstr ""
850
 
851
+ #: bws_menu.php:492
852
+ #, fuzzy
853
+ msgid "Not installed"
854
+ msgstr "Zainstalowane"
855
+
856
  #: bws_menu.php:496
857
  #, fuzzy
858
  msgid "Renew to get updates"
934
  msgstr ""
935
 
936
  #: product_list.php:10
937
+ msgid "Recommended"
938
+ msgstr "Polecane"
939
+
940
+ #: product_list.php:11
941
  msgid "Security"
942
  msgstr ""
943
 
944
+ #: product_list.php:12
945
  #, fuzzy
946
  msgid "Site Stats"
947
  msgstr "Status systemu"
948
 
949
+ #: product_list.php:13
950
  msgid "Social"
951
  msgstr ""
952
 
953
+ #: product_list.php:14
954
  msgid "Utilities"
955
  msgstr ""
956
 
957
+ #: product_list.php:15
958
  msgid "Other"
959
  msgstr ""
960
 
977
  #~ msgid "Need help?"
978
  #~ msgstr "Potrzebujesz pomocy?"
979
 
 
 
 
 
 
 
980
  #~ msgid "Go"
981
  #~ msgstr "Go"
982
 
bws_menu/languages/bestwebsoft-ru_RU.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-06-20 18:01+0300\n"
6
- "PO-Revision-Date: 2016-06-20 18:04+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -16,7 +16,7 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:330
20
  msgid "Plugins"
21
  msgstr "Плагины"
22
 
@@ -78,7 +78,7 @@ msgid "Add New"
78
  msgstr "Добавить"
79
 
80
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
81
- #: bws_functions.php:724 bws_functions.php:814
82
  msgid "Close notice"
83
  msgstr "Закрыть"
84
 
@@ -184,16 +184,16 @@ msgstr ""
184
  "лицензия может быть установлена только один раз."
185
 
186
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
187
- #: bws_menu.php:370 bws_menu.php:401 bws_menu.php:412
188
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
189
  msgstr ""
190
  "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
191
 
192
- #: bws_functions.php:361 bws_menu.php:387
193
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
194
  msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
195
 
196
- #: bws_functions.php:367 bws_menu.php:394
197
  msgid ""
198
  "Your server does not support either ZipArchive or Phar. Please, upload the "
199
  "plugin manually"
@@ -201,7 +201,7 @@ msgstr ""
201
  "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. "
202
  "Пожалуйста, загрузите плагин вручную"
203
 
204
- #: bws_functions.php:374 bws_menu.php:404
205
  msgid "UploadDir is not writable. Please, upload the plugin manually"
206
  msgstr ""
207
  "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
@@ -214,7 +214,7 @@ msgstr ""
214
  "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. "
215
  "Приносим извинения за неудобства."
216
 
217
- #: bws_functions.php:422 bws_menu.php:149
218
  msgid "Please, enter Your license key"
219
  msgstr "Пожалуйста, введите ваш лицензионный ключ"
220
 
@@ -262,7 +262,7 @@ msgid "Start Your Free %s-Day Trial Now"
262
  msgstr "Попробуйте %s-дневную Trial версию бесплатно"
263
 
264
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
265
- #: bws_functions.php:532 bws_functions.php:1382 bws_menu.php:531
266
  #: bws_menu.php:540
267
  msgid "Activate"
268
  msgstr "Активировать"
@@ -278,7 +278,7 @@ msgstr ""
278
  msgid "After that you can activate it by entering your license key."
279
  msgstr "После этого вы сможете активировать его введя лицензионный ключ."
280
 
281
- #: bws_functions.php:526 bws_menu.php:118 bws_menu.php:306
282
  msgid "Unfortunately, you have exceeded the number of available tries per day."
283
  msgstr "К сожалению, вы превысили количество доступных попыток."
284
 
@@ -349,7 +349,7 @@ msgstr ""
349
  "(ваше имя пользователя - это емейл, указанный при покупке). При "
350
  "необходимости нажмите \"Забыли пароль?\"."
351
 
352
- #: bws_functions.php:651 bws_menu.php:304 bws_menu.php:315
353
  msgid "Check license key"
354
  msgstr "Проверка лицензионного ключа"
355
 
@@ -386,7 +386,7 @@ msgstr ""
386
  "плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно "
387
  "продлить лицензию."
388
 
389
- #: bws_functions.php:675 bws_functions.php:728 bws_functions.php:1337
390
  msgid "Learn more"
391
  msgstr "Подробнее"
392
 
@@ -415,11 +415,11 @@ msgstr "истекает"
415
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
416
  msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
417
 
418
- #: bws_functions.php:809
419
  msgid "Thank you for choosing"
420
  msgstr "Спасибо за выбор"
421
 
422
- #: bws_functions.php:810
423
  msgid ""
424
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
425
  "we'd love to hear about it!"
@@ -428,23 +428,23 @@ msgstr ""
428
  "функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
429
  "новых идей!"
430
 
431
- #: bws_functions.php:811
432
  msgid "Suggest a Feature"
433
  msgstr "Предложить функционал"
434
 
435
- #: bws_functions.php:827
436
  msgid "Notice"
437
  msgstr "Внимание"
438
 
439
- #: bws_functions.php:827
440
  msgid "The plugin's settings have been changed."
441
  msgstr "Настройки плагина были изменены"
442
 
443
- #: bws_functions.php:828 bws_functions.php:1393
444
  msgid "Save Changes"
445
  msgstr "Сохранить изменения"
446
 
447
- #: bws_functions.php:842
448
  msgid ""
449
  "You can always look at premium options by clicking on the \"Show Pro features"
450
  "\" in the \"Go PRO\" tab"
@@ -452,103 +452,103 @@ msgstr ""
452
  "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Показать Pro "
453
  "опции\" на вкладке \"Перейти на PRO\""
454
 
455
- #: bws_functions.php:971
456
  msgid "Add shortcode"
457
  msgstr "Добавить шорткод"
458
 
459
- #: bws_functions.php:971
460
  msgid "Add BestWebSoft plugins' shortcodes using this button."
461
  msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
462
 
463
- #: bws_functions.php:1020
464
  msgid "Close"
465
  msgstr "Закрыть"
466
 
467
- #: bws_functions.php:1112
468
  msgid "Restore all plugin settings to defaults"
469
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию"
470
 
471
- #: bws_functions.php:1114
472
  msgid "Restore settings"
473
  msgstr "Восстановить настройки"
474
 
475
- #: bws_functions.php:1125
476
  msgid "Are you sure you want to restore all settings by default?"
477
  msgstr ""
478
  "Вы уверены что хотите восстановить все настройки плагина к настройкам по "
479
  "умолчанию?"
480
 
481
- #: bws_functions.php:1128
482
  msgid "Yes, restore all settings"
483
  msgstr "Да, восстановить все настройки"
484
 
485
- #: bws_functions.php:1129
486
  msgid "No, go back to the settings page"
487
  msgstr "Нет, вернуться на страницу настроек"
488
 
489
- #: bws_functions.php:1175
490
  msgid "Plugin"
491
  msgstr "Плагин"
492
 
493
- #: bws_functions.php:1184
494
  msgid "Shortcode settings"
495
  msgstr "Настройки шорткода"
496
 
497
- #: bws_functions.php:1189
498
  msgid "The shortcode will be inserted"
499
  msgstr "Будет вставлен шорткод"
500
 
501
- #: bws_functions.php:1194
502
  msgid "Insert"
503
  msgstr "Вставить"
504
 
505
- #: bws_functions.php:1225
506
  msgid "Visit Help Center"
507
  msgstr "Перейти в Help Center"
508
 
509
- #: bws_functions.php:1230
510
  msgid "FAQ"
511
  msgstr "FAQ"
512
 
513
- #: bws_functions.php:1236
514
  msgid "For more information:"
515
  msgstr "Для дополнительной информации:"
516
 
517
- #: bws_functions.php:1237
518
  msgid "Documentation"
519
  msgstr "Документация"
520
 
521
- #: bws_functions.php:1238
522
  msgid "Video Instructions"
523
  msgstr "Видео инструкции"
524
 
525
- #: bws_functions.php:1239
526
  msgid "Submit a Request"
527
  msgstr "Отправить запрос"
528
 
529
- #: bws_functions.php:1250
530
  msgid "You do not have sufficient permissions to edit plugins for this site."
531
  msgstr ""
532
  "У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
533
 
534
- #: bws_functions.php:1301 bws_functions.php:1328
535
  #, php-format
536
  msgid "File %s edited successfully."
537
  msgstr "Файл %s успешно изменён."
538
 
539
- #: bws_functions.php:1303 bws_functions.php:1330
540
  msgid "Not enough permissions to create or update the file"
541
  msgstr "Не достаточно прав для создания или обновления файла"
542
 
543
- #: bws_functions.php:1333
544
  msgid "Not enough permissions to create the file"
545
  msgstr "Не достаточно прав для создания файла"
546
 
547
- #: bws_functions.php:1371
548
  msgid "These styles will be added to the header on all pages of your site."
549
  msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
550
 
551
- #: bws_functions.php:1373
552
  #, php-format
553
  msgid ""
554
  "These PHP code will be hooked to the %s action and will be printed on front "
@@ -557,20 +557,20 @@ msgstr ""
557
  "Этот PHP код будет прикреплен к %s аction и будет добавлен только во "
558
  "фронтенде."
559
 
560
- #: bws_functions.php:1377
561
  msgid "Editing"
562
  msgstr "Редактирование"
563
 
564
- #: bws_functions.php:1379
565
  msgid "Browsing"
566
  msgstr "Просмотр"
567
 
568
- #: bws_functions.php:1386
569
  #, php-format
570
  msgid "Learn more about %s"
571
  msgstr "Подробнее о %s"
572
 
573
- #: bws_functions.php:1397
574
  #, php-format
575
  msgid ""
576
  "You need to make this files writable before you can save your changes. See "
@@ -594,6 +594,10 @@ msgstr "Авторизоваться"
594
  msgid "Congratulations! Pro Membership license is successfully activated."
595
  msgstr "Поздравляем! Pro Membership лицензия успешно активирована."
596
 
 
 
 
 
597
  #: bws_menu.php:161
598
  msgid "Not set"
599
  msgstr "Не задан"
@@ -736,45 +740,30 @@ msgid "Manage purchased licenses & subscriptions"
736
  msgstr "Управление купленными лицензиями и подписками"
737
 
738
  #: bws_menu.php:288
739
- msgid "My Account"
740
- msgstr "Мой аккаунт"
741
-
742
- #: bws_menu.php:296
743
- #, php-format
744
- msgid "Get Access to %s+ Premium Plugins"
745
- msgstr "Получить Доступ к %s+ Премиум Плагинам"
746
 
747
- #: bws_menu.php:297
748
- #, php-format
749
- msgid ""
750
- "Join BestWebSoft Pro Membership today, cancel any time and use all plugins "
751
- "on a single website %s for only %s per month."
752
- msgstr ""
753
- "Присоединяйтесь к BestWebSoft Pro Membership сегодня, отменяйте подписку в "
754
- "любое время и используйте все плагины на одном сайте %s всего лишь за %s в "
755
- "месяц."
756
-
757
- #: bws_menu.php:309
758
  msgid "Enter your license key"
759
  msgstr "Ваш лицензионный ключ"
760
 
761
- #: bws_menu.php:313
762
  msgid "Activate Membership"
763
  msgstr "Активировать Membership"
764
 
765
- #: bws_menu.php:322
766
  msgid "Don’t have valid license key yet?"
767
  msgstr "Нет действующего лицензионного ключа?"
768
 
769
- #: bws_menu.php:322
770
- msgid "Subscribe to Pro Membership"
771
- msgstr "Подписаться на Pro Membership"
772
 
773
- #: bws_menu.php:331
774
  msgid "Upload Plugin"
775
  msgstr "Добавить новый"
776
 
777
- #: bws_menu.php:335
778
  #, php-format
779
  msgid ""
780
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -787,7 +776,7 @@ msgstr ""
787
  "проблемы с RSS-лентами или другие неполадки, попробуйте деактивировать или "
788
  "удалить этот плагин."
789
 
790
- #: bws_menu.php:337
791
  msgid ""
792
  "Plugin could not be activated because it triggered a <strong>fatal error</"
793
  "strong>."
@@ -795,58 +784,62 @@ msgstr ""
795
  "Плагин не может быть активирован, поскольку он вызвал <strong>фатальную "
796
  "ошибку</strong>."
797
 
798
- #: bws_menu.php:340
799
  msgid "Plugin <strong>activated</strong>."
800
  msgstr "Плагин <strong>активировано</strong>."
801
 
802
- #: bws_menu.php:347
803
  msgid "Installing Plugin"
804
  msgstr "Установка плагина"
805
 
806
- #: bws_menu.php:353
807
  msgid "Downloading install package from"
808
  msgstr "Скачивание установочного пакета из"
809
 
810
- #: bws_menu.php:378
811
  msgid "Unpacking the package"
812
  msgstr "Распаковка пакета"
813
 
814
- #: bws_menu.php:383 bws_menu.php:391
815
  msgid "Installing the plugin"
816
  msgstr "Установка плагина"
817
 
818
- #: bws_menu.php:397
819
  msgid "Successfully installed the plugin"
820
  msgstr "Успешно установлен плагин"
821
 
822
- #: bws_menu.php:409
823
  msgid "Activate Plugin"
824
  msgstr "Активировать плагин"
825
 
826
- #: bws_menu.php:409 bws_menu.php:415
827
  msgid "Return to BestWebSoft Panel"
828
  msgstr "Возврат к BestWebSoft Panel"
829
 
830
- #: bws_menu.php:419 bws_menu.php:434 bws_menu.php:561
831
  msgid "All"
832
  msgstr "Все"
833
 
834
- #: bws_menu.php:420
835
  msgid "Installed"
836
  msgstr "Установленные"
837
 
838
- #: bws_menu.php:421
839
  msgid "Not Installed"
840
  msgstr "Не установленные"
841
 
842
- #: bws_menu.php:427
843
  msgid "Filter results"
844
  msgstr "Фильтр результатов"
845
 
846
- #: bws_menu.php:430 bws_menu.php:557
847
  msgid "Category"
848
  msgstr "Категория"
849
 
 
 
 
 
850
  #: bws_menu.php:496
851
  msgid "Renew to get updates"
852
  msgstr "Продлить для обновления"
@@ -926,25 +919,43 @@ msgid "Management"
926
  msgstr "Управление"
927
 
928
  #: product_list.php:10
 
 
 
 
929
  msgid "Security"
930
  msgstr "Безопасность"
931
 
932
- #: product_list.php:11
933
  msgid "Site Stats"
934
  msgstr "Статистика сайта"
935
 
936
- #: product_list.php:12
937
  msgid "Social"
938
  msgstr "Социальное"
939
 
940
- #: product_list.php:13
941
  msgid "Utilities"
942
  msgstr "Утилиты"
943
 
944
- #: product_list.php:14
945
  msgid "Other"
946
  msgstr "Другое"
947
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
948
  #~ msgid "BWS Panel"
949
  #~ msgstr "BWS Панель"
950
 
@@ -970,12 +981,6 @@ msgstr "Другое"
970
  #~ msgid "Need help?"
971
  #~ msgstr "Нужна помощь?"
972
 
973
- #~ msgid "Client area"
974
- #~ msgstr "Client area"
975
-
976
- #~ msgid "Recommended"
977
- #~ msgstr "Рекомендованные"
978
-
979
  #~ msgid "Go"
980
  #~ msgstr "Перейти на"
981
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-14 15:18+0300\n"
6
+ "PO-Revision-Date: 2016-07-14 15:18+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:328
20
  msgid "Plugins"
21
  msgstr "Плагины"
22
 
78
  msgstr "Добавить"
79
 
80
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
81
+ #: bws_functions.php:724 bws_functions.php:828
82
  msgid "Close notice"
83
  msgstr "Закрыть"
84
 
184
  "лицензия может быть установлена только один раз."
185
 
186
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
187
+ #: bws_menu.php:368 bws_menu.php:399 bws_menu.php:410
188
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
189
  msgstr ""
190
  "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
191
 
192
+ #: bws_functions.php:361 bws_menu.php:385
193
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
194
  msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
195
 
196
+ #: bws_functions.php:367 bws_menu.php:392
197
  msgid ""
198
  "Your server does not support either ZipArchive or Phar. Please, upload the "
199
  "plugin manually"
201
  "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. "
202
  "Пожалуйста, загрузите плагин вручную"
203
 
204
+ #: bws_functions.php:374 bws_menu.php:402
205
  msgid "UploadDir is not writable. Please, upload the plugin manually"
206
  msgstr ""
207
  "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
214
  "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. "
215
  "Приносим извинения за неудобства."
216
 
217
+ #: bws_functions.php:422
218
  msgid "Please, enter Your license key"
219
  msgstr "Пожалуйста, введите ваш лицензионный ключ"
220
 
262
  msgstr "Попробуйте %s-дневную Trial версию бесплатно"
263
 
264
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
265
+ #: bws_functions.php:532 bws_functions.php:1398 bws_menu.php:531
266
  #: bws_menu.php:540
267
  msgid "Activate"
268
  msgstr "Активировать"
278
  msgid "After that you can activate it by entering your license key."
279
  msgstr "После этого вы сможете активировать его введя лицензионный ключ."
280
 
281
+ #: bws_functions.php:526 bws_menu.php:118 bws_menu.php:304
282
  msgid "Unfortunately, you have exceeded the number of available tries per day."
283
  msgstr "К сожалению, вы превысили количество доступных попыток."
284
 
349
  "(ваше имя пользователя - это емейл, указанный при покупке). При "
350
  "необходимости нажмите \"Забыли пароль?\"."
351
 
352
+ #: bws_functions.php:651 bws_menu.php:302 bws_menu.php:313
353
  msgid "Check license key"
354
  msgstr "Проверка лицензионного ключа"
355
 
386
  "плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно "
387
  "продлить лицензию."
388
 
389
+ #: bws_functions.php:675 bws_functions.php:728 bws_functions.php:1353
390
  msgid "Learn more"
391
  msgstr "Подробнее"
392
 
415
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
416
  msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
417
 
418
+ #: bws_functions.php:823
419
  msgid "Thank you for choosing"
420
  msgstr "Спасибо за выбор"
421
 
422
+ #: bws_functions.php:824
423
  msgid ""
424
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
425
  "we'd love to hear about it!"
428
  "функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
429
  "новых идей!"
430
 
431
+ #: bws_functions.php:825
432
  msgid "Suggest a Feature"
433
  msgstr "Предложить функционал"
434
 
435
+ #: bws_functions.php:841
436
  msgid "Notice"
437
  msgstr "Внимание"
438
 
439
+ #: bws_functions.php:841
440
  msgid "The plugin's settings have been changed."
441
  msgstr "Настройки плагина были изменены"
442
 
443
+ #: bws_functions.php:842 bws_functions.php:1409
444
  msgid "Save Changes"
445
  msgstr "Сохранить изменения"
446
 
447
+ #: bws_functions.php:856
448
  msgid ""
449
  "You can always look at premium options by clicking on the \"Show Pro features"
450
  "\" in the \"Go PRO\" tab"
452
  "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Показать Pro "
453
  "опции\" на вкладке \"Перейти на PRO\""
454
 
455
+ #: bws_functions.php:985
456
  msgid "Add shortcode"
457
  msgstr "Добавить шорткод"
458
 
459
+ #: bws_functions.php:985
460
  msgid "Add BestWebSoft plugins' shortcodes using this button."
461
  msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
462
 
463
+ #: bws_functions.php:1034
464
  msgid "Close"
465
  msgstr "Закрыть"
466
 
467
+ #: bws_functions.php:1126
468
  msgid "Restore all plugin settings to defaults"
469
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию"
470
 
471
+ #: bws_functions.php:1128
472
  msgid "Restore settings"
473
  msgstr "Восстановить настройки"
474
 
475
+ #: bws_functions.php:1139
476
  msgid "Are you sure you want to restore all settings by default?"
477
  msgstr ""
478
  "Вы уверены что хотите восстановить все настройки плагина к настройкам по "
479
  "умолчанию?"
480
 
481
+ #: bws_functions.php:1142
482
  msgid "Yes, restore all settings"
483
  msgstr "Да, восстановить все настройки"
484
 
485
+ #: bws_functions.php:1143
486
  msgid "No, go back to the settings page"
487
  msgstr "Нет, вернуться на страницу настроек"
488
 
489
+ #: bws_functions.php:1189
490
  msgid "Plugin"
491
  msgstr "Плагин"
492
 
493
+ #: bws_functions.php:1198
494
  msgid "Shortcode settings"
495
  msgstr "Настройки шорткода"
496
 
497
+ #: bws_functions.php:1203
498
  msgid "The shortcode will be inserted"
499
  msgstr "Будет вставлен шорткод"
500
 
501
+ #: bws_functions.php:1208
502
  msgid "Insert"
503
  msgstr "Вставить"
504
 
505
+ #: bws_functions.php:1241
506
  msgid "Visit Help Center"
507
  msgstr "Перейти в Help Center"
508
 
509
+ #: bws_functions.php:1246
510
  msgid "FAQ"
511
  msgstr "FAQ"
512
 
513
+ #: bws_functions.php:1252
514
  msgid "For more information:"
515
  msgstr "Для дополнительной информации:"
516
 
517
+ #: bws_functions.php:1253
518
  msgid "Documentation"
519
  msgstr "Документация"
520
 
521
+ #: bws_functions.php:1254
522
  msgid "Video Instructions"
523
  msgstr "Видео инструкции"
524
 
525
+ #: bws_functions.php:1255
526
  msgid "Submit a Request"
527
  msgstr "Отправить запрос"
528
 
529
+ #: bws_functions.php:1266
530
  msgid "You do not have sufficient permissions to edit plugins for this site."
531
  msgstr ""
532
  "У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
533
 
534
+ #: bws_functions.php:1317 bws_functions.php:1344
535
  #, php-format
536
  msgid "File %s edited successfully."
537
  msgstr "Файл %s успешно изменён."
538
 
539
+ #: bws_functions.php:1319 bws_functions.php:1346
540
  msgid "Not enough permissions to create or update the file"
541
  msgstr "Не достаточно прав для создания или обновления файла"
542
 
543
+ #: bws_functions.php:1349
544
  msgid "Not enough permissions to create the file"
545
  msgstr "Не достаточно прав для создания файла"
546
 
547
+ #: bws_functions.php:1387
548
  msgid "These styles will be added to the header on all pages of your site."
549
  msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
550
 
551
+ #: bws_functions.php:1389
552
  #, php-format
553
  msgid ""
554
  "These PHP code will be hooked to the %s action and will be printed on front "
557
  "Этот PHP код будет прикреплен к %s аction и будет добавлен только во "
558
  "фронтенде."
559
 
560
+ #: bws_functions.php:1393
561
  msgid "Editing"
562
  msgstr "Редактирование"
563
 
564
+ #: bws_functions.php:1395
565
  msgid "Browsing"
566
  msgstr "Просмотр"
567
 
568
+ #: bws_functions.php:1402
569
  #, php-format
570
  msgid "Learn more about %s"
571
  msgstr "Подробнее о %s"
572
 
573
+ #: bws_functions.php:1413
574
  #, php-format
575
  msgid ""
576
  "You need to make this files writable before you can save your changes. See "
594
  msgid "Congratulations! Pro Membership license is successfully activated."
595
  msgstr "Поздравляем! Pro Membership лицензия успешно активирована."
596
 
597
+ #: bws_menu.php:149
598
+ msgid "Please enter your license key."
599
+ msgstr "Пожалуйста, введите Ваш лицензионный ключ."
600
+
601
  #: bws_menu.php:161
602
  msgid "Not set"
603
  msgstr "Не задан"
740
  msgstr "Управление купленными лицензиями и подписками"
741
 
742
  #: bws_menu.php:288
743
+ msgid "Client Area"
744
+ msgstr "Client Area"
 
 
 
 
 
745
 
746
+ #: bws_menu.php:307
 
 
 
 
 
 
 
 
 
 
747
  msgid "Enter your license key"
748
  msgstr "Ваш лицензионный ключ"
749
 
750
+ #: bws_menu.php:311
751
  msgid "Activate Membership"
752
  msgstr "Активировать Membership"
753
 
754
+ #: bws_menu.php:320
755
  msgid "Don’t have valid license key yet?"
756
  msgstr "Нет действующего лицензионного ключа?"
757
 
758
+ #: bws_menu.php:320
759
+ msgid "Subscribe to Pro Membership Now"
760
+ msgstr "Подписаться на Pro Membership Сейчас"
761
 
762
+ #: bws_menu.php:329
763
  msgid "Upload Plugin"
764
  msgstr "Добавить новый"
765
 
766
+ #: bws_menu.php:333
767
  #, php-format
768
  msgid ""
769
  "The plugin generated %d characters of <strong>unexpected output</strong> "
776
  "проблемы с RSS-лентами или другие неполадки, попробуйте деактивировать или "
777
  "удалить этот плагин."
778
 
779
+ #: bws_menu.php:335
780
  msgid ""
781
  "Plugin could not be activated because it triggered a <strong>fatal error</"
782
  "strong>."
784
  "Плагин не может быть активирован, поскольку он вызвал <strong>фатальную "
785
  "ошибку</strong>."
786
 
787
+ #: bws_menu.php:338
788
  msgid "Plugin <strong>activated</strong>."
789
  msgstr "Плагин <strong>активировано</strong>."
790
 
791
+ #: bws_menu.php:345
792
  msgid "Installing Plugin"
793
  msgstr "Установка плагина"
794
 
795
+ #: bws_menu.php:351
796
  msgid "Downloading install package from"
797
  msgstr "Скачивание установочного пакета из"
798
 
799
+ #: bws_menu.php:376
800
  msgid "Unpacking the package"
801
  msgstr "Распаковка пакета"
802
 
803
+ #: bws_menu.php:381 bws_menu.php:389
804
  msgid "Installing the plugin"
805
  msgstr "Установка плагина"
806
 
807
+ #: bws_menu.php:395
808
  msgid "Successfully installed the plugin"
809
  msgstr "Успешно установлен плагин"
810
 
811
+ #: bws_menu.php:407
812
  msgid "Activate Plugin"
813
  msgstr "Активировать плагин"
814
 
815
+ #: bws_menu.php:407 bws_menu.php:413
816
  msgid "Return to BestWebSoft Panel"
817
  msgstr "Возврат к BestWebSoft Panel"
818
 
819
+ #: bws_menu.php:417 bws_menu.php:432 bws_menu.php:561
820
  msgid "All"
821
  msgstr "Все"
822
 
823
+ #: bws_menu.php:418
824
  msgid "Installed"
825
  msgstr "Установленные"
826
 
827
+ #: bws_menu.php:419
828
  msgid "Not Installed"
829
  msgstr "Не установленные"
830
 
831
+ #: bws_menu.php:425
832
  msgid "Filter results"
833
  msgstr "Фильтр результатов"
834
 
835
+ #: bws_menu.php:428 bws_menu.php:557
836
  msgid "Category"
837
  msgstr "Категория"
838
 
839
+ #: bws_menu.php:492
840
+ msgid "Not installed"
841
+ msgstr "Не установлен"
842
+
843
  #: bws_menu.php:496
844
  msgid "Renew to get updates"
845
  msgstr "Продлить для обновления"
919
  msgstr "Управление"
920
 
921
  #: product_list.php:10
922
+ msgid "Recommended"
923
+ msgstr "Рекомендованные"
924
+
925
+ #: product_list.php:11
926
  msgid "Security"
927
  msgstr "Безопасность"
928
 
929
+ #: product_list.php:12
930
  msgid "Site Stats"
931
  msgstr "Статистика сайта"
932
 
933
+ #: product_list.php:13
934
  msgid "Social"
935
  msgstr "Социальное"
936
 
937
+ #: product_list.php:14
938
  msgid "Utilities"
939
  msgstr "Утилиты"
940
 
941
+ #: product_list.php:15
942
  msgid "Other"
943
  msgstr "Другое"
944
 
945
+ #~ msgid "Get Access to %s+ Premium Plugins"
946
+ #~ msgstr "Получить Доступ к %s+ Премиум Плагинам"
947
+
948
+ #~ msgid ""
949
+ #~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
950
+ #~ "plugins on a single website %s for only %s per month."
951
+ #~ msgstr ""
952
+ #~ "Присоединяйтесь к BestWebSoft Pro Membership сегодня, отменяйте подписку "
953
+ #~ "в любое время и используйте все плагины на одном сайте %s всего лишь за "
954
+ #~ "%s в месяц."
955
+
956
+ #~ msgid "My Account"
957
+ #~ msgstr "Мой аккаунт"
958
+
959
  #~ msgid "BWS Panel"
960
  #~ msgstr "BWS Панель"
961
 
981
  #~ msgid "Need help?"
982
  #~ msgstr "Нужна помощь?"
983
 
 
 
 
 
 
 
984
  #~ msgid "Go"
985
  #~ msgstr "Перейти на"
986
 
bws_menu/languages/bestwebsoft-uk.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-uk.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-06-20 18:05+0300\n"
6
- "PO-Revision-Date: 2016-06-20 18:08+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -16,7 +16,7 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:330
20
  msgid "Plugins"
21
  msgstr "Плагіни"
22
 
@@ -78,7 +78,7 @@ msgid "Add New"
78
  msgstr "Додати"
79
 
80
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
81
- #: bws_functions.php:724 bws_functions.php:814
82
  msgid "Close notice"
83
  msgstr "Закрити"
84
 
@@ -183,16 +183,16 @@ msgstr ""
183
  "версії плагіну можна використати лише один раз."
184
 
185
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
186
- #: bws_menu.php:370 bws_menu.php:401 bws_menu.php:412
187
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
188
  msgstr ""
189
  "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
190
 
191
- #: bws_functions.php:361 bws_menu.php:387
192
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
193
  msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
194
 
195
- #: bws_functions.php:367 bws_menu.php:394
196
  msgid ""
197
  "Your server does not support either ZipArchive or Phar. Please, upload the "
198
  "plugin manually"
@@ -200,7 +200,7 @@ msgstr ""
200
  "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін "
201
  "вручну"
202
 
203
- #: bws_functions.php:374 bws_menu.php:404
204
  msgid "UploadDir is not writable. Please, upload the plugin manually"
205
  msgstr ""
206
  "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
@@ -214,7 +214,7 @@ msgstr ""
214
  "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін "
215
  "вручну. Просимо вибачення за незручності."
216
 
217
- #: bws_functions.php:422 bws_menu.php:149
218
  msgid "Please, enter Your license key"
219
  msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
220
 
@@ -262,7 +262,7 @@ msgid "Start Your Free %s-Day Trial Now"
262
  msgstr "Спробуйте %s-денну тріал версію безкоштовно"
263
 
264
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
265
- #: bws_functions.php:532 bws_functions.php:1382 bws_menu.php:531
266
  #: bws_menu.php:540
267
  msgid "Activate"
268
  msgstr "Активувати"
@@ -277,7 +277,7 @@ msgstr "Щоб продовжити користуватись плагіном,
277
  msgid "After that you can activate it by entering your license key."
278
  msgstr "Після цього ви зможете активувати його ввівши ліцензійний ключ."
279
 
280
- #: bws_functions.php:526 bws_menu.php:118 bws_menu.php:306
281
  msgid "Unfortunately, you have exceeded the number of available tries per day."
282
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
283
 
@@ -349,7 +349,7 @@ msgstr ""
349
  "(ваше ім'я користувача - це емейл, який ви вказували при купівлі). При "
350
  "необхідності, будь ласка, відправте запит на відновлення вашого паролю."
351
 
352
- #: bws_functions.php:651 bws_menu.php:304 bws_menu.php:315
353
  msgid "Check license key"
354
  msgstr "Перевірте ліцензійний ключ"
355
 
@@ -385,7 +385,7 @@ msgstr ""
385
  "Строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у "
386
  "майбутньому, вам слід подовжити ліцензію."
387
 
388
- #: bws_functions.php:675 bws_functions.php:728 bws_functions.php:1337
389
  msgid "Learn more"
390
  msgstr "Дізнатись більше"
391
 
@@ -416,11 +416,11 @@ msgstr ""
416
  "та ви більше не будете отримувати першочергову технічну підтримку та "
417
  "оновлення."
418
 
419
- #: bws_functions.php:809
420
  msgid "Thank you for choosing"
421
  msgstr "Дякуємо, що обрали"
422
 
423
- #: bws_functions.php:810
424
  msgid ""
425
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
426
  "we'd love to hear about it!"
@@ -429,23 +429,23 @@ msgstr ""
429
  "функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
430
  "нових ідей!"
431
 
432
- #: bws_functions.php:811
433
  msgid "Suggest a Feature"
434
  msgstr "Запропонувати функціонал"
435
 
436
- #: bws_functions.php:827
437
  msgid "Notice"
438
  msgstr "Зауважте"
439
 
440
- #: bws_functions.php:827
441
  msgid "The plugin's settings have been changed."
442
  msgstr "Налаштування плагіну змінено."
443
 
444
- #: bws_functions.php:828 bws_functions.php:1393
445
  msgid "Save Changes"
446
  msgstr "Зберегти зміни"
447
 
448
- #: bws_functions.php:842
449
  msgid ""
450
  "You can always look at premium options by clicking on the \"Show Pro features"
451
  "\" in the \"Go PRO\" tab"
@@ -453,100 +453,100 @@ msgstr ""
453
  "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку "
454
  "\"Показати Pro особливост\" на вкладці \"Перейти на PRO\""
455
 
456
- #: bws_functions.php:971
457
  msgid "Add shortcode"
458
  msgstr "Додати шорткод"
459
 
460
- #: bws_functions.php:971
461
  msgid "Add BestWebSoft plugins' shortcodes using this button."
462
  msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
463
 
464
- #: bws_functions.php:1020
465
  msgid "Close"
466
  msgstr "Закрити"
467
 
468
- #: bws_functions.php:1112
469
  msgid "Restore all plugin settings to defaults"
470
  msgstr "Скинути налаштування плагіну до стандартних"
471
 
472
- #: bws_functions.php:1114
473
  msgid "Restore settings"
474
  msgstr "Скинути налаштування"
475
 
476
- #: bws_functions.php:1125
477
  msgid "Are you sure you want to restore all settings by default?"
478
  msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
479
 
480
- #: bws_functions.php:1128
481
  msgid "Yes, restore all settings"
482
  msgstr "Так, скинути налаштування"
483
 
484
- #: bws_functions.php:1129
485
  msgid "No, go back to the settings page"
486
  msgstr "Ні, повернутись назад на сторінку налаштувань"
487
 
488
- #: bws_functions.php:1175
489
  msgid "Plugin"
490
  msgstr "Плагін"
491
 
492
- #: bws_functions.php:1184
493
  msgid "Shortcode settings"
494
  msgstr "Налаштування шорткоду"
495
 
496
- #: bws_functions.php:1189
497
  msgid "The shortcode will be inserted"
498
  msgstr "Буде вставлено шорткод"
499
 
500
- #: bws_functions.php:1194
501
  msgid "Insert"
502
  msgstr "Вставити"
503
 
504
- #: bws_functions.php:1225
505
  msgid "Visit Help Center"
506
  msgstr "Перейти в Help Center"
507
 
508
- #: bws_functions.php:1230
509
  msgid "FAQ"
510
  msgstr "FAQ"
511
 
512
- #: bws_functions.php:1236
513
  msgid "For more information:"
514
  msgstr "Для отримання додаткової інформації:"
515
 
516
- #: bws_functions.php:1237
517
  msgid "Documentation"
518
  msgstr "Документація"
519
 
520
- #: bws_functions.php:1238
521
  msgid "Video Instructions"
522
  msgstr "Відео інструкції"
523
 
524
- #: bws_functions.php:1239
525
  msgid "Submit a Request"
526
  msgstr "Надіслати запит"
527
 
528
- #: bws_functions.php:1250
529
  msgid "You do not have sufficient permissions to edit plugins for this site."
530
  msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
531
 
532
- #: bws_functions.php:1301 bws_functions.php:1328
533
  #, php-format
534
  msgid "File %s edited successfully."
535
  msgstr "Файл %s успішно відредаговано."
536
 
537
- #: bws_functions.php:1303 bws_functions.php:1330
538
  msgid "Not enough permissions to create or update the file"
539
  msgstr "У Вас недостатньо дозволів для створення або поновлення файлу"
540
 
541
- #: bws_functions.php:1333
542
  msgid "Not enough permissions to create the file"
543
  msgstr "У Вас недостатньо дозволів для створення файлу"
544
 
545
- #: bws_functions.php:1371
546
  msgid "These styles will be added to the header on all pages of your site."
547
  msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
548
 
549
- #: bws_functions.php:1373
550
  #, php-format
551
  msgid ""
552
  "These PHP code will be hooked to the %s action and will be printed on front "
@@ -554,20 +554,20 @@ msgid ""
554
  msgstr ""
555
  "Цей PHP код буде прикріплений до %s action і буде додано лише у фронтенді."
556
 
557
- #: bws_functions.php:1377
558
  msgid "Editing"
559
  msgstr "Редагування"
560
 
561
- #: bws_functions.php:1379
562
  msgid "Browsing"
563
  msgstr "Огляд"
564
 
565
- #: bws_functions.php:1386
566
  #, php-format
567
  msgid "Learn more about %s"
568
  msgstr "Дізнатись більше про %s"
569
 
570
- #: bws_functions.php:1397
571
  #, php-format
572
  msgid ""
573
  "You need to make this files writable before you can save your changes. See "
@@ -591,6 +591,10 @@ msgstr "Увійти"
591
  msgid "Congratulations! Pro Membership license is successfully activated."
592
  msgstr "Вітаємо! Pro Membership ліцензія успішно активована."
593
 
 
 
 
 
594
  #: bws_menu.php:161
595
  msgid "Not set"
596
  msgstr "Не задано"
@@ -733,45 +737,30 @@ msgid "Manage purchased licenses & subscriptions"
733
  msgstr "Управління придбаними ліцензіями і підписками"
734
 
735
  #: bws_menu.php:288
736
- msgid "My Account"
737
- msgstr "Мій аккаунт"
738
-
739
- #: bws_menu.php:296
740
- #, php-format
741
- msgid "Get Access to %s+ Premium Plugins"
742
- msgstr "Отримати Доступ до %s+ Преміум Плагинам"
743
 
744
- #: bws_menu.php:297
745
- #, php-format
746
- msgid ""
747
- "Join BestWebSoft Pro Membership today, cancel any time and use all plugins "
748
- "on a single website %s for only %s per month."
749
- msgstr ""
750
- "Приєднуйтесь до BestWebSoft Pro Membership сьогодні, скасовуйте підписку в "
751
- "будь-який час і використовуйте всі плагіни на одному сайті %s всього лише за "
752
- "%s в місяць."
753
-
754
- #: bws_menu.php:309
755
  msgid "Enter your license key"
756
  msgstr "Ваш ліцензійний ключ"
757
 
758
- #: bws_menu.php:313
759
  msgid "Activate Membership"
760
  msgstr "Активувати Membership"
761
 
762
- #: bws_menu.php:322
763
  msgid "Don’t have valid license key yet?"
764
  msgstr "Немає чинного ліцензійного ключа?"
765
 
766
- #: bws_menu.php:322
767
- msgid "Subscribe to Pro Membership"
768
- msgstr "Підписатися на Pro Membership"
769
 
770
- #: bws_menu.php:331
771
  msgid "Upload Plugin"
772
  msgstr "Завантажити плагін"
773
 
774
- #: bws_menu.php:335
775
  #, php-format
776
  msgid ""
777
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -784,7 +773,7 @@ msgstr ""
784
  "надіслані&#8221;, проблеми з каналами чи інші неполадки, спробуйте вимкнути "
785
  "чи видалити цей плагін."
786
 
787
- #: bws_menu.php:337
788
  msgid ""
789
  "Plugin could not be activated because it triggered a <strong>fatal error</"
790
  "strong>."
@@ -792,58 +781,62 @@ msgstr ""
792
  "Плагін не вдалося активувати, бо він спричинив <strong>критичну помилку</"
793
  "strong>."
794
 
795
- #: bws_menu.php:340
796
  msgid "Plugin <strong>activated</strong>."
797
  msgstr "Плагін <strong>активовано</strong>."
798
 
799
- #: bws_menu.php:347
800
  msgid "Installing Plugin"
801
  msgstr "Встановлення плагіну"
802
 
803
- #: bws_menu.php:353
804
  msgid "Downloading install package from"
805
  msgstr "Завантаження встановлюючого пакунку з"
806
 
807
- #: bws_menu.php:378
808
  msgid "Unpacking the package"
809
  msgstr "Розпакування пакета"
810
 
811
- #: bws_menu.php:383 bws_menu.php:391
812
  msgid "Installing the plugin"
813
  msgstr "Встановлення плагіну"
814
 
815
- #: bws_menu.php:397
816
  msgid "Successfully installed the plugin"
817
  msgstr "Успішно встановлено плагін"
818
 
819
- #: bws_menu.php:409
820
  msgid "Activate Plugin"
821
  msgstr "Активувати плагін"
822
 
823
- #: bws_menu.php:409 bws_menu.php:415
824
  msgid "Return to BestWebSoft Panel"
825
  msgstr "Назад до BestWebSoft Panel"
826
 
827
- #: bws_menu.php:419 bws_menu.php:434 bws_menu.php:561
828
  msgid "All"
829
  msgstr "Всі"
830
 
831
- #: bws_menu.php:420
832
  msgid "Installed"
833
  msgstr "Встановлені"
834
 
835
- #: bws_menu.php:421
836
  msgid "Not Installed"
837
  msgstr "Не встановлені"
838
 
839
- #: bws_menu.php:427
840
  msgid "Filter results"
841
  msgstr "Фільтр результатів"
842
 
843
- #: bws_menu.php:430 bws_menu.php:557
844
  msgid "Category"
845
  msgstr "Категорія"
846
 
 
 
 
 
847
  #: bws_menu.php:496
848
  msgid "Renew to get updates"
849
  msgstr "Продовжити для поновлення"
@@ -923,25 +916,43 @@ msgid "Management"
923
  msgstr "Управління"
924
 
925
  #: product_list.php:10
 
 
 
 
926
  msgid "Security"
927
  msgstr "Безпека"
928
 
929
- #: product_list.php:11
930
  msgid "Site Stats"
931
  msgstr "Статистика сайту"
932
 
933
- #: product_list.php:12
934
  msgid "Social"
935
  msgstr "Соціальне"
936
 
937
- #: product_list.php:13
938
  msgid "Utilities"
939
  msgstr "Утиліти"
940
 
941
- #: product_list.php:14
942
  msgid "Other"
943
  msgstr "Інше"
944
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
945
  #~ msgid "BWS Panel"
946
  #~ msgstr "BWS Панель"
947
 
@@ -967,12 +978,6 @@ msgstr "Інше"
967
  #~ msgid "Need help?"
968
  #~ msgstr "Потрібна допомога?"
969
 
970
- #~ msgid "Client area"
971
- #~ msgstr "Клієнтам"
972
-
973
- #~ msgid "Recommended"
974
- #~ msgstr "Рекомендовані "
975
-
976
  #~ msgid "Go"
977
  #~ msgstr "Перейти"
978
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-14 15:18+0300\n"
6
+ "PO-Revision-Date: 2016-07-14 15:19+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:328
20
  msgid "Plugins"
21
  msgstr "Плагіни"
22
 
78
  msgstr "Додати"
79
 
80
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
81
+ #: bws_functions.php:724 bws_functions.php:828
82
  msgid "Close notice"
83
  msgstr "Закрити"
84
 
183
  "версії плагіну можна використати лише один раз."
184
 
185
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
186
+ #: bws_menu.php:368 bws_menu.php:399 bws_menu.php:410
187
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
188
  msgstr ""
189
  "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
190
 
191
+ #: bws_functions.php:361 bws_menu.php:385
192
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
193
  msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
194
 
195
+ #: bws_functions.php:367 bws_menu.php:392
196
  msgid ""
197
  "Your server does not support either ZipArchive or Phar. Please, upload the "
198
  "plugin manually"
200
  "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін "
201
  "вручну"
202
 
203
+ #: bws_functions.php:374 bws_menu.php:402
204
  msgid "UploadDir is not writable. Please, upload the plugin manually"
205
  msgstr ""
206
  "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
214
  "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін "
215
  "вручну. Просимо вибачення за незручності."
216
 
217
+ #: bws_functions.php:422
218
  msgid "Please, enter Your license key"
219
  msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
220
 
262
  msgstr "Спробуйте %s-денну тріал версію безкоштовно"
263
 
264
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
265
+ #: bws_functions.php:532 bws_functions.php:1398 bws_menu.php:531
266
  #: bws_menu.php:540
267
  msgid "Activate"
268
  msgstr "Активувати"
277
  msgid "After that you can activate it by entering your license key."
278
  msgstr "Після цього ви зможете активувати його ввівши ліцензійний ключ."
279
 
280
+ #: bws_functions.php:526 bws_menu.php:118 bws_menu.php:304
281
  msgid "Unfortunately, you have exceeded the number of available tries per day."
282
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
283
 
349
  "(ваше ім'я користувача - це емейл, який ви вказували при купівлі). При "
350
  "необхідності, будь ласка, відправте запит на відновлення вашого паролю."
351
 
352
+ #: bws_functions.php:651 bws_menu.php:302 bws_menu.php:313
353
  msgid "Check license key"
354
  msgstr "Перевірте ліцензійний ключ"
355
 
385
  "Строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у "
386
  "майбутньому, вам слід подовжити ліцензію."
387
 
388
+ #: bws_functions.php:675 bws_functions.php:728 bws_functions.php:1353
389
  msgid "Learn more"
390
  msgstr "Дізнатись більше"
391
 
416
  "та ви більше не будете отримувати першочергову технічну підтримку та "
417
  "оновлення."
418
 
419
+ #: bws_functions.php:823
420
  msgid "Thank you for choosing"
421
  msgstr "Дякуємо, що обрали"
422
 
423
+ #: bws_functions.php:824
424
  msgid ""
425
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
426
  "we'd love to hear about it!"
429
  "функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
430
  "нових ідей!"
431
 
432
+ #: bws_functions.php:825
433
  msgid "Suggest a Feature"
434
  msgstr "Запропонувати функціонал"
435
 
436
+ #: bws_functions.php:841
437
  msgid "Notice"
438
  msgstr "Зауважте"
439
 
440
+ #: bws_functions.php:841
441
  msgid "The plugin's settings have been changed."
442
  msgstr "Налаштування плагіну змінено."
443
 
444
+ #: bws_functions.php:842 bws_functions.php:1409
445
  msgid "Save Changes"
446
  msgstr "Зберегти зміни"
447
 
448
+ #: bws_functions.php:856
449
  msgid ""
450
  "You can always look at premium options by clicking on the \"Show Pro features"
451
  "\" in the \"Go PRO\" tab"
453
  "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку "
454
  "\"Показати Pro особливост\" на вкладці \"Перейти на PRO\""
455
 
456
+ #: bws_functions.php:985
457
  msgid "Add shortcode"
458
  msgstr "Додати шорткод"
459
 
460
+ #: bws_functions.php:985
461
  msgid "Add BestWebSoft plugins' shortcodes using this button."
462
  msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
463
 
464
+ #: bws_functions.php:1034
465
  msgid "Close"
466
  msgstr "Закрити"
467
 
468
+ #: bws_functions.php:1126
469
  msgid "Restore all plugin settings to defaults"
470
  msgstr "Скинути налаштування плагіну до стандартних"
471
 
472
+ #: bws_functions.php:1128
473
  msgid "Restore settings"
474
  msgstr "Скинути налаштування"
475
 
476
+ #: bws_functions.php:1139
477
  msgid "Are you sure you want to restore all settings by default?"
478
  msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
479
 
480
+ #: bws_functions.php:1142
481
  msgid "Yes, restore all settings"
482
  msgstr "Так, скинути налаштування"
483
 
484
+ #: bws_functions.php:1143
485
  msgid "No, go back to the settings page"
486
  msgstr "Ні, повернутись назад на сторінку налаштувань"
487
 
488
+ #: bws_functions.php:1189
489
  msgid "Plugin"
490
  msgstr "Плагін"
491
 
492
+ #: bws_functions.php:1198
493
  msgid "Shortcode settings"
494
  msgstr "Налаштування шорткоду"
495
 
496
+ #: bws_functions.php:1203
497
  msgid "The shortcode will be inserted"
498
  msgstr "Буде вставлено шорткод"
499
 
500
+ #: bws_functions.php:1208
501
  msgid "Insert"
502
  msgstr "Вставити"
503
 
504
+ #: bws_functions.php:1241
505
  msgid "Visit Help Center"
506
  msgstr "Перейти в Help Center"
507
 
508
+ #: bws_functions.php:1246
509
  msgid "FAQ"
510
  msgstr "FAQ"
511
 
512
+ #: bws_functions.php:1252
513
  msgid "For more information:"
514
  msgstr "Для отримання додаткової інформації:"
515
 
516
+ #: bws_functions.php:1253
517
  msgid "Documentation"
518
  msgstr "Документація"
519
 
520
+ #: bws_functions.php:1254
521
  msgid "Video Instructions"
522
  msgstr "Відео інструкції"
523
 
524
+ #: bws_functions.php:1255
525
  msgid "Submit a Request"
526
  msgstr "Надіслати запит"
527
 
528
+ #: bws_functions.php:1266
529
  msgid "You do not have sufficient permissions to edit plugins for this site."
530
  msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
531
 
532
+ #: bws_functions.php:1317 bws_functions.php:1344
533
  #, php-format
534
  msgid "File %s edited successfully."
535
  msgstr "Файл %s успішно відредаговано."
536
 
537
+ #: bws_functions.php:1319 bws_functions.php:1346
538
  msgid "Not enough permissions to create or update the file"
539
  msgstr "У Вас недостатньо дозволів для створення або поновлення файлу"
540
 
541
+ #: bws_functions.php:1349
542
  msgid "Not enough permissions to create the file"
543
  msgstr "У Вас недостатньо дозволів для створення файлу"
544
 
545
+ #: bws_functions.php:1387
546
  msgid "These styles will be added to the header on all pages of your site."
547
  msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
548
 
549
+ #: bws_functions.php:1389
550
  #, php-format
551
  msgid ""
552
  "These PHP code will be hooked to the %s action and will be printed on front "
554
  msgstr ""
555
  "Цей PHP код буде прикріплений до %s action і буде додано лише у фронтенді."
556
 
557
+ #: bws_functions.php:1393
558
  msgid "Editing"
559
  msgstr "Редагування"
560
 
561
+ #: bws_functions.php:1395
562
  msgid "Browsing"
563
  msgstr "Огляд"
564
 
565
+ #: bws_functions.php:1402
566
  #, php-format
567
  msgid "Learn more about %s"
568
  msgstr "Дізнатись більше про %s"
569
 
570
+ #: bws_functions.php:1413
571
  #, php-format
572
  msgid ""
573
  "You need to make this files writable before you can save your changes. See "
591
  msgid "Congratulations! Pro Membership license is successfully activated."
592
  msgstr "Вітаємо! Pro Membership ліцензія успішно активована."
593
 
594
+ #: bws_menu.php:149
595
+ msgid "Please enter your license key."
596
+ msgstr "Будь ласка, введіть ваш ліцензійний ключ."
597
+
598
  #: bws_menu.php:161
599
  msgid "Not set"
600
  msgstr "Не задано"
737
  msgstr "Управління придбаними ліцензіями і підписками"
738
 
739
  #: bws_menu.php:288
740
+ msgid "Client Area"
741
+ msgstr "Client Area"
 
 
 
 
 
742
 
743
+ #: bws_menu.php:307
 
 
 
 
 
 
 
 
 
 
744
  msgid "Enter your license key"
745
  msgstr "Ваш ліцензійний ключ"
746
 
747
+ #: bws_menu.php:311
748
  msgid "Activate Membership"
749
  msgstr "Активувати Membership"
750
 
751
+ #: bws_menu.php:320
752
  msgid "Don’t have valid license key yet?"
753
  msgstr "Немає чинного ліцензійного ключа?"
754
 
755
+ #: bws_menu.php:320
756
+ msgid "Subscribe to Pro Membership Now"
757
+ msgstr "Підписатися на Pro Membership Зараз"
758
 
759
+ #: bws_menu.php:329
760
  msgid "Upload Plugin"
761
  msgstr "Завантажити плагін"
762
 
763
+ #: bws_menu.php:333
764
  #, php-format
765
  msgid ""
766
  "The plugin generated %d characters of <strong>unexpected output</strong> "
773
  "надіслані&#8221;, проблеми з каналами чи інші неполадки, спробуйте вимкнути "
774
  "чи видалити цей плагін."
775
 
776
+ #: bws_menu.php:335
777
  msgid ""
778
  "Plugin could not be activated because it triggered a <strong>fatal error</"
779
  "strong>."
781
  "Плагін не вдалося активувати, бо він спричинив <strong>критичну помилку</"
782
  "strong>."
783
 
784
+ #: bws_menu.php:338
785
  msgid "Plugin <strong>activated</strong>."
786
  msgstr "Плагін <strong>активовано</strong>."
787
 
788
+ #: bws_menu.php:345
789
  msgid "Installing Plugin"
790
  msgstr "Встановлення плагіну"
791
 
792
+ #: bws_menu.php:351
793
  msgid "Downloading install package from"
794
  msgstr "Завантаження встановлюючого пакунку з"
795
 
796
+ #: bws_menu.php:376
797
  msgid "Unpacking the package"
798
  msgstr "Розпакування пакета"
799
 
800
+ #: bws_menu.php:381 bws_menu.php:389
801
  msgid "Installing the plugin"
802
  msgstr "Встановлення плагіну"
803
 
804
+ #: bws_menu.php:395
805
  msgid "Successfully installed the plugin"
806
  msgstr "Успішно встановлено плагін"
807
 
808
+ #: bws_menu.php:407
809
  msgid "Activate Plugin"
810
  msgstr "Активувати плагін"
811
 
812
+ #: bws_menu.php:407 bws_menu.php:413
813
  msgid "Return to BestWebSoft Panel"
814
  msgstr "Назад до BestWebSoft Panel"
815
 
816
+ #: bws_menu.php:417 bws_menu.php:432 bws_menu.php:561
817
  msgid "All"
818
  msgstr "Всі"
819
 
820
+ #: bws_menu.php:418
821
  msgid "Installed"
822
  msgstr "Встановлені"
823
 
824
+ #: bws_menu.php:419
825
  msgid "Not Installed"
826
  msgstr "Не встановлені"
827
 
828
+ #: bws_menu.php:425
829
  msgid "Filter results"
830
  msgstr "Фільтр результатів"
831
 
832
+ #: bws_menu.php:428 bws_menu.php:557
833
  msgid "Category"
834
  msgstr "Категорія"
835
 
836
+ #: bws_menu.php:492
837
+ msgid "Not installed"
838
+ msgstr "Не встановлен"
839
+
840
  #: bws_menu.php:496
841
  msgid "Renew to get updates"
842
  msgstr "Продовжити для поновлення"
916
  msgstr "Управління"
917
 
918
  #: product_list.php:10
919
+ msgid "Recommended"
920
+ msgstr "Рекомендовані "
921
+
922
+ #: product_list.php:11
923
  msgid "Security"
924
  msgstr "Безпека"
925
 
926
+ #: product_list.php:12
927
  msgid "Site Stats"
928
  msgstr "Статистика сайту"
929
 
930
+ #: product_list.php:13
931
  msgid "Social"
932
  msgstr "Соціальне"
933
 
934
+ #: product_list.php:14
935
  msgid "Utilities"
936
  msgstr "Утиліти"
937
 
938
+ #: product_list.php:15
939
  msgid "Other"
940
  msgstr "Інше"
941
 
942
+ #~ msgid "Get Access to %s+ Premium Plugins"
943
+ #~ msgstr "Отримати Доступ до %s+ Преміум Плагинам"
944
+
945
+ #~ msgid ""
946
+ #~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
947
+ #~ "plugins on a single website %s for only %s per month."
948
+ #~ msgstr ""
949
+ #~ "Приєднуйтесь до BestWebSoft Pro Membership сьогодні, скасовуйте підписку "
950
+ #~ "в будь-який час і використовуйте всі плагіни на одному сайті %s всього "
951
+ #~ "лише за %s в місяць."
952
+
953
+ #~ msgid "My Account"
954
+ #~ msgstr "Мій аккаунт"
955
+
956
  #~ msgid "BWS Panel"
957
  #~ msgstr "BWS Панель"
958
 
978
  #~ msgid "Need help?"
979
  #~ msgstr "Потрібна допомога?"
980
 
 
 
 
 
 
 
981
  #~ msgid "Go"
982
  #~ msgstr "Перейти"
983
 
bws_menu/product_list.php CHANGED
@@ -4,21 +4,22 @@
4
  */
5
 
6
  $bws_plugins_category = array(
7
- 'advertisement' => __( 'Advertisement', 'bestwebsoft' ),
8
- 'content-and-media' => __( 'Content & Media', 'bestwebsoft' ),
9
- 'management' => __( 'Management', 'bestwebsoft' ),
10
- 'security' => __( 'Security', 'bestwebsoft' ),
11
- 'site-stats' => __( 'Site Stats', 'bestwebsoft' ),
12
- 'social' => __( 'Social', 'bestwebsoft' ),
13
- 'utilities' => __( 'Utilities', 'bestwebsoft' ),
14
- 'other' => __( 'Other', 'bestwebsoft' )
 
15
  );
16
 
17
  $bws_plugins = array(
18
  'captcha/captcha.php' => array(
19
- 'category' => 'security',
20
  'name' => 'Captcha',
21
- 'description' => 'Plugin intended to prove that the visitor is a human being and not a spam robot.',
22
  'link' => 'http://bestwebsoft.com/products/captcha/?k=d678516c0990e781edfb6a6c874f0b8a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
23
  'settings' => 'admin.php?page=captcha.php',
24
  'pro_version' => 'captcha-pro/captcha_pro.php',
@@ -26,9 +27,9 @@ $bws_plugins = array(
26
  'pro_settings' => 'admin.php?page=captcha_pro.php'
27
  ),
28
  'car-rental/car-rental.php' => array(
29
- 'category' => 'content-and-media',
30
  'name' => 'Car Rental',
31
- 'description' => 'A convenient plugin that adds Car Rental functionality.',
32
  'link' => 'http://bestwebsoft.com/products/car-rental/?k=444cac6df9a0d3a9763ab4753d24941b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
33
  'settings' => 'admin.php?page=car-rental-settings',
34
  'pro_version' => 'car-rental-pro/car-rental-pro.php',
@@ -36,9 +37,9 @@ $bws_plugins = array(
36
  'pro_settings' => 'admin.php?page=car-rental-pro-settings'
37
  ),
38
  'contact-form-plugin/contact_form.php' => array(
39
- 'category' => 'other',
40
  'name' => 'Contact Form',
41
- 'description' => 'Add Contact Form to your WordPress website.',
42
  'link' => 'http://bestwebsoft.com/products/contact-form/?k=012327ef413e5b527883e031d43b088b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
43
  'settings' => 'admin.php?page=contact_form.php',
44
  'pro_version' => 'contact-form-pro/contact_form_pro.php',
@@ -46,9 +47,9 @@ $bws_plugins = array(
46
  'pro_settings' => 'admin.php?page=contact_form_pro.php'
47
  ),
48
  'contact-form-multi/contact-form-multi.php' => array(
49
- 'category' => 'other',
50
  'name' => 'Contact Form Multi',
51
- 'description' => 'Add-on to the Contact Form plugin that allows to create and implement multiple contact forms.',
52
  'link' => 'http://bestwebsoft.com/products/contact-form-multi/?k=83cdd9e72a9f4061122ad28a67293c72&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
53
  'settings' => '',
54
  'pro_version' => 'contact-form-multi-pro/contact-form-multi-pro.php',
@@ -56,26 +57,33 @@ $bws_plugins = array(
56
  'pro_settings' => ''
57
  ),
58
  'contact-form-to-db/contact_form_to_db.php' => array(
59
- 'category' => 'other',
60
  'name' => 'Contact Form to DB',
61
- 'description' => 'Allows you to manage the messages that have been sent from your site.',
62
  'link' => 'http://bestwebsoft.com/products/contact-form-to-db/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
63
  'settings' => 'admin.php?page=cntctfrmtdb_settings',
64
  'pro_version' => 'contact-form-to-db-pro/contact_form_to_db_pro.php',
65
  'purchase' => 'http://bestwebsoft.com/products/contact-form-to-db/buy/?k=6ce5f4a9006ec906e4db643669246c6a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
66
  'pro_settings' => 'admin.php?page=cntctfrmtdbpr_settings'
67
  ),
 
 
 
 
 
 
 
68
  'custom-fields-search/custom-fields-search.php' => array(
69
- 'category' => 'content-and-media',
70
  'name' => 'Custom Fields Search',
71
- 'description' => 'Allows you to add website search any existing custom fields.',
72
  'link' => 'http://bestwebsoft.com/products/custom-fields-search/?k=f3f8285bb069250c42c6ffac95ed3284&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
73
  'settings' => 'admin.php?page=custom_fields_search.php'
74
  ),
75
  'custom-search-plugin/custom-search-plugin.php' => array(
76
- 'category' => 'content-and-media',
77
  'name' => 'Custom Search',
78
- 'description' => 'Allows to extend your website search functionality by adding a custom post type.',
79
  'link' => 'http://bestwebsoft.com/products/custom-search/?k=933be8f3a8b8719d95d1079d15443e29&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
80
  'settings' => 'admin.php?page=custom_search.php',
81
  'pro_version' => 'custom-search-pro/custom-search-pro.php',
@@ -83,39 +91,39 @@ $bws_plugins = array(
83
  'pro_settings' => 'admin.php?page=custom_search_pro.php'
84
  ),
85
  'db-manager/db-manager.php' => array(
86
- 'category' => 'utilities',
87
  'name' => 'DB Manager',
88
- 'description' => 'Allows you to download the latest version of PhpMyadmin and Dumper and manage your site.',
89
  'link' => 'http://bestwebsoft.com/products/db-manager/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
90
  'install_url' => 'http://bestwebsoft.com/products/db-manager/download/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
91
  'settings' => 'admin.php?page=db-manager.php',
92
  'icon' => plugins_url( 'icons/plugins/', __FILE__ ) . 'db-manager.png'
93
  ),
94
  'donate-button/donate.php' => array(
95
- 'category' => 'other',
96
  'name' => 'Donate',
97
- 'description' => 'Makes it possible to place donation buttons of various payment systems on your web page.',
98
  'link' => 'http://bestwebsoft.com/products/donate/?k=a8b2e2a56914fb1765dd20297c26401b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
99
  'settings' => 'admin.php?page=donate.php'
100
  ),
101
  'email-queue/email-queue.php' => array(
102
- 'category' => 'other',
103
  'name' => 'Email Queue',
104
- 'description' => 'Allows to manage email massages sent by BestWebSoft plugins.',
105
  'link' => 'http://bestwebsoft.com/products/email-queue/?k=e345e1b6623f0dca119bc2d9433b130b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
106
  'settings' => 'admin.php?page=mlq_settings'
107
  ),
108
  'error-log-viewer/error-log-viewer.php' => array(
109
- 'category' => 'utilities',
110
  'name' => 'Error Log Viewer',
111
- 'description' => "Work with log files and folders on the WordPress server",
112
  'link' => 'http://bestwebsoft.com/products/error-log-viewer/?k=da0de8bd2c7a0b2fea5df64d55a368b3&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
113
  'settings' => 'admin.php?page=rrrlgvwr.php&tab=settings'
114
  ),
115
  'facebook-button-plugin/facebook-button-plugin.php' => array(
116
- 'category' => 'social',
117
  'name' => 'Facebook Button',
118
- 'description' => 'Allows you to add the Follow and Like buttons the easiest way.',
119
  'link' => 'http://bestwebsoft.com/products/facebook-like-button/?k=05ec4f12327f55848335802581467d55&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
120
  'settings' => 'admin.php?page=facebook-button-plugin.php',
121
  'pro_version' => 'facebook-button-pro/facebook-button-pro.php',
@@ -123,16 +131,16 @@ $bws_plugins = array(
123
  'pro_settings' => 'admin.php?page=facebook-button-pro.php'
124
  ),
125
  'bws-featured-posts/bws-featured-posts.php' => array(
126
- 'category' => 'content-and-media',
127
  'name' => 'Featured Posts',
128
- 'description' => 'Displays featured posts randomly on any website page.',
129
  'link' => 'http://bestwebsoft.com/products/featured-posts/?k=f0afb31185ba7c7d6d598528d69f6d97&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
130
  'settings' => 'admin.php?page=featured-posts.php'
131
  ),
132
  'gallery-plugin/gallery-plugin.php' => array(
133
- 'category' => 'content-and-media',
134
  'name' => 'Gallery',
135
- 'description' => 'Allows you to implement a Gallery page into your website.',
136
  'link' => 'http://bestwebsoft.com/products/gallery/?k=2da21c0a64eec7ebf16337fa134c5f78&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
137
  'settings' => 'admin.php?page=gallery-plugin.php',
138
  'pro_version' => 'gallery-plugin-pro/gallery-plugin-pro.php',
@@ -140,16 +148,16 @@ $bws_plugins = array(
140
  'pro_settings' => 'admin.php?page=gallery-plugin-pro.php'
141
  ),
142
  'gallery-categories/gallery-categories.php' => array(
143
- 'category' => 'content-and-media',
144
  'name' => 'Gallery Categories',
145
- 'description' => 'Add-on for Gallery Plugin by BestWebSoft',
146
  'link' => 'http://bestwebsoft.com/products/gallery-categories/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
147
  'settings' => ''
148
  ),
149
  'google-one/google-plus-one.php' => array(
150
- 'category' => 'social',
151
  'name' => 'Google +1',
152
- 'description' => 'Allows you to see how many times your page has been liked on Google Search Engine as well as who has liked the article.',
153
  'link' => 'http://bestwebsoft.com/products/google-plus-one/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
154
  'settings' => 'admin.php?page=google-plus-one.php',
155
  'pro_version' => 'google-one-pro/google-plus-one-pro.php',
@@ -157,9 +165,9 @@ $bws_plugins = array(
157
  'pro_settings' => 'admin.php?page=google-plus-one-pro.php'
158
  ),
159
  'adsense-plugin/adsense-plugin.php' => array(
160
- 'category' => 'advertisement',
161
  'name' => 'Google AdSense',
162
- 'description' => 'Allows Google AdSense implementation to your website.',
163
  'link' => 'http://bestwebsoft.com/products/google-adsense/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
164
  'settings' => 'admin.php?page=adsense-plugin.php',
165
  'pro_version' => 'adsense-pro/adsense-pro.php',
@@ -167,9 +175,9 @@ $bws_plugins = array(
167
  'pro_settings' => 'admin.php?page=adsense-pro.php'
168
  ),
169
  'bws-google-analytics/bws-google-analytics.php' => array(
170
- 'category' => 'site-stats',
171
  'name' => 'Google Analytics',
172
- 'description' => 'Allows you to retrieve basic stats from Google Analytics account and add the tracking code to your blog.',
173
  'link' => 'http://bestwebsoft.com/products/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
174
  'settings' => 'admin.php?page=bws-google-analytics.php',
175
  'pro_version' => 'bws-google-analytics-pro/bws-google-analytics-pro.php',
@@ -177,9 +185,9 @@ $bws_plugins = array(
177
  'pro_settings' => 'admin.php?page=bws-google-analytics-pro.php'
178
  ),
179
  'google-captcha/google-captcha.php' => array(
180
- 'category' => 'security',
181
  'name' => 'Google Captcha (reCAPTCHA)',
182
- 'description' => 'Plugin intended to prove that the visitor is a human being and not a spam robot.',
183
  'link' => 'http://bestwebsoft.com/products/google-captcha/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
184
  'settings' => 'admin.php?page=google-captcha.php',
185
  'pro_version' => 'google-captcha-pro/google-captcha-pro.php',
@@ -187,9 +195,9 @@ $bws_plugins = array(
187
  'pro_settings' => 'admin.php?page=google-captcha-pro.php'
188
  ),
189
  'bws-google-maps/bws-google-maps.php' => array(
190
- 'category' => 'content-and-media',
191
  'name' => 'Google Maps',
192
- 'description' => 'Easy to set up and insert Google Maps to your website.',
193
  'link' => 'http://bestwebsoft.com/products/bws-google-maps/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
194
  'settings' => 'admin.php?page=bws-google-maps.php',
195
  'pro_version' => 'bws-google-maps-pro/bws-google-maps-pro.php',
@@ -197,9 +205,9 @@ $bws_plugins = array(
197
  'pro_settings' => 'admin.php?page=bws-google-maps-pro.php'
198
  ),
199
  'google-sitemap-plugin/google-sitemap-plugin.php' => array(
200
- 'category' => 'other',
201
  'name' => 'Google Sitemap',
202
- 'description' => 'Allows you to add sitemap file to Google Webmaster Tools.',
203
  'link' => 'http://bestwebsoft.com/products/google-sitemap/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
204
  'settings' => 'admin.php?page=google-sitemap-plugin.php',
205
  'pro_version' => 'google-sitemap-pro/google-sitemap-pro.php',
@@ -207,16 +215,16 @@ $bws_plugins = array(
207
  'pro_settings' => 'admin.php?page=google-sitemap-pro.php'
208
  ),
209
  'google-shortlink/google-shortlink.php' => array(
210
- 'category' => 'other',
211
  'name' => 'Google Shortlink',
212
- 'description' => 'Allows you to get short links from goo.gl servise without leaving your site.',
213
  'link' => 'http://bestwebsoft.com/products/google-shortlink/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
214
  'settings' => 'admin.php?page=gglshrtlnk_options'
215
  ),
216
  'htaccess/htaccess.php' => array(
217
- 'category' => 'security',
218
  'name' => 'Htaccess',
219
- 'description' => 'Allows controlling access to your website using the directives Allow and Deny.',
220
  'link' => 'http://bestwebsoft.com/products/htaccess/?k=2b865fcd56a935d22c5c4f1bba52ed46&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
221
  'settings' => 'admin.php?page=htaccess.php',
222
  'pro_version' => 'htaccess-pro/htaccess-pro.php',
@@ -224,16 +232,23 @@ $bws_plugins = array(
224
  'pro_settings' => 'admin.php?page=htaccess-pro.php'
225
  ),
226
  'job-board/job-board.php' => array(
227
- 'category' => 'content-and-media',
228
  'name' => 'Job Board',
229
- 'description' => 'Allows to create a job-board page on your site.',
230
  'link' => 'http://bestwebsoft.com/products/job-board/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
231
  'settings' => 'admin.php?page=job-board.php'
232
  ),
 
 
 
 
 
 
 
233
  'limit-attempts/limit-attempts.php' => array(
234
- 'category' => 'security',
235
  'name' => 'Limit Attempts',
236
- 'description' => 'Allows you to limit rate of login attempts by the ip, and create whitelist and blacklist.',
237
  'link' => 'http://bestwebsoft.com/products/limit-attempts/?k=b14e1697ee4d008abcd4bd34d492573a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
238
  'settings' => 'admin.php?page=limit-attempts.php',
239
  'pro_version' => 'limit-attempts-pro/limit-attempts-pro.php',
@@ -241,9 +256,9 @@ $bws_plugins = array(
241
  'pro_settings' => 'admin.php?page=limit-attempts-pro.php'
242
  ),
243
  'bws-linkedin/bws-linkedin.php' => array(
244
- 'category' => 'social',
245
  'name' => 'LinkedIn',
246
- 'description' => "Add LinkedIn Widgets, 'Share' and 'Follow' Buttons in the easiest way.",
247
  'link' => 'http://bestwebsoft.com/products/linkedin/?k=d63c7319622ccc5f589dd2d545c1d77c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
248
  'settings' => 'admin.php?page=linkedin.php',
249
  'pro_version' => 'bws-linkedin-pro/bws-linkedin-pro.php',
@@ -251,9 +266,9 @@ $bws_plugins = array(
251
  'pro_settings' => 'admin.php?page=linkedin-pro.php'
252
  ),
253
  'multilanguage/multilanguage.php' => array(
254
- 'category' => 'content-and-media',
255
  'name' => 'Multilanguage',
256
- 'description' => 'Allows to create content on a Wordpress site in different languages.',
257
  'link' => 'http://bestwebsoft.com/products/multilanguage/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
258
  'settings' => 'admin.php?page=mltlngg_settings',
259
  'pro_version' => 'multilanguage-pro/multilanguage-pro.php',
@@ -261,16 +276,16 @@ $bws_plugins = array(
261
  'pro_settings' => 'admin.php?page=mltlnggpr_settings'
262
  ),
263
  'pagination/pagination.php' => array(
264
- 'category' => 'content-and-media',
265
  'name' => 'Pagination',
266
- 'description' => 'Add pagination block to your WordPress website.',
267
  'link' => 'http://bestwebsoft.com/products/pagination/?k=22adb940256f149559ba8fedcd728ac8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
268
  'settings' => 'admin.php?page=pagination.php'
269
  ),
270
  'pdf-print/pdf-print.php' => array(
271
- 'category' => 'other',
272
  'name' => 'PDF & Print',
273
- 'description' => 'Allows you to create PDF and Print page with adding appropriate buttons to the content.',
274
  'link' => 'http://bestwebsoft.com/products/pdf-print/?k=bfefdfb522a4c0ff0141daa3f271840c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
275
  'settings' => 'admin.php?page=pdf-print.php',
276
  'pro_version' => 'pdf-print-pro/pdf-print-pro.php',
@@ -278,9 +293,9 @@ $bws_plugins = array(
278
  'pro_settings' => 'admin.php?page=pdf-print-pro.php'
279
  ),
280
  'bws-pinterest/bws-pinterest.php' => array(
281
- 'category' => 'social',
282
  'name' => 'Pinterest',
283
- 'description' => 'Add Pinterest buttons and widgets to your WordPress website',
284
  'link' => 'http://bestwebsoft.com/products/pinterest/?k=504107b6213f247a67fe7ffb94e97c78&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
285
  'settings' => 'admin.php?page=pinterest.php',
286
  'pro_version' => 'bws-pinterest-pro/bws-pinterest-pro.php',
@@ -288,16 +303,16 @@ $bws_plugins = array(
288
  'pro_settings' => 'admin.php?page=pinterest-pro.php'
289
  ),
290
  'bws-popular-posts/bws-popular-posts.php' => array(
291
- 'category' => 'content-and-media',
292
  'name' => 'Popular Posts',
293
- 'description' => 'This plugin will help you can display the most popular posts on your blog in the widget.',
294
  'link' => 'http://bestwebsoft.com/products/popular-posts/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
295
  'settings' => 'admin.php?page=popular-posts.php'
296
  ),
297
  'portfolio/portfolio.php' => array(
298
- 'category' => 'content-and-media',
299
  'name' => 'Portfolio',
300
- 'description' => 'Allows you to create a page with the information about your past projects.',
301
  'link' => 'http://bestwebsoft.com/products/portfolio/?k=1249a890c5b7bba6bda3f528a94f768b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
302
  'settings' => 'admin.php?page=portfolio.php',
303
  'pro_version' => 'portfolio-pro/portfolio-pro.php',
@@ -305,23 +320,23 @@ $bws_plugins = array(
305
  'pro_settings' => 'admin.php?page=portfolio-pro.php'
306
  ),
307
  'post-to-csv/post-to-csv.php' => array(
308
- 'category' => 'utilities',
309
  'name' => 'Post to CSV',
310
- 'description' => 'The plugin allows to export posts of any types to a csv file.',
311
  'link' => 'http://bestwebsoft.com/products/post-to-csv/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
312
  'settings' => 'admin.php?page=post-to-csv.php'
313
  ),
314
  'profile-extra-fields/profile-extra-fields.php' => array(
315
- 'category' => 'management',
316
  'name' => 'Profile Extra Fields',
317
- 'description' => "Add additional fields on the user's profile page",
318
  'link' => 'http://bestwebsoft.com/products/profile-extra-fields/?k=fe3b6c3dbc80bd4b1cf9a27a2f339820&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
319
  'settings' => 'admin.php?page=profile-extra-fields.php'
320
  ),
321
  'promobar/promobar.php' => array(
322
- 'category' => 'advertisement',
323
  'name' => 'PromoBar',
324
- 'description' => 'This plugin allows placing banners with any data on your website.',
325
  'link' => 'http://bestwebsoft.com/products/promobar/?k=619eac2232d9cfa382c4e678c3b14766&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
326
  'settings' => 'admin.php?page=promobar.php',
327
  'pro_version' => 'promobar-pro/promobar-pro.php',
@@ -329,16 +344,16 @@ $bws_plugins = array(
329
  'pro_settings' => 'admin.php?page=promobar-pro.php'
330
  ),
331
  'quotes-and-tips/quotes-and-tips.php' => array(
332
- 'category' => 'content-and-media',
333
  'name' => 'Quotes and Tips',
334
- 'description' => 'Allows you to implement quotes & tips block into your web site.',
335
  'link' => 'http://bestwebsoft.com/products/quotes-and-tips/?k=5738a4e85a798c4a5162240c6515098d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
336
  'settings' => 'admin.php?page=quotes-and-tips.php'
337
  ),
338
  'realty/realty.php' => array(
339
- 'category' => 'content-and-media',
340
  'name' => 'Realty',
341
- 'description' => 'A convenient plugin that adds Real Estate functionality.',
342
  'link' => 'http://bestwebsoft.com/products/realty/?k=d55de979dbbbb7af0b2ff1d7f43884fa&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
343
  'settings' => 'admin.php?page=realty_settings',
344
  'pro_version' => 'realty-pro/realty-pro.php',
@@ -346,23 +361,23 @@ $bws_plugins = array(
346
  'pro_settings' => 'admin.php?page=realty_pro_settings'
347
  ),
348
  're-attacher/re-attacher.php' => array(
349
- 'category' => 'utilities',
350
  'name' => 'Re-attacher',
351
- 'description' => 'This plugin allows to attach, unattach or reattach media item in different post.',
352
  'link' => 'http://bestwebsoft.com/products/re-attacher/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
353
  'settings' => 'admin.php?page=re-attacher.php'
354
  ),
355
  'relevant/related-posts-plugin.php' => array(
356
- 'category' => 'content-and-media',
357
  'name' => 'Relevant - Related Posts',
358
- 'description' => 'Allows you to display related posts with similar words in category, tags, title or by adding special meta key for posts.',
359
  'link' => 'http://bestwebsoft.com/products/related-posts/?k=73fb737037f7141e66415ec259f7e426&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
360
  'settings' => 'admin.php?page=related-posts-plugin.php'
361
  ),
362
  'sender/sender.php' => array(
363
- 'category' => 'social',
364
  'name' => 'Sender',
365
- 'description' => 'You can send mails to all users or to certain categories of users.',
366
  'link' => 'http://bestwebsoft.com/products/sender/?k=89c297d14ba85a8417a0f2fc05e089c7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
367
  'settings' => 'admin.php?page=sndr_settings',
368
  'pro_version' => 'sender-pro/sender-pro.php',
@@ -370,23 +385,23 @@ $bws_plugins = array(
370
  'pro_settings' => 'admin.php?page=sndrpr_settings'
371
  ),
372
  'bws-smtp/bws-smtp.php' => array(
373
- 'category' => 'utilities',
374
  'name' => 'SMTP',
375
- 'description' => 'This plugin introduces an easy way to configure sending email messages via SMTP.',
376
  'link' => 'http://bestwebsoft.com/products/smtp/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
377
  'settings' => 'admin.php?page=bwssmtp_settings'
378
  ),
379
  'social-buttons-pack/social-buttons-pack.php' => array(
380
- 'category' => 'social',
381
  'name' => 'Social Buttons Pack',
382
- 'description' => 'Add Social buttons to your WordPress website.',
383
  'link' => 'http://bestwebsoft.com/products/social-buttons-pack/?k=b6440fad9f54274429e536b0c61b42da&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
384
  'settings' => 'admin.php?page=social-buttons.php'
385
  ),
386
  'subscriber/subscriber.php' => array(
387
- 'category' => 'social',
388
  'name' => 'Subscriber',
389
- 'description' => 'This plugin allows you to subscribe users for newsletters from your website.',
390
  'link' => 'http://bestwebsoft.com/products/subscriber/?k=a4ecc1b7800bae7329fbe8b4b04e9c88&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
391
  'settings' => 'admin.php?page=sbscrbr_settings_page',
392
  'pro_version' => 'subscriber-pro/subscriber-pro.php',
@@ -394,23 +409,23 @@ $bws_plugins = array(
394
  'pro_settings' => 'admin.php?page=sbscrbrpr_settings_page'
395
  ),
396
  'bws-testimonials/bws-testimonials.php' => array(
397
- 'category' => 'content-and-media',
398
  'name' => 'Testimonials',
399
- 'description' => 'Allows creating and displaying a Testimonial on your website.',
400
  'link' => 'http://bestwebsoft.com/products/testimonials/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
401
  'settings' => 'admin.php?page=testimonials.php'
402
  ),
403
  'timesheet/timesheet.php' => array(
404
- 'category' => 'management',
405
  'name' => 'Timesheet',
406
- 'description' => 'Allows you to fill out and view the work schedule of users.',
407
  'link' => 'http://bestwebsoft.com/products/timesheet/?k=06a58bb78c17a43df01825925f05a5c1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
408
  'settings' => 'admin.php?page=timesheet_settings'
409
  ),
410
  'twitter-plugin/twitter.php' => array(
411
- 'category' => 'social',
412
  'name' => 'Twitter',
413
- 'description' => 'Allows you to add the Twitter "Follow" and "Like" buttons the easiest way.',
414
  'link' => 'http://bestwebsoft.com/products/twitter/?k=f8cb514e25bd7ec4974d64435c5eb333&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
415
  'settings' => 'admin.php?page=twitter.php',
416
  'pro_version' => 'twitter-pro/twitter-pro.php',
@@ -418,9 +433,9 @@ $bws_plugins = array(
418
  'pro_settings' => 'admin.php?page=twitter-pro.php'
419
  ),
420
  'updater/updater.php' => array(
421
- 'category' => 'utilities',
422
  'name' => 'Updater',
423
- 'description' => 'Allows you to update plugins and WP core.',
424
  'link' => 'http://bestwebsoft.com/products/updater/?k=66f3ecd4c1912009d395c4bb30f779d1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
425
  'settings' => 'admin.php?page=updater-options',
426
  'pro_version' => 'updater-pro/updater_pro.php',
@@ -428,9 +443,9 @@ $bws_plugins = array(
428
  'pro_settings' => 'admin.php?page=updater-pro-options'
429
  ),
430
  'user-role/user-role.php' => array(
431
- 'category' => 'utilities',
432
  'name' => 'User Role',
433
- 'description' => 'Allows to change wordpress user role capabilities.',
434
  'link' => 'http://bestwebsoft.com/products/user-role/?k=dfe2244835c6fbf601523964b3f34ccc&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
435
  'settings' => 'admin.php?page=user-role.php',
436
  'pro_version' => 'user-role-pro/user-role-pro.php',
@@ -438,9 +453,9 @@ $bws_plugins = array(
438
  'pro_settings' => 'admin.php?page=user-role-pro.php'
439
  ),
440
  'visitors-online/visitors-online.php' => array(
441
- 'category' => 'site-stats',
442
  'name' => 'Visitors Online',
443
- 'description' => 'See how many users, guests and bots are online at the website.',
444
  'link' => 'http://bestwebsoft.com/products/visitors-online/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
445
  'settings' => 'admin.php?page=visitors-online.php',
446
  'pro_version' => 'visitors-online-pro/visitors-online-pro.php',
@@ -448,31 +463,36 @@ $bws_plugins = array(
448
  'pro_settings' => 'admin.php?page=visitors-online-pro.php'
449
  ),
450
  'zendesk-help-center/zendesk-help-center.php' => array(
451
- 'category' => 'utilities',
452
  'name' => 'Zendesk Help Center',
453
- 'description' => 'This plugin allows to backup&export Zendesk Help Center.',
454
  'link' => 'http://bestwebsoft.com/products/zendesk-help-center/?k=2a5fd2f4b2f4bde46f2ca44b8d15846d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
455
- 'settings' => 'admin.php?page=zendesk_hc.php&tab=settings',
456
  'pro_version' => 'zendesk-help-center-pro/zendesk-help-center-pro.php',
457
  'purchase' => 'http://bestwebsoft.com/products/zendesk-help-center/buy/?k=45199e4538b5befe4d9566868a61a3aa&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
458
- 'pro_settings' => 'admin.php?page=zendesk_hc.php&tab=settings'
459
  )
460
  );
461
 
462
- $themes = array(
 
 
 
 
 
463
  (object) array(
464
  'name' => 'Real Estate',
465
  'slug' => 'realestate',
466
  'href' => 'http://bestwebsoft.com/products/real-estate-creative-wordpress-theme/'
467
  ),
 
 
 
 
 
468
  (object) array(
469
  'name' => 'Unity',
470
  'slug' => 'unity',
471
  'href' => 'http://bestwebsoft.com/products/unity-multipurpose-wordpress-theme/'
472
- ),
473
- (object) array(
474
- 'name' => 'Opening',
475
- 'slug' => 'opening',
476
- 'href' => 'http://bestwebsoft.com/products/opening-job-board-wordpress-theme/'
477
  )
478
  );
4
  */
5
 
6
  $bws_plugins_category = array(
7
+ 'advertisement' => array( 'name' => __( 'Advertisement', 'bestwebsoft' ) ),
8
+ 'content-and-media' => array( 'name' => __( 'Content & Media', 'bestwebsoft' ) ),
9
+ 'management' => array( 'name' => __( 'Management', 'bestwebsoft' ) ),
10
+ 'recommended' => array( 'name' => __( 'Recommended', 'bestwebsoft' ) ),
11
+ 'security' => array( 'name' => __( 'Security', 'bestwebsoft' ) ),
12
+ 'site-stats' => array( 'name' => __( 'Site Stats', 'bestwebsoft' ) ),
13
+ 'social' => array( 'name' => __( 'Social', 'bestwebsoft' ) ),
14
+ 'utilities' => array( 'name' => __( 'Utilities', 'bestwebsoft' ) ),
15
+ 'other' => array( 'name' => __( 'Other', 'bestwebsoft' ) ),
16
  );
17
 
18
  $bws_plugins = array(
19
  'captcha/captcha.php' => array(
20
+ 'category' => array( 'security', 'recommended' ),
21
  'name' => 'Captcha',
22
+ 'description' => 'Protect WordPress website forms from spam entries by means of math logic.',
23
  'link' => 'http://bestwebsoft.com/products/captcha/?k=d678516c0990e781edfb6a6c874f0b8a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
24
  'settings' => 'admin.php?page=captcha.php',
25
  'pro_version' => 'captcha-pro/captcha_pro.php',
27
  'pro_settings' => 'admin.php?page=captcha_pro.php'
28
  ),
29
  'car-rental/car-rental.php' => array(
30
+ 'category' => array( 'content-and-media' ),
31
  'name' => 'Car Rental',
32
+ 'description' => 'Create your personal car rental/booking and reservation website.',
33
  'link' => 'http://bestwebsoft.com/products/car-rental/?k=444cac6df9a0d3a9763ab4753d24941b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
34
  'settings' => 'admin.php?page=car-rental-settings',
35
  'pro_version' => 'car-rental-pro/car-rental-pro.php',
37
  'pro_settings' => 'admin.php?page=car-rental-pro-settings'
38
  ),
39
  'contact-form-plugin/contact_form.php' => array(
40
+ 'category' => array( 'other', 'recommended' ),
41
  'name' => 'Contact Form',
42
+ 'description' => 'Allow customers to reach you using secure contact form plugin any website must have.',
43
  'link' => 'http://bestwebsoft.com/products/contact-form/?k=012327ef413e5b527883e031d43b088b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
44
  'settings' => 'admin.php?page=contact_form.php',
45
  'pro_version' => 'contact-form-pro/contact_form_pro.php',
47
  'pro_settings' => 'admin.php?page=contact_form_pro.php'
48
  ),
49
  'contact-form-multi/contact-form-multi.php' => array(
50
+ 'category' => array( 'other', 'recommended' ),
51
  'name' => 'Contact Form Multi',
52
+ 'description' => 'Add unlimited number of contact forms to WordPress website.',
53
  'link' => 'http://bestwebsoft.com/products/contact-form-multi/?k=83cdd9e72a9f4061122ad28a67293c72&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
54
  'settings' => '',
55
  'pro_version' => 'contact-form-multi-pro/contact-form-multi-pro.php',
57
  'pro_settings' => ''
58
  ),
59
  'contact-form-to-db/contact_form_to_db.php' => array(
60
+ 'category' => array( 'other', 'recommended' ),
61
  'name' => 'Contact Form to DB',
62
+ 'description' => 'Save and manage contact form messages. Never lose important data.',
63
  'link' => 'http://bestwebsoft.com/products/contact-form-to-db/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
64
  'settings' => 'admin.php?page=cntctfrmtdb_settings',
65
  'pro_version' => 'contact-form-to-db-pro/contact_form_to_db_pro.php',
66
  'purchase' => 'http://bestwebsoft.com/products/contact-form-to-db/buy/?k=6ce5f4a9006ec906e4db643669246c6a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
67
  'pro_settings' => 'admin.php?page=cntctfrmtdbpr_settings'
68
  ),
69
+ 'custom-admin-page/custom-admin-page.php' => array(
70
+ 'category' => array( 'utilities' ),
71
+ 'name' => 'Custom Admin Page',
72
+ 'description' => 'Add unlimited custom pages to WordPress admin dashboard.',
73
+ 'link' => 'http://bestwebsoft.com/products/custom-admin-page/?k=9ac03f16c25e845e8e055a221c3e1467&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
74
+ 'settings' => 'admin.php?page=custom-admin-page.php'
75
+ ),
76
  'custom-fields-search/custom-fields-search.php' => array(
77
+ 'category' => array( 'content-and-media' ),
78
  'name' => 'Custom Fields Search',
79
+ 'description' => 'Add custom fields to WordPress website search results.',
80
  'link' => 'http://bestwebsoft.com/products/custom-fields-search/?k=f3f8285bb069250c42c6ffac95ed3284&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
81
  'settings' => 'admin.php?page=custom_fields_search.php'
82
  ),
83
  'custom-search-plugin/custom-search-plugin.php' => array(
84
+ 'category' => array( 'content-and-media' ),
85
  'name' => 'Custom Search',
86
+ 'description' => 'Add custom post types to WordPress website search results.',
87
  'link' => 'http://bestwebsoft.com/products/custom-search/?k=933be8f3a8b8719d95d1079d15443e29&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
88
  'settings' => 'admin.php?page=custom_search.php',
89
  'pro_version' => 'custom-search-pro/custom-search-pro.php',
91
  'pro_settings' => 'admin.php?page=custom_search_pro.php'
92
  ),
93
  'db-manager/db-manager.php' => array(
94
+ 'category' => array( 'utilities' ),
95
  'name' => 'DB Manager',
96
+ 'description' => 'Manage database and file system right from your WordPress admin dashboard.',
97
  'link' => 'http://bestwebsoft.com/products/db-manager/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
98
  'install_url' => 'http://bestwebsoft.com/products/db-manager/download/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
99
  'settings' => 'admin.php?page=db-manager.php',
100
  'icon' => plugins_url( 'icons/plugins/', __FILE__ ) . 'db-manager.png'
101
  ),
102
  'donate-button/donate.php' => array(
103
+ 'category' => array( 'other' ),
104
  'name' => 'Donate',
105
+ 'description' => 'Add PayPal and 2CO donate buttons to receive charity payments.',
106
  'link' => 'http://bestwebsoft.com/products/donate/?k=a8b2e2a56914fb1765dd20297c26401b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
107
  'settings' => 'admin.php?page=donate.php'
108
  ),
109
  'email-queue/email-queue.php' => array(
110
+ 'category' => array( 'other' ),
111
  'name' => 'Email Queue',
112
+ 'description' => 'Automatically add outgoing email messages to queue instead of sending them immediately.',
113
  'link' => 'http://bestwebsoft.com/products/email-queue/?k=e345e1b6623f0dca119bc2d9433b130b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
114
  'settings' => 'admin.php?page=mlq_settings'
115
  ),
116
  'error-log-viewer/error-log-viewer.php' => array(
117
+ 'category' => array( 'utilities' ),
118
  'name' => 'Error Log Viewer',
119
+ 'description' => 'Get latest error log messages to diagnose website problems. Define and fix issues faster.',
120
  'link' => 'http://bestwebsoft.com/products/error-log-viewer/?k=da0de8bd2c7a0b2fea5df64d55a368b3&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
121
  'settings' => 'admin.php?page=rrrlgvwr.php&tab=settings'
122
  ),
123
  'facebook-button-plugin/facebook-button-plugin.php' => array(
124
+ 'category' => array( 'social' ),
125
  'name' => 'Facebook Button',
126
+ 'description' => 'Add Facebook Like, Share and Profile buttons to WordPress posts, pages and widgets.',
127
  'link' => 'http://bestwebsoft.com/products/facebook-like-button/?k=05ec4f12327f55848335802581467d55&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
128
  'settings' => 'admin.php?page=facebook-button-plugin.php',
129
  'pro_version' => 'facebook-button-pro/facebook-button-pro.php',
131
  'pro_settings' => 'admin.php?page=facebook-button-pro.php'
132
  ),
133
  'bws-featured-posts/bws-featured-posts.php' => array(
134
+ 'category' => array( 'content-and-media' ),
135
  'name' => 'Featured Posts',
136
+ 'description' => 'Add featured posts to WordPress posts or widgets. Highlight important information.',
137
  'link' => 'http://bestwebsoft.com/products/featured-posts/?k=f0afb31185ba7c7d6d598528d69f6d97&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
138
  'settings' => 'admin.php?page=featured-posts.php'
139
  ),
140
  'gallery-plugin/gallery-plugin.php' => array(
141
+ 'category' => array( 'content-and-media', 'recommended' ),
142
  'name' => 'Gallery',
143
+ 'description' => 'Add beautiful galleries, albums & images to your Wordpress website in few clicks.',
144
  'link' => 'http://bestwebsoft.com/products/gallery/?k=2da21c0a64eec7ebf16337fa134c5f78&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
145
  'settings' => 'admin.php?page=gallery-plugin.php',
146
  'pro_version' => 'gallery-plugin-pro/gallery-plugin-pro.php',
148
  'pro_settings' => 'admin.php?page=gallery-plugin-pro.php'
149
  ),
150
  'gallery-categories/gallery-categories.php' => array(
151
+ 'category' => array( 'content-and-media' ),
152
  'name' => 'Gallery Categories',
153
+ 'description' => 'Add unlimited gallery categories. Organize images to make the navigation through content easier.',
154
  'link' => 'http://bestwebsoft.com/products/gallery-categories/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
155
  'settings' => ''
156
  ),
157
  'google-one/google-plus-one.php' => array(
158
+ 'category' => array( 'social' ),
159
  'name' => 'Google +1',
160
+ 'description' => 'Add Google +1 Share, Follow, Hangout buttons and profile badge to WordPress posts, pages and widgets.',
161
  'link' => 'http://bestwebsoft.com/products/google-plus-one/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
162
  'settings' => 'admin.php?page=google-plus-one.php',
163
  'pro_version' => 'google-one-pro/google-plus-one-pro.php',
165
  'pro_settings' => 'admin.php?page=google-plus-one-pro.php'
166
  ),
167
  'adsense-plugin/adsense-plugin.php' => array(
168
+ 'category' => array( 'advertisement' ),
169
  'name' => 'Google AdSense',
170
+ 'description' => 'Add Adsense ads to pages, posts, custom posts, search results, categories, tags, pages, and widgets.',
171
  'link' => 'http://bestwebsoft.com/products/google-adsense/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
172
  'settings' => 'admin.php?page=adsense-plugin.php',
173
  'pro_version' => 'adsense-pro/adsense-pro.php',
175
  'pro_settings' => 'admin.php?page=adsense-pro.php'
176
  ),
177
  'bws-google-analytics/bws-google-analytics.php' => array(
178
+ 'category' => array( 'site-stats' ),
179
  'name' => 'Google Analytics',
180
+ 'description' => 'Add Google Analytics code to WordPress website and track basic stats.',
181
  'link' => 'http://bestwebsoft.com/products/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
182
  'settings' => 'admin.php?page=bws-google-analytics.php',
183
  'pro_version' => 'bws-google-analytics-pro/bws-google-analytics-pro.php',
185
  'pro_settings' => 'admin.php?page=bws-google-analytics-pro.php'
186
  ),
187
  'google-captcha/google-captcha.php' => array(
188
+ 'category' => array( 'security', 'recommended' ),
189
  'name' => 'Google Captcha (reCAPTCHA)',
190
+ 'description' => 'Protect WordPress website forms from spam entries with Google Captcha (reCaptcha).',
191
  'link' => 'http://bestwebsoft.com/products/google-captcha/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
192
  'settings' => 'admin.php?page=google-captcha.php',
193
  'pro_version' => 'google-captcha-pro/google-captcha-pro.php',
195
  'pro_settings' => 'admin.php?page=google-captcha-pro.php'
196
  ),
197
  'bws-google-maps/bws-google-maps.php' => array(
198
+ 'category' => array( 'content-and-media' ),
199
  'name' => 'Google Maps',
200
+ 'description' => 'Add customized Google maps to WordPress posts, pages and widgets.',
201
  'link' => 'http://bestwebsoft.com/products/bws-google-maps/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
202
  'settings' => 'admin.php?page=bws-google-maps.php',
203
  'pro_version' => 'bws-google-maps-pro/bws-google-maps-pro.php',
205
  'pro_settings' => 'admin.php?page=bws-google-maps-pro.php'
206
  ),
207
  'google-sitemap-plugin/google-sitemap-plugin.php' => array(
208
+ 'category' => array( 'other', 'recommended' ),
209
  'name' => 'Google Sitemap',
210
+ 'description' => 'Generate and add XML sitemap to WordPress website. Help search engines index your blog.',
211
  'link' => 'http://bestwebsoft.com/products/google-sitemap/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
212
  'settings' => 'admin.php?page=google-sitemap-plugin.php',
213
  'pro_version' => 'google-sitemap-pro/google-sitemap-pro.php',
215
  'pro_settings' => 'admin.php?page=google-sitemap-pro.php'
216
  ),
217
  'google-shortlink/google-shortlink.php' => array(
218
+ 'category' => array( 'other' ),
219
  'name' => 'Google Shortlink',
220
+ 'description' => 'Replace external WordPress website links with Google shortlinks and track click stats.',
221
  'link' => 'http://bestwebsoft.com/products/google-shortlink/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
222
  'settings' => 'admin.php?page=gglshrtlnk_options'
223
  ),
224
  'htaccess/htaccess.php' => array(
225
+ 'category' => array( 'security' ),
226
  'name' => 'Htaccess',
227
+ 'description' => 'Protect WordPress website allow and deny access for certain IP addresses, hostnames, etc.',
228
  'link' => 'http://bestwebsoft.com/products/htaccess/?k=2b865fcd56a935d22c5c4f1bba52ed46&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
229
  'settings' => 'admin.php?page=htaccess.php',
230
  'pro_version' => 'htaccess-pro/htaccess-pro.php',
232
  'pro_settings' => 'admin.php?page=htaccess-pro.php'
233
  ),
234
  'job-board/job-board.php' => array(
235
+ 'category' => array( 'content-and-media' ),
236
  'name' => 'Job Board',
237
+ 'description' => 'Create your personal job board and listing WordPress website. Search jobs, submit CV/resumes, choose candidates.',
238
  'link' => 'http://bestwebsoft.com/products/job-board/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
239
  'settings' => 'admin.php?page=job-board.php'
240
  ),
241
+ 'bws-latest-posts/bws-latest-posts.php' => array(
242
+ 'category' => array( 'content-and-media' ),
243
+ 'name' => 'Latest Posts',
244
+ 'description' => 'Add latest posts or latest posts for selected categories widgets to WordPress website.',
245
+ 'link' => 'http://bestwebsoft.com/products/latest-posts/?k=ef4e125aadadd8d219140daa184a9399&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
246
+ 'settings' => 'admin.php?page=latest-posts.php'
247
+ ),
248
  'limit-attempts/limit-attempts.php' => array(
249
+ 'category' => array( 'security', 'recommended' ),
250
  'name' => 'Limit Attempts',
251
+ 'description' => 'Protect WordPress website against brute force attacks. Limit rate of login attempts.',
252
  'link' => 'http://bestwebsoft.com/products/limit-attempts/?k=b14e1697ee4d008abcd4bd34d492573a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
253
  'settings' => 'admin.php?page=limit-attempts.php',
254
  'pro_version' => 'limit-attempts-pro/limit-attempts-pro.php',
256
  'pro_settings' => 'admin.php?page=limit-attempts-pro.php'
257
  ),
258
  'bws-linkedin/bws-linkedin.php' => array(
259
+ 'category' => array( 'social' ),
260
  'name' => 'LinkedIn',
261
+ 'description' => 'Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. 5 plugins included – profile, insider, etc.',
262
  'link' => 'http://bestwebsoft.com/products/linkedin/?k=d63c7319622ccc5f589dd2d545c1d77c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
263
  'settings' => 'admin.php?page=linkedin.php',
264
  'pro_version' => 'bws-linkedin-pro/bws-linkedin-pro.php',
266
  'pro_settings' => 'admin.php?page=linkedin-pro.php'
267
  ),
268
  'multilanguage/multilanguage.php' => array(
269
+ 'category' => array( 'content-and-media', 'recommended' ),
270
  'name' => 'Multilanguage',
271
+ 'description' => 'Translate WordPress website content to other languages manually. Create multilingual pages, posts, widgets, menus, etc.',
272
  'link' => 'http://bestwebsoft.com/products/multilanguage/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
273
  'settings' => 'admin.php?page=mltlngg_settings',
274
  'pro_version' => 'multilanguage-pro/multilanguage-pro.php',
276
  'pro_settings' => 'admin.php?page=mltlnggpr_settings'
277
  ),
278
  'pagination/pagination.php' => array(
279
+ 'category' => array( 'content-and-media' ),
280
  'name' => 'Pagination',
281
+ 'description' => 'Add customizable pagination to WordPress website. Split long content to multiple pages for better navigation.',
282
  'link' => 'http://bestwebsoft.com/products/pagination/?k=22adb940256f149559ba8fedcd728ac8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
283
  'settings' => 'admin.php?page=pagination.php'
284
  ),
285
  'pdf-print/pdf-print.php' => array(
286
+ 'category' => array( 'other' ),
287
  'name' => 'PDF & Print',
288
+ 'description' => 'Generate PDF files and print WordPress posts/pages. Customize document header/footer styles and appearance.',
289
  'link' => 'http://bestwebsoft.com/products/pdf-print/?k=bfefdfb522a4c0ff0141daa3f271840c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
290
  'settings' => 'admin.php?page=pdf-print.php',
291
  'pro_version' => 'pdf-print-pro/pdf-print-pro.php',
293
  'pro_settings' => 'admin.php?page=pdf-print-pro.php'
294
  ),
295
  'bws-pinterest/bws-pinterest.php' => array(
296
+ 'category' => array( 'social' ),
297
  'name' => 'Pinterest',
298
+ 'description' => 'Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, Profile) to WordPress posts, pages and widgets.',
299
  'link' => 'http://bestwebsoft.com/products/pinterest/?k=504107b6213f247a67fe7ffb94e97c78&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
300
  'settings' => 'admin.php?page=pinterest.php',
301
  'pro_version' => 'bws-pinterest-pro/bws-pinterest-pro.php',
303
  'pro_settings' => 'admin.php?page=pinterest-pro.php'
304
  ),
305
  'bws-popular-posts/bws-popular-posts.php' => array(
306
+ 'category' => array( 'content-and-media', 'recommended' ),
307
  'name' => 'Popular Posts',
308
+ 'description' => 'Track views, comments and add most popular posts to Wordpress widgets.',
309
  'link' => 'http://bestwebsoft.com/products/popular-posts/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
310
  'settings' => 'admin.php?page=popular-posts.php'
311
  ),
312
  'portfolio/portfolio.php' => array(
313
+ 'category' => array( 'content-and-media', 'recommended' ),
314
  'name' => 'Portfolio',
315
+ 'description' => 'Create your personal portfolio WordPress website. Manage and showcase past projects to get more clients.',
316
  'link' => 'http://bestwebsoft.com/products/portfolio/?k=1249a890c5b7bba6bda3f528a94f768b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
317
  'settings' => 'admin.php?page=portfolio.php',
318
  'pro_version' => 'portfolio-pro/portfolio-pro.php',
320
  'pro_settings' => 'admin.php?page=portfolio-pro.php'
321
  ),
322
  'post-to-csv/post-to-csv.php' => array(
323
+ 'category' => array( 'utilities' ),
324
  'name' => 'Post to CSV',
325
+ 'description' => 'Export WordPress posts to CSV file format easily. Configure data order.',
326
  'link' => 'http://bestwebsoft.com/products/post-to-csv/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
327
  'settings' => 'admin.php?page=post-to-csv.php'
328
  ),
329
  'profile-extra-fields/profile-extra-fields.php' => array(
330
+ 'category' => array( 'management' ),
331
  'name' => 'Profile Extra Fields',
332
+ 'description' => 'Add extra fields to default WordPress user profile. The easiest way to create and manage additional custom values.',
333
  'link' => 'http://bestwebsoft.com/products/profile-extra-fields/?k=fe3b6c3dbc80bd4b1cf9a27a2f339820&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
334
  'settings' => 'admin.php?page=profile-extra-fields.php'
335
  ),
336
  'promobar/promobar.php' => array(
337
+ 'category' => array( 'advertisement' ),
338
  'name' => 'PromoBar',
339
+ 'description' => 'Add and display HTML advertisement on WordPress website. Customize bar styles and appearance.',
340
  'link' => 'http://bestwebsoft.com/products/promobar/?k=619eac2232d9cfa382c4e678c3b14766&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
341
  'settings' => 'admin.php?page=promobar.php',
342
  'pro_version' => 'promobar-pro/promobar-pro.php',
344
  'pro_settings' => 'admin.php?page=promobar-pro.php'
345
  ),
346
  'quotes-and-tips/quotes-and-tips.php' => array(
347
+ 'category' => array( 'content-and-media' ),
348
  'name' => 'Quotes and Tips',
349
+ 'description' => 'Add customizable quotes and tips blocks to WordPress posts, pages and widgets.',
350
  'link' => 'http://bestwebsoft.com/products/quotes-and-tips/?k=5738a4e85a798c4a5162240c6515098d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
351
  'settings' => 'admin.php?page=quotes-and-tips.php'
352
  ),
353
  'realty/realty.php' => array(
354
+ 'category' => array( 'content-and-media' ),
355
  'name' => 'Realty',
356
+ 'description' => 'Create your personal real estate WordPress website. Sell, rent and buy properties. Add, search and browse listings easily.',
357
  'link' => 'http://bestwebsoft.com/products/realty/?k=d55de979dbbbb7af0b2ff1d7f43884fa&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
358
  'settings' => 'admin.php?page=realty_settings',
359
  'pro_version' => 'realty-pro/realty-pro.php',
361
  'pro_settings' => 'admin.php?page=realty_pro_settings'
362
  ),
363
  're-attacher/re-attacher.php' => array(
364
+ 'category' => array( 'utilities' ),
365
  'name' => 'Re-attacher',
366
+ 'description' => 'Attach, unattach and re-attach media files quickly to WordPress posts and pages.',
367
  'link' => 'http://bestwebsoft.com/products/re-attacher/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
368
  'settings' => 'admin.php?page=re-attacher.php'
369
  ),
370
  'relevant/related-posts-plugin.php' => array(
371
+ 'category' => array( 'content-and-media', 'recommended' ),
372
  'name' => 'Relevant - Related Posts',
373
+ 'description' => 'Add related posts to WordPress posts or widgets. Link your readers to relevant content.',
374
  'link' => 'http://bestwebsoft.com/products/related-posts/?k=73fb737037f7141e66415ec259f7e426&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
375
  'settings' => 'admin.php?page=related-posts-plugin.php'
376
  ),
377
  'sender/sender.php' => array(
378
+ 'category' => array( 'social', 'recommended' ),
379
  'name' => 'Sender',
380
+ 'description' => 'Send bulk email messages to WordPress users. Custom templates, advanced settings and detailed reports.',
381
  'link' => 'http://bestwebsoft.com/products/sender/?k=89c297d14ba85a8417a0f2fc05e089c7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
382
  'settings' => 'admin.php?page=sndr_settings',
383
  'pro_version' => 'sender-pro/sender-pro.php',
385
  'pro_settings' => 'admin.php?page=sndrpr_settings'
386
  ),
387
  'bws-smtp/bws-smtp.php' => array(
388
+ 'category' => array( 'utilities' ),
389
  'name' => 'SMTP',
390
+ 'description' => 'Configure SMTP server to receive email messages from WordPress to Gmail, Yahoo, Hotmail and other services.',
391
  'link' => 'http://bestwebsoft.com/products/smtp/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
392
  'settings' => 'admin.php?page=bwssmtp_settings'
393
  ),
394
  'social-buttons-pack/social-buttons-pack.php' => array(
395
+ 'category' => array( 'social', 'recommended' ),
396
  'name' => 'Social Buttons Pack',
397
+ 'description' => 'Add social media buttons and widgets to WordPress posts, pages and widgets. FB, Twitter, G+1, Pinterest, LinkedIn.',
398
  'link' => 'http://bestwebsoft.com/products/social-buttons-pack/?k=b6440fad9f54274429e536b0c61b42da&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
399
  'settings' => 'admin.php?page=social-buttons.php'
400
  ),
401
  'subscriber/subscriber.php' => array(
402
+ 'category' => array( 'social', 'recommended' ),
403
  'name' => 'Subscriber',
404
+ 'description' => 'Add email newsletter sign up form to WordPress posts, pages and widgets. Collect data and subscribe your users.',
405
  'link' => 'http://bestwebsoft.com/products/subscriber/?k=a4ecc1b7800bae7329fbe8b4b04e9c88&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
406
  'settings' => 'admin.php?page=sbscrbr_settings_page',
407
  'pro_version' => 'subscriber-pro/subscriber-pro.php',
409
  'pro_settings' => 'admin.php?page=sbscrbrpr_settings_page'
410
  ),
411
  'bws-testimonials/bws-testimonials.php' => array(
412
+ 'category' => array( 'content-and-media', 'recommended' ),
413
  'name' => 'Testimonials',
414
+ 'description' => 'Add testimonials and feedbacks from your customers to WordPress posts, pages and widgets.',
415
  'link' => 'http://bestwebsoft.com/products/testimonials/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
416
  'settings' => 'admin.php?page=testimonials.php'
417
  ),
418
  'timesheet/timesheet.php' => array(
419
+ 'category' => array( 'management' ),
420
  'name' => 'Timesheet',
421
+ 'description' => 'Best timesheet plugin for WordPress. Track employee time, streamline attendance and generate reports.',
422
  'link' => 'http://bestwebsoft.com/products/timesheet/?k=06a58bb78c17a43df01825925f05a5c1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
423
  'settings' => 'admin.php?page=timesheet_settings'
424
  ),
425
  'twitter-plugin/twitter.php' => array(
426
+ 'category' => array( 'social' ),
427
  'name' => 'Twitter',
428
+ 'description' => 'Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts, pages and widgets.',
429
  'link' => 'http://bestwebsoft.com/products/twitter/?k=f8cb514e25bd7ec4974d64435c5eb333&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
430
  'settings' => 'admin.php?page=twitter.php',
431
  'pro_version' => 'twitter-pro/twitter-pro.php',
433
  'pro_settings' => 'admin.php?page=twitter-pro.php'
434
  ),
435
  'updater/updater.php' => array(
436
+ 'category' => array( 'utilities', 'recommended' ),
437
  'name' => 'Updater',
438
+ 'description' => 'Automatically check and update WordPress website core with all installed plugins and themes to the latest versions.',
439
  'link' => 'http://bestwebsoft.com/products/updater/?k=66f3ecd4c1912009d395c4bb30f779d1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
440
  'settings' => 'admin.php?page=updater-options',
441
  'pro_version' => 'updater-pro/updater_pro.php',
443
  'pro_settings' => 'admin.php?page=updater-pro-options'
444
  ),
445
  'user-role/user-role.php' => array(
446
+ 'category' => array( 'utilities' ),
447
  'name' => 'User Role',
448
+ 'description' => 'Powerful user role management plugin for WordPress website. Create, edit, copy, and delete user roles.',
449
  'link' => 'http://bestwebsoft.com/products/user-role/?k=dfe2244835c6fbf601523964b3f34ccc&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
450
  'settings' => 'admin.php?page=user-role.php',
451
  'pro_version' => 'user-role-pro/user-role-pro.php',
453
  'pro_settings' => 'admin.php?page=user-role-pro.php'
454
  ),
455
  'visitors-online/visitors-online.php' => array(
456
+ 'category' => array( 'site-stats' ),
457
  'name' => 'Visitors Online',
458
+ 'description' => 'Display live count of online visitors who are currently browsing your WordPress website.',
459
  'link' => 'http://bestwebsoft.com/products/visitors-online/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
460
  'settings' => 'admin.php?page=visitors-online.php',
461
  'pro_version' => 'visitors-online-pro/visitors-online-pro.php',
463
  'pro_settings' => 'admin.php?page=visitors-online-pro.php'
464
  ),
465
  'zendesk-help-center/zendesk-help-center.php' => array(
466
+ 'category' => array( 'utilities' ),
467
  'name' => 'Zendesk Help Center',
468
+ 'description' => 'Backup and export Zendesk Help Center content automatically to your WordPress website database.',
469
  'link' => 'http://bestwebsoft.com/products/zendesk-help-center/?k=2a5fd2f4b2f4bde46f2ca44b8d15846d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
470
+ 'settings' => 'admin.php?page=zendesk_hc.php&action=settings',
471
  'pro_version' => 'zendesk-help-center-pro/zendesk-help-center-pro.php',
472
  'purchase' => 'http://bestwebsoft.com/products/zendesk-help-center/buy/?k=45199e4538b5befe4d9566868a61a3aa&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
473
+ 'pro_settings' => 'admin.php?page=zendesk_hc_pro.php&tab=settings'
474
  )
475
  );
476
 
477
+ $themes = array(
478
+ (object) array(
479
+ 'name' => 'Opening',
480
+ 'slug' => 'opening',
481
+ 'href' => 'http://bestwebsoft.com/products/opening-job-board-wordpress-theme/'
482
+ ),
483
  (object) array(
484
  'name' => 'Real Estate',
485
  'slug' => 'realestate',
486
  'href' => 'http://bestwebsoft.com/products/real-estate-creative-wordpress-theme/'
487
  ),
488
+ (object) array(
489
+ 'name' => 'Renty',
490
+ 'slug' => 'renty',
491
+ 'href' => 'http://bestwebsoft.com/products/renty-car-rental-booking-wordpress-theme/'
492
+ ),
493
  (object) array(
494
  'name' => 'Unity',
495
  'slug' => 'unity',
496
  'href' => 'http://bestwebsoft.com/products/unity-multipurpose-wordpress-theme/'
 
 
 
 
 
497
  )
498
  );
contact_form.php CHANGED
@@ -1,12 +1,12 @@
1
  <?php
2
  /*
3
  Plugin Name: Contact Form by BestWebSoft
4
- Plugin URI: http://bestwebsoft.com/products/
5
- Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
  Text Domain: contact-form-plugin
8
  Domain Path: /languages
9
- Version: 4.0.0
10
  Author URI: http://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
@@ -122,6 +122,8 @@ if ( ! function_exists( 'cntctfrm_settings' ) ) {
122
  global $cntctfrm_options, $cntctfrm_option_defaults, $cntctfrm_plugin_info;
123
  $cntctfrm_db_version = "1.0";
124
 
 
 
125
  if ( ! $cntctfrm_plugin_info )
126
  $cntctfrm_plugin_info = get_plugin_data( __FILE__ );
127
 
@@ -162,13 +164,13 @@ if ( ! function_exists( 'cntctfrm_settings' ) ) {
162
  'cntctfrm_display_user_agent' => 1,
163
  'cntctfrm_language' => array(),
164
  'cntctfrm_change_label' => 0,
165
- 'cntctfrm_name_label' => array( 'default' => __( "Name:", 'contact-form-plugin' ) ),
166
- 'cntctfrm_address_label' => array( 'default' => __( "Address:", 'contact-form-plugin' ) ),
167
- 'cntctfrm_email_label' => array( 'default' => __( "Email Address:", 'contact-form-plugin' ) ),
168
- 'cntctfrm_phone_label' => array( 'default' => __( "Phone number:", 'contact-form-plugin' ) ),
169
- 'cntctfrm_subject_label' => array( 'default' => __( "Subject:", 'contact-form-plugin' ) ),
170
- 'cntctfrm_message_label' => array( 'default' => __( "Message:", 'contact-form-plugin' ) ),
171
- 'cntctfrm_attachment_label' => array( 'default' => __( "Attachment:", 'contact-form-plugin' ) ),
172
  'cntctfrm_attachment_tooltip' => array( 'default' => __( "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT.", 'contact-form-plugin' ) ),
173
  'cntctfrm_send_copy_label' => array( 'default' => __( "Send me a copy", 'contact-form-plugin' ) ),
174
  'cntctfrm_submit_label' => array( 'default' => __( "Submit", 'contact-form-plugin' ) ),
@@ -212,18 +214,20 @@ if ( ! function_exists( 'cntctfrm_settings' ) ) {
212
  'suggest_feature_banner' => 1
213
  );
214
 
 
 
 
 
 
 
 
 
215
  /* Install the option defaults */
216
  if ( ! get_option( 'cntctfrm_options' ) )
217
  add_option( 'cntctfrm_options', $cntctfrm_option_defaults );
218
 
219
- /* Check contact-form-multi plugin */
220
- if ( is_plugin_active( 'contact-form-multi/contact-form-multi.php' ) )
221
- $contact_form_multi_active = true;
222
- if ( is_plugin_active( 'contact-form-multi-pro/contact-form-multi-pro.php' ) )
223
- $contact_form_multi_pro_active = true;
224
-
225
  /* Get options from the database for default options */
226
- if ( isset( $contact_form_multi_active ) || isset( $contact_form_multi_pro_active ) ) {
227
  if ( ! get_option( 'cntctfrmmlt_options' ) )
228
  add_option( 'cntctfrmmlt_options', $cntctfrm_option_defaults );
229
 
@@ -295,12 +299,13 @@ if ( ! function_exists( 'cntctfrm_settings' ) ) {
295
  if ( get_option( 'cntctfrmmlt_options_' . $id ) ) {
296
  $cntctfrm_options = get_option( 'cntctfrmmlt_options_'. $id );
297
  } else {
298
- if ( isset( $contact_form_multi_pro_active ) )
299
- $cntctfrmmlt_options_main = get_option( 'cntctfrmmltpr_options_main' );
300
- elseif ( isset( $contact_form_multi_active ) )
301
- $cntctfrmmlt_options_main = get_option( 'cntctfrmmlt_options_main' );
 
302
 
303
- if ( 1 == $id && 1 == count( $cntctfrmmlt_options_main['name_id_form'] ) ) {
304
  add_option( 'cntctfrmmlt_options_1' , get_option( 'cntctfrm_options' ) );
305
  $cntctfrm_options = get_option( 'cntctfrmmlt_options_1' );
306
  } else {
@@ -403,7 +408,7 @@ if ( ! function_exists( 'cntctfrm_settings' ) ) {
403
  /* show pro features */
404
  $cntctfrm_options['hide_premium_options'] = array();
405
 
406
- if ( isset( $contact_form_multi_active ) || isset( $contact_form_multi_pro_active ) ) {
407
  if ( isset( $_SESSION['cntctfrmmlt_id_form'] ) || $form_id ) {
408
  $id = ( $form_id ) ? $form_id : $_SESSION['cntctfrmmlt_id_form'];
409
  if ( get_option( 'cntctfrmmlt_options_' . $id ) ) {
@@ -423,7 +428,7 @@ if ( ! function_exists( 'cntctfrm_settings' ) ) {
423
  if ( ! isset( $cntctfrm_options['plugin_db_version'] ) || $cntctfrm_options['plugin_db_version'] != $cntctfrm_db_version ) {
424
  cntctfrm_db_create();
425
  $cntctfrm_options['plugin_db_version'] = $cntctfrm_db_version;
426
- if ( isset( $contact_form_multi_active ) || isset( $contact_form_multi_pro_active ) ) {
427
  if ( isset( $_SESSION['cntctfrmmlt_id_form'] ) || $form_id ) {
428
  $id = ( $form_id ) ? $form_id : $_SESSION['cntctfrmmlt_id_form'];
429
  if ( get_option( 'cntctfrmmlt_options_' . $id ) ) {
@@ -496,59 +501,219 @@ if ( ! function_exists ( 'cntctfrm_activation' ) ) {
496
  }
497
  }
498
 
499
- /* Add settings page in admin area */
 
 
 
 
 
 
500
 
501
- if ( ! function_exists( 'cntctfrm_get_ordered_fields' ) ) {
502
- function cntctfrm_get_ordered_fields() {
503
- global $cntctfrm_options;
504
 
505
- if ( ! isset( $cntctfrm_options['cntctfrm_order_fields'] ) ) {
506
- cntctfrm_settings();
507
- }
508
 
509
  /* Get Captcha options */
510
- if ( get_option( 'cptch_options' ) )
511
  $cptch_options = get_option( 'cptch_options' );
512
- if ( get_option( 'cptchpls_options' ) )
513
- $cptchpls_options = get_option( 'cptchpls_options' );
514
- if ( get_option( 'cptchpr_options' ) )
515
- $cptchpr_options = get_option( 'cptchpr_options' );
516
- if ( get_option( 'gglcptch_options' ) )
517
- $gglcptch_options = get_option( 'gglcptch_options' );
518
- if ( get_option( 'gglcptchpr_options' ) )
519
- $gglcptchpr_options = get_option( 'gglcptchpr_options' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
520
  /* Get Subscriber options */
521
  if ( is_multisite() ) {
522
- if ( get_site_option( 'sbscrbr_options' ) )
523
  $sbscrbr_options = get_site_option( 'sbscrbr_options' );
524
- if ( get_site_option( 'sbscrbrpr_options' ) )
525
- $sbscrbrpr_options = get_site_option( 'sbscrbrpr_options' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
526
  } else {
527
- if ( get_option( 'sbscrbr_options' ) )
528
  $sbscrbr_options = get_option( 'sbscrbr_options' );
529
- if ( get_option( 'sbscrbrpr_options' ) )
530
- $sbscrbrpr_options = get_option( 'sbscrbrpr_options' );
531
- }
532
 
 
 
 
 
 
 
 
 
 
 
 
533
 
534
- require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
535
 
536
- $cntctfrm_display_captcha = false;
537
- if ( ( is_plugin_active( 'captcha/captcha.php' ) && ( isset( $cptch_options ) && 1 == $cptch_options['cptch_contact_form'] ) ) ||
538
- ( is_plugin_active( 'captcha-plus/captcha-plus.php' ) && ( isset( $cptchpls_options ) && 1 == $cptchpls_options['cptchpls_contact_form'] ) ) ||
539
- ( is_plugin_active( 'captcha-pro/captcha_pro.php' ) && ( isset( $cptchpr_options ) && 1 == $cptchpr_options['cptchpr_contact_form'] ) ) ||
540
- ( is_plugin_active( 'google-captcha/google-captcha.php' ) && ( isset( $gglcptch_options ) && 1 == $gglcptch_options['contact_form'] ) ) ||
541
- ( is_plugin_active( 'google-captcha-pro/google-captcha-pro.php' ) && ( isset( $gglcptchpr_options ) && 1 == $gglcptchpr_options['contact_form'] ) ) ) {
542
- $cntctfrm_display_captcha = true;
 
 
 
 
 
 
 
543
  }
544
 
545
- $cntctfrm_display_subscriber = false;
546
- if ( ( is_plugin_active( 'subscriber/subscriber.php' ) && ( isset( $sbscrbr_options ) && 1 == $sbscrbr_options['contact_form'] ) ) ||
547
- ( is_plugin_active( 'subscriber-pro/subscriber-pro.php' ) && ( isset( $sbscrbrpr_options ) && 1 == $sbscrbrpr_options['contact_form'] ) ) ) {
548
- $cntctfrm_display_subscriber = true;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
549
  }
550
 
551
- $cntctfrm_default_order_fields = array(
552
  'cntctfrm_contact_name' => ( 1 == $cntctfrm_options['cntctfrm_display_name_field'] ) ? true : false,
553
  'cntctfrm_contact_address' => ( 1 == $cntctfrm_options['cntctfrm_display_address_field'] ) ? true : false,
554
  'cntctfrm_contact_email' => true,
@@ -557,21 +722,21 @@ if ( ! function_exists( 'cntctfrm_get_ordered_fields' ) ) {
557
  'cntctfrm_contact_message' => true,
558
  'cntctfrm_contact_attachment' => ( 1 == $cntctfrm_options['cntctfrm_attachment'] ) ? true : false,
559
  'cntctfrm_contact_send_copy' => ( 1 == $cntctfrm_options['cntctfrm_send_copy'] ) ? true : false,
560
- 'cntctfrm_subscribe' => $cntctfrm_display_subscriber,
561
- 'cntctfrm_captcha' => $cntctfrm_display_captcha
562
  );
563
 
564
- $cntctfrm_display_fields = array();
565
- foreach ( $cntctfrm_default_order_fields as $field => $value ) {
566
  if ( $value == true ) {
567
- array_push( $cntctfrm_display_fields , $field );
568
  }
569
  }
570
 
571
- $cntctfrm_ordered_fields = array_merge( $cntctfrm_options['cntctfrm_order_fields']['first_column'], $cntctfrm_options['cntctfrm_order_fields']['second_column'] );
572
- $cntctfrm_diff_fields = array_diff( $cntctfrm_display_fields, $cntctfrm_ordered_fields );
573
 
574
- foreach ( $cntctfrm_diff_fields as $field ) {
575
  array_push( $cntctfrm_options['cntctfrm_order_fields'][ 'first_column' ], $field );
576
  }
577
 
@@ -582,106 +747,77 @@ if ( ! function_exists( 'cntctfrm_get_ordered_fields' ) ) {
582
  /* Add settings page in admin area */
583
  if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
584
  function cntctfrm_settings_page() {
585
- global $cntctfrm_options, $wpdb, $cntctfrm_option_defaults, $wp_version, $cntctfrm_plugin_info, $cntctfrm_lang_codes;
 
 
 
 
 
 
 
586
  $error = $message = $notice = '';
587
  $plugin_basename = plugin_basename( __FILE__ );
588
 
589
- if ( ! function_exists( 'get_plugins' ) || ! function_exists( 'is_plugin_active_for_network' ) )
590
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
591
 
592
  if ( ! isset( $_GET['action'] ) || 'additional' == $_GET['action'] || 'appearance' == $_GET['action'] ) {
593
  $all_plugins = get_plugins();
594
  }
595
 
596
- /* Check contact-form-multi plugin */
597
- if ( is_plugin_active( 'contact-form-multi/contact-form-multi.php' ) )
598
- $contact_form_multi_active = true;
599
- if ( is_plugin_active( 'contact-form-multi-pro/contact-form-multi-pro.php' ) )
600
- $contact_form_multi_pro_active = true;
601
-
602
- /* Get Captcha options */
603
- if ( get_option( 'cptch_options' ) )
604
- $cptch_options = get_option( 'cptch_options' );
605
- if ( get_option( 'cptchpls_options' ) )
606
- $cptchpls_options = get_option( 'cptchpls_options' );
607
- if ( get_option( 'cptchpr_options' ) )
608
- $cptchpr_options = get_option( 'cptchpr_options' );
609
- if ( get_option( 'gglcptch_options' ) )
610
- $gglcptch_options = get_option( 'gglcptch_options' );
611
- if ( get_option( 'gglcptchpr_options' ) )
612
- $gglcptchpr_options = get_option( 'gglcptchpr_options' );
613
- /* Get Contact Form to DB options */
614
- if ( get_option( 'cntctfrmtdb_options' ) )
615
- $cntctfrmtdb_options = get_option( 'cntctfrmtdb_options' );
616
- if ( get_option( 'cntctfrmtdbpr_options' ) )
617
- $cntctfrmtdbpr_options = get_option( 'cntctfrmtdbpr_options' );
618
- /* Get Subscriber options */
619
- if ( is_multisite() ) {
620
- if ( get_site_option( 'sbscrbr_options' ) )
621
- $sbscrbr_options = get_site_option( 'sbscrbr_options' );
622
- if ( get_site_option( 'sbscrbrpr_options' ) )
623
- $sbscrbrpr_options = get_site_option( 'sbscrbrpr_options' );
624
- } else {
625
- if ( get_option( 'sbscrbr_options' ) )
626
- $sbscrbr_options = get_option( 'sbscrbr_options' );
627
- if ( get_option( 'sbscrbrpr_options' ) )
628
- $sbscrbrpr_options = get_option( 'sbscrbrpr_options' );
629
- }
630
-
631
  $userslogin = get_users( 'blog_id=' . $GLOBALS['blog_id'] . '&role=administrator' );
632
 
633
  if ( isset( $_POST['cntctfrm_form_appearance_submit'] ) && check_admin_referer( $plugin_basename, 'cntctfrm_nonce_name' ) ) {
634
 
635
- $cntctfrm_options_submit = array();
636
 
637
  if ( isset( $_POST['bws_hide_premium_options'] ) ) {
638
- $hide_result = bws_hide_premium_options( $cntctfrm_options_submit );
639
- $cntctfrm_options_submit = $hide_result['options'];
640
- if ( isset( $contact_form_multi_active ) || isset( $contact_form_multi_pro_active ) ) {
641
- $cntctfrm_options = array_merge( $cntctfrm_options, $cntctfrm_options_submit );
642
  update_option( 'cntctfrm_options', $cntctfrm_options );
643
  }
644
  }
645
 
646
- $cntctfrm_layout = ( isset( $_POST['cntctfrm_layout'] ) ) ? (int) $_POST['cntctfrm_layout'] : 1;
647
 
648
- $cntctfrm_submit_position = ( isset( $_POST['cntctfrm_submit_position'] ) ) ? stripslashes( esc_html( $_POST['cntctfrm_submit_position'] ) ) : 'left';
649
 
650
- $cntctfrm_layout_first_column_string = stripslashes( esc_html( $_POST['cntctfrm_layout_first_column'] ) );
651
- $cntctfrm_layout_first_column = explode( ',', $cntctfrm_layout_first_column_string );
652
- $cntctfrm_layout_first_column = array_diff( $cntctfrm_layout_first_column, array('') );
653
 
654
- $cntctfrm_layout_second_column_string = stripslashes( esc_html( $_POST['cntctfrm_layout_second_column'] ) );
655
- $cntctfrm_layout_second_column = explode( ',', $cntctfrm_layout_second_column_string );
656
- $cntctfrm_layout_second_column = array_diff( $cntctfrm_layout_second_column, array('') );
657
 
658
- if ( $cntctfrm_layout === 1 && ! empty( $cntctfrm_layout_second_column ) ) {
659
- $cntctfrm_layout_first_column = array_merge( $cntctfrm_layout_first_column, $cntctfrm_layout_second_column );
660
- $cntctfrm_layout_second_column = array();
661
  }
662
 
663
- $cntctfrm_options_submit['cntctfrm_layout'] = $cntctfrm_layout;
664
- $cntctfrm_options_submit['cntctfrm_submit_position'] = $cntctfrm_submit_position;
665
- $cntctfrm_options_submit['cntctfrm_order_fields']['first_column'] = $cntctfrm_layout_first_column;
666
- $cntctfrm_options_submit['cntctfrm_order_fields']['second_column'] = $cntctfrm_layout_second_column;
667
-
668
- $cntctfrm_options = array_merge( $cntctfrm_options, $cntctfrm_options_submit );
669
 
670
- if ( isset( $contact_form_multi_active ) ) {
671
 
672
- $cntctfrmmlt_options_main = get_option( 'cntctfrmmlt_options_main' );
 
673
 
674
- if ( $cntctfrmmlt_options_main['id_form'] !== $_SESSION['cntctfrmmlt_id_form'] )
675
- add_option( 'cntctfrmmlt_options_' . $cntctfrmmlt_options_main['id_form'], $cntctfrm_options );
676
- else if ( $cntctfrmmlt_options_main['id_form'] == $_SESSION['cntctfrmmlt_id_form'] )
677
- update_option( 'cntctfrmmlt_options_' . $cntctfrmmlt_options_main['id_form'], $cntctfrm_options );
678
- } elseif ( isset( $contact_form_multi_pro_active ) ) {
679
- $cntctfrmmltpr_options_main = get_option( 'cntctfrmmltpr_options_main' );
680
 
681
- if ( $cntctfrmmltpr_options_main['id_form'] !== $_SESSION['cntctfrmmlt_id_form'] )
682
- add_option( 'cntctfrmmlt_options_' . $cntctfrmmltpr_options_main['id_form'], $cntctfrm_options );
683
- else if ( $cntctfrmmltpr_options_main['id_form'] == $_SESSION['cntctfrmmlt_id_form'] )
684
- update_option( 'cntctfrmmlt_options_' . $cntctfrmmltpr_options_main['id_form'], $cntctfrm_options );
685
  } else {
686
  update_option( 'cntctfrm_options', $cntctfrm_options );
687
  }
@@ -691,276 +827,221 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
691
  /* Save data for settings page */
692
  if ( isset( $_POST['cntctfrm_form_submit'] ) && check_admin_referer( $plugin_basename, 'cntctfrm_nonce_name' ) ) {
693
 
694
- $cntctfrm_options_submit = array();
695
 
696
  if ( isset( $_POST['bws_hide_premium_options'] ) ) {
697
- $hide_result = bws_hide_premium_options( $cntctfrm_options_submit );
698
- $cntctfrm_options_submit = $hide_result['options'];
699
- if ( isset( $contact_form_multi_active ) || isset( $contact_form_multi_pro_active ) ) {
700
- $cntctfrm_options = array_merge( $cntctfrm_options, $cntctfrm_options_submit );
701
  update_option( 'cntctfrm_options', $cntctfrm_options );
702
  }
703
  }
704
 
705
- $cntctfrm_options_submit['cntctfrm_user_email'] = $_POST['cntctfrm_user_email'];
706
- $cntctfrm_options_submit['cntctfrm_custom_email'] = trim( stripslashes( esc_html( $_POST['cntctfrm_custom_email'] ) ), " ," );
707
- $cntctfrm_options_submit['cntctfrm_select_email'] = $_POST['cntctfrm_select_email'];
708
- $cntctfrm_options_submit['cntctfrm_from_email'] = $_POST['cntctfrm_from_email'];
709
- $cntctfrm_options_submit['cntctfrm_custom_from_email'] = stripslashes( esc_html( $_POST['cntctfrm_custom_from_email'] ) );
710
-
711
- $cntctfrm_options_submit['cntctfrm_mail_method'] = $_POST['cntctfrm_mail_method'];
712
- $cntctfrm_options_submit['cntctfrm_from_field'] = stripslashes( esc_html( $_POST['cntctfrm_from_field'] ) );
713
- $cntctfrm_options_submit['cntctfrm_select_from_field'] = $_POST['cntctfrm_select_from_field'];
714
- $cntctfrm_options_submit['cntctfrm_display_name_field'] = isset( $_POST['cntctfrm_display_name_field']) ? 1 : 0;
715
- $cntctfrm_options_submit['cntctfrm_display_address_field'] = isset( $_POST['cntctfrm_display_address_field']) ? 1 : 0;
716
- $cntctfrm_options_submit['cntctfrm_display_phone_field'] = isset( $_POST['cntctfrm_display_phone_field']) ? 1 : 0;
717
- $cntctfrm_options_submit['cntctfrm_attachment'] = isset( $_POST['cntctfrm_attachment']) ? $_POST['cntctfrm_attachment'] : 0;
718
- $cntctfrm_options_submit['cntctfrm_attachment_explanations'] = isset( $_POST['cntctfrm_attachment_explanations']) ? $_POST['cntctfrm_attachment_explanations'] : 0;
719
- $cntctfrm_options_submit['cntctfrm_send_copy'] = isset( $_POST['cntctfrm_send_copy']) ? $_POST['cntctfrm_send_copy'] : 0;
720
-
721
- $cntctfrm_options_submit['cntctfrm_delete_attached_file'] = isset( $_POST['cntctfrm_delete_attached_file']) ? $_POST['cntctfrm_delete_attached_file'] : 0;
722
-
723
- if ( isset( $_POST['cntctfrm_display_captcha'] ) ) {
724
- if ( get_option( 'cptch_options' ) ) {
725
- $cptch_options['cptch_contact_form'] = 1;
726
- update_option( 'cptch_options', $cptch_options );
727
- }
728
- if ( get_option( 'cptchpls_options' ) ) {
729
- $cptchpls_options['cptchpls_contact_form'] = 1;
730
- update_option( 'cptchpls_options', $cptchpls_options );
731
- }
732
- if ( get_option( 'cptchpr_options' ) ) {
733
- $cptchpr_options['cptchpr_contact_form'] = 1;
734
- update_option( 'cptchpr_options', $cptchpr_options );
735
- }
736
  } else {
737
- if ( get_option( 'cptch_options' ) ) {
738
- $cptch_options['cptch_contact_form'] = 0;
739
- update_option( 'cptch_options', $cptch_options );
740
- }
741
- if ( get_option( 'cptchpls_options' ) ) {
742
- $cptchpls_options['cptchpls_contact_form'] = 0;
743
- update_option( 'cptchpls_options', $cptchpls_options );
744
- }
745
- if ( get_option( 'cptchpr_options' ) ) {
746
- $cptchpr_options['cptchpr_contact_form'] = 0;
747
- update_option( 'cptchpr_options', $cptchpr_options );
748
  }
749
- }
750
 
751
- if ( isset( $_POST['cntctfrm_save_email_to_db'] ) ) {
752
- if ( get_option( 'cntctfrmtdb_options' ) ) {
753
- $cntctfrmtdb_options['cntctfrmtdb_save_messages_to_db'] = 1;
754
- update_option( 'cntctfrmtdb_options', $cntctfrmtdb_options );
755
- }
756
- if ( get_option( 'cntctfrmtdbpr_options' ) ) {
757
- $cntctfrmtdbpr_options['save_messages_to_db'] = 1;
758
- update_option( 'cntctfrmtdbpr_options', $cntctfrmtdbpr_options );
759
  }
760
- } else {
761
- if ( get_option( 'cntctfrmtdb_options' ) ) {
762
- $cntctfrmtdb_options['cntctfrmtdb_save_messages_to_db'] = 0;
763
- update_option( 'cntctfrmtdb_options', $cntctfrmtdb_options );
764
- }
765
- if ( get_option( 'cntctfrmtdbpr_options' ) ) {
766
- $cntctfrmtdbpr_options['save_messages_to_db'] = 0;
767
- update_option( 'cntctfrmtdbpr_options', $cntctfrmtdbpr_options );
768
- }
769
- }
770
 
771
- if ( isset( $_POST['cntctfrm_display_subscriber'] ) ) {
772
  if ( is_multisite() ) {
773
- if ( get_site_option( 'sbscrbr_options' ) ) {
774
- $sbscrbr_options['contact_form'] = 1;
775
- update_site_option( 'sbscrbr_options', $sbscrbr_options );
776
- }
777
- if ( get_site_option( 'sbscrbrpr_options' ) ) {
778
- $sbscrbrpr_options['contact_form'] = 1;
779
- update_site_option( 'sbscrbrpr_options', $sbscrbrpr_options );
780
  }
781
  } else {
782
- if ( get_option( 'sbscrbr_options' ) ) {
783
- $sbscrbr_options['contact_form'] = 1;
784
- update_option( 'sbscrbr_options', $sbscrbr_options );
785
- }
786
- if ( get_option( 'sbscrbrpr_options' ) ) {
787
- $sbscrbrpr_options['contact_form'] = 1;
788
- update_option( 'sbscrbrpr_options', $sbscrbrpr_options );
789
  }
790
  }
791
- } else {
792
- if ( is_multisite() ) {
793
- if ( get_site_option( 'sbscrbr_options' ) ) {
794
- $sbscrbr_options['contact_form'] = 0;
795
- update_site_option( 'sbscrbr_options', $sbscrbr_options );
796
- }
797
- if ( get_site_option( 'sbscrbrpr_options' ) ) {
798
- $sbscrbrpr_options['contact_form'] = 0;
799
- update_site_option( 'sbscrbrpr_options', $sbscrbrpr_options );
800
- }
801
- } else {
802
- if ( get_option( 'sbscrbr_options' ) ) {
803
- $sbscrbr_options['contact_form'] = 0;
804
- update_option( 'sbscrbr_options', $sbscrbr_options );
805
- }
806
- if ( get_option( 'sbscrbrpr_options' ) ) {
807
- $sbscrbrpr_options['contact_form'] = 0;
808
- update_option( 'sbscrbrpr_options', $sbscrbrpr_options );
809
- }
810
  }
811
  }
812
 
813
- if ( 0 == $cntctfrm_options_submit['cntctfrm_display_name_field'] ) {
814
- $cntctfrm_options_submit['cntctfrm_required_name_field'] = 0;
815
  } else {
816
- $cntctfrm_options_submit['cntctfrm_required_name_field'] = isset( $_POST['cntctfrm_required_name_field']) ? 1 : 0;
817
  }
818
- if ( 0 == $cntctfrm_options_submit['cntctfrm_display_address_field'] ) {
819
- $cntctfrm_options_submit['cntctfrm_required_address_field'] = 0;
820
  } else {
821
- $cntctfrm_options_submit['cntctfrm_required_address_field'] = isset( $_POST['cntctfrm_required_address_field']) ? 1 : 0;
822
  }
823
- $cntctfrm_options_submit['cntctfrm_required_email_field'] = isset( $_POST['cntctfrm_required_email_field']) ? 1 : 0;
824
- if ( 0 == $cntctfrm_options_submit['cntctfrm_display_phone_field'] ) {
825
- $cntctfrm_options_submit['cntctfrm_required_phone_field'] = 0;
826
  } else {
827
- $cntctfrm_options_submit['cntctfrm_required_phone_field'] = isset( $_POST['cntctfrm_required_phone_field']) ? 1 : 0;
828
  }
829
- $cntctfrm_options_submit['cntctfrm_required_subject_field'] = isset( $_POST['cntctfrm_required_subject_field']) ? 1 : 0;
830
- $cntctfrm_options_submit['cntctfrm_required_message_field'] = isset( $_POST['cntctfrm_required_message_field']) ? 1 : 0;
831
-
832
- $cntctfrm_options_submit['cntctfrm_required_symbol'] = isset( $_POST['cntctfrm_required_symbol']) ? stripslashes( esc_html( $_POST['cntctfrm_required_symbol'] ) ) : '*';
833
- $cntctfrm_options_submit['cntctfrm_html_email'] = isset( $_POST['cntctfrm_html_email']) ? 1 : 0;
834
- $cntctfrm_options_submit['cntctfrm_display_add_info'] = isset( $_POST['cntctfrm_display_add_info']) ? 1 : 0;
835
-
836
- $cntctfrm_options_submit['cntctfrm_display_sent_from'] = isset( $_POST['cntctfrm_display_sent_from'] ) ? 1 : 0;
837
- $cntctfrm_options_submit['cntctfrm_display_date_time'] = isset( $_POST['cntctfrm_display_date_time'] ) ? 1 : 0;
838
- $cntctfrm_options_submit['cntctfrm_display_coming_from'] = isset( $_POST['cntctfrm_display_coming_from'] ) ? 1 : 0;
839
- $cntctfrm_options_submit['cntctfrm_display_user_agent'] = isset( $_POST['cntctfrm_display_user_agent'] ) ? 1 : 0;
840
-
841
- if ( 0 == $cntctfrm_options_submit['cntctfrm_display_sent_from'] && 0 == $cntctfrm_options_submit['cntctfrm_display_date_time'] && 0 == $cntctfrm_options_submit['cntctfrm_display_coming_from'] && 0 == $cntctfrm_options_submit['cntctfrm_display_user_agent'] )
842
- $cntctfrm_options_submit['cntctfrm_display_add_info'] = 0;
843
-
844
- if ( 0 == $cntctfrm_options_submit['cntctfrm_display_add_info'] ) {
845
- $cntctfrm_options_submit['cntctfrm_display_sent_from'] = 1;
846
- $cntctfrm_options_submit['cntctfrm_display_date_time'] = 1;
847
- $cntctfrm_options_submit['cntctfrm_display_coming_from'] = 1;
848
- $cntctfrm_options_submit['cntctfrm_display_user_agent'] = 1;
849
  }
850
 
851
- $cntctfrm_options_submit['cntctfrm_change_label'] = isset( $_POST['cntctfrm_change_label']) ? 1 : 0;
852
- $cntctfrm_options_submit['cntctfrm_change_label_in_email'] = isset( $_POST['cntctfrm_change_label_in_email']) ? 1 : 0;
853
 
854
- if ( 1 == $cntctfrm_options_submit['cntctfrm_change_label'] ) {
855
  foreach ( $_POST['cntctfrm_name_label'] as $key => $val ) {
856
- $cntctfrm_options_submit['cntctfrm_name_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_name_label'][ $key ] ) );
857
- $cntctfrm_options_submit['cntctfrm_address_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_address_label'][ $key ] ) );
858
- $cntctfrm_options_submit['cntctfrm_email_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_email_label'][ $key ] ) );
859
- $cntctfrm_options_submit['cntctfrm_phone_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_phone_label'][ $key ] ) );
860
- $cntctfrm_options_submit['cntctfrm_subject_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_subject_label'][ $key ] ) );
861
- $cntctfrm_options_submit['cntctfrm_message_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_message_label'][ $key ] ) );
862
- $cntctfrm_options_submit['cntctfrm_attachment_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_label'][ $key ] ) );
863
- $cntctfrm_options_submit['cntctfrm_attachment_tooltip'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_tooltip'][ $key ] ) );
864
- $cntctfrm_options_submit['cntctfrm_send_copy_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_send_copy_label'][ $key ] ) );
865
- $cntctfrm_options_submit['cntctfrm_thank_text'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_thank_text'][ $key ] ) );
866
- $cntctfrm_options_submit['cntctfrm_submit_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_submit_label'][ $key ] ) );
867
- $cntctfrm_options_submit['cntctfrm_name_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_name_error'][ $key ] ) );
868
- $cntctfrm_options_submit['cntctfrm_address_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_address_error'][ $key ] ) );
869
- $cntctfrm_options_submit['cntctfrm_email_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_email_error'][ $key ] ) );
870
- $cntctfrm_options_submit['cntctfrm_phone_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_phone_error'][ $key ] ) );
871
- $cntctfrm_options_submit['cntctfrm_subject_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_subject_error'][ $key ] ) );
872
- $cntctfrm_options_submit['cntctfrm_message_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_message_error'][ $key ] ) );
873
- $cntctfrm_options_submit['cntctfrm_attachment_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_error'][ $key ] ) );
874
- $cntctfrm_options_submit['cntctfrm_attachment_upload_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_upload_error'][ $key ] ) );
875
- $cntctfrm_options_submit['cntctfrm_attachment_move_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_move_error'][ $key ] ) );
876
- $cntctfrm_options_submit['cntctfrm_attachment_size_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_size_error'][ $key ] ) );
877
- $cntctfrm_options_submit['cntctfrm_captcha_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_captcha_error'][ $key ] ) );
878
- $cntctfrm_options_submit['cntctfrm_form_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_form_error'][ $key ] ) );
879
  }
880
  } else {
881
  if ( empty( $cntctfrm_options['cntctfrm_language'] ) ) {
882
- $cntctfrm_options_submit['cntctfrm_name_label'] = $cntctfrm_option_defaults['cntctfrm_name_label'];
883
- $cntctfrm_options_submit['cntctfrm_address_label'] = $cntctfrm_option_defaults['cntctfrm_address_label'];
884
- $cntctfrm_options_submit['cntctfrm_email_label'] = $cntctfrm_option_defaults['cntctfrm_email_label'];
885
- $cntctfrm_options_submit['cntctfrm_phone_label'] = $cntctfrm_option_defaults['cntctfrm_phone_label'];
886
- $cntctfrm_options_submit['cntctfrm_subject_label'] = $cntctfrm_option_defaults['cntctfrm_subject_label'];
887
- $cntctfrm_options_submit['cntctfrm_message_label'] = $cntctfrm_option_defaults['cntctfrm_message_label'];
888
- $cntctfrm_options_submit['cntctfrm_attachment_label'] = $cntctfrm_option_defaults['cntctfrm_attachment_label'];
889
- $cntctfrm_options_submit['cntctfrm_attachment_tooltip'] = $cntctfrm_option_defaults['cntctfrm_attachment_tooltip'];
890
- $cntctfrm_options_submit['cntctfrm_send_copy_label'] = $cntctfrm_option_defaults['cntctfrm_send_copy_label'];
891
- $cntctfrm_options_submit['cntctfrm_thank_text'] = $_POST['cntctfrm_thank_text'];
892
- $cntctfrm_options_submit['cntctfrm_submit_label'] = $cntctfrm_option_defaults['cntctfrm_submit_label'];
893
- $cntctfrm_options_submit['cntctfrm_name_error'] = $cntctfrm_option_defaults['cntctfrm_name_error'];
894
- $cntctfrm_options_submit['cntctfrm_address_error'] = $cntctfrm_option_defaults['cntctfrm_address_error'];
895
- $cntctfrm_options_submit['cntctfrm_email_error'] = $cntctfrm_option_defaults['cntctfrm_email_error'];
896
- $cntctfrm_options_submit['cntctfrm_phone_error'] = $cntctfrm_option_defaults['cntctfrm_phone_error'];
897
- $cntctfrm_options_submit['cntctfrm_subject_error'] = $cntctfrm_option_defaults['cntctfrm_subject_error'];
898
- $cntctfrm_options_submit['cntctfrm_message_error'] = $cntctfrm_option_defaults['cntctfrm_message_error'];
899
- $cntctfrm_options_submit['cntctfrm_attachment_error'] = $cntctfrm_option_defaults['cntctfrm_attachment_error'];
900
- $cntctfrm_options_submit['cntctfrm_attachment_upload_error'] = $cntctfrm_option_defaults['cntctfrm_attachment_upload_error'];
901
- $cntctfrm_options_submit['cntctfrm_attachment_move_error'] = $cntctfrm_option_defaults['cntctfrm_attachment_move_error'];
902
- $cntctfrm_options_submit['cntctfrm_attachment_size_error'] = $cntctfrm_option_defaults['cntctfrm_attachment_size_error'];
903
- $cntctfrm_options_submit['cntctfrm_captcha_error'] = $cntctfrm_option_defaults['cntctfrm_captcha_error'];
904
- $cntctfrm_options_submit['cntctfrm_form_error'] = $cntctfrm_option_defaults['cntctfrm_form_error'];
905
- foreach ( $cntctfrm_options_submit['cntctfrm_thank_text'] as $key => $val ) {
906
- $cntctfrm_options_submit['cntctfrm_thank_text'][ $key ] = stripcslashes( htmlspecialchars( $val ) );
907
  }
908
  } else {
909
- $cntctfrm_options_submit['cntctfrm_name_label']['default'] = $cntctfrm_option_defaults['cntctfrm_name_label']['default'];
910
- $cntctfrm_options_submit['cntctfrm_address_label']['default'] = $cntctfrm_option_defaults['cntctfrm_address_label']['default'];
911
- $cntctfrm_options_submit['cntctfrm_email_label']['default'] = $cntctfrm_option_defaults['cntctfrm_email_label']['default'];
912
- $cntctfrm_options_submit['cntctfrm_phone_label']['default'] = $cntctfrm_option_defaults['cntctfrm_phone_label']['default'];
913
- $cntctfrm_options_submit['cntctfrm_subject_label']['default'] = $cntctfrm_option_defaults['cntctfrm_subject_label']['default'];
914
- $cntctfrm_options_submit['cntctfrm_message_label']['default'] = $cntctfrm_option_defaults['cntctfrm_message_label']['default'];
915
- $cntctfrm_options_submit['cntctfrm_attachment_label']['default'] = $cntctfrm_option_defaults['cntctfrm_attachment_label']['default'];
916
- $cntctfrm_options_submit['cntctfrm_attachment_tooltip']['default'] = $cntctfrm_option_defaults['cntctfrm_attachment_tooltip']['default'];
917
- $cntctfrm_options_submit['cntctfrm_send_copy_label']['default'] = $cntctfrm_option_defaults['cntctfrm_send_copy_label']['default'];
918
- $cntctfrm_options_submit['cntctfrm_submit_label']['default'] = $cntctfrm_option_defaults['cntctfrm_submit_label']['default'];
919
- $cntctfrm_options_submit['cntctfrm_name_error']['default'] = $cntctfrm_option_defaults['cntctfrm_name_error']['default'];
920
- $cntctfrm_options_submit['cntctfrm_address_error']['default'] = $cntctfrm_option_defaults['cntctfrm_address_error']['default'];
921
- $cntctfrm_options_submit['cntctfrm_email_error']['default'] = $cntctfrm_option_defaults['cntctfrm_email_error']['default'];
922
- $cntctfrm_options_submit['cntctfrm_phone_error']['default'] = $cntctfrm_option_defaults['cntctfrm_phone_error']['default'];
923
- $cntctfrm_options_submit['cntctfrm_subject_error']['default'] = $cntctfrm_option_defaults['cntctfrm_subject_error']['default'];
924
- $cntctfrm_options_submit['cntctfrm_message_error']['default'] = $cntctfrm_option_defaults['cntctfrm_message_error']['default'];
925
- $cntctfrm_options_submit['cntctfrm_attachment_error']['default'] = $cntctfrm_option_defaults['cntctfrm_attachment_error']['default'];
926
- $cntctfrm_options_submit['cntctfrm_attachment_upload_error']['default'] = $cntctfrm_option_defaults['cntctfrm_attachment_upload_error']['default'];
927
- $cntctfrm_options_submit['cntctfrm_attachment_move_error']['default'] = $cntctfrm_option_defaults['cntctfrm_attachment_move_error']['default'];
928
- $cntctfrm_options_submit['cntctfrm_attachment_size_error']['default'] = $cntctfrm_option_defaults['cntctfrm_attachment_size_error']['default'];
929
- $cntctfrm_options_submit['cntctfrm_captcha_error']['default'] = $cntctfrm_option_defaults['cntctfrm_captcha_error']['default'];
930
- $cntctfrm_options_submit['cntctfrm_form_error']['default'] = $cntctfrm_option_defaults['cntctfrm_form_error']['default'];
931
 
932
  foreach ( $_POST['cntctfrm_thank_text'] as $key => $val ) {
933
- $cntctfrm_options_submit['cntctfrm_thank_text'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_thank_text'][ $key ] ) );
934
  }
935
  }
936
  }
937
  /* if 'FROM' field was changed */
938
- if ( ( 'custom' == $cntctfrm_options['cntctfrm_from_email'] && 'custom' != $cntctfrm_options_submit['cntctfrm_from_email'] ) ||
939
- ( 'custom' == $cntctfrm_options_submit['cntctfrm_from_email'] && $cntctfrm_options['cntctfrm_custom_from_email'] != $cntctfrm_options_submit['cntctfrm_custom_from_email'] ) ) {
940
  $notice = __( "Email 'FROM' field option was changed, which may cause email messages being moved to the spam folder or email delivery failures.", 'contact-form-plugin' );
941
  }
942
 
943
- $cntctfrm_options_submit['cntctfrm_action_after_send'] = $_POST['cntctfrm_action_after_send'];
944
- $cntctfrm_options_submit['cntctfrm_redirect_url'] = esc_url( $_POST['cntctfrm_redirect_url'] );
945
- $cntctfrm_options = array_merge( $cntctfrm_options, $cntctfrm_options_submit );
946
 
947
- if ( 0 == $cntctfrm_options_submit['cntctfrm_action_after_send']
948
- && ( "" == trim( $cntctfrm_options_submit['cntctfrm_redirect_url'] )
949
- || ! filter_var( $cntctfrm_options_submit['cntctfrm_redirect_url'], FILTER_VALIDATE_URL) ) ) {
950
  $error .= __( "If the 'Redirect to page' option is selected then the URL field should be in the following format", 'contact-form-plugin' )." <code>http://your_site/your_page</code>";
951
  $cntctfrm_options['cntctfrm_action_after_send'] = 1;
952
  }
953
- if ( 'user' == $cntctfrm_options_submit['cntctfrm_select_email'] ) {
954
- if ( false !== get_user_by( 'login', $cntctfrm_options_submit['cntctfrm_user_email'] ) ) {
955
  /**/
956
  } else {
957
  $error .= __( "Such user does not exist.", 'contact-form-plugin' );
958
  }
959
  } else {
960
- if ( preg_match( '|,|', $cntctfrm_options_submit['cntctfrm_custom_email'] ) ) {
961
- $cntctfrm_custom_emails = explode( ',', $cntctfrm_options_submit['cntctfrm_custom_email'] );
962
  } else {
963
- $cntctfrm_custom_emails[0] = $cntctfrm_options_submit['cntctfrm_custom_email'];
964
  }
965
  foreach ( $cntctfrm_custom_emails as $cntctfrm_custom_email ) {
966
  if ( $cntctfrm_custom_email == "" || ! is_email( trim( $cntctfrm_custom_email ) ) ) {
@@ -969,29 +1050,26 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
969
  }
970
  }
971
  }
972
- if ( 'custom' == $cntctfrm_options_submit['cntctfrm_from_email'] ) {
973
- if ( "" == $cntctfrm_options_submit['cntctfrm_custom_from_email']
974
- || ! is_email( trim( $cntctfrm_options_submit['cntctfrm_custom_from_email'] ) ) ) {
975
  $error .= __( "Please enter a valid email address in the 'FROM' field.", 'contact-form-plugin' );
976
  }
977
  }
978
 
979
  if ( '' == $error ) {
980
- if ( isset( $contact_form_multi_active ) ) {
981
-
982
- $cntctfrmmlt_options_main = get_option( 'cntctfrmmlt_options_main' );
983
-
984
- if ( $cntctfrmmlt_options_main['id_form'] !== $_SESSION['cntctfrmmlt_id_form'] )
985
- add_option( 'cntctfrmmlt_options_' . $cntctfrmmlt_options_main['id_form'], $cntctfrm_options );
986
- else if ( $cntctfrmmlt_options_main['id_form'] == $_SESSION['cntctfrmmlt_id_form'] )
987
- update_option( 'cntctfrmmlt_options_' . $cntctfrmmlt_options_main['id_form'], $cntctfrm_options );
988
- } elseif ( isset( $contact_form_multi_pro_active ) ) {
989
- $cntctfrmmltpr_options_main = get_option( 'cntctfrmmltpr_options_main' );
990
-
991
- if ( $cntctfrmmltpr_options_main['id_form'] !== $_SESSION['cntctfrmmlt_id_form'] )
992
- add_option( 'cntctfrmmlt_options_' . $cntctfrmmltpr_options_main['id_form'], $cntctfrm_options );
993
- else if ( $cntctfrmmltpr_options_main['id_form'] == $_SESSION['cntctfrmmlt_id_form'] )
994
- update_option( 'cntctfrmmlt_options_' . $cntctfrmmltpr_options_main['id_form'], $cntctfrm_options );
995
  } else {
996
  update_option( 'cntctfrm_options', $cntctfrm_options );
997
  }
@@ -1014,8 +1092,18 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1014
 
1015
  /* Add restore function */
1016
  if ( isset( $_REQUEST['bws_restore_confirm'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
 
 
 
 
 
 
 
 
 
 
1017
  $cntctfrm_options = $cntctfrm_option_defaults;
1018
- if ( isset( $contact_form_multi_active ) || isset( $contact_form_multi_pro_active ) ) {
1019
  if ( isset( $_SESSION['cntctfrmmlt_id_form'] ) && get_option( 'cntctfrmmlt_options_' . $_SESSION['cntctfrmmlt_id_form'] ) ) {
1020
  update_option( 'cntctfrmmlt_options_' . $_SESSION['cntctfrmmlt_id_form'] , $cntctfrm_options );
1021
  } else {
@@ -1038,15 +1126,6 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1038
  <a class="nav-tab <?php if ( isset( $_GET['action'] ) && 'custom_code' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=contact_form.php&amp;action=custom_code"><?php _e( 'Custom code', 'contact-form-plugin' ); ?></a>
1039
  <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-plugin' ); ?></a>
1040
  </h2>
1041
- <?php if ( isset( $_GET['action'] ) && 'additional' == $_GET['action'] ) { ?>
1042
- <noscript>
1043
- <div class="error">
1044
- <p>
1045
- <strong><?php printf( __( "Please enable JavaScript to add language in the contact form, change the names of the contact form fields and error messages.", 'contact-form-plugin' ), __( "Form layout", 'contact-form-plugin' ), __( "Submit position", 'contact-form-plugin' ) ); ?></strong>
1046
- </p>
1047
- </div>
1048
- </noscript>
1049
- <?php } ?>
1050
  <div class="updated fade below-h2" <?php if ( $message == "" || "" != $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
1051
  <div class="error below-h2" <?php if ( "" == $error ) echo 'style="display:none"'; ?>><p><strong><?php echo $error; ?></strong></p></div>
1052
  <?php bws_show_settings_notice();
@@ -1054,9 +1133,9 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1054
  <div class="updated fade below-h2"><p><strong><?php echo $hide_result['message']; ?></strong></p></div>
1055
  <?php }
1056
  if ( ! empty( $notice ) ) { ?>
1057
- <div class="error below-h2"><p><strong><?php _e( 'Notice:', 'contact-form-plugin' ); ?></strong> <?php echo $notice; ?></p></div>
1058
  <?php }
1059
- if ( ( ! isset( $_GET['action'] ) || ( 'go_pro' != $_GET['action'] && 'custom_code' != $_GET['action'] ) ) && ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
1060
  <h3 class="nav-tab-wrapper">
1061
  <span class="nav-tab nav-tab-active"><?php _e( 'NEW_FORM', 'contact-form-plugin' )?></span>
1062
  <a id="cntctfrm_show_multi_notice" class="nav-tab" target="_new" href="http://bestwebsoft.com/products/contact-form-multi/?k=747ca825fb44711e2d24e40697747bc6&amp;pn=77&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" title="<?php _e( "If you want to create multiple contact forms, please install the Contact Form Multi plugin.", 'contact-form-plugin' ); ?>">+</a>
@@ -1076,8 +1155,8 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1076
  <?php printf(
1077
  __( "You can add the Contact Form to your page or post by clicking on %s button in the content edit block using the Visual mode. If the button isn't displayed, please use the shortcode %s or %s where * stands for Contact Form language.", 'contact-form-plugin' ),
1078
  '<code><img style="vertical-align: sub;" src="' . plugins_url( 'bws_menu/images/shortcode-icon.png', __FILE__ ) . '" alt="" /></code>',
1079
- sprintf( '<br/><span class="bws_code">[bestwebsoft_contact_form%s]</span><br/>', ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) ? '' : ' id=' . $_SESSION['cntctfrmmlt_id_form'] ),
1080
- sprintf( '<br/><span class="bws_code">[bestwebsoft_contact_form%s lang=*]</span>,<br/>', ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) ? '' : ' id=' . $_SESSION['cntctfrmmlt_id_form'] )
1081
  ); ?>
1082
  </div>
1083
  </div>
@@ -1086,7 +1165,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1086
  <p><?php _e( "If you leave the fields empty, the messages will be sent to the email address specified during registration.", 'contact-form-plugin' ); ?></p>
1087
  <table class="form-table" style="width:auto;">
1088
  <tr valign="top">
1089
- <th scope="row"><?php _e( "The user's email address:", 'contact-form-plugin' ); ?> </th>
1090
  <td colspan="2">
1091
  <label><input type="radio" id="cntctfrm_select_email_user" name="cntctfrm_select_email" value="user" <?php if ( $cntctfrm_options['cntctfrm_select_email'] == 'user' ) echo 'checked="checked" '; ?>/>
1092
  <select class="cntctfrm_user_email" name="cntctfrm_user_email">
@@ -1103,15 +1182,15 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1103
  }
1104
  } ?>
1105
  </select>
1106
- <span class="bws_info"><?php _e( "Enter a username of the person who should get the messages from the contact form.", 'contact-form-plugin' ); ?></span></label>
1107
  </td>
1108
  </tr>
1109
  <tr valign="top">
1110
- <th scope="row"><?php _e( "Use this email address:", 'contact-form-plugin' ); ?></th>
1111
  <td colspan="2">
1112
  <label><input type="radio" id="cntctfrm_select_email_custom" name="cntctfrm_select_email" value="custom" <?php if ( 'custom' == $cntctfrm_options['cntctfrm_select_email'] ) echo 'checked="checked" '; ?>/>
1113
  <input type="text" name="cntctfrm_custom_email" value="<?php echo $cntctfrm_options['cntctfrm_custom_email']; ?>" maxlength="500" />
1114
- <span class="bws_info"><?php _e( "Enter the email address you want the messages forwarded to.", 'contact-form-plugin' ); ?></span></label>
1115
  </td>
1116
  </tr>
1117
  </table>
@@ -1122,7 +1201,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1122
  <div class="bws_table_bg"></div>
1123
  <table class="form-table bws_pro_version">
1124
  <tr valign="top">
1125
- <th scope="row"><?php _e( "Add department selectbox to the contact form:", 'contact-form-plugin' ); ?></th>
1126
  <td colspan="2">
1127
  <input type="radio" name="cntctfrm_select_email" value="departments" disabled="disabled" />
1128
  <div><img style="width:100%;" src="<?php echo plugins_url( 'images/pro_screen_1.png', __FILE__ ); ?>" alt="" /></div>
@@ -1151,16 +1230,39 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1151
  <th scope="row"><?php _e( "Save emails to the database", 'contact-form-plugin' ); ?> </th>
1152
  <td colspan="2">
1153
  <?php if ( array_key_exists( 'contact-form-to-db/contact_form_to_db.php', $all_plugins ) || array_key_exists( 'contact-form-to-db-pro/contact_form_to_db_pro.php', $all_plugins ) ) {
1154
- if ( is_plugin_active( 'contact-form-to-db/contact_form_to_db.php' ) || is_plugin_active( 'contact-form-to-db-pro/contact_form_to_db_pro.php' ) ) { ?>
1155
- <label><input type="checkbox" name="cntctfrm_save_email_to_db" value="1" <?php if ( ( isset( $cntctfrmtdb_options ) && 1 == $cntctfrmtdb_options["cntctfrmtdb_save_messages_to_db"] ) || ( isset( $cntctfrmtdbpr_options ) && 1 == $cntctfrmtdbpr_options["save_messages_to_db"] ) ) echo 'checked="checked"'; ?> />
1156
- <span class="bws_info"> (<?php _e( 'Using', 'contact-form-plugin' ); ?> <a href="admin.php?page=cntctfrmtdb_manager">Contact Form to DB by BestWebSoft</a>)</span></label>
1157
- <?php } else { ?>
1158
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_save_email_to_db" value="1" <?php if ( ( isset( $cntctfrmtdb_options ) && 1 == $cntctfrmtdb_options["cntctfrmtdb_save_messages_to_db"] ) || ( isset( $cntctfrmtdbpr_options ) && 1 == $cntctfrmtdbpr_options["save_messages_to_db"] ) ) echo 'checked="checked"'; ?> />
1159
- <span class="bws_info">(<?php _e( 'Using Contact Form to DB by BestWebSoft', 'contact-form-plugin' ); ?>) <a href="<?php echo bloginfo("url"); ?>/wp-admin/plugins.php"><?php _e( 'Activate', 'contact-form-plugin' ); ?> Contact Form to DB</a></span></label>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1160
  <?php }
1161
  } else { ?>
1162
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_save_email_to_db" value="1" />
1163
- <span class="bws_info">(<?php _e( 'Using Contact Form to DB by BestWebSoft', 'contact-form-plugin' ); ?>) <a href="http://bestwebsoft.com/products/contact-form-to-db/?k=19d806f45d866e70545de83169b274f2&amp;pn=77&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>"><?php _e( 'Download', 'contact-form-plugin' ); ?> Contact Form to DB</a></span><label>
 
 
 
1164
  <?php } ?>
1165
  </td>
1166
  </tr>
@@ -1170,7 +1272,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1170
  <div <?php if ( ! isset( $_GET['action'] ) ) echo 'style="display: none;"'; ?> >
1171
  <table class="form-table" style="width:auto;">
1172
  <tr>
1173
- <th scope="row"><?php _e( 'What to use?', 'contact-form-plugin' ); ?></th>
1174
  <td colspan="2">
1175
  <fieldset>
1176
  <label>
@@ -1188,7 +1290,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1188
  </tr>
1189
  <tr valign="top">
1190
  <th scope="row"><?php _e( "'FROM' field", 'contact-form-plugin' ); ?></th>
1191
- <td style="vertical-align: top;width: 210px;">
1192
  <legend><?php _e( "Name", 'contact-form-plugin' ); ?></legend>
1193
  <fieldset>
1194
  <label><input type="radio" id="cntctfrm_select_from_custom_field" name="cntctfrm_select_from_field" value="custom" <?php if ( 'custom' == $cntctfrm_options['cntctfrm_select_from_field'] ) echo 'checked="checked" '; ?> /><input type="text" name="cntctfrm_from_field" value="<?php echo stripslashes( $cntctfrm_options['cntctfrm_from_field'] ); ?>" size="18" maxlength="100" /></label><br />
@@ -1198,7 +1300,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1198
  </div>
1199
  </fieldset>
1200
  </td>
1201
- <td>
1202
  <legend><?php _e( "Email", 'contact-form-plugin' ); ?></legend>
1203
  <fieldset>
1204
  <label><input type="radio" id="cntctfrm_from_custom_email" name="cntctfrm_from_email" value="custom" <?php if ( 'custom' == $cntctfrm_options['cntctfrm_from_email'] ) echo 'checked="checked" '; ?>/><input type="text" name="cntctfrm_custom_from_email" value="<?php echo $cntctfrm_options['cntctfrm_custom_from_email']; ?>" maxlength="100" /></label><br />
@@ -1457,28 +1559,102 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1457
  </div>
1458
  <div style="clear: both;">
1459
  <?php if ( array_key_exists( 'subscriber/subscriber.php', $all_plugins ) || array_key_exists( 'subscriber-pro/subscriber-pro.php', $all_plugins ) ) {
1460
- if ( is_plugin_active( 'subscriber/subscriber.php' ) || is_plugin_active( 'subscriber-pro/subscriber-pro.php' ) ) { ?>
1461
- <label><input type="checkbox" name="cntctfrm_display_subscriber" value="1" <?php if ( ( is_plugin_active( 'subscriber/subscriber.php' ) && isset( $sbscrbr_options['contact_form'] ) && 1 == $sbscrbr_options['contact_form'] ) || ( is_plugin_active( 'subscriber-pro/subscriber-pro.php' ) && isset( $sbscrbrpr_options['contact_form'] ) && 1 == $sbscrbrpr_options['contact_form'] ) ) echo 'checked="checked"'; ?> /> Subscriber by BestWebSoft</label>
1462
- <?php } else { ?>
1463
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_subscriber" value="1" <?php if ( ( isset( $sbscrbr_options['contact_form'] ) && 1 == $sbscrbr_options['contact_form'] ) || ( isset( $sbscrbrpr_options['contact_form'] ) && 1 == $sbscrbrpr_options['contact_form'] ) ) echo 'checked="checked"'; ?> />
1464
- Subscriber by BestWebSoft</label> <span class="bws_info"><a href="<?php echo bloginfo("url"); ?>/wp-admin/plugins.php"><?php _e( 'Activate Subscriber', 'contact-form-plugin' ); ?></a></span>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1465
  <?php }
1466
  } else { ?>
1467
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_subscriber" value="1" />
1468
- Subscriber by BestWebSoft</label> <span class="bws_info"><a href="http://http://bestwebsoft.com/products/subscriber/?k=a9dfd3fa8513784c36622993b350b19e&amp;pn=72&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>"><?php _e( 'Download Subscriber', 'contact-form-plugin' ); ?></a></span>
 
 
1469
  <?php } ?>
1470
  </div>
1471
  <div style="clear: both;">
1472
  <?php if ( array_key_exists( 'captcha/captcha.php', $all_plugins ) || array_key_exists( 'captcha-plus/captcha-plus.php', $all_plugins ) || array_key_exists( 'captcha-pro/captcha_pro.php', $all_plugins ) ) {
1473
- if ( is_plugin_active( 'captcha/captcha.php' ) || is_plugin_active( 'captcha-plus/captcha-plus.php' ) || is_plugin_active( 'captcha-pro/captcha_pro.php' ) ) { ?>
1474
- <label><input type="checkbox" name="cntctfrm_display_captcha" value="1" <?php if ( ( is_plugin_active( 'captcha/captcha.php' ) && isset( $cptch_options ) && 1 == $cptch_options["cptch_contact_form"] ) || ( is_plugin_active( 'captcha-plus/captcha-plus.php' ) && isset( $cptchpls_options ) && 1 == $cptchpls_options["cptchpls_contact_form"] ) || ( is_plugin_active( 'captcha-pro/captcha_pro.php' ) && isset( $cptchpr_options ) && 1 == $cptchpr_options["cptchpr_contact_form"] ) ) echo 'checked="checked"'; ?> /> Captcha by BestWebSoft</label>
1475
- <?php } else { ?>
1476
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_captcha" value="1" <?php if ( ( isset( $cptch_options ) && 1 == $cptch_options["cptch_contact_form"] ) || ( isset( $cptchpls_options ) && 1 == $cptchpls_options["cptchpls_contact_form"] ) || ( isset( $cptchpr_options ) && 1 == $cptchpr_options["cptchpr_contact_form"] ) ) echo 'checked="checked"'; ?> />
1477
- Captcha by BestWebSoft</label> <span class="bws_info"><a href="<?php echo bloginfo("url"); ?>/wp-admin/plugins.php"><?php _e( 'Activate Captcha', 'contact-form-plugin' ); ?></a></span>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1478
  <?php }
1479
  } else { ?>
1480
- <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_captcha" value="1" />
1481
- Captcha by BestWebSoft</label> <span class="bws_info"><a href="http://bestwebsoft.com/products/captcha/?k=19ac1e9b23bea947cfc4a9b8e3326c03&amp;pn=77&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>"><?php _e( 'Download Captcha', 'contact-form-plugin' ); ?></a></span>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1482
  <?php } ?>
1483
  </div>
1484
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
@@ -1543,7 +1719,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1543
  echo '<option value="' . esc_attr( $key ) . '"> ' . esc_html( $val ) . '</option>';
1544
  } ?>
1545
  </select>
1546
- <input type="button" class="button-primary" id="cntctfrm_add_language_button" value="<?php _e( 'Add a language', 'contact-form-plugin' ); ?>" />
1547
  </td>
1548
  </tr>
1549
  <tr valign="top">
@@ -1552,23 +1728,28 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1552
  <input type="checkbox" id="cntctfrm_change_label" name="cntctfrm_change_label" value="1" <?php if ( $cntctfrm_options['cntctfrm_change_label'] == '1' ) echo 'checked="checked" '; ?>/>
1553
  </td>
1554
  <td class="cntctfrm_change_label_block" <?php if ( '0' == $cntctfrm_options['cntctfrm_change_label'] ) echo 'style="display:none"'; ?>>
1555
- <div class="cntctfrm_label_language_tab cntctfrm_active" id="cntctfrm_label_default"><?php _e( 'Default', 'contact-form-plugin' ); ?></div>
 
 
 
 
1556
  <?php if ( ! empty( $cntctfrm_options['cntctfrm_language'] ) ) {
1557
  foreach ( $cntctfrm_options['cntctfrm_language'] as $val ) {
1558
- echo '<div class="cntctfrm_label_language_tab" id="cntctfrm_label_' . $val . '">' . $cntctfrm_lang_codes[ $val ] . ' <span class="cntctfrm_delete" rel="' . $val . '">X</span></div>';
 
1559
  }
1560
  } ?>
1561
  <div class="clear"></div>
1562
- <div class="cntctfrm_language_tab cntctfrm_tab_default" style="padding: 1px 3px;">
1563
  <div class="cntctfrm_language_tab_block_mini" style="display:none;"><?php _e( "click to expand/hide the list", 'contact-form-plugin' ); ?></div>
1564
  <div class="cntctfrm_language_tab_block">
1565
- <input type="text" maxlength="250" name="cntctfrm_name_label[default]" value="<?php echo $cntctfrm_options['cntctfrm_name_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Name:", 'contact-form-plugin' ); ?></span><br />
1566
- <input type="text" maxlength="250" name="cntctfrm_address_label[default]" value="<?php echo $cntctfrm_options['cntctfrm_address_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Address:", 'contact-form-plugin' ); ?></span><br />
1567
- <input type="text" maxlength="250" name="cntctfrm_email_label[default]" value="<?php echo $cntctfrm_options['cntctfrm_email_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Email Address:", 'contact-form-plugin' ); ?></span><br />
1568
- <input type="text" maxlength="250" name="cntctfrm_phone_label[default]" value="<?php echo $cntctfrm_options['cntctfrm_phone_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Phone number:", 'contact-form-plugin' ); ?></span><br />
1569
- <input type="text" maxlength="250" name="cntctfrm_subject_label[default]" value="<?php echo $cntctfrm_options['cntctfrm_subject_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Subject:", 'contact-form-plugin' ); ?></span><br />
1570
- <input type="text" maxlength="250" name="cntctfrm_message_label[default]" value="<?php echo $cntctfrm_options['cntctfrm_message_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Message:", 'contact-form-plugin' ); ?></span><br />
1571
- <input type="text" maxlength="250" name="cntctfrm_attachment_label[default]" value="<?php echo $cntctfrm_options['cntctfrm_attachment_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Attachment:", 'contact-form-plugin' ); ?></span><br />
1572
  <input type="text" maxlength="250" name="cntctfrm_attachment_tooltip[default]" value="<?php echo $cntctfrm_options['cntctfrm_attachment_tooltip']['default']; ?>" /> <span class="bws_info"><?php _e( "Tips below the Attachment block", 'contact-form-plugin' ); ?></span><br />
1573
  <input type="text" maxlength="250" name="cntctfrm_send_copy_label[default]" value="<?php echo $cntctfrm_options['cntctfrm_send_copy_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Send me a copy", 'contact-form-plugin' ); ?></span><br />
1574
  <input type="text" maxlength="250" name="cntctfrm_submit_label[default]" value="<?php echo $cntctfrm_options['cntctfrm_submit_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Submit", 'contact-form-plugin' ); ?></span><br />
@@ -1585,24 +1766,28 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1585
  <input type="text" maxlength="250" name="cntctfrm_captcha_error[default]" value="<?php echo $cntctfrm_options['cntctfrm_captcha_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Captcha field", 'contact-form-plugin' ); ?></span><br />
1586
  <input type="text" maxlength="250" name="cntctfrm_form_error[default]" value="<?php echo $cntctfrm_options['cntctfrm_form_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the whole form", 'contact-form-plugin' ); ?></span><br />
1587
  </div>
1588
- <?php if ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
1589
  <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1590
  <?php } else { ?>
1591
  <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form id=<?php echo $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1592
  <?php } ?>
1593
  </div>
1594
  <?php if ( ! empty( $cntctfrm_options['cntctfrm_language'] ) ) {
1595
- foreach ( $cntctfrm_options['cntctfrm_language'] as $val ) { ?>
1596
- <div class="cntctfrm_language_tab hidden cntctfrm_tab_<?php echo $val; ?>">
 
 
 
 
1597
  <div class="cntctfrm_language_tab_block_mini" style="display:none;"><?php _e( "click to expand/hide the list", 'contact-form-plugin' ); ?></div>
1598
  <div class="cntctfrm_language_tab_block">
1599
- <input type="text" maxlength="250" name="cntctfrm_name_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_name_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_name_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Name:", 'contact-form-plugin' ); ?></span><br />
1600
- <input type="text" maxlength="250" name="cntctfrm_address_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_address_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_address_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Address:", 'contact-form-plugin' ); ?></span><br />
1601
- <input type="text" maxlength="250" name="cntctfrm_email_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_email_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_email_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Email Address:", 'contact-form-plugin' ); ?></span><br />
1602
- <input type="text" maxlength="250" name="cntctfrm_phone_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_phone_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_phone_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Phone number:", 'contact-form-plugin' ); ?></span><br />
1603
- <input type="text" maxlength="250" name="cntctfrm_subject_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_subject_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_subject_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Subject:", 'contact-form-plugin' ); ?></span><br />
1604
- <input type="text" maxlength="250" name="cntctfrm_message_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_message_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_message_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Message:", 'contact-form-plugin' ); ?></span><br />
1605
- <input type="text" maxlength="250" name="cntctfrm_attachment_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_attachment_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_attachment_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Attachment:", 'contact-form-plugin' ); ?></span><br />
1606
  <input type="text" maxlength="250" name="cntctfrm_attachment_tooltip[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_attachment_tooltip'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_attachment_tooltip'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Tips below the Attachment block", 'contact-form-plugin' ); ?></span><br />
1607
  <input type="text" maxlength="250" name="cntctfrm_send_copy_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_send_copy_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_send_copy_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Send me a copy", 'contact-form-plugin' ); ?></span><br />
1608
  <input type="text" maxlength="250" name="cntctfrm_submit_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_submit_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_submit_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Submit", 'contact-form-plugin' ); ?></span><br />
@@ -1619,7 +1804,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1619
  <input type="text" maxlength="250" name="cntctfrm_captcha_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_captcha_error'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_captcha_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Captcha field", 'contact-form-plugin' ); ?></span><br />
1620
  <input type="text" maxlength="250" name="cntctfrm_form_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_form_error'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_form_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the whole form", 'contact-form-plugin' ); ?></span><br />
1621
  </div>
1622
- <?php if ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
1623
  <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1624
  <?php } else { ?>
1625
  <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php $val . ' id=' . $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
@@ -1639,26 +1824,35 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1639
  <th scope="row"><?php _e( "Action after email is sent", 'contact-form-plugin' ); ?></th>
1640
  <td colspan="2" class="cntctfrm_action_after_send_block">
1641
  <label><input type="radio" id="cntctfrm_action_after_send" name="cntctfrm_action_after_send" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_action_after_send'] ) echo 'checked="checked" '; ?>/> <?php _e( "Display text", 'contact-form-plugin' ); ?></label><br />
1642
- <div class="cntctfrm_label_language_tab cntctfrm_active" id="cntctfrm_text_default"><?php _e( 'Default', 'contact-form-plugin' ); ?></div>
 
 
 
 
1643
  <?php if ( ! empty( $cntctfrm_options['cntctfrm_language'] ) ) {
1644
  foreach ( $cntctfrm_options['cntctfrm_language'] as $val ) {
1645
- echo '<div class="cntctfrm_label_language_tab" id="cntctfrm_text_' . $val . '">' . $cntctfrm_lang_codes[ $val ] . ' <span class="cntctfrm_delete" rel="' . $val . '">X</span></div>';
 
1646
  }
1647
  } ?>
1648
  <div class="clear"></div>
1649
- <div class="cntctfrm_language_tab cntctfrm_tab_default" style="padding: 5px 10px 5px 5px;">
1650
  <label><input type="text" maxlength="250" name="cntctfrm_thank_text[default]" value="<?php echo $cntctfrm_options['cntctfrm_thank_text']['default']; ?>" /> <span class="bws_info"><?php _e( "Text", 'contact-form-plugin' ); ?></span></label><br />
1651
- <?php if ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
1652
  <span class="bws_info cntctfrm_shortcode_for_language"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1653
  <?php } else { ?>
1654
  <span class="bws_info cntctfrm_shortcode_for_language"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form id=<?php echo $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1655
  <?php } ?>
1656
  </div>
1657
  <?php if ( ! empty( $cntctfrm_options['cntctfrm_language'] ) ) {
1658
- foreach ( $cntctfrm_options['cntctfrm_language'] as $val ) { ?>
1659
- <div class="cntctfrm_language_tab hidden cntctfrm_tab_<?php echo $val; ?>" style="padding: 5px 10px 5px 5px;">
 
 
 
 
1660
  <label><input type="text" maxlength="250" name="cntctfrm_thank_text[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_thank_text'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_thank_text'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Text", 'contact-form-plugin' ); ?></span></label><br />
1661
- <?php if ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
1662
  <span class="bws_info cntctfrm_shortcode_for_language"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1663
  <?php } else { ?>
1664
  <span class="bws_info cntctfrm_shortcode_for_language"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val . ' id=' . $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
@@ -2010,7 +2204,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
2010
  if ( 1 == $cntctfrm_options['cntctfrm_display_name_field'] ) { ?>
2011
  <li class="cntctfrm_field_wrap">
2012
  <div class="cntctfrm_label cntctfrm_label_name">
2013
- <label for="cntctfrm_contact_name"><?php echo $cntctfrm_options['cntctfrm_name_label']['default']; if ( 1 == $cntctfrm_options['cntctfrm_required_name_field'] ) echo '<span class="required"> *</span>'; ?></label>
2014
  </div>
2015
  <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['cntctfrm_name_error']['default']; ?></div>
2016
  <div class="cntctfrm_input cntctfrm_input_name">
@@ -2024,7 +2218,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
2024
  if ( 1 == $cntctfrm_options['cntctfrm_display_address_field'] ) { ?>
2025
  <li class="cntctfrm_field_wrap">
2026
  <div class="cntctfrm_label cntctfrm_label_address">
2027
- <label for="cntctfrm_contact_address"><?php echo $cntctfrm_options['cntctfrm_address_label']['default']; if ( 1 == $cntctfrm_options['cntctfrm_required_address_field'] ) echo '<span class="required"> *</span>'; ?></label>
2028
  </div>
2029
  <?php if ( 1 == $cntctfrm_options['cntctfrm_required_address_field'] ) { ?>
2030
  <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['cntctfrm_address_error']['default']; ?></div>
@@ -2039,7 +2233,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
2039
  case 'cntctfrm_contact_email': ?>
2040
  <li class="cntctfrm_field_wrap">
2041
  <div class="cntctfrm_label cntctfrm_label_email">
2042
- <label for="cntctfrm_contact_email"><?php echo $cntctfrm_options['cntctfrm_email_label']['default']; if ( 1 == $cntctfrm_options['cntctfrm_required_email_field'] ) echo '<span class="required"> *</span>'; ?></label>
2043
  </div>
2044
  <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['cntctfrm_email_error']['default']; ?></div>
2045
  <div class="cntctfrm_input cntctfrm_input_email">
@@ -2052,7 +2246,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
2052
  if ( 1 == $cntctfrm_options['cntctfrm_display_phone_field'] ) { ?>
2053
  <li class="cntctfrm_field_wrap">
2054
  <div class="cntctfrm_label cntctfrm_label_phone">
2055
- <label for="cntctfrm_contact_phone"><?php echo $cntctfrm_options['cntctfrm_phone_label']['default']; if ( 1 == $cntctfrm_options['cntctfrm_required_phone_field'] ) echo '<span class="required"> *</span>'; ?></label>
2056
  </div>
2057
  <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['cntctfrm_phone_error']['default']; ?></div>
2058
  <div class="cntctfrm_input cntctfrm_input_phone">
@@ -2065,7 +2259,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
2065
  case 'cntctfrm_contact_subject': ?>
2066
  <li class="cntctfrm_field_wrap">
2067
  <div class="cntctfrm_label cntctfrm_label_subject">
2068
- <label for="cntctfrm_contact_subject"><?php echo $cntctfrm_options['cntctfrm_subject_label']['default']; if ( 1 == $cntctfrm_options['cntctfrm_required_subject_field'] ) echo '<span class="required"> *</span>'; ?></label>
2069
  </div>
2070
  <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['cntctfrm_subject_error']['default']; ?></div>
2071
  <div class="cntctfrm_input cntctfrm_input_subject">
@@ -2077,7 +2271,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
2077
  case 'cntctfrm_contact_message': ?>
2078
  <li class="cntctfrm_field_wrap">
2079
  <div class="cntctfrm_label cntctfrm_label_message">
2080
- <label for="cntctfrm_contact_message"><?php echo $cntctfrm_options['cntctfrm_message_label']['default']; if ( 1 == $cntctfrm_options['cntctfrm_required_message_field'] ) echo '<span class="required"> *</span>'; ?></label>
2081
  </div>
2082
  <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['cntctfrm_message_error']['default']; ?></div>
2083
  <div class="cntctfrm_input cntctfrm_input_message">
@@ -2115,39 +2309,29 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
2115
  <?php }
2116
  break;
2117
  case 'cntctfrm_subscribe':
2118
- if ( has_filter( 'sbscrbr_cntctfrm_checkbox_add' ) ) { ?>
2119
- <li class="cntctfrm_field_wrap">
2120
- <div class="cntctfrm_checkbox cntctfrm_checkbox_subscribe">
2121
- <div class="cntctfrm_drag_wrap"></div>
2122
- <input type="hidden" value="1" name="cntctfrm_subscribe"/>
2123
- <?php $cntctfrm_sbscrbr_checkbox = apply_filters( 'sbscrbr_cntctfrm_checkbox_add', array() );
2124
- if ( isset( $cntctfrm_sbscrbr_checkbox['content'] ) ) {
2125
- echo $cntctfrm_sbscrbr_checkbox['content'];
2126
- } ?>
2127
- </div>
2128
- </li>
2129
- <?php }
 
 
2130
  break;
2131
  case 'cntctfrm_captcha':
2132
- if ( ( is_plugin_active( 'captcha/captcha.php' ) && ( isset( $cptch_options ) && 1 == $cptch_options['cptch_contact_form'] ) ) ||
2133
- ( is_plugin_active( 'captcha-plus/captcha-plus.php' ) && ( isset( $cptchpls_options ) && 1 == $cptchpls_options['cptchpls_contact_form'] ) ) ||
2134
- ( is_plugin_active( 'captcha-pro/captcha_pro.php' ) && ( isset( $cptchpr_options ) && 1 == $cptchpr_options['cptchpr_contact_form'] ) ) ||
2135
- ( is_plugin_active( 'google-captcha/google-captcha.php' ) && ( isset( $gglcptch_options ) && 1 == $gglcptch_options['contact_form'] ) ) ||
2136
- ( is_plugin_active( 'google-captcha-pro/google-captcha-pro.php' ) && ( isset( $gglcptchpr_options ) && 1 == $gglcptchpr_options['contact_form'] ) ) ) {
2137
-
2138
- $cntctfrm_captcha_label = $cntctfrm_captcha_required_symbol = '';
2139
- if ( is_plugin_active( 'captcha/captcha.php' ) && ( isset( $cptch_options ) && 1 == $cptch_options['cptch_contact_form'] ) ) {
2140
- $cntctfrm_captcha_label = $cptch_options['cptch_label_form'];
2141
- $cntctfrm_captcha_required_symbol = sprintf( ' <span class="required">%s</span>', ( isset( $cptch_options['cptch_required_symbol'] ) ) ? $cptch_options['cptch_required_symbol'] : '' );
2142
- } elseif ( is_plugin_active( 'captcha-plus/captcha-plus.php' ) && ( isset( $cptchpls_options ) && 1 == $cptchpls_options['cptchpls_contact_form'] ) ) {
2143
- $cntctfrm_captcha_label = $cptchpls_options['cptchpls_label_form'];
2144
- $cntctfrm_captcha_required_symbol = sprintf( ' <span class="required">%s</span>', ( isset( $cptchpls_options['cptchpls_required_symbol'] ) ) ? $cptchpls_options['cptchpls_required_symbol'] : '' );
2145
- } elseif ( is_plugin_active( 'captcha-pro/captcha_pro.php' ) && ( isset( $cptchpr_options ) && 1 == $cptchpr_options['cptchpr_contact_form'] ) ) {
2146
- $cntctfrm_captcha_label = $cptchpr_options['cptchpr_label_form'];
2147
- $cntctfrm_captcha_required_symbol = sprintf( ' <span class="required">%s</span>', ( isset( $cptchpr_options['cptchpr_required_symbol'] ) ) ? $cptchpr_options['cptchpr_required_symbol'] : '' );
2148
- }
2149
- if ( ! empty( $cntctfrm_captcha_label ) ) {
2150
- $cntctfrm_display_captcha_label = sprintf( '%1$s%2$s', $cntctfrm_captcha_label, $cntctfrm_captcha_required_symbol );
2151
  } else {
2152
  $cntctfrm_display_captcha_label = '';
2153
  } ?>
@@ -2161,7 +2345,8 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
2161
  <input id="cntctfrm_captcha" type="hidden" name="cntctfrm_captcha">
2162
  </div>
2163
  </li>
2164
- <?php }
 
2165
  break;
2166
  default:
2167
  break;
@@ -2173,7 +2358,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
2173
  </div>
2174
  <div class="cntctfrm_submit_wrap">
2175
  <?php $cntctfrm_direction = is_rtl() ? 'rtl' : 'ltr';
2176
- $cntctfrm_submit_position_value = array(
2177
  'ltr' => array(
2178
  'left' => 1,
2179
  'right' => 2
@@ -2186,7 +2371,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
2186
  for ( $i = 1; $i <= 2; $i++ ) {
2187
  $cntctfrm_column = ( $i == 1 ) ? 'first_column' : 'second_column'; ?>
2188
  <div id="cntctfrm_submit_<?php echo $cntctfrm_column; ?>" class="cntctfrm_column">
2189
- <?php if ( $i == $cntctfrm_submit_position_value[ $cntctfrm_direction ][ $cntctfrm_options['cntctfrm_submit_position'] ] ) { ?>
2190
  <div class="cntctfrm_input cntctfrm_input_submit" style="<?php printf( 'text-align: %s !important;', $cntctfrm_options['cntctfrm_submit_position'] ); ?>">
2191
  <input type="button" value="<?php echo $cntctfrm_options['cntctfrm_submit_label']['default']; ?>" class="bws_no_bind_notice" style="cursor: pointer; margin: 0; text-align: center;" />
2192
  </div>
@@ -2197,10 +2382,10 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
2197
  </div>
2198
  </div>
2199
  <div id="cntctfrm_shortcode" class="cntctfrm_one_column">
2200
- <?php _e( "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:", 'contact-form-plugin' ); ?><br/>
2201
  <div>
2202
  <div id="cntctfrm_shortcode_code">
2203
- <span class="cntctfrm_shortcode">[bestwebsoft_contact_form<?php if ( isset( $contact_form_multi_active ) || isset( $contact_form_multi_pro_active ) ) printf( ' id=%s', $_SESSION['cntctfrmmlt_id_form'] ); ?>]</span>
2204
  </div>
2205
  </div>
2206
  </div>
@@ -2220,7 +2405,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
2220
  } elseif ( 'custom_code' == $_GET['action'] ) {
2221
  bws_custom_code_tab();
2222
  } elseif ( 'go_pro' == $_GET['action'] ) {
2223
- bws_go_pro_tab_show( $bws_hide_premium_options_check, $cntctfrm_plugin_info, $plugin_basename, 'contact_form.php', 'contact_form_pro.php', 'contact-form-pro/contact_form_pro.php', 'contact-form', '697c5e74f39779ce77850e11dbe21962', '77', isset( $go_pro_result['pro_plugin_is_activated'] ) );
2224
  }
2225
  bws_plugin_reviews_block( $cntctfrm_plugin_info['Name'], 'contact-form-plugin' ); ?>
2226
  </div>
@@ -2230,29 +2415,60 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
2230
  /* Display contact form in front end - page or post */
2231
  if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2232
  function cntctfrm_display_form( $atts = array( 'lang' => 'default' ) ) {
2233
- global $cntctfrm_error_message, $cntctfrm_options, $cntctfrm_result, $cntctfrmmlt_ide, $cntctfrmmlt_active_plugin, $cntctfrm_form_count;
 
 
 
 
 
 
 
 
 
2234
  $cntctfrm_form_count = empty( $cntctfrm_form_count ) ? 1 : ++$cntctfrm_form_count;
2235
- $cntctfrm_form_countid = ( $cntctfrm_form_count == 1 ? '' : '_' . $cntctfrm_form_count );
2236
  $content = "";
2237
  /* Get options for the form with a definite identifier */
2238
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
2239
- if ( is_plugin_active( 'contact-form-multi/contact-form-multi.php' ) || is_plugin_active( 'contact-form-multi-pro/contact-form-multi-pro.php' ) ) {
2240
  extract( shortcode_atts( array( 'id' => $cntctfrmmlt_ide, 'lang' => 'default' ), $atts ) );
2241
  if ( isset( $atts['id'] ) ) {
2242
  cntctfrm_settings( $atts['id'] );
2243
  $cntctfrm_options = get_option( 'cntctfrmmlt_options_' . $atts['id'] );
 
2244
  /* if no options with the specified id */
2245
  if ( ! $cntctfrm_options ) {
2246
  $cntctfrm_options = get_option( 'cntctfrmmlt_options' );
 
 
 
2247
  }
2248
  } else {
2249
  cntctfrm_settings();
2250
- $cntctfrm_options = get_option( 'cntctfrmmlt_options' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2251
  }
2252
  } else {
2253
  cntctfrm_settings();
2254
  $cntctfrm_options = get_option( 'cntctfrm_options' );
2255
  extract( shortcode_atts( array( 'lang' => 'default' ), $atts ) );
 
2256
  }
2257
  /* check lang and replace with en default if need */
2258
  foreach ( $cntctfrm_options as $key => $value ) {
@@ -2265,14 +2481,14 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2265
 
2266
  /* If contact form submited */
2267
 
2268
- $cntctfrm_form_submited = isset( $_POST['cntctfrm_form_submited'] ) ? $_POST['cntctfrm_form_submited'] : 0;
2269
 
2270
- $name = ( isset( $_POST['cntctfrm_contact_name'] ) && $cntctfrm_form_count == $cntctfrm_form_submited ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_name'] ) ) : "";
2271
- $address = ( isset( $_POST['cntctfrm_contact_address'] ) && $cntctfrm_form_count == $cntctfrm_form_submited ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_address'] ) ) : "";
2272
- $email = ( isset( $_POST['cntctfrm_contact_email'] ) && $cntctfrm_form_count == $cntctfrm_form_submited ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_email'] ) ) : "";
2273
- $subject = ( isset( $_POST['cntctfrm_contact_subject'] ) && $cntctfrm_form_count == $cntctfrm_form_submited ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_subject'] ) ) : "";
2274
- $message = ( isset( $_POST['cntctfrm_contact_message'] ) && $cntctfrm_form_count == $cntctfrm_form_submited ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_message'] ) ) : "";
2275
- $phone = ( isset( $_POST['cntctfrm_contact_phone'] ) && $cntctfrm_form_count == $cntctfrm_form_submited ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_phone'] ) ) : "";
2276
 
2277
  $name = strip_tags( preg_replace( '/<[^>]*>/', '', preg_replace( '/<script.*<\/[^>]*>/', '', $name ) ) );
2278
  $address = strip_tags( preg_replace( '/<[^>]*>/', '', preg_replace( '/<script.*<\/[^>]*>/', '', $address ) ) );
@@ -2281,32 +2497,32 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2281
  $message = strip_tags( preg_replace( '/<[^>]*>/', '', preg_replace( '/<script.*<\/[^>]*>/', '', $message ) ) );
2282
  $phone = strip_tags( preg_replace( '/<[^>]*>/', '', preg_replace( '/<script.*<\/[^>]*>/', '', $phone ) ) );
2283
 
2284
- $send_copy = ( isset( $_POST['cntctfrm_contact_send_copy'] ) && $cntctfrm_form_count == $cntctfrm_form_submited ) ? $_POST['cntctfrm_contact_send_copy'] : "";
2285
  /* If it is good */
2286
 
2287
- if ( true === $cntctfrm_result && $cntctfrm_form_count == $cntctfrm_form_submited ) {
2288
  $_SESSION['cntctfrm_send_mail'] = true;
2289
 
2290
  if ( 1 == $cntctfrm_options['cntctfrm_action_after_send'] )
2291
- $content .= '<div id="cntctfrm_contact_form' . $cntctfrm_form_countid . '"><div id="cntctfrm_thanks">' . $cntctfrm_options['cntctfrm_thank_text'][ $lang ] . '</div></div>';
2292
  else
2293
  $content .= "<script type='text/javascript'>window.location.href = '" . $cntctfrm_options['cntctfrm_redirect_url'] . "';</script>";
2294
 
2295
- } elseif ( false === $cntctfrm_result && $cntctfrm_form_count == $cntctfrm_form_submited ) {
2296
  /* If email not be delivered */
2297
  $cntctfrm_error_message['error_form'] = __( "Sorry, email message could not be delivered.", 'contact-form-plugin' );
2298
  }
2299
 
2300
- if ( true !== $cntctfrm_result || $cntctfrm_form_count != $cntctfrm_form_submited ) {
2301
  $_SESSION['cntctfrm_send_mail'] = false;
2302
 
2303
  $cntctfrm_classes = ( $cntctfrm_options['cntctfrm_layout'] === 1 ) ? ' cntctfrm_one_column' : ' cntctfrm_two_columns';
2304
  $cntctfrm_classes .= is_rtl() ? ' cntctfrm_rtl' : ' cntctfrm_ltr';
2305
 
2306
  /* Output form */
2307
- $content .= '<form method="post" id="cntctfrm_contact_form' . $cntctfrm_form_countid . '" class="cntctfrm_contact_form' . $cntctfrm_classes . '"';
2308
- $content .= ' action="' . $page_url . $cntctfrm_form_countid . '" enctype="multipart/form-data">';
2309
- if ( isset( $cntctfrm_error_message['error_form'] ) && $cntctfrm_form_count == $cntctfrm_form_submited ) {
2310
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_form'] . '</div>';
2311
  }
2312
 
@@ -2318,19 +2534,18 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2318
  $content .= '<div id="cntctfrm_' . $cntctfrm_column . '" class="cntctfrm_column">';
2319
 
2320
  foreach ( $cntctfrm_ordered_fields[ $cntctfrm_column ] as $cntctfrm_field ) {
2321
-
2322
  switch( $cntctfrm_field ) {
2323
  case 'cntctfrm_contact_name':
2324
  if ( 1 == $cntctfrm_options['cntctfrm_display_name_field'] ) {
2325
  $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_name_wrap">';
2326
  $content .= '<div class="cntctfrm_label cntctfrm_label_name">
2327
- <label for="cntctfrm_contact_name' . $cntctfrm_form_countid . '">' . $cntctfrm_options['cntctfrm_name_label'][ $lang ] . ( $cntctfrm_options['cntctfrm_required_name_field'] == 1 ? ' <span class="required">' . $cntctfrm_options['cntctfrm_required_symbol'] . '</span></label>' : '</label>' );
2328
  $content .= '</div>';
2329
- if ( isset( $cntctfrm_error_message['error_name'] ) && $cntctfrm_form_count == $cntctfrm_form_submited ) {
2330
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_name'] . '</div>';
2331
  }
2332
  $content .= '<div class="cntctfrm_input cntctfrm_input_name">
2333
- <input class="text" type="text" size="40" value="' . $name . '" name="cntctfrm_contact_name" id="cntctfrm_contact_name' . $cntctfrm_form_countid . '" />';
2334
  $content .= '</div>';
2335
  $content .= '</div>';
2336
  }
@@ -2339,12 +2554,12 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2339
  if ( 1 == $cntctfrm_options['cntctfrm_display_address_field'] ) {
2340
  $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_address_wrap">';
2341
  $content .= '<div class="cntctfrm_label cntctfrm_label_address">
2342
- <label for="cntctfrm_contact_address' . $cntctfrm_form_countid . '">' . $cntctfrm_options['cntctfrm_address_label'][ $lang ] . ( $cntctfrm_options['cntctfrm_required_address_field'] == 1 ? ' <span class="required">' . $cntctfrm_options['cntctfrm_required_symbol'] . '</span></label>' : '</label>' ) . '</div>';
2343
- if ( isset( $cntctfrm_error_message['error_address'] ) && $cntctfrm_form_count == $cntctfrm_form_submited ) {
2344
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_address'] . '</div>';
2345
  }
2346
  $content .= '<div class="cntctfrm_input cntctfrm_input_address">
2347
- <input class="text" type="text" size="40" value="' . $address . '" name="cntctfrm_contact_address" id="cntctfrm_contact_address' . $cntctfrm_form_countid . '" />';
2348
  $content .= '</div>';
2349
  $content .= '</div>';
2350
  }
@@ -2352,13 +2567,13 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2352
  case 'cntctfrm_contact_email':
2353
  $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_email_wrap">';
2354
  $content .= '<div class="cntctfrm_label cntctfrm_label_email">
2355
- <label for="cntctfrm_contact_email' . $cntctfrm_form_countid . '">' . $cntctfrm_options['cntctfrm_email_label'][ $lang ] . ( $cntctfrm_options['cntctfrm_required_email_field'] == 1 ? ' <span class="required">' . $cntctfrm_options['cntctfrm_required_symbol'] . '</span></label>' : '</label>' ) . '
2356
  </div>';
2357
- if ( isset( $cntctfrm_error_message['error_email'] ) && $cntctfrm_form_count == $cntctfrm_form_submited ) {
2358
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_email'] . '</div>';
2359
  }
2360
  $content .= '<div class="cntctfrm_input cntctfrm_input_email">
2361
- <input class="text" type="text" size="40" value="' . $email . '" name="cntctfrm_contact_email" id="cntctfrm_contact_email' . $cntctfrm_form_countid . '" />';
2362
  $content .= '</div>';
2363
  $content .= '</div>';
2364
  break;
@@ -2366,13 +2581,13 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2366
  if ( 1 == $cntctfrm_options['cntctfrm_display_phone_field'] ) {
2367
  $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_phone_wrap">';
2368
  $content .= '<div class="cntctfrm_label cntctfrm_label_phone">
2369
- <label for="cntctfrm_contact_phone' . $cntctfrm_form_countid . '">' . $cntctfrm_options['cntctfrm_phone_label'][ $lang ] . ( $cntctfrm_options['cntctfrm_required_phone_field'] == 1 ? ' <span class="required">' . $cntctfrm_options['cntctfrm_required_symbol'] . '</span></label>' : '</label>' ) . '
2370
  </div>';
2371
- if ( isset( $cntctfrm_error_message['error_phone'] ) && $cntctfrm_form_count == $cntctfrm_form_submited ) {
2372
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_phone'] . '</div>';
2373
  }
2374
  $content .= '<div class="cntctfrm_input cntctfrm_input_phone">
2375
- <input class="text" type="text" size="40" value="' . $phone . '" name="cntctfrm_contact_phone" id="cntctfrm_contact_phone' . $cntctfrm_form_countid . '" />';
2376
  $content .= '</div>';
2377
  $content .= '</div>';
2378
  }
@@ -2380,26 +2595,26 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2380
  case 'cntctfrm_contact_subject':
2381
  $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_subject_wrap">';
2382
  $content .= '<div class="cntctfrm_label cntctfrm_label_subject">
2383
- <label for="cntctfrm_contact_subject' . $cntctfrm_form_countid . '">' . $cntctfrm_options['cntctfrm_subject_label'][ $lang ] . ( $cntctfrm_options['cntctfrm_required_subject_field'] == 1 ? ' <span class="required">' . $cntctfrm_options['cntctfrm_required_symbol'] . '</span></label>' : '</label>' ) . '
2384
  </div>';
2385
- if ( isset( $cntctfrm_error_message['error_subject'] ) && $cntctfrm_form_count == $cntctfrm_form_submited ) {
2386
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_subject'] . '</div>';
2387
  }
2388
  $content .= '<div class="cntctfrm_input cntctfrm_input_subject">
2389
- <input class="text" type="text" size="40" value="' . $subject . '" name="cntctfrm_contact_subject" id="cntctfrm_contact_subject' . $cntctfrm_form_countid . '" />';
2390
  $content .= '</div>';
2391
  $content .= '</div>';
2392
  break;
2393
  case 'cntctfrm_contact_message':
2394
  $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_message_wrap">';
2395
  $content .= '<div class="cntctfrm_label cntctfrm_label_message">
2396
- <label for="cntctfrm_contact_message' . $cntctfrm_form_countid . '">' . $cntctfrm_options['cntctfrm_message_label'][ $lang ] . ( $cntctfrm_options['cntctfrm_required_message_field'] == 1 ? ' <span class="required">' . $cntctfrm_options['cntctfrm_required_symbol'] . '</span></label>' : '</label>' ) . '
2397
  </div>';
2398
- if ( isset( $cntctfrm_error_message['error_message'] ) && $cntctfrm_form_count == $cntctfrm_form_submited ) {
2399
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_message'] . '</div>';
2400
  }
2401
  $content .= '<div class="cntctfrm_input cntctfrm_input_message">
2402
- <textarea rows="5" cols="30" name="cntctfrm_contact_message" id="cntctfrm_contact_message' . $cntctfrm_form_countid . '">' . $message . '</textarea>';
2403
  $content .= '</div>';
2404
  $content .= '</div>';
2405
  break;
@@ -2407,13 +2622,13 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2407
  if ( 1 == $cntctfrm_options['cntctfrm_attachment'] ) {
2408
  $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_attachment_wrap">';
2409
  $content .= '<div class="cntctfrm_label cntctfrm_label_attachment">
2410
- <label for="cntctfrm_contact_attachment' . $cntctfrm_form_countid . '">' . $cntctfrm_options['cntctfrm_attachment_label'][ $lang ] . '</label>
2411
  </div>';
2412
- if ( isset( $cntctfrm_error_message['error_attachment'] ) && $cntctfrm_form_count == $cntctfrm_form_submited ) {
2413
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_attachment'] . '</div>';
2414
  }
2415
  $content .= '<div class="cntctfrm_input cntctfrm_input_attachment">
2416
- <input type="file" name="cntctfrm_contact_attachment" id="cntctfrm_contact_attachment' . $cntctfrm_form_countid . '"' . ( isset( $cntctfrm_error_message['error_attachment'] ) ? "class='error'": "" ) . ' />';
2417
  if ( 1 == $cntctfrm_options['cntctfrm_attachment_explanations'] ) {
2418
  $content .= '<label class="cntctfrm_contact_attachment_extensions"><br />' . $cntctfrm_options['cntctfrm_attachment_tooltip'][ $lang ] . '</label>';
2419
  }
@@ -2432,12 +2647,12 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2432
  }
2433
  break;
2434
  case 'cntctfrm_subscribe':
2435
- if ( has_filter( 'sbscrbr_cntctfrm_checkbox_add' ) ) {
2436
  $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_checkbox_subscribe_wrap">';
2437
  $content .= '<div class="cntctfrm_checkbox cntctfrm_checkbox_subscribe">';
2438
  $cntctfrm_sbscrbr_checkbox = apply_filters( 'sbscrbr_cntctfrm_checkbox_add', array(
2439
  'form_id' => 'cntctfrm_' . $cntctfrm_form_count,
2440
- 'display' => ( isset( $cntctfrm_error_message['error_sbscrbr'] ) && $cntctfrm_form_count == $cntctfrm_form_submited ) ? $cntctfrm_error_message['error_sbscrbr'] : false ) );
2441
  if ( isset( $cntctfrm_sbscrbr_checkbox['content'] ) ) {
2442
  $content .= $cntctfrm_sbscrbr_checkbox['content'];
2443
  }
@@ -2446,13 +2661,36 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2446
  }
2447
  break;
2448
  case 'cntctfrm_captcha':
 
2449
  if ( has_filter( 'cntctfrm_display_captcha' ) ) {
2450
- $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_captcha_wrap">';
2451
- $content .= '<div class="cntctfrm_input cntctfrm_input_captcha">';
2452
- $content .= apply_filters( 'cntctfrm_display_captcha' , ( $cntctfrm_form_count == $cntctfrm_form_submited ) ? $cntctfrm_error_message : false, '', 'bws_contact' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2453
  $content .= '</div>';
2454
- $content .= '</div>';
2455
  }
 
2456
  break;
2457
  default:
2458
  break;
@@ -2465,7 +2703,7 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2465
  $content .= '<div class="clear"></div>';
2466
 
2467
  $cntctfrm_direction = is_rtl() ? 'rtl' : 'ltr';
2468
- $cntctfrm_submit_position_value = array(
2469
  'ltr' => array(
2470
  'left' => 1,
2471
  'right' => 2
@@ -2480,14 +2718,15 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2480
  for ( $i = 1; $i <= 2; $i++ ) {
2481
  $cntctfrm_column = ( $i == 1 ) ? 'first_column' : 'second_column';
2482
  $content .= '<div id="cntctfrm_submit_' . $cntctfrm_column . '" class="cntctfrm_column">';
2483
- if ( $i == $cntctfrm_submit_position_value[ $cntctfrm_direction ][ $cntctfrm_options['cntctfrm_submit_position'] ] ) {
2484
  $content .= '<div class="cntctfrm_input cntctfrm_input_submit" style="text-align: ' . $cntctfrm_options['cntctfrm_submit_position'] . ' !important;">';
2485
  if ( isset( $atts['id'] ) )
2486
  $content .= '<input type="hidden" value="' . esc_attr( $atts['id'] ) . '" name="cntctfrmmlt_shortcode_id">';
2487
  $content .= '<input type="hidden" value="send" name="cntctfrm_contact_action"><input type="hidden" value="Version: 3.30" />
2488
  <input type="hidden" value="' . esc_attr( $lang ) . '" name="cntctfrm_language">
2489
  <input type="hidden" value="' . $cntctfrm_form_count . '" name="cntctfrm_form_submited">
2490
- <input type="submit" value="'. $cntctfrm_options['cntctfrm_submit_label'][ $lang ] . '" class="cntctfrm_contact_submit" />
 
2491
  </div>';
2492
  }
2493
  $content .= '</div>';
@@ -2500,21 +2739,73 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2500
  }
2501
  }
2502
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2503
  if ( ! function_exists( 'cntctfrm_check_and_send' ) ) {
2504
  function cntctfrm_check_and_send() {
2505
  global $cntctfrm_result, $cntctfrm_options;
2506
  if ( ( isset( $_POST['cntctfrm_contact_action'] ) && isset( $_POST['cntctfrm_language'] ) ) || true === $cntctfrm_result ) {
2507
- require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
2508
- if ( is_plugin_active( 'contact-form-multi/contact-form-multi.php' ) || is_plugin_active( 'contact-form-multi-pro/contact-form-multi-pro.php' ) ) {
2509
-
2510
- if ( ! isset( $_POST['cntctfrmmlt_shortcode_id'] ) )
2511
- $cntctfrm_options = get_option( 'cntctfrmmlt_options' );
2512
- else
2513
- $cntctfrm_options = get_option( 'cntctfrmmlt_options_' . $_POST['cntctfrmmlt_shortcode_id'] );
2514
-
2515
- } else {
2516
- $cntctfrm_options = get_option( 'cntctfrm_options' );
2517
- }
2518
 
2519
  if ( isset( $_POST['cntctfrm_contact_action'] ) ) {
2520
  /* Check all input data */
@@ -2535,12 +2826,19 @@ if ( ! function_exists( 'cntctfrm_check_and_send' ) ) {
2535
  /* Check all input data */
2536
  if ( ! function_exists( 'cntctfrm_check_form' ) ) {
2537
  function cntctfrm_check_form() {
2538
- global $cntctfrm_error_message, $cntctfrm_options;
 
 
 
 
 
 
 
 
2539
  $language = isset( $_POST['cntctfrm_language'] ) ? $_POST['cntctfrm_language'] : 'default';
2540
  $cntctfrm_path_of_uploaded_file = $cntctfrm_result = "";
2541
  /* Error messages array */
2542
  $cntctfrm_error_message = array();
2543
-
2544
  $name = isset( $_POST['cntctfrm_contact_name'] ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_name'] ) ) : "";
2545
  $address = isset( $_POST['cntctfrm_contact_address'] ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_address'] ) ) : "";
2546
  $email = isset( $_POST['cntctfrm_contact_email'] ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_email'] ) ) : "";
@@ -2625,8 +2923,14 @@ if ( ! function_exists( 'cntctfrm_check_form' ) ) {
2625
  unset( $cntctfrm_error_message['error_subject'] );
2626
  if ( 1 == $cntctfrm_options['cntctfrm_required_message_field'] && "" != $message )
2627
  unset( $cntctfrm_error_message['error_message'] );
 
2628
  /* If captcha plugin exists */
2629
- $result = apply_filters( 'cntctfrm_check_form', true );
 
 
 
 
 
2630
  if ( false === $result ) { /* for CAPTCHA older than PRO - v1.0.7, PLUS - v1.1.0 v FREE - 1.2.5 */
2631
  $cntctfrm_error_message['error_captcha'] = $cntctfrm_options['cntctfrm_captcha_error'][ $language ];
2632
  } else if ( is_string( $result ) && ! empty( $result ) ) {
@@ -2653,12 +2957,12 @@ if ( ! function_exists( 'cntctfrm_check_form' ) ) {
2653
  }
2654
  } else {
2655
  $uploads = wp_upload_dir();
2656
- if ( ! isset( $uploads['path'] ) && isset ( $uploads['error'] ) )
2657
  $cntctfrm_error_message['error_attachment'] = $uploads['error'];
2658
  else
2659
  $cntctfrm_path_of_uploaded_file = $uploads['path'] . "/" . 'cntctfrm_' . md5( sanitize_file_name( $_FILES["cntctfrm_contact_attachment"]["name"] ) . time() . $email ) . '_' . sanitize_file_name( $_FILES["cntctfrm_contact_attachment"]["name"] );
2660
  }
2661
- $cntctfrm_path_of_uploaded_file = stripslashes( esc_html( $cntctfrm_path_of_uploaded_file ) );
2662
  $tmp_path = $_FILES["cntctfrm_contact_attachment"]["tmp_name"];
2663
  $path_info = pathinfo( $cntctfrm_path_of_uploaded_file );
2664
 
@@ -2713,7 +3017,13 @@ if ( ! function_exists( 'cntctfrm_check_form' ) ) {
2713
  unset( $cntctfrm_error_message['error_form'] );
2714
  /* If all is good - send mail */
2715
  $cntctfrm_result = cntctfrm_send_mail();
2716
- do_action( 'cntctfrm_check_dispatch', $cntctfrm_result );
 
 
 
 
 
 
2717
  }
2718
  return $cntctfrm_result;
2719
  }
@@ -2745,7 +3055,12 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
2745
  if ( isset( $_SESSION['cntctfrm_send_mail'] ) && true == $_SESSION['cntctfrm_send_mail'] )
2746
  return true;
2747
 
2748
- $to = 'user' == $cntctfrm_options['cntctfrm_select_email'] ? $user->user_email : $cntctfrm_options['cntctfrm_custom_email'];
 
 
 
 
 
2749
 
2750
  if ( "" == $to ) {
2751
  /* If email options are not certain choose admin email */
@@ -2798,74 +3113,109 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
2798
  }
2799
  }
2800
  /* Message */
 
 
 
2801
  if ( 1 == $cntctfrm_options['cntctfrm_html_email'] ) {
2802
  $message_text = '<html>
2803
- <head>
2804
- <title>' . __( "Contact from", 'contact-form-plugin' ) . ' ' . get_bloginfo('name') . '</title>
2805
- </head>
2806
- <body>
2807
- <table>';
2808
- if ( 1 == $cntctfrm_options['cntctfrm_display_name_field'] ) {
2809
- $message_text .= '<tr><td width="160">';
2810
- $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_name_label'][ $lang ] : __( "Name", 'contact-form-plugin' );
2811
- $message_text .= '</td><td>' . $name . '</td></tr>';
2812
- }
2813
-
2814
- if ( 1 == $cntctfrm_options['cntctfrm_display_address_field'] ) {
2815
- $message_text .= '<tr><td>';
2816
- $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_address_label'][ $lang ] : __( "Address", 'contact-form-plugin' );
2817
- $message_text .= '</td><td>' . $address . '</td></tr>';
2818
- }
2819
-
2820
- $message_text .= '<tr><td>';
2821
- $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_email_label'][ $lang ] : __( "Email", 'contact-form-plugin' );
2822
- $message_text .= '</td><td>' . $email . '</td></tr>';
2823
-
2824
- if ( 1 == $cntctfrm_options['cntctfrm_display_phone_field'] ) {
2825
- $message_text .= '<tr><td>';
2826
- $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_phone_label'][ $lang ] : __( "Phone", 'contact-form-plugin' );
2827
- $message_text .= '</td><td>' . $phone . '</td></tr>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2828
  }
 
2829
 
2830
- $message_text .= '<tr><td>';
2831
- $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_subject_label'][ $lang ] : __( "Subject", 'contact-form-plugin' );
2832
- $message_text .= '</td><td>' . $subject . '</td></tr>
2833
- <tr><td>';
2834
- $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_message_label'][ $lang ] : __( "Message", 'contact-form-plugin' );
2835
- $message_text .= '</td><td>' . $message . '</td>
2836
- </tr>
2837
- <tr><td>' . __( "Site", 'contact-form-plugin' ) . '</td><td>' . get_bloginfo("url") . '</td></tr>
2838
- <tr>
2839
- <td><br /></td><td><br /></td>
2840
- </tr>';
2841
  $message_text_for_user = $message_text . '</table></body></html>';
2842
- $message_text .= $user_info_string . '</table></body></html>';
2843
  } else {
2844
- $message_text = '';
2845
- if ( 1 == $cntctfrm_options['cntctfrm_display_name_field'] ) {
2846
- $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_name_label'][ $lang ] : __( "Name", 'contact-form-plugin' );
2847
- $message_text .= ': ' . $name . "\n";
2848
- }
2849
- if ( 1 == $cntctfrm_options['cntctfrm_display_address_field'] ) {
2850
- $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_address_label'][ $lang ] : __( "Address", 'contact-form-plugin' );
2851
- $message_text .= ': ' . $address . "\n";
2852
- }
2853
- $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_email_label'][ $lang ] : __( "Email", 'contact-form-plugin' );
2854
- $message_text .= ': ' . $email . "\n";
2855
- if ( 1 == $cntctfrm_options['cntctfrm_display_phone_field'] ) {
2856
- $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_phone_label'][ $lang ] : __( "Phone", 'contact-form-plugin' );
2857
- $message_text .= ': ' . $phone . "\n";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2858
  }
2859
- $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_subject_label'][ $lang ] : __( "Subject", 'contact-form-plugin' );
2860
- $message_text .= ': ' . $subject . "\n";
2861
- $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_message_label'][ $lang ] : __( "Message", 'contact-form-plugin' );
2862
- $message_text .= ': ' . $message . "\n" .
2863
- __( "Site", 'contact-form-plugin' ) . ': ' . get_bloginfo("url") . "\n"
2864
- . "\n";
2865
  $message_text_for_user = $message_text;
2866
  $message_text .= $user_info_string;
2867
  }
2868
 
 
2869
  do_action( 'cntctfrm_get_mail_data', array( 'sendto' => $to, 'refer' => $form_action_url, 'useragent' => $user_agent ) );
2870
 
2871
  if ( ! function_exists( 'is_plugin_active' ) )
@@ -3129,29 +3479,39 @@ if ( ! function_exists ( 'cntctfrm_admin_head' ) ) {
3129
  }
3130
  }
3131
 
3132
- if ( ! function_exists ( 'cntctfrm_wp_head' ) ) {
3133
- function cntctfrm_wp_head() {
3134
- $cntctfrm_plugin_info = get_plugin_data( dirname( __FILE__ ) . '/contact_form.php', false );
3135
  wp_enqueue_style( 'cntctfrm_form_style', plugins_url( 'css/form_style.css', __FILE__ ), false, $cntctfrm_plugin_info["Version"] );
3136
- wp_enqueue_script( 'cntctfrm_js', plugins_url( 'js/cntctfrm.js', __FILE__ ), array( 'jquery' ) );
 
 
 
 
 
 
 
 
3137
  }
3138
  }
3139
 
3140
  if ( ! function_exists ( 'cntctfrm_add_language' ) ) {
3141
  function cntctfrm_add_language() {
3142
- check_ajax_referer( plugin_basename( __FILE__ ), 'cntctfrm_ajax_nonce_field' );
3143
 
3144
- $lang = strip_tags( preg_replace( '/<[^>]*>/', '', preg_replace( '/<script.*<\/[^>]*>/', '', htmlspecialchars( $_REQUEST['lang'] ) ) ) );
 
 
 
3145
 
3146
- /* Check contact-form-multi plugin */
3147
- if ( is_plugin_active( 'contact-form-multi/contact-form-multi.php' ) )
3148
- $contact_form_multi_active = true;
3149
- if ( is_plugin_active( 'contact-form-multi-pro/contact-form-multi-pro.php' ) )
3150
- $contact_form_multi_pro_active = true;
3151
 
3152
- if ( isset( $contact_form_multi_active ) || isset( $contact_form_multi_pro_active ) ) {
3153
- if ( isset( $_SESSION['cntctfrmmlt_id_form'] ) && get_option( 'cntctfrmmlt_options_' . $_SESSION['cntctfrmmlt_id_form'] ) ) {
3154
- $cntctfrm_options = get_option( 'cntctfrmmlt_options_' . $_SESSION['cntctfrmmlt_id_form'] );
3155
  } else {
3156
  $cntctfrm_options = get_option( 'cntctfrmmlt_options' );
3157
  }
@@ -3162,40 +3522,43 @@ if ( ! function_exists ( 'cntctfrm_add_language' ) ) {
3162
  if ( ! in_array( $lang, $cntctfrm_options['cntctfrm_language'] ) ) {
3163
  $cntctfrm_options['cntctfrm_language'][] = $lang;
3164
 
3165
- if ( isset ( $contact_form_multi_active ) ) {
3166
- $cntctfrmmlt_options_main = get_option( 'cntctfrmmlt_options_main' );
3167
- update_option( 'cntctfrmmlt_options_' . $cntctfrmmlt_options_main['id_form'], $cntctfrm_options );
3168
- } elseif ( isset( $contact_form_multi_pro_active ) ) {
3169
- $cntctfrmmltpr_options_main = get_option( 'cntctfrmmltpr_options_main' );
3170
- update_option( 'cntctfrmmlt_options_' . $cntctfrmmltpr_options_main['id_form'], $cntctfrm_options );
3171
  } else {
3172
  update_option( 'cntctfrm_options', $cntctfrm_options );
3173
  }
 
3174
  }
3175
 
3176
- if ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) {
3177
  $result = __( "Use shortcode", 'contact-form-plugin' ) . ' <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=' . $lang . ']</span> ' . __( "for this language", 'contact-form-plugin' );
3178
  } else {
3179
  $result = __( "Use shortcode", 'contact-form-plugin' ) . ' <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=' . $lang . ' id=' . $_SESSION['cntctfrmmlt_id_form'] . ']</span> ' . __( "for this language", 'contact-form-plugin' );
3180
  }
3181
 
3182
- echo json_encode( $result );
3183
- die();
 
 
3184
  }
3185
  }
3186
 
3187
  if ( ! function_exists ( 'cntctfrm_remove_language' ) ) {
3188
  function cntctfrm_remove_language() {
3189
- check_ajax_referer( plugin_basename( __FILE__ ), 'cntctfrm_ajax_nonce_field' );
3190
- /* Check contact-form-multi plugin */
3191
- if ( is_plugin_active( 'contact-form-multi/contact-form-multi.php' ) )
3192
- $contact_form_multi_active = true;
3193
- if ( is_plugin_active( 'contact-form-multi-pro/contact-form-multi-pro.php' ) )
3194
- $contact_form_multi_pro_active = true;
3195
 
3196
- if ( isset( $contact_form_multi_active ) || isset( $contact_form_multi_pro_active ) ) {
3197
- if ( isset( $_SESSION['cntctfrmmlt_id_form'] ) && get_option( 'cntctfrmmlt_options_' . $_SESSION['cntctfrmmlt_id_form'] ) ) {
3198
- $cntctfrm_options = get_option( 'cntctfrmmlt_options_' . $_SESSION['cntctfrmmlt_id_form'] );
 
 
3199
  } else {
3200
  $cntctfrm_options = get_option( 'cntctfrmmlt_options' );
3201
  }
@@ -3203,65 +3566,68 @@ if ( ! function_exists ( 'cntctfrm_remove_language' ) ) {
3203
  $cntctfrm_options = get_option( 'cntctfrm_options' );
3204
  }
3205
 
3206
- if ( $key = array_search( $_REQUEST['lang'], $cntctfrm_options['cntctfrm_language'] ) !== false )
3207
- $cntctfrm_options['cntctfrm_language'] = array_diff( $cntctfrm_options['cntctfrm_language'], array( $_REQUEST['lang'] ) );
3208
- if ( isset( $cntctfrm_options['cntctfrm_name_label'][ $_REQUEST['lang'] ] ) )
3209
- unset( $cntctfrm_options['cntctfrm_name_label'][ $_REQUEST['lang'] ] );
3210
- if ( isset( $cntctfrm_options['cntctfrm_address_label'][ $_REQUEST['lang'] ] ) )
3211
- unset( $cntctfrm_options['cntctfrm_address_label'][ $_REQUEST['lang'] ] );
3212
- if ( isset( $cntctfrm_options['cntctfrm_email_label'][ $_REQUEST['lang'] ] ) )
3213
- unset( $cntctfrm_options['cntctfrm_email_label'][ $_REQUEST['lang'] ] );
3214
- if ( isset( $cntctfrm_options['cntctfrm_phone_label'][ $_REQUEST['lang'] ] ) )
3215
- unset( $cntctfrm_options['cntctfrm_phone_label'][ $_REQUEST['lang'] ] );
3216
- if ( isset( $cntctfrm_options['cntctfrm_subject_label'][ $_REQUEST['lang'] ] ) )
3217
- unset( $cntctfrm_options['cntctfrm_subject_label'][ $_REQUEST['lang'] ] );
3218
- if ( isset( $cntctfrm_options['cntctfrm_message_label'][ $_REQUEST['lang'] ] ) )
3219
- unset( $cntctfrm_options['cntctfrm_message_label'][ $_REQUEST['lang'] ] );
3220
- if ( isset( $cntctfrm_options['cntctfrm_attachment_label'][ $_REQUEST['lang'] ] ) )
3221
- unset( $cntctfrm_options['cntctfrm_attachment_label'][ $_REQUEST['lang'] ] );
3222
- if ( isset( $cntctfrm_options['cntctfrm_attachment_tooltip'][ $_REQUEST['lang'] ] ) )
3223
- unset( $cntctfrm_options['cntctfrm_attachment_tooltip'][ $_REQUEST['lang'] ] );
3224
- if ( isset( $cntctfrm_options['cntctfrm_send_copy_label'][ $_REQUEST['lang'] ] ) )
3225
- unset( $cntctfrm_options['cntctfrm_send_copy_label'][ $_REQUEST['lang'] ] );
3226
- if ( isset( $cntctfrm_options['cntctfrm_thank_text'][ $_REQUEST['lang'] ] ) )
3227
- unset( $cntctfrm_options['cntctfrm_thank_text'][ $_REQUEST['lang'] ] );
3228
- if ( isset( $cntctfrm_options['cntctfrm_submit_label'][ $_REQUEST['lang'] ] ) )
3229
- unset( $cntctfrm_options['cntctfrm_submit_label'][ $_REQUEST['lang'] ]);
3230
- if ( isset( $cntctfrm_options['cntctfrm_name_error'][ $_REQUEST['lang'] ] ) )
3231
- unset( $cntctfrm_options['cntctfrm_name_error'][ $_REQUEST['lang'] ] );
3232
- if ( isset( $cntctfrm_options['cntctfrm_address_error'][ $_REQUEST['lang'] ] ) )
3233
- unset( $cntctfrm_options['cntctfrm_address_error'][ $_REQUEST['lang'] ] );
3234
- if ( isset( $cntctfrm_options['cntctfrm_email_error'][ $_REQUEST['lang'] ] ) )
3235
- unset( $cntctfrm_options['cntctfrm_email_error'][ $_REQUEST['lang'] ] );
3236
- if ( isset( $cntctfrm_options['cntctfrm_phone_error'][ $_REQUEST['lang'] ] ) )
3237
- unset( $cntctfrm_options['cntctfrm_phone_error'][ $_REQUEST['lang'] ] );
3238
- if ( isset( $cntctfrm_options['cntctfrm_subject_error'][ $_REQUEST['lang'] ] ) )
3239
- unset( $cntctfrm_options['cntctfrm_subject_error'][ $_REQUEST['lang'] ] );
3240
- if ( isset( $cntctfrm_options['cntctfrm_message_error'][ $_REQUEST['lang'] ] ) )
3241
- unset( $cntctfrm_options['cntctfrm_message_error'][ $_REQUEST['lang'] ] );
3242
- if ( isset( $cntctfrm_options['cntctfrm_attachment_error'][ $_REQUEST['lang'] ] ) )
3243
- unset( $cntctfrm_options['cntctfrm_attachment_error'][ $_REQUEST['lang'] ] );
3244
- if ( isset( $cntctfrm_options['cntctfrm_attachment_upload_error'][ $_REQUEST['lang'] ] ) )
3245
- unset( $cntctfrm_options['cntctfrm_attachment_upload_error'][ $_REQUEST['lang'] ] );
3246
- if ( isset( $cntctfrm_options['cntctfrm_attachment_move_error'][ $_REQUEST['lang'] ] ) )
3247
- unset( $cntctfrm_options['cntctfrm_attachment_move_error'][ $_REQUEST['lang'] ] );
3248
- if ( isset( $cntctfrm_options['cntctfrm_attachment_size_error'][ $_REQUEST['lang'] ] ) )
3249
- unset( $cntctfrm_options['cntctfrm_attachment_size_error'][ $_REQUEST['lang'] ] );
3250
- if ( isset( $cntctfrm_options['cntctfrm_captcha_error'][ $_REQUEST['lang'] ] ) )
3251
- unset( $cntctfrm_options['cntctfrm_captcha_error'][ $_REQUEST['lang'] ] );
3252
- if ( isset( $cntctfrm_options['cntctfrm_form_error'][ $_REQUEST['lang'] ] ) )
3253
- unset( $cntctfrm_options['cntctfrm_form_error'][ $_REQUEST['lang'] ] );
3254
-
3255
- if ( isset( $contact_form_multi_active ) ) {
3256
- $cntctfrmmlt_options_main = get_option( 'cntctfrmmlt_options_main' );
3257
- update_option( 'cntctfrmmlt_options_' . $cntctfrmmlt_options_main['id_form'], $cntctfrm_options );
3258
- } elseif ( isset( $contact_form_multi_pro_active ) ) {
3259
- $cntctfrmmltpr_options_main = get_option( 'cntctfrmmltpr_options_main' );
3260
- update_option( 'cntctfrmmlt_options_' . $cntctfrmmltpr_options_main['id_form'], $cntctfrm_options );
 
3261
  } else {
3262
  update_option( 'cntctfrm_options', $cntctfrm_options );
3263
  }
3264
- die();
 
 
3265
  }
3266
  }
3267
 
@@ -3274,7 +3640,7 @@ if ( ! function_exists ( 'cntctfrm_plugin_banner' ) ) {
3274
  if ( 'plugins.php' == $hook_suffix ) {
3275
  $cntctfrm_options = get_option( 'cntctfrm_options' );
3276
  if ( isset( $cntctfrm_options['first_install'] ) && strtotime( '-1 week' ) > $cntctfrm_options['first_install'] ) {
3277
- bws_plugin_banner( $cntctfrm_plugin_info, 'cntctfrm', 'contact-form', 'f575dc39cba54a9de88df346eed52101', '77', '//ps.w.org/contact-form-plugin/assets/icon-128x128.png' );
3278
  }
3279
  bws_plugin_banner_to_settings( $cntctfrm_plugin_info, 'cntctfrm_options', 'contact-form-plugin', 'admin.php?page=contact_form.php' );
3280
  }
@@ -3347,37 +3713,42 @@ if ( ! function_exists ( 'cntctfrm_shortcode_button_content' ) ) {
3347
  $lang_default = '...';
3348
 
3349
  /* Check contact-form-multi plugin */
3350
- $cntctfrm_multi_active = false;
3351
- if ( is_plugin_active( 'contact-form-multi/contact-form-multi.php' ) || is_plugin_active( 'contact-form-multi-pro/contact-form-multi-pro.php' ) ) {
3352
- if ( is_plugin_active( 'contact-form-multi/contact-form-multi.php' ) ) {
3353
- $cntctfrm_options_prefix = 'cntctfrmmlt';
3354
- } else if ( is_plugin_active( 'contact-form-multi-pro/contact-form-multi-pro.php' ) ) {
3355
- $cntctfrm_options_prefix = 'cntctfrmmltpr';
 
3356
  }
3357
- $cntctfrm_multi_options_main = get_option( $cntctfrm_options_prefix . '_options_main' );
3358
- if ( $cntctfrm_multi_options_main['name_id_form'] ) {
3359
- $cntctfrm_multi_active = true;
3360
- $cntctfrm_multi_forms = $cntctfrm_multi_ids = $cntctfrm_multi_forms_languages = array();
3361
- foreach ( $cntctfrm_multi_options_main['name_id_form'] as $id => $title ) {
3362
- $cntctfrm_multi_forms[ $id ] = $title;
3363
- array_push( $cntctfrm_multi_ids, $id );
3364
- $cntctfrmmlt_multi_options = get_option( 'cntctfrmmlt_options_' . $id );
3365
- $cntctfrmmlt_language = isset( $cntctfrmmlt_multi_options['cntctfrm_language'] ) ? $cntctfrmmlt_multi_options['cntctfrm_language'] : array();
3366
- array_unshift( $cntctfrmmlt_language, 'default' );
3367
- $cntctfrm_multi_forms_languages[ $id ] = $cntctfrmmlt_language;
 
 
 
3368
  }
3369
  }
3370
  }
3371
- if ( ! $cntctfrm_multi_active ) {
 
3372
  $cntctfrm_options = get_option( 'cntctfrm_options' );
3373
  array_unshift( $cntctfrm_options['cntctfrm_language'], 'default' );
3374
  } ?>
3375
  <div id="cntctfrm" style="display:none;">
3376
  <fieldset>
3377
- <?php if ( $cntctfrm_multi_active ) { ?>
3378
  <label>
3379
  <select name="cntctfrm_forms_list" id="cntctfrm_forms_list">
3380
- <?php foreach ( $cntctfrm_multi_forms as $id => $title ) {
3381
  printf( '<option value="%1$s">%2$s</option>', $id, $title );
3382
  } ?>
3383
  </select>
@@ -3387,7 +3758,7 @@ if ( ! function_exists ( 'cntctfrm_shortcode_button_content' ) ) {
3387
  <label>
3388
  <select name="cntctfrm_multi_languages_list" id="cntctfrm_multi_languages_list">
3389
  <?php $i = 1;
3390
- foreach ( $cntctfrm_multi_forms_languages as $id => $languages ) {
3391
  foreach ( $languages as $language ) {
3392
  printf( '<option value="%1$s" data-form-id="%2$s" %3$s>%4$s</option>', strtolower( $language ), $id, ( $i > 1 ) ? 'style="display: none;"' : '', ( $language == 'default' ) ? $lang_default : $cntctfrm_lang_codes[ $language ] );
3393
  }
@@ -3396,7 +3767,7 @@ if ( ! function_exists ( 'cntctfrm_shortcode_button_content' ) ) {
3396
  </select>
3397
  <span class="title"><?php _e( 'Language', 'contact-form-plugin' ); ?></span>
3398
  </label>
3399
- <input class="bws_default_shortcode" type="hidden" name="default" value="[bestwebsoft_contact_form id=<?php echo array_shift( $cntctfrm_multi_ids ); ?>]" />
3400
  <?php } else { ?>
3401
  <label>
3402
  <select name="cntctfrm_languages_list" id="cntctfrm_languages_list">
@@ -3413,7 +3784,7 @@ if ( ! function_exists ( 'cntctfrm_shortcode_button_content' ) ) {
3413
  function cntctfrm_shortcode_init() {
3414
  (function($) {
3415
  var current_object = '<?php echo ( $wp_version < 3.9 ) ? "#TB_ajaxContent" : ".mce-reset" ?>';
3416
- <?php if ( $cntctfrm_multi_active ) { ?>
3417
  $( current_object + ' #bws_shortcode_display' ).bind( 'display_shortcode', function() {
3418
  var cntctfrm_form_id = $( current_object + ' #cntctfrm_forms_list option:selected' ).val(),
3419
  cntctfrm_get_form_language = $( current_object + ' #cntctfrm_multi_languages_list option:selected' ).val(),
@@ -3503,7 +3874,8 @@ add_filter( 'plugin_action_links', 'cntctfrm_plugin_action_links', 10, 2 );
3503
  add_filter( 'plugin_row_meta', 'cntctfrm_register_plugin_links', 10, 2 );
3504
 
3505
  add_action( 'admin_enqueue_scripts', 'cntctfrm_admin_head' );
3506
- add_action( 'wp_enqueue_scripts', 'cntctfrm_wp_head' );
 
3507
 
3508
  add_shortcode( 'contact_form', 'cntctfrm_display_form' );
3509
  add_shortcode( 'bws_contact_form', 'cntctfrm_display_form' );
1
  <?php
2
  /*
3
  Plugin Name: Contact Form by BestWebSoft
4
+ Plugin URI: http://bestwebsoft.com/products/contact-form/
5
+ Description: Allow customers to reach you using secure contact form plugin any website must have.
6
  Author: BestWebSoft
7
  Text Domain: contact-form-plugin
8
  Domain Path: /languages
9
+ Version: 4.0.1
10
  Author URI: http://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
122
  global $cntctfrm_options, $cntctfrm_option_defaults, $cntctfrm_plugin_info;
123
  $cntctfrm_db_version = "1.0";
124
 
125
+ $contact_form_multi_active = cntctfrm_check_cf_multi_active();
126
+
127
  if ( ! $cntctfrm_plugin_info )
128
  $cntctfrm_plugin_info = get_plugin_data( __FILE__ );
129
 
164
  'cntctfrm_display_user_agent' => 1,
165
  'cntctfrm_language' => array(),
166
  'cntctfrm_change_label' => 0,
167
+ 'cntctfrm_name_label' => array( 'default' => __( "Name", 'contact-form-plugin' ) . ':' ),
168
+ 'cntctfrm_address_label' => array( 'default' => __( "Address", 'contact-form-plugin' ) . ':' ),
169
+ 'cntctfrm_email_label' => array( 'default' => __( "Email Address", 'contact-form-plugin' ) . ':' ),
170
+ 'cntctfrm_phone_label' => array( 'default' => __( "Phone number", 'contact-form-plugin' ) . ':' ),
171
+ 'cntctfrm_subject_label' => array( 'default' => __( "Subject", 'contact-form-plugin' ) . ':' ),
172
+ 'cntctfrm_message_label' => array( 'default' => __( "Message", 'contact-form-plugin' ) . ':' ),
173
+ 'cntctfrm_attachment_label' => array( 'default' => __( "Attachment", 'contact-form-plugin' ) . ':' ),
174
  'cntctfrm_attachment_tooltip' => array( 'default' => __( "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT.", 'contact-form-plugin' ) ),
175
  'cntctfrm_send_copy_label' => array( 'default' => __( "Send me a copy", 'contact-form-plugin' ) ),
176
  'cntctfrm_submit_label' => array( 'default' => __( "Submit", 'contact-form-plugin' ) ),
214
  'suggest_feature_banner' => 1
215
  );
216
 
217
+ $plugin_basename = plugin_basename( __FILE__ );
218
+
219
+ if ( isset( $_POST['cntctfrm_add_language_button'] ) && check_admin_referer( $plugin_basename, 'cntctfrm_nonce_name' ) )
220
+ cntctfrm_add_language();
221
+
222
+ if( isset( $_POST['cntctfrm_delete_button'] ) && check_admin_referer( $plugin_basename, 'cntctfrm_nonce_name' ) )
223
+ cntctfrm_remove_language();
224
+
225
  /* Install the option defaults */
226
  if ( ! get_option( 'cntctfrm_options' ) )
227
  add_option( 'cntctfrm_options', $cntctfrm_option_defaults );
228
 
 
 
 
 
 
 
229
  /* Get options from the database for default options */
230
+ if ( $contact_form_multi_active ) {
231
  if ( ! get_option( 'cntctfrmmlt_options' ) )
232
  add_option( 'cntctfrmmlt_options', $cntctfrm_option_defaults );
233
 
299
  if ( get_option( 'cntctfrmmlt_options_' . $id ) ) {
300
  $cntctfrm_options = get_option( 'cntctfrmmlt_options_'. $id );
301
  } else {
302
+ if ( 'pro' == $contact_form_multi_active && $options_main = get_option( 'cntctfrmmltpr_options_main' ) ) {
303
+ /**/
304
+ } elseif ( $contact_form_multi_active ) {
305
+ $options_main = get_option( 'cntctfrmmlt_options_main' );
306
+ }
307
 
308
+ if ( 1 == $id && 1 == count( $options_main['name_id_form'] ) ) {
309
  add_option( 'cntctfrmmlt_options_1' , get_option( 'cntctfrm_options' ) );
310
  $cntctfrm_options = get_option( 'cntctfrmmlt_options_1' );
311
  } else {
408
  /* show pro features */
409
  $cntctfrm_options['hide_premium_options'] = array();
410
 
411
+ if ( $contact_form_multi_active ) {
412
  if ( isset( $_SESSION['cntctfrmmlt_id_form'] ) || $form_id ) {
413
  $id = ( $form_id ) ? $form_id : $_SESSION['cntctfrmmlt_id_form'];
414
  if ( get_option( 'cntctfrmmlt_options_' . $id ) ) {
428
  if ( ! isset( $cntctfrm_options['plugin_db_version'] ) || $cntctfrm_options['plugin_db_version'] != $cntctfrm_db_version ) {
429
  cntctfrm_db_create();
430
  $cntctfrm_options['plugin_db_version'] = $cntctfrm_db_version;
431
+ if ( $contact_form_multi_active ) {
432
  if ( isset( $_SESSION['cntctfrmmlt_id_form'] ) || $form_id ) {
433
  $id = ( $form_id ) ? $form_id : $_SESSION['cntctfrmmlt_id_form'];
434
  if ( get_option( 'cntctfrmmlt_options_' . $id ) ) {
501
  }
502
  }
503
 
504
+ /**
505
+ * @since 4.0.1
506
+ * @todo after 1.08.2017. Delete keys marked with # from $cntctfrm_related_plugins global massive. They are created for compatibility with versions of related plugins without modified prefixes or containing prefixes in options' names.
507
+ */
508
+ if ( ! function_exists( 'cntctfrm_related_plugins' ) ) {
509
+ function cntctfrm_related_plugins() {
510
+ global $cntctfrm_related_plugins;
511
 
512
+ $cntctfrm_related_plugins = array();
 
 
513
 
514
+ if ( ! function_exists( 'is_plugin_active' ) )
515
+ require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
 
516
 
517
  /* Get Captcha options */
518
+ if ( is_plugin_active( 'captcha/captcha.php' ) ) {
519
  $cptch_options = get_option( 'cptch_options' );
520
+
521
+ /*#*/$display_option = isset( $cptch_options['contact_form'] ) ? 'contact_form' : 'cptch_contact_form';
522
+ /*#*/$label = isset( $cptch_options['label_form'] ) ? 'label_form' : 'cptch_label_form';
523
+ /*#*/$required_symbol = isset( $cptch_options['required_symbol'] ) ? 'required_symbol' : 'cptch_required_symbol';
524
+ $cntctfrm_related_plugins['captcha'] = array(
525
+ 'options' => $cptch_options,
526
+ /*#*/'options_name' => 'cptch_options',
527
+ /*#*/'display_option' => $display_option,
528
+ /*#*/'label' => $label,
529
+ /*#*/'required_symbol' => $required_symbol,
530
+ 'settings_page' => 'captcha.php'
531
+ );
532
+ } elseif ( is_plugin_active( 'captcha-plus/captcha-plus.php' ) ) {
533
+ if ( $cptchpls_options = get_option( 'cptchpls_options' ) ) {
534
+ /*#*/ $options_name = 'cptchpls_options';
535
+ } elseif ( $cptchpls_options = get_option( 'cptch_options' ) ) {
536
+ /*#*/ $options_name = 'cptch_options';
537
+ }
538
+ /*#*/$display_option = isset( $cptchpls_options['contact_form'] ) ? 'contact_form' : 'cptchpls_contact_form';
539
+ /*#*/$label = isset( $cptch_options['label_form'] ) ? 'label_form' : 'cptchpls_label_form';
540
+ /*#*/$required_symbol = isset( $cptch_options['required_symbol'] ) ? 'required_symbol' : 'cptchpls_required_symbol';
541
+ $cntctfrm_related_plugins['captcha'] = array(
542
+ 'options' => $cptchpls_options,
543
+ /*#*/'options_name' => $options_name,
544
+ /*#*/'display_option' => $display_option,
545
+ /*#*/'label' => $label,
546
+ /*#*/'required_symbol' => $required_symbol,
547
+ 'settings_page' => 'captcha-plus.php'
548
+ );
549
+ } elseif( is_plugin_active( 'captcha-pro/captcha_pro.php' ) ) {
550
+ if ( $cptchpr_options = get_option( 'cptchpr_options' ) ) {
551
+ /*#*/ $options_name = 'cptchpr_options';
552
+ } elseif ( $cptchpr_options = get_option( 'cptch_options' ) ) {
553
+ /*#*/ $options_name = 'cptch_options';
554
+ }
555
+ /*#*/$display_option = isset( $cptchpr_options['contact_form'] ) ? 'contact_form' : 'cptchpr_contact_form';
556
+ /*#*/$label = isset( $cptch_options['label_form'] ) ? 'label_form' : 'cptchpr_label_form';
557
+ /*#*/$required_symbol = isset( $cptch_options['required_symbol'] ) ? 'required_symbol' : 'cptchpr_required_symbol';
558
+ $cntctfrm_related_plugins['captcha'] = array(
559
+ 'options' => $cptchpr_options,
560
+ /*#*/ 'options_name' => $options_name,
561
+ /*#*/ 'display_option' => $display_option,
562
+ /*#*/ 'label' => $label,
563
+ /*#*/ 'required_symbol' => $required_symbol,
564
+ 'settings_page' => 'captcha_pro.php'
565
+ );
566
+ }
567
+
568
+ /* Get Google Captcha options */
569
+ if( is_plugin_active( 'google-captcha/google-captcha.php' ) ) {
570
+ $gglcptch_options = get_option( 'gglcptch_options' );
571
+
572
+ $cntctfrm_related_plugins['google-captcha'] = array(
573
+ 'options' => $gglcptch_options,
574
+ /*#*/ 'options_name' => 'gglcptch_options',
575
+ 'settings_page' => 'google-captcha.php'
576
+ );
577
+ } elseif( is_plugin_active( 'google-captcha-pro/google-captcha-pro.php' ) ) {
578
+ if ( $gglcptchpr_options = get_option( 'gglcptchpr_options' ) ) {
579
+ /*#*/ $options_name = 'gglcptchpr_options';
580
+ } elseif ( $gglcptchpr_options = get_option( 'gglcptch_options' ) ) {
581
+ /*#*/ $options_name = 'gglcptch_options';
582
+ }
583
+ $cntctfrm_related_plugins['google-captcha'] = array(
584
+ 'options' => $gglcptchpr_options,
585
+ /*#*/ 'options_name' => $options_name,
586
+ 'settings_page' => 'google-captcha-pro.php'
587
+ );
588
+ }
589
+
590
  /* Get Subscriber options */
591
  if ( is_multisite() ) {
592
+ if( is_plugin_active( 'subscriber/subscriber.php' ) ) {
593
  $sbscrbr_options = get_site_option( 'sbscrbr_options' );
594
+
595
+ $cntctfrm_related_plugins['subscriber'] = array(
596
+ 'options' => $sbscrbr_options,
597
+ /*#*/ 'options_name' => 'sbscrbr_options',
598
+ 'settings_page' => 'sbscrbr_settings_page'
599
+ );
600
+ } elseif ( is_plugin_active( 'subscriber-pro/subscriber-pro.php' ) ) {
601
+ if ( $sbscrbrpr_options = get_site_option( 'sbscrbrpr_options' ) ) {
602
+ /*#*/ $options_name = 'sbscrbrpr_options';
603
+ } elseif ( $sbscrbrpr_options = get_site_option( 'sbscrbr_options' ) ) {
604
+ /*#*/ $options_name = 'sbscrbr_options';
605
+ }
606
+
607
+ $cntctfrm_related_plugins['subscriber'] = array(
608
+ 'options' => $sbscrbrpr_options,
609
+ /*#*/ 'options_name' => $options_name,
610
+ 'settings_page' => 'sbscrbrpr_settings_page'
611
+ );
612
+ }
613
  } else {
614
+ if( is_plugin_active( 'subscriber/subscriber.php' ) ) {
615
  $sbscrbr_options = get_option( 'sbscrbr_options' );
 
 
 
616
 
617
+ $cntctfrm_related_plugins['subscriber'] = array(
618
+ 'options' => $sbscrbr_options,
619
+ /*#*/ 'options_name' => 'sbscrbr_options',
620
+ 'settings_page' => 'sbscrbr_settings_page'
621
+ );
622
+ } elseif ( is_plugin_active( 'subscriber-pro/subscriber-pro.php' ) ) {
623
+ if ( $sbscrbrpr_options = get_option( 'sbscrbrpr_options' ) ) {
624
+ /*#*/ $options_name = 'sbscrbrpr_options';
625
+ } elseif ( $sbscrbrpr_options = get_option( 'sbscrbr_options' ) ) {
626
+ /*#*/ $options_name = 'sbscrbr_options';
627
+ }
628
 
629
+ $cntctfrm_related_plugins['subscriber'] = array(
630
+ 'options' => $sbscrbrpr_options,
631
+ /*#*/ 'options_name' => $options_name,
632
+ 'settings_page' => 'sbscrbrpr_settings_page'
633
+ );
634
+ }
635
+ }
636
+
637
+ /* Get Contact Form to DB options */
638
+ if( is_plugin_active( 'contact-form-to-db/contact_form_to_db.php' ) ) {
639
+ $cntctfrmtdb_options = get_option( 'cntctfrmtdb_options' );
640
+
641
+ /*#*/$save_option = isset( $cntctfrmtdb_options['save_messages_to_db'] ) ? 'save_messages_to_db' : 'cntctfrmtdb_save_messages_to_db';
642
+ $cntctfrm_related_plugins['contact-form-to-db'] = array(
643
+ 'options' => $cntctfrmtdb_options,
644
+ /*#*/ 'options_name' => 'cntctfrmtdb_options',
645
+ 'save_option' => $save_option,
646
+ 'settings_page' => 'cntctfrmtdb_settings'
647
+ );
648
+ } elseif ( is_plugin_active( 'contact-form-to-db-pro/contact_form_to_db_pro.php' ) ) {
649
+ if ( $cntctfrmtdbpr_options = get_option( 'cntctfrmtdbpr_options' ) ) {
650
+ /*#*/ $options_name = 'cntctfrmtdbpr_options';
651
+ } elseif ( $cntctfrmtdbpr_options = get_option( 'cntctfrmtdb_options' ) ) {
652
+ /*#*/ $options_name = 'cntctfrmtdb_options';
653
+ }
654
+ /*#*/$save_option = isset( $cntctfrmtdbpr_options['save_messages_to_db'] ) ? 'save_messages_to_db' : 'cntctfrmtdbpr_save_messages_to_db';
655
+ $cntctfrm_related_plugins['contact-form-to-db'] = array(
656
+ 'options' => $cntctfrmtdbpr_options,
657
+ /*#*/ 'options_name' => $options_name,
658
+ /*#*/ 'save_option' => $save_option,
659
+ 'settings_page' => 'cntctfrmtdbpr_settings'
660
+ );
661
+ }
662
+ }
663
+ }
664
+
665
+ if ( ! function_exists( 'cntctfrm_check_cf_multi_active' ) ) {
666
+ function cntctfrm_check_cf_multi_active() {
667
+ /* Check contact-form-multi (free) plugin */
668
+ if ( is_plugin_active( 'contact-form-multi/contact-form-multi.php' ) )
669
+ $contact_form_multi_active = true;
670
+
671
+ /* Check contact-form-multi-pro plugin */
672
+ if ( is_plugin_active( 'contact-form-multi-pro/contact-form-multi-pro.php' ) )
673
+ $contact_form_multi_pro_active = true;
674
+
675
+ if ( isset( $contact_form_multi_active ) )
676
+ return "free";
677
 
678
+ if ( isset( $contact_form_multi_pro_active ) )
679
+ return "pro";
680
+
681
+ return false;
682
+ }
683
+ }
684
+
685
+ /* Add settings page in admin area */
686
+ if ( ! function_exists( 'cntctfrm_get_ordered_fields' ) ) {
687
+ function cntctfrm_get_ordered_fields() {
688
+ global $cntctfrm_options, $cntctfrm_related_plugins;
689
+
690
+ if ( ! isset( $cntctfrm_options['cntctfrm_order_fields'] ) ) {
691
+ cntctfrm_settings();
692
  }
693
 
694
+ if ( empty( $cntctfrm_related_plugins ) )
695
+ cntctfrm_related_plugins();
696
+
697
+ $contact_form_multi_active = cntctfrm_check_cf_multi_active();
698
+
699
+ if ( ! $contact_form_multi_active ) {
700
+ $display_captcha = $display_google_captcha = $display_subscriber = false;
701
+
702
+ if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) )
703
+ $display_captcha = $cntctfrm_related_plugins['captcha']['options'][ $cntctfrm_related_plugins['captcha']['display_option'] ];
704
+
705
+ if ( array_key_exists( 'display_google_captcha', $cntctfrm_related_plugins ) )
706
+ $display_google_captcha = $cntctfrm_related_plugins['display_google_captcha']['options']['contact_form'];
707
+
708
+ if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) )
709
+ $display_subscriber = $cntctfrm_related_plugins['subscriber']['options']['contact_form'];
710
+ } else {
711
+ $display_captcha = ( isset( $cntctfrm_options['cntctfrm_display_captcha'] ) && 1 == $cntctfrm_options['cntctfrm_display_captcha'] ) ? true : false;
712
+ $display_google_captcha = ( isset( $cntctfrm_options['cntctfrm_display_google_captcha'] ) && 1 == $cntctfrm_options['cntctfrm_display_google_captcha'] ) ? true : false;
713
+ $display_subscriber = ( isset( $cntctfrm_options['cntctfrm_display_subscribe'] ) && 1 == $cntctfrm_options['cntctfrm_display_subscribe'] ) ? true : false;
714
  }
715
 
716
+ $default_order_fields = array(
717
  'cntctfrm_contact_name' => ( 1 == $cntctfrm_options['cntctfrm_display_name_field'] ) ? true : false,
718
  'cntctfrm_contact_address' => ( 1 == $cntctfrm_options['cntctfrm_display_address_field'] ) ? true : false,
719
  'cntctfrm_contact_email' => true,
722
  'cntctfrm_contact_message' => true,
723
  'cntctfrm_contact_attachment' => ( 1 == $cntctfrm_options['cntctfrm_attachment'] ) ? true : false,
724
  'cntctfrm_contact_send_copy' => ( 1 == $cntctfrm_options['cntctfrm_send_copy'] ) ? true : false,
725
+ 'cntctfrm_subscribe' => $display_subscriber,
726
+ 'cntctfrm_captcha' => $display_captcha || $display_google_captcha ? true : false,
727
  );
728
 
729
+ $display_fields = array();
730
+ foreach ( $default_order_fields as $field => $value ) {
731
  if ( $value == true ) {
732
+ array_push( $display_fields , $field );
733
  }
734
  }
735
 
736
+ $ordered_fields = array_merge( $cntctfrm_options['cntctfrm_order_fields']['first_column'], $cntctfrm_options['cntctfrm_order_fields']['second_column'] );
737
+ $diff_fields = array_diff( $display_fields, $ordered_fields );
738
 
739
+ foreach ( $diff_fields as $field ) {
740
  array_push( $cntctfrm_options['cntctfrm_order_fields'][ 'first_column' ], $field );
741
  }
742
 
747
  /* Add settings page in admin area */
748
  if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
749
  function cntctfrm_settings_page() {
750
+ global $cntctfrm_options, $wpdb, $cntctfrm_option_defaults, $wp_version, $cntctfrm_plugin_info, $cntctfrm_lang_codes, $cntctfrm_related_plugins;
751
+
752
+ if ( empty( $cntctfrm_related_plugins ) )
753
+ cntctfrm_related_plugins();
754
+
755
+ /* Check contact-form-multi plugin */
756
+ $contact_form_multi_active = cntctfrm_check_cf_multi_active();
757
+
758
  $error = $message = $notice = '';
759
  $plugin_basename = plugin_basename( __FILE__ );
760
 
761
+ if ( ! function_exists( 'get_plugins' ) )
762
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
763
 
764
  if ( ! isset( $_GET['action'] ) || 'additional' == $_GET['action'] || 'appearance' == $_GET['action'] ) {
765
  $all_plugins = get_plugins();
766
  }
767
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
768
  $userslogin = get_users( 'blog_id=' . $GLOBALS['blog_id'] . '&role=administrator' );
769
 
770
  if ( isset( $_POST['cntctfrm_form_appearance_submit'] ) && check_admin_referer( $plugin_basename, 'cntctfrm_nonce_name' ) ) {
771
 
772
+ $options_submit = array();
773
 
774
  if ( isset( $_POST['bws_hide_premium_options'] ) ) {
775
+ $hide_result = bws_hide_premium_options( $options_submit );
776
+ $options_submit = $hide_result['options'];
777
+ if ( $contact_form_multi_active ) {
778
+ $cntctfrm_options = array_merge( $cntctfrm_options, $options_submit );
779
  update_option( 'cntctfrm_options', $cntctfrm_options );
780
  }
781
  }
782
 
783
+ $layout = ( isset( $_POST['cntctfrm_layout'] ) ) ? (int) $_POST['cntctfrm_layout'] : 1;
784
 
785
+ $submit_position = ( isset( $_POST['cntctfrm_submit_position'] ) ) ? stripslashes( esc_html( $_POST['cntctfrm_submit_position'] ) ) : 'left';
786
 
787
+ $layout_first_column_string = stripslashes( esc_html( $_POST['cntctfrm_layout_first_column'] ) );
788
+ $layout_first_column = explode( ',', $layout_first_column_string );
789
+ $layout_first_column = array_diff( $layout_first_column, array('') );
790
 
791
+ $layout_second_column_string = stripslashes( esc_html( $_POST['cntctfrm_layout_second_column'] ) );
792
+ $layout_second_column = explode( ',', $layout_second_column_string );
793
+ $layout_second_column = array_diff( $layout_second_column, array('') );
794
 
795
+ if ( $layout === 1 && ! empty( $layout_second_column ) ) {
796
+ $layout_first_column = array_merge( $layout_first_column, $layout_second_column );
797
+ $layout_second_column = array();
798
  }
799
 
800
+ $options_submit['cntctfrm_layout'] = $layout;
801
+ $options_submit['cntctfrm_submit_position'] = $submit_position;
802
+ $options_submit['cntctfrm_order_fields']['first_column'] = $layout_first_column;
803
+ $options_submit['cntctfrm_order_fields']['second_column'] = $layout_second_column;
 
 
804
 
805
+ $cntctfrm_options = array_merge( $cntctfrm_options, $options_submit );
806
 
807
+ if ( 'pro' == $contact_form_multi_active && get_option( 'cntctfrmmltpr_options_main' ) ) {
808
+ $options_main = get_option( 'cntctfrmmltpr_options_main' );
809
 
810
+ if ( $options_main['id_form'] !== $_SESSION['cntctfrmmlt_id_form'] )
811
+ add_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $cntctfrm_options );
812
+ else if ( $options_main['id_form'] == $_SESSION['cntctfrmmlt_id_form'] )
813
+ update_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $cntctfrm_options );
814
+ } elseif ( $contact_form_multi_active ) {
815
+ $options_main = get_option( 'cntctfrmmlt_options_main' );
816
 
817
+ if ( $options_main['id_form'] !== $_SESSION['cntctfrmmlt_id_form'] )
818
+ add_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $cntctfrm_options );
819
+ else if ( $options_main['id_form'] == $_SESSION['cntctfrmmlt_id_form'] )
820
+ update_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $cntctfrm_options );
821
  } else {
822
  update_option( 'cntctfrm_options', $cntctfrm_options );
823
  }
827
  /* Save data for settings page */
828
  if ( isset( $_POST['cntctfrm_form_submit'] ) && check_admin_referer( $plugin_basename, 'cntctfrm_nonce_name' ) ) {
829
 
830
+ $options_submit = array();
831
 
832
  if ( isset( $_POST['bws_hide_premium_options'] ) ) {
833
+ $hide_result = bws_hide_premium_options( $options_submit );
834
+ $options_submit = $hide_result['options'];
835
+ if ( $contact_form_multi_active ) {
836
+ $cntctfrm_options = array_merge( $cntctfrm_options, $options_submit );
837
  update_option( 'cntctfrm_options', $cntctfrm_options );
838
  }
839
  }
840
 
841
+ $options_submit['cntctfrm_user_email'] = $_POST['cntctfrm_user_email'];
842
+ $options_submit['cntctfrm_custom_email'] = trim( stripslashes( esc_html( $_POST['cntctfrm_custom_email'] ) ), " ," );
843
+ $options_submit['cntctfrm_select_email'] = $_POST['cntctfrm_select_email'];
844
+ $options_submit['cntctfrm_from_email'] = $_POST['cntctfrm_from_email'];
845
+ $options_submit['cntctfrm_custom_from_email'] = stripslashes( esc_html( $_POST['cntctfrm_custom_from_email'] ) );
846
+
847
+ $options_submit['cntctfrm_mail_method'] = $_POST['cntctfrm_mail_method'];
848
+ $options_submit['cntctfrm_from_field'] = stripslashes( esc_html( $_POST['cntctfrm_from_field'] ) );
849
+ $options_submit['cntctfrm_select_from_field'] = $_POST['cntctfrm_select_from_field'];
850
+ $options_submit['cntctfrm_display_name_field'] = isset( $_POST['cntctfrm_display_name_field']) ? 1 : 0;
851
+ $options_submit['cntctfrm_display_address_field'] = isset( $_POST['cntctfrm_display_address_field']) ? 1 : 0;
852
+ $options_submit['cntctfrm_display_phone_field'] = isset( $_POST['cntctfrm_display_phone_field']) ? 1 : 0;
853
+ $options_submit['cntctfrm_attachment'] = isset( $_POST['cntctfrm_attachment']) ? $_POST['cntctfrm_attachment'] : 0;
854
+ $options_submit['cntctfrm_attachment_explanations'] = isset( $_POST['cntctfrm_attachment_explanations']) ? $_POST['cntctfrm_attachment_explanations'] : 0;
855
+ $options_submit['cntctfrm_send_copy'] = isset( $_POST['cntctfrm_send_copy']) ? $_POST['cntctfrm_send_copy'] : 0;
856
+
857
+ $options_submit['cntctfrm_delete_attached_file'] = isset( $_POST['cntctfrm_delete_attached_file']) ? $_POST['cntctfrm_delete_attached_file'] : 0;
858
+
859
+ if( $contact_form_multi_active ) {
860
+ $options_submit['cntctfrm_display_captcha'] = isset( $_POST['cntctfrm_display_captcha'] ) ? 1 : 0;
861
+ $options_submit['cntctfrm_display_google_captcha'] = isset( $_POST['cntctfrm_display_google_captcha'] ) ? 1 : 0;
862
+ $options_submit['cntctfrm_display_subscribe'] = isset( $_POST['cntctfrm_display_subscriber'] ) ? 1 : 0;
863
+ $options_submit['cntctfrm_save_email_to_db'] = isset( $_POST['cntctfrm_save_email_to_db'] ) ? 1 : 0;
 
 
 
 
 
 
 
 
864
  } else {
865
+ /* Update related plugins options if Contact Form Multi is not active */
866
+ if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) ) {
867
+ $cntctfrm_related_plugins['captcha']['options'][ $cntctfrm_related_plugins['captcha']['display_option'] ] = isset( $_POST['cntctfrm_display_captcha'] ) ? 1 : 0;
868
+ update_option( $cntctfrm_related_plugins['captcha']['options_name'], $cntctfrm_related_plugins['captcha']['options'] );
 
 
 
 
 
 
 
869
  }
 
870
 
871
+ if ( array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) ) {
872
+ $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] = isset( $_POST['cntctfrm_display_google_captcha'] ) ? 1 : 0;
873
+ update_option( $cntctfrm_related_plugins['google-captcha']['options_name'], $cntctfrm_related_plugins['google-captcha']['options'] );
 
 
 
 
 
874
  }
 
 
 
 
 
 
 
 
 
 
875
 
 
876
  if ( is_multisite() ) {
877
+ if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) ) {
878
+ $cntctfrm_related_plugins['subscriber']['options']['contact_form'] = isset( $_POST['cntctfrm_display_subscriber'] ) ? 1 : 0;
879
+ update_site_option( $cntctfrm_related_plugins['subscriber']['options_name'], $cntctfrm_related_plugins['subscriber']['options'] );
 
 
 
 
880
  }
881
  } else {
882
+ if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) ) {
883
+ $cntctfrm_related_plugins['subscriber']['options']['contact_form'] = isset( $_POST['cntctfrm_display_subscriber'] ) ? 1 : 0;
884
+ update_option( $cntctfrm_related_plugins['subscriber']['options_name'], $cntctfrm_related_plugins['subscriber']['options'] );
 
 
 
 
885
  }
886
  }
887
+
888
+ if ( array_key_exists( 'contact-form-to-db', $cntctfrm_related_plugins ) ) {
889
+ $cntctfrm_related_plugins['contact-form-to-db']['options'][ $cntctfrm_related_plugins['contact-form-to-db']['save_option'] ] = isset( $_POST['cntctfrm_save_email_to_db'] ) ? 1 : 0;
890
+ update_option( $cntctfrm_related_plugins['contact-form-to-db']['options_name'], $cntctfrm_related_plugins['contact-form-to-db']['options'] );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
891
  }
892
  }
893
 
894
+ if ( 0 == $options_submit['cntctfrm_display_name_field'] ) {
895
+ $options_submit['cntctfrm_required_name_field'] = 0;
896
  } else {
897
+ $options_submit['cntctfrm_required_name_field'] = isset( $_POST['cntctfrm_required_name_field']) ? 1 : 0;
898
  }
899
+ if ( 0 == $options_submit['cntctfrm_display_address_field'] ) {
900
+ $options_submit['cntctfrm_required_address_field'] = 0;
901
  } else {
902
+ $options_submit['cntctfrm_required_address_field'] = isset( $_POST['cntctfrm_required_address_field']) ? 1 : 0;
903
  }
904
+ $options_submit['cntctfrm_required_email_field'] = isset( $_POST['cntctfrm_required_email_field']) ? 1 : 0;
905
+ if ( 0 == $options_submit['cntctfrm_display_phone_field'] ) {
906
+ $options_submit['cntctfrm_required_phone_field'] = 0;
907
  } else {
908
+ $options_submit['cntctfrm_required_phone_field'] = isset( $_POST['cntctfrm_required_phone_field']) ? 1 : 0;
909
  }
910
+ $options_submit['cntctfrm_required_subject_field'] = isset( $_POST['cntctfrm_required_subject_field']) ? 1 : 0;
911
+ $options_submit['cntctfrm_required_message_field'] = isset( $_POST['cntctfrm_required_message_field']) ? 1 : 0;
912
+
913
+ $options_submit['cntctfrm_required_symbol'] = isset( $_POST['cntctfrm_required_symbol']) ? stripslashes( esc_html( $_POST['cntctfrm_required_symbol'] ) ) : '*';
914
+ $options_submit['cntctfrm_html_email'] = isset( $_POST['cntctfrm_html_email']) ? 1 : 0;
915
+ $options_submit['cntctfrm_display_add_info'] = isset( $_POST['cntctfrm_display_add_info']) ? 1 : 0;
916
+
917
+ $options_submit['cntctfrm_display_sent_from'] = isset( $_POST['cntctfrm_display_sent_from'] ) ? 1 : 0;
918
+ $options_submit['cntctfrm_display_date_time'] = isset( $_POST['cntctfrm_display_date_time'] ) ? 1 : 0;
919
+ $options_submit['cntctfrm_display_coming_from'] = isset( $_POST['cntctfrm_display_coming_from'] ) ? 1 : 0;
920
+ $options_submit['cntctfrm_display_user_agent'] = isset( $_POST['cntctfrm_display_user_agent'] ) ? 1 : 0;
921
+
922
+ if ( 0 == $options_submit['cntctfrm_display_sent_from'] && 0 == $options_submit['cntctfrm_display_date_time'] && 0 == $options_submit['cntctfrm_display_coming_from'] && 0 == $options_submit['cntctfrm_display_user_agent'] )
923
+ $options_submit['cntctfrm_display_add_info'] = 0;
924
+
925
+ if ( 0 == $options_submit['cntctfrm_display_add_info'] ) {
926
+ $options_submit['cntctfrm_display_sent_from'] = 1;
927
+ $options_submit['cntctfrm_display_date_time'] = 1;
928
+ $options_submit['cntctfrm_display_coming_from'] = 1;
929
+ $options_submit['cntctfrm_display_user_agent'] = 1;
930
  }
931
 
932
+ $options_submit['cntctfrm_change_label'] = isset( $_POST['cntctfrm_change_label']) ? 1 : 0;
933
+ $options_submit['cntctfrm_change_label_in_email'] = isset( $_POST['cntctfrm_change_label_in_email']) ? 1 : 0;
934
 
935
+ if ( 1 == $options_submit['cntctfrm_change_label'] ) {
936
  foreach ( $_POST['cntctfrm_name_label'] as $key => $val ) {
937
+ $options_submit['cntctfrm_name_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_name_label'][ $key ] ) );
938
+ $options_submit['cntctfrm_address_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_address_label'][ $key ] ) );
939
+ $options_submit['cntctfrm_email_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_email_label'][ $key ] ) );
940
+ $options_submit['cntctfrm_phone_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_phone_label'][ $key ] ) );
941
+ $options_submit['cntctfrm_subject_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_subject_label'][ $key ] ) );
942
+ $options_submit['cntctfrm_message_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_message_label'][ $key ] ) );
943
+ $options_submit['cntctfrm_attachment_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_label'][ $key ] ) );
944
+ $options_submit['cntctfrm_attachment_tooltip'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_tooltip'][ $key ] ) );
945
+ $options_submit['cntctfrm_send_copy_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_send_copy_label'][ $key ] ) );
946
+ $options_submit['cntctfrm_thank_text'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_thank_text'][ $key ] ) );
947
+ $options_submit['cntctfrm_submit_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_submit_label'][ $key ] ) );
948
+ $options_submit['cntctfrm_name_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_name_error'][ $key ] ) );
949
+ $options_submit['cntctfrm_address_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_address_error'][ $key ] ) );
950
+ $options_submit['cntctfrm_email_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_email_error'][ $key ] ) );
951
+ $options_submit['cntctfrm_phone_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_phone_error'][ $key ] ) );
952
+ $options_submit['cntctfrm_subject_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_subject_error'][ $key ] ) );
953
+ $options_submit['cntctfrm_message_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_message_error'][ $key ] ) );
954
+ $options_submit['cntctfrm_attachment_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_error'][ $key ] ) );
955
+ $options_submit['cntctfrm_attachment_upload_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_upload_error'][ $key ] ) );
956
+ $options_submit['cntctfrm_attachment_move_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_move_error'][ $key ] ) );
957
+ $options_submit['cntctfrm_attachment_size_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_attachment_size_error'][ $key ] ) );
958
+ $options_submit['cntctfrm_captcha_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_captcha_error'][ $key ] ) );
959
+ $options_submit['cntctfrm_form_error'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_form_error'][ $key ] ) );
960
  }
961
  } else {
962
  if ( empty( $cntctfrm_options['cntctfrm_language'] ) ) {
963
+ $options_submit['cntctfrm_name_label'] = $cntctfrm_option_defaults['cntctfrm_name_label'];
964
+ $options_submit['cntctfrm_address_label'] = $cntctfrm_option_defaults['cntctfrm_address_label'];
965
+ $options_submit['cntctfrm_email_label'] = $cntctfrm_option_defaults['cntctfrm_email_label'];
966
+ $options_submit['cntctfrm_phone_label'] = $cntctfrm_option_defaults['cntctfrm_phone_label'];
967
+ $options_submit['cntctfrm_subject_label'] = $cntctfrm_option_defaults['cntctfrm_subject_label'];
968
+ $options_submit['cntctfrm_message_label'] = $cntctfrm_option_defaults['cntctfrm_message_label'];
969
+ $options_submit['cntctfrm_attachment_label'] = $cntctfrm_option_defaults['cntctfrm_attachment_label'];
970
+ $options_submit['cntctfrm_attachment_tooltip'] = $cntctfrm_option_defaults['cntctfrm_attachment_tooltip'];
971
+ $options_submit['cntctfrm_send_copy_label'] = $cntctfrm_option_defaults['cntctfrm_send_copy_label'];
972
+ $options_submit['cntctfrm_thank_text'] = $_POST['cntctfrm_thank_text'];
973
+ $options_submit['cntctfrm_submit_label'] = $cntctfrm_option_defaults['cntctfrm_submit_label'];
974
+ $options_submit['cntctfrm_name_error'] = $cntctfrm_option_defaults['cntctfrm_name_error'];
975
+ $options_submit['cntctfrm_address_error'] = $cntctfrm_option_defaults['cntctfrm_address_error'];
976
+ $options_submit['cntctfrm_email_error'] = $cntctfrm_option_defaults['cntctfrm_email_error'];
977
+ $options_submit['cntctfrm_phone_error'] = $cntctfrm_option_defaults['cntctfrm_phone_error'];
978
+ $options_submit['cntctfrm_subject_error'] = $cntctfrm_option_defaults['cntctfrm_subject_error'];
979
+ $options_submit['cntctfrm_message_error'] = $cntctfrm_option_defaults['cntctfrm_message_error'];
980
+ $options_submit['cntctfrm_attachment_error'] = $cntctfrm_option_defaults['cntctfrm_attachment_error'];
981
+ $options_submit['cntctfrm_attachment_upload_error'] = $cntctfrm_option_defaults['cntctfrm_attachment_upload_error'];
982
+ $options_submit['cntctfrm_attachment_move_error'] = $cntctfrm_option_defaults['cntctfrm_attachment_move_error'];
983
+ $options_submit['cntctfrm_attachment_size_error'] = $cntctfrm_option_defaults['cntctfrm_attachment_size_error'];
984
+ $options_submit['cntctfrm_captcha_error'] = $cntctfrm_option_defaults['cntctfrm_captcha_error'];
985
+ $options_submit['cntctfrm_form_error'] = $cntctfrm_option_defaults['cntctfrm_form_error'];
986
+ foreach ( $options_submit['cntctfrm_thank_text'] as $key => $val ) {
987
+ $options_submit['cntctfrm_thank_text'][ $key ] = stripcslashes( htmlspecialchars( $val ) );
988
  }
989
  } else {
990
+ $options_submit['cntctfrm_name_label']['default'] = $cntctfrm_option_defaults['cntctfrm_name_label']['default'];
991
+ $options_submit['cntctfrm_address_label']['default'] = $cntctfrm_option_defaults['cntctfrm_address_label']['default'];
992
+ $options_submit['cntctfrm_email_label']['default'] = $cntctfrm_option_defaults['cntctfrm_email_label']['default'];
993
+ $options_submit['cntctfrm_phone_label']['default'] = $cntctfrm_option_defaults['cntctfrm_phone_label']['default'];
994
+ $options_submit['cntctfrm_subject_label']['default'] = $cntctfrm_option_defaults['cntctfrm_subject_label']['default'];
995
+ $options_submit['cntctfrm_message_label']['default'] = $cntctfrm_option_defaults['cntctfrm_message_label']['default'];
996
+ $options_submit['cntctfrm_attachment_label']['default'] = $cntctfrm_option_defaults['cntctfrm_attachment_label']['default'];
997
+ $options_submit['cntctfrm_attachment_tooltip']['default'] = $cntctfrm_option_defaults['cntctfrm_attachment_tooltip']['default'];
998
+ $options_submit['cntctfrm_send_copy_label']['default'] = $cntctfrm_option_defaults['cntctfrm_send_copy_label']['default'];
999
+ $options_submit['cntctfrm_submit_label']['default'] = $cntctfrm_option_defaults['cntctfrm_submit_label']['default'];
1000
+ $options_submit['cntctfrm_name_error']['default'] = $cntctfrm_option_defaults['cntctfrm_name_error']['default'];
1001
+ $options_submit['cntctfrm_address_error']['default'] = $cntctfrm_option_defaults['cntctfrm_address_error']['default'];
1002
+ $options_submit['cntctfrm_email_error']['default'] = $cntctfrm_option_defaults['cntctfrm_email_error']['default'];
1003
+ $options_submit['cntctfrm_phone_error']['default'] = $cntctfrm_option_defaults['cntctfrm_phone_error']['default'];
1004
+ $options_submit['cntctfrm_subject_error']['default'] = $cntctfrm_option_defaults['cntctfrm_subject_error']['default'];
1005
+ $options_submit['cntctfrm_message_error']['default'] = $cntctfrm_option_defaults['cntctfrm_message_error']['default'];
1006
+ $options_submit['cntctfrm_attachment_error']['default'] = $cntctfrm_option_defaults['cntctfrm_attachment_error']['default'];
1007
+ $options_submit['cntctfrm_attachment_upload_error']['default'] = $cntctfrm_option_defaults['cntctfrm_attachment_upload_error']['default'];
1008
+ $options_submit['cntctfrm_attachment_move_error']['default'] = $cntctfrm_option_defaults['cntctfrm_attachment_move_error']['default'];
1009
+ $options_submit['cntctfrm_attachment_size_error']['default'] = $cntctfrm_option_defaults['cntctfrm_attachment_size_error']['default'];
1010
+ $options_submit['cntctfrm_captcha_error']['default'] = $cntctfrm_option_defaults['cntctfrm_captcha_error']['default'];
1011
+ $options_submit['cntctfrm_form_error']['default'] = $cntctfrm_option_defaults['cntctfrm_form_error']['default'];
1012
 
1013
  foreach ( $_POST['cntctfrm_thank_text'] as $key => $val ) {
1014
+ $options_submit['cntctfrm_thank_text'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_thank_text'][ $key ] ) );
1015
  }
1016
  }
1017
  }
1018
  /* if 'FROM' field was changed */
1019
+ if ( ( 'custom' == $cntctfrm_options['cntctfrm_from_email'] && 'custom' != $options_submit['cntctfrm_from_email'] ) ||
1020
+ ( 'custom' == $options_submit['cntctfrm_from_email'] && $cntctfrm_options['cntctfrm_custom_from_email'] != $options_submit['cntctfrm_custom_from_email'] ) ) {
1021
  $notice = __( "Email 'FROM' field option was changed, which may cause email messages being moved to the spam folder or email delivery failures.", 'contact-form-plugin' );
1022
  }
1023
 
1024
+ $options_submit['cntctfrm_action_after_send'] = $_POST['cntctfrm_action_after_send'];
1025
+ $options_submit['cntctfrm_redirect_url'] = esc_url( $_POST['cntctfrm_redirect_url'] );
1026
+ $cntctfrm_options = array_merge( $cntctfrm_options, $options_submit );
1027
 
1028
+ if ( 0 == $options_submit['cntctfrm_action_after_send']
1029
+ && ( "" == trim( $options_submit['cntctfrm_redirect_url'] )
1030
+ || ! filter_var( $options_submit['cntctfrm_redirect_url'], FILTER_VALIDATE_URL) ) ) {
1031
  $error .= __( "If the 'Redirect to page' option is selected then the URL field should be in the following format", 'contact-form-plugin' )." <code>http://your_site/your_page</code>";
1032
  $cntctfrm_options['cntctfrm_action_after_send'] = 1;
1033
  }
1034
+ if ( 'user' == $options_submit['cntctfrm_select_email'] ) {
1035
+ if ( false !== get_user_by( 'login', $options_submit['cntctfrm_user_email'] ) ) {
1036
  /**/
1037
  } else {
1038
  $error .= __( "Such user does not exist.", 'contact-form-plugin' );
1039
  }
1040
  } else {
1041
+ if ( preg_match( '|,|', $options_submit['cntctfrm_custom_email'] ) ) {
1042
+ $cntctfrm_custom_emails = explode( ',', $options_submit['cntctfrm_custom_email'] );
1043
  } else {
1044
+ $cntctfrm_custom_emails[0] = $options_submit['cntctfrm_custom_email'];
1045
  }
1046
  foreach ( $cntctfrm_custom_emails as $cntctfrm_custom_email ) {
1047
  if ( $cntctfrm_custom_email == "" || ! is_email( trim( $cntctfrm_custom_email ) ) ) {
1050
  }
1051
  }
1052
  }
1053
+ if ( 'custom' == $options_submit['cntctfrm_from_email'] ) {
1054
+ if ( "" == $options_submit['cntctfrm_custom_from_email']
1055
+ || ! is_email( trim( $options_submit['cntctfrm_custom_from_email'] ) ) ) {
1056
  $error .= __( "Please enter a valid email address in the 'FROM' field.", 'contact-form-plugin' );
1057
  }
1058
  }
1059
 
1060
  if ( '' == $error ) {
1061
+ if ( 'pro' == $contact_form_multi_active && $options_main = get_option( 'cntctfrmmltpr_options_main' ) ) {
1062
+ if ( $options_main['id_form'] !== $_SESSION['cntctfrmmlt_id_form'] )
1063
+ add_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $cntctfrm_options );
1064
+ else if ( $options_main['id_form'] == $_SESSION['cntctfrmmlt_id_form'] )
1065
+ update_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $cntctfrm_options );
1066
+ } elseif ( $contact_form_multi_active ) {
1067
+ $options_main = get_option( 'cntctfrmmlt_options_main' );
1068
+
1069
+ if ( $options_main['id_form'] !== $_SESSION['cntctfrmmlt_id_form'] )
1070
+ add_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $cntctfrm_options );
1071
+ else if ( $options_main['id_form'] == $_SESSION['cntctfrmmlt_id_form'] )
1072
+ update_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $cntctfrm_options );
 
 
 
1073
  } else {
1074
  update_option( 'cntctfrm_options', $cntctfrm_options );
1075
  }
1092
 
1093
  /* Add restore function */
1094
  if ( isset( $_REQUEST['bws_restore_confirm'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
1095
+ if ( $contact_form_multi_active ) {
1096
+ $contact_form_multi_options = array(
1097
+ 'cntctfrm_display_captcha' => 0,
1098
+ 'cntctfrm_display_google_captcha' => 0,
1099
+ 'cntctfrm_display_subscribe' => 0,
1100
+ 'cntctfrm_save_email_to_db' => 1,
1101
+ );
1102
+ $cntctfrm_option_defaults = array_merge( $cntctfrm_option_defaults, $contact_form_multi_options );
1103
+ }
1104
+
1105
  $cntctfrm_options = $cntctfrm_option_defaults;
1106
+ if ( $contact_form_multi_active ) {
1107
  if ( isset( $_SESSION['cntctfrmmlt_id_form'] ) && get_option( 'cntctfrmmlt_options_' . $_SESSION['cntctfrmmlt_id_form'] ) ) {
1108
  update_option( 'cntctfrmmlt_options_' . $_SESSION['cntctfrmmlt_id_form'] , $cntctfrm_options );
1109
  } else {
1126
  <a class="nav-tab <?php if ( isset( $_GET['action'] ) && 'custom_code' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=contact_form.php&amp;action=custom_code"><?php _e( 'Custom code', 'contact-form-plugin' ); ?></a>
1127
  <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-plugin' ); ?></a>
1128
  </h2>
 
 
 
 
 
 
 
 
 
1129
  <div class="updated fade below-h2" <?php if ( $message == "" || "" != $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
1130
  <div class="error below-h2" <?php if ( "" == $error ) echo 'style="display:none"'; ?>><p><strong><?php echo $error; ?></strong></p></div>
1131
  <?php bws_show_settings_notice();
1133
  <div class="updated fade below-h2"><p><strong><?php echo $hide_result['message']; ?></strong></p></div>
1134
  <?php }
1135
  if ( ! empty( $notice ) ) { ?>
1136
+ <div class="error below-h2"><p><strong><?php _e( 'Notice', 'contact-form-plugin' ) . ":"; ?></strong> <?php echo $notice; ?></p></div>
1137
  <?php }
1138
+ if ( ( ! isset( $_GET['action'] ) || ( 'go_pro' != $_GET['action'] && 'custom_code' != $_GET['action'] ) ) && ! $contact_form_multi_active ) { ?>
1139
  <h3 class="nav-tab-wrapper">
1140
  <span class="nav-tab nav-tab-active"><?php _e( 'NEW_FORM', 'contact-form-plugin' )?></span>
1141
  <a id="cntctfrm_show_multi_notice" class="nav-tab" target="_new" href="http://bestwebsoft.com/products/contact-form-multi/?k=747ca825fb44711e2d24e40697747bc6&amp;pn=77&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" title="<?php _e( "If you want to create multiple contact forms, please install the Contact Form Multi plugin.", 'contact-form-plugin' ); ?>">+</a>
1155
  <?php printf(
1156
  __( "You can add the Contact Form to your page or post by clicking on %s button in the content edit block using the Visual mode. If the button isn't displayed, please use the shortcode %s or %s where * stands for Contact Form language.", 'contact-form-plugin' ),
1157
  '<code><img style="vertical-align: sub;" src="' . plugins_url( 'bws_menu/images/shortcode-icon.png', __FILE__ ) . '" alt="" /></code>',
1158
+ sprintf( '<br/><span class="bws_code">[bestwebsoft_contact_form%s]</span><br/>', ( ! $contact_form_multi_active ) ? '' : ' id=' . $_SESSION['cntctfrmmlt_id_form'] ),
1159
+ sprintf( '<br/><span class="bws_code">[bestwebsoft_contact_form%s lang=*]</span>,<br/>', ( ! $contact_form_multi_active ) ? '' : ' id=' . $_SESSION['cntctfrmmlt_id_form'] )
1160
  ); ?>
1161
  </div>
1162
  </div>
1165
  <p><?php _e( "If you leave the fields empty, the messages will be sent to the email address specified during registration.", 'contact-form-plugin' ); ?></p>
1166
  <table class="form-table" style="width:auto;">
1167
  <tr valign="top">
1168
+ <th scope="row"><?php _e( "The user's email address", 'contact-form-plugin' ); ?>: </th>
1169
  <td colspan="2">
1170
  <label><input type="radio" id="cntctfrm_select_email_user" name="cntctfrm_select_email" value="user" <?php if ( $cntctfrm_options['cntctfrm_select_email'] == 'user' ) echo 'checked="checked" '; ?>/>
1171
  <select class="cntctfrm_user_email" name="cntctfrm_user_email">
1182
  }
1183
  } ?>
1184
  </select>
1185
+ <span class="bws_info cntctfrm_info"><?php _e( "Select a username of the person who should get the messages from the contact form.", 'contact-form-plugin' ); ?></span></label>
1186
  </td>
1187
  </tr>
1188
  <tr valign="top">
1189
+ <th scope="row"><?php _e( "Use this email address", 'contact-form-plugin' ); ?>:</th>
1190
  <td colspan="2">
1191
  <label><input type="radio" id="cntctfrm_select_email_custom" name="cntctfrm_select_email" value="custom" <?php if ( 'custom' == $cntctfrm_options['cntctfrm_select_email'] ) echo 'checked="checked" '; ?>/>
1192
  <input type="text" name="cntctfrm_custom_email" value="<?php echo $cntctfrm_options['cntctfrm_custom_email']; ?>" maxlength="500" />
1193
+ <span class="bws_info cntctfrm_info"><?php _e( "Enter the email address for receiving messages", 'contact-form-plugin' ); ?>.</span></label>
1194
  </td>
1195
  </tr>
1196
  </table>
1201
  <div class="bws_table_bg"></div>
1202
  <table class="form-table bws_pro_version">
1203
  <tr valign="top">
1204
+ <th scope="row"><?php _e( "Add department selectbox to the contact form", 'contact-form-plugin' ); ?>:</th>
1205
  <td colspan="2">
1206
  <input type="radio" name="cntctfrm_select_email" value="departments" disabled="disabled" />
1207
  <div><img style="width:100%;" src="<?php echo plugins_url( 'images/pro_screen_1.png', __FILE__ ); ?>" alt="" /></div>
1230
  <th scope="row"><?php _e( "Save emails to the database", 'contact-form-plugin' ); ?> </th>
1231
  <td colspan="2">
1232
  <?php if ( array_key_exists( 'contact-form-to-db/contact_form_to_db.php', $all_plugins ) || array_key_exists( 'contact-form-to-db-pro/contact_form_to_db_pro.php', $all_plugins ) ) {
1233
+ if ( array_key_exists( 'contact-form-to-db', $cntctfrm_related_plugins ) ) {
1234
+ if ( ! $contact_form_multi_active ) {
1235
+ $save_emails = ! empty( $cntctfrm_related_plugins['contact-form-to-db']['options'][ $cntctfrm_related_plugins['contact-form-to-db']['save_option'] ] ) ? true : false;
1236
+ } else {
1237
+ $save_emails = ! empty( $cntctfrm_options['cntctfrm_save_email_to_db'] ) ? true : false;
1238
+ }
1239
+ if( ! $contact_form_multi_active || ! empty( $cntctfrm_related_plugins['contact-form-to-db']['options'][ $cntctfrm_related_plugins['contact-form-to-db']['save_option'] ] ) ) { ?>
1240
+ <label><input type="checkbox" name="cntctfrm_save_email_to_db" value="1" <?php if ( $save_emails ) echo 'checked="checked"'; ?> />
1241
+ <span class="bws_info"> (<?php _e( 'Using', 'contact-form-plugin' ); ?>
1242
+ <a href="<?php echo self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['contact-form-to-db']['settings_page'] ); ?>" target="_blank">Contact Form to DB by BestWebSoft</a>)
1243
+ </span>
1244
+ </label>
1245
+ <?php } else { ?>
1246
+ <label><input type="checkbox" name="cntctfrm_save_email_to_db" value="1" disabled="disabled" <?php if ( $save_emails ) echo 'checked="checked"'; ?> /></label>
1247
+ <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
1248
+ <?php printf( '<a href="%s" target="_blank"> Contact Form to DB %s</a>&nbsp;)',
1249
+ self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['contact-form-to-db']['settings_page'] ),
1250
+ __( 'settings page', 'contact-form-plugin' ) ); ?>
1251
+ </span>
1252
+ <?php }
1253
+ } else { ?>
1254
+ <label><input disabled="disabled" type="checkbox" name="cntctfrm_save_email_to_db" value="1" <?php if ( ! empty( $cntctfrm_options["save_email_to_db"] ) ) echo 'checked="checked"'; ?> />
1255
+ <span class="bws_info">(<?php _e( 'Using', 'contact-form-plugin' ); ?> Contact Form to DB by BestWebSoft)
1256
+ <?php printf( '<a href="%s" target="_blank">%s Contact Form to DB</a>', self_admin_url( 'plugins.php' ), __( 'Activate', 'contact-form-plugin' ) ); ?>
1257
+ </span>
1258
+ </label>
1259
  <?php }
1260
  } else { ?>
1261
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_save_email_to_db" value="1" />
1262
+ <span class="bws_info">(<?php _e( 'Using', 'contact-form-plugin' ); ?> Contact Form to DB by BestWebSoft)
1263
+ <?php printf( '<a href="http://bestwebsoft.com/products/contact-form-to-db/?k=19d806f45d866e70545de83169b274f2&amp;pn=77&amp;v=%s&amp;wp_v=%s"> %s Contact Form to DB</a>', $cntctfrm_plugin_info["Version"], $wp_version, __( 'Download', 'contact-form-plugin' ) ); ?>
1264
+ </span>
1265
+ </label>
1266
  <?php } ?>
1267
  </td>
1268
  </tr>
1272
  <div <?php if ( ! isset( $_GET['action'] ) ) echo 'style="display: none;"'; ?> >
1273
  <table class="form-table" style="width:auto;">
1274
  <tr>
1275
+ <th scope="row"><?php _e( 'Sending method', 'contact-form-plugin' ); ?></th>
1276
  <td colspan="2">
1277
  <fieldset>
1278
  <label>
1290
  </tr>
1291
  <tr valign="top">
1292
  <th scope="row"><?php _e( "'FROM' field", 'contact-form-plugin' ); ?></th>
1293
+ <td class="cntctfrm_td_name" style="vertical-align: top;width: 210px;">
1294
  <legend><?php _e( "Name", 'contact-form-plugin' ); ?></legend>
1295
  <fieldset>
1296
  <label><input type="radio" id="cntctfrm_select_from_custom_field" name="cntctfrm_select_from_field" value="custom" <?php if ( 'custom' == $cntctfrm_options['cntctfrm_select_from_field'] ) echo 'checked="checked" '; ?> /><input type="text" name="cntctfrm_from_field" value="<?php echo stripslashes( $cntctfrm_options['cntctfrm_from_field'] ); ?>" size="18" maxlength="100" /></label><br />
1300
  </div>
1301
  </fieldset>
1302
  </td>
1303
+ <td class="cntctfrm_td_email" >
1304
  <legend><?php _e( "Email", 'contact-form-plugin' ); ?></legend>
1305
  <fieldset>
1306
  <label><input type="radio" id="cntctfrm_from_custom_email" name="cntctfrm_from_email" value="custom" <?php if ( 'custom' == $cntctfrm_options['cntctfrm_from_email'] ) echo 'checked="checked" '; ?>/><input type="text" name="cntctfrm_custom_from_email" value="<?php echo $cntctfrm_options['cntctfrm_custom_from_email']; ?>" maxlength="100" /></label><br />
1559
  </div>
1560
  <div style="clear: both;">
1561
  <?php if ( array_key_exists( 'subscriber/subscriber.php', $all_plugins ) || array_key_exists( 'subscriber-pro/subscriber-pro.php', $all_plugins ) ) {
1562
+ if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) ) {
1563
+ if ( ! $contact_form_multi_active ) {
1564
+ $display_subscriber = ! empty( $cntctfrm_related_plugins['subscriber']['options']['contact_form'] ) ? true : false;
1565
+ } else {
1566
+ $display_subscriber = ! empty( $cntctfrm_options['cntctfrm_display_subscribe'] ) ? true : false;
1567
+ }
1568
+ if ( ! $contact_form_multi_active || ! empty( $cntctfrm_related_plugins['subscriber']['options']['contact_form'] ) ) { ?>
1569
+ <label><input type="checkbox" name="cntctfrm_display_subscriber" value="1" <?php if ( $display_subscriber ) echo 'checked="checked"'; ?> /> Subscriber by BestWebSoft</label>
1570
+ <?php } else { ?>
1571
+ <label><input type="checkbox" name="cntctfrm_display_subscriber" value="1" disabled="disabled" <?php if ( $display_subscriber ) echo 'checked="checked"'; ?> /> Subscriber by BestWebSoft</label>
1572
+ <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
1573
+ <?php printf( '<a href="%s" target="_blank"> Subscriber %s</a>&nbsp;)',
1574
+ network_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['subscriber']['settings_page'] ),
1575
+ __( 'settings page', 'contact-form-plugin' ) ); ?>
1576
+ </span>
1577
+ <?php }
1578
+ } else { ?>
1579
+ <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_subscriber" value="1" <?php if ( isset( $cntctfrm_options['display_subscribe'] ) && 1 == $cntctfrm_options['display_subscribe'] ) echo 'checked="checked"'; ?> /> Subscriber by BestWebSoft</label>
1580
+ <span class="bws_info">
1581
+ <?php printf( '<a href="%s" target="_blank"> %s Subscriber</a>', network_admin_url( 'plugins.php' ), __( 'Activate', 'contact-form-plugin' ) ); ?>
1582
+ </span>
1583
  <?php }
1584
  } else { ?>
1585
+ <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_subscriber" value="1" /> Subscriber by BestWebSoft</label>
1586
+ <span class="bws_info">
1587
+ <?php printf( '<a href="http://bestwebsoft.com/products/subscriber/?k=a9dfd3fa8513784c36622993b350b19e&amp;pn=77&amp;v=%s&amp;wp_v=%s">%s Subscriber</a>', $cntctfrm_plugin_info["Version"], $wp_version, __( 'Download', 'contact-form-plugin' ) ); ?>
1588
+ </span>
1589
  <?php } ?>
1590
  </div>
1591
  <div style="clear: both;">
1592
  <?php if ( array_key_exists( 'captcha/captcha.php', $all_plugins ) || array_key_exists( 'captcha-plus/captcha-plus.php', $all_plugins ) || array_key_exists( 'captcha-pro/captcha_pro.php', $all_plugins ) ) {
1593
+ if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) ) {
1594
+ if ( ! $contact_form_multi_active ) {
1595
+ $display_captcha = ! empty( $cntctfrm_related_plugins['captcha']['options'][ $cntctfrm_related_plugins['captcha']['display_option'] ] ) ? true : false;
1596
+ } else {
1597
+ $display_captcha = ! empty( $cntctfrm_options['cntctfrm_display_captcha'] ) ? true : false;
1598
+ }
1599
+
1600
+ if ( ! $contact_form_multi_active || ! empty( $cntctfrm_related_plugins['captcha']['options'][ $cntctfrm_related_plugins['captcha']['display_option'] ] ) ) { ?>
1601
+ <label><input type="checkbox" name="cntctfrm_display_captcha" value="1" <?php if ( $display_captcha ) echo 'checked="checked"'; ?> /> Captcha by BestWebSoft </label>
1602
+ <?php } else { ?>
1603
+ <label>
1604
+ <input type="checkbox" name="cntctfrm_display_captcha" value="1" disabled="disabled" <?php if ( $display_captcha ) echo 'checked="checked"'; ?> /> Captcha by BestWebSoft</label>
1605
+ <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
1606
+ <?php printf( '<a href="%s" target="_blank"> Captcha %s</a>&nbsp;)',
1607
+ self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['captcha']['settings_page'] ),
1608
+ __( 'settings page', 'contact-form-plugin' ) ); ?>
1609
+ </span>
1610
+ </label>
1611
+ <?php }
1612
+ } else { ?>
1613
+ <input disabled="disabled" type="checkbox" name="cntctfrm_display_captcha" value="1" > <label> Captcha by BestWebSoft</label>
1614
+ <span class="bws_info">
1615
+ <?php printf( '<a href="%s" target="_blank">%s Captcha</a>', self_admin_url( 'plugins.php' ), __( 'Activate', 'contact-form-plugin' ) ); ?>
1616
+ </span>
1617
  <?php }
1618
  } else { ?>
1619
+ <input disabled="disabled" type="checkbox" name="cntctfrm_display_captcha" value="1" /> <label>Captcha by BestWebSoft</label>
1620
+ <span class="bws_info">
1621
+ <?php printf( '<a href="http://bestwebsoft.com/products/captcha/?k=19ac1e9b23bea947cfc4a9b8e3326c03&amp;pn=77&amp;v=%s&amp;wp_v=%s">%s Captcha</a>', $cntctfrm_plugin_info["Version"], $wp_version, __( 'Download', 'contact-form-plugin' ) ) ?>
1622
+ </span>
1623
+ <?php } ?>
1624
+ </div>
1625
+ <div style="clear: both;">
1626
+ <?php if ( array_key_exists( 'google-captcha/google-captcha.php', $all_plugins ) || array_key_exists( 'google-captcha-pro/google-captcha-pro.php', $all_plugins ) ) {
1627
+ if ( array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) ) {
1628
+ if ( ! $contact_form_multi_active ) {
1629
+ $display_google_captcha = ! empty( $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] ) ? true : false;
1630
+ } else {
1631
+ $display_google_captcha = ! empty( $cntctfrm_options['cntctfrm_display_google_captcha'] ) ? true : false;
1632
+ }
1633
+
1634
+ if ( ! $contact_form_multi_active || ! empty( $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] ) ) { ?>
1635
+ <label><input type="checkbox" name="cntctfrm_display_google_captcha" value="1" <?php if ( $display_google_captcha )
1636
+ echo 'checked="checked"'; ?> /> Google Captcha (reCaptcha) by BestWebSoft</label>
1637
+ <?php } else { ?>
1638
+ <label>
1639
+ <input type="checkbox" name="cntctfrm_display_google_captcha" value="1" disabled="disabled" <?php if ( $display_google_captcha ) echo 'checked="checked"'; ?> /> Google Captcha (reCaptcha) by BestWebSoft</label>
1640
+ <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
1641
+ <?php printf( '<a href="%s" target="_blank"> Google Captcha %s</a>&nbsp;)',
1642
+ self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['google-captcha']['settings_page'] ),
1643
+ __( 'settings page', 'contact-form-plugin' ) ); ?>
1644
+
1645
+ </span>
1646
+ </label>
1647
+ <?php }
1648
+ } else { ?>
1649
+ <input disabled="disabled" type="checkbox" name="cntctfrm_display_google_captcha" value="1" /><label> Google Captcha (reCaptcha) by BestWebSoft</label>
1650
+ <span class="bws_info">
1651
+ <?php printf( '<a href="%s" target="_blank">%s Google Captcha</a>', self_admin_url( 'plugins.php' ), __( 'Activate', 'contact-form-plugin' ) ); ?>
1652
+ </span>
1653
+ <?php }
1654
+ } else { ?>
1655
+ <input disabled="disabled" type="checkbox" name="cntctfrm_display_google_captcha" value="1" /> <label> Google Captcha (reCaptcha) by BestWebSoft</label> <span class="bws_info">
1656
+ <?php printf( '<a href="http://bestwebsoft.com/products/google-captcha/?k=7d74e61dd1cea23d0e9bf2fa88b5b117&amp;pn=77&amp;v=%s&amp;wp_v=%s">%s Google Captcha</a>', $cntctfrm_plugin_info["Version"], $wp_version, __( 'Download', 'contact-form-plugin' ) ) ?>
1657
+ </span>
1658
  <?php } ?>
1659
  </div>
1660
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1719
  echo '<option value="' . esc_attr( $key ) . '"> ' . esc_html( $val ) . '</option>';
1720
  } ?>
1721
  </select>
1722
+ <input type="submit" class="button-primary" name="cntctfrm_add_language_button" id="cntctfrm_add_language_button" value="<?php _e( 'Add a language', 'contact-form-plugin'); ?>" />
1723
  </td>
1724
  </tr>
1725
  <tr valign="top">
1728
  <input type="checkbox" id="cntctfrm_change_label" name="cntctfrm_change_label" value="1" <?php if ( $cntctfrm_options['cntctfrm_change_label'] == '1' ) echo 'checked="checked" '; ?>/>
1729
  </td>
1730
  <td class="cntctfrm_change_label_block" <?php if ( '0' == $cntctfrm_options['cntctfrm_change_label'] ) echo 'style="display:none"'; ?>>
1731
+ <div class="cntctfrm_label_language_tab <?php echo ! isset( $_POST['cntctfrm_change_tab'] ) || 'default' == $_POST['cntctfrm_change_tab'] ? 'cntctfrm_active' : ''; ?>" id="cntctfrm_label_default"><?php _e( 'Default', 'contact-form-plugin' ); ?>
1732
+ <noscript>
1733
+ <input type="submit" class="cntctfrm_change_tab" value="default" name="cntctfrm_change_tab">
1734
+ </noscript>
1735
+ </div>
1736
  <?php if ( ! empty( $cntctfrm_options['cntctfrm_language'] ) ) {
1737
  foreach ( $cntctfrm_options['cntctfrm_language'] as $val ) {
1738
+ $active_tab_class = isset( $_POST["cntctfrm_change_tab"] ) && $val == $_POST["cntctfrm_change_tab"] ? "cntctfrm_active" : "";
1739
+ echo '<div class="cntctfrm_label_language_tab ' . $active_tab_class . '" id="cntctfrm_label_' . $val . '">' . $cntctfrm_lang_codes[ $val ] . ' <span class="cntctfrm_delete" rel="' . $val . '">X</span><noscript><input type="submit" class="cntctfrm_change_tab" value="' . $val . '" name="cntctfrm_change_tab"><span class="cntctfrm_del_button_wrap"><input type="submit" class="cntctfrm_delete_button" value="' . $val . '" name="cntctfrm_delete_button"></span></noscript></div>';
1740
  }
1741
  } ?>
1742
  <div class="clear"></div>
1743
+ <div class="cntctfrm_language_tab cntctfrm_tab_default <?php echo ! isset( $_POST['cntctfrm_change_tab'] ) || 'default' == $_POST['cntctfrm_change_tab'] ? '' : 'hidden' ?>" style="padding: 1px 3px;">
1744
  <div class="cntctfrm_language_tab_block_mini" style="display:none;"><?php _e( "click to expand/hide the list", 'contact-form-plugin' ); ?></div>
1745
  <div class="cntctfrm_language_tab_block">
1746
+ <input type="text" maxlength="250" name="cntctfrm_name_label[default]" value="<?php echo $cntctfrm_options['cntctfrm_name_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Name", 'contact-form-plugin' ); ?>:</span><br />
1747
+ <input type="text" maxlength="250" name="cntctfrm_address_label[default]" value="<?php echo $cntctfrm_options['cntctfrm_address_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Address", 'contact-form-plugin' ); ?>:</span><br />
1748
+ <input type="text" maxlength="250" name="cntctfrm_email_label[default]" value="<?php echo $cntctfrm_options['cntctfrm_email_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Email Address", 'contact-form-plugin' ); ?>:</span><br />
1749
+ <input type="text" maxlength="250" name="cntctfrm_phone_label[default]" value="<?php echo $cntctfrm_options['cntctfrm_phone_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Phone number", 'contact-form-plugin' ); ?>:</span><br />
1750
+ <input type="text" maxlength="250" name="cntctfrm_subject_label[default]" value="<?php echo $cntctfrm_options['cntctfrm_subject_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Subject", 'contact-form-plugin' ); ?>:</span><br />
1751
+ <input type="text" maxlength="250" name="cntctfrm_message_label[default]" value="<?php echo $cntctfrm_options['cntctfrm_message_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Message", 'contact-form-plugin' ); ?>:</span><br />
1752
+ <input type="text" maxlength="250" name="cntctfrm_attachment_label[default]" value="<?php echo $cntctfrm_options['cntctfrm_attachment_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Attachment", 'contact-form-plugin' ); ?>:</span><br />
1753
  <input type="text" maxlength="250" name="cntctfrm_attachment_tooltip[default]" value="<?php echo $cntctfrm_options['cntctfrm_attachment_tooltip']['default']; ?>" /> <span class="bws_info"><?php _e( "Tips below the Attachment block", 'contact-form-plugin' ); ?></span><br />
1754
  <input type="text" maxlength="250" name="cntctfrm_send_copy_label[default]" value="<?php echo $cntctfrm_options['cntctfrm_send_copy_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Send me a copy", 'contact-form-plugin' ); ?></span><br />
1755
  <input type="text" maxlength="250" name="cntctfrm_submit_label[default]" value="<?php echo $cntctfrm_options['cntctfrm_submit_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Submit", 'contact-form-plugin' ); ?></span><br />
1766
  <input type="text" maxlength="250" name="cntctfrm_captcha_error[default]" value="<?php echo $cntctfrm_options['cntctfrm_captcha_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Captcha field", 'contact-form-plugin' ); ?></span><br />
1767
  <input type="text" maxlength="250" name="cntctfrm_form_error[default]" value="<?php echo $cntctfrm_options['cntctfrm_form_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the whole form", 'contact-form-plugin' ); ?></span><br />
1768
  </div>
1769
+ <?php if ( ! $contact_form_multi_active ) { ?>
1770
  <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1771
  <?php } else { ?>
1772
  <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form id=<?php echo $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1773
  <?php } ?>
1774
  </div>
1775
  <?php if ( ! empty( $cntctfrm_options['cntctfrm_language'] ) ) {
1776
+ foreach ( $cntctfrm_options['cntctfrm_language'] as $val ) {
1777
+ if ( ( isset( $_POST['cntctfrm_change_tab'] ) && $val != $_POST['cntctfrm_change_tab'] ) || ! isset($_POST['cntctfrm_change_tab'] ) )
1778
+ $labels_table_class = 'hidden';
1779
+ else
1780
+ $labels_table_class = ''; ?>
1781
+ <div class="cntctfrm_language_tab <?php echo $labels_table_class; ?> cntctfrm_tab_<?php echo $val; ?>">
1782
  <div class="cntctfrm_language_tab_block_mini" style="display:none;"><?php _e( "click to expand/hide the list", 'contact-form-plugin' ); ?></div>
1783
  <div class="cntctfrm_language_tab_block">
1784
+ <input type="text" maxlength="250" name="cntctfrm_name_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_name_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_name_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Name", 'contact-form-plugin' ); ?>:</span><br />
1785
+ <input type="text" maxlength="250" name="cntctfrm_address_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_address_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_address_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Address", 'contact-form-plugin' ); ?>:</span><br />
1786
+ <input type="text" maxlength="250" name="cntctfrm_email_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_email_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_email_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Email Address", 'contact-form-plugin' ); ?>:</span><br />
1787
+ <input type="text" maxlength="250" name="cntctfrm_phone_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_phone_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_phone_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Phone number", 'contact-form-plugin' ); ?>:</span><br />
1788
+ <input type="text" maxlength="250" name="cntctfrm_subject_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_subject_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_subject_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Subject", 'contact-form-plugin' ); ?>:</span><br />
1789
+ <input type="text" maxlength="250" name="cntctfrm_message_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_message_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_message_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Message", 'contact-form-plugin' ); ?>:</span><br />
1790
+ <input type="text" maxlength="250" name="cntctfrm_attachment_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_attachment_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_attachment_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Attachment", 'contact-form-plugin' ); ?>:</span><br />
1791
  <input type="text" maxlength="250" name="cntctfrm_attachment_tooltip[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_attachment_tooltip'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_attachment_tooltip'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Tips below the Attachment block", 'contact-form-plugin' ); ?></span><br />
1792
  <input type="text" maxlength="250" name="cntctfrm_send_copy_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_send_copy_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_send_copy_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Send me a copy", 'contact-form-plugin' ); ?></span><br />
1793
  <input type="text" maxlength="250" name="cntctfrm_submit_label[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_submit_label'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_submit_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Submit", 'contact-form-plugin' ); ?></span><br />
1804
  <input type="text" maxlength="250" name="cntctfrm_captcha_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_captcha_error'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_captcha_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Captcha field", 'contact-form-plugin' ); ?></span><br />
1805
  <input type="text" maxlength="250" name="cntctfrm_form_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_form_error'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_form_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the whole form", 'contact-form-plugin' ); ?></span><br />
1806
  </div>
1807
+ <?php if ( ! $contact_form_multi_active ) { ?>
1808
  <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1809
  <?php } else { ?>
1810
  <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php $val . ' id=' . $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1824
  <th scope="row"><?php _e( "Action after email is sent", 'contact-form-plugin' ); ?></th>
1825
  <td colspan="2" class="cntctfrm_action_after_send_block">
1826
  <label><input type="radio" id="cntctfrm_action_after_send" name="cntctfrm_action_after_send" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_action_after_send'] ) echo 'checked="checked" '; ?>/> <?php _e( "Display text", 'contact-form-plugin' ); ?></label><br />
1827
+ <div class="cntctfrm_label_language_tab <?php echo ! isset( $_POST['cntctfrm_change_tab'] ) || 'default' == $_POST['cntctfrm_change_tab'] ? 'cntctfrm_active' : ''; ?>" id="cntctfrm_text_default"><?php _e( 'Default', 'contact-form-plugin' ); ?>
1828
+ <noscript>
1829
+ <input type="submit" class="cntctfrm_change_tab" value="default" name="cntctfrm_change_tab">
1830
+ </noscript>
1831
+ </div>
1832
  <?php if ( ! empty( $cntctfrm_options['cntctfrm_language'] ) ) {
1833
  foreach ( $cntctfrm_options['cntctfrm_language'] as $val ) {
1834
+ $active_tab_class = isset( $_POST["cntctfrm_change_tab"] ) && $val == $_POST["cntctfrm_change_tab"] ? "cntctfrm_active" : "";
1835
+ echo '<div class="cntctfrm_label_language_tab ' . $active_tab_class . '" id="cntctfrm_text_' . $val . '">' . $cntctfrm_lang_codes[ $val ] . ' <span class="cntctfrm_delete" rel="' . $val . '">X</span><noscript><input type="submit" class="cntctfrm_change_tab" value="' . $val . '" name="cntctfrm_change_tab"><span class="cntctfrm_del_button_wrap"><input type="submit" class="cntctfrm_delete_button" value="' . $val . '" name="cntctfrm_delete_button"></span></noscript></div>';
1836
  }
1837
  } ?>
1838
  <div class="clear"></div>
1839
+ <div class="cntctfrm_language_tab cntctfrm_tab_default <?php echo ! isset( $_POST['cntctfrm_change_tab'] ) || 'default' == $_POST['cntctfrm_change_tab'] ? '' : 'hidden' ?>" style="padding: 5px 10px 5px 5px;">
1840
  <label><input type="text" maxlength="250" name="cntctfrm_thank_text[default]" value="<?php echo $cntctfrm_options['cntctfrm_thank_text']['default']; ?>" /> <span class="bws_info"><?php _e( "Text", 'contact-form-plugin' ); ?></span></label><br />
1841
+ <?php if ( ! $contact_form_multi_active ) { ?>
1842
  <span class="bws_info cntctfrm_shortcode_for_language"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1843
  <?php } else { ?>
1844
  <span class="bws_info cntctfrm_shortcode_for_language"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form id=<?php echo $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1845
  <?php } ?>
1846
  </div>
1847
  <?php if ( ! empty( $cntctfrm_options['cntctfrm_language'] ) ) {
1848
+ foreach ( $cntctfrm_options['cntctfrm_language'] as $val ) {
1849
+ if ( ( isset( $_POST['cntctfrm_change_tab'] ) && $val != $_POST['cntctfrm_change_tab'] ) || ! isset($_POST['cntctfrm_change_tab'] ) )
1850
+ $labels_table_class = 'hidden';
1851
+ else
1852
+ $labels_table_class = ''; ?>
1853
+ <div class="cntctfrm_language_tab <?php echo $labels_table_class; ?> cntctfrm_tab_<?php echo $val; ?>" style="padding: 5px 10px 5px 5px;">
1854
  <label><input type="text" maxlength="250" name="cntctfrm_thank_text[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_thank_text'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_thank_text'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Text", 'contact-form-plugin' ); ?></span></label><br />
1855
+ <?php if ( ! $contact_form_multi_active ) { ?>
1856
  <span class="bws_info cntctfrm_shortcode_for_language"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1857
  <?php } else { ?>
1858
  <span class="bws_info cntctfrm_shortcode_for_language"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val . ' id=' . $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
2204
  if ( 1 == $cntctfrm_options['cntctfrm_display_name_field'] ) { ?>
2205
  <li class="cntctfrm_field_wrap">
2206
  <div class="cntctfrm_label cntctfrm_label_name">
2207
+ <label for="cntctfrm_contact_name"><?php echo $cntctfrm_options['cntctfrm_name_label']['default']; if ( 1 == $cntctfrm_options['cntctfrm_required_name_field'] ) echo '<span class="required"> ' . $cntctfrm_options['cntctfrm_required_symbol'] . '</span>'; ?></label>
2208
  </div>
2209
  <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['cntctfrm_name_error']['default']; ?></div>
2210
  <div class="cntctfrm_input cntctfrm_input_name">
2218
  if ( 1 == $cntctfrm_options['cntctfrm_display_address_field'] ) { ?>
2219
  <li class="cntctfrm_field_wrap">
2220
  <div class="cntctfrm_label cntctfrm_label_address">
2221
+ <label for="cntctfrm_contact_address"><?php echo $cntctfrm_options['cntctfrm_address_label']['default']; if ( 1 == $cntctfrm_options['cntctfrm_required_address_field'] ) echo '<span class="required"> ' . $cntctfrm_options['cntctfrm_required_symbol'] . '</span>'; ?></label>
2222
  </div>
2223
  <?php if ( 1 == $cntctfrm_options['cntctfrm_required_address_field'] ) { ?>
2224
  <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['cntctfrm_address_error']['default']; ?></div>
2233
  case 'cntctfrm_contact_email': ?>
2234
  <li class="cntctfrm_field_wrap">
2235
  <div class="cntctfrm_label cntctfrm_label_email">
2236
+ <label for="cntctfrm_contact_email"><?php echo $cntctfrm_options['cntctfrm_email_label']['default']; if ( 1 == $cntctfrm_options['cntctfrm_required_email_field'] ) echo '<span class="required"> ' . $cntctfrm_options['cntctfrm_required_symbol'] . '</span>'; ?></label>
2237
  </div>
2238
  <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['cntctfrm_email_error']['default']; ?></div>
2239
  <div class="cntctfrm_input cntctfrm_input_email">
2246
  if ( 1 == $cntctfrm_options['cntctfrm_display_phone_field'] ) { ?>
2247
  <li class="cntctfrm_field_wrap">
2248
  <div class="cntctfrm_label cntctfrm_label_phone">
2249
+ <label for="cntctfrm_contact_phone"><?php echo $cntctfrm_options['cntctfrm_phone_label']['default']; if ( 1 == $cntctfrm_options['cntctfrm_required_phone_field'] ) echo '<span class="required"> ' . $cntctfrm_options['cntctfrm_required_symbol'] . '</span>'; ?></label>
2250
  </div>
2251
  <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['cntctfrm_phone_error']['default']; ?></div>
2252
  <div class="cntctfrm_input cntctfrm_input_phone">
2259
  case 'cntctfrm_contact_subject': ?>
2260
  <li class="cntctfrm_field_wrap">
2261
  <div class="cntctfrm_label cntctfrm_label_subject">
2262
+ <label for="cntctfrm_contact_subject"><?php echo $cntctfrm_options['cntctfrm_subject_label']['default']; if ( 1 == $cntctfrm_options['cntctfrm_required_subject_field'] ) echo '<span class="required"> ' . $cntctfrm_options['cntctfrm_required_symbol'] . '</span>'; ?></label>
2263
  </div>
2264
  <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['cntctfrm_subject_error']['default']; ?></div>
2265
  <div class="cntctfrm_input cntctfrm_input_subject">
2271
  case 'cntctfrm_contact_message': ?>
2272
  <li class="cntctfrm_field_wrap">
2273
  <div class="cntctfrm_label cntctfrm_label_message">
2274
+ <label for="cntctfrm_contact_message"><?php echo $cntctfrm_options['cntctfrm_message_label']['default']; if ( 1 == $cntctfrm_options['cntctfrm_required_message_field'] ) echo '<span class="required"> ' . $cntctfrm_options['cntctfrm_required_symbol'] . '</span>'; ?></label>
2275
  </div>
2276
  <div class="cntctfrm_error_text hidden"><?php echo $cntctfrm_options['cntctfrm_message_error']['default']; ?></div>
2277
  <div class="cntctfrm_input cntctfrm_input_message">
2309
  <?php }
2310
  break;
2311
  case 'cntctfrm_subscribe':
2312
+ if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) ) {
2313
+ if ( ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['subscriber']['options']['contact_form'] ) ) || ! empty( $cntctfrm_options['cntctfrm_display_subscribe'] ) ) { ?>
2314
+ <li class="cntctfrm_field_wrap">
2315
+ <div class="cntctfrm_checkbox cntctfrm_checkbox_subscribe">
2316
+ <div class="cntctfrm_drag_wrap"></div>
2317
+ <input type="hidden" value="1" name="cntctfrm_subscribe"/>
2318
+ <?php $cntctfrm_sbscrbr_checkbox = apply_filters( 'sbscrbr_cntctfrm_checkbox_add', array() );
2319
+ if ( isset( $cntctfrm_sbscrbr_checkbox['content'] ) ) {
2320
+ echo $cntctfrm_sbscrbr_checkbox['content'];
2321
+ } ?>
2322
+ </div>
2323
+ </li>
2324
+ <?php }
2325
+ }
2326
  break;
2327
  case 'cntctfrm_captcha':
2328
+ if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) ) {
2329
+ if ( ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['captcha']['options'][ $cntctfrm_related_plugins['captcha']['display_option'] ] ) ) || ! empty( $cntctfrm_options['cntctfrm_display_captcha'] ) ) {
2330
+ $captcha_label = $cntctfrm_related_plugins['captcha']['options']['cptch_label_form'];
2331
+ $captcha_required_symbol = sprintf( ' <span class="required">%s</span>', ( isset( $cntctfrm_related_plugins['captcha']['options']['cptch_required_symbol'] ) ) ? $cntctfrm_related_plugins['captcha']['options']['cptch_required_symbol'] : '' );
2332
+
2333
+ if ( ! empty( $captcha_label ) ) {
2334
+ $cntctfrm_display_captcha_label = $captcha_label . $captcha_required_symbol;
 
 
 
 
 
 
 
 
 
 
 
 
2335
  } else {
2336
  $cntctfrm_display_captcha_label = '';
2337
  } ?>
2345
  <input id="cntctfrm_captcha" type="hidden" name="cntctfrm_captcha">
2346
  </div>
2347
  </li>
2348
+ <?php }
2349
+ }
2350
  break;
2351
  default:
2352
  break;
2358
  </div>
2359
  <div class="cntctfrm_submit_wrap">
2360
  <?php $cntctfrm_direction = is_rtl() ? 'rtl' : 'ltr';
2361
+ $submit_position_value = array(
2362
  'ltr' => array(
2363
  'left' => 1,
2364
  'right' => 2
2371
  for ( $i = 1; $i <= 2; $i++ ) {
2372
  $cntctfrm_column = ( $i == 1 ) ? 'first_column' : 'second_column'; ?>
2373
  <div id="cntctfrm_submit_<?php echo $cntctfrm_column; ?>" class="cntctfrm_column">
2374
+ <?php if ( $i == $submit_position_value[ $cntctfrm_direction ][ $cntctfrm_options['cntctfrm_submit_position'] ] ) { ?>
2375
  <div class="cntctfrm_input cntctfrm_input_submit" style="<?php printf( 'text-align: %s !important;', $cntctfrm_options['cntctfrm_submit_position'] ); ?>">
2376
  <input type="button" value="<?php echo $cntctfrm_options['cntctfrm_submit_label']['default']; ?>" class="bws_no_bind_notice" style="cursor: pointer; margin: 0; text-align: center;" />
2377
  </div>
2382
  </div>
2383
  </div>
2384
  <div id="cntctfrm_shortcode" class="cntctfrm_one_column">
2385
+ <?php _e( "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", 'contact-form-plugin' ); ?>:<br/>
2386
  <div>
2387
  <div id="cntctfrm_shortcode_code">
2388
+ <span class="cntctfrm_shortcode">[bestwebsoft_contact_form<?php if ( $contact_form_multi_active ) printf( ' id=%s', $_SESSION['cntctfrmmlt_id_form'] ); ?>]</span>
2389
  </div>
2390
  </div>
2391
  </div>
2405
  } elseif ( 'custom_code' == $_GET['action'] ) {
2406
  bws_custom_code_tab();
2407
  } elseif ( 'go_pro' == $_GET['action'] ) {
2408
+ bws_go_pro_tab_show( $bws_hide_premium_options_check, $cntctfrm_plugin_info, $plugin_basename, 'contact_form.php', 'contact_form_pro.php', 'contact-form-pro/contact_form_pro.php', 'contact-form-plugin', '697c5e74f39779ce77850e11dbe21962', '77', isset( $go_pro_result['pro_plugin_is_activated'] ) );
2409
  }
2410
  bws_plugin_reviews_block( $cntctfrm_plugin_info['Name'], 'contact-form-plugin' ); ?>
2411
  </div>
2415
  /* Display contact form in front end - page or post */
2416
  if ( ! function_exists( 'cntctfrm_display_form' ) ) {
2417
  function cntctfrm_display_form( $atts = array( 'lang' => 'default' ) ) {
2418
+ global $cntctfrm_error_message, $cntctfrm_options, $cntctfrm_result, $cntctfrmmlt_ide, $cntctfrmmlt_active_plugin, $cntctfrm_form_count, $cntctfrm_related_plugins;
2419
+
2420
+ if ( empty( $cntctfrm_related_plugins ) )
2421
+ cntctfrm_related_plugins();
2422
+
2423
+ $contact_form_multi_active = cntctfrm_check_cf_multi_active();
2424
+
2425
+ if( ! wp_script_is( 'cntctfrm_frontend_script', 'registered' ) )
2426
+ wp_register_script( 'cntctfrm_frontend_script', plugins_url( 'js/cntctfrm.js', __FILE__ ), array( 'jquery' ), false, true );
2427
+
2428
  $cntctfrm_form_count = empty( $cntctfrm_form_count ) ? 1 : ++$cntctfrm_form_count;
2429
+ $form_countid = ( $cntctfrm_form_count == 1 ? '' : '_' . $cntctfrm_form_count );
2430
  $content = "";
2431
  /* Get options for the form with a definite identifier */
2432
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
2433
+ if ( $contact_form_multi_active ) {
2434
  extract( shortcode_atts( array( 'id' => $cntctfrmmlt_ide, 'lang' => 'default' ), $atts ) );
2435
  if ( isset( $atts['id'] ) ) {
2436
  cntctfrm_settings( $atts['id'] );
2437
  $cntctfrm_options = get_option( 'cntctfrmmlt_options_' . $atts['id'] );
2438
+ $options_name = 'cntctfrmmlt_options_' . $atts['id'];
2439
  /* if no options with the specified id */
2440
  if ( ! $cntctfrm_options ) {
2441
  $cntctfrm_options = get_option( 'cntctfrmmlt_options' );
2442
+ $options_name = 'cntctfrmmlt_options';
2443
+ } elseif ( empty( $options_name ) ) {
2444
+ $options_name = 'cntctfrmmlt_options';
2445
  }
2446
  } else {
2447
  cntctfrm_settings();
2448
+ if ( 'pro' == $contact_form_multi_active && $multi_options_main = get_option( 'cntctfrmmltpr_options_main' ) ) {
2449
+ /**/
2450
+ } else {
2451
+ $multi_options_main = get_option( 'cntctfrmmlt_options_main' );
2452
+ }
2453
+
2454
+ if ( ! empty( $multi_options_main ) ) {
2455
+ reset( $multi_options_main['name_id_form'] );
2456
+ $id = key( $multi_options_main['name_id_form'] );
2457
+ $cntctfrm_options = get_option( 'cntctfrmmlt_options_' . $id );
2458
+ $options_name = 'cntctfrmmlt_options_' . $id;
2459
+ if ( empty( $cntctfrm_options ) ) {
2460
+ $cntctfrm_options = get_option( 'cntctfrmmlt_options' );
2461
+ $options_name = 'cntctfrmmlt_options';
2462
+ }
2463
+ } else {
2464
+ $options_name = 'cntctfrmmlt_options';
2465
+ }
2466
  }
2467
  } else {
2468
  cntctfrm_settings();
2469
  $cntctfrm_options = get_option( 'cntctfrm_options' );
2470
  extract( shortcode_atts( array( 'lang' => 'default' ), $atts ) );
2471
+ $options_name = 'cntctfrm_options';
2472
  }
2473
  /* check lang and replace with en default if need */
2474
  foreach ( $cntctfrm_options as $key => $value ) {
2481
 
2482
  /* If contact form submited */
2483
 
2484
+ $form_submited = isset( $_POST['cntctfrm_form_submited'] ) ? $_POST['cntctfrm_form_submited'] : 0;
2485
 
2486
+ $name = ( isset( $_POST['cntctfrm_contact_name'] ) && $cntctfrm_form_count == $form_submited ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_name'] ) ) : "";
2487
+ $address = ( isset( $_POST['cntctfrm_contact_address'] ) && $cntctfrm_form_count == $form_submited ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_address'] ) ) : "";
2488
+ $email = ( isset( $_POST['cntctfrm_contact_email'] ) && $cntctfrm_form_count == $form_submited ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_email'] ) ) : "";
2489
+ $subject = ( isset( $_POST['cntctfrm_contact_subject'] ) && $cntctfrm_form_count == $form_submited ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_subject'] ) ) : "";
2490
+ $message = ( isset( $_POST['cntctfrm_contact_message'] ) && $cntctfrm_form_count == $form_submited ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_message'] ) ) : "";
2491
+ $phone = ( isset( $_POST['cntctfrm_contact_phone'] ) && $cntctfrm_form_count == $form_submited ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_phone'] ) ) : "";
2492
 
2493
  $name = strip_tags( preg_replace( '/<[^>]*>/', '', preg_replace( '/<script.*<\/[^>]*>/', '', $name ) ) );
2494
  $address = strip_tags( preg_replace( '/<[^>]*>/', '', preg_replace( '/<script.*<\/[^>]*>/', '', $address ) ) );
2497
  $message = strip_tags( preg_replace( '/<[^>]*>/', '', preg_replace( '/<script.*<\/[^>]*>/', '', $message ) ) );
2498
  $phone = strip_tags( preg_replace( '/<[^>]*>/', '', preg_replace( '/<script.*<\/[^>]*>/', '', $phone ) ) );
2499
 
2500
+ $send_copy = ( isset( $_POST['cntctfrm_contact_send_copy'] ) && $cntctfrm_form_count == $form_submited ) ? $_POST['cntctfrm_contact_send_copy'] : "";
2501
  /* If it is good */
2502
 
2503
+ if ( true === $cntctfrm_result && $cntctfrm_form_count == $form_submited ) {
2504
  $_SESSION['cntctfrm_send_mail'] = true;
2505
 
2506
  if ( 1 == $cntctfrm_options['cntctfrm_action_after_send'] )
2507
+ $content .= '<div id="cntctfrm_contact_form' . $form_countid . '"><div id="cntctfrm_thanks">' . $cntctfrm_options['cntctfrm_thank_text'][ $lang ] . '</div></div>';
2508
  else
2509
  $content .= "<script type='text/javascript'>window.location.href = '" . $cntctfrm_options['cntctfrm_redirect_url'] . "';</script>";
2510
 
2511
+ } elseif ( false === $cntctfrm_result && $cntctfrm_form_count == $form_submited ) {
2512
  /* If email not be delivered */
2513
  $cntctfrm_error_message['error_form'] = __( "Sorry, email message could not be delivered.", 'contact-form-plugin' );
2514
  }
2515
 
2516
+ if ( true !== $cntctfrm_result || $cntctfrm_form_count != $form_submited ) {
2517
  $_SESSION['cntctfrm_send_mail'] = false;
2518
 
2519
  $cntctfrm_classes = ( $cntctfrm_options['cntctfrm_layout'] === 1 ) ? ' cntctfrm_one_column' : ' cntctfrm_two_columns';
2520
  $cntctfrm_classes .= is_rtl() ? ' cntctfrm_rtl' : ' cntctfrm_ltr';
2521
 
2522
  /* Output form */
2523
+ $content .= '<form method="post" id="cntctfrm_contact_form' . $form_countid . '" class="cntctfrm_contact_form' . $cntctfrm_classes . '"';
2524
+ $content .= ' action="' . $page_url . $form_countid . '" enctype="multipart/form-data">';
2525
+ if ( isset( $cntctfrm_error_message['error_form'] ) && $cntctfrm_form_count == $form_submited ) {
2526
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_form'] . '</div>';
2527
  }
2528
 
2534
  $content .= '<div id="cntctfrm_' . $cntctfrm_column . '" class="cntctfrm_column">';
2535
 
2536
  foreach ( $cntctfrm_ordered_fields[ $cntctfrm_column ] as $cntctfrm_field ) {
 
2537
  switch( $cntctfrm_field ) {
2538
  case 'cntctfrm_contact_name':
2539
  if ( 1 == $cntctfrm_options['cntctfrm_display_name_field'] ) {
2540
  $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_name_wrap">';
2541
  $content .= '<div class="cntctfrm_label cntctfrm_label_name">
2542
+ <label for="cntctfrm_contact_name' . $form_countid . '">' . $cntctfrm_options['cntctfrm_name_label'][ $lang ] . ( $cntctfrm_options['cntctfrm_required_name_field'] == 1 ? ' <span class="required">' . $cntctfrm_options['cntctfrm_required_symbol'] . '</span></label>' : '</label>' );
2543
  $content .= '</div>';
2544
+ if ( isset( $cntctfrm_error_message['error_name'] ) && $cntctfrm_form_count == $form_submited ) {
2545
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_name'] . '</div>';
2546
  }
2547
  $content .= '<div class="cntctfrm_input cntctfrm_input_name">
2548
+ <input class="text" type="text" size="40" value="' . $name . '" name="cntctfrm_contact_name" id="cntctfrm_contact_name' . $form_countid . '" />';
2549
  $content .= '</div>';
2550
  $content .= '</div>';
2551
  }
2554
  if ( 1 == $cntctfrm_options['cntctfrm_display_address_field'] ) {
2555
  $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_address_wrap">';
2556
  $content .= '<div class="cntctfrm_label cntctfrm_label_address">
2557
+ <label for="cntctfrm_contact_address' . $form_countid . '">' . $cntctfrm_options['cntctfrm_address_label'][ $lang ] . ( $cntctfrm_options['cntctfrm_required_address_field'] == 1 ? ' <span class="required">' . $cntctfrm_options['cntctfrm_required_symbol'] . '</span></label>' : '</label>' ) . '</div>';
2558
+ if ( isset( $cntctfrm_error_message['error_address'] ) && $cntctfrm_form_count == $form_submited ) {
2559
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_address'] . '</div>';
2560
  }
2561
  $content .= '<div class="cntctfrm_input cntctfrm_input_address">
2562
+ <input class="text" type="text" size="40" value="' . $address . '" name="cntctfrm_contact_address" id="cntctfrm_contact_address' . $form_countid . '" />';
2563
  $content .= '</div>';
2564
  $content .= '</div>';
2565
  }
2567
  case 'cntctfrm_contact_email':
2568
  $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_email_wrap">';
2569
  $content .= '<div class="cntctfrm_label cntctfrm_label_email">
2570
+ <label for="cntctfrm_contact_email' . $form_countid . '">' . $cntctfrm_options['cntctfrm_email_label'][ $lang ] . ( $cntctfrm_options['cntctfrm_required_email_field'] == 1 ? ' <span class="required">' . $cntctfrm_options['cntctfrm_required_symbol'] . '</span></label>' : '</label>' ) . '
2571
  </div>';
2572
+ if ( isset( $cntctfrm_error_message['error_email'] ) && $cntctfrm_form_count == $form_submited ) {
2573
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_email'] . '</div>';
2574
  }
2575
  $content .= '<div class="cntctfrm_input cntctfrm_input_email">
2576
+ <input class="text" type="text" size="40" value="' . $email . '" name="cntctfrm_contact_email" id="cntctfrm_contact_email' . $form_countid . '" />';
2577
  $content .= '</div>';
2578
  $content .= '</div>';
2579
  break;
2581
  if ( 1 == $cntctfrm_options['cntctfrm_display_phone_field'] ) {
2582
  $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_phone_wrap">';
2583
  $content .= '<div class="cntctfrm_label cntctfrm_label_phone">
2584
+ <label for="cntctfrm_contact_phone' . $form_countid . '">' . $cntctfrm_options['cntctfrm_phone_label'][ $lang ] . ( $cntctfrm_options['cntctfrm_required_phone_field'] == 1 ? ' <span class="required">' . $cntctfrm_options['cntctfrm_required_symbol'] . '</span></label>' : '</label>' ) . '
2585
  </div>';
2586
+ if ( isset( $cntctfrm_error_message['error_phone'] ) && $cntctfrm_form_count == $form_submited ) {
2587
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_phone'] . '</div>';
2588
  }
2589
  $content .= '<div class="cntctfrm_input cntctfrm_input_phone">
2590
+ <input class="text" type="text" size="40" value="' . $phone . '" name="cntctfrm_contact_phone" id="cntctfrm_contact_phone' . $form_countid . '" />';
2591
  $content .= '</div>';
2592
  $content .= '</div>';
2593
  }
2595
  case 'cntctfrm_contact_subject':
2596
  $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_subject_wrap">';
2597
  $content .= '<div class="cntctfrm_label cntctfrm_label_subject">
2598
+ <label for="cntctfrm_contact_subject' . $form_countid . '">' . $cntctfrm_options['cntctfrm_subject_label'][ $lang ] . ( $cntctfrm_options['cntctfrm_required_subject_field'] == 1 ? ' <span class="required">' . $cntctfrm_options['cntctfrm_required_symbol'] . '</span></label>' : '</label>' ) . '
2599
  </div>';
2600
+ if ( isset( $cntctfrm_error_message['error_subject'] ) && $cntctfrm_form_count == $form_submited ) {
2601
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_subject'] . '</div>';
2602
  }
2603
  $content .= '<div class="cntctfrm_input cntctfrm_input_subject">
2604
+ <input class="text" type="text" size="40" value="' . $subject . '" name="cntctfrm_contact_subject" id="cntctfrm_contact_subject' . $form_countid . '" />';
2605
  $content .= '</div>';
2606
  $content .= '</div>';
2607
  break;
2608
  case 'cntctfrm_contact_message':
2609
  $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_message_wrap">';
2610
  $content .= '<div class="cntctfrm_label cntctfrm_label_message">
2611
+ <label for="cntctfrm_contact_message' . $form_countid . '">' . $cntctfrm_options['cntctfrm_message_label'][ $lang ] . ( $cntctfrm_options['cntctfrm_required_message_field'] == 1 ? ' <span class="required">' . $cntctfrm_options['cntctfrm_required_symbol'] . '</span></label>' : '</label>' ) . '
2612
  </div>';
2613
+ if ( isset( $cntctfrm_error_message['error_message'] ) && $cntctfrm_form_count == $form_submited ) {
2614
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_message'] . '</div>';
2615
  }
2616
  $content .= '<div class="cntctfrm_input cntctfrm_input_message">
2617
+ <textarea rows="5" cols="30" name="cntctfrm_contact_message" id="cntctfrm_contact_message' . $form_countid . '">' . $message . '</textarea>';
2618
  $content .= '</div>';
2619
  $content .= '</div>';
2620
  break;
2622
  if ( 1 == $cntctfrm_options['cntctfrm_attachment'] ) {
2623
  $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_attachment_wrap">';
2624
  $content .= '<div class="cntctfrm_label cntctfrm_label_attachment">
2625
+ <label for="cntctfrm_contact_attachment' . $form_countid . '">' . $cntctfrm_options['cntctfrm_attachment_label'][ $lang ] . '</label>
2626
  </div>';
2627
+ if ( isset( $cntctfrm_error_message['error_attachment'] ) && $cntctfrm_form_count == $form_submited ) {
2628
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_attachment'] . '</div>';
2629
  }
2630
  $content .= '<div class="cntctfrm_input cntctfrm_input_attachment">
2631
+ <input type="file" name="cntctfrm_contact_attachment" id="cntctfrm_contact_attachment' . $form_countid . '"' . ( isset( $cntctfrm_error_message['error_attachment'] ) ? "class='error'": "" ) . ' />';
2632
  if ( 1 == $cntctfrm_options['cntctfrm_attachment_explanations'] ) {
2633
  $content .= '<label class="cntctfrm_contact_attachment_extensions"><br />' . $cntctfrm_options['cntctfrm_attachment_tooltip'][ $lang ] . '</label>';
2634
  }
2647
  }
2648
  break;
2649
  case 'cntctfrm_subscribe':
2650
+ if ( has_filter( 'sbscrbr_cntctfrm_checkbox_add' ) && ( ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['subscriber']['options']['contact_form'] ) ) || ! empty( $cntctfrm_options['cntctfrm_display_subscribe'] ) ) ) {
2651
  $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_checkbox_subscribe_wrap">';
2652
  $content .= '<div class="cntctfrm_checkbox cntctfrm_checkbox_subscribe">';
2653
  $cntctfrm_sbscrbr_checkbox = apply_filters( 'sbscrbr_cntctfrm_checkbox_add', array(
2654
  'form_id' => 'cntctfrm_' . $cntctfrm_form_count,
2655
+ 'display' => ( isset( $cntctfrm_error_message['error_sbscrbr'] ) && $cntctfrm_form_count == $form_submited ) ? $cntctfrm_error_message['error_sbscrbr'] : false ) );
2656
  if ( isset( $cntctfrm_sbscrbr_checkbox['content'] ) ) {
2657
  $content .= $cntctfrm_sbscrbr_checkbox['content'];
2658
  }
2661
  }
2662
  break;
2663
  case 'cntctfrm_captcha':
2664
+ $removed_filters = cntctfrm_add_remove_captcha_filters( 'remove_filters' );
2665
  if ( has_filter( 'cntctfrm_display_captcha' ) ) {
2666
+ if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) && ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['captcha']['options'][ $cntctfrm_related_plugins['captcha']['display_option'] ] ) || ! empty( $cntctfrm_options['cntctfrm_display_captcha'] ) ) ) {
2667
+ $display_captcha = true;
2668
+ } elseif ( array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) && ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] ) || ! empty( $cntctfrm_options['cntctfrm_display_google_captcha'] ) ) ) {
2669
+ $display_google_captcha = true;
2670
+ }
2671
+ if ( ! empty( $display_captcha ) ) {
2672
+ $captcha_label = $captcha_required_symbol = '';
2673
+
2674
+ if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) ) {
2675
+ $captcha_label = $cntctfrm_related_plugins['captcha']['options'][ $cntctfrm_related_plugins['captcha']['label'] ];
2676
+ $captcha_required_symbol = sprintf( '<span class="required">%s</span>', ( ! empty ( $cptch_options['cptch_required_symbol'] ) ) ? $cntctfrm_related_plugins['captcha']['options'][ $cntctfrm_related_plugins['captcha']['required_symbol'] ] : '' );
2677
+ }
2678
+
2679
+ if ( ! empty( $captcha_label ) ) {
2680
+ $display_captcha_label = $captcha_label . $captcha_required_symbol;
2681
+ } else {
2682
+ $display_captcha_label = '';
2683
+ }
2684
+ }
2685
+ if ( ! empty( $display_captcha ) || ! empty( $display_google_captcha ) ) {
2686
+ $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_captcha_wrap">';
2687
+ $content .= '<div class="cntctfrm_input cntctfrm_input_captcha">';
2688
+ $content .= apply_filters( 'cntctfrm_display_captcha' , ( $cntctfrm_form_count == $form_submited ) ? $cntctfrm_error_message : false, '', 'bws_contact' );
2689
+ $content .= '</div>';
2690
  $content .= '</div>';
2691
+ }
2692
  }
2693
+ cntctfrm_add_remove_captcha_filters( 'add_filters', $removed_filters );
2694
  break;
2695
  default:
2696
  break;
2703
  $content .= '<div class="clear"></div>';
2704
 
2705
  $cntctfrm_direction = is_rtl() ? 'rtl' : 'ltr';
2706
+ $submit_position_value = array(
2707
  'ltr' => array(
2708
  'left' => 1,
2709
  'right' => 2
2718
  for ( $i = 1; $i <= 2; $i++ ) {
2719
  $cntctfrm_column = ( $i == 1 ) ? 'first_column' : 'second_column';
2720
  $content .= '<div id="cntctfrm_submit_' . $cntctfrm_column . '" class="cntctfrm_column">';
2721
+ if ( $i == $submit_position_value[ $cntctfrm_direction ][ $cntctfrm_options['cntctfrm_submit_position'] ] ) {
2722
  $content .= '<div class="cntctfrm_input cntctfrm_input_submit" style="text-align: ' . $cntctfrm_options['cntctfrm_submit_position'] . ' !important;">';
2723
  if ( isset( $atts['id'] ) )
2724
  $content .= '<input type="hidden" value="' . esc_attr( $atts['id'] ) . '" name="cntctfrmmlt_shortcode_id">';
2725
  $content .= '<input type="hidden" value="send" name="cntctfrm_contact_action"><input type="hidden" value="Version: 3.30" />
2726
  <input type="hidden" value="' . esc_attr( $lang ) . '" name="cntctfrm_language">
2727
  <input type="hidden" value="' . $cntctfrm_form_count . '" name="cntctfrm_form_submited">
2728
+ <input type="hidden" value="' . $options_name . '" name="cntctfrm_options_name">
2729
+ <input type="submit" value="' . $cntctfrm_options['cntctfrm_submit_label'][ $lang ] . '" class="cntctfrm_contact_submit" />
2730
  </div>';
2731
  }
2732
  $content .= '</div>';
2739
  }
2740
  }
2741
 
2742
+ if ( ! function_exists( 'cntctfrm_add_remove_captcha_filters' ) ) {
2743
+ function cntctfrm_add_remove_captcha_filters( $action, $removed_filters = false ) {
2744
+ global $cntctfrm_options, $cntctfrm_related_plugins;
2745
+
2746
+ if ( empty( $cntctfrm_related_plugins ) )
2747
+ cntctfrm_related_plugins();
2748
+
2749
+ $contact_form_multi_active = cntctfrm_check_cf_multi_active();
2750
+
2751
+ if ( array_key_exists( 'captcha', $cntctfrm_related_plugins ) && ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['captcha']['options'][ $cntctfrm_related_plugins['captcha']['display_option'] ] ) || ! empty( $cntctfrm_options['cntctfrm_display_captcha'] ) ) )
2752
+ $display_captcha = true;
2753
+ if ( array_key_exists( 'google-captcha', $cntctfrm_related_plugins ) && ( ! $contact_form_multi_active && ! empty( $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] ) || ! empty( $cntctfrm_options['cntctfrm_display_google_captcha'] ) ) )
2754
+ $display_google_captcha = true;
2755
+
2756
+ if ( 'remove_filters' == $action ) {
2757
+ $removed_filters = array();
2758
+ $remove_captcha = array();
2759
+ $filters = array(
2760
+ 'google-captcha' => array(
2761
+ 'gglcptch_cf_display' => 'gglcptch_recaptcha_check',
2762
+ 'gglcptchpr_cf_display' => 'gglcptchpr_recaptcha_check'
2763
+ ),
2764
+ 'captcha' => array(
2765
+ 'cptch_custom_form' => 'cptch_check_custom_form',
2766
+ 'cptchpls_custom_form' => 'cptchpls_check_custom_form',
2767
+ 'cptchpr_custom_form' => 'cptchpr_check_custom_form',
2768
+ )
2769
+ );
2770
+
2771
+ if ( empty( $display_captcha ) )
2772
+ $remove_captcha[] = 'captcha';
2773
+ if ( empty( $display_google_captcha ) )
2774
+ $remove_captcha[] = 'google-captcha';
2775
+
2776
+ if ( ! empty( $remove_captcha ) ) {
2777
+ foreach ( $remove_captcha as $remove ) {
2778
+
2779
+ foreach ( $filters[ $remove ] as $display_filter => $check_filter ) {
2780
+ if ( has_filter( 'cntctfrm_display_captcha', $display_filter ) ) {
2781
+ remove_filter( 'cntctfrm_display_captcha', $display_filter );
2782
+ $removed_filters[] = array( 'cntctfrm_display_captcha' => $display_filter );
2783
+ }
2784
+
2785
+ if ( has_filter( 'cntctfrm_check_form', $check_filter ) ) {
2786
+ remove_filter( 'cntctfrm_check_form', $check_filter );
2787
+ $removed_filters[] = array( 'cntctfrm_check_form' => $check_filter );
2788
+ }
2789
+ }
2790
+ }
2791
+ }
2792
+ return $removed_filters;
2793
+ } elseif ( 'add_filters' == $action && ! empty( $removed_filters ) ) {
2794
+ for( $i = 0; $i < count( $removed_filters ); $i++ ) {
2795
+ foreach( $removed_filters[ $i ] as $tag => $function ) {
2796
+ add_filter( $tag, $function );
2797
+ }
2798
+ }
2799
+ }
2800
+ return false;
2801
+ }
2802
+ }
2803
+
2804
  if ( ! function_exists( 'cntctfrm_check_and_send' ) ) {
2805
  function cntctfrm_check_and_send() {
2806
  global $cntctfrm_result, $cntctfrm_options;
2807
  if ( ( isset( $_POST['cntctfrm_contact_action'] ) && isset( $_POST['cntctfrm_language'] ) ) || true === $cntctfrm_result ) {
2808
+ $cntctfrm_options = get_option( $_POST['cntctfrm_options_name'] );
 
 
 
 
 
 
 
 
 
 
2809
 
2810
  if ( isset( $_POST['cntctfrm_contact_action'] ) ) {
2811
  /* Check all input data */
2826
  /* Check all input data */
2827
  if ( ! function_exists( 'cntctfrm_check_form' ) ) {
2828
  function cntctfrm_check_form() {
2829
+ global $cntctfrm_error_message, $cntctfrm_options, $cntctfrm_related_plugins;
2830
+
2831
+ if ( empty( $cntctfrm_related_plugins ) )
2832
+ $cntctfrm_related_plugins = cntctfrm_related_plugins();
2833
+
2834
+ $contact_form_multi_active = cntctfrm_check_cf_multi_active();
2835
+
2836
+ $removed_filters = cntctfrm_add_remove_captcha_filters( 'remove_filters' );
2837
+
2838
  $language = isset( $_POST['cntctfrm_language'] ) ? $_POST['cntctfrm_language'] : 'default';
2839
  $cntctfrm_path_of_uploaded_file = $cntctfrm_result = "";
2840
  /* Error messages array */
2841
  $cntctfrm_error_message = array();
 
2842
  $name = isset( $_POST['cntctfrm_contact_name'] ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_name'] ) ) : "";
2843
  $address = isset( $_POST['cntctfrm_contact_address'] ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_address'] ) ) : "";
2844
  $email = isset( $_POST['cntctfrm_contact_email'] ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_email'] ) ) : "";
2923
  unset( $cntctfrm_error_message['error_subject'] );
2924
  if ( 1 == $cntctfrm_options['cntctfrm_required_message_field'] && "" != $message )
2925
  unset( $cntctfrm_error_message['error_message'] );
2926
+
2927
  /* If captcha plugin exists */
2928
+ $result = true;
2929
+ if( has_filter( 'cntctfrm_check_form' ) )
2930
+ $result = apply_filters( 'cntctfrm_check_form', true );
2931
+
2932
+ cntctfrm_add_remove_captcha_filters( 'add_filters', $removed_filters );
2933
+
2934
  if ( false === $result ) { /* for CAPTCHA older than PRO - v1.0.7, PLUS - v1.1.0 v FREE - 1.2.5 */
2935
  $cntctfrm_error_message['error_captcha'] = $cntctfrm_options['cntctfrm_captcha_error'][ $language ];
2936
  } else if ( is_string( $result ) && ! empty( $result ) ) {
2957
  }
2958
  } else {
2959
  $uploads = wp_upload_dir();
2960
+ if ( ! isset( $uploads['path'] ) && isset( $uploads['error'] ) )
2961
  $cntctfrm_error_message['error_attachment'] = $uploads['error'];
2962
  else
2963
  $cntctfrm_path_of_uploaded_file = $uploads['path'] . "/" . 'cntctfrm_' . md5( sanitize_file_name( $_FILES["cntctfrm_contact_attachment"]["name"] ) . time() . $email ) . '_' . sanitize_file_name( $_FILES["cntctfrm_contact_attachment"]["name"] );
2964
  }
2965
+
2966
  $tmp_path = $_FILES["cntctfrm_contact_attachment"]["tmp_name"];
2967
  $path_info = pathinfo( $cntctfrm_path_of_uploaded_file );
2968
 
3017
  unset( $cntctfrm_error_message['error_form'] );
3018
  /* If all is good - send mail */
3019
  $cntctfrm_result = cntctfrm_send_mail();
3020
+
3021
+ if ( ! $contact_form_multi_active && array_key_exists( 'contact-form-to-db' , $cntctfrm_related_plugins ) )
3022
+ $save_emails = ! empty( $cntctfrm_related_plugins['contact-form-to-db']['options'][ $cntctfrm_related_plugins['contact-form-to-db']['save_option'] ] );
3023
+ else
3024
+ $save_emails = ! empty( $cntctfrm_options['save_email_to_db'] );
3025
+ if ( $save_emails )
3026
+ do_action( 'cntctfrm_check_dispatch', $cntctfrm_result );
3027
  }
3028
  return $cntctfrm_result;
3029
  }
3055
  if ( isset( $_SESSION['cntctfrm_send_mail'] ) && true == $_SESSION['cntctfrm_send_mail'] )
3056
  return true;
3057
 
3058
+ if ( 'user' == $cntctfrm_options['cntctfrm_select_email'] ) {
3059
+ if ( false !== $user = get_user_by( 'login', $cntctfrm_options['cntctfrm_user_email'] ) )
3060
+ $to = $user->user_email;
3061
+ } elseif ( $cntctfrm_options['cntctfrm_select_email'] == 'custom' ) {
3062
+ $to = $cntctfrm_options['cntctfrm_custom_email'];
3063
+ }
3064
 
3065
  if ( "" == $to ) {
3066
  /* If email options are not certain choose admin email */
3113
  }
3114
  }
3115
  /* Message */
3116
+ $message_order_fields = $cntctfrm_options['cntctfrm_order_fields'];
3117
+ $message_order_fields = array_merge( $message_order_fields['first_column'], $message_order_fields['second_column'] );
3118
+
3119
  if ( 1 == $cntctfrm_options['cntctfrm_html_email'] ) {
3120
  $message_text = '<html>
3121
+ <head>
3122
+ <title>'. __( "Contact from", 'contact-form-plugin' ) . ' ' . get_bloginfo( 'name' ) . '</title>
3123
+ </head>
3124
+ <body>
3125
+ <table>
3126
+ <tr>
3127
+ <td>' . __( "Site", 'contact-form-plugin' ) . '</td>
3128
+ <td>' . get_bloginfo( "url" ) . '</td>
3129
+ </tr>';
3130
+ foreach( $message_order_fields as $field ){
3131
+ $field = str_replace( 'cntctfrm_contact_', '', $field );
3132
+ switch ( $field ) {
3133
+ case "name":
3134
+ if ( 1 == $cntctfrm_options['cntctfrm_display_name_field'] ) {
3135
+ $message_text .= '<tr><td width="160">';
3136
+ $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_name_label'][ $lang ] : __( "Name", 'contact-form-plugin' );
3137
+ $message_text .= '</td><td>'. $name .'</td></tr>';
3138
+ }
3139
+ break;
3140
+ case "address":
3141
+ if ( 1 == $cntctfrm_options['cntctfrm_display_address_field'] ) {
3142
+ $message_text .= '<tr><td>';
3143
+ $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_address_label'][ $lang ] : __( "Address", 'contact-form-plugin' );
3144
+ $message_text .= '</td><td>'. $address .'</td></tr>';
3145
+ }
3146
+ break;
3147
+ case "email":
3148
+ $message_text .= '<tr><td>';
3149
+ $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_email_label'][ $lang ] : __( "Email", 'contact-form-plugin' );
3150
+ $message_text .= '</td><td>'. $email .'</td></tr>';
3151
+ break;
3152
+ case "subject":
3153
+ $message_text .= '<tr><td>';
3154
+ $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_subject_label'][ $lang ] : __( "Subject", 'contact-form-plugin' );
3155
+ $message_text .= '</td><td>' . $subject .'</td></tr>';
3156
+ break;
3157
+ case "message":
3158
+ $message_text .= '<tr><td>';
3159
+ $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_message_label'][ $lang ] : __( "Message", 'contact-form-plugin' );
3160
+ $message_text .= '</td><td>' . $message .'</td></tr>';
3161
+ break;
3162
+ case "phone":
3163
+ if ( 1 == $cntctfrm_options['cntctfrm_display_phone_field'] ) {
3164
+ $message_text .= '<tr><td>';
3165
+ $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_phone_label'][ $lang ] : __( "Phone Number", 'contact-form-plugin' );
3166
+ $message_text .= '</td><td>'. $phone .'</td></tr>';
3167
+ }
3168
+ break;
3169
+ }
3170
  }
3171
+ $message_text .= '<tr><td><br /></td><td><br /></td></tr>';
3172
 
 
 
 
 
 
 
 
 
 
 
 
3173
  $message_text_for_user = $message_text . '</table></body></html>';
3174
+ $message_text .= $user_info_string . '</table></body></html>';
3175
  } else {
3176
+ $message_text = __( "Site", 'contact-form-plugin' ) . ': ' . get_bloginfo("url") . "\n";;
3177
+ foreach( $message_order_fields as $field ){
3178
+ $field = str_replace( 'cntctfrm_contact_', '', $field );
3179
+ switch ( $field ) {
3180
+ case "name":
3181
+ if ( 1 == $cntctfrm_options['cntctfrm_display_name_field'] ) {
3182
+ $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_name_label'][ $lang ] : __( "Name", 'contact-form-plugin' );
3183
+ $message_text .= ': '. $name . "\n";
3184
+ }
3185
+ break;
3186
+ case "address":
3187
+ if ( 1 == $cntctfrm_options['cntctfrm_display_address_field'] ) {
3188
+ $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_address_label'][ $lang ] : __( "Address", 'contact-form-plugin' );
3189
+ $message_text .= ': '. $address . "\n";
3190
+ }
3191
+ break;
3192
+ case "email":
3193
+ $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_email_label'][ $lang ] : __( "Email", 'contact-form-plugin' );
3194
+ $message_text .= ': ' . $email . "\n";
3195
+ break;
3196
+ case "subject":
3197
+ $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_subject_label'][ $lang ] : __( "Subject", 'contact-form-plugin' );
3198
+ $message_text .= ': ' . $subject . "\n";
3199
+ break;
3200
+ case "message":
3201
+ $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_message_label'][ $lang ] : __( "Message", 'contact-form-plugin' );
3202
+ $message_text .= ': ' . $message ."\n";
3203
+ break;
3204
+ case "phone":
3205
+ if ( 1 == $cntctfrm_options['cntctfrm_display_phone_field'] ) {
3206
+ $message_text .= ( 1 == $cntctfrm_options['cntctfrm_change_label_in_email'] ) ? $cntctfrm_options['cntctfrm_phone_label'][ $lang ] : __( "Phone Number", 'contact-form-plugin' );
3207
+ $message_text .= ': '. $phone . "\n";
3208
+ }
3209
+ break;
3210
+ }
3211
  }
3212
+ $message_text .= "\n";
3213
+
 
 
 
 
3214
  $message_text_for_user = $message_text;
3215
  $message_text .= $user_info_string;
3216
  }
3217
 
3218
+
3219
  do_action( 'cntctfrm_get_mail_data', array( 'sendto' => $to, 'refer' => $form_action_url, 'useragent' => $user_agent ) );
3220
 
3221
  if ( ! function_exists( 'is_plugin_active' ) )
3479
  }
3480
  }
3481
 
3482
+ if ( ! function_exists( 'cntctfrm_wp_enqueue_style' ) ) {
3483
+ function cntctfrm_wp_enqueue_style() {
3484
+ global $cntctfrm_plugin_info;
3485
  wp_enqueue_style( 'cntctfrm_form_style', plugins_url( 'css/form_style.css', __FILE__ ), false, $cntctfrm_plugin_info["Version"] );
3486
+ }
3487
+ }
3488
+
3489
+ if ( ! function_exists ( 'cntctfrm_wp_footer' ) ) {
3490
+ function cntctfrm_wp_footer() {
3491
+ $cntctfrm_plugin_info = get_plugin_data( dirname( __FILE__ ) . '/contact_form.php', false );
3492
+ if ( wp_script_is( 'cntctfrm_frontend_script', 'registered' ) ) {
3493
+ wp_enqueue_script( 'cntctfrm_frontend_script', plugins_url( 'js/cntctfrm.js', __FILE__ ), array( 'jquery' ) );
3494
+ }
3495
  }
3496
  }
3497
 
3498
  if ( ! function_exists ( 'cntctfrm_add_language' ) ) {
3499
  function cntctfrm_add_language() {
3500
+ $is_ajax = defined( 'DOING_AJAX' ) && DOING_AJAX;
3501
 
3502
+ if ( $is_ajax )
3503
+ check_ajax_referer( plugin_basename( __FILE__ ), 'cntctfrm_ajax_nonce_field' );
3504
+ else
3505
+ $_POST['cntctfrm_change_tab'] = $_REQUEST['cntctfrm_languages'];
3506
 
3507
+ $lang_slug = $is_ajax ? $_REQUEST['lang'] : $_REQUEST['cntctfrm_languages'];
3508
+ $lang = strip_tags( preg_replace( '/<[^>]*>/', '', preg_replace( '/<script.*<\/[^>]*>/', '', htmlspecialchars( $lang_slug ) ) ) );
3509
+
3510
+ $contact_form_multi_active = cntctfrm_check_cf_multi_active();
 
3511
 
3512
+ if ( $contact_form_multi_active ) {
3513
+ if ( isset( $_SESSION['cntctfrmmlt_id_form'] ) && $cntctfrm_options = get_option( 'cntctfrmmlt_options_' . $_SESSION['cntctfrmmlt_id_form'] ) ) {
3514
+ /**/
3515
  } else {
3516
  $cntctfrm_options = get_option( 'cntctfrmmlt_options' );
3517
  }
3522
  if ( ! in_array( $lang, $cntctfrm_options['cntctfrm_language'] ) ) {
3523
  $cntctfrm_options['cntctfrm_language'][] = $lang;
3524
 
3525
+ if ( 'pro' == $contact_form_multi_active && $options_main = get_option( 'cntctfrmmltpr_options_main' ) ) {
3526
+ update_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $cntctfrm_options );
3527
+ } elseif ( $contact_form_multi_active ) {
3528
+ $options_main = get_option( 'cntctfrmmlt_options_main' );
3529
+ update_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $cntctfrm_options );
 
3530
  } else {
3531
  update_option( 'cntctfrm_options', $cntctfrm_options );
3532
  }
3533
+
3534
  }
3535
 
3536
+ if ( ! $contact_form_multi_active ) {
3537
  $result = __( "Use shortcode", 'contact-form-plugin' ) . ' <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=' . $lang . ']</span> ' . __( "for this language", 'contact-form-plugin' );
3538
  } else {
3539
  $result = __( "Use shortcode", 'contact-form-plugin' ) . ' <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=' . $lang . ' id=' . $_SESSION['cntctfrmmlt_id_form'] . ']</span> ' . __( "for this language", 'contact-form-plugin' );
3540
  }
3541
 
3542
+ if( $is_ajax ) {
3543
+ echo json_encode( $result );
3544
+ die();
3545
+ }
3546
  }
3547
  }
3548
 
3549
  if ( ! function_exists ( 'cntctfrm_remove_language' ) ) {
3550
  function cntctfrm_remove_language() {
3551
+ $is_ajax = defined( 'DOING_AJAX' ) && DOING_AJAX;
3552
+ if ( $is_alax )
3553
+ check_ajax_referer( plugin_basename( __FILE__ ), 'cntctfrm_ajax_nonce_field' );
3554
+ else
3555
+ $_POST['cntctfrm_change_tab'] = 'default';
 
3556
 
3557
+ $contact_form_multi_active = cntctfrm_check_cf_multi_active();
3558
+
3559
+ if ( $contact_form_multi_active ) {
3560
+ if ( isset( $_SESSION['cntctfrmmlt_id_form'] ) && $cntctfrm_options = get_option( 'cntctfrmmlt_options_' . $_SESSION['cntctfrmmlt_id_form'] ) ) {
3561
+ /**/
3562
  } else {
3563
  $cntctfrm_options = get_option( 'cntctfrmmlt_options' );
3564
  }
3566
  $cntctfrm_options = get_option( 'cntctfrm_options' );
3567
  }
3568
 
3569
+ $lang = $is_ajax ? $_REQUEST['lang'] : $_REQUEST['cntctfrm_delete_button'];
3570
+
3571
+ if ( $key = array_search( $lang, $cntctfrm_options['cntctfrm_language'] ) !== false )
3572
+ $cntctfrm_options['cntctfrm_language'] = array_diff( $cntctfrm_options['cntctfrm_language'], array( $lang ) );
3573
+ if ( isset( $cntctfrm_options['cntctfrm_name_label'][ $lang ] ) )
3574
+ unset( $cntctfrm_options['cntctfrm_name_label'][ $lang ] );
3575
+ if ( isset( $cntctfrm_options['cntctfrm_address_label'][ $lang ] ) )
3576
+ unset( $cntctfrm_options['cntctfrm_address_label'][ $lang ] );
3577
+ if ( isset( $cntctfrm_options['cntctfrm_email_label'][ $lang ] ) )
3578
+ unset( $cntctfrm_options['cntctfrm_email_label'][ $lang ] );
3579
+ if ( isset( $cntctfrm_options['cntctfrm_phone_label'][ $lang ] ) )
3580
+ unset( $cntctfrm_options['cntctfrm_phone_label'][ $lang ] );
3581
+ if ( isset( $cntctfrm_options['cntctfrm_subject_label'][ $lang ] ) )
3582
+ unset( $cntctfrm_options['cntctfrm_subject_label'][ $lang ] );
3583
+ if ( isset( $cntctfrm_options['cntctfrm_message_label'][ $lang ] ) )
3584
+ unset( $cntctfrm_options['cntctfrm_message_label'][ $lang ] );
3585
+ if ( isset( $cntctfrm_options['cntctfrm_attachment_label'][ $lang ] ) )
3586
+ unset( $cntctfrm_options['cntctfrm_attachment_label'][ $lang ] );
3587
+ if ( isset( $cntctfrm_options['cntctfrm_attachment_tooltip'][ $lang ] ) )
3588
+ unset( $cntctfrm_options['cntctfrm_attachment_tooltip'][ $lang ] );
3589
+ if ( isset( $cntctfrm_options['cntctfrm_send_copy_label'][ $lang ] ) )
3590
+ unset( $cntctfrm_options['cntctfrm_send_copy_label'][ $lang ] );
3591
+ if ( isset( $cntctfrm_options['cntctfrm_thank_text'][ $lang ] ) )
3592
+ unset( $cntctfrm_options['cntctfrm_thank_text'][ $lang ] );
3593
+ if ( isset( $cntctfrm_options['cntctfrm_submit_label'][ $lang ] ) )
3594
+ unset( $cntctfrm_options['cntctfrm_submit_label'][ $lang ]);
3595
+ if ( isset( $cntctfrm_options['cntctfrm_name_error'][ $lang ] ) )
3596
+ unset( $cntctfrm_options['cntctfrm_name_error'][ $lang ] );
3597
+ if ( isset( $cntctfrm_options['cntctfrm_address_error'][ $lang ] ) )
3598
+ unset( $cntctfrm_options['cntctfrm_address_error'][ $lang ] );
3599
+ if ( isset( $cntctfrm_options['cntctfrm_email_error'][ $lang ] ) )
3600
+ unset( $cntctfrm_options['cntctfrm_email_error'][ $lang ] );
3601
+ if ( isset( $cntctfrm_options['cntctfrm_phone_error'][ $lang ] ) )
3602
+ unset( $cntctfrm_options['cntctfrm_phone_error'][ $lang ] );
3603
+ if ( isset( $cntctfrm_options['cntctfrm_subject_error'][ $lang ] ) )
3604
+ unset( $cntctfrm_options['cntctfrm_subject_error'][ $lang ] );
3605
+ if ( isset( $cntctfrm_options['cntctfrm_message_error'][ $lang ] ) )
3606
+ unset( $cntctfrm_options['cntctfrm_message_error'][ $lang ] );
3607
+ if ( isset( $cntctfrm_options['cntctfrm_attachment_error'][ $lang ] ) )
3608
+ unset( $cntctfrm_options['cntctfrm_attachment_error'][ $lang ] );
3609
+ if ( isset( $cntctfrm_options['cntctfrm_attachment_upload_error'][ $lang ] ) )
3610
+ unset( $cntctfrm_options['cntctfrm_attachment_upload_error'][ $lang ] );
3611
+ if ( isset( $cntctfrm_options['cntctfrm_attachment_move_error'][ $lang ] ) )
3612
+ unset( $cntctfrm_options['cntctfrm_attachment_move_error'][ $lang ] );
3613
+ if ( isset( $cntctfrm_options['cntctfrm_attachment_size_error'][ $lang ] ) )
3614
+ unset( $cntctfrm_options['cntctfrm_attachment_size_error'][ $lang ] );
3615
+ if ( isset( $cntctfrm_options['cntctfrm_captcha_error'][ $lang ] ) )
3616
+ unset( $cntctfrm_options['cntctfrm_captcha_error'][ $lang ] );
3617
+ if ( isset( $cntctfrm_options['cntctfrm_form_error'][ $lang ] ) )
3618
+ unset( $cntctfrm_options['cntctfrm_form_error'][ $lang ] );
3619
+
3620
+ if ( 'pro' == $contact_form_multi_active && $options_main = get_option( 'cntctfrmmltpr_options_main' ) ) {
3621
+ update_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $cntctfrm_options );
3622
+ } elseif ( $contact_form_multi_active ) {
3623
+ $options_main = get_option( 'cntctfrmmlt_options_main' );
3624
+ update_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $cntctfrm_options );
3625
  } else {
3626
  update_option( 'cntctfrm_options', $cntctfrm_options );
3627
  }
3628
+
3629
+ if( $is_alax )
3630
+ die();
3631
  }
3632
  }
3633
 
3640
  if ( 'plugins.php' == $hook_suffix ) {
3641
  $cntctfrm_options = get_option( 'cntctfrm_options' );
3642
  if ( isset( $cntctfrm_options['first_install'] ) && strtotime( '-1 week' ) > $cntctfrm_options['first_install'] ) {
3643
+ bws_plugin_banner( $cntctfrm_plugin_info, 'cntctfrm', 'contact-form-plugin', 'f575dc39cba54a9de88df346eed52101', '77', '//ps.w.org/contact-form-plugin/assets/icon-128x128.png' );
3644
  }
3645
  bws_plugin_banner_to_settings( $cntctfrm_plugin_info, 'cntctfrm_options', 'contact-form-plugin', 'admin.php?page=contact_form.php' );
3646
  }
3713
  $lang_default = '...';
3714
 
3715
  /* Check contact-form-multi plugin */
3716
+ $contact_form_multi_active = cntctfrm_check_cf_multi_active();
3717
+
3718
+ if ( $contact_form_multi_active ) {
3719
+ if ( 'pro' == $contact_form_multi_active && $multi_options_main = get_option( 'cntctfrmmltpr_options_main' ) ) {
3720
+ /**/
3721
+ } else {
3722
+ $multi_options_main = get_option( 'cntctfrmmlt_options_main' );
3723
  }
3724
+
3725
+ if ( ! $multi_options_main ) {
3726
+ $contact_form_multi_active = false;
3727
+ } else {
3728
+ if ( $multi_options_main['name_id_form'] ) {
3729
+ $multi_forms = $multi_ids = $multi_forms_languages = array();
3730
+ foreach ( $multi_options_main['name_id_form'] as $id => $title ) {
3731
+ $multi_forms[ $id ] = $title;
3732
+ array_push( $multi_ids, $id );
3733
+ $multi_options = get_option( 'cntctfrmmlt_options_' . $id );
3734
+ $language = isset( $multi_options['cntctfrm_language'] ) ? $multi_options['cntctfrm_language'] : array();
3735
+ array_unshift( $language, 'default' );
3736
+ $multi_forms_languages[ $id ] = $language;
3737
+ }
3738
  }
3739
  }
3740
  }
3741
+
3742
+ if ( ! $contact_form_multi_active ) {
3743
  $cntctfrm_options = get_option( 'cntctfrm_options' );
3744
  array_unshift( $cntctfrm_options['cntctfrm_language'], 'default' );
3745
  } ?>
3746
  <div id="cntctfrm" style="display:none;">
3747
  <fieldset>
3748
+ <?php if ( $contact_form_multi_active ) { ?>
3749
  <label>
3750
  <select name="cntctfrm_forms_list" id="cntctfrm_forms_list">
3751
+ <?php foreach ( $multi_forms as $id => $title ) {
3752
  printf( '<option value="%1$s">%2$s</option>', $id, $title );
3753
  } ?>
3754
  </select>
3758
  <label>
3759
  <select name="cntctfrm_multi_languages_list" id="cntctfrm_multi_languages_list">
3760
  <?php $i = 1;
3761
+ foreach ( $multi_forms_languages as $id => $languages ) {
3762
  foreach ( $languages as $language ) {
3763
  printf( '<option value="%1$s" data-form-id="%2$s" %3$s>%4$s</option>', strtolower( $language ), $id, ( $i > 1 ) ? 'style="display: none;"' : '', ( $language == 'default' ) ? $lang_default : $cntctfrm_lang_codes[ $language ] );
3764
  }
3767
  </select>
3768
  <span class="title"><?php _e( 'Language', 'contact-form-plugin' ); ?></span>
3769
  </label>
3770
+ <input class="bws_default_shortcode" type="hidden" name="default" value="[bestwebsoft_contact_form id=<?php echo array_shift( $multi_ids ); ?>]" />
3771
  <?php } else { ?>
3772
  <label>
3773
  <select name="cntctfrm_languages_list" id="cntctfrm_languages_list">
3784
  function cntctfrm_shortcode_init() {
3785
  (function($) {
3786
  var current_object = '<?php echo ( $wp_version < 3.9 ) ? "#TB_ajaxContent" : ".mce-reset" ?>';
3787
+ <?php if ( $contact_form_multi_active ) { ?>
3788
  $( current_object + ' #bws_shortcode_display' ).bind( 'display_shortcode', function() {
3789
  var cntctfrm_form_id = $( current_object + ' #cntctfrm_forms_list option:selected' ).val(),
3790
  cntctfrm_get_form_language = $( current_object + ' #cntctfrm_multi_languages_list option:selected' ).val(),
3874
  add_filter( 'plugin_row_meta', 'cntctfrm_register_plugin_links', 10, 2 );
3875
 
3876
  add_action( 'admin_enqueue_scripts', 'cntctfrm_admin_head' );
3877
+ add_action( 'wp_enqueue_scripts', 'cntctfrm_wp_enqueue_style' );
3878
+ add_action( 'wp_footer', 'cntctfrm_wp_footer' );
3879
 
3880
  add_shortcode( 'contact_form', 'cntctfrm_display_form' );
3881
  add_shortcode( 'bws_contact_form', 'cntctfrm_display_form' );
css/style.css CHANGED
@@ -13,6 +13,7 @@
13
  width: 300px;
14
  }
15
  .cntctfrm_label_language_tab {
 
16
  float: left;
17
  padding: 2px 5px;
18
  border-radius: 4px 4px 0px 0px;
@@ -36,29 +37,53 @@
36
  margin-left: 7px;
37
  position: relative;
38
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  .cntctfrm_language_tab_block_mini {
40
- background: url("../images/toggle-arrow.png") no-repeat scroll left -28px transparent;
41
  border-bottom: 1px solid #DFDFDF;
42
  line-height: 18px;
43
  padding-left: 22px;
44
  color: #888888;
45
  font-size: 10px;
46
  margin-top: 7px;
 
47
  }
48
  .cntctfrm_language_tab_block_mini.cntctfrm_language_tab_block_mini_open {
49
- background-position: left -5px;
50
  }
51
  .rtl .cntctfrm_language_tab_block_mini {
52
  padding-left: 0;
53
  padding-right: 22px;
54
- background-position: right -27px;
55
  }
56
  .rtl .cntctfrm_language_tab_block_mini.cntctfrm_language_tab_block_mini_open {
57
- background-position: right -51px;
58
  }
59
  .cntctfrm_language_tab_block_mini:hover {
60
  opacity: 0.7;
61
  }
 
 
 
62
  .cntctfrm_language_tab_block {
63
  padding: 5px 10px 5px 5px;
64
  }
@@ -217,13 +242,13 @@ td.cntctfrm_td_top_align {
217
  float: left;
218
  }
219
  .cntctfrm_auto_response_message {
220
- position: relative;
221
- margin-left: 20px;
222
  z-index: -1;
223
  }
224
  @media screen and (max-width: 785px) {
225
  .cntctfrm_auto_response_message {
226
- margin-left: 0px;
227
  }
228
  }
229
  @media screen and (max-width: 420px) {
@@ -231,6 +256,34 @@ td.cntctfrm_td_top_align {
231
  white-space: normal;
232
  }
233
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234
  @media screen and (max-width: 1220px) {
235
  .cntctfrm_how_to_use {
236
  float: none;
13
  width: 300px;
14
  }
15
  .cntctfrm_label_language_tab {
16
+ position: relative;
17
  float: left;
18
  padding: 2px 5px;
19
  border-radius: 4px 4px 0px 0px;
37
  margin-left: 7px;
38
  position: relative;
39
  }
40
+ .cntctfrm_change_tab {
41
+ cursor: pointer;
42
+ position: absolute;
43
+ left: 0;
44
+ width: calc(100% - 20px);
45
+ width: -webkit-calc(100% - 20px);
46
+ width: -moz--calc(100% - 20px);
47
+ height: 18px;
48
+ opacity: 0;
49
+ }
50
+ .cntctfrm_del_button_wrap {
51
+ position: absolute;
52
+ }
53
+ .cntctfrm_delete_button {
54
+ cursor: pointer;
55
+ height: 18px;
56
+ position: relative;
57
+ right: 10px;
58
+ opacity: 0;
59
+ }
60
  .cntctfrm_language_tab_block_mini {
61
+ background: url("../images/toggle-arrow.png") no-repeat scroll left -5px transparent;
62
  border-bottom: 1px solid #DFDFDF;
63
  line-height: 18px;
64
  padding-left: 22px;
65
  color: #888888;
66
  font-size: 10px;
67
  margin-top: 7px;
68
+ cursor: pointer;
69
  }
70
  .cntctfrm_language_tab_block_mini.cntctfrm_language_tab_block_mini_open {
71
+ background-position: left -28px;
72
  }
73
  .rtl .cntctfrm_language_tab_block_mini {
74
  padding-left: 0;
75
  padding-right: 22px;
76
+ background-position: right -51px;
77
  }
78
  .rtl .cntctfrm_language_tab_block_mini.cntctfrm_language_tab_block_mini_open {
79
+ background-position: right -27px;
80
  }
81
  .cntctfrm_language_tab_block_mini:hover {
82
  opacity: 0.7;
83
  }
84
+ input[name="cntctfrm_display_google_captcha"] {
85
+ margin-right: 8px;
86
+ }
87
  .cntctfrm_language_tab_block {
88
  padding: 5px 10px 5px 5px;
89
  }
242
  float: left;
243
  }
244
  .cntctfrm_auto_response_message {
245
+ position: relative;
246
+ margin-left: 20px;
247
  z-index: -1;
248
  }
249
  @media screen and (max-width: 785px) {
250
  .cntctfrm_auto_response_message {
251
+ margin-left: 0px;
252
  }
253
  }
254
  @media screen and (max-width: 420px) {
256
  white-space: normal;
257
  }
258
  }
259
+ @media only screen and ( max-width: 782px ) {
260
+ .cntctfrm_td_name,
261
+ .cntctfrm_td_email,
262
+ .cntctfrm_td_name label:first-of-type,
263
+ .cntctfrm_td_email label:first-of-type {
264
+ width: 100% !important;
265
+ }
266
+
267
+ .cntctfrm_info {
268
+ display: inline-block;
269
+ }
270
+
271
+ #cntctfrm_select_from_custom_field,
272
+ #cntctfrm_from_custom_email,
273
+ #cntctfrm_select_email_user,
274
+ #cntctfrm_select_email_custom {
275
+ margin-top: 9px;
276
+ }
277
+ input[name="cntctfrm_from_field"],
278
+ input[name="cntctfrm_custom_from_email"],
279
+ select[name="cntctfrm_user_email"],
280
+ input[name="cntctfrm_custom_email"] {
281
+ float: right;
282
+ width: calc(100% - 31px) !important;
283
+ width: -moz-calc(100% - 31px) !important;
284
+ width: -webkit-calc(100% - 31px) !important;
285
+ }
286
+ }
287
  @media screen and (max-width: 1220px) {
288
  .cntctfrm_how_to_use {
289
  float: none;
js/script.js CHANGED
@@ -25,7 +25,7 @@
25
  $( 'input[name="cntctfrm_redirect_url"]' ).focus( function() {
26
  $( '#cntctfrm_action_after_send_url' ).attr( 'checked', 'checked' );
27
  });
28
-
29
  $( '#cntctfrm_display_add_info' ).change( function() {
30
  if ( $( this ).is( ':checked' ) ) {
31
  $( '.cntctfrm_display_add_info_block' ).show();
@@ -33,7 +33,9 @@
33
  $( '.cntctfrm_display_add_info_block' ).hide();
34
  }
35
  });
36
- $( '#cntctfrm_add_language_button' ).click( function() {
 
 
37
  $.ajax({
38
  url: '../wp-admin/admin-ajax.php',/* update_url, */
39
  type: "POST",
@@ -111,7 +113,7 @@
111
  },
112
  'rtl' : {
113
  'left' : '#cntctfrm_submit_second_column',
114
- 'right' : '#cntctfrm_submit_first_column'
115
  }
116
  },
117
  html = $( submit[ direction ][ prev_position ] ).html();
25
  $( 'input[name="cntctfrm_redirect_url"]' ).focus( function() {
26
  $( '#cntctfrm_action_after_send_url' ).attr( 'checked', 'checked' );
27
  });
28
+
29
  $( '#cntctfrm_display_add_info' ).change( function() {
30
  if ( $( this ).is( ':checked' ) ) {
31
  $( '.cntctfrm_display_add_info_block' ).show();
33
  $( '.cntctfrm_display_add_info_block' ).hide();
34
  }
35
  });
36
+ $( '#cntctfrm_add_language_button' ).click( function( event ) {
37
+ event = event || window.event;
38
+ event.preventDefault();
39
  $.ajax({
40
  url: '../wp-admin/admin-ajax.php',/* update_url, */
41
  type: "POST",
113
  },
114
  'rtl' : {
115
  'left' : '#cntctfrm_submit_second_column',
116
+ 'right' : '#cntctfrm_submit_first_column'
117
  }
118
  },
119
  html = $( submit[ direction ][ prev_position ] ).html();
languages/contact-form-plugin-af_ZA.mo CHANGED
Binary file
languages/contact-form-plugin-af_ZA.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: 2016-06-27 16:30+0300\n"
6
- "PO-Revision-Date: 2016-06-27 16:30+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Aldu <alducornelissen@gmail.com>\n"
9
  "Language: af\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: contact_form.php:37 contact_form.php:1030
21
  msgid "Contact Form Settings"
22
  msgstr "Kontak Form Verstellings"
23
 
@@ -25,35 +25,46 @@ msgstr "Kontak Form Verstellings"
25
  msgid "Contact Form"
26
  msgstr "Kontak Form"
27
 
28
- #: contact_form.php:165 contact_form.php:1565 contact_form.php:1599
29
- msgid "Name:"
30
- msgstr "Naam:"
 
 
31
 
32
- #: contact_form.php:166 contact_form.php:1566 contact_form.php:1600
33
- msgid "Address:"
34
- msgstr "Adres:"
 
 
35
 
36
- #: contact_form.php:167 contact_form.php:1567 contact_form.php:1601
37
- msgid "Email Address:"
 
38
  msgstr "Epos Adres:"
39
 
40
- #: contact_form.php:168 contact_form.php:1568 contact_form.php:1602
41
- msgid "Phone number:"
 
42
  msgstr "Telefoon nommer:"
43
 
44
- #: contact_form.php:169 contact_form.php:1569 contact_form.php:1603
45
- msgid "Subject:"
46
- msgstr "Onderwerp:"
 
 
47
 
48
- #: contact_form.php:170 contact_form.php:1570 contact_form.php:1604
49
- msgid "Message:"
50
- msgstr "Boodskap:"
 
 
51
 
52
- #: contact_form.php:171 contact_form.php:1571 contact_form.php:1605
53
- msgid "Attachment:"
 
54
  msgstr "Aanhegsel:"
55
 
56
- #: contact_form.php:172
57
  msgid ""
58
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
59
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -61,77 +72,77 @@ msgstr ""
61
  "Ondersteunde datalêer tipes: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
62
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
63
 
64
- #: contact_form.php:173 contact_form.php:1573 contact_form.php:1607
65
  msgid "Send me a copy"
66
  msgstr "Stuur vir my 'n kopie"
67
 
68
- #: contact_form.php:174 contact_form.php:1574 contact_form.php:1608
69
  msgid "Submit"
70
  msgstr "Dien in"
71
 
72
- #: contact_form.php:175
73
  msgid "Your name is required."
74
  msgstr "Jou naam word benodig."
75
 
76
- #: contact_form.php:176
77
  msgid "Address is required."
78
  msgstr "Adres word benodig."
79
 
80
- #: contact_form.php:177
81
  msgid "A valid email address is required."
82
  msgstr "'n Geldige epos adres word benodig."
83
 
84
- #: contact_form.php:178
85
  msgid "Phone number is required."
86
  msgstr "'n Telefoon nommer word benodig."
87
 
88
- #: contact_form.php:179
89
  msgid "Subject is required."
90
  msgstr "'n Onderwerp word benodig."
91
 
92
- #: contact_form.php:180
93
  msgid "Message text is required."
94
  msgstr "'n Boodskap teks word benodig ."
95
 
96
- #: contact_form.php:181
97
  msgid "File format is not valid."
98
  msgstr "Datalêer formaat is nie geldig nie."
99
 
100
- #: contact_form.php:182
101
  msgid "File upload error."
102
  msgstr "Oplaai van datalêer foutief."
103
 
104
- #: contact_form.php:183
105
  msgid "The file could not be uploaded."
106
  msgstr "Die datalêer kon nie opgelaai word nie."
107
 
108
- #: contact_form.php:184
109
  msgid "This file is too large."
110
  msgstr "Die datalêer is te groot."
111
 
112
- #: contact_form.php:185
113
  msgid "Please fill out the CAPTCHA."
114
  msgstr "Vul asseblief die CAPTCHA in."
115
 
116
- #: contact_form.php:186
117
  msgid "Please make corrections below and try again."
118
  msgstr "Korregeer asseblief die foute hierdoner en probeer weer."
119
 
120
- #: contact_form.php:188
121
  msgid "Thank you for contacting us."
122
  msgstr "Dankie dat jy ons gekontak het."
123
 
124
- #: contact_form.php:688 contact_form.php:998
125
  msgid "Settings saved."
126
  msgstr "Verstellings is gestoor."
127
 
128
- #: contact_form.php:940
129
  msgid ""
130
  "Email 'FROM' field option was changed, which may cause email messages being "
131
  "moved to the spam folder or email delivery failures."
132
  msgstr ""
133
 
134
- #: contact_form.php:950
135
  msgid ""
136
  "If the 'Redirect to page' option is selected then the URL field should be in "
137
  "the following format"
@@ -139,12 +150,12 @@ msgstr ""
139
  "As die 'Redirect to page' opsie geselekteer is moet die URL veld in die "
140
  "volgende formaat wees"
141
 
142
- #: contact_form.php:957
143
  #, fuzzy
144
  msgid "Such user does not exist."
145
  msgstr "Hierdie gebruiker bestaan nie. Die instellings is nie gestoor nie."
146
 
147
- #: contact_form.php:967
148
  #, fuzzy
149
  msgid ""
150
  "Please enter a valid email address in the 'Use this email address' field."
@@ -152,78 +163,63 @@ msgstr ""
152
  "Vul asseblief 'n geldige epos adres in die 'FROM/VAN' veld. Die verstellings "
153
  "is nie gestoor nie."
154
 
155
- #: contact_form.php:975
156
  #, fuzzy
157
  msgid "Please enter a valid email address in the 'FROM' field."
158
  msgstr ""
159
  "Vul asseblief 'n geldige epos adres in die 'FROM/VAN' veld. Die verstellings "
160
  "is nie gestoor nie."
161
 
162
- #: contact_form.php:1000
163
  #, fuzzy
164
  msgid "Settings are not saved."
165
  msgstr "Verstellings is gestoor."
166
 
167
- #: contact_form.php:1027
168
  msgid "All plugin settings were restored."
169
  msgstr ""
170
 
171
- #: contact_form.php:1032
172
  msgid "How to Use Step-by-step Instruction"
173
  msgstr ""
174
 
175
- #: contact_form.php:1035 contact_form.php:3024 contact_form.php:3038
176
  msgid "Settings"
177
  msgstr "Verstellings"
178
 
179
- #: contact_form.php:1036
180
  #, fuzzy
181
  msgid "Additional settings"
182
  msgstr "Addisionele opsies"
183
 
184
- #: contact_form.php:1037
185
  msgid "Appearance"
186
  msgstr ""
187
 
188
- #: contact_form.php:1038
189
  msgid "Custom code"
190
  msgstr ""
191
 
192
- #: contact_form.php:1039
193
  msgid "Go PRO"
194
  msgstr "Gaan PRO"
195
 
196
- #: contact_form.php:1045
197
- #, fuzzy
198
- msgid ""
199
- "Please enable JavaScript to add language in the contact form, change the "
200
- "names of the contact form fields and error messages."
201
- msgstr "Verander die name van die kontak vorm velde en foutboodskappe"
202
-
203
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1740
204
- msgid "Form layout"
205
- msgstr ""
206
-
207
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1752
208
  #, fuzzy
209
- msgid "Submit position"
210
- msgstr "Indien knoppie"
211
-
212
- #: contact_form.php:1057
213
- msgid "Notice:"
214
  msgstr "Kennisgewing:"
215
 
216
- #: contact_form.php:1061
217
  msgid "NEW_FORM"
218
  msgstr ""
219
 
220
- #: contact_form.php:1062
221
  msgid ""
222
  "If you want to create multiple contact forms, please install the Contact "
223
  "Form Multi plugin."
224
  msgstr ""
225
 
226
- #: contact_form.php:1071
227
  #, fuzzy, php-format
228
  msgid ""
229
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -232,7 +228,7 @@ msgstr ""
232
  "As u die Kontak Vorm by u webstuiste wil bylas, kopieër en plak net die "
233
  "kortkode na u post, bladsy of widget:"
234
 
235
- #: contact_form.php:1077
236
  #, php-format
237
  msgid ""
238
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -241,7 +237,7 @@ msgid ""
241
  "language."
242
  msgstr ""
243
 
244
- #: contact_form.php:1086
245
  msgid ""
246
  "If you leave the fields empty, the messages will be sent to the email "
247
  "address specified during registration."
@@ -249,127 +245,135 @@ msgstr ""
249
  "As u die velde leeg laat, sal die boodskappe gestuur word na die epos adres "
250
  "wat gespesifiseer was gedurende registrasie"
251
 
252
- #: contact_form.php:1089
253
- msgid "The user's email address:"
 
254
  msgstr "Die gebruiker se epos adres:"
255
 
256
- #: contact_form.php:1093
257
  #, fuzzy
258
  msgid "Select a username"
259
  msgstr "Skep 'n gebruikersnaam"
260
 
261
- #: contact_form.php:1106
 
262
  msgid ""
263
- "Enter a username of the person who should get the messages from the contact "
264
  "form."
265
  msgstr ""
266
  "Sleutel 'n gebruikersnaam in vir die persoon wat die boodskappe moet kry van "
267
  "die kontak vorm."
268
 
269
- #: contact_form.php:1110
270
- msgid "Use this email address:"
 
271
  msgstr "Gebruik hierdie epos adres:"
272
 
273
- #: contact_form.php:1114
274
- msgid "Enter the email address you want the messages forwarded to."
 
275
  msgstr "Sleutel in die epos adres in waar u die boodskappe aangestuur wil he."
276
 
277
- #: contact_form.php:1121 contact_form.php:1487 contact_form.php:1679
278
- #: contact_form.php:1767 contact_form.php:3119
279
  msgid "Close"
280
  msgstr ""
281
 
282
- #: contact_form.php:1125
283
- msgid "Add department selectbox to the contact form:"
 
284
  msgstr "Voeg 'n departementele keuse-boks by die kontak vorm:"
285
 
286
- #: contact_form.php:1133 contact_form.php:1496 contact_form.php:1698
287
- #: contact_form.php:1973
288
  msgid "If you upgrade to Pro version all your settings will be saved."
289
  msgstr "As u opgradeer na die Pro weergawe sal die verstellings gestoor word."
290
 
291
- #: contact_form.php:1140 contact_form.php:1407 contact_form.php:1501
292
- #: contact_form.php:1705 contact_form.php:1980
293
  msgid "Unlock premium options by upgrading to Pro version"
294
  msgstr ""
295
 
296
- #: contact_form.php:1143 contact_form.php:1410 contact_form.php:1504
297
- #: contact_form.php:1708 contact_form.php:1983 contact_form.php:3329
298
  msgid "Learn More"
299
  msgstr ""
300
 
301
- #: contact_form.php:1151
302
  msgid "Save emails to the database"
303
  msgstr "Stoor eposse na die databasis."
304
 
305
- #: contact_form.php:1156
306
  msgid "Using"
307
  msgstr "In Gebruik"
308
 
309
- #: contact_form.php:1159 contact_form.php:1163
 
 
 
 
 
 
310
  #, fuzzy
311
- msgid "Using Contact Form to DB by BestWebSoft"
312
- msgstr "Gebruik van Kontak Vorm na DB verrig deur"
313
 
314
- #: contact_form.php:1159
 
315
  msgid "Activate"
316
  msgstr "Aktiveer"
317
 
318
- #: contact_form.php:1163
 
319
  msgid "Download"
320
  msgstr "Download"
321
 
322
- #: contact_form.php:1173
323
- msgid "What to use?"
324
- msgstr "Wat om te gebruik?"
325
 
326
- #: contact_form.php:1178
327
  msgid "Wp-mail"
328
  msgstr "Wp-mail"
329
 
330
- #: contact_form.php:1180
331
  #, fuzzy
332
  msgid "You can use the Wordpress wp_mail function for mailing"
333
  msgstr "U kan die wp_mail funksie gebruik vir eposse"
334
 
335
- #: contact_form.php:1183
336
  msgid "Mail"
337
  msgstr "Mail"
338
 
339
- #: contact_form.php:1185
340
  #, fuzzy
341
  msgid "You can use the PHP mail function for mailing"
342
  msgstr "U kan die wp_mail funksie gebruik vir eposse"
343
 
344
- #: contact_form.php:1190
345
  msgid "'FROM' field"
346
  msgstr ""
347
 
348
- #: contact_form.php:1192 contact_form.php:1251 contact_form.php:1839
349
- #: contact_form.php:2810 contact_form.php:2846
350
- msgid "Name"
351
- msgstr "Naam"
352
-
353
- #: contact_form.php:1195
354
  msgid "User name"
355
  msgstr "Gebruikersnaam"
356
 
357
- #: contact_form.php:1197
358
  msgid ""
359
  "The name of the user who fills the form will be used in the field 'From'."
360
  msgstr ""
361
  "Die naam van die gebruiker wie die vorm invul sal gebruik word vir die 'From/"
362
  "Van' veld."
363
 
364
- #: contact_form.php:1202 contact_form.php:2821 contact_form.php:2853
365
  msgid "Email"
366
  msgstr "Epos"
367
 
368
- #: contact_form.php:1205
369
  msgid "User email"
370
  msgstr "Gebruiker epos"
371
 
372
- #: contact_form.php:1207
373
  msgid ""
374
  "The email address of the user who fills the form will be used in the field "
375
  "'From'."
@@ -377,190 +381,149 @@ msgstr ""
377
  "Die epos adres van die gebruiker wie die vorm invul sal gebruik word in die "
378
  "'From/van' veld."
379
 
380
- #: contact_form.php:1210
381
  msgid ""
382
  "If this option is changed, email messages may be moved to the spam folder or "
383
  "email delivery failures may occur."
384
  msgstr ""
385
 
386
- #: contact_form.php:1216
387
  msgid "Required symbol"
388
  msgstr "Benodigde simbool"
389
 
390
- #: contact_form.php:1226
391
  msgid "Fields"
392
  msgstr "Velde"
393
 
394
- #: contact_form.php:1227 contact_form.php:1254 contact_form.php:1281
395
- #: contact_form.php:1301 contact_form.php:1340 contact_form.php:1425
396
  msgid "Used"
397
  msgstr "Gebruik"
398
 
399
- #: contact_form.php:1228 contact_form.php:1243 contact_form.php:1258
400
- #: contact_form.php:1285 contact_form.php:1305 contact_form.php:1318
401
- #: contact_form.php:1344 contact_form.php:1357 contact_form.php:1381
402
  msgid "Required"
403
  msgstr "Benodig"
404
 
405
- #: contact_form.php:1230 contact_form.php:1263 contact_form.php:1323
406
- #: contact_form.php:1362 contact_form.php:1386
407
  msgid "Visible"
408
  msgstr "Sigbaar"
409
 
410
- #: contact_form.php:1231 contact_form.php:1267 contact_form.php:1327
411
- #: contact_form.php:1366 contact_form.php:1390
412
  msgid "Disabled for editing"
413
  msgstr "Gedeaktiveer vir wysiging"
414
 
415
- #: contact_form.php:1232 contact_form.php:1291 contact_form.php:1370
416
- #: contact_form.php:1394
417
  msgid "Field's default value"
418
  msgstr "Veld se verstekwaarde"
419
 
420
- #: contact_form.php:1239
421
  msgid "Department selectbox"
422
  msgstr ""
423
 
424
- #: contact_form.php:1271
425
  msgid "Use User's name as a default value if the user is logged in."
426
  msgstr ""
427
 
428
- #: contact_form.php:1272 contact_form.php:1332
429
  msgid ""
430
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
431
  "in users."
432
  msgstr ""
433
 
434
- #: contact_form.php:1278
435
  msgid "Location selectbox"
436
  msgstr ""
437
 
438
- #: contact_form.php:1298 contact_form.php:1844 contact_form.php:2816
439
- #: contact_form.php:2850
440
- msgid "Address"
441
- msgstr "Adres: "
442
-
443
- #: contact_form.php:1314
444
- msgid "Email Address"
445
- msgstr "Epos Adres:"
446
-
447
- #: contact_form.php:1331
448
  msgid "Use User's email as a default value if the user is logged in."
449
  msgstr ""
450
 
451
- #: contact_form.php:1337
452
- msgid "Phone number"
453
- msgstr "Telefoon nommer:"
454
-
455
- #: contact_form.php:1353 contact_form.php:1859 contact_form.php:2831
456
- #: contact_form.php:2859
457
- msgid "Subject"
458
- msgstr "Onderwerp"
459
-
460
- #: contact_form.php:1377 contact_form.php:1863 contact_form.php:2834
461
- #: contact_form.php:2861
462
- msgid "Message"
463
- msgstr "Boodskap"
464
-
465
- #: contact_form.php:1418
466
  msgid "Attachment block"
467
  msgstr "Aanhegsel blok"
468
 
469
- #: contact_form.php:1420
470
  msgid "Users can attach the following file formats"
471
  msgstr "Gebruikers kan die volgende dataleêr formate aanheg"
472
 
473
- #: contact_form.php:1438
474
  msgid "Add to the form"
475
  msgstr "Voeg by die vorm by"
476
 
477
- #: contact_form.php:1443
478
  msgid "Tips below the Attachment"
479
  msgstr "Wenke onder die Aanhegsel"
480
 
481
- #: contact_form.php:1452
482
  msgid "'Send me a copy' block"
483
  msgstr "'Stuur vir my 'n kopie' blok"
484
 
485
- #: contact_form.php:1464
486
- msgid "Activate Subscriber"
487
- msgstr ""
488
-
489
- #: contact_form.php:1468
490
- msgid "Download Subscriber"
491
- msgstr ""
492
-
493
- #: contact_form.php:1477
494
- #, fuzzy
495
- msgid "Activate Captcha"
496
- msgstr "Aktiveer captcha"
497
-
498
- #: contact_form.php:1481
499
- #, fuzzy
500
- msgid "Download Captcha"
501
- msgstr "Laai captcha af"
502
-
503
- #: contact_form.php:1491
504
  msgid "Agreement checkbox"
505
  msgstr "Ooreenstemming checkbox"
506
 
507
- #: contact_form.php:1491
508
  msgid "Required checkbox for submitting the form"
509
  msgstr "Benodigde checkbox om die vorm in te dien"
510
 
511
- #: contact_form.php:1492
512
  msgid "Optional checkbox"
513
  msgstr "Opsie checkbox"
514
 
515
- #: contact_form.php:1492
516
  msgid "Optional checkbox, the results of which will be displayed in email"
517
  msgstr "Opsionele checkbox, die resultate waarvan in die epos sal verskyn"
518
 
519
- #: contact_form.php:1513
520
  msgid "Delete an attachment file from the server after the email is sent"
521
  msgstr "Verwyder 'n aanhegsel dataleêr van die server na epos gestuur is"
522
 
523
- #: contact_form.php:1519
524
  msgid "Email in HTML format sending"
525
  msgstr "E-Mail in HTML Format"
526
 
527
- #: contact_form.php:1523
528
  msgid "Display additional info in the email"
529
  msgstr "Toon addisionele inligting in die epos"
530
 
531
- #: contact_form.php:1529
532
  #, fuzzy
533
  msgid "Sent from (IP address)"
534
  msgstr "Gestuur van (IP-Adres)"
535
 
536
- #: contact_form.php:1529
537
  msgid "Example: Sent from (IP address):\t127.0.0.1"
538
  msgstr "Voorbeeld: Gestuur van (IP-Adres):\t127.0.0.1"
539
 
540
- #: contact_form.php:1530 contact_form.php:2783 contact_form.php:2785
541
  msgid "Date/Time"
542
  msgstr "Datum/Tyd"
543
 
544
- #: contact_form.php:1530
545
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
546
  msgstr "Voorbeeld: Datum/Tyd:\tAugustus 19, 2013 8:50 pm"
547
 
548
- #: contact_form.php:1531 contact_form.php:2789 contact_form.php:2791
549
  msgid "Sent from (referer)"
550
  msgstr "Gestuur van (referer)"
551
 
552
- #: contact_form.php:1531
553
  msgid ""
554
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
555
  msgstr ""
556
  "Voorbeeld: Gestuur van (referer):\thttp://bestwebsoft.com/kontakte/kontak-"
557
  "ons/"
558
 
559
- #: contact_form.php:1532 contact_form.php:2795 contact_form.php:2797
560
  msgid "Using (user agent)"
561
  msgstr "Gebruik (user agent)"
562
 
563
- #: contact_form.php:1532
564
  msgid ""
565
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
566
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -568,137 +531,137 @@ msgstr ""
568
  "Voorbeeld: Gebruik (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
569
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
570
 
571
- #: contact_form.php:1537
572
  msgid "Language settings for the field names in the form"
573
  msgstr "Taal verstellings vir die naamvelde in die vorm"
574
 
575
- #: contact_form.php:1546
576
  msgid "Add a language"
577
  msgstr "Voeg 'n taal by"
578
 
579
- #: contact_form.php:1550
580
  msgid "Change the names of the contact form fields and error messages"
581
  msgstr "Verander die name van die kontak vorm velde en foutboodskappe"
582
 
583
- #: contact_form.php:1555 contact_form.php:1642 contact_form.php:1887
584
- #: contact_form.php:1892 contact_form.php:1902 contact_form.php:1907
585
- #: contact_form.php:1912 contact_form.php:1917 contact_form.php:1927
586
- #: contact_form.php:1932 contact_form.php:1941 contact_form.php:1955
587
- #: contact_form.php:1960 contact_form.php:1965
588
  msgid "Default"
589
  msgstr "Verstek"
590
 
591
- #: contact_form.php:1563 contact_form.php:1597
592
  msgid "click to expand/hide the list"
593
  msgstr "Kliek om uit te brei/lys te versteek"
594
 
595
- #: contact_form.php:1572 contact_form.php:1606
596
  msgid "Tips below the Attachment block"
597
  msgstr "Wenke onder toe Aanhegsel blok"
598
 
599
- #: contact_form.php:1575 contact_form.php:1609
600
  msgid "Error message for the Name field"
601
  msgstr "FFoutboodskap vir die Naamveld"
602
 
603
- #: contact_form.php:1576 contact_form.php:1610
604
  msgid "Error message for the Address field"
605
  msgstr "Foutboodskap vir die Adres veld"
606
 
607
- #: contact_form.php:1577 contact_form.php:1611
608
  msgid "Error message for the Email field"
609
  msgstr "Foutboodskap vir die Epos veld"
610
 
611
- #: contact_form.php:1578 contact_form.php:1612
612
  msgid "Error message for the Phone field"
613
  msgstr "Foutboodskap vir die Telefoon Nommer veld"
614
 
615
- #: contact_form.php:1579 contact_form.php:1613
616
  msgid "Error message for the Subject field"
617
  msgstr "Foutboodskap vir die Onderwerp veld"
618
 
619
- #: contact_form.php:1580 contact_form.php:1614
620
  msgid "Error message for the Message field"
621
  msgstr "Foutboodskap vir die Boodskap veld"
622
 
623
- #: contact_form.php:1581 contact_form.php:1615
624
  msgid "Error message about the file type for the Attachment field"
625
  msgstr "Foutboodskap oor die dataleêr tipe vir die Aanhegsel veld"
626
 
627
- #: contact_form.php:1582 contact_form.php:1616
628
  msgid ""
629
  "Error message while uploading a file for the Attachment field to the server"
630
  msgstr ""
631
  "Foutboodskap tydens dataleêr oplaai vir die Aanhegsel veld na die server"
632
 
633
- #: contact_form.php:1583 contact_form.php:1617
634
  msgid "Error message while moving the file for the Attachment field"
635
  msgstr "Foutboodskap tydens die skuif van dataleêr vir die Aanhegsel veld"
636
 
637
- #: contact_form.php:1584 contact_form.php:1618
638
  msgid "Error message when file size limit for the Attachment field is exceeded"
639
  msgstr ""
640
  "Foutboodskap wanneer die dataleêr limiet vir die Aanhegsel veld oorskry is"
641
 
642
- #: contact_form.php:1585 contact_form.php:1619
643
  msgid "Error message for the Captcha field"
644
  msgstr "Foutboodskap vir die Captcha veld"
645
 
646
- #: contact_form.php:1586 contact_form.php:1620
647
  msgid "Error message for the whole form"
648
  msgstr "Foutboodskap vir die hele vorm"
649
 
650
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
651
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
652
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
653
- #: contact_form.php:3179
654
  msgid "Use shortcode"
655
  msgstr "Gebruik kortkode"
656
 
657
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
658
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
659
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
660
- #: contact_form.php:3179
661
  msgid "for this language"
662
  msgstr "vir hierdie taal"
663
 
664
- #: contact_form.php:1633
665
  #, fuzzy
666
  msgid "Use the changed names of the contact form fields in the email"
667
  msgstr "Verander die name van die kontak vorm velde en foutboodskappe"
668
 
669
- #: contact_form.php:1639
670
  msgid "Action after email is sent"
671
  msgstr "Aksie na epos gestuur is"
672
 
673
- #: contact_form.php:1641
674
  msgid "Display text"
675
  msgstr "Toon teks"
676
 
677
- #: contact_form.php:1650 contact_form.php:1660
678
  msgid "Text"
679
  msgstr "teks"
680
 
681
- #: contact_form.php:1671
682
  msgid "Redirect to the page"
683
  msgstr "Herlei na die bladsy"
684
 
685
- #: contact_form.php:1672
686
  msgid "Url"
687
  msgstr "Url"
688
 
689
- #: contact_form.php:1683
690
  msgid "Add field 'Reply-To' to the email header"
691
  msgstr ""
692
 
693
- #: contact_form.php:1685
694
  msgid "Field 'Reply-To' will be initialized by user email"
695
  msgstr ""
696
 
697
- #: contact_form.php:1689
698
  msgid "Auto Response"
699
  msgstr ""
700
 
701
- #: contact_form.php:1693
702
  #, php-format
703
  msgid ""
704
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -706,205 +669,207 @@ msgid ""
706
  "name."
707
  msgstr ""
708
 
709
- #: contact_form.php:1718 contact_form.php:2213
710
  msgid "Save Changes"
711
  msgstr "Stoor veranderinge"
712
 
713
- #: contact_form.php:1731
714
  #, php-format
715
  msgid ""
716
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
717
  msgstr ""
718
 
719
- #: contact_form.php:1744
 
 
 
 
 
 
 
 
 
720
  msgid "One column"
721
  msgstr ""
722
 
723
- #: contact_form.php:1747
724
  msgid "Two columns"
725
  msgstr ""
726
 
727
- #: contact_form.php:1756 contact_form.php:1775 contact_form.php:1793
728
- #: contact_form.php:1808
729
  msgid "Left"
730
  msgstr ""
731
 
732
- #: contact_form.php:1759 contact_form.php:1781 contact_form.php:1796
733
- #: contact_form.php:1814
734
  msgid "Right"
735
  msgstr ""
736
 
737
- #: contact_form.php:1771
738
  msgid "Form align"
739
  msgstr ""
740
 
741
- #: contact_form.php:1778 contact_form.php:1811
742
  msgid "Center"
743
  msgstr ""
744
 
745
- #: contact_form.php:1786
746
  #, fuzzy
747
  msgid "Labels position"
748
  msgstr "Indien knoppie"
749
 
750
- #: contact_form.php:1790
751
  msgid "Top"
752
  msgstr ""
753
 
754
- #: contact_form.php:1799
755
  msgid "Bottom"
756
  msgstr ""
757
 
758
- #: contact_form.php:1804
759
  msgid "Labels align"
760
  msgstr ""
761
 
762
- #: contact_form.php:1819
763
  msgid "Errors output"
764
  msgstr "Foutboodskap uitset"
765
 
766
- #: contact_form.php:1822
767
  msgid "Display error messages"
768
  msgstr "Toon foutboodskappe"
769
 
770
- #: contact_form.php:1823
771
  msgid "Color of the input field errors."
772
  msgstr "Kleur van die inset veld foutboodskappe"
773
 
774
- #: contact_form.php:1824
775
  msgid "Display error messages & color of the input field errors"
776
  msgstr "Toon foutboodskappe & kleur van die inset veld foutboodskappe"
777
 
778
- #: contact_form.php:1829
779
  msgid "Add placeholder to the input blocks"
780
  msgstr "Voeg 'n plekhouer by die inset blokke"
781
 
782
- #: contact_form.php:1835
783
  msgid "Add tooltips"
784
  msgstr "Voeg tool-wenke"
785
 
786
- #: contact_form.php:1849
787
  msgid "Email address"
788
  msgstr "Epos Adres:"
789
 
790
- #: contact_form.php:1854
791
  msgid "Phone Number"
792
  msgstr "Telefoon Nommer:"
793
 
794
- #: contact_form.php:1868
795
- msgid "Attachment"
796
- msgstr "Aanhegsel:"
797
-
798
- #: contact_form.php:1880
799
  msgid "Style options"
800
  msgstr "Styl opsies"
801
 
802
- #: contact_form.php:1884
803
  msgid "Text color"
804
  msgstr "Teks kleur"
805
 
806
- #: contact_form.php:1889
807
  msgid "Label text color"
808
  msgstr "Etiket teks kleur"
809
 
810
- #: contact_form.php:1894
811
  msgid "Placeholder color"
812
  msgstr "Plekhouer kleur"
813
 
814
- #: contact_form.php:1899
815
  msgid "Errors color"
816
  msgstr "Foutboodskap kleur"
817
 
818
- #: contact_form.php:1904
819
  msgid "Error text color"
820
  msgstr "Foutboodskap teks kleur"
821
 
822
- #: contact_form.php:1909
823
  msgid "Background color of the input field errors"
824
  msgstr "Agtergrond kleur van die inset veld foutboodskappe"
825
 
826
- #: contact_form.php:1914
827
  msgid "Border color of the input field errors"
828
  msgstr "Rand-kleur van die inset veld foutboodskappe"
829
 
830
- #: contact_form.php:1919
831
  msgid "Placeholder color of the input field errors"
832
  msgstr "Plekhouer kleur van die inset veld foutboodskappe"
833
 
834
- #: contact_form.php:1924
835
  msgid "Input fields"
836
  msgstr "Inset velde"
837
 
838
- #: contact_form.php:1929
839
  msgid "Input fields background color"
840
  msgstr "Inset velde agtergrond kleur"
841
 
842
- #: contact_form.php:1934
843
  msgid "Text fields color"
844
  msgstr "Teks velde kleur"
845
 
846
- #: contact_form.php:1938
847
  msgid "Border width in px, numbers only"
848
  msgstr "Rand wydte in px, nommers alleenlik"
849
 
850
- #: contact_form.php:1943 contact_form.php:1967
851
  msgid "Border color"
852
  msgstr "Rand kleur"
853
 
854
- #: contact_form.php:1948
855
  msgid "Submit button"
856
  msgstr "Indien knoppie"
857
 
858
- #: contact_form.php:1952
859
  msgid "Width in px, numbers only"
860
  msgstr "Wydte in px, nommers alleenlik"
861
 
862
- #: contact_form.php:1957
863
  msgid "Button color"
864
  msgstr "Knoppie Kleur"
865
 
866
- #: contact_form.php:1962
867
  msgid "Button text color"
868
  msgstr "Knoppie teks kleur"
869
 
870
- #: contact_form.php:1994
871
  #, fuzzy
872
  msgid "Contact Form | Preview"
873
  msgstr "Kontak Vorm Pro | Voorskou"
874
 
875
- #: contact_form.php:1995
876
  msgid "Drag the necessary field to sort fields."
877
  msgstr ""
878
 
879
- #: contact_form.php:2200
 
880
  msgid ""
881
  "If you would like to add the Contact Form to your website, just copy and "
882
- "paste this shortcode to your post or page or widget:"
883
  msgstr ""
884
  "As u die Kontak Vorm by u webstuiste wil bylas, kopieër en plak net die "
885
  "kortkode na u post, bladsy of widget:"
886
 
887
- #: contact_form.php:2297
888
  msgid "Sorry, email message could not be delivered."
889
  msgstr "Verskoning, die epos kon nie gestuur word nie."
890
 
891
- #: contact_form.php:2777 contact_form.php:2779
892
  msgid "Sent from (ip address)"
893
  msgstr "Gestuur van (IP-Adres)"
894
 
895
- #: contact_form.php:2804
896
  msgid "Contact from"
897
  msgstr "Kontak Vorm"
898
 
899
- #: contact_form.php:2826 contact_form.php:2856
900
- msgid "Phone"
901
- msgstr "Telefoon Nommer"
902
-
903
- #: contact_form.php:2837 contact_form.php:2863
904
  msgid "Site"
905
  msgstr "Webtuiste"
906
 
907
- #: contact_form.php:2956
908
  msgid ""
909
  "If you can see this MIME, it means that the MIME type is not supported by "
910
  "your email client!"
@@ -912,56 +877,101 @@ msgstr ""
912
  "As u die MIME kan sie, beteken dit dat die MIME tipe nie ondersteun word "
913
  "deur u epos klient nie!"
914
 
915
- #: contact_form.php:3039
916
  msgid "FAQ"
917
  msgstr "Gereeld Gestelde Vrae (FAQ)"
918
 
919
- #: contact_form.php:3040
920
  msgid "Support"
921
  msgstr "Steun"
922
 
923
- #: contact_form.php:3089
924
  msgid "Are you sure that you want to delete this language data?"
925
  msgstr "Is u seker dat u die taal data wil verwyder?"
926
 
927
- #: contact_form.php:3110
928
  #, fuzzy
929
  msgid "Add multiple forms"
930
  msgstr "Voeg by die vorm by"
931
 
932
- #: contact_form.php:3110
933
  msgid ""
934
  "Install Contact Form Multi plugin to create unlimited number of contact "
935
  "forms."
936
  msgstr ""
937
 
938
- #: contact_form.php:3115
939
  msgid "Learn more"
940
  msgstr ""
941
 
942
- #: contact_form.php:3320
943
  msgid "Close notice"
944
  msgstr ""
945
 
946
- #: contact_form.php:3325
947
  #, fuzzy
948
  msgid "allows to store your messages to the database."
949
  msgstr "Stoor eposse na die databasis."
950
 
951
- #: contact_form.php:3326
952
  msgid "Manage messages that have been sent from your website."
953
  msgstr ""
954
 
955
- #: contact_form.php:3384
956
  #, fuzzy
957
  msgid "Contact form"
958
  msgstr "Kontak Vorm"
959
 
960
- #: contact_form.php:3397 contact_form.php:3407
961
  #, fuzzy
962
  msgid "Language"
963
  msgstr "Voeg 'n taal by"
964
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
965
  #~ msgid "To send mail you can use the php mail function"
966
  #~ msgstr "Om eposse te stuur kan u die php epos funksie gebruik"
967
 
@@ -1127,9 +1137,6 @@ msgstr "Voeg 'n taal by"
1127
  #~ msgid "Please, go to"
1128
  #~ msgstr "Gaan asseblief na"
1129
 
1130
- #~ msgid "the setting page"
1131
- #~ msgstr "Die verstelling bladsy"
1132
-
1133
  #~ msgid "You will be redirected automatically in 5 seconds."
1134
  #~ msgstr "U sal outomaties herlei word in 5 sekondes."
1135
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-12 17:21+0300\n"
6
+ "PO-Revision-Date: 2016-07-12 17:21+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Aldu <alducornelissen@gmail.com>\n"
9
  "Language: af\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: contact_form.php:37 contact_form.php:1118
21
  msgid "Contact Form Settings"
22
  msgstr "Kontak Form Verstellings"
23
 
25
  msgid "Contact Form"
26
  msgstr "Kontak Form"
27
 
28
+ #: contact_form.php:167 contact_form.php:1294 contact_form.php:1353
29
+ #: contact_form.php:1746 contact_form.php:1784 contact_form.php:2033
30
+ #: contact_form.php:3113 contact_form.php:3159
31
+ msgid "Name"
32
+ msgstr "Naam"
33
 
34
+ #: contact_form.php:168 contact_form.php:1400 contact_form.php:1747
35
+ #: contact_form.php:1785 contact_form.php:2038 contact_form.php:3120
36
+ #: contact_form.php:3165
37
+ msgid "Address"
38
+ msgstr "Adres: "
39
 
40
+ #: contact_form.php:169 contact_form.php:1416 contact_form.php:1748
41
+ #: contact_form.php:1786
42
+ msgid "Email Address"
43
  msgstr "Epos Adres:"
44
 
45
+ #: contact_form.php:170 contact_form.php:1439 contact_form.php:1749
46
+ #: contact_form.php:1787
47
+ msgid "Phone number"
48
  msgstr "Telefoon nommer:"
49
 
50
+ #: contact_form.php:171 contact_form.php:1455 contact_form.php:1750
51
+ #: contact_form.php:1788 contact_form.php:2053 contact_form.php:3131
52
+ #: contact_form.php:3174
53
+ msgid "Subject"
54
+ msgstr "Onderwerp"
55
 
56
+ #: contact_form.php:172 contact_form.php:1479 contact_form.php:1751
57
+ #: contact_form.php:1789 contact_form.php:2057 contact_form.php:3136
58
+ #: contact_form.php:3178
59
+ msgid "Message"
60
+ msgstr "Boodskap"
61
 
62
+ #: contact_form.php:173 contact_form.php:1752 contact_form.php:1790
63
+ #: contact_form.php:2062
64
+ msgid "Attachment"
65
  msgstr "Aanhegsel:"
66
 
67
+ #: contact_form.php:174
68
  msgid ""
69
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
70
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
72
  "Ondersteunde datalêer tipes: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
73
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
74
 
75
+ #: contact_form.php:175 contact_form.php:1754 contact_form.php:1792
76
  msgid "Send me a copy"
77
  msgstr "Stuur vir my 'n kopie"
78
 
79
+ #: contact_form.php:176 contact_form.php:1755 contact_form.php:1793
80
  msgid "Submit"
81
  msgstr "Dien in"
82
 
83
+ #: contact_form.php:177
84
  msgid "Your name is required."
85
  msgstr "Jou naam word benodig."
86
 
87
+ #: contact_form.php:178
88
  msgid "Address is required."
89
  msgstr "Adres word benodig."
90
 
91
+ #: contact_form.php:179
92
  msgid "A valid email address is required."
93
  msgstr "'n Geldige epos adres word benodig."
94
 
95
+ #: contact_form.php:180
96
  msgid "Phone number is required."
97
  msgstr "'n Telefoon nommer word benodig."
98
 
99
+ #: contact_form.php:181
100
  msgid "Subject is required."
101
  msgstr "'n Onderwerp word benodig."
102
 
103
+ #: contact_form.php:182
104
  msgid "Message text is required."
105
  msgstr "'n Boodskap teks word benodig ."
106
 
107
+ #: contact_form.php:183
108
  msgid "File format is not valid."
109
  msgstr "Datalêer formaat is nie geldig nie."
110
 
111
+ #: contact_form.php:184
112
  msgid "File upload error."
113
  msgstr "Oplaai van datalêer foutief."
114
 
115
+ #: contact_form.php:185
116
  msgid "The file could not be uploaded."
117
  msgstr "Die datalêer kon nie opgelaai word nie."
118
 
119
+ #: contact_form.php:186
120
  msgid "This file is too large."
121
  msgstr "Die datalêer is te groot."
122
 
123
+ #: contact_form.php:187
124
  msgid "Please fill out the CAPTCHA."
125
  msgstr "Vul asseblief die CAPTCHA in."
126
 
127
+ #: contact_form.php:188
128
  msgid "Please make corrections below and try again."
129
  msgstr "Korregeer asseblief die foute hierdoner en probeer weer."
130
 
131
+ #: contact_form.php:190
132
  msgid "Thank you for contacting us."
133
  msgstr "Dankie dat jy ons gekontak het."
134
 
135
+ #: contact_form.php:824 contact_form.php:1076
136
  msgid "Settings saved."
137
  msgstr "Verstellings is gestoor."
138
 
139
+ #: contact_form.php:1021
140
  msgid ""
141
  "Email 'FROM' field option was changed, which may cause email messages being "
142
  "moved to the spam folder or email delivery failures."
143
  msgstr ""
144
 
145
+ #: contact_form.php:1031
146
  msgid ""
147
  "If the 'Redirect to page' option is selected then the URL field should be in "
148
  "the following format"
150
  "As die 'Redirect to page' opsie geselekteer is moet die URL veld in die "
151
  "volgende formaat wees"
152
 
153
+ #: contact_form.php:1038
154
  #, fuzzy
155
  msgid "Such user does not exist."
156
  msgstr "Hierdie gebruiker bestaan nie. Die instellings is nie gestoor nie."
157
 
158
+ #: contact_form.php:1048
159
  #, fuzzy
160
  msgid ""
161
  "Please enter a valid email address in the 'Use this email address' field."
163
  "Vul asseblief 'n geldige epos adres in die 'FROM/VAN' veld. Die verstellings "
164
  "is nie gestoor nie."
165
 
166
+ #: contact_form.php:1056
167
  #, fuzzy
168
  msgid "Please enter a valid email address in the 'FROM' field."
169
  msgstr ""
170
  "Vul asseblief 'n geldige epos adres in die 'FROM/VAN' veld. Die verstellings "
171
  "is nie gestoor nie."
172
 
173
+ #: contact_form.php:1078
174
  #, fuzzy
175
  msgid "Settings are not saved."
176
  msgstr "Verstellings is gestoor."
177
 
178
+ #: contact_form.php:1115
179
  msgid "All plugin settings were restored."
180
  msgstr ""
181
 
182
+ #: contact_form.php:1120
183
  msgid "How to Use Step-by-step Instruction"
184
  msgstr ""
185
 
186
+ #: contact_form.php:1123 contact_form.php:3351 contact_form.php:3365
187
  msgid "Settings"
188
  msgstr "Verstellings"
189
 
190
+ #: contact_form.php:1124
191
  #, fuzzy
192
  msgid "Additional settings"
193
  msgstr "Addisionele opsies"
194
 
195
+ #: contact_form.php:1125
196
  msgid "Appearance"
197
  msgstr ""
198
 
199
+ #: contact_form.php:1126
200
  msgid "Custom code"
201
  msgstr ""
202
 
203
+ #: contact_form.php:1127
204
  msgid "Go PRO"
205
  msgstr "Gaan PRO"
206
 
207
+ #: contact_form.php:1136
 
 
 
 
 
 
 
 
 
 
 
208
  #, fuzzy
209
+ msgid "Notice"
 
 
 
 
210
  msgstr "Kennisgewing:"
211
 
212
+ #: contact_form.php:1140
213
  msgid "NEW_FORM"
214
  msgstr ""
215
 
216
+ #: contact_form.php:1141
217
  msgid ""
218
  "If you want to create multiple contact forms, please install the Contact "
219
  "Form Multi plugin."
220
  msgstr ""
221
 
222
+ #: contact_form.php:1150
223
  #, fuzzy, php-format
224
  msgid ""
225
  "If you would like to add a Contact Form to your page or post, please use %s "
228
  "As u die Kontak Vorm by u webstuiste wil bylas, kopieër en plak net die "
229
  "kortkode na u post, bladsy of widget:"
230
 
231
+ #: contact_form.php:1156
232
  #, php-format
233
  msgid ""
234
  "You can add the Contact Form to your page or post by clicking on %s button "
237
  "language."
238
  msgstr ""
239
 
240
+ #: contact_form.php:1165
241
  msgid ""
242
  "If you leave the fields empty, the messages will be sent to the email "
243
  "address specified during registration."
245
  "As u die velde leeg laat, sal die boodskappe gestuur word na die epos adres "
246
  "wat gespesifiseer was gedurende registrasie"
247
 
248
+ #: contact_form.php:1168
249
+ #, fuzzy
250
+ msgid "The user's email address"
251
  msgstr "Die gebruiker se epos adres:"
252
 
253
+ #: contact_form.php:1172
254
  #, fuzzy
255
  msgid "Select a username"
256
  msgstr "Skep 'n gebruikersnaam"
257
 
258
+ #: contact_form.php:1185
259
+ #, fuzzy
260
  msgid ""
261
+ "Select a username of the person who should get the messages from the contact "
262
  "form."
263
  msgstr ""
264
  "Sleutel 'n gebruikersnaam in vir die persoon wat die boodskappe moet kry van "
265
  "die kontak vorm."
266
 
267
+ #: contact_form.php:1189
268
+ #, fuzzy
269
+ msgid "Use this email address"
270
  msgstr "Gebruik hierdie epos adres:"
271
 
272
+ #: contact_form.php:1193
273
+ #, fuzzy
274
+ msgid "Enter the email address for receiving messages"
275
  msgstr "Sleutel in die epos adres in waar u die boodskappe aangestuur wil he."
276
 
277
+ #: contact_form.php:1200 contact_form.php:1663 contact_form.php:1873
278
+ #: contact_form.php:1961 contact_form.php:3446
279
  msgid "Close"
280
  msgstr ""
281
 
282
+ #: contact_form.php:1204
283
+ #, fuzzy
284
+ msgid "Add department selectbox to the contact form"
285
  msgstr "Voeg 'n departementele keuse-boks by die kontak vorm:"
286
 
287
+ #: contact_form.php:1212 contact_form.php:1672 contact_form.php:1892
288
+ #: contact_form.php:2167
289
  msgid "If you upgrade to Pro version all your settings will be saved."
290
  msgstr "As u opgradeer na die Pro weergawe sal die verstellings gestoor word."
291
 
292
+ #: contact_form.php:1219 contact_form.php:1509 contact_form.php:1677
293
+ #: contact_form.php:1899 contact_form.php:2174
294
  msgid "Unlock premium options by upgrading to Pro version"
295
  msgstr ""
296
 
297
+ #: contact_form.php:1222 contact_form.php:1512 contact_form.php:1680
298
+ #: contact_form.php:1902 contact_form.php:2177 contact_form.php:3672
299
  msgid "Learn More"
300
  msgstr ""
301
 
302
+ #: contact_form.php:1230
303
  msgid "Save emails to the database"
304
  msgstr "Stoor eposse na die databasis."
305
 
306
+ #: contact_form.php:1241 contact_form.php:1255 contact_form.php:1262
307
  msgid "Using"
308
  msgstr "In Gebruik"
309
 
310
+ #: contact_form.php:1247 contact_form.php:1572 contact_form.php:1605
311
+ #: contact_form.php:1640
312
+ msgid "Please activate the appropriate option on"
313
+ msgstr ""
314
+
315
+ #: contact_form.php:1250 contact_form.php:1575 contact_form.php:1608
316
+ #: contact_form.php:1643
317
  #, fuzzy
318
+ msgid "settings page"
319
+ msgstr "Die verstelling bladsy"
320
 
321
+ #: contact_form.php:1256 contact_form.php:1581 contact_form.php:1615
322
+ #: contact_form.php:1651
323
  msgid "Activate"
324
  msgstr "Aktiveer"
325
 
326
+ #: contact_form.php:1263 contact_form.php:1587 contact_form.php:1621
327
+ #: contact_form.php:1656
328
  msgid "Download"
329
  msgstr "Download"
330
 
331
+ #: contact_form.php:1275
332
+ msgid "Sending method"
333
+ msgstr ""
334
 
335
+ #: contact_form.php:1280
336
  msgid "Wp-mail"
337
  msgstr "Wp-mail"
338
 
339
+ #: contact_form.php:1282
340
  #, fuzzy
341
  msgid "You can use the Wordpress wp_mail function for mailing"
342
  msgstr "U kan die wp_mail funksie gebruik vir eposse"
343
 
344
+ #: contact_form.php:1285
345
  msgid "Mail"
346
  msgstr "Mail"
347
 
348
+ #: contact_form.php:1287
349
  #, fuzzy
350
  msgid "You can use the PHP mail function for mailing"
351
  msgstr "U kan die wp_mail funksie gebruik vir eposse"
352
 
353
+ #: contact_form.php:1292
354
  msgid "'FROM' field"
355
  msgstr ""
356
 
357
+ #: contact_form.php:1297
 
 
 
 
 
358
  msgid "User name"
359
  msgstr "Gebruikersnaam"
360
 
361
+ #: contact_form.php:1299
362
  msgid ""
363
  "The name of the user who fills the form will be used in the field 'From'."
364
  msgstr ""
365
  "Die naam van die gebruiker wie die vorm invul sal gebruik word vir die 'From/"
366
  "Van' veld."
367
 
368
+ #: contact_form.php:1304 contact_form.php:3126 contact_form.php:3170
369
  msgid "Email"
370
  msgstr "Epos"
371
 
372
+ #: contact_form.php:1307
373
  msgid "User email"
374
  msgstr "Gebruiker epos"
375
 
376
+ #: contact_form.php:1309
377
  msgid ""
378
  "The email address of the user who fills the form will be used in the field "
379
  "'From'."
381
  "Die epos adres van die gebruiker wie die vorm invul sal gebruik word in die "
382
  "'From/van' veld."
383
 
384
+ #: contact_form.php:1312
385
  msgid ""
386
  "If this option is changed, email messages may be moved to the spam folder or "
387
  "email delivery failures may occur."
388
  msgstr ""
389
 
390
+ #: contact_form.php:1318
391
  msgid "Required symbol"
392
  msgstr "Benodigde simbool"
393
 
394
+ #: contact_form.php:1328
395
  msgid "Fields"
396
  msgstr "Velde"
397
 
398
+ #: contact_form.php:1329 contact_form.php:1356 contact_form.php:1383
399
+ #: contact_form.php:1403 contact_form.php:1442 contact_form.php:1527
400
  msgid "Used"
401
  msgstr "Gebruik"
402
 
403
+ #: contact_form.php:1330 contact_form.php:1345 contact_form.php:1360
404
+ #: contact_form.php:1387 contact_form.php:1407 contact_form.php:1420
405
+ #: contact_form.php:1446 contact_form.php:1459 contact_form.php:1483
406
  msgid "Required"
407
  msgstr "Benodig"
408
 
409
+ #: contact_form.php:1332 contact_form.php:1365 contact_form.php:1425
410
+ #: contact_form.php:1464 contact_form.php:1488
411
  msgid "Visible"
412
  msgstr "Sigbaar"
413
 
414
+ #: contact_form.php:1333 contact_form.php:1369 contact_form.php:1429
415
+ #: contact_form.php:1468 contact_form.php:1492
416
  msgid "Disabled for editing"
417
  msgstr "Gedeaktiveer vir wysiging"
418
 
419
+ #: contact_form.php:1334 contact_form.php:1393 contact_form.php:1472
420
+ #: contact_form.php:1496
421
  msgid "Field's default value"
422
  msgstr "Veld se verstekwaarde"
423
 
424
+ #: contact_form.php:1341
425
  msgid "Department selectbox"
426
  msgstr ""
427
 
428
+ #: contact_form.php:1373
429
  msgid "Use User's name as a default value if the user is logged in."
430
  msgstr ""
431
 
432
+ #: contact_form.php:1374 contact_form.php:1434
433
  msgid ""
434
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
435
  "in users."
436
  msgstr ""
437
 
438
+ #: contact_form.php:1380
439
  msgid "Location selectbox"
440
  msgstr ""
441
 
442
+ #: contact_form.php:1433
 
 
 
 
 
 
 
 
 
443
  msgid "Use User's email as a default value if the user is logged in."
444
  msgstr ""
445
 
446
+ #: contact_form.php:1520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
447
  msgid "Attachment block"
448
  msgstr "Aanhegsel blok"
449
 
450
+ #: contact_form.php:1522
451
  msgid "Users can attach the following file formats"
452
  msgstr "Gebruikers kan die volgende dataleêr formate aanheg"
453
 
454
+ #: contact_form.php:1540
455
  msgid "Add to the form"
456
  msgstr "Voeg by die vorm by"
457
 
458
+ #: contact_form.php:1545
459
  msgid "Tips below the Attachment"
460
  msgstr "Wenke onder die Aanhegsel"
461
 
462
+ #: contact_form.php:1554
463
  msgid "'Send me a copy' block"
464
  msgstr "'Stuur vir my 'n kopie' blok"
465
 
466
+ #: contact_form.php:1667
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
467
  msgid "Agreement checkbox"
468
  msgstr "Ooreenstemming checkbox"
469
 
470
+ #: contact_form.php:1667
471
  msgid "Required checkbox for submitting the form"
472
  msgstr "Benodigde checkbox om die vorm in te dien"
473
 
474
+ #: contact_form.php:1668
475
  msgid "Optional checkbox"
476
  msgstr "Opsie checkbox"
477
 
478
+ #: contact_form.php:1668
479
  msgid "Optional checkbox, the results of which will be displayed in email"
480
  msgstr "Opsionele checkbox, die resultate waarvan in die epos sal verskyn"
481
 
482
+ #: contact_form.php:1689
483
  msgid "Delete an attachment file from the server after the email is sent"
484
  msgstr "Verwyder 'n aanhegsel dataleêr van die server na epos gestuur is"
485
 
486
+ #: contact_form.php:1695
487
  msgid "Email in HTML format sending"
488
  msgstr "E-Mail in HTML Format"
489
 
490
+ #: contact_form.php:1699
491
  msgid "Display additional info in the email"
492
  msgstr "Toon addisionele inligting in die epos"
493
 
494
+ #: contact_form.php:1705
495
  #, fuzzy
496
  msgid "Sent from (IP address)"
497
  msgstr "Gestuur van (IP-Adres)"
498
 
499
+ #: contact_form.php:1705
500
  msgid "Example: Sent from (IP address):\t127.0.0.1"
501
  msgstr "Voorbeeld: Gestuur van (IP-Adres):\t127.0.0.1"
502
 
503
+ #: contact_form.php:1706 contact_form.php:3075 contact_form.php:3077
504
  msgid "Date/Time"
505
  msgstr "Datum/Tyd"
506
 
507
+ #: contact_form.php:1706
508
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
509
  msgstr "Voorbeeld: Datum/Tyd:\tAugustus 19, 2013 8:50 pm"
510
 
511
+ #: contact_form.php:1707 contact_form.php:3081 contact_form.php:3083
512
  msgid "Sent from (referer)"
513
  msgstr "Gestuur van (referer)"
514
 
515
+ #: contact_form.php:1707
516
  msgid ""
517
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
518
  msgstr ""
519
  "Voorbeeld: Gestuur van (referer):\thttp://bestwebsoft.com/kontakte/kontak-"
520
  "ons/"
521
 
522
+ #: contact_form.php:1708 contact_form.php:3087 contact_form.php:3089
523
  msgid "Using (user agent)"
524
  msgstr "Gebruik (user agent)"
525
 
526
+ #: contact_form.php:1708
527
  msgid ""
528
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
529
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
531
  "Voorbeeld: Gebruik (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
532
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
533
 
534
+ #: contact_form.php:1713
535
  msgid "Language settings for the field names in the form"
536
  msgstr "Taal verstellings vir die naamvelde in die vorm"
537
 
538
+ #: contact_form.php:1722
539
  msgid "Add a language"
540
  msgstr "Voeg 'n taal by"
541
 
542
+ #: contact_form.php:1726
543
  msgid "Change the names of the contact form fields and error messages"
544
  msgstr "Verander die name van die kontak vorm velde en foutboodskappe"
545
 
546
+ #: contact_form.php:1731 contact_form.php:1827 contact_form.php:2081
547
+ #: contact_form.php:2086 contact_form.php:2096 contact_form.php:2101
548
+ #: contact_form.php:2106 contact_form.php:2111 contact_form.php:2121
549
+ #: contact_form.php:2126 contact_form.php:2135 contact_form.php:2149
550
+ #: contact_form.php:2154 contact_form.php:2159
551
  msgid "Default"
552
  msgstr "Verstek"
553
 
554
+ #: contact_form.php:1744 contact_form.php:1782
555
  msgid "click to expand/hide the list"
556
  msgstr "Kliek om uit te brei/lys te versteek"
557
 
558
+ #: contact_form.php:1753 contact_form.php:1791
559
  msgid "Tips below the Attachment block"
560
  msgstr "Wenke onder toe Aanhegsel blok"
561
 
562
+ #: contact_form.php:1756 contact_form.php:1794
563
  msgid "Error message for the Name field"
564
  msgstr "FFoutboodskap vir die Naamveld"
565
 
566
+ #: contact_form.php:1757 contact_form.php:1795
567
  msgid "Error message for the Address field"
568
  msgstr "Foutboodskap vir die Adres veld"
569
 
570
+ #: contact_form.php:1758 contact_form.php:1796
571
  msgid "Error message for the Email field"
572
  msgstr "Foutboodskap vir die Epos veld"
573
 
574
+ #: contact_form.php:1759 contact_form.php:1797
575
  msgid "Error message for the Phone field"
576
  msgstr "Foutboodskap vir die Telefoon Nommer veld"
577
 
578
+ #: contact_form.php:1760 contact_form.php:1798
579
  msgid "Error message for the Subject field"
580
  msgstr "Foutboodskap vir die Onderwerp veld"
581
 
582
+ #: contact_form.php:1761 contact_form.php:1799
583
  msgid "Error message for the Message field"
584
  msgstr "Foutboodskap vir die Boodskap veld"
585
 
586
+ #: contact_form.php:1762 contact_form.php:1800
587
  msgid "Error message about the file type for the Attachment field"
588
  msgstr "Foutboodskap oor die dataleêr tipe vir die Aanhegsel veld"
589
 
590
+ #: contact_form.php:1763 contact_form.php:1801
591
  msgid ""
592
  "Error message while uploading a file for the Attachment field to the server"
593
  msgstr ""
594
  "Foutboodskap tydens dataleêr oplaai vir die Aanhegsel veld na die server"
595
 
596
+ #: contact_form.php:1764 contact_form.php:1802
597
  msgid "Error message while moving the file for the Attachment field"
598
  msgstr "Foutboodskap tydens die skuif van dataleêr vir die Aanhegsel veld"
599
 
600
+ #: contact_form.php:1765 contact_form.php:1803
601
  msgid "Error message when file size limit for the Attachment field is exceeded"
602
  msgstr ""
603
  "Foutboodskap wanneer die dataleêr limiet vir die Aanhegsel veld oorskry is"
604
 
605
+ #: contact_form.php:1766 contact_form.php:1804
606
  msgid "Error message for the Captcha field"
607
  msgstr "Foutboodskap vir die Captcha veld"
608
 
609
+ #: contact_form.php:1767 contact_form.php:1805
610
  msgid "Error message for the whole form"
611
  msgstr "Foutboodskap vir die hele vorm"
612
 
613
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
614
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
615
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
616
+ #: contact_form.php:3516
617
  msgid "Use shortcode"
618
  msgstr "Gebruik kortkode"
619
 
620
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
621
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
622
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
623
+ #: contact_form.php:3516
624
  msgid "for this language"
625
  msgstr "vir hierdie taal"
626
 
627
+ #: contact_form.php:1818
628
  #, fuzzy
629
  msgid "Use the changed names of the contact form fields in the email"
630
  msgstr "Verander die name van die kontak vorm velde en foutboodskappe"
631
 
632
+ #: contact_form.php:1824
633
  msgid "Action after email is sent"
634
  msgstr "Aksie na epos gestuur is"
635
 
636
+ #: contact_form.php:1826
637
  msgid "Display text"
638
  msgstr "Toon teks"
639
 
640
+ #: contact_form.php:1840 contact_form.php:1854
641
  msgid "Text"
642
  msgstr "teks"
643
 
644
+ #: contact_form.php:1865
645
  msgid "Redirect to the page"
646
  msgstr "Herlei na die bladsy"
647
 
648
+ #: contact_form.php:1866
649
  msgid "Url"
650
  msgstr "Url"
651
 
652
+ #: contact_form.php:1877
653
  msgid "Add field 'Reply-To' to the email header"
654
  msgstr ""
655
 
656
+ #: contact_form.php:1879
657
  msgid "Field 'Reply-To' will be initialized by user email"
658
  msgstr ""
659
 
660
+ #: contact_form.php:1883
661
  msgid "Auto Response"
662
  msgstr ""
663
 
664
+ #: contact_form.php:1887
665
  #, php-format
666
  msgid ""
667
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
669
  "name."
670
  msgstr ""
671
 
672
+ #: contact_form.php:1912 contact_form.php:2398
673
  msgid "Save Changes"
674
  msgstr "Stoor veranderinge"
675
 
676
+ #: contact_form.php:1925
677
  #, php-format
678
  msgid ""
679
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
680
  msgstr ""
681
 
682
+ #: contact_form.php:1925 contact_form.php:1934
683
+ msgid "Form layout"
684
+ msgstr ""
685
+
686
+ #: contact_form.php:1925 contact_form.php:1946
687
+ #, fuzzy
688
+ msgid "Submit position"
689
+ msgstr "Indien knoppie"
690
+
691
+ #: contact_form.php:1938
692
  msgid "One column"
693
  msgstr ""
694
 
695
+ #: contact_form.php:1941
696
  msgid "Two columns"
697
  msgstr ""
698
 
699
+ #: contact_form.php:1950 contact_form.php:1969 contact_form.php:1987
700
+ #: contact_form.php:2002
701
  msgid "Left"
702
  msgstr ""
703
 
704
+ #: contact_form.php:1953 contact_form.php:1975 contact_form.php:1990
705
+ #: contact_form.php:2008
706
  msgid "Right"
707
  msgstr ""
708
 
709
+ #: contact_form.php:1965
710
  msgid "Form align"
711
  msgstr ""
712
 
713
+ #: contact_form.php:1972 contact_form.php:2005
714
  msgid "Center"
715
  msgstr ""
716
 
717
+ #: contact_form.php:1980
718
  #, fuzzy
719
  msgid "Labels position"
720
  msgstr "Indien knoppie"
721
 
722
+ #: contact_form.php:1984
723
  msgid "Top"
724
  msgstr ""
725
 
726
+ #: contact_form.php:1993
727
  msgid "Bottom"
728
  msgstr ""
729
 
730
+ #: contact_form.php:1998
731
  msgid "Labels align"
732
  msgstr ""
733
 
734
+ #: contact_form.php:2013
735
  msgid "Errors output"
736
  msgstr "Foutboodskap uitset"
737
 
738
+ #: contact_form.php:2016
739
  msgid "Display error messages"
740
  msgstr "Toon foutboodskappe"
741
 
742
+ #: contact_form.php:2017
743
  msgid "Color of the input field errors."
744
  msgstr "Kleur van die inset veld foutboodskappe"
745
 
746
+ #: contact_form.php:2018
747
  msgid "Display error messages & color of the input field errors"
748
  msgstr "Toon foutboodskappe & kleur van die inset veld foutboodskappe"
749
 
750
+ #: contact_form.php:2023
751
  msgid "Add placeholder to the input blocks"
752
  msgstr "Voeg 'n plekhouer by die inset blokke"
753
 
754
+ #: contact_form.php:2029
755
  msgid "Add tooltips"
756
  msgstr "Voeg tool-wenke"
757
 
758
+ #: contact_form.php:2043
759
  msgid "Email address"
760
  msgstr "Epos Adres:"
761
 
762
+ #: contact_form.php:2048 contact_form.php:3142 contact_form.php:3183
763
  msgid "Phone Number"
764
  msgstr "Telefoon Nommer:"
765
 
766
+ #: contact_form.php:2074
 
 
 
 
767
  msgid "Style options"
768
  msgstr "Styl opsies"
769
 
770
+ #: contact_form.php:2078
771
  msgid "Text color"
772
  msgstr "Teks kleur"
773
 
774
+ #: contact_form.php:2083
775
  msgid "Label text color"
776
  msgstr "Etiket teks kleur"
777
 
778
+ #: contact_form.php:2088
779
  msgid "Placeholder color"
780
  msgstr "Plekhouer kleur"
781
 
782
+ #: contact_form.php:2093
783
  msgid "Errors color"
784
  msgstr "Foutboodskap kleur"
785
 
786
+ #: contact_form.php:2098
787
  msgid "Error text color"
788
  msgstr "Foutboodskap teks kleur"
789
 
790
+ #: contact_form.php:2103
791
  msgid "Background color of the input field errors"
792
  msgstr "Agtergrond kleur van die inset veld foutboodskappe"
793
 
794
+ #: contact_form.php:2108
795
  msgid "Border color of the input field errors"
796
  msgstr "Rand-kleur van die inset veld foutboodskappe"
797
 
798
+ #: contact_form.php:2113
799
  msgid "Placeholder color of the input field errors"
800
  msgstr "Plekhouer kleur van die inset veld foutboodskappe"
801
 
802
+ #: contact_form.php:2118
803
  msgid "Input fields"
804
  msgstr "Inset velde"
805
 
806
+ #: contact_form.php:2123
807
  msgid "Input fields background color"
808
  msgstr "Inset velde agtergrond kleur"
809
 
810
+ #: contact_form.php:2128
811
  msgid "Text fields color"
812
  msgstr "Teks velde kleur"
813
 
814
+ #: contact_form.php:2132
815
  msgid "Border width in px, numbers only"
816
  msgstr "Rand wydte in px, nommers alleenlik"
817
 
818
+ #: contact_form.php:2137 contact_form.php:2161
819
  msgid "Border color"
820
  msgstr "Rand kleur"
821
 
822
+ #: contact_form.php:2142
823
  msgid "Submit button"
824
  msgstr "Indien knoppie"
825
 
826
+ #: contact_form.php:2146
827
  msgid "Width in px, numbers only"
828
  msgstr "Wydte in px, nommers alleenlik"
829
 
830
+ #: contact_form.php:2151
831
  msgid "Button color"
832
  msgstr "Knoppie Kleur"
833
 
834
+ #: contact_form.php:2156
835
  msgid "Button text color"
836
  msgstr "Knoppie teks kleur"
837
 
838
+ #: contact_form.php:2188
839
  #, fuzzy
840
  msgid "Contact Form | Preview"
841
  msgstr "Kontak Vorm Pro | Voorskou"
842
 
843
+ #: contact_form.php:2189
844
  msgid "Drag the necessary field to sort fields."
845
  msgstr ""
846
 
847
+ #: contact_form.php:2385
848
+ #, fuzzy
849
  msgid ""
850
  "If you would like to add the Contact Form to your website, just copy and "
851
+ "paste this shortcode to your post or page or widget"
852
  msgstr ""
853
  "As u die Kontak Vorm by u webstuiste wil bylas, kopieër en plak net die "
854
  "kortkode na u post, bladsy of widget:"
855
 
856
+ #: contact_form.php:2501
857
  msgid "Sorry, email message could not be delivered."
858
  msgstr "Verskoning, die epos kon nie gestuur word nie."
859
 
860
+ #: contact_form.php:3069 contact_form.php:3071
861
  msgid "Sent from (ip address)"
862
  msgstr "Gestuur van (IP-Adres)"
863
 
864
+ #: contact_form.php:3099
865
  msgid "Contact from"
866
  msgstr "Kontak Vorm"
867
 
868
+ #: contact_form.php:3104 contact_form.php:3153
 
 
 
 
869
  msgid "Site"
870
  msgstr "Webtuiste"
871
 
872
+ #: contact_form.php:3283
873
  msgid ""
874
  "If you can see this MIME, it means that the MIME type is not supported by "
875
  "your email client!"
877
  "As u die MIME kan sie, beteken dit dat die MIME tipe nie ondersteun word "
878
  "deur u epos klient nie!"
879
 
880
+ #: contact_form.php:3366
881
  msgid "FAQ"
882
  msgstr "Gereeld Gestelde Vrae (FAQ)"
883
 
884
+ #: contact_form.php:3367
885
  msgid "Support"
886
  msgstr "Steun"
887
 
888
+ #: contact_form.php:3416
889
  msgid "Are you sure that you want to delete this language data?"
890
  msgstr "Is u seker dat u die taal data wil verwyder?"
891
 
892
+ #: contact_form.php:3437
893
  #, fuzzy
894
  msgid "Add multiple forms"
895
  msgstr "Voeg by die vorm by"
896
 
897
+ #: contact_form.php:3437
898
  msgid ""
899
  "Install Contact Form Multi plugin to create unlimited number of contact "
900
  "forms."
901
  msgstr ""
902
 
903
+ #: contact_form.php:3442
904
  msgid "Learn more"
905
  msgstr ""
906
 
907
+ #: contact_form.php:3663
908
  msgid "Close notice"
909
  msgstr ""
910
 
911
+ #: contact_form.php:3668
912
  #, fuzzy
913
  msgid "allows to store your messages to the database."
914
  msgstr "Stoor eposse na die databasis."
915
 
916
+ #: contact_form.php:3669
917
  msgid "Manage messages that have been sent from your website."
918
  msgstr ""
919
 
920
+ #: contact_form.php:3727
921
  #, fuzzy
922
  msgid "Contact form"
923
  msgstr "Kontak Vorm"
924
 
925
+ #: contact_form.php:3740 contact_form.php:3750
926
  #, fuzzy
927
  msgid "Language"
928
  msgstr "Voeg 'n taal by"
929
 
930
+ #~ msgid "Name:"
931
+ #~ msgstr "Naam:"
932
+
933
+ #~ msgid "Address:"
934
+ #~ msgstr "Adres:"
935
+
936
+ #~ msgid "Email Address:"
937
+ #~ msgstr "Epos Adres:"
938
+
939
+ #~ msgid "Phone number:"
940
+ #~ msgstr "Telefoon nommer:"
941
+
942
+ #~ msgid "Subject:"
943
+ #~ msgstr "Onderwerp:"
944
+
945
+ #~ msgid "Message:"
946
+ #~ msgstr "Boodskap:"
947
+
948
+ #~ msgid "Attachment:"
949
+ #~ msgstr "Aanhegsel:"
950
+
951
+ #, fuzzy
952
+ #~ msgid ""
953
+ #~ "Please enable JavaScript to add language in the contact form, change the "
954
+ #~ "names of the contact form fields and error messages."
955
+ #~ msgstr "Verander die name van die kontak vorm velde en foutboodskappe"
956
+
957
+ #~ msgid "What to use?"
958
+ #~ msgstr "Wat om te gebruik?"
959
+
960
+ #, fuzzy
961
+ #~ msgid "Using Contact Form to DB by BestWebSoft"
962
+ #~ msgstr "Gebruik van Kontak Vorm na DB verrig deur"
963
+
964
+ #, fuzzy
965
+ #~ msgid "Activate Captcha"
966
+ #~ msgstr "Aktiveer captcha"
967
+
968
+ #, fuzzy
969
+ #~ msgid "Download Captcha"
970
+ #~ msgstr "Laai captcha af"
971
+
972
+ #~ msgid "Phone"
973
+ #~ msgstr "Telefoon Nommer"
974
+
975
  #~ msgid "To send mail you can use the php mail function"
976
  #~ msgstr "Om eposse te stuur kan u die php epos funksie gebruik"
977
 
1137
  #~ msgid "Please, go to"
1138
  #~ msgstr "Gaan asseblief na"
1139
 
 
 
 
1140
  #~ msgid "You will be redirected automatically in 5 seconds."
1141
  #~ msgstr "U sal outomaties herlei word in 5 sekondes."
1142
 
languages/contact-form-plugin-ca.mo CHANGED
Binary file
languages/contact-form-plugin-ca.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: 2016-06-27 16:30+0300\n"
6
- "PO-Revision-Date: 2016-06-27 16:30+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Kenneth <kenneth@snollocer.net>\n"
9
  "Language: ca_ES\n"
@@ -16,7 +16,7 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:37 contact_form.php:1030
20
  msgid "Contact Form Settings"
21
  msgstr "Opcions Contact Form"
22
 
@@ -24,35 +24,47 @@ msgstr "Opcions Contact Form"
24
  msgid "Contact Form"
25
  msgstr "Contact Form"
26
 
27
- #: contact_form.php:165 contact_form.php:1565 contact_form.php:1599
28
- msgid "Name:"
29
- msgstr "Nom:"
 
 
30
 
31
- #: contact_form.php:166 contact_form.php:1566 contact_form.php:1600
32
- msgid "Address:"
 
 
33
  msgstr "Adreça:"
34
 
35
- #: contact_form.php:167 contact_form.php:1567 contact_form.php:1601
36
- msgid "Email Address:"
 
37
  msgstr "Adreça de correu electrònic:"
38
 
39
- #: contact_form.php:168 contact_form.php:1568 contact_form.php:1602
40
- msgid "Phone number:"
 
 
41
  msgstr "Nombre de telèfon"
42
 
43
- #: contact_form.php:169 contact_form.php:1569 contact_form.php:1603
44
- msgid "Subject:"
45
- msgstr "Asumpte:"
 
 
46
 
47
- #: contact_form.php:170 contact_form.php:1570 contact_form.php:1604
48
- msgid "Message:"
49
- msgstr "Missatge:"
 
 
50
 
51
- #: contact_form.php:171 contact_form.php:1571 contact_form.php:1605
52
- msgid "Attachment:"
 
53
  msgstr "Adjunt:"
54
 
55
- #: contact_form.php:172
56
  msgid ""
57
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
58
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -60,77 +72,77 @@ msgstr ""
60
  "Formats de fitxer suportats: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
61
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
62
 
63
- #: contact_form.php:173 contact_form.php:1573 contact_form.php:1607
64
  msgid "Send me a copy"
65
  msgstr "Envia'm una còpia"
66
 
67
- #: contact_form.php:174 contact_form.php:1574 contact_form.php:1608
68
  msgid "Submit"
69
  msgstr "Enviar"
70
 
71
- #: contact_form.php:175
72
  msgid "Your name is required."
73
  msgstr "El seu nom es obligatori."
74
 
75
- #: contact_form.php:176
76
  msgid "Address is required."
77
  msgstr "Una adreça vàlida és obligatòria."
78
 
79
- #: contact_form.php:177
80
  msgid "A valid email address is required."
81
  msgstr "Una Adreça de correu electrònic és obligatòria."
82
 
83
- #: contact_form.php:178
84
  msgid "Phone number is required."
85
  msgstr "El seu nombre de telèfon és obligatori."
86
 
87
- #: contact_form.php:179
88
  msgid "Subject is required."
89
  msgstr "L'assumpte és obligatori."
90
 
91
- #: contact_form.php:180
92
  msgid "Message text is required."
93
  msgstr "El missatge és obligatori."
94
 
95
- #: contact_form.php:181
96
  msgid "File format is not valid."
97
  msgstr "El format de l'adjunt és incorrecte."
98
 
99
- #: contact_form.php:182
100
  msgid "File upload error."
101
  msgstr "Error de càrrega del fitxer"
102
 
103
- #: contact_form.php:183
104
  msgid "The file could not be uploaded."
105
  msgstr "El fitxer no ha pogut ser carregat"
106
 
107
- #: contact_form.php:184
108
  msgid "This file is too large."
109
  msgstr "Aquest document és massa gran."
110
 
111
- #: contact_form.php:185
112
  msgid "Please fill out the CAPTCHA."
113
  msgstr "Si us plau completi el CAPTCHA"
114
 
115
- #: contact_form.php:186
116
  msgid "Please make corrections below and try again."
117
  msgstr "Si us plau, corregeixi les dades i provi un altre cop."
118
 
119
- #: contact_form.php:188
120
  msgid "Thank you for contacting us."
121
  msgstr "Gràcies per contactar amb nosaltres"
122
 
123
- #: contact_form.php:688 contact_form.php:998
124
  msgid "Settings saved."
125
  msgstr "Configuració desada."
126
 
127
- #: contact_form.php:940
128
  msgid ""
129
  "Email 'FROM' field option was changed, which may cause email messages being "
130
  "moved to the spam folder or email delivery failures."
131
  msgstr ""
132
 
133
- #: contact_form.php:950
134
  msgid ""
135
  "If the 'Redirect to page' option is selected then the URL field should be in "
136
  "the following format"
@@ -138,12 +150,12 @@ msgstr ""
138
  "Si l'opció de 'redireccionament a la pàgina' està seleccionat llavors el "
139
  "camp URL ha d'estar en el següent format"
140
 
141
- #: contact_form.php:957
142
  #, fuzzy
143
  msgid "Such user does not exist."
144
  msgstr "Usuari inexistent. Els canvis no s'han desat."
145
 
146
- #: contact_form.php:967
147
  #, fuzzy
148
  msgid ""
149
  "Please enter a valid email address in the 'Use this email address' field."
@@ -151,80 +163,62 @@ msgstr ""
151
  "Si us plau introdueixi una Adreça de correu electrònic correcta. Els canvis "
152
  "no s'han desat."
153
 
154
- #: contact_form.php:975
155
  #, fuzzy
156
  msgid "Please enter a valid email address in the 'FROM' field."
157
  msgstr ""
158
  "Si us plau introdueixi una Adreça de correu electrònic correcta. Els canvis "
159
  "no s'han desat."
160
 
161
- #: contact_form.php:1000
162
  #, fuzzy
163
  msgid "Settings are not saved."
164
  msgstr "Configuració desada."
165
 
166
- #: contact_form.php:1027
167
  msgid "All plugin settings were restored."
168
  msgstr ""
169
 
170
- #: contact_form.php:1032
171
  msgid "How to Use Step-by-step Instruction"
172
  msgstr ""
173
 
174
- #: contact_form.php:1035 contact_form.php:3024 contact_form.php:3038
175
  msgid "Settings"
176
  msgstr "Configuració"
177
 
178
- #: contact_form.php:1036
179
  #, fuzzy
180
  msgid "Additional settings"
181
  msgstr "Opcions addicionals"
182
 
183
- #: contact_form.php:1037
184
  msgid "Appearance"
185
  msgstr ""
186
 
187
- #: contact_form.php:1038
188
  msgid "Custom code"
189
  msgstr ""
190
 
191
- #: contact_form.php:1039
192
  msgid "Go PRO"
193
  msgstr ""
194
 
195
- #: contact_form.php:1045
196
- #, fuzzy
197
- msgid ""
198
- "Please enable JavaScript to add language in the contact form, change the "
199
- "names of the contact form fields and error messages."
200
  msgstr ""
201
- "Modifica els noms dels camps i els missatges d'error del formulari de "
202
- "contacte"
203
 
204
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1740
205
- msgid "Form layout"
206
- msgstr ""
207
-
208
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1752
209
- #, fuzzy
210
- msgid "Submit position"
211
- msgstr "Enviar"
212
-
213
- #: contact_form.php:1057
214
- msgid "Notice:"
215
- msgstr ""
216
-
217
- #: contact_form.php:1061
218
  msgid "NEW_FORM"
219
  msgstr ""
220
 
221
- #: contact_form.php:1062
222
  msgid ""
223
  "If you want to create multiple contact forms, please install the Contact "
224
  "Form Multi plugin."
225
  msgstr ""
226
 
227
- #: contact_form.php:1071
228
  #, fuzzy, php-format
229
  msgid ""
230
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -233,7 +227,7 @@ msgstr ""
233
  "Si vol afegir Contact Form en la seva web, copiï i enganxi aquest codi en el "
234
  "seu missatge, pàgina o widget:"
235
 
236
- #: contact_form.php:1077
237
  #, php-format
238
  msgid ""
239
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -242,7 +236,7 @@ msgid ""
242
  "language."
243
  msgstr ""
244
 
245
- #: contact_form.php:1086
246
  msgid ""
247
  "If you leave the fields empty, the messages will be sent to the email "
248
  "address specified during registration."
@@ -250,112 +244,119 @@ msgstr ""
250
  "Si la informació d'aquest camp queda buida, s'usarà l'adreça especificada "
251
  "durant el registre."
252
 
253
- #: contact_form.php:1089
254
- msgid "The user's email address:"
 
255
  msgstr "Adreça de correu electrònic de l'usuari:"
256
 
257
- #: contact_form.php:1093
258
  #, fuzzy
259
  msgid "Select a username"
260
  msgstr "Seleccioni un nom d'usuari"
261
 
262
- #: contact_form.php:1106
 
263
  msgid ""
264
- "Enter a username of the person who should get the messages from the contact "
265
  "form."
266
  msgstr "Introdueixi el nom de l'usuari que rebrà missatges des de contact form"
267
 
268
- #: contact_form.php:1110
269
- msgid "Use this email address:"
 
270
  msgstr "Usi aquesta adreça de correu electrònic::"
271
 
272
- #: contact_form.php:1114
273
- msgid "Enter the email address you want the messages forwarded to."
 
274
  msgstr ""
275
  "Introdueixi una adreça de correu electrònic on vulgui re-enviar el missatge"
276
 
277
- #: contact_form.php:1121 contact_form.php:1487 contact_form.php:1679
278
- #: contact_form.php:1767 contact_form.php:3119
279
  msgid "Close"
280
  msgstr ""
281
 
282
- #: contact_form.php:1125
283
- msgid "Add department selectbox to the contact form:"
284
  msgstr ""
285
 
286
- #: contact_form.php:1133 contact_form.php:1496 contact_form.php:1698
287
- #: contact_form.php:1973
288
  msgid "If you upgrade to Pro version all your settings will be saved."
289
  msgstr ""
290
 
291
- #: contact_form.php:1140 contact_form.php:1407 contact_form.php:1501
292
- #: contact_form.php:1705 contact_form.php:1980
293
  msgid "Unlock premium options by upgrading to Pro version"
294
  msgstr ""
295
 
296
- #: contact_form.php:1143 contact_form.php:1410 contact_form.php:1504
297
- #: contact_form.php:1708 contact_form.php:1983 contact_form.php:3329
298
  msgid "Learn More"
299
  msgstr ""
300
 
301
- #: contact_form.php:1151
302
  msgid "Save emails to the database"
303
  msgstr ""
304
 
305
- #: contact_form.php:1156
306
  msgid "Using"
307
  msgstr ""
308
 
309
- #: contact_form.php:1159 contact_form.php:1163
 
 
 
 
 
 
310
  #, fuzzy
311
- msgid "Using Contact Form to DB by BestWebSoft"
312
- msgstr "Contact Form Pro"
313
 
314
- #: contact_form.php:1159
 
315
  #, fuzzy
316
  msgid "Activate"
317
  msgstr "Captcha activat"
318
 
319
- #: contact_form.php:1163
 
320
  msgid "Download"
321
  msgstr "Descarregar"
322
 
323
- #: contact_form.php:1173
324
- msgid "What to use?"
325
- msgstr "Què usar?"
326
 
327
- #: contact_form.php:1178
328
  msgid "Wp-mail"
329
  msgstr "Wp-mail"
330
 
331
- #: contact_form.php:1180
332
  #, fuzzy
333
  msgid "You can use the Wordpress wp_mail function for mailing"
334
  msgstr "Vostè pot utilitzar la funció wp_mail pel correu."
335
 
336
- #: contact_form.php:1183
337
  msgid "Mail"
338
  msgstr "Mail"
339
 
340
- #: contact_form.php:1185
341
  #, fuzzy
342
  msgid "You can use the PHP mail function for mailing"
343
  msgstr "Vostè pot utilitzar la funció wp_mail pel correu."
344
 
345
- #: contact_form.php:1190
346
  msgid "'FROM' field"
347
  msgstr ""
348
 
349
- #: contact_form.php:1192 contact_form.php:1251 contact_form.php:1839
350
- #: contact_form.php:2810 contact_form.php:2846
351
- msgid "Name"
352
- msgstr "Nom"
353
-
354
- #: contact_form.php:1195
355
  msgid "User name"
356
  msgstr ""
357
 
358
- #: contact_form.php:1197
359
  #, fuzzy
360
  msgid ""
361
  "The name of the user who fills the form will be used in the field 'From'."
@@ -363,15 +364,15 @@ msgstr ""
363
  "L'adreça de correu electrònic de l'usuari que omple el formulari s'ha de "
364
  "posar al camp 'From'."
365
 
366
- #: contact_form.php:1202 contact_form.php:2821 contact_form.php:2853
367
  msgid "Email"
368
  msgstr "Adreça de correu electrònic"
369
 
370
- #: contact_form.php:1205
371
  msgid "User email"
372
  msgstr ""
373
 
374
- #: contact_form.php:1207
375
  msgid ""
376
  "The email address of the user who fills the form will be used in the field "
377
  "'From'."
@@ -379,335 +380,292 @@ msgstr ""
379
  "L'adreça de correu electrònic de l'usuari que omple el formulari s'ha de "
380
  "posar al camp 'From'."
381
 
382
- #: contact_form.php:1210
383
  msgid ""
384
  "If this option is changed, email messages may be moved to the spam folder or "
385
  "email delivery failures may occur."
386
  msgstr ""
387
 
388
- #: contact_form.php:1216
389
  #, fuzzy
390
  msgid "Required symbol"
391
  msgstr "Camps requerits"
392
 
393
- #: contact_form.php:1226
394
  msgid "Fields"
395
  msgstr ""
396
 
397
- #: contact_form.php:1227 contact_form.php:1254 contact_form.php:1281
398
- #: contact_form.php:1301 contact_form.php:1340 contact_form.php:1425
399
  msgid "Used"
400
  msgstr ""
401
 
402
- #: contact_form.php:1228 contact_form.php:1243 contact_form.php:1258
403
- #: contact_form.php:1285 contact_form.php:1305 contact_form.php:1318
404
- #: contact_form.php:1344 contact_form.php:1357 contact_form.php:1381
405
  #, fuzzy
406
  msgid "Required"
407
  msgstr "Camps requerits"
408
 
409
- #: contact_form.php:1230 contact_form.php:1263 contact_form.php:1323
410
- #: contact_form.php:1362 contact_form.php:1386
411
  msgid "Visible"
412
  msgstr ""
413
 
414
- #: contact_form.php:1231 contact_form.php:1267 contact_form.php:1327
415
- #: contact_form.php:1366 contact_form.php:1390
416
  msgid "Disabled for editing"
417
  msgstr ""
418
 
419
- #: contact_form.php:1232 contact_form.php:1291 contact_form.php:1370
420
- #: contact_form.php:1394
421
  msgid "Field's default value"
422
  msgstr ""
423
 
424
- #: contact_form.php:1239
425
  msgid "Department selectbox"
426
  msgstr ""
427
 
428
- #: contact_form.php:1271
429
  msgid "Use User's name as a default value if the user is logged in."
430
  msgstr ""
431
 
432
- #: contact_form.php:1272 contact_form.php:1332
433
  msgid ""
434
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
435
  "in users."
436
  msgstr ""
437
 
438
- #: contact_form.php:1278
439
  msgid "Location selectbox"
440
  msgstr ""
441
 
442
- #: contact_form.php:1298 contact_form.php:1844 contact_form.php:2816
443
- #: contact_form.php:2850
444
- msgid "Address"
445
- msgstr "Adreça:"
446
-
447
- #: contact_form.php:1314
448
- msgid "Email Address"
449
- msgstr "Adreça de correu electrònic:"
450
-
451
- #: contact_form.php:1331
452
  msgid "Use User's email as a default value if the user is logged in."
453
  msgstr ""
454
 
455
- #: contact_form.php:1337
456
- #, fuzzy
457
- msgid "Phone number"
458
- msgstr "Nombre de telèfon"
459
-
460
- #: contact_form.php:1353 contact_form.php:1859 contact_form.php:2831
461
- #: contact_form.php:2859
462
- msgid "Subject"
463
- msgstr "Assumpte"
464
-
465
- #: contact_form.php:1377 contact_form.php:1863 contact_form.php:2834
466
- #: contact_form.php:2861
467
- msgid "Message"
468
- msgstr "MIssatge"
469
-
470
- #: contact_form.php:1418
471
  msgid "Attachment block"
472
  msgstr "Adjunt blocat"
473
 
474
- #: contact_form.php:1420
475
  msgid "Users can attach the following file formats"
476
  msgstr "Els usuaris poden adjuntar els següents formats d'arxiu"
477
 
478
- #: contact_form.php:1438
479
  msgid "Add to the form"
480
  msgstr ""
481
 
482
- #: contact_form.php:1443
483
  #, fuzzy
484
  msgid "Tips below the Attachment"
485
  msgstr "Consells del blocatge de l'adjunt"
486
 
487
- #: contact_form.php:1452
488
  #, fuzzy
489
  msgid "'Send me a copy' block"
490
  msgstr "Envia'm una còpia"
491
 
492
- #: contact_form.php:1464
493
- #, fuzzy
494
- msgid "Activate Subscriber"
495
- msgstr "Plugin activat"
496
-
497
- #: contact_form.php:1468
498
- msgid "Download Subscriber"
499
- msgstr ""
500
-
501
- #: contact_form.php:1477
502
- #, fuzzy
503
- msgid "Activate Captcha"
504
- msgstr "Captcha activat"
505
-
506
- #: contact_form.php:1481
507
- #, fuzzy
508
- msgid "Download Captcha"
509
- msgstr "Descarrega captcha"
510
-
511
- #: contact_form.php:1491
512
  msgid "Agreement checkbox"
513
  msgstr ""
514
 
515
- #: contact_form.php:1491
516
  msgid "Required checkbox for submitting the form"
517
  msgstr ""
518
 
519
- #: contact_form.php:1492
520
  msgid "Optional checkbox"
521
  msgstr ""
522
 
523
- #: contact_form.php:1492
524
  msgid "Optional checkbox, the results of which will be displayed in email"
525
  msgstr ""
526
 
527
- #: contact_form.php:1513
528
  msgid "Delete an attachment file from the server after the email is sent"
529
  msgstr ""
530
 
531
- #: contact_form.php:1519
532
  msgid "Email in HTML format sending"
533
  msgstr ""
534
 
535
- #: contact_form.php:1523
536
  msgid "Display additional info in the email"
537
  msgstr "Mostra informació addicional al correu electrònic,"
538
 
539
- #: contact_form.php:1529
540
  #, fuzzy
541
  msgid "Sent from (IP address)"
542
  msgstr "Enviat des de (adreça IP)"
543
 
544
- #: contact_form.php:1529
545
  #, fuzzy
546
  msgid "Example: Sent from (IP address):\t127.0.0.1"
547
  msgstr "Enviat des de (adreça IP)"
548
 
549
- #: contact_form.php:1530 contact_form.php:2783 contact_form.php:2785
550
  msgid "Date/Time"
551
  msgstr "Data/hora"
552
 
553
- #: contact_form.php:1530
554
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
555
  msgstr ""
556
 
557
- #: contact_form.php:1531 contact_form.php:2789 contact_form.php:2791
558
  msgid "Sent from (referer)"
559
  msgstr "Enviat des de (referent)"
560
 
561
- #: contact_form.php:1531
562
  msgid ""
563
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
564
  msgstr ""
565
 
566
- #: contact_form.php:1532 contact_form.php:2795 contact_form.php:2797
567
  msgid "Using (user agent)"
568
  msgstr "Usant (user agent)"
569
 
570
- #: contact_form.php:1532
571
  msgid ""
572
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
573
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
574
  msgstr ""
575
 
576
- #: contact_form.php:1537
577
  msgid "Language settings for the field names in the form"
578
  msgstr "Configuració de la llengua als noms dels camps del formulari"
579
 
580
- #: contact_form.php:1546
581
  msgid "Add a language"
582
  msgstr "Afegeix lengua"
583
 
584
- #: contact_form.php:1550
585
  msgid "Change the names of the contact form fields and error messages"
586
  msgstr ""
587
  "Modifica els noms dels camps i els missatges d'error del formulari de "
588
  "contacte"
589
 
590
- #: contact_form.php:1555 contact_form.php:1642 contact_form.php:1887
591
- #: contact_form.php:1892 contact_form.php:1902 contact_form.php:1907
592
- #: contact_form.php:1912 contact_form.php:1917 contact_form.php:1927
593
- #: contact_form.php:1932 contact_form.php:1941 contact_form.php:1955
594
- #: contact_form.php:1960 contact_form.php:1965
595
  msgid "Default"
596
  msgstr "Per defecte"
597
 
598
- #: contact_form.php:1563 contact_form.php:1597
599
  msgid "click to expand/hide the list"
600
  msgstr ""
601
 
602
- #: contact_form.php:1572 contact_form.php:1606
603
  #, fuzzy
604
  msgid "Tips below the Attachment block"
605
  msgstr "Consells del blocatge de l'adjunt"
606
 
607
- #: contact_form.php:1575 contact_form.php:1609
608
  msgid "Error message for the Name field"
609
  msgstr "Missatge d'error per al camp 'Nom'"
610
 
611
- #: contact_form.php:1576 contact_form.php:1610
612
  msgid "Error message for the Address field"
613
  msgstr "Missatge d'error per al camp 'Adreça'"
614
 
615
- #: contact_form.php:1577 contact_form.php:1611
616
  msgid "Error message for the Email field"
617
  msgstr "Missatge d'error per al camp 'Adreça de correu electrònic'"
618
 
619
- #: contact_form.php:1578 contact_form.php:1612
620
  msgid "Error message for the Phone field"
621
  msgstr "Missatge d'error per al camp 'Telèfon\""
622
 
623
- #: contact_form.php:1579 contact_form.php:1613
624
  msgid "Error message for the Subject field"
625
  msgstr "Missatge d'error per al camp 'Assumpte'"
626
 
627
- #: contact_form.php:1580 contact_form.php:1614
628
  msgid "Error message for the Message field"
629
  msgstr "Missatge d'error per al camp 'Missatge'"
630
 
631
- #: contact_form.php:1581 contact_form.php:1615
632
  msgid "Error message about the file type for the Attachment field"
633
  msgstr "Missatge d'error sobre el tipus de per al camp 'Adjunt'"
634
 
635
- #: contact_form.php:1582 contact_form.php:1616
636
  msgid ""
637
  "Error message while uploading a file for the Attachment field to the server"
638
  msgstr "Missatge d'error al carregar al servidor un fitxer per al camp Adjunt"
639
 
640
- #: contact_form.php:1583 contact_form.php:1617
641
  msgid "Error message while moving the file for the Attachment field"
642
  msgstr "Missatge d'error al mourerun fitxer per al camp Adjunt"
643
 
644
- #: contact_form.php:1584 contact_form.php:1618
645
  msgid "Error message when file size limit for the Attachment field is exceeded"
646
  msgstr ""
647
  "Missatge d'error al superar el límit de mida de fitxer per al camp Adjunt"
648
 
649
- #: contact_form.php:1585 contact_form.php:1619
650
  msgid "Error message for the Captcha field"
651
  msgstr "Missatge d'error al camp Captcha"
652
 
653
- #: contact_form.php:1586 contact_form.php:1620
654
  msgid "Error message for the whole form"
655
  msgstr "Missatge d'error a tot el formulari"
656
 
657
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
658
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
659
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
660
- #: contact_form.php:3179
661
  msgid "Use shortcode"
662
  msgstr "useu un codi curt"
663
 
664
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
665
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
666
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
667
- #: contact_form.php:3179
668
  msgid "for this language"
669
  msgstr "Per aquesta llengua"
670
 
671
- #: contact_form.php:1633
672
  #, fuzzy
673
  msgid "Use the changed names of the contact form fields in the email"
674
  msgstr ""
675
  "Modifica els noms dels camps i els missatges d'error del formulari de "
676
  "contacte"
677
 
678
- #: contact_form.php:1639
679
  msgid "Action after email is sent"
680
  msgstr "Accions després d'enviar un correu electrònic."
681
 
682
- #: contact_form.php:1641
683
  msgid "Display text"
684
  msgstr "Mostra el text"
685
 
686
- #: contact_form.php:1650 contact_form.php:1660
687
  msgid "Text"
688
  msgstr "Text"
689
 
690
- #: contact_form.php:1671
691
  msgid "Redirect to the page"
692
  msgstr "Redirigir a la pàgina"
693
 
694
- #: contact_form.php:1672
695
  msgid "Url"
696
  msgstr "Url"
697
 
698
- #: contact_form.php:1683
699
  msgid "Add field 'Reply-To' to the email header"
700
  msgstr ""
701
 
702
- #: contact_form.php:1685
703
  msgid "Field 'Reply-To' will be initialized by user email"
704
  msgstr ""
705
 
706
- #: contact_form.php:1689
707
  msgid "Auto Response"
708
  msgstr ""
709
 
710
- #: contact_form.php:1693
711
  #, php-format
712
  msgid ""
713
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -715,206 +673,208 @@ msgid ""
715
  "name."
716
  msgstr ""
717
 
718
- #: contact_form.php:1718 contact_form.php:2213
719
  msgid "Save Changes"
720
  msgstr "Desar els canvis"
721
 
722
- #: contact_form.php:1731
723
  #, php-format
724
  msgid ""
725
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
726
  msgstr ""
727
 
728
- #: contact_form.php:1744
 
 
 
 
 
 
 
 
 
729
  msgid "One column"
730
  msgstr ""
731
 
732
- #: contact_form.php:1747
733
  msgid "Two columns"
734
  msgstr ""
735
 
736
- #: contact_form.php:1756 contact_form.php:1775 contact_form.php:1793
737
- #: contact_form.php:1808
738
  msgid "Left"
739
  msgstr ""
740
 
741
- #: contact_form.php:1759 contact_form.php:1781 contact_form.php:1796
742
- #: contact_form.php:1814
743
  msgid "Right"
744
  msgstr ""
745
 
746
- #: contact_form.php:1771
747
  msgid "Form align"
748
  msgstr ""
749
 
750
- #: contact_form.php:1778 contact_form.php:1811
751
  msgid "Center"
752
  msgstr ""
753
 
754
- #: contact_form.php:1786
755
  #, fuzzy
756
  msgid "Labels position"
757
  msgstr "Enviar"
758
 
759
- #: contact_form.php:1790
760
  msgid "Top"
761
  msgstr ""
762
 
763
- #: contact_form.php:1799
764
  msgid "Bottom"
765
  msgstr ""
766
 
767
- #: contact_form.php:1804
768
  msgid "Labels align"
769
  msgstr ""
770
 
771
- #: contact_form.php:1819
772
  msgid "Errors output"
773
  msgstr "Errors de sortida"
774
 
775
- #: contact_form.php:1822
776
  msgid "Display error messages"
777
  msgstr "Mostra els missatges d'error"
778
 
779
- #: contact_form.php:1823
780
  msgid "Color of the input field errors."
781
  msgstr "Color dels errors al camp d'entrada"
782
 
783
- #: contact_form.php:1824
784
  msgid "Display error messages & color of the input field errors"
785
  msgstr "Mostra els missatges d'error i el color dels errors del camp d'entrada"
786
 
787
- #: contact_form.php:1829
788
  msgid "Add placeholder to the input blocks"
789
  msgstr "Afegeix marcador de posició als blocs d'entrada"
790
 
791
- #: contact_form.php:1835
792
  msgid "Add tooltips"
793
  msgstr "Afegir consells sobre les eines"
794
 
795
- #: contact_form.php:1849
796
  msgid "Email address"
797
  msgstr "Adreça de correu electrònic:"
798
 
799
- #: contact_form.php:1854
800
  msgid "Phone Number"
801
  msgstr "Nombre de telèfon"
802
 
803
- #: contact_form.php:1868
804
- msgid "Attachment"
805
- msgstr "Adjunt:"
806
-
807
- #: contact_form.php:1880
808
  msgid "Style options"
809
  msgstr "Opcions d'estil"
810
 
811
- #: contact_form.php:1884
812
  msgid "Text color"
813
  msgstr "Color del text"
814
 
815
- #: contact_form.php:1889
816
  msgid "Label text color"
817
  msgstr "Color del text de l'etiqeta"
818
 
819
- #: contact_form.php:1894
820
  msgid "Placeholder color"
821
  msgstr "Color del marcador de posició"
822
 
823
- #: contact_form.php:1899
824
  msgid "Errors color"
825
  msgstr "Color dels errors"
826
 
827
- #: contact_form.php:1904
828
  msgid "Error text color"
829
  msgstr "Color del text d'error"
830
 
831
- #: contact_form.php:1909
832
  msgid "Background color of the input field errors"
833
  msgstr "Color de fons dels errors del camp d'entrada"
834
 
835
- #: contact_form.php:1914
836
  msgid "Border color of the input field errors"
837
  msgstr "Color de la vora dels errors del camp d'entrada"
838
 
839
- #: contact_form.php:1919
840
  msgid "Placeholder color of the input field errors"
841
  msgstr "Color del marcador de posició dels errors del camp d'entrada"
842
 
843
- #: contact_form.php:1924
844
  msgid "Input fields"
845
  msgstr "Visualitza l'adjunt"
846
 
847
- #: contact_form.php:1929
848
  msgid "Input fields background color"
849
  msgstr "Color de fons dels camps d'entrada"
850
 
851
- #: contact_form.php:1934
852
  msgid "Text fields color"
853
  msgstr "Color dels camps de text"
854
 
855
- #: contact_form.php:1938
856
  msgid "Border width in px, numbers only"
857
  msgstr "Ample de vora en px, sols nombres"
858
 
859
- #: contact_form.php:1943 contact_form.php:1967
860
  msgid "Border color"
861
  msgstr "Color de la vora"
862
 
863
- #: contact_form.php:1948
864
  msgid "Submit button"
865
  msgstr "Enviar"
866
 
867
  # #: contact_form.php:928
868
- #: contact_form.php:1952
869
  msgid "Width in px, numbers only"
870
  msgstr "Ample en px, sols nombres"
871
 
872
- #: contact_form.php:1957
873
  msgid "Button color"
874
  msgstr "Color del botó"
875
 
876
- #: contact_form.php:1962
877
  msgid "Button text color"
878
  msgstr "Color del text del botó"
879
 
880
- #: contact_form.php:1994
881
  #, fuzzy
882
  msgid "Contact Form | Preview"
883
  msgstr "Contact Form Pro | Vista prèvia"
884
 
885
- #: contact_form.php:1995
886
  msgid "Drag the necessary field to sort fields."
887
  msgstr ""
888
 
889
- #: contact_form.php:2200
 
890
  msgid ""
891
  "If you would like to add the Contact Form to your website, just copy and "
892
- "paste this shortcode to your post or page or widget:"
893
  msgstr ""
894
  "Si vol afegir Contact Form en la seva web, copiï i enganxi aquest codi en el "
895
  "seu missatge, pàgina o widget:"
896
 
897
- #: contact_form.php:2297
898
  msgid "Sorry, email message could not be delivered."
899
  msgstr "Ho sentim, el seu e-mail no ha pogut ser lliurat."
900
 
901
- #: contact_form.php:2777 contact_form.php:2779
902
  msgid "Sent from (ip address)"
903
  msgstr "Enviat des de (adreça IP)"
904
 
905
- #: contact_form.php:2804
906
  msgid "Contact from"
907
  msgstr "Contact from"
908
 
909
- #: contact_form.php:2826 contact_form.php:2856
910
- msgid "Phone"
911
- msgstr "Telèfon"
912
-
913
- #: contact_form.php:2837 contact_form.php:2863
914
  msgid "Site"
915
  msgstr "Lloc"
916
 
917
- #: contact_form.php:2956
918
  msgid ""
919
  "If you can see this MIME, it means that the MIME type is not supported by "
920
  "your email client!"
@@ -922,56 +882,107 @@ msgstr ""
922
  "Si pot veure aquest MIME, vol dir que el tipus MIME no és compatible amb el "
923
  "seu client de correu electrònic!"
924
 
925
- #: contact_form.php:3039
926
  msgid "FAQ"
927
  msgstr "FAQ"
928
 
929
- #: contact_form.php:3040
930
  msgid "Support"
931
  msgstr "Suport"
932
 
933
- #: contact_form.php:3089
934
  msgid "Are you sure that you want to delete this language data?"
935
  msgstr "Està vostè segur que vol esborrar aquest idioma?"
936
 
937
- #: contact_form.php:3110
938
  #, fuzzy
939
  msgid "Add multiple forms"
940
  msgstr "Afegir consells sobre les eines"
941
 
942
- #: contact_form.php:3110
943
  msgid ""
944
  "Install Contact Form Multi plugin to create unlimited number of contact "
945
  "forms."
946
  msgstr ""
947
 
948
- #: contact_form.php:3115
949
  #, fuzzy
950
  msgid "Learn more"
951
  msgstr "Llegir més"
952
 
953
- #: contact_form.php:3320
954
  msgid "Close notice"
955
  msgstr ""
956
 
957
- #: contact_form.php:3325
958
  msgid "allows to store your messages to the database."
959
  msgstr ""
960
 
961
- #: contact_form.php:3326
962
  msgid "Manage messages that have been sent from your website."
963
  msgstr ""
964
 
965
- #: contact_form.php:3384
966
  #, fuzzy
967
  msgid "Contact form"
968
  msgstr "Contact from"
969
 
970
- #: contact_form.php:3397 contact_form.php:3407
971
  #, fuzzy
972
  msgid "Language"
973
  msgstr "Afegeix lengua"
974
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
975
  #~ msgid "To send mail you can use the php mail function"
976
  #~ msgstr "Per enviar correu vostè pot usar la funció 'php mail'"
977
 
@@ -1031,10 +1042,6 @@ msgstr "Afegeix lengua"
1031
  #~ "Si té alguna pregunta, contacti'ns si us plau via plugin@bestwebsoft.com "
1032
  #~ "o utilitzi el formulari de contacte de la nostra web"
1033
 
1034
- #, fuzzy
1035
- #~ msgid "the setting page"
1036
- #~ msgstr "Configuració extra"
1037
-
1038
  #~ msgid "Extra settings"
1039
  #~ msgstr "Configuració extra"
1040
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-12 17:21+0300\n"
6
+ "PO-Revision-Date: 2016-07-12 17:21+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Kenneth <kenneth@snollocer.net>\n"
9
  "Language: ca_ES\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:37 contact_form.php:1118
20
  msgid "Contact Form Settings"
21
  msgstr "Opcions Contact Form"
22
 
24
  msgid "Contact Form"
25
  msgstr "Contact Form"
26
 
27
+ #: contact_form.php:167 contact_form.php:1294 contact_form.php:1353
28
+ #: contact_form.php:1746 contact_form.php:1784 contact_form.php:2033
29
+ #: contact_form.php:3113 contact_form.php:3159
30
+ msgid "Name"
31
+ msgstr "Nom"
32
 
33
+ #: contact_form.php:168 contact_form.php:1400 contact_form.php:1747
34
+ #: contact_form.php:1785 contact_form.php:2038 contact_form.php:3120
35
+ #: contact_form.php:3165
36
+ msgid "Address"
37
  msgstr "Adreça:"
38
 
39
+ #: contact_form.php:169 contact_form.php:1416 contact_form.php:1748
40
+ #: contact_form.php:1786
41
+ msgid "Email Address"
42
  msgstr "Adreça de correu electrònic:"
43
 
44
+ #: contact_form.php:170 contact_form.php:1439 contact_form.php:1749
45
+ #: contact_form.php:1787
46
+ #, fuzzy
47
+ msgid "Phone number"
48
  msgstr "Nombre de telèfon"
49
 
50
+ #: contact_form.php:171 contact_form.php:1455 contact_form.php:1750
51
+ #: contact_form.php:1788 contact_form.php:2053 contact_form.php:3131
52
+ #: contact_form.php:3174
53
+ msgid "Subject"
54
+ msgstr "Assumpte"
55
 
56
+ #: contact_form.php:172 contact_form.php:1479 contact_form.php:1751
57
+ #: contact_form.php:1789 contact_form.php:2057 contact_form.php:3136
58
+ #: contact_form.php:3178
59
+ msgid "Message"
60
+ msgstr "MIssatge"
61
 
62
+ #: contact_form.php:173 contact_form.php:1752 contact_form.php:1790
63
+ #: contact_form.php:2062
64
+ msgid "Attachment"
65
  msgstr "Adjunt:"
66
 
67
+ #: contact_form.php:174
68
  msgid ""
69
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
70
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
72
  "Formats de fitxer suportats: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
73
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
74
 
75
+ #: contact_form.php:175 contact_form.php:1754 contact_form.php:1792
76
  msgid "Send me a copy"
77
  msgstr "Envia'm una còpia"
78
 
79
+ #: contact_form.php:176 contact_form.php:1755 contact_form.php:1793
80
  msgid "Submit"
81
  msgstr "Enviar"
82
 
83
+ #: contact_form.php:177
84
  msgid "Your name is required."
85
  msgstr "El seu nom es obligatori."
86
 
87
+ #: contact_form.php:178
88
  msgid "Address is required."
89
  msgstr "Una adreça vàlida és obligatòria."
90
 
91
+ #: contact_form.php:179
92
  msgid "A valid email address is required."
93
  msgstr "Una Adreça de correu electrònic és obligatòria."
94
 
95
+ #: contact_form.php:180
96
  msgid "Phone number is required."
97
  msgstr "El seu nombre de telèfon és obligatori."
98
 
99
+ #: contact_form.php:181
100
  msgid "Subject is required."
101
  msgstr "L'assumpte és obligatori."
102
 
103
+ #: contact_form.php:182
104
  msgid "Message text is required."
105
  msgstr "El missatge és obligatori."
106
 
107
+ #: contact_form.php:183
108
  msgid "File format is not valid."
109
  msgstr "El format de l'adjunt és incorrecte."
110
 
111
+ #: contact_form.php:184
112
  msgid "File upload error."
113
  msgstr "Error de càrrega del fitxer"
114
 
115
+ #: contact_form.php:185
116
  msgid "The file could not be uploaded."
117
  msgstr "El fitxer no ha pogut ser carregat"
118
 
119
+ #: contact_form.php:186
120
  msgid "This file is too large."
121
  msgstr "Aquest document és massa gran."
122
 
123
+ #: contact_form.php:187
124
  msgid "Please fill out the CAPTCHA."
125
  msgstr "Si us plau completi el CAPTCHA"
126
 
127
+ #: contact_form.php:188
128
  msgid "Please make corrections below and try again."
129
  msgstr "Si us plau, corregeixi les dades i provi un altre cop."
130
 
131
+ #: contact_form.php:190
132
  msgid "Thank you for contacting us."
133
  msgstr "Gràcies per contactar amb nosaltres"
134
 
135
+ #: contact_form.php:824 contact_form.php:1076
136
  msgid "Settings saved."
137
  msgstr "Configuració desada."
138
 
139
+ #: contact_form.php:1021
140
  msgid ""
141
  "Email 'FROM' field option was changed, which may cause email messages being "
142
  "moved to the spam folder or email delivery failures."
143
  msgstr ""
144
 
145
+ #: contact_form.php:1031
146
  msgid ""
147
  "If the 'Redirect to page' option is selected then the URL field should be in "
148
  "the following format"
150
  "Si l'opció de 'redireccionament a la pàgina' està seleccionat llavors el "
151
  "camp URL ha d'estar en el següent format"
152
 
153
+ #: contact_form.php:1038
154
  #, fuzzy
155
  msgid "Such user does not exist."
156
  msgstr "Usuari inexistent. Els canvis no s'han desat."
157
 
158
+ #: contact_form.php:1048
159
  #, fuzzy
160
  msgid ""
161
  "Please enter a valid email address in the 'Use this email address' field."
163
  "Si us plau introdueixi una Adreça de correu electrònic correcta. Els canvis "
164
  "no s'han desat."
165
 
166
+ #: contact_form.php:1056
167
  #, fuzzy
168
  msgid "Please enter a valid email address in the 'FROM' field."
169
  msgstr ""
170
  "Si us plau introdueixi una Adreça de correu electrònic correcta. Els canvis "
171
  "no s'han desat."
172
 
173
+ #: contact_form.php:1078
174
  #, fuzzy
175
  msgid "Settings are not saved."
176
  msgstr "Configuració desada."
177
 
178
+ #: contact_form.php:1115
179
  msgid "All plugin settings were restored."
180
  msgstr ""
181
 
182
+ #: contact_form.php:1120
183
  msgid "How to Use Step-by-step Instruction"
184
  msgstr ""
185
 
186
+ #: contact_form.php:1123 contact_form.php:3351 contact_form.php:3365
187
  msgid "Settings"
188
  msgstr "Configuració"
189
 
190
+ #: contact_form.php:1124
191
  #, fuzzy
192
  msgid "Additional settings"
193
  msgstr "Opcions addicionals"
194
 
195
+ #: contact_form.php:1125
196
  msgid "Appearance"
197
  msgstr ""
198
 
199
+ #: contact_form.php:1126
200
  msgid "Custom code"
201
  msgstr ""
202
 
203
+ #: contact_form.php:1127
204
  msgid "Go PRO"
205
  msgstr ""
206
 
207
+ #: contact_form.php:1136
208
+ msgid "Notice"
 
 
 
209
  msgstr ""
 
 
210
 
211
+ #: contact_form.php:1140
 
 
 
 
 
 
 
 
 
 
 
 
 
212
  msgid "NEW_FORM"
213
  msgstr ""
214
 
215
+ #: contact_form.php:1141
216
  msgid ""
217
  "If you want to create multiple contact forms, please install the Contact "
218
  "Form Multi plugin."
219
  msgstr ""
220
 
221
+ #: contact_form.php:1150
222
  #, fuzzy, php-format
223
  msgid ""
224
  "If you would like to add a Contact Form to your page or post, please use %s "
227
  "Si vol afegir Contact Form en la seva web, copiï i enganxi aquest codi en el "
228
  "seu missatge, pàgina o widget:"
229
 
230
+ #: contact_form.php:1156
231
  #, php-format
232
  msgid ""
233
  "You can add the Contact Form to your page or post by clicking on %s button "
236
  "language."
237
  msgstr ""
238
 
239
+ #: contact_form.php:1165
240
  msgid ""
241
  "If you leave the fields empty, the messages will be sent to the email "
242
  "address specified during registration."
244
  "Si la informació d'aquest camp queda buida, s'usarà l'adreça especificada "
245
  "durant el registre."
246
 
247
+ #: contact_form.php:1168
248
+ #, fuzzy
249
+ msgid "The user's email address"
250
  msgstr "Adreça de correu electrònic de l'usuari:"
251
 
252
+ #: contact_form.php:1172
253
  #, fuzzy
254
  msgid "Select a username"
255
  msgstr "Seleccioni un nom d'usuari"
256
 
257
+ #: contact_form.php:1185
258
+ #, fuzzy
259
  msgid ""
260
+ "Select a username of the person who should get the messages from the contact "
261
  "form."
262
  msgstr "Introdueixi el nom de l'usuari que rebrà missatges des de contact form"
263
 
264
+ #: contact_form.php:1189
265
+ #, fuzzy
266
+ msgid "Use this email address"
267
  msgstr "Usi aquesta adreça de correu electrònic::"
268
 
269
+ #: contact_form.php:1193
270
+ #, fuzzy
271
+ msgid "Enter the email address for receiving messages"
272
  msgstr ""
273
  "Introdueixi una adreça de correu electrònic on vulgui re-enviar el missatge"
274
 
275
+ #: contact_form.php:1200 contact_form.php:1663 contact_form.php:1873
276
+ #: contact_form.php:1961 contact_form.php:3446
277
  msgid "Close"
278
  msgstr ""
279
 
280
+ #: contact_form.php:1204
281
+ msgid "Add department selectbox to the contact form"
282
  msgstr ""
283
 
284
+ #: contact_form.php:1212 contact_form.php:1672 contact_form.php:1892
285
+ #: contact_form.php:2167
286
  msgid "If you upgrade to Pro version all your settings will be saved."
287
  msgstr ""
288
 
289
+ #: contact_form.php:1219 contact_form.php:1509 contact_form.php:1677
290
+ #: contact_form.php:1899 contact_form.php:2174
291
  msgid "Unlock premium options by upgrading to Pro version"
292
  msgstr ""
293
 
294
+ #: contact_form.php:1222 contact_form.php:1512 contact_form.php:1680
295
+ #: contact_form.php:1902 contact_form.php:2177 contact_form.php:3672
296
  msgid "Learn More"
297
  msgstr ""
298
 
299
+ #: contact_form.php:1230
300
  msgid "Save emails to the database"
301
  msgstr ""
302
 
303
+ #: contact_form.php:1241 contact_form.php:1255 contact_form.php:1262
304
  msgid "Using"
305
  msgstr ""
306
 
307
+ #: contact_form.php:1247 contact_form.php:1572 contact_form.php:1605
308
+ #: contact_form.php:1640
309
+ msgid "Please activate the appropriate option on"
310
+ msgstr ""
311
+
312
+ #: contact_form.php:1250 contact_form.php:1575 contact_form.php:1608
313
+ #: contact_form.php:1643
314
  #, fuzzy
315
+ msgid "settings page"
316
+ msgstr "Configuració extra"
317
 
318
+ #: contact_form.php:1256 contact_form.php:1581 contact_form.php:1615
319
+ #: contact_form.php:1651
320
  #, fuzzy
321
  msgid "Activate"
322
  msgstr "Captcha activat"
323
 
324
+ #: contact_form.php:1263 contact_form.php:1587 contact_form.php:1621
325
+ #: contact_form.php:1656
326
  msgid "Download"
327
  msgstr "Descarregar"
328
 
329
+ #: contact_form.php:1275
330
+ msgid "Sending method"
331
+ msgstr ""
332
 
333
+ #: contact_form.php:1280
334
  msgid "Wp-mail"
335
  msgstr "Wp-mail"
336
 
337
+ #: contact_form.php:1282
338
  #, fuzzy
339
  msgid "You can use the Wordpress wp_mail function for mailing"
340
  msgstr "Vostè pot utilitzar la funció wp_mail pel correu."
341
 
342
+ #: contact_form.php:1285
343
  msgid "Mail"
344
  msgstr "Mail"
345
 
346
+ #: contact_form.php:1287
347
  #, fuzzy
348
  msgid "You can use the PHP mail function for mailing"
349
  msgstr "Vostè pot utilitzar la funció wp_mail pel correu."
350
 
351
+ #: contact_form.php:1292
352
  msgid "'FROM' field"
353
  msgstr ""
354
 
355
+ #: contact_form.php:1297
 
 
 
 
 
356
  msgid "User name"
357
  msgstr ""
358
 
359
+ #: contact_form.php:1299
360
  #, fuzzy
361
  msgid ""
362
  "The name of the user who fills the form will be used in the field 'From'."
364
  "L'adreça de correu electrònic de l'usuari que omple el formulari s'ha de "
365
  "posar al camp 'From'."
366
 
367
+ #: contact_form.php:1304 contact_form.php:3126 contact_form.php:3170
368
  msgid "Email"
369
  msgstr "Adreça de correu electrònic"
370
 
371
+ #: contact_form.php:1307
372
  msgid "User email"
373
  msgstr ""
374
 
375
+ #: contact_form.php:1309
376
  msgid ""
377
  "The email address of the user who fills the form will be used in the field "
378
  "'From'."
380
  "L'adreça de correu electrònic de l'usuari que omple el formulari s'ha de "
381
  "posar al camp 'From'."
382
 
383
+ #: contact_form.php:1312
384
  msgid ""
385
  "If this option is changed, email messages may be moved to the spam folder or "
386
  "email delivery failures may occur."
387
  msgstr ""
388
 
389
+ #: contact_form.php:1318
390
  #, fuzzy
391
  msgid "Required symbol"
392
  msgstr "Camps requerits"
393
 
394
+ #: contact_form.php:1328
395
  msgid "Fields"
396
  msgstr ""
397
 
398
+ #: contact_form.php:1329 contact_form.php:1356 contact_form.php:1383
399
+ #: contact_form.php:1403 contact_form.php:1442 contact_form.php:1527
400
  msgid "Used"
401
  msgstr ""
402
 
403
+ #: contact_form.php:1330 contact_form.php:1345 contact_form.php:1360
404
+ #: contact_form.php:1387 contact_form.php:1407 contact_form.php:1420
405
+ #: contact_form.php:1446 contact_form.php:1459 contact_form.php:1483
406
  #, fuzzy
407
  msgid "Required"
408
  msgstr "Camps requerits"
409
 
410
+ #: contact_form.php:1332 contact_form.php:1365 contact_form.php:1425
411
+ #: contact_form.php:1464 contact_form.php:1488
412
  msgid "Visible"
413
  msgstr ""
414
 
415
+ #: contact_form.php:1333 contact_form.php:1369 contact_form.php:1429
416
+ #: contact_form.php:1468 contact_form.php:1492
417
  msgid "Disabled for editing"
418
  msgstr ""
419
 
420
+ #: contact_form.php:1334 contact_form.php:1393 contact_form.php:1472
421
+ #: contact_form.php:1496
422
  msgid "Field's default value"
423
  msgstr ""
424
 
425
+ #: contact_form.php:1341
426
  msgid "Department selectbox"
427
  msgstr ""
428
 
429
+ #: contact_form.php:1373
430
  msgid "Use User's name as a default value if the user is logged in."
431
  msgstr ""
432
 
433
+ #: contact_form.php:1374 contact_form.php:1434
434
  msgid ""
435
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
436
  "in users."
437
  msgstr ""
438
 
439
+ #: contact_form.php:1380
440
  msgid "Location selectbox"
441
  msgstr ""
442
 
443
+ #: contact_form.php:1433
 
 
 
 
 
 
 
 
 
444
  msgid "Use User's email as a default value if the user is logged in."
445
  msgstr ""
446
 
447
+ #: contact_form.php:1520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
448
  msgid "Attachment block"
449
  msgstr "Adjunt blocat"
450
 
451
+ #: contact_form.php:1522
452
  msgid "Users can attach the following file formats"
453
  msgstr "Els usuaris poden adjuntar els següents formats d'arxiu"
454
 
455
+ #: contact_form.php:1540
456
  msgid "Add to the form"
457
  msgstr ""
458
 
459
+ #: contact_form.php:1545
460
  #, fuzzy
461
  msgid "Tips below the Attachment"
462
  msgstr "Consells del blocatge de l'adjunt"
463
 
464
+ #: contact_form.php:1554
465
  #, fuzzy
466
  msgid "'Send me a copy' block"
467
  msgstr "Envia'm una còpia"
468
 
469
+ #: contact_form.php:1667
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
470
  msgid "Agreement checkbox"
471
  msgstr ""
472
 
473
+ #: contact_form.php:1667
474
  msgid "Required checkbox for submitting the form"
475
  msgstr ""
476
 
477
+ #: contact_form.php:1668
478
  msgid "Optional checkbox"
479
  msgstr ""
480
 
481
+ #: contact_form.php:1668
482
  msgid "Optional checkbox, the results of which will be displayed in email"
483
  msgstr ""
484
 
485
+ #: contact_form.php:1689
486
  msgid "Delete an attachment file from the server after the email is sent"
487
  msgstr ""
488
 
489
+ #: contact_form.php:1695
490
  msgid "Email in HTML format sending"
491
  msgstr ""
492
 
493
+ #: contact_form.php:1699
494
  msgid "Display additional info in the email"
495
  msgstr "Mostra informació addicional al correu electrònic,"
496
 
497
+ #: contact_form.php:1705
498
  #, fuzzy
499
  msgid "Sent from (IP address)"
500
  msgstr "Enviat des de (adreça IP)"
501
 
502
+ #: contact_form.php:1705
503
  #, fuzzy
504
  msgid "Example: Sent from (IP address):\t127.0.0.1"
505
  msgstr "Enviat des de (adreça IP)"
506
 
507
+ #: contact_form.php:1706 contact_form.php:3075 contact_form.php:3077
508
  msgid "Date/Time"
509
  msgstr "Data/hora"
510
 
511
+ #: contact_form.php:1706
512
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
513
  msgstr ""
514
 
515
+ #: contact_form.php:1707 contact_form.php:3081 contact_form.php:3083
516
  msgid "Sent from (referer)"
517
  msgstr "Enviat des de (referent)"
518
 
519
+ #: contact_form.php:1707
520
  msgid ""
521
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
522
  msgstr ""
523
 
524
+ #: contact_form.php:1708 contact_form.php:3087 contact_form.php:3089
525
  msgid "Using (user agent)"
526
  msgstr "Usant (user agent)"
527
 
528
+ #: contact_form.php:1708
529
  msgid ""
530
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
531
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
532
  msgstr ""
533
 
534
+ #: contact_form.php:1713
535
  msgid "Language settings for the field names in the form"
536
  msgstr "Configuració de la llengua als noms dels camps del formulari"
537
 
538
+ #: contact_form.php:1722
539
  msgid "Add a language"
540
  msgstr "Afegeix lengua"
541
 
542
+ #: contact_form.php:1726
543
  msgid "Change the names of the contact form fields and error messages"
544
  msgstr ""
545
  "Modifica els noms dels camps i els missatges d'error del formulari de "
546
  "contacte"
547
 
548
+ #: contact_form.php:1731 contact_form.php:1827 contact_form.php:2081
549
+ #: contact_form.php:2086 contact_form.php:2096 contact_form.php:2101
550
+ #: contact_form.php:2106 contact_form.php:2111 contact_form.php:2121
551
+ #: contact_form.php:2126 contact_form.php:2135 contact_form.php:2149
552
+ #: contact_form.php:2154 contact_form.php:2159
553
  msgid "Default"
554
  msgstr "Per defecte"
555
 
556
+ #: contact_form.php:1744 contact_form.php:1782
557
  msgid "click to expand/hide the list"
558
  msgstr ""
559
 
560
+ #: contact_form.php:1753 contact_form.php:1791
561
  #, fuzzy
562
  msgid "Tips below the Attachment block"
563
  msgstr "Consells del blocatge de l'adjunt"
564
 
565
+ #: contact_form.php:1756 contact_form.php:1794
566
  msgid "Error message for the Name field"
567
  msgstr "Missatge d'error per al camp 'Nom'"
568
 
569
+ #: contact_form.php:1757 contact_form.php:1795
570
  msgid "Error message for the Address field"
571
  msgstr "Missatge d'error per al camp 'Adreça'"
572
 
573
+ #: contact_form.php:1758 contact_form.php:1796
574
  msgid "Error message for the Email field"
575
  msgstr "Missatge d'error per al camp 'Adreça de correu electrònic'"
576
 
577
+ #: contact_form.php:1759 contact_form.php:1797
578
  msgid "Error message for the Phone field"
579
  msgstr "Missatge d'error per al camp 'Telèfon\""
580
 
581
+ #: contact_form.php:1760 contact_form.php:1798
582
  msgid "Error message for the Subject field"
583
  msgstr "Missatge d'error per al camp 'Assumpte'"
584
 
585
+ #: contact_form.php:1761 contact_form.php:1799
586
  msgid "Error message for the Message field"
587
  msgstr "Missatge d'error per al camp 'Missatge'"
588
 
589
+ #: contact_form.php:1762 contact_form.php:1800
590
  msgid "Error message about the file type for the Attachment field"
591
  msgstr "Missatge d'error sobre el tipus de per al camp 'Adjunt'"
592
 
593
+ #: contact_form.php:1763 contact_form.php:1801
594
  msgid ""
595
  "Error message while uploading a file for the Attachment field to the server"
596
  msgstr "Missatge d'error al carregar al servidor un fitxer per al camp Adjunt"
597
 
598
+ #: contact_form.php:1764 contact_form.php:1802
599
  msgid "Error message while moving the file for the Attachment field"
600
  msgstr "Missatge d'error al mourerun fitxer per al camp Adjunt"
601
 
602
+ #: contact_form.php:1765 contact_form.php:1803
603
  msgid "Error message when file size limit for the Attachment field is exceeded"
604
  msgstr ""
605
  "Missatge d'error al superar el límit de mida de fitxer per al camp Adjunt"
606
 
607
+ #: contact_form.php:1766 contact_form.php:1804
608
  msgid "Error message for the Captcha field"
609
  msgstr "Missatge d'error al camp Captcha"
610
 
611
+ #: contact_form.php:1767 contact_form.php:1805
612
  msgid "Error message for the whole form"
613
  msgstr "Missatge d'error a tot el formulari"
614
 
615
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
616
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
617
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
618
+ #: contact_form.php:3516
619
  msgid "Use shortcode"
620
  msgstr "useu un codi curt"
621
 
622
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
623
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
624
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
625
+ #: contact_form.php:3516
626
  msgid "for this language"
627
  msgstr "Per aquesta llengua"
628
 
629
+ #: contact_form.php:1818
630
  #, fuzzy
631
  msgid "Use the changed names of the contact form fields in the email"
632
  msgstr ""
633
  "Modifica els noms dels camps i els missatges d'error del formulari de "
634
  "contacte"
635
 
636
+ #: contact_form.php:1824
637
  msgid "Action after email is sent"
638
  msgstr "Accions després d'enviar un correu electrònic."
639
 
640
+ #: contact_form.php:1826
641
  msgid "Display text"
642
  msgstr "Mostra el text"
643
 
644
+ #: contact_form.php:1840 contact_form.php:1854
645
  msgid "Text"
646
  msgstr "Text"
647
 
648
+ #: contact_form.php:1865
649
  msgid "Redirect to the page"
650
  msgstr "Redirigir a la pàgina"
651
 
652
+ #: contact_form.php:1866
653
  msgid "Url"
654
  msgstr "Url"
655
 
656
+ #: contact_form.php:1877
657
  msgid "Add field 'Reply-To' to the email header"
658
  msgstr ""
659
 
660
+ #: contact_form.php:1879
661
  msgid "Field 'Reply-To' will be initialized by user email"
662
  msgstr ""
663
 
664
+ #: contact_form.php:1883
665
  msgid "Auto Response"
666
  msgstr ""
667
 
668
+ #: contact_form.php:1887
669
  #, php-format
670
  msgid ""
671
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
673
  "name."
674
  msgstr ""
675
 
676
+ #: contact_form.php:1912 contact_form.php:2398
677
  msgid "Save Changes"
678
  msgstr "Desar els canvis"
679
 
680
+ #: contact_form.php:1925
681
  #, php-format
682
  msgid ""
683
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
684
  msgstr ""
685
 
686
+ #: contact_form.php:1925 contact_form.php:1934
687
+ msgid "Form layout"
688
+ msgstr ""
689
+
690
+ #: contact_form.php:1925 contact_form.php:1946
691
+ #, fuzzy
692
+ msgid "Submit position"
693
+ msgstr "Enviar"
694
+
695
+ #: contact_form.php:1938
696
  msgid "One column"
697
  msgstr ""
698
 
699
+ #: contact_form.php:1941
700
  msgid "Two columns"
701
  msgstr ""
702
 
703
+ #: contact_form.php:1950 contact_form.php:1969 contact_form.php:1987
704
+ #: contact_form.php:2002
705
  msgid "Left"
706
  msgstr ""
707
 
708
+ #: contact_form.php:1953 contact_form.php:1975 contact_form.php:1990
709
+ #: contact_form.php:2008
710
  msgid "Right"
711
  msgstr ""
712
 
713
+ #: contact_form.php:1965
714
  msgid "Form align"
715
  msgstr ""
716
 
717
+ #: contact_form.php:1972 contact_form.php:2005
718
  msgid "Center"
719
  msgstr ""
720
 
721
+ #: contact_form.php:1980
722
  #, fuzzy
723
  msgid "Labels position"
724
  msgstr "Enviar"
725
 
726
+ #: contact_form.php:1984
727
  msgid "Top"
728
  msgstr ""
729
 
730
+ #: contact_form.php:1993
731
  msgid "Bottom"
732
  msgstr ""
733
 
734
+ #: contact_form.php:1998
735
  msgid "Labels align"
736
  msgstr ""
737
 
738
+ #: contact_form.php:2013
739
  msgid "Errors output"
740
  msgstr "Errors de sortida"
741
 
742
+ #: contact_form.php:2016
743
  msgid "Display error messages"
744
  msgstr "Mostra els missatges d'error"
745
 
746
+ #: contact_form.php:2017
747
  msgid "Color of the input field errors."
748
  msgstr "Color dels errors al camp d'entrada"
749
 
750
+ #: contact_form.php:2018
751
  msgid "Display error messages & color of the input field errors"
752
  msgstr "Mostra els missatges d'error i el color dels errors del camp d'entrada"
753
 
754
+ #: contact_form.php:2023
755
  msgid "Add placeholder to the input blocks"
756
  msgstr "Afegeix marcador de posició als blocs d'entrada"
757
 
758
+ #: contact_form.php:2029
759
  msgid "Add tooltips"
760
  msgstr "Afegir consells sobre les eines"
761
 
762
+ #: contact_form.php:2043
763
  msgid "Email address"
764
  msgstr "Adreça de correu electrònic:"
765
 
766
+ #: contact_form.php:2048 contact_form.php:3142 contact_form.php:3183
767
  msgid "Phone Number"
768
  msgstr "Nombre de telèfon"
769
 
770
+ #: contact_form.php:2074
 
 
 
 
771
  msgid "Style options"
772
  msgstr "Opcions d'estil"
773
 
774
+ #: contact_form.php:2078
775
  msgid "Text color"
776
  msgstr "Color del text"
777
 
778
+ #: contact_form.php:2083
779
  msgid "Label text color"
780
  msgstr "Color del text de l'etiqeta"
781
 
782
+ #: contact_form.php:2088
783
  msgid "Placeholder color"
784
  msgstr "Color del marcador de posició"
785
 
786
+ #: contact_form.php:2093
787
  msgid "Errors color"
788
  msgstr "Color dels errors"
789
 
790
+ #: contact_form.php:2098
791
  msgid "Error text color"
792
  msgstr "Color del text d'error"
793
 
794
+ #: contact_form.php:2103
795
  msgid "Background color of the input field errors"
796
  msgstr "Color de fons dels errors del camp d'entrada"
797
 
798
+ #: contact_form.php:2108
799
  msgid "Border color of the input field errors"
800
  msgstr "Color de la vora dels errors del camp d'entrada"
801
 
802
+ #: contact_form.php:2113
803
  msgid "Placeholder color of the input field errors"
804
  msgstr "Color del marcador de posició dels errors del camp d'entrada"
805
 
806
+ #: contact_form.php:2118
807
  msgid "Input fields"
808
  msgstr "Visualitza l'adjunt"
809
 
810
+ #: contact_form.php:2123
811
  msgid "Input fields background color"
812
  msgstr "Color de fons dels camps d'entrada"
813
 
814
+ #: contact_form.php:2128
815
  msgid "Text fields color"
816
  msgstr "Color dels camps de text"
817
 
818
+ #: contact_form.php:2132
819
  msgid "Border width in px, numbers only"
820
  msgstr "Ample de vora en px, sols nombres"
821
 
822
+ #: contact_form.php:2137 contact_form.php:2161
823
  msgid "Border color"
824
  msgstr "Color de la vora"
825
 
826
+ #: contact_form.php:2142
827
  msgid "Submit button"
828
  msgstr "Enviar"
829
 
830
  # #: contact_form.php:928
831
+ #: contact_form.php:2146
832
  msgid "Width in px, numbers only"
833
  msgstr "Ample en px, sols nombres"
834
 
835
+ #: contact_form.php:2151
836
  msgid "Button color"
837
  msgstr "Color del botó"
838
 
839
+ #: contact_form.php:2156
840
  msgid "Button text color"
841
  msgstr "Color del text del botó"
842
 
843
+ #: contact_form.php:2188
844
  #, fuzzy
845
  msgid "Contact Form | Preview"
846
  msgstr "Contact Form Pro | Vista prèvia"
847
 
848
+ #: contact_form.php:2189
849
  msgid "Drag the necessary field to sort fields."
850
  msgstr ""
851
 
852
+ #: contact_form.php:2385
853
+ #, fuzzy
854
  msgid ""
855
  "If you would like to add the Contact Form to your website, just copy and "
856
+ "paste this shortcode to your post or page or widget"
857
  msgstr ""
858
  "Si vol afegir Contact Form en la seva web, copiï i enganxi aquest codi en el "
859
  "seu missatge, pàgina o widget:"
860
 
861
+ #: contact_form.php:2501
862
  msgid "Sorry, email message could not be delivered."
863
  msgstr "Ho sentim, el seu e-mail no ha pogut ser lliurat."
864
 
865
+ #: contact_form.php:3069 contact_form.php:3071
866
  msgid "Sent from (ip address)"
867
  msgstr "Enviat des de (adreça IP)"
868
 
869
+ #: contact_form.php:3099
870
  msgid "Contact from"
871
  msgstr "Contact from"
872
 
873
+ #: contact_form.php:3104 contact_form.php:3153
 
 
 
 
874
  msgid "Site"
875
  msgstr "Lloc"
876
 
877
+ #: contact_form.php:3283
878
  msgid ""
879
  "If you can see this MIME, it means that the MIME type is not supported by "
880
  "your email client!"
882
  "Si pot veure aquest MIME, vol dir que el tipus MIME no és compatible amb el "
883
  "seu client de correu electrònic!"
884
 
885
+ #: contact_form.php:3366
886
  msgid "FAQ"
887
  msgstr "FAQ"
888
 
889
+ #: contact_form.php:3367
890
  msgid "Support"
891
  msgstr "Suport"
892
 
893
+ #: contact_form.php:3416
894
  msgid "Are you sure that you want to delete this language data?"
895
  msgstr "Està vostè segur que vol esborrar aquest idioma?"
896
 
897
+ #: contact_form.php:3437
898
  #, fuzzy
899
  msgid "Add multiple forms"
900
  msgstr "Afegir consells sobre les eines"
901
 
902
+ #: contact_form.php:3437
903
  msgid ""
904
  "Install Contact Form Multi plugin to create unlimited number of contact "
905
  "forms."
906
  msgstr ""
907
 
908
+ #: contact_form.php:3442
909
  #, fuzzy
910
  msgid "Learn more"
911
  msgstr "Llegir més"
912
 
913
+ #: contact_form.php:3663
914
  msgid "Close notice"
915
  msgstr ""
916
 
917
+ #: contact_form.php:3668
918
  msgid "allows to store your messages to the database."
919
  msgstr ""
920
 
921
+ #: contact_form.php:3669
922
  msgid "Manage messages that have been sent from your website."
923
  msgstr ""
924
 
925
+ #: contact_form.php:3727
926
  #, fuzzy
927
  msgid "Contact form"
928
  msgstr "Contact from"
929
 
930
+ #: contact_form.php:3740 contact_form.php:3750
931
  #, fuzzy
932
  msgid "Language"
933
  msgstr "Afegeix lengua"
934
 
935
+ #~ msgid "Name:"
936
+ #~ msgstr "Nom:"
937
+
938
+ #~ msgid "Address:"
939
+ #~ msgstr "Adreça:"
940
+
941
+ #~ msgid "Email Address:"
942
+ #~ msgstr "Adreça de correu electrònic:"
943
+
944
+ #~ msgid "Phone number:"
945
+ #~ msgstr "Nombre de telèfon"
946
+
947
+ #~ msgid "Subject:"
948
+ #~ msgstr "Asumpte:"
949
+
950
+ #~ msgid "Message:"
951
+ #~ msgstr "Missatge:"
952
+
953
+ #~ msgid "Attachment:"
954
+ #~ msgstr "Adjunt:"
955
+
956
+ #, fuzzy
957
+ #~ msgid ""
958
+ #~ "Please enable JavaScript to add language in the contact form, change the "
959
+ #~ "names of the contact form fields and error messages."
960
+ #~ msgstr ""
961
+ #~ "Modifica els noms dels camps i els missatges d'error del formulari de "
962
+ #~ "contacte"
963
+
964
+ #~ msgid "What to use?"
965
+ #~ msgstr "Què usar?"
966
+
967
+ #, fuzzy
968
+ #~ msgid "Using Contact Form to DB by BestWebSoft"
969
+ #~ msgstr "Contact Form Pro"
970
+
971
+ #, fuzzy
972
+ #~ msgid "Activate Subscriber"
973
+ #~ msgstr "Plugin activat"
974
+
975
+ #, fuzzy
976
+ #~ msgid "Activate Captcha"
977
+ #~ msgstr "Captcha activat"
978
+
979
+ #, fuzzy
980
+ #~ msgid "Download Captcha"
981
+ #~ msgstr "Descarrega captcha"
982
+
983
+ #~ msgid "Phone"
984
+ #~ msgstr "Telèfon"
985
+
986
  #~ msgid "To send mail you can use the php mail function"
987
  #~ msgstr "Per enviar correu vostè pot usar la funció 'php mail'"
988
 
1042
  #~ "Si té alguna pregunta, contacti'ns si us plau via plugin@bestwebsoft.com "
1043
  #~ "o utilitzi el formulari de contacte de la nostra web"
1044
 
 
 
 
 
1045
  #~ msgid "Extra settings"
1046
  #~ msgstr "Configuració extra"
1047
 
languages/contact-form-plugin-cs_CZ.mo CHANGED
Binary file
languages/contact-form-plugin-cs_CZ.po CHANGED
@@ -6,8 +6,8 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Contact Form\n"
8
  "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2016-06-27 16:30+0300\n"
10
- "PO-Revision-Date: 2016-06-27 16:30+0300\n"
11
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
12
  "Language-Team: www.pamadessoft.cz <info@pamadessoft.cz>\n"
13
  "Language: cs_CZ\n"
@@ -21,7 +21,7 @@ msgstr ""
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
- #: contact_form.php:37 contact_form.php:1030
25
  msgid "Contact Form Settings"
26
  msgstr "Nastavenie kontaktního formuláře"
27
 
@@ -29,35 +29,46 @@ msgstr "Nastavenie kontaktního formuláře"
29
  msgid "Contact Form"
30
  msgstr "Kontaktní formulář"
31
 
32
- #: contact_form.php:165 contact_form.php:1565 contact_form.php:1599
33
- msgid "Name:"
34
- msgstr "Jméno a příjmení:"
 
 
35
 
36
- #: contact_form.php:166 contact_form.php:1566 contact_form.php:1600
37
- msgid "Address:"
38
- msgstr "Adresa:"
 
 
39
 
40
- #: contact_form.php:167 contact_form.php:1567 contact_form.php:1601
41
- msgid "Email Address:"
42
- msgstr "E-Mail:"
 
43
 
44
- #: contact_form.php:168 contact_form.php:1568 contact_form.php:1602
45
- msgid "Phone number:"
46
- msgstr "Telefonní číslo:"
 
47
 
48
- #: contact_form.php:169 contact_form.php:1569 contact_form.php:1603
49
- msgid "Subject:"
50
- msgstr "Předmět:"
 
 
51
 
52
- #: contact_form.php:170 contact_form.php:1570 contact_form.php:1604
53
- msgid "Message:"
54
- msgstr "Zpráva:"
 
 
55
 
56
- #: contact_form.php:171 contact_form.php:1571 contact_form.php:1605
57
- msgid "Attachment:"
 
58
  msgstr "Příloha:"
59
 
60
- #: contact_form.php:172
61
  msgid ""
62
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
63
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -65,71 +76,71 @@ msgstr ""
65
  "Podporované typy souborů: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
66
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
67
 
68
- #: contact_form.php:173 contact_form.php:1573 contact_form.php:1607
69
  msgid "Send me a copy"
70
  msgstr "Pošlete mi kopii této zprávy"
71
 
72
- #: contact_form.php:174 contact_form.php:1574 contact_form.php:1608
73
  msgid "Submit"
74
  msgstr "Odeslat"
75
 
76
- #: contact_form.php:175
77
  msgid "Your name is required."
78
  msgstr "Zadejte prosím své jméno"
79
 
80
- #: contact_form.php:176
81
  msgid "Address is required."
82
  msgstr "Vyžaduje se adresa."
83
 
84
- #: contact_form.php:177
85
  msgid "A valid email address is required."
86
  msgstr "Je vyžadována platná e-mailová adresa."
87
 
88
- #: contact_form.php:178
89
  msgid "Phone number is required."
90
  msgstr "Telefonní číslo je požadováno."
91
 
92
- #: contact_form.php:179
93
  msgid "Subject is required."
94
  msgstr "Předmět je povinné pole."
95
 
96
- #: contact_form.php:180
97
  msgid "Message text is required."
98
  msgstr "Text zprávy je vyžadován."
99
 
100
- #: contact_form.php:181
101
  msgid "File format is not valid."
102
  msgstr "Formát souboru není platný."
103
 
104
- #: contact_form.php:182
105
  msgid "File upload error."
106
  msgstr "Chyba odeslání souboru."
107
 
108
- #: contact_form.php:183
109
  msgid "The file could not be uploaded."
110
  msgstr "Soubor nelze odeslat."
111
 
112
- #: contact_form.php:184
113
  msgid "This file is too large."
114
  msgstr "Tento soubor je příliš velký."
115
 
116
- #: contact_form.php:185
117
  msgid "Please fill out the CAPTCHA."
118
  msgstr "Prosím opište CAPTCHA text."
119
 
120
- #: contact_form.php:186
121
  msgid "Please make corrections below and try again."
122
  msgstr "Prosím opravte chyby a zkuste to znovu."
123
 
124
- #: contact_form.php:188
125
  msgid "Thank you for contacting us."
126
  msgstr "Děkujeme za zprávu, budeme Vás kontaktovat."
127
 
128
- #: contact_form.php:688 contact_form.php:998
129
  msgid "Settings saved."
130
  msgstr "Nastavení bylo uloženo."
131
 
132
- #: contact_form.php:940
133
  msgid ""
134
  "Email 'FROM' field option was changed, which may cause email messages being "
135
  "moved to the spam folder or email delivery failures."
@@ -137,7 +148,7 @@ msgstr ""
137
  "E-mailu z pole byla změněna, což může způsobit, e-mailové zprávy přesouvány "
138
  "do spam složky nebo e-mailem dodání selhání."
139
 
140
- #: contact_form.php:950
141
  msgid ""
142
  "If the 'Redirect to page' option is selected then the URL field should be in "
143
  "the following format"
@@ -145,77 +156,62 @@ msgstr ""
145
  "Pokud je vybrána možnost 'Přesměrovat na stránku' pak pole URL by měla být v "
146
  "následujícím formátu"
147
 
148
- #: contact_form.php:957
149
  msgid "Such user does not exist."
150
  msgstr "Takový uživatel neexistuje."
151
 
152
- #: contact_form.php:967
153
  msgid ""
154
  "Please enter a valid email address in the 'Use this email address' field."
155
  msgstr ""
156
  "Zadejte platnou e-mailovou adresu do pole \"Použít tuto e-mailovou adresu\"."
157
 
158
- #: contact_form.php:975
159
  msgid "Please enter a valid email address in the 'FROM' field."
160
  msgstr "Zadejte prosím platnou e-mailovou adresu do pole 'Od'."
161
 
162
- #: contact_form.php:1000
163
  msgid "Settings are not saved."
164
  msgstr "Nastavení se neuložilo."
165
 
166
- #: contact_form.php:1027
167
  msgid "All plugin settings were restored."
168
  msgstr "Výchozí nastavení byla obnovena."
169
 
170
- #: contact_form.php:1032
171
  msgid "How to Use Step-by-step Instruction"
172
  msgstr "NÁVOD KROK ZA KROKEM"
173
 
174
- #: contact_form.php:1035 contact_form.php:3024 contact_form.php:3038
175
  msgid "Settings"
176
  msgstr "Nastavení"
177
 
178
- #: contact_form.php:1036
179
  msgid "Additional settings"
180
  msgstr "Další nastavení"
181
 
182
- #: contact_form.php:1037
183
  msgid "Appearance"
184
  msgstr "Vzhled"
185
 
186
- #: contact_form.php:1038
187
  msgid "Custom code"
188
  msgstr ""
189
 
190
- #: contact_form.php:1039
191
  msgid "Go PRO"
192
  msgstr "Získat verzi Pro"
193
 
194
- #: contact_form.php:1045
195
- msgid ""
196
- "Please enable JavaScript to add language in the contact form, change the "
197
- "names of the contact form fields and error messages."
198
- msgstr ""
199
- "Prosím povolte JavaScript přidat jazyk v kontaktním formuláři, změnit názvy "
200
- "polí formuláře kontaktu a chybové zprávy."
201
-
202
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1740
203
- msgid "Form layout"
204
- msgstr "Rozložení formuláře"
205
-
206
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1752
207
- msgid "Submit position"
208
- msgstr "Potvrzovací tlačítko"
209
-
210
- #: contact_form.php:1057
211
- msgid "Notice:"
212
  msgstr "UPOZORNĚNÍ:"
213
 
214
- #: contact_form.php:1061
215
  msgid "NEW_FORM"
216
  msgstr "NEW_FORM"
217
 
218
- #: contact_form.php:1062
219
  msgid ""
220
  "If you want to create multiple contact forms, please install the Contact "
221
  "Form Multi plugin."
@@ -223,7 +219,7 @@ msgstr ""
223
  "Pokud chcete vytvořit více kontaktních formulářů, nainstalujte si prosím "
224
  "kontaktní formulář Multi plugin."
225
 
226
- #: contact_form.php:1071
227
  #, php-format
228
  msgid ""
229
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -232,7 +228,7 @@ msgstr ""
232
  "Pokud chcete na stránku přidat kontaktní formulář nebo příspěvek, použijte "
233
  "tlačítko %s"
234
 
235
- #: contact_form.php:1077
236
  #, php-format
237
  msgid ""
238
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -245,7 +241,7 @@ msgstr ""
245
  "tlačítko není zobrazeno, použijte krátký %s nebo %s kde * je zkratka pro "
246
  "jazyk formuláře kontaktu."
247
 
248
- #: contact_form.php:1086
249
  msgid ""
250
  "If you leave the fields empty, the messages will be sent to the email "
251
  "address specified during registration."
@@ -253,123 +249,132 @@ msgstr ""
253
  "Pokud necháte pole prázdné, zprávy bude zaslána na e-mailovou adresu zadanou "
254
  "během registrace."
255
 
256
- #: contact_form.php:1089
257
- msgid "The user's email address:"
 
258
  msgstr "E-mailová adresa uživatele:"
259
 
260
- #: contact_form.php:1093
261
  msgid "Select a username"
262
  msgstr "Vyberte uživatelské jméno"
263
 
264
- #: contact_form.php:1106
 
265
  msgid ""
266
- "Enter a username of the person who should get the messages from the contact "
267
  "form."
268
  msgstr ""
269
  "Zadejte uživatelské jméno osoby, která by měla získat zprávy z kontaktního "
270
  "formuláře."
271
 
272
- #: contact_form.php:1110
273
- msgid "Use this email address:"
 
274
  msgstr "Použíte tento email::"
275
 
276
- #: contact_form.php:1114
277
- msgid "Enter the email address you want the messages forwarded to."
 
278
  msgstr "Zadejte e-mailovou adresu chcete zprávy předávat."
279
 
280
- #: contact_form.php:1121 contact_form.php:1487 contact_form.php:1679
281
- #: contact_form.php:1767 contact_form.php:3119
282
  msgid "Close"
283
  msgstr "Zavřít"
284
 
285
- #: contact_form.php:1125
286
- msgid "Add department selectbox to the contact form:"
 
287
  msgstr "Přidáte oddělení selectbox kontaktní formulář:"
288
 
289
- #: contact_form.php:1133 contact_form.php:1496 contact_form.php:1698
290
- #: contact_form.php:1973
291
  msgid "If you upgrade to Pro version all your settings will be saved."
292
  msgstr "Pokud upgradujete na verzi Pro všechna nastavení uložit."
293
 
294
- #: contact_form.php:1140 contact_form.php:1407 contact_form.php:1501
295
- #: contact_form.php:1705 contact_form.php:1980
296
  msgid "Unlock premium options by upgrading to Pro version"
297
  msgstr "Odemknout možnosti prémiové aktualizací na verzi Pro"
298
 
299
- #: contact_form.php:1143 contact_form.php:1410 contact_form.php:1504
300
- #: contact_form.php:1708 contact_form.php:1983 contact_form.php:3329
301
  msgid "Learn More"
302
  msgstr "Více informací"
303
 
304
- #: contact_form.php:1151
305
  msgid "Save emails to the database"
306
  msgstr "Ukládání e-mailů do databáze"
307
 
308
- #: contact_form.php:1156
309
  msgid "Using"
310
  msgstr "Použití"
311
 
312
- #: contact_form.php:1159 contact_form.php:1163
313
- msgid "Using Contact Form to DB by BestWebSoft"
314
- msgstr "Pomocí kontaktního formuláře na DB podle BestWebSoft"
 
 
 
 
 
 
 
315
 
316
- #: contact_form.php:1159
 
317
  msgid "Activate"
318
  msgstr "Aktivovat"
319
 
320
- #: contact_form.php:1163
 
321
  msgid "Download"
322
  msgstr "Stáhnout"
323
 
324
- #: contact_form.php:1173
325
- msgid "What to use?"
326
- msgstr "Co použít?"
327
 
328
- #: contact_form.php:1178
329
  msgid "Wp-mail"
330
  msgstr "Wp-mail"
331
 
332
- #: contact_form.php:1180
333
  #, fuzzy
334
  msgid "You can use the Wordpress wp_mail function for mailing"
335
  msgstr "Můžete použít funkci wp_mail pro korespondenci"
336
 
337
- #: contact_form.php:1183
338
  msgid "Mail"
339
  msgstr "E-mail"
340
 
341
- #: contact_form.php:1185
342
  #, fuzzy
343
  msgid "You can use the PHP mail function for mailing"
344
  msgstr "Můžete použít funkci wp_mail pro korespondenci"
345
 
346
- #: contact_form.php:1190
347
  msgid "'FROM' field"
348
  msgstr "'Pole od'"
349
 
350
- #: contact_form.php:1192 contact_form.php:1251 contact_form.php:1839
351
- #: contact_form.php:2810 contact_form.php:2846
352
- msgid "Name"
353
- msgstr "Jméno"
354
-
355
- #: contact_form.php:1195
356
  msgid "User name"
357
  msgstr "Uživatelské jméno"
358
 
359
- #: contact_form.php:1197
360
  msgid ""
361
  "The name of the user who fills the form will be used in the field 'From'."
362
  msgstr "Jméno uživatele, který vyplňuje formulář bude použit v poli \"Od\"."
363
 
364
- #: contact_form.php:1202 contact_form.php:2821 contact_form.php:2853
365
  msgid "Email"
366
  msgstr "E-mail"
367
 
368
- #: contact_form.php:1205
369
  msgid "User email"
370
  msgstr "Používateľský email"
371
 
372
- #: contact_form.php:1207
373
  msgid ""
374
  "The email address of the user who fills the form will be used in the field "
375
  "'From'."
@@ -377,7 +382,7 @@ msgstr ""
377
  "E-mailovou adresu uživatele, který vyplňuje formulář bude použit v poli \"Od"
378
  "\"."
379
 
380
- #: contact_form.php:1210
381
  msgid ""
382
  "If this option is changed, email messages may be moved to the spam folder or "
383
  "email delivery failures may occur."
@@ -385,51 +390,51 @@ msgstr ""
385
  "Je-li tato možnost změněná, e-mailové zprávy mohou být přesunuty do složky "
386
  "Nevyžádaná pošta nebo může dojít k selhání doručení e-mailu."
387
 
388
- #: contact_form.php:1216
389
  msgid "Required symbol"
390
  msgstr "Symbol pro povinné položky"
391
 
392
- #: contact_form.php:1226
393
  msgid "Fields"
394
  msgstr "Pole"
395
 
396
- #: contact_form.php:1227 contact_form.php:1254 contact_form.php:1281
397
- #: contact_form.php:1301 contact_form.php:1340 contact_form.php:1425
398
  msgid "Used"
399
  msgstr "Použité"
400
 
401
- #: contact_form.php:1228 contact_form.php:1243 contact_form.php:1258
402
- #: contact_form.php:1285 contact_form.php:1305 contact_form.php:1318
403
- #: contact_form.php:1344 contact_form.php:1357 contact_form.php:1381
404
  msgid "Required"
405
  msgstr "Vyžadované"
406
 
407
- #: contact_form.php:1230 contact_form.php:1263 contact_form.php:1323
408
- #: contact_form.php:1362 contact_form.php:1386
409
  msgid "Visible"
410
  msgstr "Viditelný"
411
 
412
- #: contact_form.php:1231 contact_form.php:1267 contact_form.php:1327
413
- #: contact_form.php:1366 contact_form.php:1390
414
  msgid "Disabled for editing"
415
  msgstr "Zakázáno pro editaci"
416
 
417
- #: contact_form.php:1232 contact_form.php:1291 contact_form.php:1370
418
- #: contact_form.php:1394
419
  msgid "Field's default value"
420
  msgstr "Výchozí hodnota pole"
421
 
422
- #: contact_form.php:1239
423
  msgid "Department selectbox"
424
  msgstr "Poloha výběrového oddílu"
425
 
426
- #: contact_form.php:1271
427
  msgid "Use User's name as a default value if the user is logged in."
428
  msgstr ""
429
  "Uživatelské jméno používejte jako výchozí hodnotu, pokud je uživatel "
430
  "přihlášen."
431
 
432
- #: contact_form.php:1272 contact_form.php:1332
433
  msgid ""
434
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
435
  "in users."
@@ -437,136 +442,94 @@ msgstr ""
437
  "'Viditelné' a 'Skryté pro editaci' je možné použít pouze pro přihlášené "
438
  "uživatele."
439
 
440
- #: contact_form.php:1278
441
  msgid "Location selectbox"
442
  msgstr "Poloha výberového oddielu"
443
 
444
- #: contact_form.php:1298 contact_form.php:1844 contact_form.php:2816
445
- #: contact_form.php:2850
446
- msgid "Address"
447
- msgstr "Adresa"
448
-
449
- #: contact_form.php:1314
450
- msgid "Email Address"
451
- msgstr "Vaše emailová adresa"
452
-
453
- #: contact_form.php:1331
454
  msgid "Use User's email as a default value if the user is logged in."
455
  msgstr ""
456
  "Pomocí e-mailu uživatele jako výchozí hodnotu, pokud uživatel je přihlášen."
457
 
458
- #: contact_form.php:1337
459
- msgid "Phone number"
460
- msgstr "Telefonní číslo"
461
-
462
- #: contact_form.php:1353 contact_form.php:1859 contact_form.php:2831
463
- #: contact_form.php:2859
464
- msgid "Subject"
465
- msgstr "Předmět"
466
-
467
- #: contact_form.php:1377 contact_form.php:1863 contact_form.php:2834
468
- #: contact_form.php:2861
469
- msgid "Message"
470
- msgstr "Zpráva"
471
-
472
- #: contact_form.php:1418
473
  msgid "Attachment block"
474
  msgstr "Blok příloh"
475
 
476
- #: contact_form.php:1420
477
  msgid "Users can attach the following file formats"
478
  msgstr "Uživatelé mohou připojit následující formáty souborů"
479
 
480
- #: contact_form.php:1438
481
  msgid "Add to the form"
482
  msgstr "Přidejte do formuláře"
483
 
484
- #: contact_form.php:1443
485
  msgid "Tips below the Attachment"
486
  msgstr "Tipy pod přílohu"
487
 
488
- #: contact_form.php:1452
489
  msgid "'Send me a copy' block"
490
  msgstr "Zobrazit blok 'Zaslat kopii'"
491
 
492
- #: contact_form.php:1464
493
- #, fuzzy
494
- msgid "Activate Subscriber"
495
- msgstr "Aktivované pluginy"
496
-
497
- #: contact_form.php:1468
498
- msgid "Download Subscriber"
499
- msgstr ""
500
-
501
- #: contact_form.php:1477
502
- #, fuzzy
503
- msgid "Activate Captcha"
504
- msgstr "Aktivovat captcha"
505
-
506
- #: contact_form.php:1481
507
- #, fuzzy
508
- msgid "Download Captcha"
509
- msgstr "Stáhnout captcha"
510
-
511
- #: contact_form.php:1491
512
  msgid "Agreement checkbox"
513
  msgstr "Označení souhlasu"
514
 
515
- #: contact_form.php:1491
516
  msgid "Required checkbox for submitting the form"
517
  msgstr "Vyžaduje označení souhlasu při odeslání formuláře"
518
 
519
- #: contact_form.php:1492
520
  msgid "Optional checkbox"
521
  msgstr "Volitelné zaškrtávací políčko"
522
 
523
- #: contact_form.php:1492
524
  msgid "Optional checkbox, the results of which will be displayed in email"
525
  msgstr "Volitelné zaškrtávací políčko, jeho výsledek bude zobrazený v emailu"
526
 
527
- #: contact_form.php:1513
528
  msgid "Delete an attachment file from the server after the email is sent"
529
  msgstr "Odstranit soubor přílohy ze serveru, po odeslání e-mailu"
530
 
531
- #: contact_form.php:1519
532
  msgid "Email in HTML format sending"
533
  msgstr "Povolit HTML formátovaní"
534
 
535
- #: contact_form.php:1523
536
  msgid "Display additional info in the email"
537
  msgstr "Zobrazit další informace v e-mailu"
538
 
539
- #: contact_form.php:1529
540
  #, fuzzy
541
  msgid "Sent from (IP address)"
542
  msgstr "Odeslané z (ip adresa)"
543
 
544
- #: contact_form.php:1529
545
  msgid "Example: Sent from (IP address):\t127.0.0.1"
546
  msgstr "Příklad: Zaslané z (IP addresa):\t127.0.0.1"
547
 
548
- #: contact_form.php:1530 contact_form.php:2783 contact_form.php:2785
549
  msgid "Date/Time"
550
  msgstr "Datum / Čas"
551
 
552
- #: contact_form.php:1530
553
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
554
  msgstr "Příklad: Datum / čas: \tsrpen 19, 2013 8:50 pm"
555
 
556
- #: contact_form.php:1531 contact_form.php:2789 contact_form.php:2791
557
  msgid "Sent from (referer)"
558
  msgstr "Odesláno z"
559
 
560
- #: contact_form.php:1531
561
  msgid ""
562
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
563
  msgstr "Příklad: Zaslané (odkaz):\thttp://bestwebsoft.com/contacts/contact-us/"
564
 
565
- #: contact_form.php:1532 contact_form.php:2795 contact_form.php:2797
566
  msgid "Using (user agent)"
567
  msgstr "Použití (uživatelský agent)"
568
 
569
- #: contact_form.php:1532
570
  msgid ""
571
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
572
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -574,135 +537,135 @@ msgstr ""
574
  "Příklad: Použití (uživatel agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
575
  "AppleWebKit/537.36 (KHTML, jako Gecko) Chrome/28.0.1500.95 Safari/537.36"
576
 
577
- #: contact_form.php:1537
578
  msgid "Language settings for the field names in the form"
579
  msgstr "Nastavení jazyka pro názvy polí ve formuláři"
580
 
581
- #: contact_form.php:1546
582
  msgid "Add a language"
583
  msgstr "Přidání jazyka"
584
 
585
- #: contact_form.php:1550
586
  msgid "Change the names of the contact form fields and error messages"
587
  msgstr "Změnit názvy polí formuláře kontaktu a chybových zpráv"
588
 
589
- #: contact_form.php:1555 contact_form.php:1642 contact_form.php:1887
590
- #: contact_form.php:1892 contact_form.php:1902 contact_form.php:1907
591
- #: contact_form.php:1912 contact_form.php:1917 contact_form.php:1927
592
- #: contact_form.php:1932 contact_form.php:1941 contact_form.php:1955
593
- #: contact_form.php:1960 contact_form.php:1965
594
  msgid "Default"
595
  msgstr "Základní"
596
 
597
- #: contact_form.php:1563 contact_form.php:1597
598
  msgid "click to expand/hide the list"
599
  msgstr "klepněte na rozbalit nebo skrýt seznam"
600
 
601
- #: contact_form.php:1572 contact_form.php:1606
602
  msgid "Tips below the Attachment block"
603
  msgstr "Zobrazení tipů pod blokem příloh"
604
 
605
- #: contact_form.php:1575 contact_form.php:1609
606
  msgid "Error message for the Name field"
607
  msgstr "Chybová zpráva pro pole Jméno"
608
 
609
- #: contact_form.php:1576 contact_form.php:1610
610
  msgid "Error message for the Address field"
611
  msgstr "Chybová zpráva pro pole Adresa"
612
 
613
- #: contact_form.php:1577 contact_form.php:1611
614
  msgid "Error message for the Email field"
615
  msgstr "Chybová zpráva pro pole E-mail"
616
 
617
- #: contact_form.php:1578 contact_form.php:1612
618
  msgid "Error message for the Phone field"
619
  msgstr "Chybová zpráva pro pole Telefon"
620
 
621
- #: contact_form.php:1579 contact_form.php:1613
622
  msgid "Error message for the Subject field"
623
  msgstr "Chybová zpráva pro pole Předmět"
624
 
625
- #: contact_form.php:1580 contact_form.php:1614
626
  msgid "Error message for the Message field"
627
  msgstr "Chybová zpráva pro pole Zpráva"
628
 
629
- #: contact_form.php:1581 contact_form.php:1615
630
  msgid "Error message about the file type for the Attachment field"
631
  msgstr "Chybová zpráva o typu souboru pro pole Příloha"
632
 
633
- #: contact_form.php:1582 contact_form.php:1616
634
  msgid ""
635
  "Error message while uploading a file for the Attachment field to the server"
636
  msgstr "Chybová správa při neúspěšném nahrávání souboru na server"
637
 
638
- #: contact_form.php:1583 contact_form.php:1617
639
  msgid "Error message while moving the file for the Attachment field"
640
  msgstr "Chybová správa při neúspěšném přesunu souboru do pole Příloha"
641
 
642
- #: contact_form.php:1584 contact_form.php:1618
643
  msgid "Error message when file size limit for the Attachment field is exceeded"
644
  msgstr ""
645
  "Chybová zpráva při překročení omezení velikosti souboru pro pole Příloha"
646
 
647
- #: contact_form.php:1585 contact_form.php:1619
648
  msgid "Error message for the Captcha field"
649
  msgstr "Chybová zpráva pro pole Captcha"
650
 
651
- #: contact_form.php:1586 contact_form.php:1620
652
  msgid "Error message for the whole form"
653
  msgstr "Chybová zpráva pro celý formulář"
654
 
655
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
656
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
657
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
658
- #: contact_form.php:3179
659
  msgid "Use shortcode"
660
  msgstr "Použijte shortcode"
661
 
662
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
663
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
664
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
665
- #: contact_form.php:3179
666
  msgid "for this language"
667
  msgstr "pro tento jazyk"
668
 
669
- #: contact_form.php:1633
670
  msgid "Use the changed names of the contact form fields in the email"
671
  msgstr "Použít změněné názvy polí kontaktní formuláře v e-mailu"
672
 
673
- #: contact_form.php:1639
674
  msgid "Action after email is sent"
675
  msgstr "Akce po odeslání e-mailu"
676
 
677
- #: contact_form.php:1641
678
  msgid "Display text"
679
  msgstr "Zobrazený text"
680
 
681
- #: contact_form.php:1650 contact_form.php:1660
682
  msgid "Text"
683
  msgstr "Text"
684
 
685
- #: contact_form.php:1671
686
  msgid "Redirect to the page"
687
  msgstr "Přesměrování na stránku"
688
 
689
- #: contact_form.php:1672
690
  msgid "Url"
691
  msgstr "Url"
692
 
693
- #: contact_form.php:1683
694
  msgid "Add field 'Reply-To' to the email header"
695
  msgstr "Přidat pole 'Odpovědět komu' do záhlaví e-mailu"
696
 
697
- #: contact_form.php:1685
698
  msgid "Field 'Reply-To' will be initialized by user email"
699
  msgstr "Pole 'Odpovědět komu' bude inicializováno mailem uživatele"
700
 
701
- #: contact_form.php:1689
702
  msgid "Auto Response"
703
  msgstr "Automatická odpověď"
704
 
705
- #: contact_form.php:1693
706
  #, php-format
707
  msgid ""
708
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -712,205 +675,206 @@ msgstr ""
712
  "Můžete použít %%NAME%% zobrazení dat z pole e-mail a %%MESAGE%% zobrazení "
713
  "dat z pole zpráv stejně jako %%SITENAME%% zobrazit název blogu."
714
 
715
- #: contact_form.php:1718 contact_form.php:2213
716
  msgid "Save Changes"
717
  msgstr "Uložit změny"
718
 
719
- #: contact_form.php:1731
720
  #, php-format
721
  msgid ""
722
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
723
  msgstr ""
724
  "Prosím povolte JavaScript změnit '%s', '%s' možnosti a pro třídění pole."
725
 
726
- #: contact_form.php:1744
 
 
 
 
 
 
 
 
727
  msgid "One column"
728
  msgstr "Jeden sloupec"
729
 
730
- #: contact_form.php:1747
731
  msgid "Two columns"
732
  msgstr "Dva sloupce"
733
 
734
- #: contact_form.php:1756 contact_form.php:1775 contact_form.php:1793
735
- #: contact_form.php:1808
736
  msgid "Left"
737
  msgstr "Vlevo"
738
 
739
- #: contact_form.php:1759 contact_form.php:1781 contact_form.php:1796
740
- #: contact_form.php:1814
741
  msgid "Right"
742
  msgstr "Vpravo"
743
 
744
- #: contact_form.php:1771
745
  msgid "Form align"
746
  msgstr ""
747
 
748
- #: contact_form.php:1778 contact_form.php:1811
749
  msgid "Center"
750
  msgstr ""
751
 
752
- #: contact_form.php:1786
753
  #, fuzzy
754
  msgid "Labels position"
755
  msgstr "Potvrzovací tlačítko"
756
 
757
- #: contact_form.php:1790
758
  msgid "Top"
759
  msgstr ""
760
 
761
- #: contact_form.php:1799
762
  msgid "Bottom"
763
  msgstr ""
764
 
765
- #: contact_form.php:1804
766
  msgid "Labels align"
767
  msgstr ""
768
 
769
- #: contact_form.php:1819
770
  msgid "Errors output"
771
  msgstr "Chybový výstup"
772
 
773
- #: contact_form.php:1822
774
  msgid "Display error messages"
775
  msgstr "Zobrazit chybové zprávy"
776
 
777
- #: contact_form.php:1823
778
  msgid "Color of the input field errors."
779
  msgstr "Barva chyby vstupního pole."
780
 
781
- #: contact_form.php:1824
782
  msgid "Display error messages & color of the input field errors"
783
  msgstr "Zobrazí chybové zprávy & barvu chybujícího vstupního pole"
784
 
785
- #: contact_form.php:1829
786
  msgid "Add placeholder to the input blocks"
787
  msgstr "Přidání zástupného symbolu do vstupních bloků"
788
 
789
- #: contact_form.php:1835
790
  msgid "Add tooltips"
791
  msgstr "Přidat popisky"
792
 
793
- #: contact_form.php:1849
794
  msgid "Email address"
795
  msgstr "E-mailová adresa"
796
 
797
- #: contact_form.php:1854
798
  msgid "Phone Number"
799
  msgstr "Tel. číslo"
800
 
801
- #: contact_form.php:1868
802
- msgid "Attachment"
803
- msgstr "Příloha:"
804
-
805
- #: contact_form.php:1880
806
  msgid "Style options"
807
  msgstr "Nastavení stylů"
808
 
809
- #: contact_form.php:1884
810
  msgid "Text color"
811
  msgstr "Barva textu"
812
 
813
- #: contact_form.php:1889
814
  msgid "Label text color"
815
  msgstr "Označení barvy textu"
816
 
817
- #: contact_form.php:1894
818
  msgid "Placeholder color"
819
  msgstr "Zástupný symbol barva"
820
 
821
- #: contact_form.php:1899
822
  msgid "Errors color"
823
  msgstr "Barva chyby"
824
 
825
- #: contact_form.php:1904
826
  msgid "Error text color"
827
  msgstr "Barva textu chyby"
828
 
829
- #: contact_form.php:1909
830
  msgid "Background color of the input field errors"
831
  msgstr "Barva pozadí chybujícího vstupního pole"
832
 
833
- #: contact_form.php:1914
834
  msgid "Border color of the input field errors"
835
  msgstr "Barva ohraničení chybujícího vstupního pole"
836
 
837
- #: contact_form.php:1919
838
  msgid "Placeholder color of the input field errors"
839
  msgstr "Barva zástupného symbolu v chybujícím poli"
840
 
841
- #: contact_form.php:1924
842
  msgid "Input fields"
843
  msgstr "Vstupní pole"
844
 
845
- #: contact_form.php:1929
846
  msgid "Input fields background color"
847
  msgstr "Barva pozadí vstupního pole"
848
 
849
- #: contact_form.php:1934
850
  msgid "Text fields color"
851
  msgstr "Barva textových polí"
852
 
853
- #: contact_form.php:1938
854
  msgid "Border width in px, numbers only"
855
  msgstr "Šířka okraje v px, pouze čísla"
856
 
857
- #: contact_form.php:1943 contact_form.php:1967
858
  msgid "Border color"
859
  msgstr "Barva ohraničení"
860
 
861
- #: contact_form.php:1948
862
  msgid "Submit button"
863
  msgstr "Odesílací tlačítko"
864
 
865
- #: contact_form.php:1952
866
  msgid "Width in px, numbers only"
867
  msgstr "Šířka v px, pouze čísla"
868
 
869
- #: contact_form.php:1957
870
  msgid "Button color"
871
  msgstr "Barva tlačítka"
872
 
873
- #: contact_form.php:1962
874
  msgid "Button text color"
875
  msgstr "Barva textu tlačítka"
876
 
877
- #: contact_form.php:1994
878
  msgid "Contact Form | Preview"
879
  msgstr "Kontaktní formulář | Náhled"
880
 
881
- #: contact_form.php:1995
882
  msgid "Drag the necessary field to sort fields."
883
  msgstr "Přetažením změníte pořadí polí."
884
 
885
- #: contact_form.php:2200
 
886
  msgid ""
887
  "If you would like to add the Contact Form to your website, just copy and "
888
- "paste this shortcode to your post or page or widget:"
889
  msgstr ""
890
  "Pokud byste chtěli přidat kontaktní formulář na webu, stačí zkopírovat a "
891
  "vložit tento shortcode nebo stránky nebo widget:"
892
 
893
- #: contact_form.php:2297
894
  msgid "Sorry, email message could not be delivered."
895
  msgstr "Nelze doručit e-mailovou zprávu."
896
 
897
- #: contact_form.php:2777 contact_form.php:2779
898
  msgid "Sent from (ip address)"
899
  msgstr "Odeslané z (ip adresa)"
900
 
901
- #: contact_form.php:2804
902
  msgid "Contact from"
903
  msgstr "Kontaktní formulář"
904
 
905
- #: contact_form.php:2826 contact_form.php:2856
906
- msgid "Phone"
907
- msgstr "Telefon"
908
-
909
- #: contact_form.php:2837 contact_form.php:2863
910
  msgid "Site"
911
  msgstr "Stránka"
912
 
913
- #: contact_form.php:2956
914
  msgid ""
915
  "If you can see this MIME, it means that the MIME type is not supported by "
916
  "your email client!"
@@ -918,23 +882,23 @@ msgstr ""
918
  "Pokud vidíte tento MIME, znamená to, že váš e-mailový klient nepodporuje typ "
919
  "MIME!"
920
 
921
- #: contact_form.php:3039
922
  msgid "FAQ"
923
  msgstr "Často kladené otázky"
924
 
925
- #: contact_form.php:3040
926
  msgid "Support"
927
  msgstr "Podpora"
928
 
929
- #: contact_form.php:3089
930
  msgid "Are you sure that you want to delete this language data?"
931
  msgstr "Jste si jisti, že chcete odstranit nastavení pro tento jazyk?"
932
 
933
- #: contact_form.php:3110
934
  msgid "Add multiple forms"
935
  msgstr "Přidat více formulářů"
936
 
937
- #: contact_form.php:3110
938
  msgid ""
939
  "Install Contact Form Multi plugin to create unlimited number of contact "
940
  "forms."
@@ -942,30 +906,79 @@ msgstr ""
942
  "Pokud chcete vytvořit více kontaktních formulářů, nainstalujte si prosím "
943
  "kontaktní formulář Multi plugin."
944
 
945
- #: contact_form.php:3115
946
  msgid "Learn more"
947
  msgstr "Více informací"
948
 
949
- #: contact_form.php:3320
950
  msgid "Close notice"
951
  msgstr ""
952
 
953
- #: contact_form.php:3325
954
  msgid "allows to store your messages to the database."
955
  msgstr "umožňuje ukládání zpráv do databáze."
956
 
957
- #: contact_form.php:3326
958
  msgid "Manage messages that have been sent from your website."
959
  msgstr "Správa zpráv, které byly odeslány z vašeho webu."
960
 
961
- #: contact_form.php:3384
962
  msgid "Contact form"
963
  msgstr "Kontaktní formulář"
964
 
965
- #: contact_form.php:3397 contact_form.php:3407
966
  msgid "Language"
967
  msgstr "Přidání jazyka"
968
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
969
  #~ msgid "To send mail you can use the php mail function"
970
  #~ msgstr "Chcete-li odesílat poštu lze použít php funkci mail"
971
 
@@ -1133,9 +1146,6 @@ msgstr "Přidání jazyka"
1133
  #~ msgid "Please, go to"
1134
  #~ msgstr "Prosím, choďte na"
1135
 
1136
- #~ msgid "the setting page"
1137
- #~ msgstr "stránku nastavení"
1138
-
1139
  #~ msgid "You will be redirected automatically in 5 seconds."
1140
  #~ msgstr "Za 5 sekúnd budete automaticky presmerovaní."
1141
 
6
  msgstr ""
7
  "Project-Id-Version: Contact Form\n"
8
  "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2016-07-12 17:21+0300\n"
10
+ "PO-Revision-Date: 2016-07-12 17:21+0300\n"
11
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
12
  "Language-Team: www.pamadessoft.cz <info@pamadessoft.cz>\n"
13
  "Language: cs_CZ\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
+ #: contact_form.php:37 contact_form.php:1118
25
  msgid "Contact Form Settings"
26
  msgstr "Nastavenie kontaktního formuláře"
27
 
29
  msgid "Contact Form"
30
  msgstr "Kontaktní formulář"
31
 
32
+ #: contact_form.php:167 contact_form.php:1294 contact_form.php:1353
33
+ #: contact_form.php:1746 contact_form.php:1784 contact_form.php:2033
34
+ #: contact_form.php:3113 contact_form.php:3159
35
+ msgid "Name"
36
+ msgstr "Jméno"
37
 
38
+ #: contact_form.php:168 contact_form.php:1400 contact_form.php:1747
39
+ #: contact_form.php:1785 contact_form.php:2038 contact_form.php:3120
40
+ #: contact_form.php:3165
41
+ msgid "Address"
42
+ msgstr "Adresa"
43
 
44
+ #: contact_form.php:169 contact_form.php:1416 contact_form.php:1748
45
+ #: contact_form.php:1786
46
+ msgid "Email Address"
47
+ msgstr "Vaše emailová adresa"
48
 
49
+ #: contact_form.php:170 contact_form.php:1439 contact_form.php:1749
50
+ #: contact_form.php:1787
51
+ msgid "Phone number"
52
+ msgstr "Telefonní číslo"
53
 
54
+ #: contact_form.php:171 contact_form.php:1455 contact_form.php:1750
55
+ #: contact_form.php:1788 contact_form.php:2053 contact_form.php:3131
56
+ #: contact_form.php:3174
57
+ msgid "Subject"
58
+ msgstr "Předmět"
59
 
60
+ #: contact_form.php:172 contact_form.php:1479 contact_form.php:1751
61
+ #: contact_form.php:1789 contact_form.php:2057 contact_form.php:3136
62
+ #: contact_form.php:3178
63
+ msgid "Message"
64
+ msgstr "Zpráva"
65
 
66
+ #: contact_form.php:173 contact_form.php:1752 contact_form.php:1790
67
+ #: contact_form.php:2062
68
+ msgid "Attachment"
69
  msgstr "Příloha:"
70
 
71
+ #: contact_form.php:174
72
  msgid ""
73
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
74
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
76
  "Podporované typy souborů: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
77
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
78
 
79
+ #: contact_form.php:175 contact_form.php:1754 contact_form.php:1792
80
  msgid "Send me a copy"
81
  msgstr "Pošlete mi kopii této zprávy"
82
 
83
+ #: contact_form.php:176 contact_form.php:1755 contact_form.php:1793
84
  msgid "Submit"
85
  msgstr "Odeslat"
86
 
87
+ #: contact_form.php:177
88
  msgid "Your name is required."
89
  msgstr "Zadejte prosím své jméno"
90
 
91
+ #: contact_form.php:178
92
  msgid "Address is required."
93
  msgstr "Vyžaduje se adresa."
94
 
95
+ #: contact_form.php:179
96
  msgid "A valid email address is required."
97
  msgstr "Je vyžadována platná e-mailová adresa."
98
 
99
+ #: contact_form.php:180
100
  msgid "Phone number is required."
101
  msgstr "Telefonní číslo je požadováno."
102
 
103
+ #: contact_form.php:181
104
  msgid "Subject is required."
105
  msgstr "Předmět je povinné pole."
106
 
107
+ #: contact_form.php:182
108
  msgid "Message text is required."
109
  msgstr "Text zprávy je vyžadován."
110
 
111
+ #: contact_form.php:183
112
  msgid "File format is not valid."
113
  msgstr "Formát souboru není platný."
114
 
115
+ #: contact_form.php:184
116
  msgid "File upload error."
117
  msgstr "Chyba odeslání souboru."
118
 
119
+ #: contact_form.php:185
120
  msgid "The file could not be uploaded."
121
  msgstr "Soubor nelze odeslat."
122
 
123
+ #: contact_form.php:186
124
  msgid "This file is too large."
125
  msgstr "Tento soubor je příliš velký."
126
 
127
+ #: contact_form.php:187
128
  msgid "Please fill out the CAPTCHA."
129
  msgstr "Prosím opište CAPTCHA text."
130
 
131
+ #: contact_form.php:188
132
  msgid "Please make corrections below and try again."
133
  msgstr "Prosím opravte chyby a zkuste to znovu."
134
 
135
+ #: contact_form.php:190
136
  msgid "Thank you for contacting us."
137
  msgstr "Děkujeme za zprávu, budeme Vás kontaktovat."
138
 
139
+ #: contact_form.php:824 contact_form.php:1076
140
  msgid "Settings saved."
141
  msgstr "Nastavení bylo uloženo."
142
 
143
+ #: contact_form.php:1021
144
  msgid ""
145
  "Email 'FROM' field option was changed, which may cause email messages being "
146
  "moved to the spam folder or email delivery failures."
148
  "E-mailu z pole byla změněna, což může způsobit, e-mailové zprávy přesouvány "
149
  "do spam složky nebo e-mailem dodání selhání."
150
 
151
+ #: contact_form.php:1031
152
  msgid ""
153
  "If the 'Redirect to page' option is selected then the URL field should be in "
154
  "the following format"
156
  "Pokud je vybrána možnost 'Přesměrovat na stránku' pak pole URL by měla být v "
157
  "následujícím formátu"
158
 
159
+ #: contact_form.php:1038
160
  msgid "Such user does not exist."
161
  msgstr "Takový uživatel neexistuje."
162
 
163
+ #: contact_form.php:1048
164
  msgid ""
165
  "Please enter a valid email address in the 'Use this email address' field."
166
  msgstr ""
167
  "Zadejte platnou e-mailovou adresu do pole \"Použít tuto e-mailovou adresu\"."
168
 
169
+ #: contact_form.php:1056
170
  msgid "Please enter a valid email address in the 'FROM' field."
171
  msgstr "Zadejte prosím platnou e-mailovou adresu do pole 'Od'."
172
 
173
+ #: contact_form.php:1078
174
  msgid "Settings are not saved."
175
  msgstr "Nastavení se neuložilo."
176
 
177
+ #: contact_form.php:1115
178
  msgid "All plugin settings were restored."
179
  msgstr "Výchozí nastavení byla obnovena."
180
 
181
+ #: contact_form.php:1120
182
  msgid "How to Use Step-by-step Instruction"
183
  msgstr "NÁVOD KROK ZA KROKEM"
184
 
185
+ #: contact_form.php:1123 contact_form.php:3351 contact_form.php:3365
186
  msgid "Settings"
187
  msgstr "Nastavení"
188
 
189
+ #: contact_form.php:1124
190
  msgid "Additional settings"
191
  msgstr "Další nastavení"
192
 
193
+ #: contact_form.php:1125
194
  msgid "Appearance"
195
  msgstr "Vzhled"
196
 
197
+ #: contact_form.php:1126
198
  msgid "Custom code"
199
  msgstr ""
200
 
201
+ #: contact_form.php:1127
202
  msgid "Go PRO"
203
  msgstr "Získat verzi Pro"
204
 
205
+ #: contact_form.php:1136
206
+ #, fuzzy
207
+ msgid "Notice"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  msgstr "UPOZORNĚNÍ:"
209
 
210
+ #: contact_form.php:1140
211
  msgid "NEW_FORM"
212
  msgstr "NEW_FORM"
213
 
214
+ #: contact_form.php:1141
215
  msgid ""
216
  "If you want to create multiple contact forms, please install the Contact "
217
  "Form Multi plugin."
219
  "Pokud chcete vytvořit více kontaktních formulářů, nainstalujte si prosím "
220
  "kontaktní formulář Multi plugin."
221
 
222
+ #: contact_form.php:1150
223
  #, php-format
224
  msgid ""
225
  "If you would like to add a Contact Form to your page or post, please use %s "
228
  "Pokud chcete na stránku přidat kontaktní formulář nebo příspěvek, použijte "
229
  "tlačítko %s"
230
 
231
+ #: contact_form.php:1156
232
  #, php-format
233
  msgid ""
234
  "You can add the Contact Form to your page or post by clicking on %s button "
241
  "tlačítko není zobrazeno, použijte krátký %s nebo %s kde * je zkratka pro "
242
  "jazyk formuláře kontaktu."
243
 
244
+ #: contact_form.php:1165
245
  msgid ""
246
  "If you leave the fields empty, the messages will be sent to the email "
247
  "address specified during registration."
249
  "Pokud necháte pole prázdné, zprávy bude zaslána na e-mailovou adresu zadanou "
250
  "během registrace."
251
 
252
+ #: contact_form.php:1168
253
+ #, fuzzy
254
+ msgid "The user's email address"
255
  msgstr "E-mailová adresa uživatele:"
256
 
257
+ #: contact_form.php:1172
258
  msgid "Select a username"
259
  msgstr "Vyberte uživatelské jméno"
260
 
261
+ #: contact_form.php:1185
262
+ #, fuzzy
263
  msgid ""
264
+ "Select a username of the person who should get the messages from the contact "
265
  "form."
266
  msgstr ""
267
  "Zadejte uživatelské jméno osoby, která by měla získat zprávy z kontaktního "
268
  "formuláře."
269
 
270
+ #: contact_form.php:1189
271
+ #, fuzzy
272
+ msgid "Use this email address"
273
  msgstr "Použíte tento email::"
274
 
275
+ #: contact_form.php:1193
276
+ #, fuzzy
277
+ msgid "Enter the email address for receiving messages"
278
  msgstr "Zadejte e-mailovou adresu chcete zprávy předávat."
279
 
280
+ #: contact_form.php:1200 contact_form.php:1663 contact_form.php:1873
281
+ #: contact_form.php:1961 contact_form.php:3446
282
  msgid "Close"
283
  msgstr "Zavřít"
284
 
285
+ #: contact_form.php:1204
286
+ #, fuzzy
287
+ msgid "Add department selectbox to the contact form"
288
  msgstr "Přidáte oddělení selectbox kontaktní formulář:"
289
 
290
+ #: contact_form.php:1212 contact_form.php:1672 contact_form.php:1892
291
+ #: contact_form.php:2167
292
  msgid "If you upgrade to Pro version all your settings will be saved."
293
  msgstr "Pokud upgradujete na verzi Pro všechna nastavení uložit."
294
 
295
+ #: contact_form.php:1219 contact_form.php:1509 contact_form.php:1677
296
+ #: contact_form.php:1899 contact_form.php:2174
297
  msgid "Unlock premium options by upgrading to Pro version"
298
  msgstr "Odemknout možnosti prémiové aktualizací na verzi Pro"
299
 
300
+ #: contact_form.php:1222 contact_form.php:1512 contact_form.php:1680
301
+ #: contact_form.php:1902 contact_form.php:2177 contact_form.php:3672
302
  msgid "Learn More"
303
  msgstr "Více informací"
304
 
305
+ #: contact_form.php:1230
306
  msgid "Save emails to the database"
307
  msgstr "Ukládání e-mailů do databáze"
308
 
309
+ #: contact_form.php:1241 contact_form.php:1255 contact_form.php:1262
310
  msgid "Using"
311
  msgstr "Použití"
312
 
313
+ #: contact_form.php:1247 contact_form.php:1572 contact_form.php:1605
314
+ #: contact_form.php:1640
315
+ msgid "Please activate the appropriate option on"
316
+ msgstr ""
317
+
318
+ #: contact_form.php:1250 contact_form.php:1575 contact_form.php:1608
319
+ #: contact_form.php:1643
320
+ #, fuzzy
321
+ msgid "settings page"
322
+ msgstr "stránku nastavení"
323
 
324
+ #: contact_form.php:1256 contact_form.php:1581 contact_form.php:1615
325
+ #: contact_form.php:1651
326
  msgid "Activate"
327
  msgstr "Aktivovat"
328
 
329
+ #: contact_form.php:1263 contact_form.php:1587 contact_form.php:1621
330
+ #: contact_form.php:1656
331
  msgid "Download"
332
  msgstr "Stáhnout"
333
 
334
+ #: contact_form.php:1275
335
+ msgid "Sending method"
336
+ msgstr ""
337
 
338
+ #: contact_form.php:1280
339
  msgid "Wp-mail"
340
  msgstr "Wp-mail"
341
 
342
+ #: contact_form.php:1282
343
  #, fuzzy
344
  msgid "You can use the Wordpress wp_mail function for mailing"
345
  msgstr "Můžete použít funkci wp_mail pro korespondenci"
346
 
347
+ #: contact_form.php:1285
348
  msgid "Mail"
349
  msgstr "E-mail"
350
 
351
+ #: contact_form.php:1287
352
  #, fuzzy
353
  msgid "You can use the PHP mail function for mailing"
354
  msgstr "Můžete použít funkci wp_mail pro korespondenci"
355
 
356
+ #: contact_form.php:1292
357
  msgid "'FROM' field"
358
  msgstr "'Pole od'"
359
 
360
+ #: contact_form.php:1297
 
 
 
 
 
361
  msgid "User name"
362
  msgstr "Uživatelské jméno"
363
 
364
+ #: contact_form.php:1299
365
  msgid ""
366
  "The name of the user who fills the form will be used in the field 'From'."
367
  msgstr "Jméno uživatele, který vyplňuje formulář bude použit v poli \"Od\"."
368
 
369
+ #: contact_form.php:1304 contact_form.php:3126 contact_form.php:3170
370
  msgid "Email"
371
  msgstr "E-mail"
372
 
373
+ #: contact_form.php:1307
374
  msgid "User email"
375
  msgstr "Používateľský email"
376
 
377
+ #: contact_form.php:1309
378
  msgid ""
379
  "The email address of the user who fills the form will be used in the field "
380
  "'From'."
382
  "E-mailovou adresu uživatele, který vyplňuje formulář bude použit v poli \"Od"
383
  "\"."
384
 
385
+ #: contact_form.php:1312
386
  msgid ""
387
  "If this option is changed, email messages may be moved to the spam folder or "
388
  "email delivery failures may occur."
390
  "Je-li tato možnost změněná, e-mailové zprávy mohou být přesunuty do složky "
391
  "Nevyžádaná pošta nebo může dojít k selhání doručení e-mailu."
392
 
393
+ #: contact_form.php:1318
394
  msgid "Required symbol"
395
  msgstr "Symbol pro povinné položky"
396
 
397
+ #: contact_form.php:1328
398
  msgid "Fields"
399
  msgstr "Pole"
400
 
401
+ #: contact_form.php:1329 contact_form.php:1356 contact_form.php:1383
402
+ #: contact_form.php:1403 contact_form.php:1442 contact_form.php:1527
403
  msgid "Used"
404
  msgstr "Použité"
405
 
406
+ #: contact_form.php:1330 contact_form.php:1345 contact_form.php:1360
407
+ #: contact_form.php:1387 contact_form.php:1407 contact_form.php:1420
408
+ #: contact_form.php:1446 contact_form.php:1459 contact_form.php:1483
409
  msgid "Required"
410
  msgstr "Vyžadované"
411
 
412
+ #: contact_form.php:1332 contact_form.php:1365 contact_form.php:1425
413
+ #: contact_form.php:1464 contact_form.php:1488
414
  msgid "Visible"
415
  msgstr "Viditelný"
416
 
417
+ #: contact_form.php:1333 contact_form.php:1369 contact_form.php:1429
418
+ #: contact_form.php:1468 contact_form.php:1492
419
  msgid "Disabled for editing"
420
  msgstr "Zakázáno pro editaci"
421
 
422
+ #: contact_form.php:1334 contact_form.php:1393 contact_form.php:1472
423
+ #: contact_form.php:1496
424
  msgid "Field's default value"
425
  msgstr "Výchozí hodnota pole"
426
 
427
+ #: contact_form.php:1341
428
  msgid "Department selectbox"
429
  msgstr "Poloha výběrového oddílu"
430
 
431
+ #: contact_form.php:1373
432
  msgid "Use User's name as a default value if the user is logged in."
433
  msgstr ""
434
  "Uživatelské jméno používejte jako výchozí hodnotu, pokud je uživatel "
435
  "přihlášen."
436
 
437
+ #: contact_form.php:1374 contact_form.php:1434
438
  msgid ""
439
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
440
  "in users."
442
  "'Viditelné' a 'Skryté pro editaci' je možné použít pouze pro přihlášené "
443
  "uživatele."
444
 
445
+ #: contact_form.php:1380
446
  msgid "Location selectbox"
447
  msgstr "Poloha výberového oddielu"
448
 
449
+ #: contact_form.php:1433
 
 
 
 
 
 
 
 
 
450
  msgid "Use User's email as a default value if the user is logged in."
451
  msgstr ""
452
  "Pomocí e-mailu uživatele jako výchozí hodnotu, pokud uživatel je přihlášen."
453
 
454
+ #: contact_form.php:1520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
455
  msgid "Attachment block"
456
  msgstr "Blok příloh"
457
 
458
+ #: contact_form.php:1522
459
  msgid "Users can attach the following file formats"
460
  msgstr "Uživatelé mohou připojit následující formáty souborů"
461
 
462
+ #: contact_form.php:1540
463
  msgid "Add to the form"
464
  msgstr "Přidejte do formuláře"
465
 
466
+ #: contact_form.php:1545
467
  msgid "Tips below the Attachment"
468
  msgstr "Tipy pod přílohu"
469
 
470
+ #: contact_form.php:1554
471
  msgid "'Send me a copy' block"
472
  msgstr "Zobrazit blok 'Zaslat kopii'"
473
 
474
+ #: contact_form.php:1667
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
475
  msgid "Agreement checkbox"
476
  msgstr "Označení souhlasu"
477
 
478
+ #: contact_form.php:1667
479
  msgid "Required checkbox for submitting the form"
480
  msgstr "Vyžaduje označení souhlasu při odeslání formuláře"
481
 
482
+ #: contact_form.php:1668
483
  msgid "Optional checkbox"
484
  msgstr "Volitelné zaškrtávací políčko"
485
 
486
+ #: contact_form.php:1668
487
  msgid "Optional checkbox, the results of which will be displayed in email"
488
  msgstr "Volitelné zaškrtávací políčko, jeho výsledek bude zobrazený v emailu"
489
 
490
+ #: contact_form.php:1689
491
  msgid "Delete an attachment file from the server after the email is sent"
492
  msgstr "Odstranit soubor přílohy ze serveru, po odeslání e-mailu"
493
 
494
+ #: contact_form.php:1695
495
  msgid "Email in HTML format sending"
496
  msgstr "Povolit HTML formátovaní"
497
 
498
+ #: contact_form.php:1699
499
  msgid "Display additional info in the email"
500
  msgstr "Zobrazit další informace v e-mailu"
501
 
502
+ #: contact_form.php:1705
503
  #, fuzzy
504
  msgid "Sent from (IP address)"
505
  msgstr "Odeslané z (ip adresa)"
506
 
507
+ #: contact_form.php:1705
508
  msgid "Example: Sent from (IP address):\t127.0.0.1"
509
  msgstr "Příklad: Zaslané z (IP addresa):\t127.0.0.1"
510
 
511
+ #: contact_form.php:1706 contact_form.php:3075 contact_form.php:3077
512
  msgid "Date/Time"
513
  msgstr "Datum / Čas"
514
 
515
+ #: contact_form.php:1706
516
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
517
  msgstr "Příklad: Datum / čas: \tsrpen 19, 2013 8:50 pm"
518
 
519
+ #: contact_form.php:1707 contact_form.php:3081 contact_form.php:3083
520
  msgid "Sent from (referer)"
521
  msgstr "Odesláno z"
522
 
523
+ #: contact_form.php:1707
524
  msgid ""
525
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
526
  msgstr "Příklad: Zaslané (odkaz):\thttp://bestwebsoft.com/contacts/contact-us/"
527
 
528
+ #: contact_form.php:1708 contact_form.php:3087 contact_form.php:3089
529
  msgid "Using (user agent)"
530
  msgstr "Použití (uživatelský agent)"
531
 
532
+ #: contact_form.php:1708
533
  msgid ""
534
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
535
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
537
  "Příklad: Použití (uživatel agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
538
  "AppleWebKit/537.36 (KHTML, jako Gecko) Chrome/28.0.1500.95 Safari/537.36"
539
 
540
+ #: contact_form.php:1713
541
  msgid "Language settings for the field names in the form"
542
  msgstr "Nastavení jazyka pro názvy polí ve formuláři"
543
 
544
+ #: contact_form.php:1722
545
  msgid "Add a language"
546
  msgstr "Přidání jazyka"
547
 
548
+ #: contact_form.php:1726
549
  msgid "Change the names of the contact form fields and error messages"
550
  msgstr "Změnit názvy polí formuláře kontaktu a chybových zpráv"
551
 
552
+ #: contact_form.php:1731 contact_form.php:1827 contact_form.php:2081
553
+ #: contact_form.php:2086 contact_form.php:2096 contact_form.php:2101
554
+ #: contact_form.php:2106 contact_form.php:2111 contact_form.php:2121
555
+ #: contact_form.php:2126 contact_form.php:2135 contact_form.php:2149
556
+ #: contact_form.php:2154 contact_form.php:2159
557
  msgid "Default"
558
  msgstr "Základní"
559
 
560
+ #: contact_form.php:1744 contact_form.php:1782
561
  msgid "click to expand/hide the list"
562
  msgstr "klepněte na rozbalit nebo skrýt seznam"
563
 
564
+ #: contact_form.php:1753 contact_form.php:1791
565
  msgid "Tips below the Attachment block"
566
  msgstr "Zobrazení tipů pod blokem příloh"
567
 
568
+ #: contact_form.php:1756 contact_form.php:1794
569
  msgid "Error message for the Name field"
570
  msgstr "Chybová zpráva pro pole Jméno"
571
 
572
+ #: contact_form.php:1757 contact_form.php:1795
573
  msgid "Error message for the Address field"
574
  msgstr "Chybová zpráva pro pole Adresa"
575
 
576
+ #: contact_form.php:1758 contact_form.php:1796
577
  msgid "Error message for the Email field"
578
  msgstr "Chybová zpráva pro pole E-mail"
579
 
580
+ #: contact_form.php:1759 contact_form.php:1797
581
  msgid "Error message for the Phone field"
582
  msgstr "Chybová zpráva pro pole Telefon"
583
 
584
+ #: contact_form.php:1760 contact_form.php:1798
585
  msgid "Error message for the Subject field"
586
  msgstr "Chybová zpráva pro pole Předmět"
587
 
588
+ #: contact_form.php:1761 contact_form.php:1799
589
  msgid "Error message for the Message field"
590
  msgstr "Chybová zpráva pro pole Zpráva"
591
 
592
+ #: contact_form.php:1762 contact_form.php:1800
593
  msgid "Error message about the file type for the Attachment field"
594
  msgstr "Chybová zpráva o typu souboru pro pole Příloha"
595
 
596
+ #: contact_form.php:1763 contact_form.php:1801
597
  msgid ""
598
  "Error message while uploading a file for the Attachment field to the server"
599
  msgstr "Chybová správa při neúspěšném nahrávání souboru na server"
600
 
601
+ #: contact_form.php:1764 contact_form.php:1802
602
  msgid "Error message while moving the file for the Attachment field"
603
  msgstr "Chybová správa při neúspěšném přesunu souboru do pole Příloha"
604
 
605
+ #: contact_form.php:1765 contact_form.php:1803
606
  msgid "Error message when file size limit for the Attachment field is exceeded"
607
  msgstr ""
608
  "Chybová zpráva při překročení omezení velikosti souboru pro pole Příloha"
609
 
610
+ #: contact_form.php:1766 contact_form.php:1804
611
  msgid "Error message for the Captcha field"
612
  msgstr "Chybová zpráva pro pole Captcha"
613
 
614
+ #: contact_form.php:1767 contact_form.php:1805
615
  msgid "Error message for the whole form"
616
  msgstr "Chybová zpráva pro celý formulář"
617
 
618
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
619
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
620
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
621
+ #: contact_form.php:3516
622
  msgid "Use shortcode"
623
  msgstr "Použijte shortcode"
624
 
625
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
626
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
627
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
628
+ #: contact_form.php:3516
629
  msgid "for this language"
630
  msgstr "pro tento jazyk"
631
 
632
+ #: contact_form.php:1818
633
  msgid "Use the changed names of the contact form fields in the email"
634
  msgstr "Použít změněné názvy polí kontaktní formuláře v e-mailu"
635
 
636
+ #: contact_form.php:1824
637
  msgid "Action after email is sent"
638
  msgstr "Akce po odeslání e-mailu"
639
 
640
+ #: contact_form.php:1826
641
  msgid "Display text"
642
  msgstr "Zobrazený text"
643
 
644
+ #: contact_form.php:1840 contact_form.php:1854
645
  msgid "Text"
646
  msgstr "Text"
647
 
648
+ #: contact_form.php:1865
649
  msgid "Redirect to the page"
650
  msgstr "Přesměrování na stránku"
651
 
652
+ #: contact_form.php:1866
653
  msgid "Url"
654
  msgstr "Url"
655
 
656
+ #: contact_form.php:1877
657
  msgid "Add field 'Reply-To' to the email header"
658
  msgstr "Přidat pole 'Odpovědět komu' do záhlaví e-mailu"
659
 
660
+ #: contact_form.php:1879
661
  msgid "Field 'Reply-To' will be initialized by user email"
662
  msgstr "Pole 'Odpovědět komu' bude inicializováno mailem uživatele"
663
 
664
+ #: contact_form.php:1883
665
  msgid "Auto Response"
666
  msgstr "Automatická odpověď"
667
 
668
+ #: contact_form.php:1887
669
  #, php-format
670
  msgid ""
671
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
675
  "Můžete použít %%NAME%% zobrazení dat z pole e-mail a %%MESAGE%% zobrazení "
676
  "dat z pole zpráv stejně jako %%SITENAME%% zobrazit název blogu."
677
 
678
+ #: contact_form.php:1912 contact_form.php:2398
679
  msgid "Save Changes"
680
  msgstr "Uložit změny"
681
 
682
+ #: contact_form.php:1925
683
  #, php-format
684
  msgid ""
685
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
686
  msgstr ""
687
  "Prosím povolte JavaScript změnit '%s', '%s' možnosti a pro třídění pole."
688
 
689
+ #: contact_form.php:1925 contact_form.php:1934
690
+ msgid "Form layout"
691
+ msgstr "Rozložení formuláře"
692
+
693
+ #: contact_form.php:1925 contact_form.php:1946
694
+ msgid "Submit position"
695
+ msgstr "Potvrzovací tlačítko"
696
+
697
+ #: contact_form.php:1938
698
  msgid "One column"
699
  msgstr "Jeden sloupec"
700
 
701
+ #: contact_form.php:1941
702
  msgid "Two columns"
703
  msgstr "Dva sloupce"
704
 
705
+ #: contact_form.php:1950 contact_form.php:1969 contact_form.php:1987
706
+ #: contact_form.php:2002
707
  msgid "Left"
708
  msgstr "Vlevo"
709
 
710
+ #: contact_form.php:1953 contact_form.php:1975 contact_form.php:1990
711
+ #: contact_form.php:2008
712
  msgid "Right"
713
  msgstr "Vpravo"
714
 
715
+ #: contact_form.php:1965
716
  msgid "Form align"
717
  msgstr ""
718
 
719
+ #: contact_form.php:1972 contact_form.php:2005
720
  msgid "Center"
721
  msgstr ""
722
 
723
+ #: contact_form.php:1980
724
  #, fuzzy
725
  msgid "Labels position"
726
  msgstr "Potvrzovací tlačítko"
727
 
728
+ #: contact_form.php:1984
729
  msgid "Top"
730
  msgstr ""
731
 
732
+ #: contact_form.php:1993
733
  msgid "Bottom"
734
  msgstr ""
735
 
736
+ #: contact_form.php:1998
737
  msgid "Labels align"
738
  msgstr ""
739
 
740
+ #: contact_form.php:2013
741
  msgid "Errors output"
742
  msgstr "Chybový výstup"
743
 
744
+ #: contact_form.php:2016
745
  msgid "Display error messages"
746
  msgstr "Zobrazit chybové zprávy"
747
 
748
+ #: contact_form.php:2017
749
  msgid "Color of the input field errors."
750
  msgstr "Barva chyby vstupního pole."
751
 
752
+ #: contact_form.php:2018
753
  msgid "Display error messages & color of the input field errors"
754
  msgstr "Zobrazí chybové zprávy & barvu chybujícího vstupního pole"
755
 
756
+ #: contact_form.php:2023
757
  msgid "Add placeholder to the input blocks"
758
  msgstr "Přidání zástupného symbolu do vstupních bloků"
759
 
760
+ #: contact_form.php:2029
761
  msgid "Add tooltips"
762
  msgstr "Přidat popisky"
763
 
764
+ #: contact_form.php:2043
765
  msgid "Email address"
766
  msgstr "E-mailová adresa"
767
 
768
+ #: contact_form.php:2048 contact_form.php:3142 contact_form.php:3183
769
  msgid "Phone Number"
770
  msgstr "Tel. číslo"
771
 
772
+ #: contact_form.php:2074
 
 
 
 
773
  msgid "Style options"
774
  msgstr "Nastavení stylů"
775
 
776
+ #: contact_form.php:2078
777
  msgid "Text color"
778
  msgstr "Barva textu"
779
 
780
+ #: contact_form.php:2083
781
  msgid "Label text color"
782
  msgstr "Označení barvy textu"
783
 
784
+ #: contact_form.php:2088
785
  msgid "Placeholder color"
786
  msgstr "Zástupný symbol barva"
787
 
788
+ #: contact_form.php:2093
789
  msgid "Errors color"
790
  msgstr "Barva chyby"
791
 
792
+ #: contact_form.php:2098
793
  msgid "Error text color"
794
  msgstr "Barva textu chyby"
795
 
796
+ #: contact_form.php:2103
797
  msgid "Background color of the input field errors"
798
  msgstr "Barva pozadí chybujícího vstupního pole"
799
 
800
+ #: contact_form.php:2108
801
  msgid "Border color of the input field errors"
802
  msgstr "Barva ohraničení chybujícího vstupního pole"
803
 
804
+ #: contact_form.php:2113
805
  msgid "Placeholder color of the input field errors"
806
  msgstr "Barva zástupného symbolu v chybujícím poli"
807
 
808
+ #: contact_form.php:2118
809
  msgid "Input fields"
810
  msgstr "Vstupní pole"
811
 
812
+ #: contact_form.php:2123
813
  msgid "Input fields background color"
814
  msgstr "Barva pozadí vstupního pole"
815
 
816
+ #: contact_form.php:2128
817
  msgid "Text fields color"
818
  msgstr "Barva textových polí"
819
 
820
+ #: contact_form.php:2132
821
  msgid "Border width in px, numbers only"
822
  msgstr "Šířka okraje v px, pouze čísla"
823
 
824
+ #: contact_form.php:2137 contact_form.php:2161
825
  msgid "Border color"
826
  msgstr "Barva ohraničení"
827
 
828
+ #: contact_form.php:2142
829
  msgid "Submit button"
830
  msgstr "Odesílací tlačítko"
831
 
832
+ #: contact_form.php:2146
833
  msgid "Width in px, numbers only"
834
  msgstr "Šířka v px, pouze čísla"
835
 
836
+ #: contact_form.php:2151
837
  msgid "Button color"
838
  msgstr "Barva tlačítka"
839
 
840
+ #: contact_form.php:2156
841
  msgid "Button text color"
842
  msgstr "Barva textu tlačítka"
843
 
844
+ #: contact_form.php:2188
845
  msgid "Contact Form | Preview"
846
  msgstr "Kontaktní formulář | Náhled"
847
 
848
+ #: contact_form.php:2189
849
  msgid "Drag the necessary field to sort fields."
850
  msgstr "Přetažením změníte pořadí polí."
851
 
852
+ #: contact_form.php:2385
853
+ #, fuzzy
854
  msgid ""
855
  "If you would like to add the Contact Form to your website, just copy and "
856
+ "paste this shortcode to your post or page or widget"
857
  msgstr ""
858
  "Pokud byste chtěli přidat kontaktní formulář na webu, stačí zkopírovat a "
859
  "vložit tento shortcode nebo stránky nebo widget:"
860
 
861
+ #: contact_form.php:2501
862
  msgid "Sorry, email message could not be delivered."
863
  msgstr "Nelze doručit e-mailovou zprávu."
864
 
865
+ #: contact_form.php:3069 contact_form.php:3071
866
  msgid "Sent from (ip address)"
867
  msgstr "Odeslané z (ip adresa)"
868
 
869
+ #: contact_form.php:3099
870
  msgid "Contact from"
871
  msgstr "Kontaktní formulář"
872
 
873
+ #: contact_form.php:3104 contact_form.php:3153
 
 
 
 
874
  msgid "Site"
875
  msgstr "Stránka"
876
 
877
+ #: contact_form.php:3283
878
  msgid ""
879
  "If you can see this MIME, it means that the MIME type is not supported by "
880
  "your email client!"
882
  "Pokud vidíte tento MIME, znamená to, že váš e-mailový klient nepodporuje typ "
883
  "MIME!"
884
 
885
+ #: contact_form.php:3366
886
  msgid "FAQ"
887
  msgstr "Často kladené otázky"
888
 
889
+ #: contact_form.php:3367
890
  msgid "Support"
891
  msgstr "Podpora"
892
 
893
+ #: contact_form.php:3416
894
  msgid "Are you sure that you want to delete this language data?"
895
  msgstr "Jste si jisti, že chcete odstranit nastavení pro tento jazyk?"
896
 
897
+ #: contact_form.php:3437
898
  msgid "Add multiple forms"
899
  msgstr "Přidat více formulářů"
900
 
901
+ #: contact_form.php:3437
902
  msgid ""
903
  "Install Contact Form Multi plugin to create unlimited number of contact "
904
  "forms."
906
  "Pokud chcete vytvořit více kontaktních formulářů, nainstalujte si prosím "
907
  "kontaktní formulář Multi plugin."
908
 
909
+ #: contact_form.php:3442
910
  msgid "Learn more"
911
  msgstr "Více informací"
912
 
913
+ #: contact_form.php:3663
914
  msgid "Close notice"
915
  msgstr ""
916
 
917
+ #: contact_form.php:3668
918
  msgid "allows to store your messages to the database."
919
  msgstr "umožňuje ukládání zpráv do databáze."
920
 
921
+ #: contact_form.php:3669
922
  msgid "Manage messages that have been sent from your website."
923
  msgstr "Správa zpráv, které byly odeslány z vašeho webu."
924
 
925
+ #: contact_form.php:3727
926
  msgid "Contact form"
927
  msgstr "Kontaktní formulář"
928
 
929
+ #: contact_form.php:3740 contact_form.php:3750
930
  msgid "Language"
931
  msgstr "Přidání jazyka"
932
 
933
+ #~ msgid "Name:"
934
+ #~ msgstr "Jméno a příjmení:"
935
+
936
+ #~ msgid "Address:"
937
+ #~ msgstr "Adresa:"
938
+
939
+ #~ msgid "Email Address:"
940
+ #~ msgstr "E-Mail:"
941
+
942
+ #~ msgid "Phone number:"
943
+ #~ msgstr "Telefonní číslo:"
944
+
945
+ #~ msgid "Subject:"
946
+ #~ msgstr "Předmět:"
947
+
948
+ #~ msgid "Message:"
949
+ #~ msgstr "Zpráva:"
950
+
951
+ #~ msgid "Attachment:"
952
+ #~ msgstr "Příloha:"
953
+
954
+ #~ msgid ""
955
+ #~ "Please enable JavaScript to add language in the contact form, change the "
956
+ #~ "names of the contact form fields and error messages."
957
+ #~ msgstr ""
958
+ #~ "Prosím povolte JavaScript přidat jazyk v kontaktním formuláři, změnit "
959
+ #~ "názvy polí formuláře kontaktu a chybové zprávy."
960
+
961
+ #~ msgid "What to use?"
962
+ #~ msgstr "Co použít?"
963
+
964
+ #~ msgid "Using Contact Form to DB by BestWebSoft"
965
+ #~ msgstr "Pomocí kontaktního formuláře na DB podle BestWebSoft"
966
+
967
+ #, fuzzy
968
+ #~ msgid "Activate Subscriber"
969
+ #~ msgstr "Aktivované pluginy"
970
+
971
+ #, fuzzy
972
+ #~ msgid "Activate Captcha"
973
+ #~ msgstr "Aktivovat captcha"
974
+
975
+ #, fuzzy
976
+ #~ msgid "Download Captcha"
977
+ #~ msgstr "Stáhnout captcha"
978
+
979
+ #~ msgid "Phone"
980
+ #~ msgstr "Telefon"
981
+
982
  #~ msgid "To send mail you can use the php mail function"
983
  #~ msgstr "Chcete-li odesílat poštu lze použít php funkci mail"
984
 
1146
  #~ msgid "Please, go to"
1147
  #~ msgstr "Prosím, choďte na"
1148
 
 
 
 
1149
  #~ msgid "You will be redirected automatically in 5 seconds."
1150
  #~ msgstr "Za 5 sekúnd budete automaticky presmerovaní."
1151
 
languages/contact-form-plugin-da_DK.mo CHANGED
Binary file
languages/contact-form-plugin-da_DK.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: 2016-06-27 16:30+0300\n"
6
- "PO-Revision-Date: 2016-06-27 16:30+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: da_DA\n"
@@ -20,7 +20,7 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ contact_form
23
- #: contact_form.php:37 contact_form.php:1030
24
  msgid "Contact Form Settings"
25
  msgstr "Kontakt Form Indstillinger"
26
 
@@ -30,42 +30,53 @@ msgid "Contact Form"
30
  msgstr "Kontaktformular"
31
 
32
  # @ contact_form
33
- #: contact_form.php:165 contact_form.php:1565 contact_form.php:1599
34
- msgid "Name:"
 
 
35
  msgstr "Navn:"
36
 
37
  # @ contact_form
38
- #: contact_form.php:166 contact_form.php:1566 contact_form.php:1600
39
- msgid "Address:"
 
 
40
  msgstr "Adresse:"
41
 
42
  # @ contact_form
43
- #: contact_form.php:167 contact_form.php:1567 contact_form.php:1601
44
- msgid "Email Address:"
 
45
  msgstr "E-mail-adresse:"
46
 
47
  # @ contact_form
48
- #: contact_form.php:168 contact_form.php:1568 contact_form.php:1602
49
- msgid "Phone number:"
 
50
  msgstr "Telefon:"
51
 
52
  # @ contact_form
53
- #: contact_form.php:169 contact_form.php:1569 contact_form.php:1603
54
- msgid "Subject:"
 
 
55
  msgstr "Emne:"
56
 
57
  # @ contact_form
58
- #: contact_form.php:170 contact_form.php:1570 contact_form.php:1604
59
- msgid "Message:"
 
 
60
  msgstr "Besked:"
61
 
62
  # @ contact_form
63
- #: contact_form.php:171 contact_form.php:1571 contact_form.php:1605
64
- msgid "Attachment:"
 
65
  msgstr "Vedhæft fil:"
66
 
67
  # @ contact_form
68
- #: contact_form.php:172
69
  msgid ""
70
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
71
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -74,86 +85,86 @@ msgstr ""
74
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
75
 
76
  # @ contact_form
77
- #: contact_form.php:173 contact_form.php:1573 contact_form.php:1607
78
  msgid "Send me a copy"
79
  msgstr "Send mig en kopi"
80
 
81
  # @ contact_form
82
- #: contact_form.php:174 contact_form.php:1574 contact_form.php:1608
83
  msgid "Submit"
84
  msgstr "Gennemfør"
85
 
86
  # @ contact_form
87
- #: contact_form.php:175
88
  msgid "Your name is required."
89
  msgstr "Dit navn er påkrævet."
90
 
91
  # @ contact_form
92
- #: contact_form.php:176
93
  msgid "Address is required."
94
  msgstr "Adresse er påkrævet."
95
 
96
  # @ contact_form
97
- #: contact_form.php:177
98
  msgid "A valid email address is required."
99
  msgstr "En gyldig email adresse er påkrævet."
100
 
101
  # @ contact_form
102
- #: contact_form.php:178
103
  msgid "Phone number is required."
104
  msgstr "Telefonnummer er påkrævet."
105
 
106
  # @ contact_form
107
- #: contact_form.php:179
108
  msgid "Subject is required."
109
  msgstr "Emne er påkrævet."
110
 
111
  # @ contact_form
112
- #: contact_form.php:180
113
  msgid "Message text is required."
114
  msgstr "Besked tekst er påkrævet."
115
 
116
  # @ contact_form
117
- #: contact_form.php:181
118
  msgid "File format is not valid."
119
  msgstr "Filformatet er ikke gyldig."
120
 
121
  # @ contact_form
122
- #: contact_form.php:182
123
  msgid "File upload error."
124
  msgstr "Upload fejl"
125
 
126
  # @ contact_form
127
- #: contact_form.php:183
128
  msgid "The file could not be uploaded."
129
  msgstr "Filen kunne ikke uploades."
130
 
131
  # @ contact_form
132
- #: contact_form.php:184
133
  msgid "This file is too large."
134
  msgstr "Denne fil er for stor."
135
 
136
  # @ contact_form
137
- #: contact_form.php:185
138
  msgid "Please fill out the CAPTCHA."
139
  msgstr "Udfyld CAPTCHA."
140
 
141
  # @ contact_form
142
- #: contact_form.php:186
143
  msgid "Please make corrections below and try again."
144
  msgstr "Venligst foretage korrektioner nedenfor, og prøv igen."
145
 
146
  # @ contact_form
147
- #: contact_form.php:188
148
  msgid "Thank you for contacting us."
149
  msgstr "Tak for din henvendelse."
150
 
151
  # @ contact_form
152
- #: contact_form.php:688 contact_form.php:998
153
  msgid "Settings saved."
154
  msgstr "Ændringerne blev gemt."
155
 
156
- #: contact_form.php:940
157
  msgid ""
158
  "Email 'FROM' field option was changed, which may cause email messages being "
159
  "moved to the spam folder or email delivery failures."
@@ -162,7 +173,7 @@ msgstr ""
162
  "flyttes til spam omslag eller email levering fiaskoerne."
163
 
164
  # @ contact_form
165
- #: contact_form.php:950
166
  msgid ""
167
  "If the 'Redirect to page' option is selected then the URL field should be in "
168
  "the following format"
@@ -171,86 +182,69 @@ msgstr ""
171
  "følgende format"
172
 
173
  # @ contact_form
174
- #: contact_form.php:957
175
  msgid "Such user does not exist."
176
  msgstr "Sådan bruger findes ikke."
177
 
178
  # @ contact_form
179
- #: contact_form.php:967
180
  msgid ""
181
  "Please enter a valid email address in the 'Use this email address' field."
182
  msgstr "Angiv en gyldig e-mail-adresse i feltet 'Brug denne e-mail-adresse'."
183
 
184
  # @ contact_form
185
- #: contact_form.php:975
186
  msgid "Please enter a valid email address in the 'FROM' field."
187
  msgstr "Indsæt en gyldig emailadresse i fra-feltet"
188
 
189
  # @ contact_form
190
- #: contact_form.php:1000
191
  msgid "Settings are not saved."
192
  msgstr "Ændringerne er ikke gemt"
193
 
194
- #: contact_form.php:1027
195
  msgid "All plugin settings were restored."
196
  msgstr "Alle plugin indstillinger blev gendannet."
197
 
198
- #: contact_form.php:1032
199
  msgid "How to Use Step-by-step Instruction"
200
  msgstr "Hvordan man bruger en trinvis instruktion"
201
 
202
  # @ contact_form
203
- #: contact_form.php:1035 contact_form.php:3024 contact_form.php:3038
204
  msgid "Settings"
205
  msgstr "Indstillinger"
206
 
207
  # @ contact_form
208
- #: contact_form.php:1036
209
  msgid "Additional settings"
210
  msgstr "Yderligere indstillinger"
211
 
212
- #: contact_form.php:1037
213
  msgid "Appearance"
214
  msgstr "Udseende"
215
 
216
- #: contact_form.php:1038
217
  msgid "Custom code"
218
  msgstr ""
219
 
220
  # @ contact_form
221
- #: contact_form.php:1039
222
  msgid "Go PRO"
223
  msgstr "Gå PRO"
224
 
225
  # @ contact_form
226
- #: contact_form.php:1045
227
- msgid ""
228
- "Please enable JavaScript to add language in the contact form, change the "
229
- "names of the contact form fields and error messages."
230
- msgstr ""
231
- "Venligst Aktiver JavaScript for at tilføje sprog i kontaktpersonformularen, "
232
- "ændre navne på kontaktpersoner formularfelter og fejlmeddelelser."
233
-
234
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1740
235
- msgid "Form layout"
236
- msgstr "Formular Layout"
237
-
238
- # @ contact_form
239
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1752
240
- msgid "Submit position"
241
- msgstr "Indsende position"
242
-
243
- # @ contact_form
244
- #: contact_form.php:1057
245
- msgid "Notice:"
246
  msgstr "Bemærk:"
247
 
248
- #: contact_form.php:1061
249
  msgid "NEW_FORM"
250
  msgstr "NEW_FORM"
251
 
252
  # @ contact_form
253
- #: contact_form.php:1062
254
  msgid ""
255
  "If you want to create multiple contact forms, please install the Contact "
256
  "Form Multi plugin."
@@ -259,7 +253,7 @@ msgstr ""
259
  "formular Multi stik."
260
 
261
  # @ contact_form
262
- #: contact_form.php:1071
263
  #, php-format
264
  msgid ""
265
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -268,7 +262,7 @@ msgstr ""
268
  "Hvis du ønsker at tilføje en kontakt formular på din side eller post, skal "
269
  "du bruge knappen for %s"
270
 
271
- #: contact_form.php:1077
272
  #, php-format
273
  msgid ""
274
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -282,7 +276,7 @@ msgstr ""
282
  "Form sprog."
283
 
284
  # @ contact_form
285
- #: contact_form.php:1086
286
  msgid ""
287
  "If you leave the fields empty, the messages will be sent to the email "
288
  "address specified during registration."
@@ -291,148 +285,155 @@ msgstr ""
291
  "angivet under registreringen."
292
 
293
  # @ contact_form
294
- #: contact_form.php:1089
295
- msgid "The user's email address:"
 
296
  msgstr "Brugerens e-mail-adresse:"
297
 
298
  # @ contact_form
299
- #: contact_form.php:1093
300
  msgid "Select a username"
301
  msgstr "Vælg et brugernavn."
302
 
303
  # @ contact_form
304
- #: contact_form.php:1106
 
305
  msgid ""
306
- "Enter a username of the person who should get the messages from the contact "
307
  "form."
308
  msgstr ""
309
  "Angiv brugernavnet på den person, der skal få beskeder fra "
310
  "kontaktpersonformularen."
311
 
312
  # @ contact_form
313
- #: contact_form.php:1110
314
- msgid "Use this email address:"
 
315
  msgstr "Brug denne e-mail-adresse:"
316
 
317
  # @ contact_form
318
- #: contact_form.php:1114
319
- msgid "Enter the email address you want the messages forwarded to."
 
320
  msgstr "Indtast den e-mailadresse du vil have de meddelelser, der sendes til."
321
 
322
- #: contact_form.php:1121 contact_form.php:1487 contact_form.php:1679
323
- #: contact_form.php:1767 contact_form.php:3119
324
  msgid "Close"
325
  msgstr "Luk"
326
 
327
  # @ contact_form
328
- #: contact_form.php:1125
329
- msgid "Add department selectbox to the contact form:"
 
330
  msgstr "Tilføje afdeling selectbox til kontakt formularen:"
331
 
332
  # @ contact_form
333
- #: contact_form.php:1133 contact_form.php:1496 contact_form.php:1698
334
- #: contact_form.php:1973
335
  msgid "If you upgrade to Pro version all your settings will be saved."
336
  msgstr "Hvis du opgradere til Pro-version vil alle indstillingerne blive gemt."
337
 
338
  # @ contact_form
339
- #: contact_form.php:1140 contact_form.php:1407 contact_form.php:1501
340
- #: contact_form.php:1705 contact_form.php:1980
341
  msgid "Unlock premium options by upgrading to Pro version"
342
  msgstr "Låse premium muligheder ved at opgradere til Pro versionen"
343
 
344
  # @ contact_form
345
- #: contact_form.php:1143 contact_form.php:1410 contact_form.php:1504
346
- #: contact_form.php:1708 contact_form.php:1983 contact_form.php:3329
347
  msgid "Learn More"
348
  msgstr "Læs mere"
349
 
350
  # @ contact_form
351
- #: contact_form.php:1151
352
  msgid "Save emails to the database"
353
  msgstr "Gem dine emails i databasen"
354
 
355
  # @ contact_form
356
- #: contact_form.php:1156
357
  msgid "Using"
358
  msgstr "Ved hjælp af"
359
 
 
 
 
 
 
360
  # @ contact_form
361
- #: contact_form.php:1159 contact_form.php:1163
362
- msgid "Using Contact Form to DB by BestWebSoft"
363
- msgstr "Ved hjælp af kontaktformularen til DB ved BestWebSoft"
 
 
364
 
365
  # @ contact_form
366
- #: contact_form.php:1159
 
367
  msgid "Activate"
368
  msgstr "Aktiver"
369
 
370
  # @ contact_form
371
- #: contact_form.php:1163
 
372
  msgid "Download"
373
  msgstr "Download"
374
 
375
- # @ contact_form
376
- #: contact_form.php:1173
377
- msgid "What to use?"
378
- msgstr "Hvad skal man bruge?"
379
 
380
  # @ contact_form
381
- #: contact_form.php:1178
382
  msgid "Wp-mail"
383
  msgstr "WP-mail"
384
 
385
  # @ contact_form
386
- #: contact_form.php:1180
387
  #, fuzzy
388
  msgid "You can use the Wordpress wp_mail function for mailing"
389
  msgstr "Du kan bruge funktionen wp_mail til mailing"
390
 
391
  # @ contact_form
392
- #: contact_form.php:1183
393
  msgid "Mail"
394
  msgstr "E-post"
395
 
396
  # @ contact_form
397
- #: contact_form.php:1185
398
  #, fuzzy
399
  msgid "You can use the PHP mail function for mailing"
400
  msgstr "Du kan bruge funktionen wp_mail til mailing"
401
 
402
- #: contact_form.php:1190
403
  msgid "'FROM' field"
404
  msgstr "'Fra' feltet"
405
 
406
  # @ contact_form
407
- #: contact_form.php:1192 contact_form.php:1251 contact_form.php:1839
408
- #: contact_form.php:2810 contact_form.php:2846
409
- msgid "Name"
410
- msgstr "Navn:"
411
-
412
- # @ contact_form
413
- #: contact_form.php:1195
414
  msgid "User name"
415
  msgstr "Brugernavn"
416
 
417
  # @ contact_form
418
- #: contact_form.php:1197
419
  msgid ""
420
  "The name of the user who fills the form will be used in the field 'From'."
421
  msgstr ""
422
  "Navnet på den bruger, der udfylder formularen skal bruges i feltet 'Fra'."
423
 
424
  # @ contact_form
425
- #: contact_form.php:1202 contact_form.php:2821 contact_form.php:2853
426
  msgid "Email"
427
  msgstr "e-mail"
428
 
429
  # @ contact_form
430
- #: contact_form.php:1205
431
  msgid "User email"
432
  msgstr "Bruger E-mail"
433
 
434
  # @ contact_form
435
- #: contact_form.php:1207
436
  msgid ""
437
  "The email address of the user who fills the form will be used in the field "
438
  "'From'."
@@ -440,7 +441,7 @@ msgstr ""
440
  "E-mail-adressen på den bruger, der udfylder formularen skal bruges i feltet "
441
  "'Fra'."
442
 
443
- #: contact_form.php:1210
444
  msgid ""
445
  "If this option is changed, email messages may be moved to the spam folder or "
446
  "email delivery failures may occur."
@@ -449,56 +450,56 @@ msgstr ""
449
  "mappen eller email levering fejl kan opstå."
450
 
451
  # @ contact_form
452
- #: contact_form.php:1216
453
  msgid "Required symbol"
454
  msgstr "Kræves symbol"
455
 
456
  # @ contact_form
457
- #: contact_form.php:1226
458
  msgid "Fields"
459
  msgstr "Felter"
460
 
461
  # @ contact_form
462
- #: contact_form.php:1227 contact_form.php:1254 contact_form.php:1281
463
- #: contact_form.php:1301 contact_form.php:1340 contact_form.php:1425
464
  msgid "Used"
465
  msgstr "Brugt"
466
 
467
  # @ contact_form
468
- #: contact_form.php:1228 contact_form.php:1243 contact_form.php:1258
469
- #: contact_form.php:1285 contact_form.php:1305 contact_form.php:1318
470
- #: contact_form.php:1344 contact_form.php:1357 contact_form.php:1381
471
  msgid "Required"
472
  msgstr "Kræves"
473
 
474
  # @ contact_form
475
- #: contact_form.php:1230 contact_form.php:1263 contact_form.php:1323
476
- #: contact_form.php:1362 contact_form.php:1386
477
  msgid "Visible"
478
  msgstr "Synlig"
479
 
480
  # @ contact_form
481
- #: contact_form.php:1231 contact_form.php:1267 contact_form.php:1327
482
- #: contact_form.php:1366 contact_form.php:1390
483
  msgid "Disabled for editing"
484
  msgstr "Handicappede til redigering"
485
 
486
  # @ contact_form
487
- #: contact_form.php:1232 contact_form.php:1291 contact_form.php:1370
488
- #: contact_form.php:1394
489
  msgid "Field's default value"
490
  msgstr "Feltets standardværdi"
491
 
492
  # @ contact_form
493
- #: contact_form.php:1239
494
  msgid "Department selectbox"
495
  msgstr "Afdeling selectbox"
496
 
497
- #: contact_form.php:1271
498
  msgid "Use User's name as a default value if the user is logged in."
499
  msgstr "Brug brugerens navn som standardværdi, hvis brugeren er logget på."
500
 
501
- #: contact_form.php:1272 contact_form.php:1332
502
  msgid ""
503
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
504
  "in users."
@@ -507,163 +508,115 @@ msgstr ""
507
  "journaliseret-i brugernes."
508
 
509
  # @ contact_form
510
- #: contact_form.php:1278
511
  msgid "Location selectbox"
512
  msgstr "Beliggenhed selectbox"
513
 
514
- # @ contact_form
515
- #: contact_form.php:1298 contact_form.php:1844 contact_form.php:2816
516
- #: contact_form.php:2850
517
- msgid "Address"
518
- msgstr "Adresse:"
519
-
520
- # @ contact_form
521
- #: contact_form.php:1314
522
- msgid "Email Address"
523
- msgstr "E-mail-adresse:"
524
-
525
- #: contact_form.php:1331
526
  msgid "Use User's email as a default value if the user is logged in."
527
  msgstr ""
528
  "Brug brugerens e-mail som en standardværdi, hvis brugeren er logget på."
529
 
530
  # @ contact_form
531
- #: contact_form.php:1337
532
- msgid "Phone number"
533
- msgstr "Telefon:"
534
-
535
- # @ contact_form
536
- #: contact_form.php:1353 contact_form.php:1859 contact_form.php:2831
537
- #: contact_form.php:2859
538
- msgid "Subject"
539
- msgstr "Emne:"
540
-
541
- # @ contact_form
542
- #: contact_form.php:1377 contact_form.php:1863 contact_form.php:2834
543
- #: contact_form.php:2861
544
- msgid "Message"
545
- msgstr "Besked:"
546
-
547
- # @ contact_form
548
- #: contact_form.php:1418
549
  msgid "Attachment block"
550
  msgstr "Vedhæftet fil blok"
551
 
552
  # @ contact_form
553
- #: contact_form.php:1420
554
  msgid "Users can attach the following file formats"
555
  msgstr "Brugerne kan vedhæfte følgende filformater"
556
 
557
  # @ contact_form
558
- #: contact_form.php:1438
559
  msgid "Add to the form"
560
  msgstr "Føje til formularen"
561
 
562
  # @ contact_form
563
- #: contact_form.php:1443
564
  msgid "Tips below the Attachment"
565
  msgstr "Tips nedenfor den vedhæftede fil"
566
 
567
  # @ contact_form
568
- #: contact_form.php:1452
569
  msgid "'Send me a copy' block"
570
  msgstr "'Sende mig en afskrift' blok"
571
 
572
- #: contact_form.php:1464
573
- msgid "Activate Subscriber"
574
- msgstr ""
575
-
576
- #: contact_form.php:1468
577
- msgid "Download Subscriber"
578
- msgstr ""
579
-
580
  # @ contact_form
581
- #: contact_form.php:1477
582
- #, fuzzy
583
- msgid "Activate Captcha"
584
- msgstr "Aktivere captcha"
585
-
586
- # @ contact_form
587
- #: contact_form.php:1481
588
- #, fuzzy
589
- msgid "Download Captcha"
590
- msgstr "Download captcha"
591
-
592
- # @ contact_form
593
- #: contact_form.php:1491
594
  msgid "Agreement checkbox"
595
  msgstr "Aftalen afkrydsningsfeltet"
596
 
597
  # @ contact_form
598
- #: contact_form.php:1491
599
  msgid "Required checkbox for submitting the form"
600
  msgstr "Kræves afkrydsningsfeltet til at sende formularen"
601
 
602
  # @ contact_form
603
- #: contact_form.php:1492
604
  msgid "Optional checkbox"
605
  msgstr "Valgfri afkrydsningsfeltet"
606
 
607
  # @ contact_form
608
- #: contact_form.php:1492
609
  msgid "Optional checkbox, the results of which will be displayed in email"
610
  msgstr "Valgfri afkrydsningsfeltet, hvis resultater vil blive vist i e-mail"
611
 
612
  # @ contact_form
613
- #: contact_form.php:1513
614
  msgid "Delete an attachment file from the server after the email is sent"
615
  msgstr "Slette en vedhæftet fil fra serveren, efter at e-mailen sendes"
616
 
617
  # @ contact_form
618
- #: contact_form.php:1519
619
  msgid "Email in HTML format sending"
620
  msgstr "E-mail i HTML-format at sende"
621
 
622
  # @ contact_form
623
- #: contact_form.php:1523
624
  msgid "Display additional info in the email"
625
  msgstr "Få vist yderligere info i e-mailen"
626
 
627
  # @ contact_form
628
- #: contact_form.php:1529
629
  #, fuzzy
630
  msgid "Sent from (IP address)"
631
  msgstr "Sendt fra (ip adresse)"
632
 
633
  # @ contact_form
634
- #: contact_form.php:1529
635
  msgid "Example: Sent from (IP address):\t127.0.0.1"
636
  msgstr "Eksempel: Sendt fra (IP adresse): 127.0.0.1"
637
 
638
  # @ contact_form
639
- #: contact_form.php:1530 contact_form.php:2783 contact_form.php:2785
640
  msgid "Date/Time"
641
  msgstr "Dato / Tid"
642
 
643
  # @ contact_form
644
- #: contact_form.php:1530
645
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
646
  msgstr "Eksempel: Dato/tid: 19 August 2013 8:50 pm"
647
 
648
  # @ contact_form
649
- #: contact_form.php:1531 contact_form.php:2789 contact_form.php:2791
650
  msgid "Sent from (referer)"
651
  msgstr "Sendt fra (referer)"
652
 
653
  # @ contact_form
654
- #: contact_form.php:1531
655
  msgid ""
656
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
657
  msgstr ""
658
  "Eksempel: Sendt fra (referer): http://bestwebsoft.com/contacts/contact-us/"
659
 
660
  # @ contact_form
661
- #: contact_form.php:1532 contact_form.php:2795 contact_form.php:2797
662
  msgid "Using (user agent)"
663
  msgstr "Ved hjælp af (brugeragent)"
664
 
665
  # @ contact_form
666
- #: contact_form.php:1532
667
  msgid ""
668
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
669
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -672,162 +625,162 @@ msgstr ""
672
  "AppleWebKit/537.36 (KHTML, lige Gecko) Chrome/28.0.1500.95 Safari/537.36"
673
 
674
  # @ contact_form
675
- #: contact_form.php:1537
676
  msgid "Language settings for the field names in the form"
677
  msgstr "Sprogindstillingerne for feltnavnene i form"
678
 
679
  # @ contact_form
680
- #: contact_form.php:1546
681
  msgid "Add a language"
682
  msgstr "Tilføje et sprog"
683
 
684
  # @ contact_form
685
- #: contact_form.php:1550
686
  msgid "Change the names of the contact form fields and error messages"
687
  msgstr "Ændre navne på kontaktpersoner formularfelter og fejlmeddelelser"
688
 
689
  # @ contact_form
690
- #: contact_form.php:1555 contact_form.php:1642 contact_form.php:1887
691
- #: contact_form.php:1892 contact_form.php:1902 contact_form.php:1907
692
- #: contact_form.php:1912 contact_form.php:1917 contact_form.php:1927
693
- #: contact_form.php:1932 contact_form.php:1941 contact_form.php:1955
694
- #: contact_form.php:1960 contact_form.php:1965
695
  msgid "Default"
696
  msgstr "Standard"
697
 
698
  # @ contact_form
699
- #: contact_form.php:1563 contact_form.php:1597
700
  msgid "click to expand/hide the list"
701
  msgstr "Klik for at udvide/skjule listen"
702
 
703
  # @ contact_form
704
- #: contact_form.php:1572 contact_form.php:1606
705
  msgid "Tips below the Attachment block"
706
  msgstr "Tips nedenfor den vedhæftede fil blokere"
707
 
708
  # @ contact_form
709
- #: contact_form.php:1575 contact_form.php:1609
710
  msgid "Error message for the Name field"
711
  msgstr "Fejlmeddelelse for feltet navn"
712
 
713
  # @ contact_form
714
- #: contact_form.php:1576 contact_form.php:1610
715
  msgid "Error message for the Address field"
716
  msgstr "Fejlmeddelelse for feltet adresse"
717
 
718
  # @ contact_form
719
- #: contact_form.php:1577 contact_form.php:1611
720
  msgid "Error message for the Email field"
721
  msgstr "Fejlmeddelelse for feltet E-mail"
722
 
723
  # @ contact_form
724
- #: contact_form.php:1578 contact_form.php:1612
725
  msgid "Error message for the Phone field"
726
  msgstr "Fejlmeddelelse for feltet telefon"
727
 
728
  # @ contact_form
729
- #: contact_form.php:1579 contact_form.php:1613
730
  msgid "Error message for the Subject field"
731
  msgstr "Fejlmeddelelse for feltet emne"
732
 
733
  # @ contact_form
734
- #: contact_form.php:1580 contact_form.php:1614
735
  msgid "Error message for the Message field"
736
  msgstr "Fejl besked i feltet besked"
737
 
738
  # @ contact_form
739
- #: contact_form.php:1581 contact_form.php:1615
740
  msgid "Error message about the file type for the Attachment field"
741
  msgstr "Fejlmeddelelse om filtypen til feltet vedhæftet fil"
742
 
743
  # @ contact_form
744
- #: contact_form.php:1582 contact_form.php:1616
745
  msgid ""
746
  "Error message while uploading a file for the Attachment field to the server"
747
  msgstr "Fejlmeddelelse ved upload en fil til feltet vedhæftet fil til serveren"
748
 
749
  # @ contact_form
750
- #: contact_form.php:1583 contact_form.php:1617
751
  msgid "Error message while moving the file for the Attachment field"
752
  msgstr "Fejlmeddelelse mens du flytter filen for feltet vedhæftet fil"
753
 
754
  # @ contact_form
755
- #: contact_form.php:1584 contact_form.php:1618
756
  msgid "Error message when file size limit for the Attachment field is exceeded"
757
  msgstr ""
758
  "Fejlmeddelelse, når filstørrelse for feltet vedhæftet fil er overskredet"
759
 
760
  # @ contact_form
761
- #: contact_form.php:1585 contact_form.php:1619
762
  msgid "Error message for the Captcha field"
763
  msgstr "Fejlmeddelelse for Captcha feltet"
764
 
765
  # @ contact_form
766
- #: contact_form.php:1586 contact_form.php:1620
767
  msgid "Error message for the whole form"
768
  msgstr "Fejlmeddelelse for hele formularen"
769
 
770
  # @ contact_form
771
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
772
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
773
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
774
- #: contact_form.php:3179
775
  msgid "Use shortcode"
776
  msgstr "Brug kortkode"
777
 
778
  # @ contact_form
779
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
780
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
781
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
782
- #: contact_form.php:3179
783
  msgid "for this language"
784
  msgstr "for dette sprog"
785
 
786
  # @ contact_form
787
- #: contact_form.php:1633
788
  msgid "Use the changed names of the contact form fields in the email"
789
  msgstr "Bruge ændret navnene på felterne kontaktformularen i e-mailen"
790
 
791
  # @ contact_form
792
- #: contact_form.php:1639
793
  msgid "Action after email is sent"
794
  msgstr "Handling efter at e-mail er sendt"
795
 
796
  # @ contact_form
797
- #: contact_form.php:1641
798
  msgid "Display text"
799
  msgstr "Vis tekst"
800
 
801
  # @ contact_form
802
- #: contact_form.php:1650 contact_form.php:1660
803
  msgid "Text"
804
  msgstr "Tekst"
805
 
806
  # @ contact_form
807
- #: contact_form.php:1671
808
  msgid "Redirect to the page"
809
  msgstr "Viderstil til side"
810
 
811
  # @ contact_form
812
- #: contact_form.php:1672
813
  msgid "Url"
814
  msgstr "Url"
815
 
816
- #: contact_form.php:1683
817
  msgid "Add field 'Reply-To' to the email header"
818
  msgstr "Tilføj feltet 'Svar til' til e-mail-header"
819
 
820
- #: contact_form.php:1685
821
  msgid "Field 'Reply-To' will be initialized by user email"
822
  msgstr "Feltet 'Svar til' vil være initialiseret af brugeren e-mail"
823
 
824
  # @ contact_form_pro
825
- #: contact_form.php:1689
826
  msgid "Auto Response"
827
  msgstr "Autosvar"
828
 
829
  # @ contact_form
830
- #: contact_form.php:1693
831
  #, php-format
832
  msgid ""
833
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -838,241 +791,241 @@ msgstr ""
838
  "til at vise data fra feltet besked samt %%sITENAME %% for at vise blog navn."
839
 
840
  # @ default
841
- #: contact_form.php:1718 contact_form.php:2213
842
  msgid "Save Changes"
843
  msgstr "Gem ændringer"
844
 
845
- #: contact_form.php:1731
846
  #, php-format
847
  msgid ""
848
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
849
  msgstr ""
850
  "Venligst JavaScript at ændre '%s', '%s' indstillinger og felter sortering."
851
 
852
- #: contact_form.php:1744
 
 
 
 
 
 
 
 
 
853
  msgid "One column"
854
  msgstr "En kolonne"
855
 
856
- #: contact_form.php:1747
857
  msgid "Two columns"
858
  msgstr "To kolonner"
859
 
860
- #: contact_form.php:1756 contact_form.php:1775 contact_form.php:1793
861
- #: contact_form.php:1808
862
  msgid "Left"
863
  msgstr "Venstre"
864
 
865
- #: contact_form.php:1759 contact_form.php:1781 contact_form.php:1796
866
- #: contact_form.php:1814
867
  msgid "Right"
868
  msgstr "Højre"
869
 
870
- #: contact_form.php:1771
871
  msgid "Form align"
872
  msgstr ""
873
 
874
- #: contact_form.php:1778 contact_form.php:1811
875
  msgid "Center"
876
  msgstr ""
877
 
878
  # @ contact_form
879
- #: contact_form.php:1786
880
  #, fuzzy
881
  msgid "Labels position"
882
  msgstr "Indsende position"
883
 
884
- #: contact_form.php:1790
885
  msgid "Top"
886
  msgstr ""
887
 
888
- #: contact_form.php:1799
889
  msgid "Bottom"
890
  msgstr ""
891
 
892
- #: contact_form.php:1804
893
  msgid "Labels align"
894
  msgstr ""
895
 
896
  # @ contact_form
897
- #: contact_form.php:1819
898
  msgid "Errors output"
899
  msgstr "Fejl output"
900
 
901
  # @ contact_form
902
- #: contact_form.php:1822
903
  msgid "Display error messages"
904
  msgstr "Vise fejlmeddelelser"
905
 
906
  # @ contact_form
907
- #: contact_form.php:1823
908
  msgid "Color of the input field errors."
909
  msgstr "Farven på input felt fejlene."
910
 
911
  # @ contact_form
912
- #: contact_form.php:1824
913
  msgid "Display error messages & color of the input field errors"
914
  msgstr "Vise fejlmeddelelser & farven på input felt fejlene"
915
 
916
  # @ contact_form
917
- #: contact_form.php:1829
918
  msgid "Add placeholder to the input blocks"
919
  msgstr "Tilføje pladsholder til input blokke"
920
 
921
  # @ contact_form
922
- #: contact_form.php:1835
923
  msgid "Add tooltips"
924
  msgstr "Føje værktøjstip"
925
 
926
  # @ contact_form
927
- #: contact_form.php:1849
928
  msgid "Email address"
929
  msgstr "E-mail-adresse:"
930
 
931
  # @ contact_form
932
- #: contact_form.php:1854
933
  msgid "Phone Number"
934
  msgstr "Telefon:"
935
 
936
  # @ contact_form
937
- #: contact_form.php:1868
938
- msgid "Attachment"
939
- msgstr "Vedhæft fil:"
940
-
941
- # @ contact_form
942
- #: contact_form.php:1880
943
  msgid "Style options"
944
  msgstr "Indstilling af fremtoning"
945
 
946
  # @ contact_form
947
- #: contact_form.php:1884
948
  msgid "Text color"
949
  msgstr "Tekstfarve"
950
 
951
  # @ contact_form
952
- #: contact_form.php:1889
953
  msgid "Label text color"
954
  msgstr "Etiket tekstfarve"
955
 
956
  # @ contact_form
957
- #: contact_form.php:1894
958
  msgid "Placeholder color"
959
  msgstr "Pladsholder farve"
960
 
961
  # @ contact_form
962
- #: contact_form.php:1899
963
  msgid "Errors color"
964
  msgstr "Fejl farve"
965
 
966
  # @ contact_form
967
- #: contact_form.php:1904
968
  msgid "Error text color"
969
  msgstr "Fejl tekstfarve"
970
 
971
  # @ contact_form
972
- #: contact_form.php:1909
973
  msgid "Background color of the input field errors"
974
  msgstr "Baggrundsfarven af input felt fejl"
975
 
976
  # @ contact_form
977
- #: contact_form.php:1914
978
  msgid "Border color of the input field errors"
979
  msgstr "Kantfarven på inputfelt fejl"
980
 
981
  # @ contact_form
982
- #: contact_form.php:1919
983
  msgid "Placeholder color of the input field errors"
984
  msgstr "Pladsholder farven på input felt fejlene"
985
 
986
  # @ contact_form
987
- #: contact_form.php:1924
988
  msgid "Input fields"
989
  msgstr "Felter"
990
 
991
  # @ contact_form
992
- #: contact_form.php:1929
993
  msgid "Input fields background color"
994
  msgstr "Inputfelter baggrundsfarve"
995
 
996
  # @ contact_form
997
- #: contact_form.php:1934
998
  msgid "Text fields color"
999
  msgstr "Tekst felter farve"
1000
 
1001
  # @ contact_form
1002
- #: contact_form.php:1938
1003
  msgid "Border width in px, numbers only"
1004
  msgstr "Kantbredde i px, kun tal"
1005
 
1006
  # @ contact_form
1007
- #: contact_form.php:1943 contact_form.php:1967
1008
  msgid "Border color"
1009
  msgstr "Ramme farve"
1010
 
1011
  # @ contact_form
1012
- #: contact_form.php:1948
1013
  msgid "Submit button"
1014
  msgstr "Send knap"
1015
 
1016
  # @ contact_form
1017
- #: contact_form.php:1952
1018
  msgid "Width in px, numbers only"
1019
  msgstr "Bredde i px, kun tal"
1020
 
1021
  # @ contact_form
1022
- #: contact_form.php:1957
1023
  msgid "Button color"
1024
  msgstr "Knap farve"
1025
 
1026
  # @ contact_form
1027
- #: contact_form.php:1962
1028
  msgid "Button text color"
1029
  msgstr "Knap tekstfarve"
1030
 
1031
  # @ contact_form
1032
- #: contact_form.php:1994
1033
  msgid "Contact Form | Preview"
1034
  msgstr "Kontakt Form | Preview"
1035
 
1036
- #: contact_form.php:1995
1037
  msgid "Drag the necessary field to sort fields."
1038
  msgstr "Træk feltet nødvendigt hvis du vil sortere felterne."
1039
 
1040
  # @ contact_form
1041
- #: contact_form.php:2200
 
1042
  msgid ""
1043
  "If you would like to add the Contact Form to your website, just copy and "
1044
- "paste this shortcode to your post or page or widget:"
1045
  msgstr ""
1046
  "Hvis du vil tilføje kontakt formular på dit websted, blot kopiere og "
1047
  "indsætte denne ufuldkommenhed til din post eller side eller widget:"
1048
 
1049
  # @ contact_form
1050
- #: contact_form.php:2297
1051
  msgid "Sorry, email message could not be delivered."
1052
  msgstr "Beklager, e-mailen ikke kunne leveres."
1053
 
1054
  # @ contact_form
1055
- #: contact_form.php:2777 contact_form.php:2779
1056
  msgid "Sent from (ip address)"
1057
  msgstr "Sendt fra (ip adresse)"
1058
 
1059
  # @ contact_form
1060
- #: contact_form.php:2804
1061
  msgid "Contact from"
1062
  msgstr "Kontakt fra formen"
1063
 
1064
  # @ contact_form
1065
- #: contact_form.php:2826 contact_form.php:2856
1066
- msgid "Phone"
1067
- msgstr "Telefon"
1068
-
1069
- # @ contact_form
1070
- #: contact_form.php:2837 contact_form.php:2863
1071
  msgid "Site"
1072
  msgstr "Hjemmeside"
1073
 
1074
  # @ contact_form
1075
- #: contact_form.php:2956
1076
  msgid ""
1077
  "If you can see this MIME, it means that the MIME type is not supported by "
1078
  "your email client!"
@@ -1081,26 +1034,26 @@ msgstr ""
1081
  "din e-mail-klient!"
1082
 
1083
  # @ contact_form
1084
- #: contact_form.php:3039
1085
  msgid "FAQ"
1086
  msgstr "FAQ"
1087
 
1088
  # @ contact_form
1089
- #: contact_form.php:3040
1090
  msgid "Support"
1091
  msgstr "Support"
1092
 
1093
  # @ contact_form
1094
- #: contact_form.php:3089
1095
  msgid "Are you sure that you want to delete this language data?"
1096
  msgstr "Er du sikker på at du vil slette dette sprogdata?"
1097
 
1098
  # @ contact_form
1099
- #: contact_form.php:3110
1100
  msgid "Add multiple forms"
1101
  msgstr "Tilføje flere formularer"
1102
 
1103
- #: contact_form.php:3110
1104
  msgid ""
1105
  "Install Contact Form Multi plugin to create unlimited number of contact "
1106
  "forms."
@@ -1109,30 +1062,85 @@ msgstr ""
1109
  "formularer."
1110
 
1111
  # @ contact_form
1112
- #: contact_form.php:3115
1113
  msgid "Learn more"
1114
  msgstr "Få mere at vide"
1115
 
1116
- #: contact_form.php:3320
1117
  msgid "Close notice"
1118
  msgstr ""
1119
 
1120
  # @ contact_form
1121
- #: contact_form.php:3325
1122
  msgid "allows to store your messages to the database."
1123
  msgstr "giver mulighed for at gemme dine meddelelser til databasen."
1124
 
1125
  # @ contact_form
1126
- #: contact_form.php:3326
1127
  msgid "Manage messages that have been sent from your website."
1128
  msgstr "Administrere meddelelser, der er blevet sendt fra dit websted."
1129
 
1130
  # @ contact_form
1131
- #: contact_form.php:3384
1132
  msgid "Contact form"
1133
  msgstr "Kontaktformular"
1134
 
1135
  # @ contact_form
1136
- #: contact_form.php:3397 contact_form.php:3407
1137
  msgid "Language"
1138
  msgstr "Sprog"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-12 17:22+0300\n"
6
+ "PO-Revision-Date: 2016-07-12 17:22+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: da_DA\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ contact_form
23
+ #: contact_form.php:37 contact_form.php:1118
24
  msgid "Contact Form Settings"
25
  msgstr "Kontakt Form Indstillinger"
26
 
30
  msgstr "Kontaktformular"
31
 
32
  # @ contact_form
33
+ #: contact_form.php:167 contact_form.php:1294 contact_form.php:1353
34
+ #: contact_form.php:1746 contact_form.php:1784 contact_form.php:2033
35
+ #: contact_form.php:3113 contact_form.php:3159
36
+ msgid "Name"
37
  msgstr "Navn:"
38
 
39
  # @ contact_form
40
+ #: contact_form.php:168 contact_form.php:1400 contact_form.php:1747
41
+ #: contact_form.php:1785 contact_form.php:2038 contact_form.php:3120
42
+ #: contact_form.php:3165
43
+ msgid "Address"
44
  msgstr "Adresse:"
45
 
46
  # @ contact_form
47
+ #: contact_form.php:169 contact_form.php:1416 contact_form.php:1748
48
+ #: contact_form.php:1786
49
+ msgid "Email Address"
50
  msgstr "E-mail-adresse:"
51
 
52
  # @ contact_form
53
+ #: contact_form.php:170 contact_form.php:1439 contact_form.php:1749
54
+ #: contact_form.php:1787
55
+ msgid "Phone number"
56
  msgstr "Telefon:"
57
 
58
  # @ contact_form
59
+ #: contact_form.php:171 contact_form.php:1455 contact_form.php:1750
60
+ #: contact_form.php:1788 contact_form.php:2053 contact_form.php:3131
61
+ #: contact_form.php:3174
62
+ msgid "Subject"
63
  msgstr "Emne:"
64
 
65
  # @ contact_form
66
+ #: contact_form.php:172 contact_form.php:1479 contact_form.php:1751
67
+ #: contact_form.php:1789 contact_form.php:2057 contact_form.php:3136
68
+ #: contact_form.php:3178
69
+ msgid "Message"
70
  msgstr "Besked:"
71
 
72
  # @ contact_form
73
+ #: contact_form.php:173 contact_form.php:1752 contact_form.php:1790
74
+ #: contact_form.php:2062
75
+ msgid "Attachment"
76
  msgstr "Vedhæft fil:"
77
 
78
  # @ contact_form
79
+ #: contact_form.php:174
80
  msgid ""
81
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
82
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
85
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
86
 
87
  # @ contact_form
88
+ #: contact_form.php:175 contact_form.php:1754 contact_form.php:1792
89
  msgid "Send me a copy"
90
  msgstr "Send mig en kopi"
91
 
92
  # @ contact_form
93
+ #: contact_form.php:176 contact_form.php:1755 contact_form.php:1793
94
  msgid "Submit"
95
  msgstr "Gennemfør"
96
 
97
  # @ contact_form
98
+ #: contact_form.php:177
99
  msgid "Your name is required."
100
  msgstr "Dit navn er påkrævet."
101
 
102
  # @ contact_form
103
+ #: contact_form.php:178
104
  msgid "Address is required."
105
  msgstr "Adresse er påkrævet."
106
 
107
  # @ contact_form
108
+ #: contact_form.php:179
109
  msgid "A valid email address is required."
110
  msgstr "En gyldig email adresse er påkrævet."
111
 
112
  # @ contact_form
113
+ #: contact_form.php:180
114
  msgid "Phone number is required."
115
  msgstr "Telefonnummer er påkrævet."
116
 
117
  # @ contact_form
118
+ #: contact_form.php:181
119
  msgid "Subject is required."
120
  msgstr "Emne er påkrævet."
121
 
122
  # @ contact_form
123
+ #: contact_form.php:182
124
  msgid "Message text is required."
125
  msgstr "Besked tekst er påkrævet."
126
 
127
  # @ contact_form
128
+ #: contact_form.php:183
129
  msgid "File format is not valid."
130
  msgstr "Filformatet er ikke gyldig."
131
 
132
  # @ contact_form
133
+ #: contact_form.php:184
134
  msgid "File upload error."
135
  msgstr "Upload fejl"
136
 
137
  # @ contact_form
138
+ #: contact_form.php:185
139
  msgid "The file could not be uploaded."
140
  msgstr "Filen kunne ikke uploades."
141
 
142
  # @ contact_form
143
+ #: contact_form.php:186
144
  msgid "This file is too large."
145
  msgstr "Denne fil er for stor."
146
 
147
  # @ contact_form
148
+ #: contact_form.php:187
149
  msgid "Please fill out the CAPTCHA."
150
  msgstr "Udfyld CAPTCHA."
151
 
152
  # @ contact_form
153
+ #: contact_form.php:188
154
  msgid "Please make corrections below and try again."
155
  msgstr "Venligst foretage korrektioner nedenfor, og prøv igen."
156
 
157
  # @ contact_form
158
+ #: contact_form.php:190
159
  msgid "Thank you for contacting us."
160
  msgstr "Tak for din henvendelse."
161
 
162
  # @ contact_form
163
+ #: contact_form.php:824 contact_form.php:1076
164
  msgid "Settings saved."
165
  msgstr "Ændringerne blev gemt."
166
 
167
+ #: contact_form.php:1021
168
  msgid ""
169
  "Email 'FROM' field option was changed, which may cause email messages being "
170
  "moved to the spam folder or email delivery failures."
173
  "flyttes til spam omslag eller email levering fiaskoerne."
174
 
175
  # @ contact_form
176
+ #: contact_form.php:1031
177
  msgid ""
178
  "If the 'Redirect to page' option is selected then the URL field should be in "
179
  "the following format"
182
  "følgende format"
183
 
184
  # @ contact_form
185
+ #: contact_form.php:1038
186
  msgid "Such user does not exist."
187
  msgstr "Sådan bruger findes ikke."
188
 
189
  # @ contact_form
190
+ #: contact_form.php:1048
191
  msgid ""
192
  "Please enter a valid email address in the 'Use this email address' field."
193
  msgstr "Angiv en gyldig e-mail-adresse i feltet 'Brug denne e-mail-adresse'."
194
 
195
  # @ contact_form
196
+ #: contact_form.php:1056
197
  msgid "Please enter a valid email address in the 'FROM' field."
198
  msgstr "Indsæt en gyldig emailadresse i fra-feltet"
199
 
200
  # @ contact_form
201
+ #: contact_form.php:1078
202
  msgid "Settings are not saved."
203
  msgstr "Ændringerne er ikke gemt"
204
 
205
+ #: contact_form.php:1115
206
  msgid "All plugin settings were restored."
207
  msgstr "Alle plugin indstillinger blev gendannet."
208
 
209
+ #: contact_form.php:1120
210
  msgid "How to Use Step-by-step Instruction"
211
  msgstr "Hvordan man bruger en trinvis instruktion"
212
 
213
  # @ contact_form
214
+ #: contact_form.php:1123 contact_form.php:3351 contact_form.php:3365
215
  msgid "Settings"
216
  msgstr "Indstillinger"
217
 
218
  # @ contact_form
219
+ #: contact_form.php:1124
220
  msgid "Additional settings"
221
  msgstr "Yderligere indstillinger"
222
 
223
+ #: contact_form.php:1125
224
  msgid "Appearance"
225
  msgstr "Udseende"
226
 
227
+ #: contact_form.php:1126
228
  msgid "Custom code"
229
  msgstr ""
230
 
231
  # @ contact_form
232
+ #: contact_form.php:1127
233
  msgid "Go PRO"
234
  msgstr "Gå PRO"
235
 
236
  # @ contact_form
237
+ #: contact_form.php:1136
238
+ #, fuzzy
239
+ msgid "Notice"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
240
  msgstr "Bemærk:"
241
 
242
+ #: contact_form.php:1140
243
  msgid "NEW_FORM"
244
  msgstr "NEW_FORM"
245
 
246
  # @ contact_form
247
+ #: contact_form.php:1141
248
  msgid ""
249
  "If you want to create multiple contact forms, please install the Contact "
250
  "Form Multi plugin."
253
  "formular Multi stik."
254
 
255
  # @ contact_form
256
+ #: contact_form.php:1150
257
  #, php-format
258
  msgid ""
259
  "If you would like to add a Contact Form to your page or post, please use %s "
262
  "Hvis du ønsker at tilføje en kontakt formular på din side eller post, skal "
263
  "du bruge knappen for %s"
264
 
265
+ #: contact_form.php:1156
266
  #, php-format
267
  msgid ""
268
  "You can add the Contact Form to your page or post by clicking on %s button "
276
  "Form sprog."
277
 
278
  # @ contact_form
279
+ #: contact_form.php:1165
280
  msgid ""
281
  "If you leave the fields empty, the messages will be sent to the email "
282
  "address specified during registration."
285
  "angivet under registreringen."
286
 
287
  # @ contact_form
288
+ #: contact_form.php:1168
289
+ #, fuzzy
290
+ msgid "The user's email address"
291
  msgstr "Brugerens e-mail-adresse:"
292
 
293
  # @ contact_form
294
+ #: contact_form.php:1172
295
  msgid "Select a username"
296
  msgstr "Vælg et brugernavn."
297
 
298
  # @ contact_form
299
+ #: contact_form.php:1185
300
+ #, fuzzy
301
  msgid ""
302
+ "Select a username of the person who should get the messages from the contact "
303
  "form."
304
  msgstr ""
305
  "Angiv brugernavnet på den person, der skal få beskeder fra "
306
  "kontaktpersonformularen."
307
 
308
  # @ contact_form
309
+ #: contact_form.php:1189
310
+ #, fuzzy
311
+ msgid "Use this email address"
312
  msgstr "Brug denne e-mail-adresse:"
313
 
314
  # @ contact_form
315
+ #: contact_form.php:1193
316
+ #, fuzzy
317
+ msgid "Enter the email address for receiving messages"
318
  msgstr "Indtast den e-mailadresse du vil have de meddelelser, der sendes til."
319
 
320
+ #: contact_form.php:1200 contact_form.php:1663 contact_form.php:1873
321
+ #: contact_form.php:1961 contact_form.php:3446
322
  msgid "Close"
323
  msgstr "Luk"
324
 
325
  # @ contact_form
326
+ #: contact_form.php:1204
327
+ #, fuzzy
328
+ msgid "Add department selectbox to the contact form"
329
  msgstr "Tilføje afdeling selectbox til kontakt formularen:"
330
 
331
  # @ contact_form
332
+ #: contact_form.php:1212 contact_form.php:1672 contact_form.php:1892
333
+ #: contact_form.php:2167
334
  msgid "If you upgrade to Pro version all your settings will be saved."
335
  msgstr "Hvis du opgradere til Pro-version vil alle indstillingerne blive gemt."
336
 
337
  # @ contact_form
338
+ #: contact_form.php:1219 contact_form.php:1509 contact_form.php:1677
339
+ #: contact_form.php:1899 contact_form.php:2174
340
  msgid "Unlock premium options by upgrading to Pro version"
341
  msgstr "Låse premium muligheder ved at opgradere til Pro versionen"
342
 
343
  # @ contact_form
344
+ #: contact_form.php:1222 contact_form.php:1512 contact_form.php:1680
345
+ #: contact_form.php:1902 contact_form.php:2177 contact_form.php:3672
346
  msgid "Learn More"
347
  msgstr "Læs mere"
348
 
349
  # @ contact_form
350
+ #: contact_form.php:1230
351
  msgid "Save emails to the database"
352
  msgstr "Gem dine emails i databasen"
353
 
354
  # @ contact_form
355
+ #: contact_form.php:1241 contact_form.php:1255 contact_form.php:1262
356
  msgid "Using"
357
  msgstr "Ved hjælp af"
358
 
359
+ #: contact_form.php:1247 contact_form.php:1572 contact_form.php:1605
360
+ #: contact_form.php:1640
361
+ msgid "Please activate the appropriate option on"
362
+ msgstr ""
363
+
364
  # @ contact_form
365
+ #: contact_form.php:1250 contact_form.php:1575 contact_form.php:1608
366
+ #: contact_form.php:1643
367
+ #, fuzzy
368
+ msgid "settings page"
369
+ msgstr "Ændringerne blev gemt."
370
 
371
  # @ contact_form
372
+ #: contact_form.php:1256 contact_form.php:1581 contact_form.php:1615
373
+ #: contact_form.php:1651
374
  msgid "Activate"
375
  msgstr "Aktiver"
376
 
377
  # @ contact_form
378
+ #: contact_form.php:1263 contact_form.php:1587 contact_form.php:1621
379
+ #: contact_form.php:1656
380
  msgid "Download"
381
  msgstr "Download"
382
 
383
+ #: contact_form.php:1275
384
+ msgid "Sending method"
385
+ msgstr ""
 
386
 
387
  # @ contact_form
388
+ #: contact_form.php:1280
389
  msgid "Wp-mail"
390
  msgstr "WP-mail"
391
 
392
  # @ contact_form
393
+ #: contact_form.php:1282
394
  #, fuzzy
395
  msgid "You can use the Wordpress wp_mail function for mailing"
396
  msgstr "Du kan bruge funktionen wp_mail til mailing"
397
 
398
  # @ contact_form
399
+ #: contact_form.php:1285
400
  msgid "Mail"
401
  msgstr "E-post"
402
 
403
  # @ contact_form
404
+ #: contact_form.php:1287
405
  #, fuzzy
406
  msgid "You can use the PHP mail function for mailing"
407
  msgstr "Du kan bruge funktionen wp_mail til mailing"
408
 
409
+ #: contact_form.php:1292
410
  msgid "'FROM' field"
411
  msgstr "'Fra' feltet"
412
 
413
  # @ contact_form
414
+ #: contact_form.php:1297
 
 
 
 
 
 
415
  msgid "User name"
416
  msgstr "Brugernavn"
417
 
418
  # @ contact_form
419
+ #: contact_form.php:1299
420
  msgid ""
421
  "The name of the user who fills the form will be used in the field 'From'."
422
  msgstr ""
423
  "Navnet på den bruger, der udfylder formularen skal bruges i feltet 'Fra'."
424
 
425
  # @ contact_form
426
+ #: contact_form.php:1304 contact_form.php:3126 contact_form.php:3170
427
  msgid "Email"
428
  msgstr "e-mail"
429
 
430
  # @ contact_form
431
+ #: contact_form.php:1307
432
  msgid "User email"
433
  msgstr "Bruger E-mail"
434
 
435
  # @ contact_form
436
+ #: contact_form.php:1309
437
  msgid ""
438
  "The email address of the user who fills the form will be used in the field "
439
  "'From'."
441
  "E-mail-adressen på den bruger, der udfylder formularen skal bruges i feltet "
442
  "'Fra'."
443
 
444
+ #: contact_form.php:1312
445
  msgid ""
446
  "If this option is changed, email messages may be moved to the spam folder or "
447
  "email delivery failures may occur."
450
  "mappen eller email levering fejl kan opstå."
451
 
452
  # @ contact_form
453
+ #: contact_form.php:1318
454
  msgid "Required symbol"
455
  msgstr "Kræves symbol"
456
 
457
  # @ contact_form
458
+ #: contact_form.php:1328
459
  msgid "Fields"
460
  msgstr "Felter"
461
 
462
  # @ contact_form
463
+ #: contact_form.php:1329 contact_form.php:1356 contact_form.php:1383
464
+ #: contact_form.php:1403 contact_form.php:1442 contact_form.php:1527
465
  msgid "Used"
466
  msgstr "Brugt"
467
 
468
  # @ contact_form
469
+ #: contact_form.php:1330 contact_form.php:1345 contact_form.php:1360
470
+ #: contact_form.php:1387 contact_form.php:1407 contact_form.php:1420
471
+ #: contact_form.php:1446 contact_form.php:1459 contact_form.php:1483
472
  msgid "Required"
473
  msgstr "Kræves"
474
 
475
  # @ contact_form
476
+ #: contact_form.php:1332 contact_form.php:1365 contact_form.php:1425
477
+ #: contact_form.php:1464 contact_form.php:1488
478
  msgid "Visible"
479
  msgstr "Synlig"
480
 
481
  # @ contact_form
482
+ #: contact_form.php:1333 contact_form.php:1369 contact_form.php:1429
483
+ #: contact_form.php:1468 contact_form.php:1492
484
  msgid "Disabled for editing"
485
  msgstr "Handicappede til redigering"
486
 
487
  # @ contact_form
488
+ #: contact_form.php:1334 contact_form.php:1393 contact_form.php:1472
489
+ #: contact_form.php:1496
490
  msgid "Field's default value"
491
  msgstr "Feltets standardværdi"
492
 
493
  # @ contact_form
494
+ #: contact_form.php:1341
495
  msgid "Department selectbox"
496
  msgstr "Afdeling selectbox"
497
 
498
+ #: contact_form.php:1373
499
  msgid "Use User's name as a default value if the user is logged in."
500
  msgstr "Brug brugerens navn som standardværdi, hvis brugeren er logget på."
501
 
502
+ #: contact_form.php:1374 contact_form.php:1434
503
  msgid ""
504
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
505
  "in users."
508
  "journaliseret-i brugernes."
509
 
510
  # @ contact_form
511
+ #: contact_form.php:1380
512
  msgid "Location selectbox"
513
  msgstr "Beliggenhed selectbox"
514
 
515
+ #: contact_form.php:1433
 
 
 
 
 
 
 
 
 
 
 
516
  msgid "Use User's email as a default value if the user is logged in."
517
  msgstr ""
518
  "Brug brugerens e-mail som en standardværdi, hvis brugeren er logget på."
519
 
520
  # @ contact_form
521
+ #: contact_form.php:1520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
522
  msgid "Attachment block"
523
  msgstr "Vedhæftet fil blok"
524
 
525
  # @ contact_form
526
+ #: contact_form.php:1522
527
  msgid "Users can attach the following file formats"
528
  msgstr "Brugerne kan vedhæfte følgende filformater"
529
 
530
  # @ contact_form
531
+ #: contact_form.php:1540
532
  msgid "Add to the form"
533
  msgstr "Føje til formularen"
534
 
535
  # @ contact_form
536
+ #: contact_form.php:1545
537
  msgid "Tips below the Attachment"
538
  msgstr "Tips nedenfor den vedhæftede fil"
539
 
540
  # @ contact_form
541
+ #: contact_form.php:1554
542
  msgid "'Send me a copy' block"
543
  msgstr "'Sende mig en afskrift' blok"
544
 
 
 
 
 
 
 
 
 
545
  # @ contact_form
546
+ #: contact_form.php:1667
 
 
 
 
 
 
 
 
 
 
 
 
547
  msgid "Agreement checkbox"
548
  msgstr "Aftalen afkrydsningsfeltet"
549
 
550
  # @ contact_form
551
+ #: contact_form.php:1667
552
  msgid "Required checkbox for submitting the form"
553
  msgstr "Kræves afkrydsningsfeltet til at sende formularen"
554
 
555
  # @ contact_form
556
+ #: contact_form.php:1668
557
  msgid "Optional checkbox"
558
  msgstr "Valgfri afkrydsningsfeltet"
559
 
560
  # @ contact_form
561
+ #: contact_form.php:1668
562
  msgid "Optional checkbox, the results of which will be displayed in email"
563
  msgstr "Valgfri afkrydsningsfeltet, hvis resultater vil blive vist i e-mail"
564
 
565
  # @ contact_form
566
+ #: contact_form.php:1689
567
  msgid "Delete an attachment file from the server after the email is sent"
568
  msgstr "Slette en vedhæftet fil fra serveren, efter at e-mailen sendes"
569
 
570
  # @ contact_form
571
+ #: contact_form.php:1695
572
  msgid "Email in HTML format sending"
573
  msgstr "E-mail i HTML-format at sende"
574
 
575
  # @ contact_form
576
+ #: contact_form.php:1699
577
  msgid "Display additional info in the email"
578
  msgstr "Få vist yderligere info i e-mailen"
579
 
580
  # @ contact_form
581
+ #: contact_form.php:1705
582
  #, fuzzy
583
  msgid "Sent from (IP address)"
584
  msgstr "Sendt fra (ip adresse)"
585
 
586
  # @ contact_form
587
+ #: contact_form.php:1705
588
  msgid "Example: Sent from (IP address):\t127.0.0.1"
589
  msgstr "Eksempel: Sendt fra (IP adresse): 127.0.0.1"
590
 
591
  # @ contact_form
592
+ #: contact_form.php:1706 contact_form.php:3075 contact_form.php:3077
593
  msgid "Date/Time"
594
  msgstr "Dato / Tid"
595
 
596
  # @ contact_form
597
+ #: contact_form.php:1706
598
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
599
  msgstr "Eksempel: Dato/tid: 19 August 2013 8:50 pm"
600
 
601
  # @ contact_form
602
+ #: contact_form.php:1707 contact_form.php:3081 contact_form.php:3083
603
  msgid "Sent from (referer)"
604
  msgstr "Sendt fra (referer)"
605
 
606
  # @ contact_form
607
+ #: contact_form.php:1707
608
  msgid ""
609
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
610
  msgstr ""
611
  "Eksempel: Sendt fra (referer): http://bestwebsoft.com/contacts/contact-us/"
612
 
613
  # @ contact_form
614
+ #: contact_form.php:1708 contact_form.php:3087 contact_form.php:3089
615
  msgid "Using (user agent)"
616
  msgstr "Ved hjælp af (brugeragent)"
617
 
618
  # @ contact_form
619
+ #: contact_form.php:1708
620
  msgid ""
621
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
622
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
625
  "AppleWebKit/537.36 (KHTML, lige Gecko) Chrome/28.0.1500.95 Safari/537.36"
626
 
627
  # @ contact_form
628
+ #: contact_form.php:1713
629
  msgid "Language settings for the field names in the form"
630
  msgstr "Sprogindstillingerne for feltnavnene i form"
631
 
632
  # @ contact_form
633
+ #: contact_form.php:1722
634
  msgid "Add a language"
635
  msgstr "Tilføje et sprog"
636
 
637
  # @ contact_form
638
+ #: contact_form.php:1726
639
  msgid "Change the names of the contact form fields and error messages"
640
  msgstr "Ændre navne på kontaktpersoner formularfelter og fejlmeddelelser"
641
 
642
  # @ contact_form
643
+ #: contact_form.php:1731 contact_form.php:1827 contact_form.php:2081
644
+ #: contact_form.php:2086 contact_form.php:2096 contact_form.php:2101
645
+ #: contact_form.php:2106 contact_form.php:2111 contact_form.php:2121
646
+ #: contact_form.php:2126 contact_form.php:2135 contact_form.php:2149
647
+ #: contact_form.php:2154 contact_form.php:2159
648
  msgid "Default"
649
  msgstr "Standard"
650
 
651
  # @ contact_form
652
+ #: contact_form.php:1744 contact_form.php:1782
653
  msgid "click to expand/hide the list"
654
  msgstr "Klik for at udvide/skjule listen"
655
 
656
  # @ contact_form
657
+ #: contact_form.php:1753 contact_form.php:1791
658
  msgid "Tips below the Attachment block"
659
  msgstr "Tips nedenfor den vedhæftede fil blokere"
660
 
661
  # @ contact_form
662
+ #: contact_form.php:1756 contact_form.php:1794
663
  msgid "Error message for the Name field"
664
  msgstr "Fejlmeddelelse for feltet navn"
665
 
666
  # @ contact_form
667
+ #: contact_form.php:1757 contact_form.php:1795
668
  msgid "Error message for the Address field"
669
  msgstr "Fejlmeddelelse for feltet adresse"
670
 
671
  # @ contact_form
672
+ #: contact_form.php:1758 contact_form.php:1796
673
  msgid "Error message for the Email field"
674
  msgstr "Fejlmeddelelse for feltet E-mail"
675
 
676
  # @ contact_form
677
+ #: contact_form.php:1759 contact_form.php:1797
678
  msgid "Error message for the Phone field"
679
  msgstr "Fejlmeddelelse for feltet telefon"
680
 
681
  # @ contact_form
682
+ #: contact_form.php:1760 contact_form.php:1798
683
  msgid "Error message for the Subject field"
684
  msgstr "Fejlmeddelelse for feltet emne"
685
 
686
  # @ contact_form
687
+ #: contact_form.php:1761 contact_form.php:1799
688
  msgid "Error message for the Message field"
689
  msgstr "Fejl besked i feltet besked"
690
 
691
  # @ contact_form
692
+ #: contact_form.php:1762 contact_form.php:1800
693
  msgid "Error message about the file type for the Attachment field"
694
  msgstr "Fejlmeddelelse om filtypen til feltet vedhæftet fil"
695
 
696
  # @ contact_form
697
+ #: contact_form.php:1763 contact_form.php:1801
698
  msgid ""
699
  "Error message while uploading a file for the Attachment field to the server"
700
  msgstr "Fejlmeddelelse ved upload en fil til feltet vedhæftet fil til serveren"
701
 
702
  # @ contact_form
703
+ #: contact_form.php:1764 contact_form.php:1802
704
  msgid "Error message while moving the file for the Attachment field"
705
  msgstr "Fejlmeddelelse mens du flytter filen for feltet vedhæftet fil"
706
 
707
  # @ contact_form
708
+ #: contact_form.php:1765 contact_form.php:1803
709
  msgid "Error message when file size limit for the Attachment field is exceeded"
710
  msgstr ""
711
  "Fejlmeddelelse, når filstørrelse for feltet vedhæftet fil er overskredet"
712
 
713
  # @ contact_form
714
+ #: contact_form.php:1766 contact_form.php:1804
715
  msgid "Error message for the Captcha field"
716
  msgstr "Fejlmeddelelse for Captcha feltet"
717
 
718
  # @ contact_form
719
+ #: contact_form.php:1767 contact_form.php:1805
720
  msgid "Error message for the whole form"
721
  msgstr "Fejlmeddelelse for hele formularen"
722
 
723
  # @ contact_form
724
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
725
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
726
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
727
+ #: contact_form.php:3516
728
  msgid "Use shortcode"
729
  msgstr "Brug kortkode"
730
 
731
  # @ contact_form
732
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
733
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
734
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
735
+ #: contact_form.php:3516
736
  msgid "for this language"
737
  msgstr "for dette sprog"
738
 
739
  # @ contact_form
740
+ #: contact_form.php:1818
741
  msgid "Use the changed names of the contact form fields in the email"
742
  msgstr "Bruge ændret navnene på felterne kontaktformularen i e-mailen"
743
 
744
  # @ contact_form
745
+ #: contact_form.php:1824
746
  msgid "Action after email is sent"
747
  msgstr "Handling efter at e-mail er sendt"
748
 
749
  # @ contact_form
750
+ #: contact_form.php:1826
751
  msgid "Display text"
752
  msgstr "Vis tekst"
753
 
754
  # @ contact_form
755
+ #: contact_form.php:1840 contact_form.php:1854
756
  msgid "Text"
757
  msgstr "Tekst"
758
 
759
  # @ contact_form
760
+ #: contact_form.php:1865
761
  msgid "Redirect to the page"
762
  msgstr "Viderstil til side"
763
 
764
  # @ contact_form
765
+ #: contact_form.php:1866
766
  msgid "Url"
767
  msgstr "Url"
768
 
769
+ #: contact_form.php:1877
770
  msgid "Add field 'Reply-To' to the email header"
771
  msgstr "Tilføj feltet 'Svar til' til e-mail-header"
772
 
773
+ #: contact_form.php:1879
774
  msgid "Field 'Reply-To' will be initialized by user email"
775
  msgstr "Feltet 'Svar til' vil være initialiseret af brugeren e-mail"
776
 
777
  # @ contact_form_pro
778
+ #: contact_form.php:1883
779
  msgid "Auto Response"
780
  msgstr "Autosvar"
781
 
782
  # @ contact_form
783
+ #: contact_form.php:1887
784
  #, php-format
785
  msgid ""
786
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
791
  "til at vise data fra feltet besked samt %%sITENAME %% for at vise blog navn."
792
 
793
  # @ default
794
+ #: contact_form.php:1912 contact_form.php:2398
795
  msgid "Save Changes"
796
  msgstr "Gem ændringer"
797
 
798
+ #: contact_form.php:1925
799
  #, php-format
800
  msgid ""
801
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
802
  msgstr ""
803
  "Venligst JavaScript at ændre '%s', '%s' indstillinger og felter sortering."
804
 
805
+ #: contact_form.php:1925 contact_form.php:1934
806
+ msgid "Form layout"
807
+ msgstr "Formular Layout"
808
+
809
+ # @ contact_form
810
+ #: contact_form.php:1925 contact_form.php:1946
811
+ msgid "Submit position"
812
+ msgstr "Indsende position"
813
+
814
+ #: contact_form.php:1938
815
  msgid "One column"
816
  msgstr "En kolonne"
817
 
818
+ #: contact_form.php:1941
819
  msgid "Two columns"
820
  msgstr "To kolonner"
821
 
822
+ #: contact_form.php:1950 contact_form.php:1969 contact_form.php:1987
823
+ #: contact_form.php:2002
824
  msgid "Left"
825
  msgstr "Venstre"
826
 
827
+ #: contact_form.php:1953 contact_form.php:1975 contact_form.php:1990
828
+ #: contact_form.php:2008
829
  msgid "Right"
830
  msgstr "Højre"
831
 
832
+ #: contact_form.php:1965
833
  msgid "Form align"
834
  msgstr ""
835
 
836
+ #: contact_form.php:1972 contact_form.php:2005
837
  msgid "Center"
838
  msgstr ""
839
 
840
  # @ contact_form
841
+ #: contact_form.php:1980
842
  #, fuzzy
843
  msgid "Labels position"
844
  msgstr "Indsende position"
845
 
846
+ #: contact_form.php:1984
847
  msgid "Top"
848
  msgstr ""
849
 
850
+ #: contact_form.php:1993
851
  msgid "Bottom"
852
  msgstr ""
853
 
854
+ #: contact_form.php:1998
855
  msgid "Labels align"
856
  msgstr ""
857
 
858
  # @ contact_form
859
+ #: contact_form.php:2013
860
  msgid "Errors output"
861
  msgstr "Fejl output"
862
 
863
  # @ contact_form
864
+ #: contact_form.php:2016
865
  msgid "Display error messages"
866
  msgstr "Vise fejlmeddelelser"
867
 
868
  # @ contact_form
869
+ #: contact_form.php:2017
870
  msgid "Color of the input field errors."
871
  msgstr "Farven på input felt fejlene."
872
 
873
  # @ contact_form
874
+ #: contact_form.php:2018
875
  msgid "Display error messages & color of the input field errors"
876
  msgstr "Vise fejlmeddelelser & farven på input felt fejlene"
877
 
878
  # @ contact_form
879
+ #: contact_form.php:2023
880
  msgid "Add placeholder to the input blocks"
881
  msgstr "Tilføje pladsholder til input blokke"
882
 
883
  # @ contact_form
884
+ #: contact_form.php:2029
885
  msgid "Add tooltips"
886
  msgstr "Føje værktøjstip"
887
 
888
  # @ contact_form
889
+ #: contact_form.php:2043
890
  msgid "Email address"
891
  msgstr "E-mail-adresse:"
892
 
893
  # @ contact_form
894
+ #: contact_form.php:2048 contact_form.php:3142 contact_form.php:3183
895
  msgid "Phone Number"
896
  msgstr "Telefon:"
897
 
898
  # @ contact_form
899
+ #: contact_form.php:2074
 
 
 
 
 
900
  msgid "Style options"
901
  msgstr "Indstilling af fremtoning"
902
 
903
  # @ contact_form
904
+ #: contact_form.php:2078
905
  msgid "Text color"
906
  msgstr "Tekstfarve"
907
 
908
  # @ contact_form
909
+ #: contact_form.php:2083
910
  msgid "Label text color"
911
  msgstr "Etiket tekstfarve"
912
 
913
  # @ contact_form
914
+ #: contact_form.php:2088
915
  msgid "Placeholder color"
916
  msgstr "Pladsholder farve"
917
 
918
  # @ contact_form
919
+ #: contact_form.php:2093
920
  msgid "Errors color"
921
  msgstr "Fejl farve"
922
 
923
  # @ contact_form
924
+ #: contact_form.php:2098
925
  msgid "Error text color"
926
  msgstr "Fejl tekstfarve"
927
 
928
  # @ contact_form
929
+ #: contact_form.php:2103
930
  msgid "Background color of the input field errors"
931
  msgstr "Baggrundsfarven af input felt fejl"
932
 
933
  # @ contact_form
934
+ #: contact_form.php:2108
935
  msgid "Border color of the input field errors"
936
  msgstr "Kantfarven på inputfelt fejl"
937
 
938
  # @ contact_form
939
+ #: contact_form.php:2113
940
  msgid "Placeholder color of the input field errors"
941
  msgstr "Pladsholder farven på input felt fejlene"
942
 
943
  # @ contact_form
944
+ #: contact_form.php:2118
945
  msgid "Input fields"
946
  msgstr "Felter"
947
 
948
  # @ contact_form
949
+ #: contact_form.php:2123
950
  msgid "Input fields background color"
951
  msgstr "Inputfelter baggrundsfarve"
952
 
953
  # @ contact_form
954
+ #: contact_form.php:2128
955
  msgid "Text fields color"
956
  msgstr "Tekst felter farve"
957
 
958
  # @ contact_form
959
+ #: contact_form.php:2132
960
  msgid "Border width in px, numbers only"
961
  msgstr "Kantbredde i px, kun tal"
962
 
963
  # @ contact_form
964
+ #: contact_form.php:2137 contact_form.php:2161
965
  msgid "Border color"
966
  msgstr "Ramme farve"
967
 
968
  # @ contact_form
969
+ #: contact_form.php:2142
970
  msgid "Submit button"
971
  msgstr "Send knap"
972
 
973
  # @ contact_form
974
+ #: contact_form.php:2146
975
  msgid "Width in px, numbers only"
976
  msgstr "Bredde i px, kun tal"
977
 
978
  # @ contact_form
979
+ #: contact_form.php:2151
980
  msgid "Button color"
981
  msgstr "Knap farve"
982
 
983
  # @ contact_form
984
+ #: contact_form.php:2156
985
  msgid "Button text color"
986
  msgstr "Knap tekstfarve"
987
 
988
  # @ contact_form
989
+ #: contact_form.php:2188
990
  msgid "Contact Form | Preview"
991
  msgstr "Kontakt Form | Preview"
992
 
993
+ #: contact_form.php:2189
994
  msgid "Drag the necessary field to sort fields."
995
  msgstr "Træk feltet nødvendigt hvis du vil sortere felterne."
996
 
997
  # @ contact_form
998
+ #: contact_form.php:2385
999
+ #, fuzzy
1000
  msgid ""
1001
  "If you would like to add the Contact Form to your website, just copy and "
1002
+ "paste this shortcode to your post or page or widget"
1003
  msgstr ""
1004
  "Hvis du vil tilføje kontakt formular på dit websted, blot kopiere og "
1005
  "indsætte denne ufuldkommenhed til din post eller side eller widget:"
1006
 
1007
  # @ contact_form
1008
+ #: contact_form.php:2501
1009
  msgid "Sorry, email message could not be delivered."
1010
  msgstr "Beklager, e-mailen ikke kunne leveres."
1011
 
1012
  # @ contact_form
1013
+ #: contact_form.php:3069 contact_form.php:3071
1014
  msgid "Sent from (ip address)"
1015
  msgstr "Sendt fra (ip adresse)"
1016
 
1017
  # @ contact_form
1018
+ #: contact_form.php:3099
1019
  msgid "Contact from"
1020
  msgstr "Kontakt fra formen"
1021
 
1022
  # @ contact_form
1023
+ #: contact_form.php:3104 contact_form.php:3153
 
 
 
 
 
1024
  msgid "Site"
1025
  msgstr "Hjemmeside"
1026
 
1027
  # @ contact_form
1028
+ #: contact_form.php:3283
1029
  msgid ""
1030
  "If you can see this MIME, it means that the MIME type is not supported by "
1031
  "your email client!"
1034
  "din e-mail-klient!"
1035
 
1036
  # @ contact_form
1037
+ #: contact_form.php:3366
1038
  msgid "FAQ"
1039
  msgstr "FAQ"
1040
 
1041
  # @ contact_form
1042
+ #: contact_form.php:3367
1043
  msgid "Support"
1044
  msgstr "Support"
1045
 
1046
  # @ contact_form
1047
+ #: contact_form.php:3416
1048
  msgid "Are you sure that you want to delete this language data?"
1049
  msgstr "Er du sikker på at du vil slette dette sprogdata?"
1050
 
1051
  # @ contact_form
1052
+ #: contact_form.php:3437
1053
  msgid "Add multiple forms"
1054
  msgstr "Tilføje flere formularer"
1055
 
1056
+ #: contact_form.php:3437
1057
  msgid ""
1058
  "Install Contact Form Multi plugin to create unlimited number of contact "
1059
  "forms."
1062
  "formularer."
1063
 
1064
  # @ contact_form
1065
+ #: contact_form.php:3442
1066
  msgid "Learn more"
1067
  msgstr "Få mere at vide"
1068
 
1069
+ #: contact_form.php:3663
1070
  msgid "Close notice"
1071
  msgstr ""
1072
 
1073
  # @ contact_form
1074
+ #: contact_form.php:3668
1075
  msgid "allows to store your messages to the database."
1076
  msgstr "giver mulighed for at gemme dine meddelelser til databasen."
1077
 
1078
  # @ contact_form
1079
+ #: contact_form.php:3669
1080
  msgid "Manage messages that have been sent from your website."
1081
  msgstr "Administrere meddelelser, der er blevet sendt fra dit websted."
1082
 
1083
  # @ contact_form
1084
+ #: contact_form.php:3727
1085
  msgid "Contact form"
1086
  msgstr "Kontaktformular"
1087
 
1088
  # @ contact_form
1089
+ #: contact_form.php:3740 contact_form.php:3750
1090
  msgid "Language"
1091
  msgstr "Sprog"
1092
+
1093
+ # @ contact_form
1094
+ #~ msgid "Name:"
1095
+ #~ msgstr "Navn:"
1096
+
1097
+ # @ contact_form
1098
+ #~ msgid "Address:"
1099
+ #~ msgstr "Adresse:"
1100
+
1101
+ # @ contact_form
1102
+ #~ msgid "Email Address:"
1103
+ #~ msgstr "E-mail-adresse:"
1104
+
1105
+ # @ contact_form
1106
+ #~ msgid "Phone number:"
1107
+ #~ msgstr "Telefon:"
1108
+
1109
+ # @ contact_form
1110
+ #~ msgid "Subject:"
1111
+ #~ msgstr "Emne:"
1112
+
1113
+ # @ contact_form
1114
+ #~ msgid "Message:"
1115
+ #~ msgstr "Besked:"
1116
+
1117
+ # @ contact_form
1118
+ #~ msgid "Attachment:"
1119
+ #~ msgstr "Vedhæft fil:"
1120
+
1121
+ # @ contact_form
1122
+ #~ msgid ""
1123
+ #~ "Please enable JavaScript to add language in the contact form, change the "
1124
+ #~ "names of the contact form fields and error messages."
1125
+ #~ msgstr ""
1126
+ #~ "Venligst Aktiver JavaScript for at tilføje sprog i "
1127
+ #~ "kontaktpersonformularen, ændre navne på kontaktpersoner formularfelter og "
1128
+ #~ "fejlmeddelelser."
1129
+
1130
+ # @ contact_form
1131
+ #~ msgid "What to use?"
1132
+ #~ msgstr "Hvad skal man bruge?"
1133
+
1134
+ # @ contact_form
1135
+ #~ msgid "Using Contact Form to DB by BestWebSoft"
1136
+ #~ msgstr "Ved hjælp af kontaktformularen til DB ved BestWebSoft"
1137
+
1138
+ # @ contact_form
1139
+ #, fuzzy
1140
+ #~ msgid "Activate Captcha"
1141
+ #~ msgstr "Aktivere captcha"
1142
+
1143
+ # @ contact_form
1144
+ #, fuzzy
1145
+ #~ msgid "Download Captcha"
1146
+ #~ msgstr "Download captcha"
languages/contact-form-plugin-de_DE.mo CHANGED
Binary file
languages/contact-form-plugin-de_DE.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: 2016-06-27 16:30+0300\n"
6
- "PO-Revision-Date: 2016-06-27 16:30+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Alex <private183@web.de>\n"
9
  "Language: de_DE\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: contact_form.php:37 contact_form.php:1030
21
  msgid "Contact Form Settings"
22
  msgstr "Kontakt-Form Einstellungen"
23
 
@@ -25,35 +25,46 @@ msgstr "Kontakt-Form Einstellungen"
25
  msgid "Contact Form"
26
  msgstr "Kontakt-Form"
27
 
28
- #: contact_form.php:165 contact_form.php:1565 contact_form.php:1599
29
- msgid "Name:"
30
- msgstr "Name:"
 
 
31
 
32
- #: contact_form.php:166 contact_form.php:1566 contact_form.php:1600
33
- msgid "Address:"
34
- msgstr "Adresse:"
 
 
35
 
36
- #: contact_form.php:167 contact_form.php:1567 contact_form.php:1601
37
- msgid "Email Address:"
 
38
  msgstr "E-Mail Adresse:"
39
 
40
- #: contact_form.php:168 contact_form.php:1568 contact_form.php:1602
41
- msgid "Phone number:"
 
42
  msgstr "Telefonnummer:"
43
 
44
- #: contact_form.php:169 contact_form.php:1569 contact_form.php:1603
45
- msgid "Subject:"
46
- msgstr "Betreff:"
 
 
47
 
48
- #: contact_form.php:170 contact_form.php:1570 contact_form.php:1604
49
- msgid "Message:"
50
- msgstr "Inhalt:"
 
 
51
 
52
- #: contact_form.php:171 contact_form.php:1571 contact_form.php:1605
53
- msgid "Attachment:"
 
54
  msgstr "Anhang:"
55
 
56
- #: contact_form.php:172
57
  msgid ""
58
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
59
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -61,77 +72,77 @@ msgstr ""
61
  "Unterstützte Dateitypen: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
62
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
63
 
64
- #: contact_form.php:173 contact_form.php:1573 contact_form.php:1607
65
  msgid "Send me a copy"
66
  msgstr "Kopie an mich senden"
67
 
68
- #: contact_form.php:174 contact_form.php:1574 contact_form.php:1608
69
  msgid "Submit"
70
  msgstr "Senden"
71
 
72
- #: contact_form.php:175
73
  msgid "Your name is required."
74
  msgstr "Dein Name wird benötigt."
75
 
76
- #: contact_form.php:176
77
  msgid "Address is required."
78
  msgstr "Adresse wird benötigt"
79
 
80
- #: contact_form.php:177
81
  msgid "A valid email address is required."
82
  msgstr "Eine gültige E-Mail Adresse wird benötigt."
83
 
84
- #: contact_form.php:178
85
  msgid "Phone number is required."
86
  msgstr "Deine Telefonnummer wird benötigt."
87
 
88
- #: contact_form.php:179
89
  msgid "Subject is required."
90
  msgstr "Ein Betreff wird benötigt."
91
 
92
- #: contact_form.php:180
93
  msgid "Message text is required."
94
  msgstr "Ein Inhalt wird benötigt."
95
 
96
- #: contact_form.php:181
97
  msgid "File format is not valid."
98
  msgstr "Datei Format ist nicht erlaubt."
99
 
100
- #: contact_form.php:182
101
  msgid "File upload error."
102
  msgstr "Datei-Übertragungsfehler"
103
 
104
- #: contact_form.php:183
105
  msgid "The file could not be uploaded."
106
  msgstr "Die Datei konnte nicht hochgeladen werden."
107
 
108
- #: contact_form.php:184
109
  msgid "This file is too large."
110
  msgstr "Diese Datei ist zu groß."
111
 
112
- #: contact_form.php:185
113
  msgid "Please fill out the CAPTCHA."
114
  msgstr "Bitte CAPTCHA ausfüllen."
115
 
116
- #: contact_form.php:186
117
  msgid "Please make corrections below and try again."
118
  msgstr "Bitte mach unten korrekturen und versuche es erneut."
119
 
120
- #: contact_form.php:188
121
  msgid "Thank you for contacting us."
122
  msgstr "Danke für Ihre Nachricht."
123
 
124
- #: contact_form.php:688 contact_form.php:998
125
  msgid "Settings saved."
126
  msgstr "Einstellungen gespeichert."
127
 
128
- #: contact_form.php:940
129
  msgid ""
130
  "Email 'FROM' field option was changed, which may cause email messages being "
131
  "moved to the spam folder or email delivery failures."
132
  msgstr ""
133
 
134
- #: contact_form.php:950
135
  msgid ""
136
  "If the 'Redirect to page' option is selected then the URL field should be in "
137
  "the following format"
@@ -139,12 +150,12 @@ msgstr ""
139
  "Wenn die 'Redirect to page/Umleiten zur Seite' Option verwendet wird, dann "
140
  "sollte das Feld URL in folgendem Format sein"
141
 
142
- #: contact_form.php:957
143
  #, fuzzy
144
  msgid "Such user does not exist."
145
  msgstr "Dieser User exestiert nicht. Einstellungen werden nicht gespeichert."
146
 
147
- #: contact_form.php:967
148
  #, fuzzy
149
  msgid ""
150
  "Please enter a valid email address in the 'Use this email address' field."
@@ -152,78 +163,63 @@ msgstr ""
152
  "Bitte geben sie eine gültige Email Adresse in das 'FROM/VON' Feld ein. "
153
  "Einstellungen werden nicht gespeichert."
154
 
155
- #: contact_form.php:975
156
  #, fuzzy
157
  msgid "Please enter a valid email address in the 'FROM' field."
158
  msgstr ""
159
  "Bitte geben sie eine gültige Email Adresse in das 'FROM/VON' Feld ein. "
160
  "Einstellungen werden nicht gespeichert."
161
 
162
- #: contact_form.php:1000
163
  #, fuzzy
164
  msgid "Settings are not saved."
165
  msgstr "Einstellungen gespeichert."
166
 
167
- #: contact_form.php:1027
168
  msgid "All plugin settings were restored."
169
  msgstr ""
170
 
171
- #: contact_form.php:1032
172
  msgid "How to Use Step-by-step Instruction"
173
  msgstr ""
174
 
175
- #: contact_form.php:1035 contact_form.php:3024 contact_form.php:3038
176
  msgid "Settings"
177
  msgstr "Einstellungen"
178
 
179
- #: contact_form.php:1036
180
  #, fuzzy
181
  msgid "Additional settings"
182
  msgstr "Weitere Optionen"
183
 
184
- #: contact_form.php:1037
185
  msgid "Appearance"
186
  msgstr ""
187
 
188
- #: contact_form.php:1038
189
  msgid "Custom code"
190
  msgstr ""
191
 
192
- #: contact_form.php:1039
193
  msgid "Go PRO"
194
  msgstr "Go PRO"
195
 
196
- #: contact_form.php:1045
197
- #, fuzzy
198
- msgid ""
199
- "Please enable JavaScript to add language in the contact form, change the "
200
- "names of the contact form fields and error messages."
201
- msgstr "Verändere die Namen der Kontakt-Form-Felder und Fehlermeldungen"
202
-
203
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1740
204
- msgid "Form layout"
205
- msgstr ""
206
-
207
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1752
208
  #, fuzzy
209
- msgid "Submit position"
210
- msgstr "Sende-Schaltfläche"
211
-
212
- #: contact_form.php:1057
213
- msgid "Notice:"
214
  msgstr "Notiz:"
215
 
216
- #: contact_form.php:1061
217
  msgid "NEW_FORM"
218
  msgstr ""
219
 
220
- #: contact_form.php:1062
221
  msgid ""
222
  "If you want to create multiple contact forms, please install the Contact "
223
  "Form Multi plugin."
224
  msgstr ""
225
 
226
- #: contact_form.php:1071
227
  #, fuzzy, php-format
228
  msgid ""
229
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -232,7 +228,7 @@ msgstr ""
232
  "Wenn sie die Kontakt-Form auf ihrer Webseite plazieren möchten, kopieren und "
233
  "fügen sie diesen shortcode in ihrem/r Beitrag, Seite oder Widget ein:"
234
 
235
- #: contact_form.php:1077
236
  #, php-format
237
  msgid ""
238
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -241,7 +237,7 @@ msgid ""
241
  "language."
242
  msgstr ""
243
 
244
- #: contact_form.php:1086
245
  msgid ""
246
  "If you leave the fields empty, the messages will be sent to the email "
247
  "address specified during registration."
@@ -249,130 +245,138 @@ msgstr ""
249
  "Wenn sie die Felder leer lassen, wird die Nachricht an die bei der "
250
  "registrierung angegebenen E-Mail Adresse gesendet."
251
 
252
- #: contact_form.php:1089
253
- msgid "The user's email address:"
 
254
  msgstr "Benutzer E-Mail Adresse"
255
 
256
- #: contact_form.php:1093
257
  #, fuzzy
258
  msgid "Select a username"
259
  msgstr "Benutzername erstellen"
260
 
261
- #: contact_form.php:1106
 
262
  msgid ""
263
- "Enter a username of the person who should get the messages from the contact "
264
  "form."
265
  msgstr ""
266
  "Geben sie den Benutzernamen des Users an, der die Nachrichten der Kontakt-"
267
  "Form erhalten soll."
268
 
269
- #: contact_form.php:1110
270
- msgid "Use this email address:"
 
271
  msgstr "Nutzen sie diese E-Mail Adresse"
272
 
273
- #: contact_form.php:1114
274
- msgid "Enter the email address you want the messages forwarded to."
 
275
  msgstr ""
276
  "Geben sie die E-Mail Adresse ein, an welche die Nachricht weitergeleitet "
277
  "werden soll."
278
 
279
- #: contact_form.php:1121 contact_form.php:1487 contact_form.php:1679
280
- #: contact_form.php:1767 contact_form.php:3119
281
  msgid "Close"
282
  msgstr ""
283
 
284
- #: contact_form.php:1125
285
- msgid "Add department selectbox to the contact form:"
 
286
  msgstr "Füge Abteilungs- Auswahlbox zu der Kontakt-Form:"
287
 
288
- #: contact_form.php:1133 contact_form.php:1496 contact_form.php:1698
289
- #: contact_form.php:1973
290
  msgid "If you upgrade to Pro version all your settings will be saved."
291
  msgstr "Wenn sie auf Pro upgraden werden alle ihre Einstellungen gespeichert"
292
 
293
- #: contact_form.php:1140 contact_form.php:1407 contact_form.php:1501
294
- #: contact_form.php:1705 contact_form.php:1980
295
  msgid "Unlock premium options by upgrading to Pro version"
296
  msgstr ""
297
 
298
- #: contact_form.php:1143 contact_form.php:1410 contact_form.php:1504
299
- #: contact_form.php:1708 contact_form.php:1983 contact_form.php:3329
300
  msgid "Learn More"
301
  msgstr ""
302
 
303
- #: contact_form.php:1151
304
  msgid "Save emails to the database"
305
  msgstr "Speicher E-Mails in die Datenbank"
306
 
307
- #: contact_form.php:1156
308
  msgid "Using"
309
  msgstr "Verwendet"
310
 
311
- #: contact_form.php:1159 contact_form.php:1163
 
 
 
 
 
 
312
  #, fuzzy
313
- msgid "Using Contact Form to DB by BestWebSoft"
314
- msgstr "Verwende 'Kontakt-Form in die DB' powered by"
315
 
316
- #: contact_form.php:1159
 
317
  #, fuzzy
318
  msgid "Activate"
319
  msgstr "Aktiviere captcha"
320
 
321
- #: contact_form.php:1163
 
322
  msgid "Download"
323
  msgstr "Download"
324
 
325
- #: contact_form.php:1173
326
- msgid "What to use?"
327
- msgstr "Was soll verwendet werden?"
328
 
329
- #: contact_form.php:1178
330
  msgid "Wp-mail"
331
  msgstr "Wp-mail"
332
 
333
- #: contact_form.php:1180
334
  #, fuzzy
335
  msgid "You can use the Wordpress wp_mail function for mailing"
336
  msgstr "Sie können die wp_mail Funktion für das versenden verwenden."
337
 
338
- #: contact_form.php:1183
339
  msgid "Mail"
340
  msgstr "Mail"
341
 
342
- #: contact_form.php:1185
343
  #, fuzzy
344
  msgid "You can use the PHP mail function for mailing"
345
  msgstr "Sie können die wp_mail Funktion für das versenden verwenden."
346
 
347
- #: contact_form.php:1190
348
  msgid "'FROM' field"
349
  msgstr ""
350
 
351
- #: contact_form.php:1192 contact_form.php:1251 contact_form.php:1839
352
- #: contact_form.php:2810 contact_form.php:2846
353
- msgid "Name"
354
- msgstr "Name"
355
-
356
- #: contact_form.php:1195
357
  msgid "User name"
358
  msgstr "Benutzer Name"
359
 
360
- #: contact_form.php:1197
361
  msgid ""
362
  "The name of the user who fills the form will be used in the field 'From'."
363
  msgstr ""
364
  "Der Name des Benutzers, der das Formular ausfüllt, wird im Feld 'From/Von' "
365
  "verwendt."
366
 
367
- #: contact_form.php:1202 contact_form.php:2821 contact_form.php:2853
368
  msgid "Email"
369
  msgstr "E-Mail"
370
 
371
- #: contact_form.php:1205
372
  msgid "User email"
373
  msgstr "Benutzer E-Mail"
374
 
375
- #: contact_form.php:1207
376
  msgid ""
377
  "The email address of the user who fills the form will be used in the field "
378
  "'From'."
@@ -380,191 +384,149 @@ msgstr ""
380
  "Die E-Mail Adresse des Benutzers, der das Formular ausfüllt, wird im Feld "
381
  "'From/Von' verwendt."
382
 
383
- #: contact_form.php:1210
384
  msgid ""
385
  "If this option is changed, email messages may be moved to the spam folder or "
386
  "email delivery failures may occur."
387
  msgstr ""
388
 
389
- #: contact_form.php:1216
390
  msgid "Required symbol"
391
  msgstr "Benötigtes Symbol"
392
 
393
- #: contact_form.php:1226
394
  msgid "Fields"
395
  msgstr "Felder"
396
 
397
- #: contact_form.php:1227 contact_form.php:1254 contact_form.php:1281
398
- #: contact_form.php:1301 contact_form.php:1340 contact_form.php:1425
399
  msgid "Used"
400
  msgstr "Benutzt"
401
 
402
- #: contact_form.php:1228 contact_form.php:1243 contact_form.php:1258
403
- #: contact_form.php:1285 contact_form.php:1305 contact_form.php:1318
404
- #: contact_form.php:1344 contact_form.php:1357 contact_form.php:1381
405
  msgid "Required"
406
  msgstr "Benötigt"
407
 
408
- #: contact_form.php:1230 contact_form.php:1263 contact_form.php:1323
409
- #: contact_form.php:1362 contact_form.php:1386
410
  msgid "Visible"
411
  msgstr "Sichtbar"
412
 
413
- #: contact_form.php:1231 contact_form.php:1267 contact_form.php:1327
414
- #: contact_form.php:1366 contact_form.php:1390
415
  msgid "Disabled for editing"
416
  msgstr "Bearbeitung ist ausgeschaltet"
417
 
418
- #: contact_form.php:1232 contact_form.php:1291 contact_form.php:1370
419
- #: contact_form.php:1394
420
  msgid "Field's default value"
421
  msgstr "Standard-Feld-Wert"
422
 
423
- #: contact_form.php:1239
424
  msgid "Department selectbox"
425
  msgstr ""
426
 
427
- #: contact_form.php:1271
428
  msgid "Use User's name as a default value if the user is logged in."
429
  msgstr ""
430
 
431
- #: contact_form.php:1272 contact_form.php:1332
432
  msgid ""
433
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
434
  "in users."
435
  msgstr ""
436
 
437
- #: contact_form.php:1278
438
  msgid "Location selectbox"
439
  msgstr ""
440
 
441
- #: contact_form.php:1298 contact_form.php:1844 contact_form.php:2816
442
- #: contact_form.php:2850
443
- msgid "Address"
444
- msgstr "Adresse: "
445
-
446
- #: contact_form.php:1314
447
- msgid "Email Address"
448
- msgstr "E-Mail Adresse:"
449
-
450
- #: contact_form.php:1331
451
  msgid "Use User's email as a default value if the user is logged in."
452
  msgstr ""
453
 
454
- #: contact_form.php:1337
455
- msgid "Phone number"
456
- msgstr "Telefonnummer:"
457
-
458
- #: contact_form.php:1353 contact_form.php:1859 contact_form.php:2831
459
- #: contact_form.php:2859
460
- msgid "Subject"
461
- msgstr "Betreff"
462
-
463
- #: contact_form.php:1377 contact_form.php:1863 contact_form.php:2834
464
- #: contact_form.php:2861
465
- msgid "Message"
466
- msgstr "Inhalt"
467
-
468
- #: contact_form.php:1418
469
  msgid "Attachment block"
470
  msgstr "Anhang-Block"
471
 
472
- #: contact_form.php:1420
473
  msgid "Users can attach the following file formats"
474
  msgstr "Benutzer können die folgenden Formate anhängen:"
475
 
476
- #: contact_form.php:1438
477
  msgid "Add to the form"
478
  msgstr "Füge in die Form"
479
 
480
- #: contact_form.php:1443
481
  msgid "Tips below the Attachment"
482
  msgstr "Tipps unterhalb des Anhangs"
483
 
484
- #: contact_form.php:1452
485
  msgid "'Send me a copy' block"
486
  msgstr "'Kopie an mich senden' Block"
487
 
488
- #: contact_form.php:1464
489
- #, fuzzy
490
- msgid "Activate Subscriber"
491
- msgstr "Geactiveerde plugins"
492
-
493
- #: contact_form.php:1468
494
- msgid "Download Subscriber"
495
- msgstr ""
496
-
497
- #: contact_form.php:1477
498
- #, fuzzy
499
- msgid "Activate Captcha"
500
- msgstr "Aktiviere captcha"
501
-
502
- #: contact_form.php:1481
503
- #, fuzzy
504
- msgid "Download Captcha"
505
- msgstr "Download captcha"
506
-
507
- #: contact_form.php:1491
508
  msgid "Agreement checkbox"
509
  msgstr "Agreement checkbox"
510
 
511
- #: contact_form.php:1491
512
  msgid "Required checkbox for submitting the form"
513
  msgstr "Benötigte checkbox zur übermittlung des Formulars"
514
 
515
- #: contact_form.php:1492
516
  msgid "Optional checkbox"
517
  msgstr "Optionale checkbox"
518
 
519
- #: contact_form.php:1492
520
  msgid "Optional checkbox, the results of which will be displayed in email"
521
  msgstr "Optionale checkbox, das Ergebnis davon wird in der E-Mail angezeigt"
522
 
523
- #: contact_form.php:1513
524
  msgid "Delete an attachment file from the server after the email is sent"
525
  msgstr "Lösche die Anhang-Datei vom Server nachdem die E-Mail gesendet wurde"
526
 
527
- #: contact_form.php:1519
528
  msgid "Email in HTML format sending"
529
  msgstr "E-Mail im HTML Format"
530
 
531
- #: contact_form.php:1523
532
  msgid "Display additional info in the email"
533
  msgstr "Zeige weitere Informationen in der E-Mail"
534
 
535
- #: contact_form.php:1529
536
  #, fuzzy
537
  msgid "Sent from (IP address)"
538
  msgstr "Gesendet von (IP-Adresse)"
539
 
540
- #: contact_form.php:1529
541
  msgid "Example: Sent from (IP address):\t127.0.0.1"
542
  msgstr "Beispiel: Gesendet von (IP-Adresse):\t127.0.0.1"
543
 
544
- #: contact_form.php:1530 contact_form.php:2783 contact_form.php:2785
545
  msgid "Date/Time"
546
  msgstr "Datum/Zeit"
547
 
548
- #: contact_form.php:1530
549
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
550
  msgstr "Beispiel: Datum/Zeit:\tAugust 19, 2013 8:50 pm"
551
 
552
- #: contact_form.php:1531 contact_form.php:2789 contact_form.php:2791
553
  msgid "Sent from (referer)"
554
  msgstr "Gesendet von (referer)"
555
 
556
- #: contact_form.php:1531
557
  msgid ""
558
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
559
  msgstr ""
560
  "Beispiel: Gesendet von (referer):\thttp://bestwebsoft.com/contacts/contact-"
561
  "us/"
562
 
563
- #: contact_form.php:1532 contact_form.php:2795 contact_form.php:2797
564
  msgid "Using (user agent)"
565
  msgstr "Verwendet (user agent)"
566
 
567
- #: contact_form.php:1532
568
  msgid ""
569
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
570
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -572,139 +534,139 @@ msgstr ""
572
  "Beispiel: Verwendet (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
573
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
574
 
575
- #: contact_form.php:1537
576
  msgid "Language settings for the field names in the form"
577
  msgstr "Benutzer-Einstellungen für die Feld-Namen in der Form"
578
 
579
- #: contact_form.php:1546
580
  msgid "Add a language"
581
  msgstr "Hinzufügen einer Sprache"
582
 
583
- #: contact_form.php:1550
584
  msgid "Change the names of the contact form fields and error messages"
585
  msgstr "Verändere die Namen der Kontakt-Form-Felder und Fehlermeldungen"
586
 
587
- #: contact_form.php:1555 contact_form.php:1642 contact_form.php:1887
588
- #: contact_form.php:1892 contact_form.php:1902 contact_form.php:1907
589
- #: contact_form.php:1912 contact_form.php:1917 contact_form.php:1927
590
- #: contact_form.php:1932 contact_form.php:1941 contact_form.php:1955
591
- #: contact_form.php:1960 contact_form.php:1965
592
  msgid "Default"
593
  msgstr "Standard"
594
 
595
- #: contact_form.php:1563 contact_form.php:1597
596
  msgid "click to expand/hide the list"
597
  msgstr "Klick zum erweitern/verstecken der Liste"
598
 
599
- #: contact_form.php:1572 contact_form.php:1606
600
  msgid "Tips below the Attachment block"
601
  msgstr "Tipps unterhalb des Anhang-Blocks"
602
 
603
- #: contact_form.php:1575 contact_form.php:1609
604
  msgid "Error message for the Name field"
605
  msgstr "Fehlermeldung für das Namensfeld"
606
 
607
- #: contact_form.php:1576 contact_form.php:1610
608
  msgid "Error message for the Address field"
609
  msgstr "Fehlermeldung für das Adress-Feld"
610
 
611
- #: contact_form.php:1577 contact_form.php:1611
612
  msgid "Error message for the Email field"
613
  msgstr "Fehlermeldung für das E-Mail-Feld"
614
 
615
- #: contact_form.php:1578 contact_form.php:1612
616
  msgid "Error message for the Phone field"
617
  msgstr "Fehlermeldung für das Telefonnummer-Feld"
618
 
619
- #: contact_form.php:1579 contact_form.php:1613
620
  msgid "Error message for the Subject field"
621
  msgstr "Fehlermeldung für das Betreff-Feld"
622
 
623
- #: contact_form.php:1580 contact_form.php:1614
624
  msgid "Error message for the Message field"
625
  msgstr "Fehlermeldung für das Inhalts-Feld"
626
 
627
- #: contact_form.php:1581 contact_form.php:1615
628
  msgid "Error message about the file type for the Attachment field"
629
  msgstr "Fehlermeldung über den Datei-Typ für das Anhang-Feld"
630
 
631
- #: contact_form.php:1582 contact_form.php:1616
632
  msgid ""
633
  "Error message while uploading a file for the Attachment field to the server"
634
  msgstr ""
635
  "Fehlermeldung während des hochladens einer Datei zum Server für das Anhang-"
636
  "Feld"
637
 
638
- #: contact_form.php:1583 contact_form.php:1617
639
  msgid "Error message while moving the file for the Attachment field"
640
  msgstr "Fehlermeldung während der Verschiebung für das Anhang-Feld"
641
 
642
- #: contact_form.php:1584 contact_form.php:1618
643
  msgid "Error message when file size limit for the Attachment field is exceeded"
644
  msgstr ""
645
  "Fehlermeldung wenn das Datei-Größen-Limit für das Anhang-Feld überschritten "
646
  "wird"
647
 
648
- #: contact_form.php:1585 contact_form.php:1619
649
  msgid "Error message for the Captcha field"
650
  msgstr "Fehlermeldung für das Capatcha-Feld"
651
 
652
- #: contact_form.php:1586 contact_form.php:1620
653
  msgid "Error message for the whole form"
654
  msgstr "Fehlermeldung für das ganze Formular"
655
 
656
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
657
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
658
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
659
- #: contact_form.php:3179
660
  msgid "Use shortcode"
661
  msgstr "Benutze shortcode"
662
 
663
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
664
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
665
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
666
- #: contact_form.php:3179
667
  msgid "for this language"
668
  msgstr "für diese Sprache"
669
 
670
- #: contact_form.php:1633
671
  #, fuzzy
672
  msgid "Use the changed names of the contact form fields in the email"
673
  msgstr "Verändere die Namen der Kontakt-Form-Felder und Fehlermeldungen"
674
 
675
- #: contact_form.php:1639
676
  msgid "Action after email is sent"
677
  msgstr "Handlung nachdem die E-Mail gesendet wurde"
678
 
679
- #: contact_form.php:1641
680
  msgid "Display text"
681
  msgstr "Zeige Text"
682
 
683
- #: contact_form.php:1650 contact_form.php:1660
684
  msgid "Text"
685
  msgstr "Text"
686
 
687
- #: contact_form.php:1671
688
  msgid "Redirect to the page"
689
  msgstr "Umleiten zur Seite"
690
 
691
- #: contact_form.php:1672
692
  msgid "Url"
693
  msgstr "Url"
694
 
695
- #: contact_form.php:1683
696
  msgid "Add field 'Reply-To' to the email header"
697
  msgstr ""
698
 
699
- #: contact_form.php:1685
700
  msgid "Field 'Reply-To' will be initialized by user email"
701
  msgstr ""
702
 
703
- #: contact_form.php:1689
704
  msgid "Auto Response"
705
  msgstr ""
706
 
707
- #: contact_form.php:1693
708
  #, php-format
709
  msgid ""
710
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -712,262 +674,313 @@ msgid ""
712
  "name."
713
  msgstr ""
714
 
715
- #: contact_form.php:1718 contact_form.php:2213
716
  msgid "Save Changes"
717
  msgstr "Speichere Änderungen"
718
 
719
- #: contact_form.php:1731
720
  #, php-format
721
  msgid ""
722
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
723
  msgstr ""
724
 
725
- #: contact_form.php:1744
 
 
 
 
 
 
 
 
 
726
  msgid "One column"
727
  msgstr ""
728
 
729
- #: contact_form.php:1747
730
  msgid "Two columns"
731
  msgstr ""
732
 
733
- #: contact_form.php:1756 contact_form.php:1775 contact_form.php:1793
734
- #: contact_form.php:1808
735
  msgid "Left"
736
  msgstr ""
737
 
738
- #: contact_form.php:1759 contact_form.php:1781 contact_form.php:1796
739
- #: contact_form.php:1814
740
  msgid "Right"
741
  msgstr ""
742
 
743
- #: contact_form.php:1771
744
  msgid "Form align"
745
  msgstr ""
746
 
747
- #: contact_form.php:1778 contact_form.php:1811
748
  msgid "Center"
749
  msgstr ""
750
 
751
- #: contact_form.php:1786
752
  #, fuzzy
753
  msgid "Labels position"
754
  msgstr "Sende-Schaltfläche"
755
 
756
- #: contact_form.php:1790
757
  msgid "Top"
758
  msgstr ""
759
 
760
- #: contact_form.php:1799
761
  msgid "Bottom"
762
  msgstr ""
763
 
764
- #: contact_form.php:1804
765
  msgid "Labels align"
766
  msgstr ""
767
 
768
- #: contact_form.php:1819
769
  msgid "Errors output"
770
  msgstr "Fehler-Ausgabe"
771
 
772
- #: contact_form.php:1822
773
  msgid "Display error messages"
774
  msgstr "Zeige Fehlermeldungen"
775
 
776
- #: contact_form.php:1823
777
  msgid "Color of the input field errors."
778
  msgstr "Farbe der Eingabe-Fehld-Fehler"
779
 
780
- #: contact_form.php:1824
781
  msgid "Display error messages & color of the input field errors"
782
  msgstr "Zeige Fehlermeldungen & Farbe zu den Eingabe-Feldern"
783
 
784
- #: contact_form.php:1829
785
  msgid "Add placeholder to the input blocks"
786
  msgstr "Füge Platzhalter an die Eingabe-Blöcke"
787
 
788
- #: contact_form.php:1835
789
  msgid "Add tooltips"
790
  msgstr "Füge Tooltips hinzu"
791
 
792
- #: contact_form.php:1849
793
  msgid "Email address"
794
  msgstr "E-Mail Adresse:"
795
 
796
- #: contact_form.php:1854
797
  msgid "Phone Number"
798
  msgstr "Telefonnummer:"
799
 
800
- #: contact_form.php:1868
801
- msgid "Attachment"
802
- msgstr "Anhang:"
803
-
804
- #: contact_form.php:1880
805
  msgid "Style options"
806
  msgstr "Stil-Optionen"
807
 
808
- #: contact_form.php:1884
809
  msgid "Text color"
810
  msgstr "Text -Farbe"
811
 
812
- #: contact_form.php:1889
813
  msgid "Label text color"
814
  msgstr "Beschriftungs-Text -Farbe"
815
 
816
- #: contact_form.php:1894
817
  msgid "Placeholder color"
818
  msgstr "Platzhalter -Farbe"
819
 
820
- #: contact_form.php:1899
821
  msgid "Errors color"
822
  msgstr "Fehler -Farbe"
823
 
824
- #: contact_form.php:1904
825
  msgid "Error text color"
826
  msgstr "Fehler-Text -Farbe"
827
 
828
- #: contact_form.php:1909
829
  msgid "Background color of the input field errors"
830
  msgstr "Hintergrund -Farbe von den Eingabefeld-Fehlern"
831
 
832
- #: contact_form.php:1914
833
  msgid "Border color of the input field errors"
834
  msgstr "Rand -Farbe von den Eingabefeld-Fehlern"
835
 
836
- #: contact_form.php:1919
837
  msgid "Placeholder color of the input field errors"
838
  msgstr "Platzhalter -Farbe von den Eingabefeld-Fehlern"
839
 
840
- #: contact_form.php:1924
841
  msgid "Input fields"
842
  msgstr "Eingabe-Felder"
843
 
844
- #: contact_form.php:1929
845
  msgid "Input fields background color"
846
  msgstr "Eingabefelder - Hintergrundfarbe"
847
 
848
- #: contact_form.php:1934
849
  msgid "Text fields color"
850
  msgstr "Text-Felder -Farbe"
851
 
852
- #: contact_form.php:1938
853
  msgid "Border width in px, numbers only"
854
  msgstr "Rand-Breite in px, nur Zahlen"
855
 
856
- #: contact_form.php:1943 contact_form.php:1967
857
  msgid "Border color"
858
  msgstr "Rand -Farbe"
859
 
860
- #: contact_form.php:1948
861
  msgid "Submit button"
862
  msgstr "Sende-Schaltfläche"
863
 
864
- #: contact_form.php:1952
865
  msgid "Width in px, numbers only"
866
  msgstr "Breite in px, nur Zahlen"
867
 
868
- #: contact_form.php:1957
869
  msgid "Button color"
870
  msgstr "Schaltflächen -Farbe"
871
 
872
- #: contact_form.php:1962
873
  msgid "Button text color"
874
  msgstr "Schaltflächen-Text -Farbe"
875
 
876
- #: contact_form.php:1994
877
  #, fuzzy
878
  msgid "Contact Form | Preview"
879
  msgstr "Kontakt-Form Pro | Vorschau"
880
 
881
- #: contact_form.php:1995
882
  msgid "Drag the necessary field to sort fields."
883
  msgstr ""
884
 
885
- #: contact_form.php:2200
 
886
  msgid ""
887
  "If you would like to add the Contact Form to your website, just copy and "
888
- "paste this shortcode to your post or page or widget:"
889
  msgstr ""
890
  "Wenn sie die Kontakt-Form auf ihrer Webseite plazieren möchten, kopieren und "
891
  "fügen sie diesen shortcode in ihrem/r Beitrag, Seite oder Widget ein:"
892
 
893
- #: contact_form.php:2297
894
  msgid "Sorry, email message could not be delivered."
895
  msgstr "Verzeihung, die Nachricht konnte nicht gesendet werden."
896
 
897
- #: contact_form.php:2777 contact_form.php:2779
898
  msgid "Sent from (ip address)"
899
  msgstr "Gesendet von (IP-Adresse)"
900
 
901
- #: contact_form.php:2804
902
  msgid "Contact from"
903
  msgstr "Kontakt von"
904
 
905
- #: contact_form.php:2826 contact_form.php:2856
906
- msgid "Phone"
907
- msgstr "Telefonnummer"
908
-
909
- #: contact_form.php:2837 contact_form.php:2863
910
  msgid "Site"
911
  msgstr "Webseite"
912
 
913
- #: contact_form.php:2956
914
  msgid ""
915
  "If you can see this MIME, it means that the MIME type is not supported by "
916
  "your email client!"
917
  msgstr ""
918
  "Wenn sie dieses MIME sehen, unterstützt Ihr Browser diesen MIME Typ nicht!"
919
 
920
- #: contact_form.php:3039
921
  msgid "FAQ"
922
  msgstr "Häufig gestellte Fragen (FAQ)"
923
 
924
- #: contact_form.php:3040
925
  msgid "Support"
926
  msgstr "Support"
927
 
928
- #: contact_form.php:3089
929
  msgid "Are you sure that you want to delete this language data?"
930
  msgstr "Sind sie sicher, dass sie diese Sprach-Daten löschen wollen?"
931
 
932
- #: contact_form.php:3110
933
  #, fuzzy
934
  msgid "Add multiple forms"
935
  msgstr "Füge in die Form"
936
 
937
- #: contact_form.php:3110
938
  msgid ""
939
  "Install Contact Form Multi plugin to create unlimited number of contact "
940
  "forms."
941
  msgstr ""
942
 
943
- #: contact_form.php:3115
944
  #, fuzzy
945
  msgid "Learn more"
946
  msgstr "Lees verder"
947
 
948
- #: contact_form.php:3320
949
  msgid "Close notice"
950
  msgstr ""
951
 
952
- #: contact_form.php:3325
953
  #, fuzzy
954
  msgid "allows to store your messages to the database."
955
  msgstr "Speicher E-Mails in die Datenbank"
956
 
957
- #: contact_form.php:3326
958
  msgid "Manage messages that have been sent from your website."
959
  msgstr ""
960
 
961
- #: contact_form.php:3384
962
  #, fuzzy
963
  msgid "Contact form"
964
  msgstr "Kontakt von"
965
 
966
- #: contact_form.php:3397 contact_form.php:3407
967
  #, fuzzy
968
  msgid "Language"
969
  msgstr "Hinzufügen einer Sprache"
970
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
971
  #~ msgid "To send mail you can use the php mail function"
972
  #~ msgstr "Um mails zu versenden, können sie die php mail Funktion verwenden."
973
 
@@ -1134,9 +1147,6 @@ msgstr "Hinzufügen einer Sprache"
1134
  #~ msgid "Please, go to"
1135
  #~ msgstr "Bitte, gehen Sie nach"
1136
 
1137
- #~ msgid "the setting page"
1138
- #~ msgstr "Die Einstellungs-Seite"
1139
-
1140
  #~ msgid "You will be redirected automatically in 5 seconds."
1141
  #~ msgstr "Sie werden in 5 Sekunden automatisch weitergeleitet"
1142
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-12 17:22+0300\n"
6
+ "PO-Revision-Date: 2016-07-12 17:22+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Alex <private183@web.de>\n"
9
  "Language: de_DE\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: contact_form.php:37 contact_form.php:1118
21
  msgid "Contact Form Settings"
22
  msgstr "Kontakt-Form Einstellungen"
23
 
25
  msgid "Contact Form"
26
  msgstr "Kontakt-Form"
27
 
28
+ #: contact_form.php:167 contact_form.php:1294 contact_form.php:1353
29
+ #: contact_form.php:1746 contact_form.php:1784 contact_form.php:2033
30
+ #: contact_form.php:3113 contact_form.php:3159
31
+ msgid "Name"
32
+ msgstr "Name"
33
 
34
+ #: contact_form.php:168 contact_form.php:1400 contact_form.php:1747
35
+ #: contact_form.php:1785 contact_form.php:2038 contact_form.php:3120
36
+ #: contact_form.php:3165
37
+ msgid "Address"
38
+ msgstr "Adresse: "
39
 
40
+ #: contact_form.php:169 contact_form.php:1416 contact_form.php:1748
41
+ #: contact_form.php:1786
42
+ msgid "Email Address"
43
  msgstr "E-Mail Adresse:"
44
 
45
+ #: contact_form.php:170 contact_form.php:1439 contact_form.php:1749
46
+ #: contact_form.php:1787
47
+ msgid "Phone number"
48
  msgstr "Telefonnummer:"
49
 
50
+ #: contact_form.php:171 contact_form.php:1455 contact_form.php:1750
51
+ #: contact_form.php:1788 contact_form.php:2053 contact_form.php:3131
52
+ #: contact_form.php:3174
53
+ msgid "Subject"
54
+ msgstr "Betreff"
55
 
56
+ #: contact_form.php:172 contact_form.php:1479 contact_form.php:1751
57
+ #: contact_form.php:1789 contact_form.php:2057 contact_form.php:3136
58
+ #: contact_form.php:3178
59
+ msgid "Message"
60
+ msgstr "Inhalt"
61
 
62
+ #: contact_form.php:173 contact_form.php:1752 contact_form.php:1790
63
+ #: contact_form.php:2062
64
+ msgid "Attachment"
65
  msgstr "Anhang:"
66
 
67
+ #: contact_form.php:174
68
  msgid ""
69
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
70
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
72
  "Unterstützte Dateitypen: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
73
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
74
 
75
+ #: contact_form.php:175 contact_form.php:1754 contact_form.php:1792
76
  msgid "Send me a copy"
77
  msgstr "Kopie an mich senden"
78
 
79
+ #: contact_form.php:176 contact_form.php:1755 contact_form.php:1793
80
  msgid "Submit"
81
  msgstr "Senden"
82
 
83
+ #: contact_form.php:177
84
  msgid "Your name is required."
85
  msgstr "Dein Name wird benötigt."
86
 
87
+ #: contact_form.php:178
88
  msgid "Address is required."
89
  msgstr "Adresse wird benötigt"
90
 
91
+ #: contact_form.php:179
92
  msgid "A valid email address is required."
93
  msgstr "Eine gültige E-Mail Adresse wird benötigt."
94
 
95
+ #: contact_form.php:180
96
  msgid "Phone number is required."
97
  msgstr "Deine Telefonnummer wird benötigt."
98
 
99
+ #: contact_form.php:181
100
  msgid "Subject is required."
101
  msgstr "Ein Betreff wird benötigt."
102
 
103
+ #: contact_form.php:182
104
  msgid "Message text is required."
105
  msgstr "Ein Inhalt wird benötigt."
106
 
107
+ #: contact_form.php:183
108
  msgid "File format is not valid."
109
  msgstr "Datei Format ist nicht erlaubt."
110
 
111
+ #: contact_form.php:184
112
  msgid "File upload error."
113
  msgstr "Datei-Übertragungsfehler"
114
 
115
+ #: contact_form.php:185
116
  msgid "The file could not be uploaded."
117
  msgstr "Die Datei konnte nicht hochgeladen werden."
118
 
119
+ #: contact_form.php:186
120
  msgid "This file is too large."
121
  msgstr "Diese Datei ist zu groß."
122
 
123
+ #: contact_form.php:187
124
  msgid "Please fill out the CAPTCHA."
125
  msgstr "Bitte CAPTCHA ausfüllen."
126
 
127
+ #: contact_form.php:188
128
  msgid "Please make corrections below and try again."
129
  msgstr "Bitte mach unten korrekturen und versuche es erneut."
130
 
131
+ #: contact_form.php:190
132
  msgid "Thank you for contacting us."
133
  msgstr "Danke für Ihre Nachricht."
134
 
135
+ #: contact_form.php:824 contact_form.php:1076
136
  msgid "Settings saved."
137
  msgstr "Einstellungen gespeichert."
138
 
139
+ #: contact_form.php:1021
140
  msgid ""
141
  "Email 'FROM' field option was changed, which may cause email messages being "
142
  "moved to the spam folder or email delivery failures."
143
  msgstr ""
144
 
145
+ #: contact_form.php:1031
146
  msgid ""
147
  "If the 'Redirect to page' option is selected then the URL field should be in "
148
  "the following format"
150
  "Wenn die 'Redirect to page/Umleiten zur Seite' Option verwendet wird, dann "
151
  "sollte das Feld URL in folgendem Format sein"
152
 
153
+ #: contact_form.php:1038
154
  #, fuzzy
155
  msgid "Such user does not exist."
156
  msgstr "Dieser User exestiert nicht. Einstellungen werden nicht gespeichert."
157
 
158
+ #: contact_form.php:1048
159
  #, fuzzy
160
  msgid ""
161
  "Please enter a valid email address in the 'Use this email address' field."
163
  "Bitte geben sie eine gültige Email Adresse in das 'FROM/VON' Feld ein. "
164
  "Einstellungen werden nicht gespeichert."
165
 
166
+ #: contact_form.php:1056
167
  #, fuzzy
168
  msgid "Please enter a valid email address in the 'FROM' field."
169
  msgstr ""
170
  "Bitte geben sie eine gültige Email Adresse in das 'FROM/VON' Feld ein. "
171
  "Einstellungen werden nicht gespeichert."
172
 
173
+ #: contact_form.php:1078
174
  #, fuzzy
175
  msgid "Settings are not saved."
176
  msgstr "Einstellungen gespeichert."
177
 
178
+ #: contact_form.php:1115
179
  msgid "All plugin settings were restored."
180
  msgstr ""
181
 
182
+ #: contact_form.php:1120
183
  msgid "How to Use Step-by-step Instruction"
184
  msgstr ""
185
 
186
+ #: contact_form.php:1123 contact_form.php:3351 contact_form.php:3365
187
  msgid "Settings"
188
  msgstr "Einstellungen"
189
 
190
+ #: contact_form.php:1124
191
  #, fuzzy
192
  msgid "Additional settings"
193
  msgstr "Weitere Optionen"
194
 
195
+ #: contact_form.php:1125
196
  msgid "Appearance"
197
  msgstr ""
198
 
199
+ #: contact_form.php:1126
200
  msgid "Custom code"
201
  msgstr ""
202
 
203
+ #: contact_form.php:1127
204
  msgid "Go PRO"
205
  msgstr "Go PRO"
206
 
207
+ #: contact_form.php:1136
 
 
 
 
 
 
 
 
 
 
 
208
  #, fuzzy
209
+ msgid "Notice"
 
 
 
 
210
  msgstr "Notiz:"
211
 
212
+ #: contact_form.php:1140
213
  msgid "NEW_FORM"
214
  msgstr ""
215
 
216
+ #: contact_form.php:1141
217
  msgid ""
218
  "If you want to create multiple contact forms, please install the Contact "
219
  "Form Multi plugin."
220
  msgstr ""
221
 
222
+ #: contact_form.php:1150
223
  #, fuzzy, php-format
224
  msgid ""
225
  "If you would like to add a Contact Form to your page or post, please use %s "
228
  "Wenn sie die Kontakt-Form auf ihrer Webseite plazieren möchten, kopieren und "
229
  "fügen sie diesen shortcode in ihrem/r Beitrag, Seite oder Widget ein:"
230
 
231
+ #: contact_form.php:1156
232
  #, php-format
233
  msgid ""
234
  "You can add the Contact Form to your page or post by clicking on %s button "
237
  "language."
238
  msgstr ""
239
 
240
+ #: contact_form.php:1165
241
  msgid ""
242
  "If you leave the fields empty, the messages will be sent to the email "
243
  "address specified during registration."
245
  "Wenn sie die Felder leer lassen, wird die Nachricht an die bei der "
246
  "registrierung angegebenen E-Mail Adresse gesendet."
247
 
248
+ #: contact_form.php:1168
249
+ #, fuzzy
250
+ msgid "The user's email address"
251
  msgstr "Benutzer E-Mail Adresse"
252
 
253
+ #: contact_form.php:1172
254
  #, fuzzy
255
  msgid "Select a username"
256
  msgstr "Benutzername erstellen"
257
 
258
+ #: contact_form.php:1185
259
+ #, fuzzy
260
  msgid ""
261
+ "Select a username of the person who should get the messages from the contact "
262
  "form."
263
  msgstr ""
264
  "Geben sie den Benutzernamen des Users an, der die Nachrichten der Kontakt-"
265
  "Form erhalten soll."
266
 
267
+ #: contact_form.php:1189
268
+ #, fuzzy
269
+ msgid "Use this email address"
270
  msgstr "Nutzen sie diese E-Mail Adresse"
271
 
272
+ #: contact_form.php:1193
273
+ #, fuzzy
274
+ msgid "Enter the email address for receiving messages"
275
  msgstr ""
276
  "Geben sie die E-Mail Adresse ein, an welche die Nachricht weitergeleitet "
277
  "werden soll."
278
 
279
+ #: contact_form.php:1200 contact_form.php:1663 contact_form.php:1873
280
+ #: contact_form.php:1961 contact_form.php:3446
281
  msgid "Close"
282
  msgstr ""
283
 
284
+ #: contact_form.php:1204
285
+ #, fuzzy
286
+ msgid "Add department selectbox to the contact form"
287
  msgstr "Füge Abteilungs- Auswahlbox zu der Kontakt-Form:"
288
 
289
+ #: contact_form.php:1212 contact_form.php:1672 contact_form.php:1892
290
+ #: contact_form.php:2167
291
  msgid "If you upgrade to Pro version all your settings will be saved."
292
  msgstr "Wenn sie auf Pro upgraden werden alle ihre Einstellungen gespeichert"
293
 
294
+ #: contact_form.php:1219 contact_form.php:1509 contact_form.php:1677
295
+ #: contact_form.php:1899 contact_form.php:2174
296
  msgid "Unlock premium options by upgrading to Pro version"
297
  msgstr ""
298
 
299
+ #: contact_form.php:1222 contact_form.php:1512 contact_form.php:1680
300
+ #: contact_form.php:1902 contact_form.php:2177 contact_form.php:3672
301
  msgid "Learn More"
302
  msgstr ""
303
 
304
+ #: contact_form.php:1230
305
  msgid "Save emails to the database"
306
  msgstr "Speicher E-Mails in die Datenbank"
307
 
308
+ #: contact_form.php:1241 contact_form.php:1255 contact_form.php:1262
309
  msgid "Using"
310
  msgstr "Verwendet"
311
 
312
+ #: contact_form.php:1247 contact_form.php:1572 contact_form.php:1605
313
+ #: contact_form.php:1640
314
+ msgid "Please activate the appropriate option on"
315
+ msgstr ""
316
+
317
+ #: contact_form.php:1250 contact_form.php:1575 contact_form.php:1608
318
+ #: contact_form.php:1643
319
  #, fuzzy
320
+ msgid "settings page"
321
+ msgstr "Die Einstellungs-Seite"
322
 
323
+ #: contact_form.php:1256 contact_form.php:1581 contact_form.php:1615
324
+ #: contact_form.php:1651
325
  #, fuzzy
326
  msgid "Activate"
327
  msgstr "Aktiviere captcha"
328
 
329
+ #: contact_form.php:1263 contact_form.php:1587 contact_form.php:1621
330
+ #: contact_form.php:1656
331
  msgid "Download"
332
  msgstr "Download"
333
 
334
+ #: contact_form.php:1275
335
+ msgid "Sending method"
336
+ msgstr ""
337
 
338
+ #: contact_form.php:1280
339
  msgid "Wp-mail"
340
  msgstr "Wp-mail"
341
 
342
+ #: contact_form.php:1282
343
  #, fuzzy
344
  msgid "You can use the Wordpress wp_mail function for mailing"
345
  msgstr "Sie können die wp_mail Funktion für das versenden verwenden."
346
 
347
+ #: contact_form.php:1285
348
  msgid "Mail"
349
  msgstr "Mail"
350
 
351
+ #: contact_form.php:1287
352
  #, fuzzy
353
  msgid "You can use the PHP mail function for mailing"
354
  msgstr "Sie können die wp_mail Funktion für das versenden verwenden."
355
 
356
+ #: contact_form.php:1292
357
  msgid "'FROM' field"
358
  msgstr ""
359
 
360
+ #: contact_form.php:1297
 
 
 
 
 
361
  msgid "User name"
362
  msgstr "Benutzer Name"
363
 
364
+ #: contact_form.php:1299
365
  msgid ""
366
  "The name of the user who fills the form will be used in the field 'From'."
367
  msgstr ""
368
  "Der Name des Benutzers, der das Formular ausfüllt, wird im Feld 'From/Von' "
369
  "verwendt."
370
 
371
+ #: contact_form.php:1304 contact_form.php:3126 contact_form.php:3170
372
  msgid "Email"
373
  msgstr "E-Mail"
374
 
375
+ #: contact_form.php:1307
376
  msgid "User email"
377
  msgstr "Benutzer E-Mail"
378
 
379
+ #: contact_form.php:1309
380
  msgid ""
381
  "The email address of the user who fills the form will be used in the field "
382
  "'From'."
384
  "Die E-Mail Adresse des Benutzers, der das Formular ausfüllt, wird im Feld "
385
  "'From/Von' verwendt."
386
 
387
+ #: contact_form.php:1312
388
  msgid ""
389
  "If this option is changed, email messages may be moved to the spam folder or "
390
  "email delivery failures may occur."
391
  msgstr ""
392
 
393
+ #: contact_form.php:1318
394
  msgid "Required symbol"
395
  msgstr "Benötigtes Symbol"
396
 
397
+ #: contact_form.php:1328
398
  msgid "Fields"
399
  msgstr "Felder"
400
 
401
+ #: contact_form.php:1329 contact_form.php:1356 contact_form.php:1383
402
+ #: contact_form.php:1403 contact_form.php:1442 contact_form.php:1527
403
  msgid "Used"
404
  msgstr "Benutzt"
405
 
406
+ #: contact_form.php:1330 contact_form.php:1345 contact_form.php:1360
407
+ #: contact_form.php:1387 contact_form.php:1407 contact_form.php:1420
408
+ #: contact_form.php:1446 contact_form.php:1459 contact_form.php:1483
409
  msgid "Required"
410
  msgstr "Benötigt"
411
 
412
+ #: contact_form.php:1332 contact_form.php:1365 contact_form.php:1425
413
+ #: contact_form.php:1464 contact_form.php:1488
414
  msgid "Visible"
415
  msgstr "Sichtbar"
416
 
417
+ #: contact_form.php:1333 contact_form.php:1369 contact_form.php:1429
418
+ #: contact_form.php:1468 contact_form.php:1492
419
  msgid "Disabled for editing"
420
  msgstr "Bearbeitung ist ausgeschaltet"
421
 
422
+ #: contact_form.php:1334 contact_form.php:1393 contact_form.php:1472
423
+ #: contact_form.php:1496
424
  msgid "Field's default value"
425
  msgstr "Standard-Feld-Wert"
426
 
427
+ #: contact_form.php:1341
428
  msgid "Department selectbox"
429
  msgstr ""
430
 
431
+ #: contact_form.php:1373
432
  msgid "Use User's name as a default value if the user is logged in."
433
  msgstr ""
434
 
435
+ #: contact_form.php:1374 contact_form.php:1434
436
  msgid ""
437
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
438
  "in users."
439
  msgstr ""
440
 
441
+ #: contact_form.php:1380
442
  msgid "Location selectbox"
443
  msgstr ""
444
 
445
+ #: contact_form.php:1433
 
 
 
 
 
 
 
 
 
446
  msgid "Use User's email as a default value if the user is logged in."
447
  msgstr ""
448
 
449
+ #: contact_form.php:1520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
450
  msgid "Attachment block"
451
  msgstr "Anhang-Block"
452
 
453
+ #: contact_form.php:1522
454
  msgid "Users can attach the following file formats"
455
  msgstr "Benutzer können die folgenden Formate anhängen:"
456
 
457
+ #: contact_form.php:1540
458
  msgid "Add to the form"
459
  msgstr "Füge in die Form"
460
 
461
+ #: contact_form.php:1545
462
  msgid "Tips below the Attachment"
463
  msgstr "Tipps unterhalb des Anhangs"
464
 
465
+ #: contact_form.php:1554
466
  msgid "'Send me a copy' block"
467
  msgstr "'Kopie an mich senden' Block"
468
 
469
+ #: contact_form.php:1667
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
470
  msgid "Agreement checkbox"
471
  msgstr "Agreement checkbox"
472
 
473
+ #: contact_form.php:1667
474
  msgid "Required checkbox for submitting the form"
475
  msgstr "Benötigte checkbox zur übermittlung des Formulars"
476
 
477
+ #: contact_form.php:1668
478
  msgid "Optional checkbox"
479
  msgstr "Optionale checkbox"
480
 
481
+ #: contact_form.php:1668
482
  msgid "Optional checkbox, the results of which will be displayed in email"
483
  msgstr "Optionale checkbox, das Ergebnis davon wird in der E-Mail angezeigt"
484
 
485
+ #: contact_form.php:1689
486
  msgid "Delete an attachment file from the server after the email is sent"
487
  msgstr "Lösche die Anhang-Datei vom Server nachdem die E-Mail gesendet wurde"
488
 
489
+ #: contact_form.php:1695
490
  msgid "Email in HTML format sending"
491
  msgstr "E-Mail im HTML Format"
492
 
493
+ #: contact_form.php:1699
494
  msgid "Display additional info in the email"
495
  msgstr "Zeige weitere Informationen in der E-Mail"
496
 
497
+ #: contact_form.php:1705
498
  #, fuzzy
499
  msgid "Sent from (IP address)"
500
  msgstr "Gesendet von (IP-Adresse)"
501
 
502
+ #: contact_form.php:1705
503
  msgid "Example: Sent from (IP address):\t127.0.0.1"
504
  msgstr "Beispiel: Gesendet von (IP-Adresse):\t127.0.0.1"
505
 
506
+ #: contact_form.php:1706 contact_form.php:3075 contact_form.php:3077
507
  msgid "Date/Time"
508
  msgstr "Datum/Zeit"
509
 
510
+ #: contact_form.php:1706
511
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
512
  msgstr "Beispiel: Datum/Zeit:\tAugust 19, 2013 8:50 pm"
513
 
514
+ #: contact_form.php:1707 contact_form.php:3081 contact_form.php:3083
515
  msgid "Sent from (referer)"
516
  msgstr "Gesendet von (referer)"
517
 
518
+ #: contact_form.php:1707
519
  msgid ""
520
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
521
  msgstr ""
522
  "Beispiel: Gesendet von (referer):\thttp://bestwebsoft.com/contacts/contact-"
523
  "us/"
524
 
525
+ #: contact_form.php:1708 contact_form.php:3087 contact_form.php:3089
526
  msgid "Using (user agent)"
527
  msgstr "Verwendet (user agent)"
528
 
529
+ #: contact_form.php:1708
530
  msgid ""
531
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
532
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
534
  "Beispiel: Verwendet (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
535
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
536
 
537
+ #: contact_form.php:1713
538
  msgid "Language settings for the field names in the form"
539
  msgstr "Benutzer-Einstellungen für die Feld-Namen in der Form"
540
 
541
+ #: contact_form.php:1722
542
  msgid "Add a language"
543
  msgstr "Hinzufügen einer Sprache"
544
 
545
+ #: contact_form.php:1726
546
  msgid "Change the names of the contact form fields and error messages"
547
  msgstr "Verändere die Namen der Kontakt-Form-Felder und Fehlermeldungen"
548
 
549
+ #: contact_form.php:1731 contact_form.php:1827 contact_form.php:2081
550
+ #: contact_form.php:2086 contact_form.php:2096 contact_form.php:2101
551
+ #: contact_form.php:2106 contact_form.php:2111 contact_form.php:2121
552
+ #: contact_form.php:2126 contact_form.php:2135 contact_form.php:2149
553
+ #: contact_form.php:2154 contact_form.php:2159
554
  msgid "Default"
555
  msgstr "Standard"
556
 
557
+ #: contact_form.php:1744 contact_form.php:1782
558
  msgid "click to expand/hide the list"
559
  msgstr "Klick zum erweitern/verstecken der Liste"
560
 
561
+ #: contact_form.php:1753 contact_form.php:1791
562
  msgid "Tips below the Attachment block"
563
  msgstr "Tipps unterhalb des Anhang-Blocks"
564
 
565
+ #: contact_form.php:1756 contact_form.php:1794
566
  msgid "Error message for the Name field"
567
  msgstr "Fehlermeldung für das Namensfeld"
568
 
569
+ #: contact_form.php:1757 contact_form.php:1795
570
  msgid "Error message for the Address field"
571
  msgstr "Fehlermeldung für das Adress-Feld"
572
 
573
+ #: contact_form.php:1758 contact_form.php:1796
574
  msgid "Error message for the Email field"
575
  msgstr "Fehlermeldung für das E-Mail-Feld"
576
 
577
+ #: contact_form.php:1759 contact_form.php:1797
578
  msgid "Error message for the Phone field"
579
  msgstr "Fehlermeldung für das Telefonnummer-Feld"
580
 
581
+ #: contact_form.php:1760 contact_form.php:1798
582
  msgid "Error message for the Subject field"
583
  msgstr "Fehlermeldung für das Betreff-Feld"
584
 
585
+ #: contact_form.php:1761 contact_form.php:1799
586
  msgid "Error message for the Message field"
587
  msgstr "Fehlermeldung für das Inhalts-Feld"
588
 
589
+ #: contact_form.php:1762 contact_form.php:1800
590
  msgid "Error message about the file type for the Attachment field"
591
  msgstr "Fehlermeldung über den Datei-Typ für das Anhang-Feld"
592
 
593
+ #: contact_form.php:1763 contact_form.php:1801
594
  msgid ""
595
  "Error message while uploading a file for the Attachment field to the server"
596
  msgstr ""
597
  "Fehlermeldung während des hochladens einer Datei zum Server für das Anhang-"
598
  "Feld"
599
 
600
+ #: contact_form.php:1764 contact_form.php:1802
601
  msgid "Error message while moving the file for the Attachment field"
602
  msgstr "Fehlermeldung während der Verschiebung für das Anhang-Feld"
603
 
604
+ #: contact_form.php:1765 contact_form.php:1803
605
  msgid "Error message when file size limit for the Attachment field is exceeded"
606
  msgstr ""
607
  "Fehlermeldung wenn das Datei-Größen-Limit für das Anhang-Feld überschritten "
608
  "wird"
609
 
610
+ #: contact_form.php:1766 contact_form.php:1804
611
  msgid "Error message for the Captcha field"
612
  msgstr "Fehlermeldung für das Capatcha-Feld"
613
 
614
+ #: contact_form.php:1767 contact_form.php:1805
615
  msgid "Error message for the whole form"
616
  msgstr "Fehlermeldung für das ganze Formular"
617
 
618
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
619
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
620
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
621
+ #: contact_form.php:3516
622
  msgid "Use shortcode"
623
  msgstr "Benutze shortcode"
624
 
625
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
626
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
627
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
628
+ #: contact_form.php:3516
629
  msgid "for this language"
630
  msgstr "für diese Sprache"
631
 
632
+ #: contact_form.php:1818
633
  #, fuzzy
634
  msgid "Use the changed names of the contact form fields in the email"
635
  msgstr "Verändere die Namen der Kontakt-Form-Felder und Fehlermeldungen"
636
 
637
+ #: contact_form.php:1824
638
  msgid "Action after email is sent"
639
  msgstr "Handlung nachdem die E-Mail gesendet wurde"
640
 
641
+ #: contact_form.php:1826
642
  msgid "Display text"
643
  msgstr "Zeige Text"
644
 
645
+ #: contact_form.php:1840 contact_form.php:1854
646
  msgid "Text"
647
  msgstr "Text"
648
 
649
+ #: contact_form.php:1865
650
  msgid "Redirect to the page"
651
  msgstr "Umleiten zur Seite"
652
 
653
+ #: contact_form.php:1866
654
  msgid "Url"
655
  msgstr "Url"
656
 
657
+ #: contact_form.php:1877
658
  msgid "Add field 'Reply-To' to the email header"
659
  msgstr ""
660
 
661
+ #: contact_form.php:1879
662
  msgid "Field 'Reply-To' will be initialized by user email"
663
  msgstr ""
664
 
665
+ #: contact_form.php:1883
666
  msgid "Auto Response"
667
  msgstr ""
668
 
669
+ #: contact_form.php:1887
670
  #, php-format
671
  msgid ""
672
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
674
  "name."
675
  msgstr ""
676
 
677
+ #: contact_form.php:1912 contact_form.php:2398
678
  msgid "Save Changes"
679
  msgstr "Speichere Änderungen"
680
 
681
+ #: contact_form.php:1925
682
  #, php-format
683
  msgid ""
684
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
685
  msgstr ""
686
 
687
+ #: contact_form.php:1925 contact_form.php:1934
688
+ msgid "Form layout"
689
+ msgstr ""
690
+
691
+ #: contact_form.php:1925 contact_form.php:1946
692
+ #, fuzzy
693
+ msgid "Submit position"
694
+ msgstr "Sende-Schaltfläche"
695
+
696
+ #: contact_form.php:1938
697
  msgid "One column"
698
  msgstr ""
699
 
700
+ #: contact_form.php:1941
701
  msgid "Two columns"
702
  msgstr ""
703
 
704
+ #: contact_form.php:1950 contact_form.php:1969 contact_form.php:1987
705
+ #: contact_form.php:2002
706
  msgid "Left"
707
  msgstr ""
708
 
709
+ #: contact_form.php:1953 contact_form.php:1975 contact_form.php:1990
710
+ #: contact_form.php:2008
711
  msgid "Right"
712
  msgstr ""
713
 
714
+ #: contact_form.php:1965
715
  msgid "Form align"
716
  msgstr ""
717
 
718
+ #: contact_form.php:1972 contact_form.php:2005
719
  msgid "Center"
720
  msgstr ""
721
 
722
+ #: contact_form.php:1980
723
  #, fuzzy
724
  msgid "Labels position"
725
  msgstr "Sende-Schaltfläche"
726
 
727
+ #: contact_form.php:1984
728
  msgid "Top"
729
  msgstr ""
730
 
731
+ #: contact_form.php:1993
732
  msgid "Bottom"
733
  msgstr ""
734
 
735
+ #: contact_form.php:1998
736
  msgid "Labels align"
737
  msgstr ""
738
 
739
+ #: contact_form.php:2013
740
  msgid "Errors output"
741
  msgstr "Fehler-Ausgabe"
742
 
743
+ #: contact_form.php:2016
744
  msgid "Display error messages"
745
  msgstr "Zeige Fehlermeldungen"
746
 
747
+ #: contact_form.php:2017
748
  msgid "Color of the input field errors."
749
  msgstr "Farbe der Eingabe-Fehld-Fehler"
750
 
751
+ #: contact_form.php:2018
752
  msgid "Display error messages & color of the input field errors"
753
  msgstr "Zeige Fehlermeldungen & Farbe zu den Eingabe-Feldern"
754
 
755
+ #: contact_form.php:2023
756
  msgid "Add placeholder to the input blocks"
757
  msgstr "Füge Platzhalter an die Eingabe-Blöcke"
758
 
759
+ #: contact_form.php:2029
760
  msgid "Add tooltips"
761
  msgstr "Füge Tooltips hinzu"
762
 
763
+ #: contact_form.php:2043
764
  msgid "Email address"
765
  msgstr "E-Mail Adresse:"
766
 
767
+ #: contact_form.php:2048 contact_form.php:3142 contact_form.php:3183
768
  msgid "Phone Number"
769
  msgstr "Telefonnummer:"
770
 
771
+ #: contact_form.php:2074
 
 
 
 
772
  msgid "Style options"
773
  msgstr "Stil-Optionen"
774
 
775
+ #: contact_form.php:2078
776
  msgid "Text color"
777
  msgstr "Text -Farbe"
778
 
779
+ #: contact_form.php:2083
780
  msgid "Label text color"
781
  msgstr "Beschriftungs-Text -Farbe"
782
 
783
+ #: contact_form.php:2088
784
  msgid "Placeholder color"
785
  msgstr "Platzhalter -Farbe"
786
 
787
+ #: contact_form.php:2093
788
  msgid "Errors color"
789
  msgstr "Fehler -Farbe"
790
 
791
+ #: contact_form.php:2098
792
  msgid "Error text color"
793
  msgstr "Fehler-Text -Farbe"
794
 
795
+ #: contact_form.php:2103
796
  msgid "Background color of the input field errors"
797
  msgstr "Hintergrund -Farbe von den Eingabefeld-Fehlern"
798
 
799
+ #: contact_form.php:2108
800
  msgid "Border color of the input field errors"
801
  msgstr "Rand -Farbe von den Eingabefeld-Fehlern"
802
 
803
+ #: contact_form.php:2113
804
  msgid "Placeholder color of the input field errors"
805
  msgstr "Platzhalter -Farbe von den Eingabefeld-Fehlern"
806
 
807
+ #: contact_form.php:2118
808
  msgid "Input fields"
809
  msgstr "Eingabe-Felder"
810
 
811
+ #: contact_form.php:2123
812
  msgid "Input fields background color"
813
  msgstr "Eingabefelder - Hintergrundfarbe"
814
 
815
+ #: contact_form.php:2128
816
  msgid "Text fields color"
817
  msgstr "Text-Felder -Farbe"
818
 
819
+ #: contact_form.php:2132
820
  msgid "Border width in px, numbers only"
821
  msgstr "Rand-Breite in px, nur Zahlen"
822
 
823
+ #: contact_form.php:2137 contact_form.php:2161
824
  msgid "Border color"
825
  msgstr "Rand -Farbe"
826
 
827
+ #: contact_form.php:2142
828
  msgid "Submit button"
829
  msgstr "Sende-Schaltfläche"
830
 
831
+ #: contact_form.php:2146
832
  msgid "Width in px, numbers only"
833
  msgstr "Breite in px, nur Zahlen"
834
 
835
+ #: contact_form.php:2151
836
  msgid "Button color"
837
  msgstr "Schaltflächen -Farbe"
838
 
839
+ #: contact_form.php:2156
840
  msgid "Button text color"
841
  msgstr "Schaltflächen-Text -Farbe"
842
 
843
+ #: contact_form.php:2188
844
  #, fuzzy
845
  msgid "Contact Form | Preview"
846
  msgstr "Kontakt-Form Pro | Vorschau"
847
 
848
+ #: contact_form.php:2189
849
  msgid "Drag the necessary field to sort fields."
850
  msgstr ""
851
 
852
+ #: contact_form.php:2385
853
+ #, fuzzy
854
  msgid ""
855
  "If you would like to add the Contact Form to your website, just copy and "
856
+ "paste this shortcode to your post or page or widget"
857
  msgstr ""
858
  "Wenn sie die Kontakt-Form auf ihrer Webseite plazieren möchten, kopieren und "
859
  "fügen sie diesen shortcode in ihrem/r Beitrag, Seite oder Widget ein:"
860
 
861
+ #: contact_form.php:2501
862
  msgid "Sorry, email message could not be delivered."
863
  msgstr "Verzeihung, die Nachricht konnte nicht gesendet werden."
864
 
865
+ #: contact_form.php:3069 contact_form.php:3071
866
  msgid "Sent from (ip address)"
867
  msgstr "Gesendet von (IP-Adresse)"
868
 
869
+ #: contact_form.php:3099
870
  msgid "Contact from"
871
  msgstr "Kontakt von"
872
 
873
+ #: contact_form.php:3104 contact_form.php:3153
 
 
 
 
874
  msgid "Site"
875
  msgstr "Webseite"
876
 
877
+ #: contact_form.php:3283
878
  msgid ""
879
  "If you can see this MIME, it means that the MIME type is not supported by "
880
  "your email client!"
881
  msgstr ""
882
  "Wenn sie dieses MIME sehen, unterstützt Ihr Browser diesen MIME Typ nicht!"
883
 
884
+ #: contact_form.php:3366
885
  msgid "FAQ"
886
  msgstr "Häufig gestellte Fragen (FAQ)"
887
 
888
+ #: contact_form.php:3367
889
  msgid "Support"
890
  msgstr "Support"
891
 
892
+ #: contact_form.php:3416
893
  msgid "Are you sure that you want to delete this language data?"
894
  msgstr "Sind sie sicher, dass sie diese Sprach-Daten löschen wollen?"
895
 
896
+ #: contact_form.php:3437
897
  #, fuzzy
898
  msgid "Add multiple forms"
899
  msgstr "Füge in die Form"
900
 
901
+ #: contact_form.php:3437
902
  msgid ""
903
  "Install Contact Form Multi plugin to create unlimited number of contact "
904
  "forms."
905
  msgstr ""
906
 
907
+ #: contact_form.php:3442
908
  #, fuzzy
909
  msgid "Learn more"
910
  msgstr "Lees verder"
911
 
912
+ #: contact_form.php:3663
913
  msgid "Close notice"
914
  msgstr ""
915
 
916
+ #: contact_form.php:3668
917
  #, fuzzy
918
  msgid "allows to store your messages to the database."
919
  msgstr "Speicher E-Mails in die Datenbank"
920
 
921
+ #: contact_form.php:3669
922
  msgid "Manage messages that have been sent from your website."
923
  msgstr ""
924
 
925
+ #: contact_form.php:3727
926
  #, fuzzy
927
  msgid "Contact form"
928
  msgstr "Kontakt von"
929
 
930
+ #: contact_form.php:3740 contact_form.php:3750
931
  #, fuzzy
932
  msgid "Language"
933
  msgstr "Hinzufügen einer Sprache"
934
 
935
+ #~ msgid "Name:"
936
+ #~ msgstr "Name:"
937
+
938
+ #~ msgid "Address:"
939
+ #~ msgstr "Adresse:"
940
+
941
+ #~ msgid "Email Address:"
942
+ #~ msgstr "E-Mail Adresse:"
943
+
944
+ #~ msgid "Phone number:"
945
+ #~ msgstr "Telefonnummer:"
946
+
947
+ #~ msgid "Subject:"
948
+ #~ msgstr "Betreff:"
949
+
950
+ #~ msgid "Message:"
951
+ #~ msgstr "Inhalt:"
952
+
953
+ #~ msgid "Attachment:"
954
+ #~ msgstr "Anhang:"
955
+
956
+ #, fuzzy
957
+ #~ msgid ""
958
+ #~ "Please enable JavaScript to add language in the contact form, change the "
959
+ #~ "names of the contact form fields and error messages."
960
+ #~ msgstr "Verändere die Namen der Kontakt-Form-Felder und Fehlermeldungen"
961
+
962
+ #~ msgid "What to use?"
963
+ #~ msgstr "Was soll verwendet werden?"
964
+
965
+ #, fuzzy
966
+ #~ msgid "Using Contact Form to DB by BestWebSoft"
967
+ #~ msgstr "Verwende 'Kontakt-Form in die DB' powered by"
968
+
969
+ #, fuzzy
970
+ #~ msgid "Activate Subscriber"
971
+ #~ msgstr "Geactiveerde plugins"
972
+
973
+ #, fuzzy
974
+ #~ msgid "Activate Captcha"
975
+ #~ msgstr "Aktiviere captcha"
976
+
977
+ #, fuzzy
978
+ #~ msgid "Download Captcha"
979
+ #~ msgstr "Download captcha"
980
+
981
+ #~ msgid "Phone"
982
+ #~ msgstr "Telefonnummer"
983
+
984
  #~ msgid "To send mail you can use the php mail function"
985
  #~ msgstr "Um mails zu versenden, können sie die php mail Funktion verwenden."
986
 
1147
  #~ msgid "Please, go to"
1148
  #~ msgstr "Bitte, gehen Sie nach"
1149
 
 
 
 
1150
  #~ msgid "You will be redirected automatically in 5 seconds."
1151
  #~ msgstr "Sie werden in 5 Sekunden automatisch weitergeleitet"
1152
 
languages/contact-form-plugin-el.mo CHANGED
Binary file
languages/contact-form-plugin-el.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: 2016-06-27 16:30+0300\n"
6
- "PO-Revision-Date: 2016-06-27 16:30+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Dimitris Karantonis <dkarantonis@gmail.com>\n"
9
  "Language: el\n"
@@ -21,7 +21,7 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
  # @ contact_form
24
- #: contact_form.php:37 contact_form.php:1030
25
  msgid "Contact Form Settings"
26
  msgstr "Ρυθμίσεις φόρμας επικοινωνίας"
27
 
@@ -31,42 +31,53 @@ msgid "Contact Form"
31
  msgstr "Φόρμα Επικοινωνίας"
32
 
33
  # @ contact_form
34
- #: contact_form.php:165 contact_form.php:1565 contact_form.php:1599
35
- msgid "Name:"
36
- msgstr "Όνομα:"
 
 
37
 
38
  # @ contact_form
39
- #: contact_form.php:166 contact_form.php:1566 contact_form.php:1600
40
- msgid "Address:"
41
- msgstr "Διεύθυνση:"
 
 
42
 
43
  # @ contact_form
44
- #: contact_form.php:167 contact_form.php:1567 contact_form.php:1601
45
- msgid "Email Address:"
46
- msgstr "Email:"
 
47
 
48
  # @ contact_form
49
- #: contact_form.php:168 contact_form.php:1568 contact_form.php:1602
50
- msgid "Phone number:"
51
- msgstr "Αριθμός τηλεφώνου:"
 
52
 
53
  # @ contact_form
54
- #: contact_form.php:169 contact_form.php:1569 contact_form.php:1603
55
- msgid "Subject:"
56
- msgstr "Θέμα:"
 
 
57
 
58
  # @ contact_form
59
- #: contact_form.php:170 contact_form.php:1570 contact_form.php:1604
60
- msgid "Message:"
61
- msgstr "Μήνυμα:"
 
 
62
 
63
  # @ contact_form
64
- #: contact_form.php:171 contact_form.php:1571 contact_form.php:1605
65
- msgid "Attachment:"
66
- msgstr "Συννημένο Αρχείο:"
 
67
 
68
  # @ contact_form
69
- #: contact_form.php:172
70
  msgid ""
71
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
72
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -76,94 +87,94 @@ msgstr ""
76
  "PPT."
77
 
78
  # @ contact_form
79
- #: contact_form.php:173 contact_form.php:1573 contact_form.php:1607
80
  msgid "Send me a copy"
81
  msgstr "Αποστολή αντιγράφου"
82
 
83
  # @ contact_form
84
- #: contact_form.php:174 contact_form.php:1574 contact_form.php:1608
85
  msgid "Submit"
86
  msgstr "Αποστολή"
87
 
88
  # @ contact_form
89
- #: contact_form.php:175
90
  msgid "Your name is required."
91
  msgstr "Το όνομα σας είναι απαραίτητο."
92
 
93
  # @ contact_form
94
- #: contact_form.php:176
95
  msgid "Address is required."
96
  msgstr "Η διεύθυνσή σας είναι απαραίτητη."
97
 
98
  # @ contact_form
99
- #: contact_form.php:177
100
  msgid "A valid email address is required."
101
  msgstr "Απαιτείται μία έγκυρη διεύθυνση email."
102
 
103
  # @ contact_form
104
- #: contact_form.php:178
105
  msgid "Phone number is required."
106
  msgstr "Ο αριθμός τηλεφώνου είναι απαραίτητος."
107
 
108
  # @ contact_form
109
- #: contact_form.php:179
110
  msgid "Subject is required."
111
  msgstr "Το θέμα είναι απαραίτητο."
112
 
113
  # @ contact_form
114
- #: contact_form.php:180
115
  msgid "Message text is required."
116
  msgstr "Το μήνυμα κειμένου είναι απαραίτητο."
117
 
118
  # @ contact_form
119
- #: contact_form.php:181
120
  msgid "File format is not valid."
121
  msgstr "Ο τύπος του αρχείου δεν είναι έγκυρος."
122
 
123
  # @ contact_form
124
- #: contact_form.php:182
125
  msgid "File upload error."
126
  msgstr "Πρόβλημα κατά το ανέβασμα του αρχείου."
127
 
128
  # @ contact_form
129
- #: contact_form.php:183
130
  msgid "The file could not be uploaded."
131
  msgstr "Το αρχείο δεν μπορούσε να ανέβει."
132
 
133
  # @ contact_form
134
- #: contact_form.php:184
135
  msgid "This file is too large."
136
  msgstr "Το μέγεθος αρχείου είναι πολύ μεγάλο."
137
 
138
  # @ contact_form
139
- #: contact_form.php:185
140
  msgid "Please fill out the CAPTCHA."
141
  msgstr "Παρακαλούμε, συμπληρώστε το πεδίο CAPTCHA."
142
 
143
  # @ contact_form
144
- #: contact_form.php:186
145
  msgid "Please make corrections below and try again."
146
  msgstr ""
147
  "Παρακαλούμε, προχωρήστε στις παρακακάτω διορθώσεις και προσπαθήστε ξανά."
148
 
149
  # @ contact_form
150
- #: contact_form.php:188
151
  msgid "Thank you for contacting us."
152
  msgstr "Σας ευχαριστούμε για την επικοινωνία."
153
 
154
  # @ contact_form
155
- #: contact_form.php:688 contact_form.php:998
156
  msgid "Settings saved."
157
  msgstr "Οι ρυθμίσεις αποθηκεύτηκαν."
158
 
159
- #: contact_form.php:940
160
  msgid ""
161
  "Email 'FROM' field option was changed, which may cause email messages being "
162
  "moved to the spam folder or email delivery failures."
163
  msgstr ""
164
 
165
  # @ contact_form
166
- #: contact_form.php:950
167
  msgid ""
168
  "If the 'Redirect to page' option is selected then the URL field should be in "
169
  "the following format"
@@ -172,12 +183,12 @@ msgstr ""
172
  "πεδίο URL θα πρέπει να έχει την ακόλουθη μορφή"
173
 
174
  # @ contact_form
175
- #: contact_form.php:957
176
  msgid "Such user does not exist."
177
  msgstr "Τέτοιος χρήστης δεν υπάρχει."
178
 
179
  # @ contact_form
180
- #: contact_form.php:967
181
  msgid ""
182
  "Please enter a valid email address in the 'Use this email address' field."
183
  msgstr ""
@@ -185,78 +196,59 @@ msgstr ""
185
  "αυτήν τη διεύθυνση email'."
186
 
187
  # @ contact_form
188
- #: contact_form.php:975
189
  msgid "Please enter a valid email address in the 'FROM' field."
190
  msgstr "Παρακαλούμε, εισάγετε μια έγκυρη διεύθυνση email στο πεδίο «ΑΠΟ»."
191
 
192
  # @ contact_form
193
- #: contact_form.php:1000
194
  msgid "Settings are not saved."
195
  msgstr "Οι ρυθμίσεις δεν αποθηκεύτηκαν."
196
 
197
- #: contact_form.php:1027
198
  msgid "All plugin settings were restored."
199
  msgstr ""
200
 
201
- #: contact_form.php:1032
202
  msgid "How to Use Step-by-step Instruction"
203
  msgstr ""
204
 
205
  # @ contact_form
206
- #: contact_form.php:1035 contact_form.php:3024 contact_form.php:3038
207
  msgid "Settings"
208
  msgstr "Ρυθμίσεις"
209
 
210
  # @ contact_form
211
- #: contact_form.php:1036
212
  #, fuzzy
213
  msgid "Additional settings"
214
  msgstr "Πρόσθετες επιλογές"
215
 
216
- #: contact_form.php:1037
217
  msgid "Appearance"
218
  msgstr ""
219
 
220
- #: contact_form.php:1038
221
  msgid "Custom code"
222
  msgstr ""
223
 
224
  # @ contact_form
225
- #: contact_form.php:1039
226
  msgid "Go PRO"
227
  msgstr "Αναβάθμιση σε PRO"
228
 
229
  # @ contact_form
230
- #: contact_form.php:1045
231
  #, fuzzy
232
- msgid ""
233
- "Please enable JavaScript to add language in the contact form, change the "
234
- "names of the contact form fields and error messages."
235
- msgstr ""
236
- "Αλλάξτε τα ονόματα των πεδίων και των μηνύματα σφαλμάτων στη φόρμας "
237
- "επικοινωνίας "
238
-
239
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1740
240
- msgid "Form layout"
241
- msgstr ""
242
-
243
- # @ contact_form
244
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1752
245
- #, fuzzy
246
- msgid "Submit position"
247
- msgstr "Κομβίο Υποβολής"
248
-
249
- # @ contact_form
250
- #: contact_form.php:1057
251
- msgid "Notice:"
252
  msgstr "Σημείωση:"
253
 
254
- #: contact_form.php:1061
255
  msgid "NEW_FORM"
256
  msgstr ""
257
 
258
  # @ contact_form
259
- #: contact_form.php:1062
260
  msgid ""
261
  "If you want to create multiple contact forms, please install the Contact "
262
  "Form Multi plugin."
@@ -265,7 +257,7 @@ msgstr ""
265
  "εγκαταστήσετε την επέκταση φόρμα επικοινωνίας Multi."
266
 
267
  # @ contact_form
268
- #: contact_form.php:1071
269
  #, fuzzy, php-format
270
  msgid ""
271
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -275,7 +267,7 @@ msgstr ""
275
  "αντιγράψετε και επικολλήσετε αυτό το σύντομο κωδικό στο άρθρο, στη σελίδα ή "
276
  "στο widget σας:"
277
 
278
- #: contact_form.php:1077
279
  #, php-format
280
  msgid ""
281
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -285,7 +277,7 @@ msgid ""
285
  msgstr ""
286
 
287
  # @ contact_form
288
- #: contact_form.php:1086
289
  msgid ""
290
  "If you leave the fields empty, the messages will be sent to the email "
291
  "address specified during registration."
@@ -294,139 +286,145 @@ msgstr ""
294
  "καθορίσατε κατά την εγγραφή σας."
295
 
296
  # @ contact_form
297
- #: contact_form.php:1089
298
- msgid "The user's email address:"
 
299
  msgstr "Η διεύθυνση email του χρήστη:"
300
 
301
  # @ contact_form
302
- #: contact_form.php:1093
303
  #, fuzzy
304
  msgid "Select a username"
305
  msgstr "Δημιουργήστε ένα όνομα χρήστη"
306
 
307
  # @ contact_form
308
- #: contact_form.php:1106
 
309
  msgid ""
310
- "Enter a username of the person who should get the messages from the contact "
311
  "form."
312
  msgstr ""
313
  "Εισάγετε το όνομα του προσώπου που θα λαμβάνει τα μηνύματα από τη φόρμα "
314
  "επικοινωνίας."
315
 
316
  # @ contact_form
317
- #: contact_form.php:1110
318
- msgid "Use this email address:"
 
319
  msgstr "Χρησιμοποιήστε αυτήν τη διεύθυνση email: "
320
 
321
  # @ contact_form
322
- #: contact_form.php:1114
323
- msgid "Enter the email address you want the messages forwarded to."
 
324
  msgstr "Εισάγετε τη διεύθυνση email που θέλετε τα μηνύματα να προωθούνται."
325
 
326
- #: contact_form.php:1121 contact_form.php:1487 contact_form.php:1679
327
- #: contact_form.php:1767 contact_form.php:3119
328
  msgid "Close"
329
  msgstr ""
330
 
331
  # @ contact_form
332
- #: contact_form.php:1125
333
- msgid "Add department selectbox to the contact form:"
 
334
  msgstr "Προσθέστε τμήμα selectbox στην φόρμα επικοινωνίας:"
335
 
336
  # @ contact_form
337
- #: contact_form.php:1133 contact_form.php:1496 contact_form.php:1698
338
- #: contact_form.php:1973
339
  msgid "If you upgrade to Pro version all your settings will be saved."
340
  msgstr ""
341
  "Εάν κάνετε αναβάθμιση σε έκδοση Pro όλες οι ρυθμίσεις σας θα αποθηκευτούν."
342
 
343
  # @ contact_form
344
- #: contact_form.php:1140 contact_form.php:1407 contact_form.php:1501
345
- #: contact_form.php:1705 contact_form.php:1980
346
  #, fuzzy
347
  msgid "Unlock premium options by upgrading to Pro version"
348
  msgstr "Ξεκλειδώστε τις επιπλέον επιλογές, αναβαθμίζοντας στην έκδοση PRO."
349
 
350
  # @ contact_form
351
- #: contact_form.php:1143 contact_form.php:1410 contact_form.php:1504
352
- #: contact_form.php:1708 contact_form.php:1983 contact_form.php:3329
353
  msgid "Learn More"
354
  msgstr "Μάθετε περισσότερα"
355
 
356
  # @ contact_form
357
- #: contact_form.php:1151
358
  msgid "Save emails to the database"
359
  msgstr "Αποθηκεύστε τα μηνύματα ηλεκτρονικού ταχυδρομείου στη βάση δεδομένων"
360
 
361
  # @ contact_form
362
- #: contact_form.php:1156
363
  msgid "Using"
364
  msgstr "Χρήση"
365
 
 
 
 
 
 
366
  # @ contact_form
367
- #: contact_form.php:1159 contact_form.php:1163
 
368
  #, fuzzy
369
- msgid "Using Contact Form to DB by BestWebSoft"
370
- msgstr "Χρήση της Φόρμας Επικοινωνίας για DB, υποστήριξη από"
371
 
372
  # @ contact_form
373
- #: contact_form.php:1159
 
374
  #, fuzzy
375
  msgid "Activate"
376
  msgstr "Ενεργοποίηση captcha"
377
 
378
  # @ contact_form
379
- #: contact_form.php:1163
 
380
  #, fuzzy
381
  msgid "Download"
382
  msgstr "Κατέβασμα captcha"
383
 
384
- # @ contact_form
385
- #: contact_form.php:1173
386
- msgid "What to use?"
387
- msgstr "Τι πρέπει να χρησιμοποιήσετε;"
388
 
389
  # @ contact_form
390
- #: contact_form.php:1178
391
  msgid "Wp-mail"
392
  msgstr "Wp-mail"
393
 
394
  # @ contact_form
395
- #: contact_form.php:1180
396
  #, fuzzy
397
  msgid "You can use the Wordpress wp_mail function for mailing"
398
  msgstr ""
399
  "Μπορείτε να χρησιμοποιήσετε τη λειτουργία wp_mail για την αποστολή emails"
400
 
401
  # @ contact_form
402
- #: contact_form.php:1183
403
  msgid "Mail"
404
  msgstr "Tαχυδρομείο"
405
 
406
  # @ contact_form
407
- #: contact_form.php:1185
408
  #, fuzzy
409
  msgid "You can use the PHP mail function for mailing"
410
  msgstr ""
411
  "Μπορείτε να χρησιμοποιήσετε τη λειτουργία wp_mail για την αποστολή emails"
412
 
413
- #: contact_form.php:1190
414
  msgid "'FROM' field"
415
  msgstr ""
416
 
417
  # @ contact_form
418
- #: contact_form.php:1192 contact_form.php:1251 contact_form.php:1839
419
- #: contact_form.php:2810 contact_form.php:2846
420
- msgid "Name"
421
- msgstr "Όνομα"
422
-
423
- # @ contact_form
424
- #: contact_form.php:1195
425
  msgid "User name"
426
  msgstr "Όνομα χρήστη"
427
 
428
  # @ contact_form
429
- #: contact_form.php:1197
430
  msgid ""
431
  "The name of the user who fills the form will be used in the field 'From'."
432
  msgstr ""
@@ -434,17 +432,17 @@ msgstr ""
434
  "'Από'."
435
 
436
  # @ contact_form
437
- #: contact_form.php:1202 contact_form.php:2821 contact_form.php:2853
438
  msgid "Email"
439
  msgstr "Email"
440
 
441
  # @ contact_form
442
- #: contact_form.php:1205
443
  msgid "User email"
444
  msgstr "Email χρήστη"
445
 
446
  # @ contact_form
447
- #: contact_form.php:1207
448
  msgid ""
449
  "The email address of the user who fills the form will be used in the field "
450
  "'From'."
@@ -452,215 +450,167 @@ msgstr ""
452
  "Η διεύθυνση email του χρήστη που συμπληρώνει τη φόρμα θα χρησιμοποιηθεί στο "
453
  "πεδίο 'Από'."
454
 
455
- #: contact_form.php:1210
456
  msgid ""
457
  "If this option is changed, email messages may be moved to the spam folder or "
458
  "email delivery failures may occur."
459
  msgstr ""
460
 
461
  # @ contact_form
462
- #: contact_form.php:1216
463
  msgid "Required symbol"
464
  msgstr "Απαιτούμενο σύμβολο"
465
 
466
  # @ contact_form
467
- #: contact_form.php:1226
468
  msgid "Fields"
469
  msgstr "Πεδία"
470
 
471
  # @ contact_form
472
- #: contact_form.php:1227 contact_form.php:1254 contact_form.php:1281
473
- #: contact_form.php:1301 contact_form.php:1340 contact_form.php:1425
474
  msgid "Used"
475
  msgstr "Χρησιμοποιείται"
476
 
477
  # @ contact_form
478
- #: contact_form.php:1228 contact_form.php:1243 contact_form.php:1258
479
- #: contact_form.php:1285 contact_form.php:1305 contact_form.php:1318
480
- #: contact_form.php:1344 contact_form.php:1357 contact_form.php:1381
481
  msgid "Required"
482
  msgstr "Απαιτούμενο"
483
 
484
  # @ contact_form
485
- #: contact_form.php:1230 contact_form.php:1263 contact_form.php:1323
486
- #: contact_form.php:1362 contact_form.php:1386
487
  msgid "Visible"
488
  msgstr "Ορατό"
489
 
490
  # @ contact_form
491
- #: contact_form.php:1231 contact_form.php:1267 contact_form.php:1327
492
- #: contact_form.php:1366 contact_form.php:1390
493
  msgid "Disabled for editing"
494
  msgstr "Δεν επιτρέπεται η επεξεργασία"
495
 
496
  # @ contact_form
497
- #: contact_form.php:1232 contact_form.php:1291 contact_form.php:1370
498
- #: contact_form.php:1394
499
  msgid "Field's default value"
500
  msgstr "Προκαθορισμένη τιμή πεδίου"
501
 
502
  # @ contact_form
503
- #: contact_form.php:1239
504
  #, fuzzy
505
  msgid "Department selectbox"
506
  msgstr "Τοποθεσία selectbox"
507
 
508
- #: contact_form.php:1271
509
  msgid "Use User's name as a default value if the user is logged in."
510
  msgstr ""
511
 
512
- #: contact_form.php:1272 contact_form.php:1332
513
  msgid ""
514
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
515
  "in users."
516
  msgstr ""
517
 
518
  # @ contact_form
519
- #: contact_form.php:1278
520
  msgid "Location selectbox"
521
  msgstr "Τοποθεσία selectbox"
522
 
523
- # @ contact_form
524
- #: contact_form.php:1298 contact_form.php:1844 contact_form.php:2816
525
- #: contact_form.php:2850
526
- msgid "Address"
527
- msgstr "Διεύθυνση"
528
-
529
- # @ contact_form
530
- #: contact_form.php:1314
531
- msgid "Email Address"
532
- msgstr "Διεύθυνση Email"
533
-
534
- #: contact_form.php:1331
535
  msgid "Use User's email as a default value if the user is logged in."
536
  msgstr ""
537
 
538
  # @ contact_form
539
- #: contact_form.php:1337
540
- msgid "Phone number"
541
- msgstr "Αριθμός τηλεφώνου"
542
-
543
- # @ contact_form
544
- #: contact_form.php:1353 contact_form.php:1859 contact_form.php:2831
545
- #: contact_form.php:2859
546
- msgid "Subject"
547
- msgstr "Θέμα"
548
-
549
- # @ contact_form
550
- #: contact_form.php:1377 contact_form.php:1863 contact_form.php:2834
551
- #: contact_form.php:2861
552
- msgid "Message"
553
- msgstr "Μήνυμα"
554
-
555
- # @ contact_form
556
- #: contact_form.php:1418
557
  msgid "Attachment block"
558
  msgstr "Συνημμένο μπλοκ"
559
 
560
  # @ contact_form
561
- #: contact_form.php:1420
562
  msgid "Users can attach the following file formats"
563
  msgstr "Οι χρήστες μπορούν να επισυνάψουν τις ακόλουθες μορφές αρχείων"
564
 
565
  # @ contact_form
566
- #: contact_form.php:1438
567
  msgid "Add to the form"
568
  msgstr "Προσθήκη στη φόρμα"
569
 
570
  # @ contact_form
571
- #: contact_form.php:1443
572
  msgid "Tips below the Attachment"
573
  msgstr "Συμβουλές κάτω από το συνημμένο"
574
 
575
  # @ contact_form
576
- #: contact_form.php:1452
577
  msgid "'Send me a copy' block"
578
  msgstr "Μπλοκ 'Στείλε μου ένα αντίγραφο'"
579
 
580
- #: contact_form.php:1464
581
- msgid "Activate Subscriber"
582
- msgstr ""
583
-
584
- #: contact_form.php:1468
585
- msgid "Download Subscriber"
586
- msgstr ""
587
-
588
- # @ contact_form
589
- #: contact_form.php:1477
590
- #, fuzzy
591
- msgid "Activate Captcha"
592
- msgstr "Ενεργοποίηση captcha"
593
-
594
- # @ contact_form
595
- #: contact_form.php:1481
596
- #, fuzzy
597
- msgid "Download Captcha"
598
- msgstr "Κατέβασμα captcha"
599
-
600
  # @ contact_form
601
- #: contact_form.php:1491
602
  msgid "Agreement checkbox"
603
  msgstr "Checkbox συμφωνίας"
604
 
605
  # @ contact_form
606
- #: contact_form.php:1491
607
  msgid "Required checkbox for submitting the form"
608
  msgstr "Απαιτούμενο checkbox για την υποβολή της φόρμας"
609
 
610
  # @ contact_form
611
- #: contact_form.php:1492
612
  msgid "Optional checkbox"
613
  msgstr "Προαιρετικό checkbox"
614
 
615
  # @ contact_form
616
- #: contact_form.php:1492
617
  msgid "Optional checkbox, the results of which will be displayed in email"
618
  msgstr "Optional checkbox, τα αποτελέσματα του οποίου θα εμφανίζεται στο email"
619
 
620
  # @ contact_form
621
- #: contact_form.php:1513
622
  msgid "Delete an attachment file from the server after the email is sent"
623
  msgstr ""
624
  "Διαγραφή συνημμένου αρχείου από τον διακομιστή μετά την αποστολή του email"
625
 
626
  # @ contact_form
627
- #: contact_form.php:1519
628
  msgid "Email in HTML format sending"
629
  msgstr "Αποστολή email σε μορφή HTML "
630
 
631
  # @ contact_form
632
- #: contact_form.php:1523
633
  msgid "Display additional info in the email"
634
  msgstr "Εμφάνιση περισσότερων πληροφοριών στο email"
635
 
636
  # @ contact_form
637
- #: contact_form.php:1529
638
  #, fuzzy
639
  msgid "Sent from (IP address)"
640
  msgstr "Εστάλη από (διεύθυνση IP)"
641
 
642
  # @ contact_form
643
- #: contact_form.php:1529
644
  msgid "Example: Sent from (IP address):\t127.0.0.1"
645
  msgstr "Παράδειγμα: Εστάλη από (διεύθυνση IP):\t127.0.0.1"
646
 
647
  # @ contact_form
648
- #: contact_form.php:1530 contact_form.php:2783 contact_form.php:2785
649
  msgid "Date/Time"
650
  msgstr "Ημερομηνία/Ώρα"
651
 
652
  # @ contact_form
653
- #: contact_form.php:1530
654
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
655
  msgstr "Παράδειγμα: Ημερομηνία/Ώρα:\tΑύγυστος 19, 2013 8:50 μμ"
656
 
657
  # @ contact_form
658
- #: contact_form.php:1531 contact_form.php:2789 contact_form.php:2791
659
  msgid "Sent from (referer)"
660
  msgstr "Εστάλη από (παραπέμπτης)"
661
 
662
  # @ contact_form
663
- #: contact_form.php:1531
664
  msgid ""
665
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
666
  msgstr ""
@@ -668,12 +618,12 @@ msgstr ""
668
  "contact-us/"
669
 
670
  # @ contact_form
671
- #: contact_form.php:1532 contact_form.php:2795 contact_form.php:2797
672
  msgid "Using (user agent)"
673
  msgstr "Χρήση (μέσο χρήστη)"
674
 
675
  # @ contact_form
676
- #: contact_form.php:1532
677
  msgid ""
678
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
679
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -682,78 +632,78 @@ msgstr ""
682
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
683
 
684
  # @ contact_form
685
- #: contact_form.php:1537
686
  msgid "Language settings for the field names in the form"
687
  msgstr "Ρυθμίσεις γλώσσας για τα ονόματα πεδίων στη φόρμα"
688
 
689
  # @ contact_form
690
- #: contact_form.php:1546
691
  msgid "Add a language"
692
  msgstr "Προσθήκη γλώσσας"
693
 
694
  # @ contact_form
695
- #: contact_form.php:1550
696
  msgid "Change the names of the contact form fields and error messages"
697
  msgstr ""
698
  "Αλλάξτε τα ονόματα των πεδίων και των μηνύματα σφαλμάτων στη φόρμας "
699
  "επικοινωνίας "
700
 
701
  # @ contact_form
702
- #: contact_form.php:1555 contact_form.php:1642 contact_form.php:1887
703
- #: contact_form.php:1892 contact_form.php:1902 contact_form.php:1907
704
- #: contact_form.php:1912 contact_form.php:1917 contact_form.php:1927
705
- #: contact_form.php:1932 contact_form.php:1941 contact_form.php:1955
706
- #: contact_form.php:1960 contact_form.php:1965
707
  msgid "Default"
708
  msgstr "Προκαθορισμένο"
709
 
710
  # @ contact_form
711
- #: contact_form.php:1563 contact_form.php:1597
712
  msgid "click to expand/hide the list"
713
  msgstr "κάντε κλικ για να επεκτείνετε/αποκρύψετε τη λίστα"
714
 
715
  # @ contact_form
716
- #: contact_form.php:1572 contact_form.php:1606
717
  msgid "Tips below the Attachment block"
718
  msgstr "Συμβουλές κάτω από το Συνημμένο μπλοκ"
719
 
720
  # @ contact_form
721
- #: contact_form.php:1575 contact_form.php:1609
722
  msgid "Error message for the Name field"
723
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Όνομα'"
724
 
725
  # @ contact_form
726
- #: contact_form.php:1576 contact_form.php:1610
727
  msgid "Error message for the Address field"
728
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Διεύθυνση'"
729
 
730
  # @ contact_form
731
- #: contact_form.php:1577 contact_form.php:1611
732
  msgid "Error message for the Email field"
733
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Email'"
734
 
735
  # @ contact_form
736
- #: contact_form.php:1578 contact_form.php:1612
737
  msgid "Error message for the Phone field"
738
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Αριθμός τηλεφώνου'"
739
 
740
  # @ contact_form
741
- #: contact_form.php:1579 contact_form.php:1613
742
  msgid "Error message for the Subject field"
743
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Θέμα'"
744
 
745
  # @ contact_form
746
- #: contact_form.php:1580 contact_form.php:1614
747
  msgid "Error message for the Message field"
748
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Μήνυμα'"
749
 
750
  # @ contact_form
751
- #: contact_form.php:1581 contact_form.php:1615
752
  msgid "Error message about the file type for the Attachment field"
753
  msgstr "Μήνυμα σφάλματος σχετικά με τον τύπο αρχείου για το πεδίο 'Συνημμένο'"
754
 
755
  # @ contact_form
756
- #: contact_form.php:1582 contact_form.php:1616
757
  msgid ""
758
  "Error message while uploading a file for the Attachment field to the server"
759
  msgstr ""
@@ -761,91 +711,91 @@ msgstr ""
761
  "διακομιστή"
762
 
763
  # @ contact_form
764
- #: contact_form.php:1583 contact_form.php:1617
765
  msgid "Error message while moving the file for the Attachment field"
766
  msgstr ""
767
  "Μήνυμα σφάλματος κατά τη μετακίνηση του αρχείου για το πεδίο 'Συνημμένο'"
768
 
769
  # @ contact_form
770
- #: contact_form.php:1584 contact_form.php:1618
771
  msgid "Error message when file size limit for the Attachment field is exceeded"
772
  msgstr ""
773
  "Μήνυμα σφάλματος όταν το όριο μεγέθους αρχείου για το πεδίο 'Συνημμένο' έχει "
774
  "ξεπεραστεί"
775
 
776
  # @ contact_form
777
- #: contact_form.php:1585 contact_form.php:1619
778
  msgid "Error message for the Captcha field"
779
  msgstr "Μήνυμα σφάλματος για το πεδίο 'Captcha'"
780
 
781
  # @ contact_form
782
- #: contact_form.php:1586 contact_form.php:1620
783
  msgid "Error message for the whole form"
784
  msgstr "Μήνυμα σφάλματος συνολικά για τη φόρμα"
785
 
786
  # @ contact_form
787
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
788
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
789
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
790
- #: contact_form.php:3179
791
  msgid "Use shortcode"
792
  msgstr "Χρήση σύντομου κωδικού"
793
 
794
  # @ contact_form
795
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
796
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
797
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
798
- #: contact_form.php:3179
799
  msgid "for this language"
800
  msgstr "για τη συγκεκριμένη γλώσσα"
801
 
802
  # @ contact_form
803
- #: contact_form.php:1633
804
  msgid "Use the changed names of the contact form fields in the email"
805
  msgstr ""
806
  "Χρησιμοποιήστε τα τροποποιημένα ονόματα των πεδίων της φόρμας επικοινωνίας "
807
  "στο email"
808
 
809
  # @ contact_form
810
- #: contact_form.php:1639
811
  msgid "Action after email is sent"
812
  msgstr "Ενέργεια μετά την αποστολή του email"
813
 
814
  # @ contact_form
815
- #: contact_form.php:1641
816
  msgid "Display text"
817
  msgstr "Εμφάνιση κειμένου"
818
 
819
  # @ contact_form
820
- #: contact_form.php:1650 contact_form.php:1660
821
  msgid "Text"
822
  msgstr "Κείμενο"
823
 
824
  # @ contact_form
825
- #: contact_form.php:1671
826
  msgid "Redirect to the page"
827
  msgstr "Ανακατεύθυνση στη σελίδα"
828
 
829
  # @ contact_form
830
- #: contact_form.php:1672
831
  msgid "Url"
832
  msgstr "Url"
833
 
834
- #: contact_form.php:1683
835
  msgid "Add field 'Reply-To' to the email header"
836
  msgstr ""
837
 
838
- #: contact_form.php:1685
839
  msgid "Field 'Reply-To' will be initialized by user email"
840
  msgstr ""
841
 
842
  # @ contact_form
843
- #: contact_form.php:1689
844
  msgid "Auto Response"
845
  msgstr "Αυτόματη Απάντηση"
846
 
847
  # @ contact_form
848
- #: contact_form.php:1693
849
  #, php-format
850
  msgid ""
851
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -858,244 +808,245 @@ msgstr ""
858
  "ιστολογίου."
859
 
860
  # @ default
861
- #: contact_form.php:1718 contact_form.php:2213
862
  msgid "Save Changes"
863
  msgstr "Αποθήκευση αλλαγών"
864
 
865
- #: contact_form.php:1731
866
  #, php-format
867
  msgid ""
868
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
869
  msgstr ""
870
 
871
- #: contact_form.php:1744
 
 
 
 
 
 
 
 
 
 
872
  msgid "One column"
873
  msgstr ""
874
 
875
- #: contact_form.php:1747
876
  msgid "Two columns"
877
  msgstr ""
878
 
879
- #: contact_form.php:1756 contact_form.php:1775 contact_form.php:1793
880
- #: contact_form.php:1808
881
  msgid "Left"
882
  msgstr ""
883
 
884
- #: contact_form.php:1759 contact_form.php:1781 contact_form.php:1796
885
- #: contact_form.php:1814
886
  msgid "Right"
887
  msgstr ""
888
 
889
- #: contact_form.php:1771
890
  msgid "Form align"
891
  msgstr ""
892
 
893
- #: contact_form.php:1778 contact_form.php:1811
894
  msgid "Center"
895
  msgstr ""
896
 
897
  # @ contact_form
898
- #: contact_form.php:1786
899
  #, fuzzy
900
  msgid "Labels position"
901
  msgstr "Κομβίο Υποβολής"
902
 
903
- #: contact_form.php:1790
904
  msgid "Top"
905
  msgstr ""
906
 
907
- #: contact_form.php:1799
908
  msgid "Bottom"
909
  msgstr ""
910
 
911
- #: contact_form.php:1804
912
  msgid "Labels align"
913
  msgstr ""
914
 
915
  # @ contact_form
916
- #: contact_form.php:1819
917
  msgid "Errors output"
918
  msgstr "Έξοδος σφαλμάτων"
919
 
920
  # @ contact_form
921
- #: contact_form.php:1822
922
  msgid "Display error messages"
923
  msgstr "Εμφάνιση μηνυμάτων σφαλμάτων"
924
 
925
  # @ contact_form
926
- #: contact_form.php:1823
927
  msgid "Color of the input field errors."
928
  msgstr "Χρώμα των σφαλμάτων στα πεδία εισαγωγής."
929
 
930
  # @ contact_form
931
- #: contact_form.php:1824
932
  msgid "Display error messages & color of the input field errors"
933
  msgstr ""
934
  "Εμφάνιση μηνυμάτων σφαλμάτων & χρώμα των σφαλμάτων στα πεδία εισαγωγής."
935
 
936
  # @ contact_form
937
- #: contact_form.php:1829
938
  msgid "Add placeholder to the input blocks"
939
  msgstr "Προσθήκη placeholder στα μπλοκς εισαγωγής"
940
 
941
  # @ contact_form
942
- #: contact_form.php:1835
943
  msgid "Add tooltips"
944
  msgstr "Προσθήκη επεξηγήσεων"
945
 
946
  # @ contact_form
947
- #: contact_form.php:1849
948
  msgid "Email address"
949
  msgstr "Email"
950
 
951
  # @ contact_form
952
- #: contact_form.php:1854
953
  msgid "Phone Number"
954
  msgstr "Αριθμός τηλεφώνου"
955
 
956
  # @ contact_form
957
- #: contact_form.php:1868
958
- msgid "Attachment"
959
- msgstr "Συννημένο αρχείο"
960
-
961
- # @ contact_form
962
- #: contact_form.php:1880
963
  msgid "Style options"
964
  msgstr "Ρυμθίσεις εμφάνισης"
965
 
966
  # @ contact_form
967
- #: contact_form.php:1884
968
  msgid "Text color"
969
  msgstr "Χρώμα κειμένου"
970
 
971
  # @ contact_form
972
- #: contact_form.php:1889
973
  msgid "Label text color"
974
  msgstr "Χρώμα κειμένου ετικέτας"
975
 
976
  # @ contact_form
977
- #: contact_form.php:1894
978
  msgid "Placeholder color"
979
  msgstr "Χρώμα placeholder"
980
 
981
  # @ contact_form
982
- #: contact_form.php:1899
983
  msgid "Errors color"
984
  msgstr "Χρώμα σφαλμάτων"
985
 
986
  # @ contact_form
987
- #: contact_form.php:1904
988
  msgid "Error text color"
989
  msgstr "Χρώμα κειμένου σφάλματος"
990
 
991
  # @ contact_form
992
- #: contact_form.php:1909
993
  msgid "Background color of the input field errors"
994
  msgstr "Χρώμα φόντου στα πεδία εισαγωγής σφαλμάτων"
995
 
996
  # @ contact_form
997
- #: contact_form.php:1914
998
  msgid "Border color of the input field errors"
999
  msgstr "Χρώμα περιγράμματος στα πεδία εισαγωγής σφαλμάτων"
1000
 
1001
  # @ contact_form
1002
- #: contact_form.php:1919
1003
  msgid "Placeholder color of the input field errors"
1004
  msgstr "Χρώμα placeholder στα πεδία εισαγωγής σφαλμάτων"
1005
 
1006
  # @ contact_form
1007
- #: contact_form.php:1924
1008
  msgid "Input fields"
1009
  msgstr "Πεδία εισαγωγής"
1010
 
1011
  # @ contact_form
1012
- #: contact_form.php:1929
1013
  msgid "Input fields background color"
1014
  msgstr "Χρώμα φόντου στα πεδία εισαγωγής"
1015
 
1016
  # @ contact_form
1017
- #: contact_form.php:1934
1018
  msgid "Text fields color"
1019
  msgstr "Χρώμα πεδίων κειμένου"
1020
 
1021
  # @ contact_form
1022
- #: contact_form.php:1938
1023
  msgid "Border width in px, numbers only"
1024
  msgstr "Πλάτος περιγράμματος σε px, μόνο αριθμοί"
1025
 
1026
  # @ contact_form
1027
- #: contact_form.php:1943 contact_form.php:1967
1028
  msgid "Border color"
1029
  msgstr "Χρώμα περιγράμματος"
1030
 
1031
  # @ contact_form
1032
- #: contact_form.php:1948
1033
  msgid "Submit button"
1034
  msgstr "Κομβίο Υποβολής"
1035
 
1036
  # @ contact_form
1037
- #: contact_form.php:1952
1038
  msgid "Width in px, numbers only"
1039
  msgstr "Πλάτος σε px, μόνο αριθμοί"
1040
 
1041
  # @ contact_form
1042
- #: contact_form.php:1957
1043
  msgid "Button color"
1044
  msgstr "Χρώμα κομβίου"
1045
 
1046
  # @ contact_form
1047
- #: contact_form.php:1962
1048
  msgid "Button text color"
1049
  msgstr "Χρώμα κειμένου κομβίου"
1050
 
1051
  # @ contact_form
1052
- #: contact_form.php:1994
1053
  #, fuzzy
1054
  msgid "Contact Form | Preview"
1055
  msgstr "Contact Form Pro | Προεπισκόπηση"
1056
 
1057
- #: contact_form.php:1995
1058
  msgid "Drag the necessary field to sort fields."
1059
  msgstr ""
1060
 
1061
  # @ contact_form
1062
- #: contact_form.php:2200
 
1063
  msgid ""
1064
  "If you would like to add the Contact Form to your website, just copy and "
1065
- "paste this shortcode to your post or page or widget:"
1066
  msgstr ""
1067
  "Αν θέλετε να προσθέσετε τη Φόρμα Επικοινωνίας στην ιστοσελίδα σας, απλά "
1068
  "αντιγράψετε και επικολλήσετε αυτό το σύντομο κωδικό στο άρθρο, στη σελίδα ή "
1069
  "στο widget σας:"
1070
 
1071
  # @ contact_form
1072
- #: contact_form.php:2297
1073
  msgid "Sorry, email message could not be delivered."
1074
  msgstr ""
1075
  "Λυπούμαστε, το μήνυμα ηλεκτρονικού ταχυδρομείου δεν μπόρεσε να παραδοθεί."
1076
 
1077
  # @ contact_form
1078
- #: contact_form.php:2777 contact_form.php:2779
1079
  msgid "Sent from (ip address)"
1080
  msgstr "Εστάλη από (διεύθυνση IP)"
1081
 
1082
  # @ contact_form
1083
- #: contact_form.php:2804
1084
  msgid "Contact from"
1085
  msgstr "Φόρμμα επικοινωνίας"
1086
 
1087
  # @ contact_form
1088
- #: contact_form.php:2826 contact_form.php:2856
1089
- msgid "Phone"
1090
- msgstr "Αριθμός τηλεφώνου"
1091
-
1092
- # @ contact_form
1093
- #: contact_form.php:2837 contact_form.php:2863
1094
  msgid "Site"
1095
  msgstr "Ιστοσελίδα"
1096
 
1097
  # @ contact_form
1098
- #: contact_form.php:2956
1099
  msgid ""
1100
  "If you can see this MIME, it means that the MIME type is not supported by "
1101
  "your email client!"
@@ -1104,44 +1055,44 @@ msgstr ""
1104
  "υποστηρίζεται από τον email client σας!"
1105
 
1106
  # @ contact_form
1107
- #: contact_form.php:3039
1108
  msgid "FAQ"
1109
  msgstr "Συχνές Ερωτήσεις"
1110
 
1111
  # @ contact_form
1112
- #: contact_form.php:3040
1113
  msgid "Support"
1114
  msgstr "Υποστήριξη"
1115
 
1116
  # @ contact_form
1117
- #: contact_form.php:3089
1118
  msgid "Are you sure that you want to delete this language data?"
1119
  msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε τα δεδομένα αυτής της γλώσσας;"
1120
 
1121
  # @ contact_form
1122
- #: contact_form.php:3110
1123
  #, fuzzy
1124
  msgid "Add multiple forms"
1125
  msgstr "Προσθήκη στη φόρμα"
1126
 
1127
- #: contact_form.php:3110
1128
  msgid ""
1129
  "Install Contact Form Multi plugin to create unlimited number of contact "
1130
  "forms."
1131
  msgstr ""
1132
 
1133
  # @ contact_form
1134
- #: contact_form.php:3115
1135
  #, fuzzy
1136
  msgid "Learn more"
1137
  msgstr "Μάθετε περισσότερα"
1138
 
1139
- #: contact_form.php:3320
1140
  msgid "Close notice"
1141
  msgstr ""
1142
 
1143
  # @ contact_form
1144
- #: contact_form.php:3325
1145
  #, fuzzy
1146
  msgid "allows to store your messages to the database."
1147
  msgstr ""
@@ -1149,22 +1100,82 @@ msgstr ""
1149
  "στη βάση δεδομένων."
1150
 
1151
  # @ contact_form
1152
- #: contact_form.php:3326
1153
  msgid "Manage messages that have been sent from your website."
1154
  msgstr "Διαχειριστείτε τα μηνύματα που έχουν σταλεί από την ιστοσελίδα σας."
1155
 
1156
  # @ contact_form
1157
- #: contact_form.php:3384
1158
  #, fuzzy
1159
  msgid "Contact form"
1160
  msgstr "Φόρμμα επικοινωνίας"
1161
 
1162
  # @ contact_form
1163
- #: contact_form.php:3397 contact_form.php:3407
1164
  #, fuzzy
1165
  msgid "Language"
1166
  msgstr "Προσθήκη γλώσσας"
1167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1168
  # @ contact_form
1169
  #~ msgid "To send mail you can use the php mail function"
1170
  #~ msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-12 17:22+0300\n"
6
+ "PO-Revision-Date: 2016-07-12 17:22+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Dimitris Karantonis <dkarantonis@gmail.com>\n"
9
  "Language: el\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
  # @ contact_form
24
+ #: contact_form.php:37 contact_form.php:1118
25
  msgid "Contact Form Settings"
26
  msgstr "Ρυθμίσεις φόρμας επικοινωνίας"
27
 
31
  msgstr "Φόρμα Επικοινωνίας"
32
 
33
  # @ contact_form
34
+ #: contact_form.php:167 contact_form.php:1294 contact_form.php:1353
35
+ #: contact_form.php:1746 contact_form.php:1784 contact_form.php:2033
36
+ #: contact_form.php:3113 contact_form.php:3159
37
+ msgid "Name"
38
+ msgstr "Όνομα"
39
 
40
  # @ contact_form
41
+ #: contact_form.php:168 contact_form.php:1400 contact_form.php:1747
42
+ #: contact_form.php:1785 contact_form.php:2038 contact_form.php:3120
43
+ #: contact_form.php:3165
44
+ msgid "Address"
45
+ msgstr "Διεύθυνση"
46
 
47
  # @ contact_form
48
+ #: contact_form.php:169 contact_form.php:1416 contact_form.php:1748
49
+ #: contact_form.php:1786
50
+ msgid "Email Address"
51
+ msgstr "Διεύθυνση Email"
52
 
53
  # @ contact_form
54
+ #: contact_form.php:170 contact_form.php:1439 contact_form.php:1749
55
+ #: contact_form.php:1787
56
+ msgid "Phone number"
57
+ msgstr "Αριθμός τηλεφώνου"
58
 
59
  # @ contact_form
60
+ #: contact_form.php:171 contact_form.php:1455 contact_form.php:1750
61
+ #: contact_form.php:1788 contact_form.php:2053 contact_form.php:3131
62
+ #: contact_form.php:3174
63
+ msgid "Subject"
64
+ msgstr "Θέμα"
65
 
66
  # @ contact_form
67
+ #: contact_form.php:172 contact_form.php:1479 contact_form.php:1751
68
+ #: contact_form.php:1789 contact_form.php:2057 contact_form.php:3136
69
+ #: contact_form.php:3178
70
+ msgid "Message"
71
+ msgstr "Μήνυμα"
72
 
73
  # @ contact_form
74
+ #: contact_form.php:173 contact_form.php:1752 contact_form.php:1790
75
+ #: contact_form.php:2062
76
+ msgid "Attachment"
77
+ msgstr "Συννημένο αρχείο"
78
 
79
  # @ contact_form
80
+ #: contact_form.php:174
81
  msgid ""
82
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
83
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
87
  "PPT."
88
 
89
  # @ contact_form
90
+ #: contact_form.php:175 contact_form.php:1754 contact_form.php:1792
91
  msgid "Send me a copy"
92
  msgstr "Αποστολή αντιγράφου"
93
 
94
  # @ contact_form
95
+ #: contact_form.php:176 contact_form.php:1755 contact_form.php:1793
96
  msgid "Submit"
97
  msgstr "Αποστολή"
98
 
99
  # @ contact_form
100
+ #: contact_form.php:177
101
  msgid "Your name is required."
102
  msgstr "Το όνομα σας είναι απαραίτητο."
103
 
104
  # @ contact_form
105
+ #: contact_form.php:178
106
  msgid "Address is required."
107
  msgstr "Η διεύθυνσή σας είναι απαραίτητη."
108
 
109
  # @ contact_form
110
+ #: contact_form.php:179
111
  msgid "A valid email address is required."
112
  msgstr "Απαιτείται μία έγκυρη διεύθυνση email."
113
 
114
  # @ contact_form
115
+ #: contact_form.php:180
116
  msgid "Phone number is required."
117
  msgstr "Ο αριθμός τηλεφώνου είναι απαραίτητος."
118
 
119
  # @ contact_form
120
+ #: contact_form.php:181
121
  msgid "Subject is required."
122
  msgstr "Το θέμα είναι απαραίτητο."
123
 
124
  # @ contact_form
125
+ #: contact_form.php:182
126
  msgid "Message text is required."
127
  msgstr "Το μήνυμα κειμένου είναι απαραίτητο."
128
 
129
  # @ contact_form
130
+ #: contact_form.php:183
131
  msgid "File format is not valid."
132
  msgstr "Ο τύπος του αρχείου δεν είναι έγκυρος."
133
 
134
  # @ contact_form
135
+ #: contact_form.php:184
136
  msgid "File upload error."
137
  msgstr "Πρόβλημα κατά το ανέβασμα του αρχείου."
138
 
139
  # @ contact_form
140
+ #: contact_form.php:185
141
  msgid "The file could not be uploaded."
142
  msgstr "Το αρχείο δεν μπορούσε να ανέβει."
143
 
144
  # @ contact_form
145
+ #: contact_form.php:186
146
  msgid "This file is too large."
147
  msgstr "Το μέγεθος αρχείου είναι πολύ μεγάλο."
148
 
149
  # @ contact_form
150
+ #: contact_form.php:187
151
  msgid "Please fill out the CAPTCHA."
152
  msgstr "Παρακαλούμε, συμπληρώστε το πεδίο CAPTCHA."
153
 
154
  # @ contact_form
155
+ #: contact_form.php:188
156
  msgid "Please make corrections below and try again."
157
  msgstr ""
158
  "Παρακαλούμε, προχωρήστε στις παρακακάτω διορθώσεις και προσπαθήστε ξανά."
159
 
160
  # @ contact_form
161
+ #: contact_form.php:190
162
  msgid "Thank you for contacting us."
163
  msgstr "Σας ευχαριστούμε για την επικοινωνία."
164
 
165
  # @ contact_form
166
+ #: contact_form.php:824 contact_form.php:1076
167
  msgid "Settings saved."
168
  msgstr "Οι ρυθμίσεις αποθηκεύτηκαν."
169
 
170
+ #: contact_form.php:1021
171
  msgid ""
172
  "Email 'FROM' field option was changed, which may cause email messages being "
173
  "moved to the spam folder or email delivery failures."
174
  msgstr ""
175
 
176
  # @ contact_form
177
+ #: contact_form.php:1031
178
  msgid ""
179
  "If the 'Redirect to page' option is selected then the URL field should be in "
180
  "the following format"
183
  "πεδίο URL θα πρέπει να έχει την ακόλουθη μορφή"
184
 
185
  # @ contact_form
186
+ #: contact_form.php:1038
187
  msgid "Such user does not exist."
188
  msgstr "Τέτοιος χρήστης δεν υπάρχει."
189
 
190
  # @ contact_form
191
+ #: contact_form.php:1048
192
  msgid ""
193
  "Please enter a valid email address in the 'Use this email address' field."
194
  msgstr ""
196
  "αυτήν τη διεύθυνση email'."
197
 
198
  # @ contact_form
199
+ #: contact_form.php:1056
200
  msgid "Please enter a valid email address in the 'FROM' field."
201
  msgstr "Παρακαλούμε, εισάγετε μια έγκυρη διεύθυνση email στο πεδίο «ΑΠΟ»."
202
 
203
  # @ contact_form
204
+ #: contact_form.php:1078
205
  msgid "Settings are not saved."
206
  msgstr "Οι ρυθμίσεις δεν αποθηκεύτηκαν."
207
 
208
+ #: contact_form.php:1115
209
  msgid "All plugin settings were restored."
210
  msgstr ""
211
 
212
+ #: contact_form.php:1120
213
  msgid "How to Use Step-by-step Instruction"
214
  msgstr ""
215
 
216
  # @ contact_form
217
+ #: contact_form.php:1123 contact_form.php:3351 contact_form.php:3365
218
  msgid "Settings"
219
  msgstr "Ρυθμίσεις"
220
 
221
  # @ contact_form
222
+ #: contact_form.php:1124
223
  #, fuzzy
224
  msgid "Additional settings"
225
  msgstr "Πρόσθετες επιλογές"
226
 
227
+ #: contact_form.php:1125
228
  msgid "Appearance"
229
  msgstr ""
230
 
231
+ #: contact_form.php:1126
232
  msgid "Custom code"
233
  msgstr ""
234
 
235
  # @ contact_form
236
+ #: contact_form.php:1127
237
  msgid "Go PRO"
238
  msgstr "Αναβάθμιση σε PRO"
239
 
240
  # @ contact_form
241
+ #: contact_form.php:1136
242
  #, fuzzy
243
+ msgid "Notice"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
  msgstr "Σημείωση:"
245
 
246
+ #: contact_form.php:1140
247
  msgid "NEW_FORM"
248
  msgstr ""
249
 
250
  # @ contact_form
251
+ #: contact_form.php:1141
252
  msgid ""
253
  "If you want to create multiple contact forms, please install the Contact "
254
  "Form Multi plugin."
257
  "εγκαταστήσετε την επέκταση φόρμα επικοινωνίας Multi."
258
 
259
  # @ contact_form
260
+ #: contact_form.php:1150
261
  #, fuzzy, php-format
262
  msgid ""
263
  "If you would like to add a Contact Form to your page or post, please use %s "
267
  "αντιγράψετε και επικολλήσετε αυτό το σύντομο κωδικό στο άρθρο, στη σελίδα ή "
268
  "στο widget σας:"
269
 
270
+ #: contact_form.php:1156
271
  #, php-format
272
  msgid ""
273
  "You can add the Contact Form to your page or post by clicking on %s button "
277
  msgstr ""
278
 
279
  # @ contact_form
280
+ #: contact_form.php:1165
281
  msgid ""
282
  "If you leave the fields empty, the messages will be sent to the email "
283
  "address specified during registration."
286
  "καθορίσατε κατά την εγγραφή σας."
287
 
288
  # @ contact_form
289
+ #: contact_form.php:1168
290
+ #, fuzzy
291
+ msgid "The user's email address"
292
  msgstr "Η διεύθυνση email του χρήστη:"
293
 
294
  # @ contact_form
295
+ #: contact_form.php:1172
296
  #, fuzzy
297
  msgid "Select a username"
298
  msgstr "Δημιουργήστε ένα όνομα χρήστη"
299
 
300
  # @ contact_form
301
+ #: contact_form.php:1185
302
+ #, fuzzy
303
  msgid ""
304
+ "Select a username of the person who should get the messages from the contact "
305
  "form."
306
  msgstr ""
307
  "Εισάγετε το όνομα του προσώπου που θα λαμβάνει τα μηνύματα από τη φόρμα "
308
  "επικοινωνίας."
309
 
310
  # @ contact_form
311
+ #: contact_form.php:1189
312
+ #, fuzzy
313
+ msgid "Use this email address"
314
  msgstr "Χρησιμοποιήστε αυτήν τη διεύθυνση email: "
315
 
316
  # @ contact_form
317
+ #: contact_form.php:1193
318
+ #, fuzzy
319
+ msgid "Enter the email address for receiving messages"
320
  msgstr "Εισάγετε τη διεύθυνση email που θέλετε τα μηνύματα να προωθούνται."
321
 
322
+ #: contact_form.php:1200 contact_form.php:1663 contact_form.php:1873
323
+ #: contact_form.php:1961 contact_form.php:3446
324
  msgid "Close"
325
  msgstr ""
326
 
327
  # @ contact_form
328
+ #: contact_form.php:1204
329
+ #, fuzzy
330
+ msgid "Add department selectbox to the contact form"
331
  msgstr "Προσθέστε τμήμα selectbox στην φόρμα επικοινωνίας:"
332
 
333
  # @ contact_form
334
+ #: contact_form.php:1212 contact_form.php:1672 contact_form.php:1892
335
+ #: contact_form.php:2167
336
  msgid "If you upgrade to Pro version all your settings will be saved."
337
  msgstr ""
338
  "Εάν κάνετε αναβάθμιση σε έκδοση Pro όλες οι ρυθμίσεις σας θα αποθηκευτούν."
339
 
340
  # @ contact_form
341
+ #: contact_form.php:1219 contact_form.php:1509 contact_form.php:1677
342
+ #: contact_form.php:1899 contact_form.php:2174
343
  #, fuzzy
344
  msgid "Unlock premium options by upgrading to Pro version"
345
  msgstr "Ξεκλειδώστε τις επιπλέον επιλογές, αναβαθμίζοντας στην έκδοση PRO."
346
 
347
  # @ contact_form
348
+ #: contact_form.php:1222 contact_form.php:1512 contact_form.php:1680
349
+ #: contact_form.php:1902 contact_form.php:2177 contact_form.php:3672
350
  msgid "Learn More"
351
  msgstr "Μάθετε περισσότερα"
352
 
353
  # @ contact_form
354
+ #: contact_form.php:1230
355
  msgid "Save emails to the database"
356
  msgstr "Αποθηκεύστε τα μηνύματα ηλεκτρονικού ταχυδρομείου στη βάση δεδομένων"
357
 
358
  # @ contact_form
359
+ #: contact_form.php:1241 contact_form.php:1255 contact_form.php:1262
360
  msgid "Using"
361
  msgstr "Χρήση"
362
 
363
+ #: contact_form.php:1247 contact_form.php:1572 contact_form.php:1605
364
+ #: contact_form.php:1640
365
+ msgid "Please activate the appropriate option on"
366
+ msgstr ""
367
+
368
  # @ contact_form
369
+ #: contact_form.php:1250 contact_form.php:1575 contact_form.php:1608
370
+ #: contact_form.php:1643
371
  #, fuzzy
372
+ msgid "settings page"
373
+ msgstr "Οι ρυθμίσεις αποθηκεύτηκαν."
374
 
375
  # @ contact_form
376
+ #: contact_form.php:1256 contact_form.php:1581 contact_form.php:1615
377
+ #: contact_form.php:1651
378
  #, fuzzy
379
  msgid "Activate"
380
  msgstr "Ενεργοποίηση captcha"
381
 
382
  # @ contact_form
383
+ #: contact_form.php:1263 contact_form.php:1587 contact_form.php:1621
384
+ #: contact_form.php:1656
385
  #, fuzzy
386
  msgid "Download"
387
  msgstr "Κατέβασμα captcha"
388
 
389
+ #: contact_form.php:1275
390
+ msgid "Sending method"
391
+ msgstr ""
 
392
 
393
  # @ contact_form
394
+ #: contact_form.php:1280
395
  msgid "Wp-mail"
396
  msgstr "Wp-mail"
397
 
398
  # @ contact_form
399
+ #: contact_form.php:1282
400
  #, fuzzy
401
  msgid "You can use the Wordpress wp_mail function for mailing"
402
  msgstr ""
403
  "Μπορείτε να χρησιμοποιήσετε τη λειτουργία wp_mail για την αποστολή emails"
404
 
405
  # @ contact_form
406
+ #: contact_form.php:1285
407
  msgid "Mail"
408
  msgstr "Tαχυδρομείο"
409
 
410
  # @ contact_form
411
+ #: contact_form.php:1287
412
  #, fuzzy
413
  msgid "You can use the PHP mail function for mailing"
414
  msgstr ""
415
  "Μπορείτε να χρησιμοποιήσετε τη λειτουργία wp_mail για την αποστολή emails"
416
 
417
+ #: contact_form.php:1292
418
  msgid "'FROM' field"
419
  msgstr ""
420
 
421
  # @ contact_form
422
+ #: contact_form.php:1297
 
 
 
 
 
 
423
  msgid "User name"
424
  msgstr "Όνομα χρήστη"
425
 
426
  # @ contact_form
427
+ #: contact_form.php:1299
428
  msgid ""
429
  "The name of the user who fills the form will be used in the field 'From'."
430
  msgstr ""
432
  "'Από'."
433
 
434
  # @ contact_form
435
+ #: contact_form.php:1304 contact_form.php:3126 contact_form.php:3170
436
  msgid "Email"
437
  msgstr "Email"
438
 
439
  # @ contact_form
440
+ #: contact_form.php:1307
441
  msgid "User email"
442
  msgstr "Email χρήστη"
443
 
444
  # @ contact_form
445
+ #: contact_form.php:1309
446
  msgid ""
447
  "The email address of the user who fills the form will be used in the field "
448
  "'From'."
450
  "Η διεύθυνση email του χρήστη που συμπληρώνει τη φόρμα θα χρησιμοποιηθεί στο "
451
  "πεδίο 'Από'."
452
 
453
+ #: contact_form.php:1312
454
  msgid ""
455
  "If this option is changed, email messages may be moved to the spam folder or "
456
  "email delivery failures may occur."
457
  msgstr ""
458
 
459
  # @ contact_form
460
+ #: contact_form.php:1318
461
  msgid "Required symbol"
462
  msgstr "Απαιτούμενο σύμβολο"
463
 
464
  # @ contact_form
465
+ #: contact_form.php:1328
466
  msgid "Fields"
467
  msgstr "Πεδία"
468
 
469
  # @ contact_form
470
+ #: contact_form.php:1329 contact_form.php:1356 contact_form.php:1383
471
+ #: contact_form.php:1403 contact_form.php:1442 contact_form.php:1527
472
  msgid "Used"
473
  msgstr "Χρησιμοποιείται"
474
 
475
  # @ contact_form
476
+ #: contact_form.php:1330 contact_form.php:1345 contact_form.php:1360
477
+ #: contact_form.php:1387 contact_form.php:1407 contact_form.php:1420
478
+ #: contact_form.php:1446 contact_form.php:1459 contact_form.php:1483
479
  msgid "Required"
480
  msgstr "Απαιτούμενο"
481
 
482
  # @ contact_form
483
+ #: contact_form.php:1332 contact_form.php:1365 contact_form.php:1425
484
+ #: contact_form.php:1464 contact_form.php:1488
485
  msgid "Visible"
486
  msgstr "Ορατό"
487
 
488
  # @ contact_form
489
+ #: contact_form.php:1333 contact_form.php:1369 contact_form.php:1429
490
+ #: contact_form.php:1468 contact_form.php:1492
491
  msgid "Disabled for editing"
492
  msgstr "Δεν επιτρέπεται η επεξεργασία"
493
 
494
  # @ contact_form
495
+ #: contact_form.php:1334 contact_form.php:1393 contact_form.php:1472
496
+ #: contact_form.php:1496
497
  msgid "Field's default value"
498
  msgstr "Προκαθορισμένη τιμή πεδίου"
499
 
500
  # @ contact_form
501
+ #: contact_form.php:1341
502
  #, fuzzy
503
  msgid "Department selectbox"
504
  msgstr "Τοποθεσία selectbox"
505
 
506
+ #: contact_form.php:1373
507
  msgid "Use User's name as a default value if the user is logged in."
508
  msgstr ""
509
 
510
+ #: contact_form.php:1374 contact_form.php:1434
511
  msgid ""
512
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
513
  "in users."
514
  msgstr ""
515
 
516
  # @ contact_form
517
+ #: contact_form.php:1380
518
  msgid "Location selectbox"
519
  msgstr "Τοποθεσία selectbox"
520
 
521
+ #: contact_form.php:1433
 
 
 
 
 
 
 
 
 
 
 
522
  msgid "Use User's email as a default value if the user is logged in."
523
  msgstr ""
524
 
525
  # @ contact_form
526
+ #: contact_form.php:1520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
527
  msgid "Attachment block"
528
  msgstr "Συνημμένο μπλοκ"
529
 
530
  # @ contact_form
531
+ #: contact_form.php:1522
532
  msgid "Users can attach the following file formats"
533
  msgstr "Οι χρήστες μπορούν να επισυνάψουν τις ακόλουθες μορφές αρχείων"
534
 
535
  # @ contact_form
536
+ #: contact_form.php:1540
537
  msgid "Add to the form"
538
  msgstr "Προσθήκη στη φόρμα"
539
 
540
  # @ contact_form
541
+ #: contact_form.php:1545
542
  msgid "Tips below the Attachment"
543
  msgstr "Συμβουλές κάτω από το συνημμένο"
544
 
545
  # @ contact_form
546
+ #: contact_form.php:1554
547
  msgid "'Send me a copy' block"
548
  msgstr "Μπλοκ 'Στείλε μου ένα αντίγραφο'"
549
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
550
  # @ contact_form
551
+ #: contact_form.php:1667
552
  msgid "Agreement checkbox"
553
  msgstr "Checkbox συμφωνίας"
554
 
555
  # @ contact_form
556
+ #: contact_form.php:1667
557
  msgid "Required checkbox for submitting the form"
558
  msgstr "Απαιτούμενο checkbox για την υποβολή της φόρμας"
559
 
560
  # @ contact_form
561
+ #: contact_form.php:1668
562
  msgid "Optional checkbox"
563
  msgstr "Προαιρετικό checkbox"
564
 
565
  # @ contact_form
566
+ #: contact_form.php:1668
567
  msgid "Optional checkbox, the results of which will be displayed in email"
568
  msgstr "Optional checkbox, τα αποτελέσματα του οποίου θα εμφανίζεται στο email"
569
 
570
  # @ contact_form
571
+ #: contact_form.php:1689
572
  msgid "Delete an attachment file from the server after the email is sent"
573
  msgstr ""
574
  "Διαγραφή συνημμένου αρχείου από τον διακομιστή μετά την αποστολή του email"
575
 
576
  # @ contact_form
577
+ #: contact_form.php:1695
578
  msgid "Email in HTML format sending"
579
  msgstr "Αποστολή email σε μορφή HTML "
580
 
581
  # @ contact_form
582
+ #: contact_form.php:1699
583
  msgid "Display additional info in the email"
584
  msgstr "Εμφάνιση περισσότερων πληροφοριών στο email"
585
 
586
  # @ contact_form
587
+ #: contact_form.php:1705
588
  #, fuzzy
589
  msgid "Sent from (IP address)"
590
  msgstr "Εστάλη από (διεύθυνση IP)"
591
 
592
  # @ contact_form
593
+ #: contact_form.php:1705
594
  msgid "Example: Sent from (IP address):\t127.0.0.1"
595
  msgstr "Παράδειγμα: Εστάλη από (διεύθυνση IP):\t127.0.0.1"
596
 
597
  # @ contact_form
598
+ #: contact_form.php:1706 contact_form.php:3075 contact_form.php:3077
599
  msgid "Date/Time"
600
  msgstr "Ημερομηνία/Ώρα"
601
 
602
  # @ contact_form
603
+ #: contact_form.php:1706
604
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
605
  msgstr "Παράδειγμα: Ημερομηνία/Ώρα:\tΑύγυστος 19, 2013 8:50 μμ"
606
 
607
  # @ contact_form
608
+ #: contact_form.php:1707 contact_form.php:3081 contact_form.php:3083
609
  msgid "Sent from (referer)"
610
  msgstr "Εστάλη από (παραπέμπτης)"
611
 
612
  # @ contact_form
613
+ #: contact_form.php:1707
614
  msgid ""
615
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
616
  msgstr ""
618
  "contact-us/"
619
 
620
  # @ contact_form
621
+ #: contact_form.php:1708 contact_form.php:3087 contact_form.php:3089
622
  msgid "Using (user agent)"
623
  msgstr "Χρήση (μέσο χρήστη)"
624
 
625
  # @ contact_form
626
+ #: contact_form.php:1708
627
  msgid ""
628
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
629
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
632
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
633
 
634
  # @ contact_form
635
+ #: contact_form.php:1713
636
  msgid "Language settings for the field names in the form"
637
  msgstr "Ρυθμίσεις γλώσσας για τα ονόματα πεδίων στη φόρμα"
638
 
639
  # @ contact_form
640
+ #: contact_form.php:1722
641
  msgid "Add a language"
642
  msgstr "Προσθήκη γλώσσας"
643
 
644
  # @ contact_form
645
+ #: contact_form.php:1726
646
  msgid "Change the names of the contact form fields and error messages"
647
  msgstr ""
648
  "Αλλάξτε τα ονόματα των πεδίων και των μηνύματα σφαλμάτων στη φόρμας "
649
  "επικοινωνίας "
650
 
651
  # @ contact_form
652
+ #: contact_form.php:1731 contact_form.php:1827 contact_form.php:2081
653
+ #: contact_form.php:2086 contact_form.php:2096 contact_form.php:2101
654
+ #: contact_form.php:2106 contact_form.php:2111 contact_form.php:2121
655
+ #: contact_form.php:2126 contact_form.php:2135 contact_form.php:2149
656
+ #: contact_form.php:2154 contact_form.php:2159
657
  msgid "Default"
658
  msgstr "Προκαθορισμένο"
659
 
660
  # @ contact_form
661
+ #: contact_form.php:1744 contact_form.php:1782
662
  msgid "click to expand/hide the list"
663
  msgstr "κάντε κλικ για να επεκτείνετε/αποκρύψετε τη λίστα"
664
 
665
  # @ contact_form
666
+ #: contact_form.php:1753 contact_form.php:1791
667
  msgid "Tips below the Attachment block"
668
  msgstr "Συμβουλές κάτω από το Συνημμένο μπλοκ"
669
 
670
  # @ contact_form
671
+ #: contact_form.php:1756 contact_form.php:1794
672
  msgid "Error message for the Name field"
673
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Όνομα'"
674
 
675
  # @ contact_form
676
+ #: contact_form.php:1757 contact_form.php:1795
677
  msgid "Error message for the Address field"
678
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Διεύθυνση'"
679
 
680
  # @ contact_form
681
+ #: contact_form.php:1758 contact_form.php:1796
682
  msgid "Error message for the Email field"
683
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Email'"
684
 
685
  # @ contact_form
686
+ #: contact_form.php:1759 contact_form.php:1797
687
  msgid "Error message for the Phone field"
688
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Αριθμός τηλεφώνου'"
689
 
690
  # @ contact_form
691
+ #: contact_form.php:1760 contact_form.php:1798
692
  msgid "Error message for the Subject field"
693
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Θέμα'"
694
 
695
  # @ contact_form
696
+ #: contact_form.php:1761 contact_form.php:1799
697
  msgid "Error message for the Message field"
698
  msgstr "Μήνυμα σφάλματος στο πεδίο 'Μήνυμα'"
699
 
700
  # @ contact_form
701
+ #: contact_form.php:1762 contact_form.php:1800
702
  msgid "Error message about the file type for the Attachment field"
703
  msgstr "Μήνυμα σφάλματος σχετικά με τον τύπο αρχείου για το πεδίο 'Συνημμένο'"
704
 
705
  # @ contact_form
706
+ #: contact_form.php:1763 contact_form.php:1801
707
  msgid ""
708
  "Error message while uploading a file for the Attachment field to the server"
709
  msgstr ""
711
  "διακομιστή"
712
 
713
  # @ contact_form
714
+ #: contact_form.php:1764 contact_form.php:1802
715
  msgid "Error message while moving the file for the Attachment field"
716
  msgstr ""
717
  "Μήνυμα σφάλματος κατά τη μετακίνηση του αρχείου για το πεδίο 'Συνημμένο'"
718
 
719
  # @ contact_form
720
+ #: contact_form.php:1765 contact_form.php:1803
721
  msgid "Error message when file size limit for the Attachment field is exceeded"
722
  msgstr ""
723
  "Μήνυμα σφάλματος όταν το όριο μεγέθους αρχείου για το πεδίο 'Συνημμένο' έχει "
724
  "ξεπεραστεί"
725
 
726
  # @ contact_form
727
+ #: contact_form.php:1766 contact_form.php:1804
728
  msgid "Error message for the Captcha field"
729
  msgstr "Μήνυμα σφάλματος για το πεδίο 'Captcha'"
730
 
731
  # @ contact_form
732
+ #: contact_form.php:1767 contact_form.php:1805
733
  msgid "Error message for the whole form"
734
  msgstr "Μήνυμα σφάλματος συνολικά για τη φόρμα"
735
 
736
  # @ contact_form
737
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
738
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
739
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
740
+ #: contact_form.php:3516
741
  msgid "Use shortcode"
742
  msgstr "Χρήση σύντομου κωδικού"
743
 
744
  # @ contact_form
745
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
746
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
747
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
748
+ #: contact_form.php:3516
749
  msgid "for this language"
750
  msgstr "για τη συγκεκριμένη γλώσσα"
751
 
752
  # @ contact_form
753
+ #: contact_form.php:1818
754
  msgid "Use the changed names of the contact form fields in the email"
755
  msgstr ""
756
  "Χρησιμοποιήστε τα τροποποιημένα ονόματα των πεδίων της φόρμας επικοινωνίας "
757
  "στο email"
758
 
759
  # @ contact_form
760
+ #: contact_form.php:1824
761
  msgid "Action after email is sent"
762
  msgstr "Ενέργεια μετά την αποστολή του email"
763
 
764
  # @ contact_form
765
+ #: contact_form.php:1826
766
  msgid "Display text"
767
  msgstr "Εμφάνιση κειμένου"
768
 
769
  # @ contact_form
770
+ #: contact_form.php:1840 contact_form.php:1854
771
  msgid "Text"
772
  msgstr "Κείμενο"
773
 
774
  # @ contact_form
775
+ #: contact_form.php:1865
776
  msgid "Redirect to the page"
777
  msgstr "Ανακατεύθυνση στη σελίδα"
778
 
779
  # @ contact_form
780
+ #: contact_form.php:1866
781
  msgid "Url"
782
  msgstr "Url"
783
 
784
+ #: contact_form.php:1877
785
  msgid "Add field 'Reply-To' to the email header"
786
  msgstr ""
787
 
788
+ #: contact_form.php:1879
789
  msgid "Field 'Reply-To' will be initialized by user email"
790
  msgstr ""
791
 
792
  # @ contact_form
793
+ #: contact_form.php:1883
794
  msgid "Auto Response"
795
  msgstr "Αυτόματη Απάντηση"
796
 
797
  # @ contact_form
798
+ #: contact_form.php:1887
799
  #, php-format
800
  msgid ""
801
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
808
  "ιστολογίου."
809
 
810
  # @ default
811
+ #: contact_form.php:1912 contact_form.php:2398
812
  msgid "Save Changes"
813
  msgstr "Αποθήκευση αλλαγών"
814
 
815
+ #: contact_form.php:1925
816
  #, php-format
817
  msgid ""
818
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
819
  msgstr ""
820
 
821
+ #: contact_form.php:1925 contact_form.php:1934
822
+ msgid "Form layout"
823
+ msgstr ""
824
+
825
+ # @ contact_form
826
+ #: contact_form.php:1925 contact_form.php:1946
827
+ #, fuzzy
828
+ msgid "Submit position"
829
+ msgstr "Κομβίο Υποβολής"
830
+
831
+ #: contact_form.php:1938
832
  msgid "One column"
833
  msgstr ""
834
 
835
+ #: contact_form.php:1941
836
  msgid "Two columns"
837
  msgstr ""
838
 
839
+ #: contact_form.php:1950 contact_form.php:1969 contact_form.php:1987
840
+ #: contact_form.php:2002
841
  msgid "Left"
842
  msgstr ""
843
 
844
+ #: contact_form.php:1953 contact_form.php:1975 contact_form.php:1990
845
+ #: contact_form.php:2008
846
  msgid "Right"
847
  msgstr ""
848
 
849
+ #: contact_form.php:1965
850
  msgid "Form align"
851
  msgstr ""
852
 
853
+ #: contact_form.php:1972 contact_form.php:2005
854
  msgid "Center"
855
  msgstr ""
856
 
857
  # @ contact_form
858
+ #: contact_form.php:1980
859
  #, fuzzy
860
  msgid "Labels position"
861
  msgstr "Κομβίο Υποβολής"
862
 
863
+ #: contact_form.php:1984
864
  msgid "Top"
865
  msgstr ""
866
 
867
+ #: contact_form.php:1993
868
  msgid "Bottom"
869
  msgstr ""
870
 
871
+ #: contact_form.php:1998
872
  msgid "Labels align"
873
  msgstr ""
874
 
875
  # @ contact_form
876
+ #: contact_form.php:2013
877
  msgid "Errors output"
878
  msgstr "Έξοδος σφαλμάτων"
879
 
880
  # @ contact_form
881
+ #: contact_form.php:2016
882
  msgid "Display error messages"
883
  msgstr "Εμφάνιση μηνυμάτων σφαλμάτων"
884
 
885
  # @ contact_form
886
+ #: contact_form.php:2017
887
  msgid "Color of the input field errors."
888
  msgstr "Χρώμα των σφαλμάτων στα πεδία εισαγωγής."
889
 
890
  # @ contact_form
891
+ #: contact_form.php:2018
892
  msgid "Display error messages & color of the input field errors"
893
  msgstr ""
894
  "Εμφάνιση μηνυμάτων σφαλμάτων & χρώμα των σφαλμάτων στα πεδία εισαγωγής."
895
 
896
  # @ contact_form
897
+ #: contact_form.php:2023
898
  msgid "Add placeholder to the input blocks"
899
  msgstr "Προσθήκη placeholder στα μπλοκς εισαγωγής"
900
 
901
  # @ contact_form
902
+ #: contact_form.php:2029
903
  msgid "Add tooltips"
904
  msgstr "Προσθήκη επεξηγήσεων"
905
 
906
  # @ contact_form
907
+ #: contact_form.php:2043
908
  msgid "Email address"
909
  msgstr "Email"
910
 
911
  # @ contact_form
912
+ #: contact_form.php:2048 contact_form.php:3142 contact_form.php:3183
913
  msgid "Phone Number"
914
  msgstr "Αριθμός τηλεφώνου"
915
 
916
  # @ contact_form
917
+ #: contact_form.php:2074
 
 
 
 
 
918
  msgid "Style options"
919
  msgstr "Ρυμθίσεις εμφάνισης"
920
 
921
  # @ contact_form
922
+ #: contact_form.php:2078
923
  msgid "Text color"
924
  msgstr "Χρώμα κειμένου"
925
 
926
  # @ contact_form
927
+ #: contact_form.php:2083
928
  msgid "Label text color"
929
  msgstr "Χρώμα κειμένου ετικέτας"
930
 
931
  # @ contact_form
932
+ #: contact_form.php:2088
933
  msgid "Placeholder color"
934
  msgstr "Χρώμα placeholder"
935
 
936
  # @ contact_form
937
+ #: contact_form.php:2093
938
  msgid "Errors color"
939
  msgstr "Χρώμα σφαλμάτων"
940
 
941
  # @ contact_form
942
+ #: contact_form.php:2098
943
  msgid "Error text color"
944
  msgstr "Χρώμα κειμένου σφάλματος"
945
 
946
  # @ contact_form
947
+ #: contact_form.php:2103
948
  msgid "Background color of the input field errors"
949
  msgstr "Χρώμα φόντου στα πεδία εισαγωγής σφαλμάτων"
950
 
951
  # @ contact_form
952
+ #: contact_form.php:2108
953
  msgid "Border color of the input field errors"
954
  msgstr "Χρώμα περιγράμματος στα πεδία εισαγωγής σφαλμάτων"
955
 
956
  # @ contact_form
957
+ #: contact_form.php:2113
958
  msgid "Placeholder color of the input field errors"
959
  msgstr "Χρώμα placeholder στα πεδία εισαγωγής σφαλμάτων"
960
 
961
  # @ contact_form
962
+ #: contact_form.php:2118
963
  msgid "Input fields"
964
  msgstr "Πεδία εισαγωγής"
965
 
966
  # @ contact_form
967
+ #: contact_form.php:2123
968
  msgid "Input fields background color"
969
  msgstr "Χρώμα φόντου στα πεδία εισαγωγής"
970
 
971
  # @ contact_form
972
+ #: contact_form.php:2128
973
  msgid "Text fields color"
974
  msgstr "Χρώμα πεδίων κειμένου"
975
 
976
  # @ contact_form
977
+ #: contact_form.php:2132
978
  msgid "Border width in px, numbers only"
979
  msgstr "Πλάτος περιγράμματος σε px, μόνο αριθμοί"
980
 
981
  # @ contact_form
982
+ #: contact_form.php:2137 contact_form.php:2161
983
  msgid "Border color"
984
  msgstr "Χρώμα περιγράμματος"
985
 
986
  # @ contact_form
987
+ #: contact_form.php:2142
988
  msgid "Submit button"
989
  msgstr "Κομβίο Υποβολής"
990
 
991
  # @ contact_form
992
+ #: contact_form.php:2146
993
  msgid "Width in px, numbers only"
994
  msgstr "Πλάτος σε px, μόνο αριθμοί"
995
 
996
  # @ contact_form
997
+ #: contact_form.php:2151
998
  msgid "Button color"
999
  msgstr "Χρώμα κομβίου"
1000
 
1001
  # @ contact_form
1002
+ #: contact_form.php:2156
1003
  msgid "Button text color"
1004
  msgstr "Χρώμα κειμένου κομβίου"
1005
 
1006
  # @ contact_form
1007
+ #: contact_form.php:2188
1008
  #, fuzzy
1009
  msgid "Contact Form | Preview"
1010
  msgstr "Contact Form Pro | Προεπισκόπηση"
1011
 
1012
+ #: contact_form.php:2189
1013
  msgid "Drag the necessary field to sort fields."
1014
  msgstr ""
1015
 
1016
  # @ contact_form
1017
+ #: contact_form.php:2385
1018
+ #, fuzzy
1019
  msgid ""
1020
  "If you would like to add the Contact Form to your website, just copy and "
1021
+ "paste this shortcode to your post or page or widget"
1022
  msgstr ""
1023
  "Αν θέλετε να προσθέσετε τη Φόρμα Επικοινωνίας στην ιστοσελίδα σας, απλά "
1024
  "αντιγράψετε και επικολλήσετε αυτό το σύντομο κωδικό στο άρθρο, στη σελίδα ή "
1025
  "στο widget σας:"
1026
 
1027
  # @ contact_form
1028
+ #: contact_form.php:2501
1029
  msgid "Sorry, email message could not be delivered."
1030
  msgstr ""
1031
  "Λυπούμαστε, το μήνυμα ηλεκτρονικού ταχυδρομείου δεν μπόρεσε να παραδοθεί."
1032
 
1033
  # @ contact_form
1034
+ #: contact_form.php:3069 contact_form.php:3071
1035
  msgid "Sent from (ip address)"
1036
  msgstr "Εστάλη από (διεύθυνση IP)"
1037
 
1038
  # @ contact_form
1039
+ #: contact_form.php:3099
1040
  msgid "Contact from"
1041
  msgstr "Φόρμμα επικοινωνίας"
1042
 
1043
  # @ contact_form
1044
+ #: contact_form.php:3104 contact_form.php:3153
 
 
 
 
 
1045
  msgid "Site"
1046
  msgstr "Ιστοσελίδα"
1047
 
1048
  # @ contact_form
1049
+ #: contact_form.php:3283
1050
  msgid ""
1051
  "If you can see this MIME, it means that the MIME type is not supported by "
1052
  "your email client!"
1055
  "υποστηρίζεται από τον email client σας!"
1056
 
1057
  # @ contact_form
1058
+ #: contact_form.php:3366
1059
  msgid "FAQ"
1060
  msgstr "Συχνές Ερωτήσεις"
1061
 
1062
  # @ contact_form
1063
+ #: contact_form.php:3367
1064
  msgid "Support"
1065
  msgstr "Υποστήριξη"
1066
 
1067
  # @ contact_form
1068
+ #: contact_form.php:3416
1069
  msgid "Are you sure that you want to delete this language data?"
1070
  msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε τα δεδομένα αυτής της γλώσσας;"
1071
 
1072
  # @ contact_form
1073
+ #: contact_form.php:3437
1074
  #, fuzzy
1075
  msgid "Add multiple forms"
1076
  msgstr "Προσθήκη στη φόρμα"
1077
 
1078
+ #: contact_form.php:3437
1079
  msgid ""
1080
  "Install Contact Form Multi plugin to create unlimited number of contact "
1081
  "forms."
1082
  msgstr ""
1083
 
1084
  # @ contact_form
1085
+ #: contact_form.php:3442
1086
  #, fuzzy
1087
  msgid "Learn more"
1088
  msgstr "Μάθετε περισσότερα"
1089
 
1090
+ #: contact_form.php:3663
1091
  msgid "Close notice"
1092
  msgstr ""
1093
 
1094
  # @ contact_form
1095
+ #: contact_form.php:3668
1096
  #, fuzzy
1097
  msgid "allows to store your messages to the database."
1098
  msgstr ""
1100
  "στη βάση δεδομένων."
1101
 
1102
  # @ contact_form
1103
+ #: contact_form.php:3669
1104
  msgid "Manage messages that have been sent from your website."
1105
  msgstr "Διαχειριστείτε τα μηνύματα που έχουν σταλεί από την ιστοσελίδα σας."
1106
 
1107
  # @ contact_form
1108
+ #: contact_form.php:3727
1109
  #, fuzzy
1110
  msgid "Contact form"
1111
  msgstr "Φόρμμα επικοινωνίας"
1112
 
1113
  # @ contact_form
1114
+ #: contact_form.php:3740 contact_form.php:3750
1115
  #, fuzzy
1116
  msgid "Language"
1117
  msgstr "Προσθήκη γλώσσας"
1118
 
1119
+ # @ contact_form
1120
+ #~ msgid "Name:"
1121
+ #~ msgstr "Όνομα:"
1122
+
1123
+ # @ contact_form
1124
+ #~ msgid "Address:"
1125
+ #~ msgstr "Διεύθυνση:"
1126
+
1127
+ # @ contact_form
1128
+ #~ msgid "Email Address:"
1129
+ #~ msgstr "Email:"
1130
+
1131
+ # @ contact_form
1132
+ #~ msgid "Phone number:"
1133
+ #~ msgstr "Αριθμός τηλεφώνου:"
1134
+
1135
+ # @ contact_form
1136
+ #~ msgid "Subject:"
1137
+ #~ msgstr "Θέμα:"
1138
+
1139
+ # @ contact_form
1140
+ #~ msgid "Message:"
1141
+ #~ msgstr "Μήνυμα:"
1142
+
1143
+ # @ contact_form
1144
+ #~ msgid "Attachment:"
1145
+ #~ msgstr "Συννημένο Αρχείο:"
1146
+
1147
+ # @ contact_form
1148
+ #, fuzzy
1149
+ #~ msgid ""
1150
+ #~ "Please enable JavaScript to add language in the contact form, change the "
1151
+ #~ "names of the contact form fields and error messages."
1152
+ #~ msgstr ""
1153
+ #~ "Αλλάξτε τα ονόματα των πεδίων και των μηνύματα σφαλμάτων στη φόρμας "
1154
+ #~ "επικοινωνίας "
1155
+
1156
+ # @ contact_form
1157
+ #~ msgid "What to use?"
1158
+ #~ msgstr "Τι πρέπει να χρησιμοποιήσετε;"
1159
+
1160
+ # @ contact_form
1161
+ #, fuzzy
1162
+ #~ msgid "Using Contact Form to DB by BestWebSoft"
1163
+ #~ msgstr "Χρήση της Φόρμας Επικοινωνίας για DB, υποστήριξη από"
1164
+
1165
+ # @ contact_form
1166
+ #, fuzzy
1167
+ #~ msgid "Activate Captcha"
1168
+ #~ msgstr "Ενεργοποίηση captcha"
1169
+
1170
+ # @ contact_form
1171
+ #, fuzzy
1172
+ #~ msgid "Download Captcha"
1173
+ #~ msgstr "Κατέβασμα captcha"
1174
+
1175
+ # @ contact_form
1176
+ #~ msgid "Phone"
1177
+ #~ msgstr "Αριθμός τηλεφώνου"
1178
+
1179
  # @ contact_form
1180
  #~ msgid "To send mail you can use the php mail function"
1181
  #~ msgstr ""
languages/contact-form-plugin-es_ES.mo CHANGED
Binary file
languages/contact-form-plugin-es_ES.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: 2016-06-27 16:31+0300\n"
6
- "PO-Revision-Date: 2016-06-27 16:31+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Javitopo <jaawme@hotmail.com>\n"
9
  "Language: es_ES\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: contact_form.php:37 contact_form.php:1030
21
  msgid "Contact Form Settings"
22
  msgstr "Opciones de formulario de contacto"
23
 
@@ -25,35 +25,46 @@ msgstr "Opciones de formulario de contacto"
25
  msgid "Contact Form"
26
  msgstr "Contact Form"
27
 
28
- #: contact_form.php:165 contact_form.php:1565 contact_form.php:1599
29
- msgid "Name:"
30
- msgstr "Nombre:"
 
 
31
 
32
- #: contact_form.php:166 contact_form.php:1566 contact_form.php:1600
33
- msgid "Address:"
34
- msgstr "Dirección:"
 
 
35
 
36
- #: contact_form.php:167 contact_form.php:1567 contact_form.php:1601
37
- msgid "Email Address:"
38
- msgstr "Dirección de correo electrónico:"
 
39
 
40
- #: contact_form.php:168 contact_form.php:1568 contact_form.php:1602
41
- msgid "Phone number:"
42
- msgstr "Número de teléfono:"
 
43
 
44
- #: contact_form.php:169 contact_form.php:1569 contact_form.php:1603
45
- msgid "Subject:"
46
- msgstr "Asunto:"
 
 
47
 
48
- #: contact_form.php:170 contact_form.php:1570 contact_form.php:1604
49
- msgid "Message:"
50
- msgstr "Mensaje:"
 
 
51
 
52
- #: contact_form.php:171 contact_form.php:1571 contact_form.php:1605
53
- msgid "Attachment:"
54
- msgstr "Datos adjuntos:"
 
55
 
56
- #: contact_form.php:172
57
  msgid ""
58
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
59
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -61,71 +72,71 @@ msgstr ""
61
  "Tipos de archivo admitidos: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
62
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
63
 
64
- #: contact_form.php:173 contact_form.php:1573 contact_form.php:1607
65
  msgid "Send me a copy"
66
  msgstr "Deseo recibir una copia"
67
 
68
- #: contact_form.php:174 contact_form.php:1574 contact_form.php:1608
69
  msgid "Submit"
70
  msgstr "Enviar"
71
 
72
- #: contact_form.php:175
73
  msgid "Your name is required."
74
  msgstr "Es necesario un nombre."
75
 
76
- #: contact_form.php:176
77
  msgid "Address is required."
78
  msgstr "Se requiere dirección."
79
 
80
- #: contact_form.php:177
81
  msgid "A valid email address is required."
82
  msgstr "Se requiere una dirección de email válida."
83
 
84
- #: contact_form.php:178
85
  msgid "Phone number is required."
86
  msgstr "Es necesario un número de teléfono."
87
 
88
- #: contact_form.php:179
89
  msgid "Subject is required."
90
  msgstr "Es necesario un asunto."
91
 
92
- #: contact_form.php:180
93
  msgid "Message text is required."
94
  msgstr "Es necesario el texto del mensaje."
95
 
96
- #: contact_form.php:181
97
  msgid "File format is not valid."
98
  msgstr "Formato de archivo no válido."
99
 
100
- #: contact_form.php:182
101
  msgid "File upload error."
102
  msgstr "Error de carga de archivos."
103
 
104
- #: contact_form.php:183
105
  msgid "The file could not be uploaded."
106
  msgstr "El archivo no se pudo cargar."
107
 
108
- #: contact_form.php:184
109
  msgid "This file is too large."
110
  msgstr "Este archivo es demasiado grande."
111
 
112
- #: contact_form.php:185
113
  msgid "Please fill out the CAPTCHA."
114
  msgstr "Por favor complete el CAPTCHA."
115
 
116
- #: contact_form.php:186
117
  msgid "Please make corrections below and try again."
118
  msgstr "Por favor, haga las correcciones y a continuación vuelva a intentarlo."
119
 
120
- #: contact_form.php:188
121
  msgid "Thank you for contacting us."
122
  msgstr "Gracias por contactar con nosotros."
123
 
124
- #: contact_form.php:688 contact_form.php:998
125
  msgid "Settings saved."
126
  msgstr "Configuración guardada."
127
 
128
- #: contact_form.php:940
129
  msgid ""
130
  "Email 'FROM' field option was changed, which may cause email messages being "
131
  "moved to the spam folder or email delivery failures."
@@ -134,7 +145,7 @@ msgstr ""
134
  "mensajes de correo electrónico pueden haber sido enviados a la carpeta de "
135
  "correo no deseado o provocar errores en la entrega del correo electrónico."
136
 
137
- #: contact_form.php:950
138
  msgid ""
139
  "If the 'Redirect to page' option is selected then the URL field should be in "
140
  "the following format"
@@ -142,81 +153,65 @@ msgstr ""
142
  "Si se selecciona la opción 'Redirigir a la página', entonces el campo URL "
143
  "debe estar en el siguiente formato"
144
 
145
- #: contact_form.php:957
146
  msgid "Such user does not exist."
147
  msgstr "Dicho usuario no existe."
148
 
149
- #: contact_form.php:967
150
  msgid ""
151
  "Please enter a valid email address in the 'Use this email address' field."
152
  msgstr ""
153
  "Por favor, introduce una dirección de correo electrónico válida en el campo "
154
  "\"Correo electrónico\"."
155
 
156
- #: contact_form.php:975
157
  msgid "Please enter a valid email address in the 'FROM' field."
158
  msgstr ""
159
  "Por favor, introduce una dirección de correo electrónico válida en el campo "
160
  "\"Desde\"."
161
 
162
- #: contact_form.php:1000
163
  msgid "Settings are not saved."
164
  msgstr "Configuración no guardada."
165
 
166
- #: contact_form.php:1027
167
  msgid "All plugin settings were restored."
168
  msgstr "Todos los parámetros del plugin serán restaurados."
169
 
170
- #: contact_form.php:1032
171
  msgid "How to Use Step-by-step Instruction"
172
  msgstr "Instrucciones paso a paso"
173
 
174
- #: contact_form.php:1035 contact_form.php:3024 contact_form.php:3038
175
  msgid "Settings"
176
  msgstr "Configuración"
177
 
178
- #: contact_form.php:1036
179
  msgid "Additional settings"
180
  msgstr "Opciones adicionales"
181
 
182
- #: contact_form.php:1037
183
  msgid "Appearance"
184
  msgstr "Apariencia"
185
 
186
- #: contact_form.php:1038
187
  msgid "Custom code"
188
  msgstr ""
189
 
190
- #: contact_form.php:1039
191
  msgid "Go PRO"
192
  msgstr "Ir al PRO"
193
 
194
- #: contact_form.php:1045
195
- msgid ""
196
- "Please enable JavaScript to add language in the contact form, change the "
197
- "names of the contact form fields and error messages."
198
- msgstr ""
199
- "Por favor, activa JavaScript para añadir un idioma en el formulario de "
200
- "contacto, cambiar los nombres de los campos del formulario de contacto y "
201
- "mensajes de error"
202
-
203
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1740
204
- msgid "Form layout"
205
- msgstr "Diseño del formulario"
206
-
207
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1752
208
- msgid "Submit position"
209
- msgstr "Enviar posición"
210
-
211
- #: contact_form.php:1057
212
- msgid "Notice:"
213
  msgstr "Aviso:"
214
 
215
- #: contact_form.php:1061
216
  msgid "NEW_FORM"
217
  msgstr "NUEVO FORMULARIO"
218
 
219
- #: contact_form.php:1062
220
  msgid ""
221
  "If you want to create multiple contact forms, please install the Contact "
222
  "Form Multi plugin."
@@ -224,7 +219,7 @@ msgstr ""
224
  "Si desea crear varios formularios de contacto, por favor, instale el plugin "
225
  "Formulario de contacto múltiple."
226
 
227
- #: contact_form.php:1071
228
  #, php-format
229
  msgid ""
230
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -233,7 +228,7 @@ msgstr ""
233
  "Si usted desea agregar el formulario de contacto a su sitio web o entrada , "
234
  "por favor use el botón %s"
235
 
236
- #: contact_form.php:1077
237
  #, php-format
238
  msgid ""
239
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -246,7 +241,7 @@ msgstr ""
246
  "no aparece, por favor usa el shortcode %s o %s donde * representa el idioma "
247
  "del Formulario de Contacto."
248
 
249
- #: contact_form.php:1086
250
  msgid ""
251
  "If you leave the fields empty, the messages will be sent to the email "
252
  "address specified during registration."
@@ -254,126 +249,135 @@ msgstr ""
254
  "Si deja los campos vacíos, se enviarán los mensajes a la dirección de correo "
255
  "electrónico especificada durante el registro."
256
 
257
- #: contact_form.php:1089
258
- msgid "The user's email address:"
 
259
  msgstr "Dirección de correo electrónico del usuario:"
260
 
261
- #: contact_form.php:1093
262
  msgid "Select a username"
263
  msgstr "Seleccione un nombre de usuario"
264
 
265
- #: contact_form.php:1106
 
266
  msgid ""
267
- "Enter a username of the person who should get the messages from the contact "
268
  "form."
269
  msgstr ""
270
  "Introduzca un nombre de usuario de la persona que debe recibir los mensajes "
271
  "desde el formulario de contacto."
272
 
273
- #: contact_form.php:1110
274
- msgid "Use this email address:"
 
275
  msgstr "Utilice esta dirección de correo electrónico:"
276
 
277
- #: contact_form.php:1114
278
- msgid "Enter the email address you want the messages forwarded to."
 
279
  msgstr ""
280
  "Introduzca la dirección de correo electrónico que desea que reciba los "
281
  "mensajes."
282
 
283
- #: contact_form.php:1121 contact_form.php:1487 contact_form.php:1679
284
- #: contact_form.php:1767 contact_form.php:3119
285
  msgid "Close"
286
  msgstr "Cerrar"
287
 
288
- #: contact_form.php:1125
289
- msgid "Add department selectbox to the contact form:"
 
290
  msgstr "Añadir casilla seleccionable al formulario de contacto:"
291
 
292
- #: contact_form.php:1133 contact_form.php:1496 contact_form.php:1698
293
- #: contact_form.php:1973
294
  msgid "If you upgrade to Pro version all your settings will be saved."
295
  msgstr "Si actualiza a la versión Pro se guardarán todos los ajustes."
296
 
297
- #: contact_form.php:1140 contact_form.php:1407 contact_form.php:1501
298
- #: contact_form.php:1705 contact_form.php:1980
299
  msgid "Unlock premium options by upgrading to Pro version"
300
  msgstr ""
301
  "Desbloquear opciones premium mediante la actualización a una versión PRO"
302
 
303
- #: contact_form.php:1143 contact_form.php:1410 contact_form.php:1504
304
- #: contact_form.php:1708 contact_form.php:1983 contact_form.php:3329
305
  msgid "Learn More"
306
  msgstr "Más información"
307
 
308
- #: contact_form.php:1151
309
  msgid "Save emails to the database"
310
  msgstr "Guardar mensajes de correo electrónico a la base de datos"
311
 
312
- #: contact_form.php:1156
313
  msgid "Using"
314
  msgstr "Uso"
315
 
316
- #: contact_form.php:1159 contact_form.php:1163
317
- msgid "Using Contact Form to DB by BestWebSoft"
318
- msgstr "Mediante Formularios de Contacto de BD de BestWebSoft"
 
 
 
 
 
 
 
319
 
320
- #: contact_form.php:1159
 
321
  msgid "Activate"
322
  msgstr "Activar"
323
 
324
- #: contact_form.php:1163
 
325
  msgid "Download"
326
  msgstr "Download"
327
 
328
- #: contact_form.php:1173
329
- msgid "What to use?"
330
- msgstr "Qué usar?"
331
 
332
- #: contact_form.php:1178
333
  msgid "Wp-mail"
334
  msgstr "Wp-mail"
335
 
336
- #: contact_form.php:1180
337
  msgid "You can use the Wordpress wp_mail function for mailing"
338
  msgstr "Tú puedes utilizar la función wp_mail para enviar por correo"
339
 
340
- #: contact_form.php:1183
341
  msgid "Mail"
342
  msgstr "Correo"
343
 
344
- #: contact_form.php:1185
345
  msgid "You can use the PHP mail function for mailing"
346
  msgstr "Tú puedes utilizar la función de correo PHP para enviar por correo"
347
 
348
- #: contact_form.php:1190
349
  msgid "'FROM' field"
350
  msgstr "Campo 'DESDE'"
351
 
352
- #: contact_form.php:1192 contact_form.php:1251 contact_form.php:1839
353
- #: contact_form.php:2810 contact_form.php:2846
354
- msgid "Name"
355
- msgstr "Nombre"
356
-
357
- #: contact_form.php:1195
358
  msgid "User name"
359
  msgstr "Nombre de usuario"
360
 
361
- #: contact_form.php:1197
362
  msgid ""
363
  "The name of the user who fills the form will be used in the field 'From'."
364
  msgstr ""
365
  "El nombre del usuario que rellena en el formulario se utiliza en el campo "
366
  "\"De:\"."
367
 
368
- #: contact_form.php:1202 contact_form.php:2821 contact_form.php:2853
369
  msgid "Email"
370
  msgstr "Correo electrónico"
371
 
372
- #: contact_form.php:1205
373
  msgid "User email"
374
  msgstr "Correo electrónico del usuario"
375
 
376
- #: contact_form.php:1207
377
  msgid ""
378
  "The email address of the user who fills the form will be used in the field "
379
  "'From'."
@@ -381,7 +385,7 @@ msgstr ""
381
  "La dirección de correo electrónico del usuario que rellena el formulario se "
382
  "utiliza en el campo \"De\"."
383
 
384
- #: contact_form.php:1210
385
  msgid ""
386
  "If this option is changed, email messages may be moved to the spam folder or "
387
  "email delivery failures may occur."
@@ -390,51 +394,51 @@ msgstr ""
390
  "a la carpeta de correo no deseado o ocurrir otros errores en la entrega del "
391
  "correo."
392
 
393
- #: contact_form.php:1216
394
  msgid "Required symbol"
395
  msgstr "Símbolo de Obligatorio"
396
 
397
- #: contact_form.php:1226
398
  msgid "Fields"
399
  msgstr "Campos"
400
 
401
- #: contact_form.php:1227 contact_form.php:1254 contact_form.php:1281
402
- #: contact_form.php:1301 contact_form.php:1340 contact_form.php:1425
403
  msgid "Used"
404
  msgstr "Usado"
405
 
406
- #: contact_form.php:1228 contact_form.php:1243 contact_form.php:1258
407
- #: contact_form.php:1285 contact_form.php:1305 contact_form.php:1318
408
- #: contact_form.php:1344 contact_form.php:1357 contact_form.php:1381
409
  msgid "Required"
410
  msgstr "Obligatorio"
411
 
412
- #: contact_form.php:1230 contact_form.php:1263 contact_form.php:1323
413
- #: contact_form.php:1362 contact_form.php:1386
414
  msgid "Visible"
415
  msgstr "Visible"
416
 
417
- #: contact_form.php:1231 contact_form.php:1267 contact_form.php:1327
418
- #: contact_form.php:1366 contact_form.php:1390
419
  msgid "Disabled for editing"
420
  msgstr "Inhabilitado para la edición"
421
 
422
- #: contact_form.php:1232 contact_form.php:1291 contact_form.php:1370
423
- #: contact_form.php:1394
424
  msgid "Field's default value"
425
  msgstr "Valor predeterminado del campo"
426
 
427
- #: contact_form.php:1239
428
  msgid "Department selectbox"
429
  msgstr "Apartado de casilla seleccionable"
430
 
431
- #: contact_form.php:1271
432
  msgid "Use User's name as a default value if the user is logged in."
433
  msgstr ""
434
  "Usar el nombre de usuario como valor por defecto si el usuario está "
435
  "conectado."
436
 
437
- #: contact_form.php:1272 contact_form.php:1332
438
  msgid ""
439
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
440
  "in users."
@@ -442,137 +446,98 @@ msgstr ""
442
  "Las opciones 'Visible' y 'Desactivado para la edición' solo serán aplicadas "
443
  "a los usuarios con sesión iniciada."
444
 
445
- #: contact_form.php:1278
446
  msgid "Location selectbox"
447
  msgstr "Localización de la casilla seleccionable"
448
 
449
- #: contact_form.php:1298 contact_form.php:1844 contact_form.php:2816
450
- #: contact_form.php:2850
451
- msgid "Address"
452
- msgstr "Dirección"
453
-
454
- #: contact_form.php:1314
455
- msgid "Email Address"
456
- msgstr "Dirección de correo electrónico"
457
-
458
- #: contact_form.php:1331
459
  msgid "Use User's email as a default value if the user is logged in."
460
  msgstr ""
461
  "Utiliza por defecto el correo electrónico del usuario si el usuario está "
462
  "conectado."
463
 
464
- #: contact_form.php:1337
465
- msgid "Phone number"
466
- msgstr "Número de teléfono"
467
-
468
- #: contact_form.php:1353 contact_form.php:1859 contact_form.php:2831
469
- #: contact_form.php:2859
470
- msgid "Subject"
471
- msgstr "Asunto"
472
-
473
- #: contact_form.php:1377 contact_form.php:1863 contact_form.php:2834
474
- #: contact_form.php:2861
475
- msgid "Message"
476
- msgstr "Mensaje"
477
-
478
- #: contact_form.php:1418
479
  msgid "Attachment block"
480
  msgstr "bloque de adjuntos"
481
 
482
- #: contact_form.php:1420
483
  msgid "Users can attach the following file formats"
484
  msgstr "Los usuarios pueden adjuntar los siguientes formatos de archivo"
485
 
486
- #: contact_form.php:1438
487
  msgid "Add to the form"
488
  msgstr "Añadir a la forma"
489
 
490
- #: contact_form.php:1443
491
  msgid "Tips below the Attachment"
492
  msgstr "Consejos debajo del archivo adjunto"
493
 
494
- #: contact_form.php:1452
495
  msgid "'Send me a copy' block"
496
  msgstr "'Deseo recibir una copia' bloque"
497
 
498
- #: contact_form.php:1464
499
- msgid "Activate Subscriber"
500
- msgstr "Activar suscripción"
501
-
502
- #: contact_form.php:1468
503
- msgid "Download Subscriber"
504
- msgstr "Descargar suscripción"
505
-
506
- #: contact_form.php:1477
507
- msgid "Activate Captcha"
508
- msgstr "Activar Captcha"
509
-
510
- #: contact_form.php:1481
511
- msgid "Download Captcha"
512
- msgstr "Descargar Captcha"
513
-
514
- #: contact_form.php:1491
515
  msgid "Agreement checkbox"
516
  msgstr "casilla de verificación de acuerdo"
517
 
518
- #: contact_form.php:1491
519
  msgid "Required checkbox for submitting the form"
520
  msgstr "Casilla de verificación obligatoria para enviar el formulario"
521
 
522
- #: contact_form.php:1492
523
  msgid "Optional checkbox"
524
  msgstr "Casilla opcional"
525
 
526
- #: contact_form.php:1492
527
  msgid "Optional checkbox, the results of which will be displayed in email"
528
  msgstr ""
529
  "Casilla opcional, cuyos resultados se mostrarán en el correo electrónico"
530
 
531
- #: contact_form.php:1513
532
  msgid "Delete an attachment file from the server after the email is sent"
533
  msgstr ""
534
  "Eliminar un archivo adjunto del servidor después de que se envíe el correo "
535
  "electrónico"
536
 
537
- #: contact_form.php:1519
538
  msgid "Email in HTML format sending"
539
  msgstr "Enviar correo electrónico en formato HTML"
540
 
541
- #: contact_form.php:1523
542
  msgid "Display additional info in the email"
543
  msgstr "Mostrar información adicional en el correo electrónico"
544
 
545
- #: contact_form.php:1529
546
  msgid "Sent from (IP address)"
547
  msgstr "Enviado desde (dirección IP)"
548
 
549
- #: contact_form.php:1529
550
  msgid "Example: Sent from (IP address):\t127.0.0.1"
551
  msgstr "Ejemplo: Enviado desde (dirección IP:\t127.0.0.1"
552
 
553
- #: contact_form.php:1530 contact_form.php:2783 contact_form.php:2785
554
  msgid "Date/Time"
555
  msgstr "Fecha/Hora"
556
 
557
- #: contact_form.php:1530
558
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
559
  msgstr "Ejemplo: Fecha/hora:\tAugust 19, 2013 8:50 pm"
560
 
561
- #: contact_form.php:1531 contact_form.php:2789 contact_form.php:2791
562
  msgid "Sent from (referer)"
563
  msgstr "Enviado desde (referencia)"
564
 
565
- #: contact_form.php:1531
566
  msgid ""
567
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
568
  msgstr ""
569
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
570
 
571
- #: contact_form.php:1532 contact_form.php:2795 contact_form.php:2797
572
  msgid "Using (user agent)"
573
  msgstr "Usando (agente de usuario)"
574
 
575
- #: contact_form.php:1532
576
  msgid ""
577
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
578
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -580,147 +545,147 @@ msgstr ""
580
  "Ejemplo: Usando (agente de usuario):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
581
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
582
 
583
- #: contact_form.php:1537
584
  msgid "Language settings for the field names in the form"
585
  msgstr ""
586
  "Configuración de idioma para los nombres de los campos en el formulario"
587
 
588
- #: contact_form.php:1546
589
  msgid "Add a language"
590
  msgstr "Añadir un idioma"
591
 
592
- #: contact_form.php:1550
593
  msgid "Change the names of the contact form fields and error messages"
594
  msgstr ""
595
  "Cambie los nombres de los campos del formulario de contacto y mensajes de "
596
  "error"
597
 
598
- #: contact_form.php:1555 contact_form.php:1642 contact_form.php:1887
599
- #: contact_form.php:1892 contact_form.php:1902 contact_form.php:1907
600
- #: contact_form.php:1912 contact_form.php:1917 contact_form.php:1927
601
- #: contact_form.php:1932 contact_form.php:1941 contact_form.php:1955
602
- #: contact_form.php:1960 contact_form.php:1965
603
  msgid "Default"
604
  msgstr "Defecto"
605
 
606
- #: contact_form.php:1563 contact_form.php:1597
607
  msgid "click to expand/hide the list"
608
  msgstr "haga clic para expandir / ocultar la lista"
609
 
610
- #: contact_form.php:1572 contact_form.php:1606
611
  msgid "Tips below the Attachment block"
612
  msgstr "Consejos debajo del bloque del archivo adjunto"
613
 
614
- #: contact_form.php:1575 contact_form.php:1609
615
  msgid "Error message for the Name field"
616
  msgstr "Mensaje de error para el campo Nombre"
617
 
618
- #: contact_form.php:1576 contact_form.php:1610
619
  msgid "Error message for the Address field"
620
  msgstr "Mensaje de error para el campo dirección"
621
 
622
- #: contact_form.php:1577 contact_form.php:1611
623
  msgid "Error message for the Email field"
624
  msgstr "Mensaje de error en el campo Correo electrónico"
625
 
626
- #: contact_form.php:1578 contact_form.php:1612
627
  msgid "Error message for the Phone field"
628
  msgstr "Mensaje de error para el campo Teléfono"
629
 
630
- #: contact_form.php:1579 contact_form.php:1613
631
  msgid "Error message for the Subject field"
632
  msgstr "Mensaje de error para el campo Asunto"
633
 
634
- #: contact_form.php:1580 contact_form.php:1614
635
  msgid "Error message for the Message field"
636
  msgstr "Mensaje de error en el campo Mensaje"
637
 
638
- #: contact_form.php:1581 contact_form.php:1615
639
  msgid "Error message about the file type for the Attachment field"
640
  msgstr ""
641
  "Mensaje de error sobre el tipo de archivo para el campo de archivos adjuntos"
642
 
643
- #: contact_form.php:1582 contact_form.php:1616
644
  msgid ""
645
  "Error message while uploading a file for the Attachment field to the server"
646
  msgstr ""
647
  "Mensaje de error al cargar un archivo en el campo de archivos adjuntos al "
648
  "servidor"
649
 
650
- #: contact_form.php:1583 contact_form.php:1617
651
  msgid "Error message while moving the file for the Attachment field"
652
  msgstr ""
653
  "Mensaje de error mientras se mueve el archivo en el campo de archivos "
654
  "adjuntos"
655
 
656
- #: contact_form.php:1584 contact_form.php:1618
657
  msgid "Error message when file size limit for the Attachment field is exceeded"
658
  msgstr ""
659
  "Mensaje de error cuando se supera el límite de tamaño de archivo para el "
660
  "campo de archivos adjuntos"
661
 
662
- #: contact_form.php:1585 contact_form.php:1619
663
  msgid "Error message for the Captcha field"
664
  msgstr "Mensaje de error para el campo Captcha"
665
 
666
- #: contact_form.php:1586 contact_form.php:1620
667
  msgid "Error message for the whole form"
668
  msgstr "Mensaje de error para todo el formulario"
669
 
670
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
671
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
672
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
673
- #: contact_form.php:3179
674
  msgid "Use shortcode"
675
  msgstr "Utilice shortcode"
676
 
677
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
678
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
679
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
680
- #: contact_form.php:3179
681
  msgid "for this language"
682
  msgstr "para este idioma"
683
 
684
- #: contact_form.php:1633
685
  msgid "Use the changed names of the contact form fields in the email"
686
  msgstr ""
687
  "Utilice los nombres cambiados de los campos del formulario de contacto en el "
688
  "correo electrónico"
689
 
690
- #: contact_form.php:1639
691
  msgid "Action after email is sent"
692
  msgstr "Acción después de que se envíe el correo electrónico"
693
 
694
- #: contact_form.php:1641
695
  msgid "Display text"
696
  msgstr "Mostrar texto"
697
 
698
- #: contact_form.php:1650 contact_form.php:1660
699
  msgid "Text"
700
  msgstr "Texto"
701
 
702
- #: contact_form.php:1671
703
  msgid "Redirect to the page"
704
  msgstr "Redirigir a la página"
705
 
706
- #: contact_form.php:1672
707
  msgid "Url"
708
  msgstr "Url"
709
 
710
- #: contact_form.php:1683
711
  msgid "Add field 'Reply-To' to the email header"
712
  msgstr "Añadir campo 'Responder a' en la cabecera del correo electrónico"
713
 
714
- #: contact_form.php:1685
715
  msgid "Field 'Reply-To' will be initialized by user email"
716
  msgstr ""
717
  "El campo 'Responder a' se iniciará por el correo electrónico del usuario"
718
 
719
- #: contact_form.php:1689
720
  msgid "Auto Response"
721
  msgstr "Respuesta automática"
722
 
723
- #: contact_form.php:1693
724
  #, php-format
725
  msgid ""
726
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -731,11 +696,11 @@ msgstr ""
731
  "%%MESSAGE%% para mostrar los datos del campo Mensaje, así como %%SITENAME%% "
732
  "para mostrar el nombre del blog."
733
 
734
- #: contact_form.php:1718 contact_form.php:2213
735
  msgid "Save Changes"
736
  msgstr "Guardar cambios"
737
 
738
- #: contact_form.php:1731
739
  #, php-format
740
  msgid ""
741
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
@@ -743,194 +708,195 @@ msgstr ""
743
  "Por favor, utilice JavaScript para cambiar las opciones '%s', '%s' y para "
744
  "los campos de clasificación."
745
 
746
- #: contact_form.php:1744
 
 
 
 
 
 
 
 
747
  msgid "One column"
748
  msgstr "Una columna"
749
 
750
- #: contact_form.php:1747
751
  msgid "Two columns"
752
  msgstr "Dos columnas"
753
 
754
- #: contact_form.php:1756 contact_form.php:1775 contact_form.php:1793
755
- #: contact_form.php:1808
756
  msgid "Left"
757
  msgstr "Izquierda"
758
 
759
- #: contact_form.php:1759 contact_form.php:1781 contact_form.php:1796
760
- #: contact_form.php:1814
761
  msgid "Right"
762
  msgstr "Derecha"
763
 
764
- #: contact_form.php:1771
765
  msgid "Form align"
766
  msgstr "Alinear formulario"
767
 
768
- #: contact_form.php:1778 contact_form.php:1811
769
  msgid "Center"
770
  msgstr "Centro"
771
 
772
- #: contact_form.php:1786
773
  msgid "Labels position"
774
  msgstr "Posición de las etiquetas"
775
 
776
- #: contact_form.php:1790
777
  msgid "Top"
778
  msgstr "Arriba"
779
 
780
- #: contact_form.php:1799
781
  msgid "Bottom"
782
  msgstr "Abajo"
783
 
784
- #: contact_form.php:1804
785
  msgid "Labels align"
786
  msgstr "Alinear etiquetas"
787
 
788
- #: contact_form.php:1819
789
  msgid "Errors output"
790
  msgstr "Salida de errores"
791
 
792
- #: contact_form.php:1822
793
  msgid "Display error messages"
794
  msgstr "Mostrar mensajes de error"
795
 
796
- #: contact_form.php:1823
797
  msgid "Color of the input field errors."
798
  msgstr "El color de los errores del campo de entrada."
799
 
800
- #: contact_form.php:1824
801
  msgid "Display error messages & color of the input field errors"
802
  msgstr ""
803
  "Mostrar mensajes de error y el color de los errores de campo de entrada"
804
 
805
- #: contact_form.php:1829
806
  msgid "Add placeholder to the input blocks"
807
  msgstr "Añadir marcador de posición de los bloques de entrada"
808
 
809
- #: contact_form.php:1835
810
  msgid "Add tooltips"
811
  msgstr "Añadir información sobre herramientas"
812
 
813
- #: contact_form.php:1849
814
  msgid "Email address"
815
  msgstr "Correo electrónico"
816
 
817
- #: contact_form.php:1854
818
  msgid "Phone Number"
819
  msgstr "Número de teléfono"
820
 
821
- #: contact_form.php:1868
822
- msgid "Attachment"
823
- msgstr "Adjuntos"
824
-
825
- #: contact_form.php:1880
826
  msgid "Style options"
827
  msgstr "Opciones de estilo"
828
 
829
- #: contact_form.php:1884
830
  msgid "Text color"
831
  msgstr "Color del texto"
832
 
833
- #: contact_form.php:1889
834
  msgid "Label text color"
835
  msgstr "Color del texto de la Etiqueta"
836
 
837
- #: contact_form.php:1894
838
  msgid "Placeholder color"
839
  msgstr "El color de marcador de posición"
840
 
841
- #: contact_form.php:1899
842
  msgid "Errors color"
843
  msgstr "Color del error"
844
 
845
- #: contact_form.php:1904
846
  msgid "Error text color"
847
  msgstr "Color del texto de error"
848
 
849
- #: contact_form.php:1909
850
  msgid "Background color of the input field errors"
851
  msgstr "Color de fondo de los errores de campo de entrada"
852
 
853
- #: contact_form.php:1914
854
  msgid "Border color of the input field errors"
855
  msgstr "Color del borde de los errores de campo de entrada"
856
 
857
- #: contact_form.php:1919
858
  msgid "Placeholder color of the input field errors"
859
  msgstr "El color de marcador de posición de los errores de campo de entrada"
860
 
861
- #: contact_form.php:1924
862
  msgid "Input fields"
863
  msgstr "Campos de entrada"
864
 
865
- #: contact_form.php:1929
866
  msgid "Input fields background color"
867
  msgstr "Color de fondo de los campos de entrada"
868
 
869
- #: contact_form.php:1934
870
  msgid "Text fields color"
871
  msgstr "Color de los campos de texto"
872
 
873
- #: contact_form.php:1938
874
  msgid "Border width in px, numbers only"
875
  msgstr "Ancho del borde en píxeles, sólo números"
876
 
877
- #: contact_form.php:1943 contact_form.php:1967
878
  msgid "Border color"
879
  msgstr "Color del borde"
880
 
881
- #: contact_form.php:1948
882
  msgid "Submit button"
883
  msgstr "Botón enviar"
884
 
885
- #: contact_form.php:1952
886
  msgid "Width in px, numbers only"
887
  msgstr "Ancho en píxeles, sólo números"
888
 
889
- #: contact_form.php:1957
890
  msgid "Button color"
891
  msgstr "Color del botón"
892
 
893
- #: contact_form.php:1962
894
  msgid "Button text color"
895
  msgstr "Color del texto del botón"
896
 
897
- #: contact_form.php:1994
898
  msgid "Contact Form | Preview"
899
  msgstr "Formulario de Contacto | Vista previa"
900
 
901
- #: contact_form.php:1995
902
  msgid "Drag the necessary field to sort fields."
903
  msgstr "Arrastre el campo necesario para ordenar los campos."
904
 
905
- #: contact_form.php:2200
 
906
  msgid ""
907
  "If you would like to add the Contact Form to your website, just copy and "
908
- "paste this shortcode to your post or page or widget:"
909
  msgstr ""
910
  "Si quieres agregar el formulario de contacto en tu sitio web, sólo tienes "
911
  "que copiar y pegar este código corto a tu post, una página o un widget:"
912
 
913
- #: contact_form.php:2297
914
  msgid "Sorry, email message could not be delivered."
915
  msgstr "Lo sentimos, el mensaje de correo electrónico no se pudo entregar."
916
 
917
- #: contact_form.php:2777 contact_form.php:2779
918
  msgid "Sent from (ip address)"
919
  msgstr "Enviado desde (dirección IP)"
920
 
921
- #: contact_form.php:2804
922
  msgid "Contact from"
923
  msgstr "Contact from"
924
 
925
- #: contact_form.php:2826 contact_form.php:2856
926
- msgid "Phone"
927
- msgstr "Teléfono"
928
-
929
- #: contact_form.php:2837 contact_form.php:2863
930
  msgid "Site"
931
  msgstr "Sitio"
932
 
933
- #: contact_form.php:2956
934
  msgid ""
935
  "If you can see this MIME, it means that the MIME type is not supported by "
936
  "your email client!"
@@ -938,23 +904,23 @@ msgstr ""
938
  "Si puede ver esta MIME, significa que el tipo MIME no es compatible con su "
939
  "cliente de correo electrónico!"
940
 
941
- #: contact_form.php:3039
942
  msgid "FAQ"
943
  msgstr "Preguntas más frecuentes"
944
 
945
- #: contact_form.php:3040
946
  msgid "Support"
947
  msgstr "Soporte técnico"
948
 
949
- #: contact_form.php:3089
950
  msgid "Are you sure that you want to delete this language data?"
951
  msgstr "¿Estás seguro de que quieres eliminar este idioma?"
952
 
953
- #: contact_form.php:3110
954
  msgid "Add multiple forms"
955
  msgstr "Añadir múltiples forularios"
956
 
957
- #: contact_form.php:3110
958
  msgid ""
959
  "Install Contact Form Multi plugin to create unlimited number of contact "
960
  "forms."
@@ -962,30 +928,80 @@ msgstr ""
962
  "Instalar el plugin Contact Form Multi para crear un número ilimitado de "
963
  "formas de contacto."
964
 
965
- #: contact_form.php:3115
966
  msgid "Learn more"
967
  msgstr "Más información"
968
 
969
- #: contact_form.php:3320
970
  msgid "Close notice"
971
  msgstr "Cerrar aviso"
972
 
973
- #: contact_form.php:3325
974
  msgid "allows to store your messages to the database."
975
  msgstr "Permite almacenar sus mensajes en la base de datos."
976
 
977
- #: contact_form.php:3326
978
  msgid "Manage messages that have been sent from your website."
979
  msgstr "Administración de mensajes que han sido enviados desde su sitio web."
980
 
981
- #: contact_form.php:3384
982
  msgid "Contact form"
983
  msgstr "Formulario de contacto"
984
 
985
- #: contact_form.php:3397 contact_form.php:3407
986
  msgid "Language"
987
  msgstr "Idioma"
988
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
989
  #~ msgid "To send mail you can use the php mail function"
990
  #~ msgstr "Para enviar el correo se puede utilizar la función de correo php"
991
 
@@ -1165,9 +1181,6 @@ msgstr "Idioma"
1165
  #~ msgid "Please, go to"
1166
  #~ msgstr "Por favor, vaya a"
1167
 
1168
- #~ msgid "the setting page"
1169
- #~ msgstr "la página de configuración"
1170
-
1171
  #~ msgid "You will be redirected automatically in 5 seconds."
1172
  #~ msgstr "Usted será redirigido automáticamente en 5 segundos."
1173
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-12 17:22+0300\n"
6
+ "PO-Revision-Date: 2016-07-12 17:22+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Javitopo <jaawme@hotmail.com>\n"
9
  "Language: es_ES\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: contact_form.php:37 contact_form.php:1118
21
  msgid "Contact Form Settings"
22
  msgstr "Opciones de formulario de contacto"
23
 
25
  msgid "Contact Form"
26
  msgstr "Contact Form"
27
 
28
+ #: contact_form.php:167 contact_form.php:1294 contact_form.php:1353
29
+ #: contact_form.php:1746 contact_form.php:1784 contact_form.php:2033
30
+ #: contact_form.php:3113 contact_form.php:3159
31
+ msgid "Name"
32
+ msgstr "Nombre"
33
 
34
+ #: contact_form.php:168 contact_form.php:1400 contact_form.php:1747
35
+ #: contact_form.php:1785 contact_form.php:2038 contact_form.php:3120
36
+ #: contact_form.php:3165
37
+ msgid "Address"
38
+ msgstr "Dirección"
39
 
40
+ #: contact_form.php:169 contact_form.php:1416 contact_form.php:1748
41
+ #: contact_form.php:1786
42
+ msgid "Email Address"
43
+ msgstr "Dirección de correo electrónico"
44
 
45
+ #: contact_form.php:170 contact_form.php:1439 contact_form.php:1749
46
+ #: contact_form.php:1787
47
+ msgid "Phone number"
48
+ msgstr "Número de teléfono"
49
 
50
+ #: contact_form.php:171 contact_form.php:1455 contact_form.php:1750
51
+ #: contact_form.php:1788 contact_form.php:2053 contact_form.php:3131
52
+ #: contact_form.php:3174
53
+ msgid "Subject"
54
+ msgstr "Asunto"
55
 
56
+ #: contact_form.php:172 contact_form.php:1479 contact_form.php:1751
57
+ #: contact_form.php:1789 contact_form.php:2057 contact_form.php:3136
58
+ #: contact_form.php:3178
59
+ msgid "Message"
60
+ msgstr "Mensaje"
61
 
62
+ #: contact_form.php:173 contact_form.php:1752 contact_form.php:1790
63
+ #: contact_form.php:2062
64
+ msgid "Attachment"
65
+ msgstr "Adjuntos"
66
 
67
+ #: contact_form.php:174
68
  msgid ""
69
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
70
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
72
  "Tipos de archivo admitidos: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
73
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
74
 
75
+ #: contact_form.php:175 contact_form.php:1754 contact_form.php:1792
76
  msgid "Send me a copy"
77
  msgstr "Deseo recibir una copia"
78
 
79
+ #: contact_form.php:176 contact_form.php:1755 contact_form.php:1793
80
  msgid "Submit"
81
  msgstr "Enviar"
82
 
83
+ #: contact_form.php:177
84
  msgid "Your name is required."
85
  msgstr "Es necesario un nombre."
86
 
87
+ #: contact_form.php:178
88
  msgid "Address is required."
89
  msgstr "Se requiere dirección."
90
 
91
+ #: contact_form.php:179
92
  msgid "A valid email address is required."
93
  msgstr "Se requiere una dirección de email válida."
94
 
95
+ #: contact_form.php:180
96
  msgid "Phone number is required."
97
  msgstr "Es necesario un número de teléfono."
98
 
99
+ #: contact_form.php:181
100
  msgid "Subject is required."
101
  msgstr "Es necesario un asunto."
102
 
103
+ #: contact_form.php:182
104
  msgid "Message text is required."
105
  msgstr "Es necesario el texto del mensaje."
106
 
107
+ #: contact_form.php:183
108
  msgid "File format is not valid."
109
  msgstr "Formato de archivo no válido."
110
 
111
+ #: contact_form.php:184
112
  msgid "File upload error."
113
  msgstr "Error de carga de archivos."
114
 
115
+ #: contact_form.php:185
116
  msgid "The file could not be uploaded."
117
  msgstr "El archivo no se pudo cargar."
118
 
119
+ #: contact_form.php:186
120
  msgid "This file is too large."
121
  msgstr "Este archivo es demasiado grande."
122
 
123
+ #: contact_form.php:187
124
  msgid "Please fill out the CAPTCHA."
125
  msgstr "Por favor complete el CAPTCHA."
126
 
127
+ #: contact_form.php:188
128
  msgid "Please make corrections below and try again."
129
  msgstr "Por favor, haga las correcciones y a continuación vuelva a intentarlo."
130
 
131
+ #: contact_form.php:190
132
  msgid "Thank you for contacting us."
133
  msgstr "Gracias por contactar con nosotros."
134
 
135
+ #: contact_form.php:824 contact_form.php:1076
136
  msgid "Settings saved."
137
  msgstr "Configuración guardada."
138
 
139
+ #: contact_form.php:1021
140
  msgid ""
141
  "Email 'FROM' field option was changed, which may cause email messages being "
142
  "moved to the spam folder or email delivery failures."
145
  "mensajes de correo electrónico pueden haber sido enviados a la carpeta de "
146
  "correo no deseado o provocar errores en la entrega del correo electrónico."
147
 
148
+ #: contact_form.php:1031
149
  msgid ""
150
  "If the 'Redirect to page' option is selected then the URL field should be in "
151
  "the following format"
153
  "Si se selecciona la opción 'Redirigir a la página', entonces el campo URL "
154
  "debe estar en el siguiente formato"
155
 
156
+ #: contact_form.php:1038
157
  msgid "Such user does not exist."
158
  msgstr "Dicho usuario no existe."
159
 
160
+ #: contact_form.php:1048
161
  msgid ""
162
  "Please enter a valid email address in the 'Use this email address' field."
163
  msgstr ""
164
  "Por favor, introduce una dirección de correo electrónico válida en el campo "
165
  "\"Correo electrónico\"."
166
 
167
+ #: contact_form.php:1056
168
  msgid "Please enter a valid email address in the 'FROM' field."
169
  msgstr ""
170
  "Por favor, introduce una dirección de correo electrónico válida en el campo "
171
  "\"Desde\"."
172
 
173
+ #: contact_form.php:1078
174
  msgid "Settings are not saved."
175
  msgstr "Configuración no guardada."
176
 
177
+ #: contact_form.php:1115
178
  msgid "All plugin settings were restored."
179
  msgstr "Todos los parámetros del plugin serán restaurados."
180
 
181
+ #: contact_form.php:1120
182
  msgid "How to Use Step-by-step Instruction"
183
  msgstr "Instrucciones paso a paso"
184
 
185
+ #: contact_form.php:1123 contact_form.php:3351 contact_form.php:3365
186
  msgid "Settings"
187
  msgstr "Configuración"
188
 
189
+ #: contact_form.php:1124
190
  msgid "Additional settings"
191
  msgstr "Opciones adicionales"
192
 
193
+ #: contact_form.php:1125
194
  msgid "Appearance"
195
  msgstr "Apariencia"
196
 
197
+ #: contact_form.php:1126
198
  msgid "Custom code"
199
  msgstr ""
200
 
201
+ #: contact_form.php:1127
202
  msgid "Go PRO"
203
  msgstr "Ir al PRO"
204
 
205
+ #: contact_form.php:1136
206
+ #, fuzzy
207
+ msgid "Notice"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  msgstr "Aviso:"
209
 
210
+ #: contact_form.php:1140
211
  msgid "NEW_FORM"
212
  msgstr "NUEVO FORMULARIO"
213
 
214
+ #: contact_form.php:1141
215
  msgid ""
216
  "If you want to create multiple contact forms, please install the Contact "
217
  "Form Multi plugin."
219
  "Si desea crear varios formularios de contacto, por favor, instale el plugin "
220
  "Formulario de contacto múltiple."
221
 
222
+ #: contact_form.php:1150
223
  #, php-format
224
  msgid ""
225
  "If you would like to add a Contact Form to your page or post, please use %s "
228
  "Si usted desea agregar el formulario de contacto a su sitio web o entrada , "
229
  "por favor use el botón %s"
230
 
231
+ #: contact_form.php:1156
232
  #, php-format
233
  msgid ""
234
  "You can add the Contact Form to your page or post by clicking on %s button "
241
  "no aparece, por favor usa el shortcode %s o %s donde * representa el idioma "
242
  "del Formulario de Contacto."
243
 
244
+ #: contact_form.php:1165
245
  msgid ""
246
  "If you leave the fields empty, the messages will be sent to the email "
247
  "address specified during registration."
249
  "Si deja los campos vacíos, se enviarán los mensajes a la dirección de correo "
250
  "electrónico especificada durante el registro."
251
 
252
+ #: contact_form.php:1168
253
+ #, fuzzy
254
+ msgid "The user's email address"
255
  msgstr "Dirección de correo electrónico del usuario:"
256
 
257
+ #: contact_form.php:1172
258
  msgid "Select a username"
259
  msgstr "Seleccione un nombre de usuario"
260
 
261
+ #: contact_form.php:1185
262
+ #, fuzzy
263
  msgid ""
264
+ "Select a username of the person who should get the messages from the contact "
265
  "form."
266
  msgstr ""
267
  "Introduzca un nombre de usuario de la persona que debe recibir los mensajes "
268
  "desde el formulario de contacto."
269
 
270
+ #: contact_form.php:1189
271
+ #, fuzzy
272
+ msgid "Use this email address"
273
  msgstr "Utilice esta dirección de correo electrónico:"
274
 
275
+ #: contact_form.php:1193
276
+ #, fuzzy
277
+ msgid "Enter the email address for receiving messages"
278
  msgstr ""
279
  "Introduzca la dirección de correo electrónico que desea que reciba los "
280
  "mensajes."
281
 
282
+ #: contact_form.php:1200 contact_form.php:1663 contact_form.php:1873
283
+ #: contact_form.php:1961 contact_form.php:3446
284
  msgid "Close"
285
  msgstr "Cerrar"
286
 
287
+ #: contact_form.php:1204
288
+ #, fuzzy
289
+ msgid "Add department selectbox to the contact form"
290
  msgstr "Añadir casilla seleccionable al formulario de contacto:"
291
 
292
+ #: contact_form.php:1212 contact_form.php:1672 contact_form.php:1892
293
+ #: contact_form.php:2167
294
  msgid "If you upgrade to Pro version all your settings will be saved."
295
  msgstr "Si actualiza a la versión Pro se guardarán todos los ajustes."
296
 
297
+ #: contact_form.php:1219 contact_form.php:1509 contact_form.php:1677
298
+ #: contact_form.php:1899 contact_form.php:2174
299
  msgid "Unlock premium options by upgrading to Pro version"
300
  msgstr ""
301
  "Desbloquear opciones premium mediante la actualización a una versión PRO"
302
 
303
+ #: contact_form.php:1222 contact_form.php:1512 contact_form.php:1680
304
+ #: contact_form.php:1902 contact_form.php:2177 contact_form.php:3672
305
  msgid "Learn More"
306
  msgstr "Más información"
307
 
308
+ #: contact_form.php:1230
309
  msgid "Save emails to the database"
310
  msgstr "Guardar mensajes de correo electrónico a la base de datos"
311
 
312
+ #: contact_form.php:1241 contact_form.php:1255 contact_form.php:1262
313
  msgid "Using"
314
  msgstr "Uso"
315
 
316
+ #: contact_form.php:1247 contact_form.php:1572 contact_form.php:1605
317
+ #: contact_form.php:1640
318
+ msgid "Please activate the appropriate option on"
319
+ msgstr ""
320
+
321
+ #: contact_form.php:1250 contact_form.php:1575 contact_form.php:1608
322
+ #: contact_form.php:1643
323
+ #, fuzzy
324
+ msgid "settings page"
325
+ msgstr "la página de configuración"
326
 
327
+ #: contact_form.php:1256 contact_form.php:1581 contact_form.php:1615
328
+ #: contact_form.php:1651
329
  msgid "Activate"
330
  msgstr "Activar"
331
 
332
+ #: contact_form.php:1263 contact_form.php:1587 contact_form.php:1621
333
+ #: contact_form.php:1656
334
  msgid "Download"
335
  msgstr "Download"
336
 
337
+ #: contact_form.php:1275
338
+ msgid "Sending method"
339
+ msgstr ""
340
 
341
+ #: contact_form.php:1280
342
  msgid "Wp-mail"
343
  msgstr "Wp-mail"
344
 
345
+ #: contact_form.php:1282
346
  msgid "You can use the Wordpress wp_mail function for mailing"
347
  msgstr "Tú puedes utilizar la función wp_mail para enviar por correo"
348
 
349
+ #: contact_form.php:1285
350
  msgid "Mail"
351
  msgstr "Correo"
352
 
353
+ #: contact_form.php:1287
354
  msgid "You can use the PHP mail function for mailing"
355
  msgstr "Tú puedes utilizar la función de correo PHP para enviar por correo"
356
 
357
+ #: contact_form.php:1292
358
  msgid "'FROM' field"
359
  msgstr "Campo 'DESDE'"
360
 
361
+ #: contact_form.php:1297
 
 
 
 
 
362
  msgid "User name"
363
  msgstr "Nombre de usuario"
364
 
365
+ #: contact_form.php:1299
366
  msgid ""
367
  "The name of the user who fills the form will be used in the field 'From'."
368
  msgstr ""
369
  "El nombre del usuario que rellena en el formulario se utiliza en el campo "
370
  "\"De:\"."
371
 
372
+ #: contact_form.php:1304 contact_form.php:3126 contact_form.php:3170
373
  msgid "Email"
374
  msgstr "Correo electrónico"
375
 
376
+ #: contact_form.php:1307
377
  msgid "User email"
378
  msgstr "Correo electrónico del usuario"
379
 
380
+ #: contact_form.php:1309
381
  msgid ""
382
  "The email address of the user who fills the form will be used in the field "
383
  "'From'."
385
  "La dirección de correo electrónico del usuario que rellena el formulario se "
386
  "utiliza en el campo \"De\"."
387
 
388
+ #: contact_form.php:1312
389
  msgid ""
390
  "If this option is changed, email messages may be moved to the spam folder or "
391
  "email delivery failures may occur."
394
  "a la carpeta de correo no deseado o ocurrir otros errores en la entrega del "
395
  "correo."
396
 
397
+ #: contact_form.php:1318
398
  msgid "Required symbol"
399
  msgstr "Símbolo de Obligatorio"
400
 
401
+ #: contact_form.php:1328
402
  msgid "Fields"
403
  msgstr "Campos"
404
 
405
+ #: contact_form.php:1329 contact_form.php:1356 contact_form.php:1383
406
+ #: contact_form.php:1403 contact_form.php:1442 contact_form.php:1527
407
  msgid "Used"
408
  msgstr "Usado"
409
 
410
+ #: contact_form.php:1330 contact_form.php:1345 contact_form.php:1360
411
+ #: contact_form.php:1387 contact_form.php:1407 contact_form.php:1420
412
+ #: contact_form.php:1446 contact_form.php:1459 contact_form.php:1483
413
  msgid "Required"
414
  msgstr "Obligatorio"
415
 
416
+ #: contact_form.php:1332 contact_form.php:1365 contact_form.php:1425
417
+ #: contact_form.php:1464 contact_form.php:1488
418
  msgid "Visible"
419
  msgstr "Visible"
420
 
421
+ #: contact_form.php:1333 contact_form.php:1369 contact_form.php:1429
422
+ #: contact_form.php:1468 contact_form.php:1492
423
  msgid "Disabled for editing"
424
  msgstr "Inhabilitado para la edición"
425
 
426
+ #: contact_form.php:1334 contact_form.php:1393 contact_form.php:1472
427
+ #: contact_form.php:1496
428
  msgid "Field's default value"
429
  msgstr "Valor predeterminado del campo"
430
 
431
+ #: contact_form.php:1341
432
  msgid "Department selectbox"
433
  msgstr "Apartado de casilla seleccionable"
434
 
435
+ #: contact_form.php:1373
436
  msgid "Use User's name as a default value if the user is logged in."
437
  msgstr ""
438
  "Usar el nombre de usuario como valor por defecto si el usuario está "
439
  "conectado."
440
 
441
+ #: contact_form.php:1374 contact_form.php:1434
442
  msgid ""
443
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
444
  "in users."
446
  "Las opciones 'Visible' y 'Desactivado para la edición' solo serán aplicadas "
447
  "a los usuarios con sesión iniciada."
448
 
449
+ #: contact_form.php:1380
450
  msgid "Location selectbox"
451
  msgstr "Localización de la casilla seleccionable"
452
 
453
+ #: contact_form.php:1433
 
 
 
 
 
 
 
 
 
454
  msgid "Use User's email as a default value if the user is logged in."
455
  msgstr ""
456
  "Utiliza por defecto el correo electrónico del usuario si el usuario está "
457
  "conectado."
458
 
459
+ #: contact_form.php:1520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
460
  msgid "Attachment block"
461
  msgstr "bloque de adjuntos"
462
 
463
+ #: contact_form.php:1522
464
  msgid "Users can attach the following file formats"
465
  msgstr "Los usuarios pueden adjuntar los siguientes formatos de archivo"
466
 
467
+ #: contact_form.php:1540
468
  msgid "Add to the form"
469
  msgstr "Añadir a la forma"
470
 
471
+ #: contact_form.php:1545
472
  msgid "Tips below the Attachment"
473
  msgstr "Consejos debajo del archivo adjunto"
474
 
475
+ #: contact_form.php:1554
476
  msgid "'Send me a copy' block"
477
  msgstr "'Deseo recibir una copia' bloque"
478
 
479
+ #: contact_form.php:1667
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
480
  msgid "Agreement checkbox"
481
  msgstr "casilla de verificación de acuerdo"
482
 
483
+ #: contact_form.php:1667
484
  msgid "Required checkbox for submitting the form"
485
  msgstr "Casilla de verificación obligatoria para enviar el formulario"
486
 
487
+ #: contact_form.php:1668
488
  msgid "Optional checkbox"
489
  msgstr "Casilla opcional"
490
 
491
+ #: contact_form.php:1668
492
  msgid "Optional checkbox, the results of which will be displayed in email"
493
  msgstr ""
494
  "Casilla opcional, cuyos resultados se mostrarán en el correo electrónico"
495
 
496
+ #: contact_form.php:1689
497
  msgid "Delete an attachment file from the server after the email is sent"
498
  msgstr ""
499
  "Eliminar un archivo adjunto del servidor después de que se envíe el correo "
500
  "electrónico"
501
 
502
+ #: contact_form.php:1695
503
  msgid "Email in HTML format sending"
504
  msgstr "Enviar correo electrónico en formato HTML"
505
 
506
+ #: contact_form.php:1699
507
  msgid "Display additional info in the email"
508
  msgstr "Mostrar información adicional en el correo electrónico"
509
 
510
+ #: contact_form.php:1705
511
  msgid "Sent from (IP address)"
512
  msgstr "Enviado desde (dirección IP)"
513
 
514
+ #: contact_form.php:1705
515
  msgid "Example: Sent from (IP address):\t127.0.0.1"
516
  msgstr "Ejemplo: Enviado desde (dirección IP:\t127.0.0.1"
517
 
518
+ #: contact_form.php:1706 contact_form.php:3075 contact_form.php:3077
519
  msgid "Date/Time"
520
  msgstr "Fecha/Hora"
521
 
522
+ #: contact_form.php:1706
523
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
524
  msgstr "Ejemplo: Fecha/hora:\tAugust 19, 2013 8:50 pm"
525
 
526
+ #: contact_form.php:1707 contact_form.php:3081 contact_form.php:3083
527
  msgid "Sent from (referer)"
528
  msgstr "Enviado desde (referencia)"
529
 
530
+ #: contact_form.php:1707
531
  msgid ""
532
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
533
  msgstr ""
534
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
535
 
536
+ #: contact_form.php:1708 contact_form.php:3087 contact_form.php:3089
537
  msgid "Using (user agent)"
538
  msgstr "Usando (agente de usuario)"
539
 
540
+ #: contact_form.php:1708
541
  msgid ""
542
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
543
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
545
  "Ejemplo: Usando (agente de usuario):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
546
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
547
 
548
+ #: contact_form.php:1713
549
  msgid "Language settings for the field names in the form"
550
  msgstr ""
551
  "Configuración de idioma para los nombres de los campos en el formulario"
552
 
553
+ #: contact_form.php:1722
554
  msgid "Add a language"
555
  msgstr "Añadir un idioma"
556
 
557
+ #: contact_form.php:1726
558
  msgid "Change the names of the contact form fields and error messages"
559
  msgstr ""
560
  "Cambie los nombres de los campos del formulario de contacto y mensajes de "
561
  "error"
562
 
563
+ #: contact_form.php:1731 contact_form.php:1827 contact_form.php:2081
564
+ #: contact_form.php:2086 contact_form.php:2096 contact_form.php:2101
565
+ #: contact_form.php:2106 contact_form.php:2111 contact_form.php:2121
566
+ #: contact_form.php:2126 contact_form.php:2135 contact_form.php:2149
567
+ #: contact_form.php:2154 contact_form.php:2159
568
  msgid "Default"
569
  msgstr "Defecto"
570
 
571
+ #: contact_form.php:1744 contact_form.php:1782
572
  msgid "click to expand/hide the list"
573
  msgstr "haga clic para expandir / ocultar la lista"
574
 
575
+ #: contact_form.php:1753 contact_form.php:1791
576
  msgid "Tips below the Attachment block"
577
  msgstr "Consejos debajo del bloque del archivo adjunto"
578
 
579
+ #: contact_form.php:1756 contact_form.php:1794
580
  msgid "Error message for the Name field"
581
  msgstr "Mensaje de error para el campo Nombre"
582
 
583
+ #: contact_form.php:1757 contact_form.php:1795
584
  msgid "Error message for the Address field"
585
  msgstr "Mensaje de error para el campo dirección"
586
 
587
+ #: contact_form.php:1758 contact_form.php:1796
588
  msgid "Error message for the Email field"
589
  msgstr "Mensaje de error en el campo Correo electrónico"
590
 
591
+ #: contact_form.php:1759 contact_form.php:1797
592
  msgid "Error message for the Phone field"
593
  msgstr "Mensaje de error para el campo Teléfono"
594
 
595
+ #: contact_form.php:1760 contact_form.php:1798
596
  msgid "Error message for the Subject field"
597
  msgstr "Mensaje de error para el campo Asunto"
598
 
599
+ #: contact_form.php:1761 contact_form.php:1799
600
  msgid "Error message for the Message field"
601
  msgstr "Mensaje de error en el campo Mensaje"
602
 
603
+ #: contact_form.php:1762 contact_form.php:1800
604
  msgid "Error message about the file type for the Attachment field"
605
  msgstr ""
606
  "Mensaje de error sobre el tipo de archivo para el campo de archivos adjuntos"
607
 
608
+ #: contact_form.php:1763 contact_form.php:1801
609
  msgid ""
610
  "Error message while uploading a file for the Attachment field to the server"
611
  msgstr ""
612
  "Mensaje de error al cargar un archivo en el campo de archivos adjuntos al "
613
  "servidor"
614
 
615
+ #: contact_form.php:1764 contact_form.php:1802
616
  msgid "Error message while moving the file for the Attachment field"
617
  msgstr ""
618
  "Mensaje de error mientras se mueve el archivo en el campo de archivos "
619
  "adjuntos"
620
 
621
+ #: contact_form.php:1765 contact_form.php:1803
622
  msgid "Error message when file size limit for the Attachment field is exceeded"
623
  msgstr ""
624
  "Mensaje de error cuando se supera el límite de tamaño de archivo para el "
625
  "campo de archivos adjuntos"
626
 
627
+ #: contact_form.php:1766 contact_form.php:1804
628
  msgid "Error message for the Captcha field"
629
  msgstr "Mensaje de error para el campo Captcha"
630
 
631
+ #: contact_form.php:1767 contact_form.php:1805
632
  msgid "Error message for the whole form"
633
  msgstr "Mensaje de error para todo el formulario"
634
 
635
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
636
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
637
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
638
+ #: contact_form.php:3516
639
  msgid "Use shortcode"
640
  msgstr "Utilice shortcode"
641
 
642
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
643
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
644
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
645
+ #: contact_form.php:3516
646
  msgid "for this language"
647
  msgstr "para este idioma"
648
 
649
+ #: contact_form.php:1818
650
  msgid "Use the changed names of the contact form fields in the email"
651
  msgstr ""
652
  "Utilice los nombres cambiados de los campos del formulario de contacto en el "
653
  "correo electrónico"
654
 
655
+ #: contact_form.php:1824
656
  msgid "Action after email is sent"
657
  msgstr "Acción después de que se envíe el correo electrónico"
658
 
659
+ #: contact_form.php:1826
660
  msgid "Display text"
661
  msgstr "Mostrar texto"
662
 
663
+ #: contact_form.php:1840 contact_form.php:1854
664
  msgid "Text"
665
  msgstr "Texto"
666
 
667
+ #: contact_form.php:1865
668
  msgid "Redirect to the page"
669
  msgstr "Redirigir a la página"
670
 
671
+ #: contact_form.php:1866
672
  msgid "Url"
673
  msgstr "Url"
674
 
675
+ #: contact_form.php:1877
676
  msgid "Add field 'Reply-To' to the email header"
677
  msgstr "Añadir campo 'Responder a' en la cabecera del correo electrónico"
678
 
679
+ #: contact_form.php:1879
680
  msgid "Field 'Reply-To' will be initialized by user email"
681
  msgstr ""
682
  "El campo 'Responder a' se iniciará por el correo electrónico del usuario"
683
 
684
+ #: contact_form.php:1883
685
  msgid "Auto Response"
686
  msgstr "Respuesta automática"
687
 
688
+ #: contact_form.php:1887
689
  #, php-format
690
  msgid ""
691
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
696
  "%%MESSAGE%% para mostrar los datos del campo Mensaje, así como %%SITENAME%% "
697
  "para mostrar el nombre del blog."
698
 
699
+ #: contact_form.php:1912 contact_form.php:2398
700
  msgid "Save Changes"
701
  msgstr "Guardar cambios"
702
 
703
+ #: contact_form.php:1925
704
  #, php-format
705
  msgid ""
706
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
708
  "Por favor, utilice JavaScript para cambiar las opciones '%s', '%s' y para "
709
  "los campos de clasificación."
710
 
711
+ #: contact_form.php:1925 contact_form.php:1934
712
+ msgid "Form layout"
713
+ msgstr "Diseño del formulario"
714
+
715
+ #: contact_form.php:1925 contact_form.php:1946
716
+ msgid "Submit position"
717
+ msgstr "Enviar posición"
718
+
719
+ #: contact_form.php:1938
720
  msgid "One column"
721
  msgstr "Una columna"
722
 
723
+ #: contact_form.php:1941
724
  msgid "Two columns"
725
  msgstr "Dos columnas"
726
 
727
+ #: contact_form.php:1950 contact_form.php:1969 contact_form.php:1987
728
+ #: contact_form.php:2002
729
  msgid "Left"
730
  msgstr "Izquierda"
731
 
732
+ #: contact_form.php:1953 contact_form.php:1975 contact_form.php:1990
733
+ #: contact_form.php:2008
734
  msgid "Right"
735
  msgstr "Derecha"
736
 
737
+ #: contact_form.php:1965
738
  msgid "Form align"
739
  msgstr "Alinear formulario"
740
 
741
+ #: contact_form.php:1972 contact_form.php:2005
742
  msgid "Center"
743
  msgstr "Centro"
744
 
745
+ #: contact_form.php:1980
746
  msgid "Labels position"
747
  msgstr "Posición de las etiquetas"
748
 
749
+ #: contact_form.php:1984
750
  msgid "Top"
751
  msgstr "Arriba"
752
 
753
+ #: contact_form.php:1993
754
  msgid "Bottom"
755
  msgstr "Abajo"
756
 
757
+ #: contact_form.php:1998
758
  msgid "Labels align"
759
  msgstr "Alinear etiquetas"
760
 
761
+ #: contact_form.php:2013
762
  msgid "Errors output"
763
  msgstr "Salida de errores"
764
 
765
+ #: contact_form.php:2016
766
  msgid "Display error messages"
767
  msgstr "Mostrar mensajes de error"
768
 
769
+ #: contact_form.php:2017
770
  msgid "Color of the input field errors."
771
  msgstr "El color de los errores del campo de entrada."
772
 
773
+ #: contact_form.php:2018
774
  msgid "Display error messages & color of the input field errors"
775
  msgstr ""
776
  "Mostrar mensajes de error y el color de los errores de campo de entrada"
777
 
778
+ #: contact_form.php:2023
779
  msgid "Add placeholder to the input blocks"
780
  msgstr "Añadir marcador de posición de los bloques de entrada"
781
 
782
+ #: contact_form.php:2029
783
  msgid "Add tooltips"
784
  msgstr "Añadir información sobre herramientas"
785
 
786
+ #: contact_form.php:2043
787
  msgid "Email address"
788
  msgstr "Correo electrónico"
789
 
790
+ #: contact_form.php:2048 contact_form.php:3142 contact_form.php:3183
791
  msgid "Phone Number"
792
  msgstr "Número de teléfono"
793
 
794
+ #: contact_form.php:2074
 
 
 
 
795
  msgid "Style options"
796
  msgstr "Opciones de estilo"
797
 
798
+ #: contact_form.php:2078
799
  msgid "Text color"
800
  msgstr "Color del texto"
801
 
802
+ #: contact_form.php:2083
803
  msgid "Label text color"
804
  msgstr "Color del texto de la Etiqueta"
805
 
806
+ #: contact_form.php:2088
807
  msgid "Placeholder color"
808
  msgstr "El color de marcador de posición"
809
 
810
+ #: contact_form.php:2093
811
  msgid "Errors color"
812
  msgstr "Color del error"
813
 
814
+ #: contact_form.php:2098
815
  msgid "Error text color"
816
  msgstr "Color del texto de error"
817
 
818
+ #: contact_form.php:2103
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:2108
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:2113
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:2118
831
  msgid "Input fields"
832
  msgstr "Campos de entrada"
833
 
834
+ #: contact_form.php:2123
835
  msgid "Input fields background color"
836
  msgstr "Color de fondo de los campos de entrada"
837
 
838
+ #: contact_form.php:2128
839
  msgid "Text fields color"
840
  msgstr "Color de los campos de texto"
841
 
842
+ #: contact_form.php:2132
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:2137 contact_form.php:2161
847
  msgid "Border color"
848
  msgstr "Color del borde"
849
 
850
+ #: contact_form.php:2142
851
  msgid "Submit button"
852
  msgstr "Botón enviar"
853
 
854
+ #: contact_form.php:2146
855
  msgid "Width in px, numbers only"
856
  msgstr "Ancho en píxeles, sólo números"
857
 
858
+ #: contact_form.php:2151
859
  msgid "Button color"
860
  msgstr "Color del botón"
861
 
862
+ #: contact_form.php:2156
863
  msgid "Button text color"
864
  msgstr "Color del texto del botón"
865
 
866
+ #: contact_form.php:2188
867
  msgid "Contact Form | Preview"
868
  msgstr "Formulario de Contacto | Vista previa"
869
 
870
+ #: contact_form.php:2189
871
  msgid "Drag the necessary field to sort fields."
872
  msgstr "Arrastre el campo necesario para ordenar los campos."
873
 
874
+ #: contact_form.php:2385
875
+ #, fuzzy
876
  msgid ""
877
  "If you would like to add the Contact Form to your website, just copy and "
878
+ "paste this shortcode to your post or page or widget"
879
  msgstr ""
880
  "Si quieres agregar el formulario de contacto en tu sitio web, sólo tienes "
881
  "que copiar y pegar este código corto a tu post, una página o un widget:"
882
 
883
+ #: contact_form.php:2501
884
  msgid "Sorry, email message could not be delivered."
885
  msgstr "Lo sentimos, el mensaje de correo electrónico no se pudo entregar."
886
 
887
+ #: contact_form.php:3069 contact_form.php:3071
888
  msgid "Sent from (ip address)"
889
  msgstr "Enviado desde (dirección IP)"
890
 
891
+ #: contact_form.php:3099
892
  msgid "Contact from"
893
  msgstr "Contact from"
894
 
895
+ #: contact_form.php:3104 contact_form.php:3153
 
 
 
 
896
  msgid "Site"
897
  msgstr "Sitio"
898
 
899
+ #: contact_form.php:3283
900
  msgid ""
901
  "If you can see this MIME, it means that the MIME type is not supported by "
902
  "your email client!"
904
  "Si puede ver esta MIME, significa que el tipo MIME no es compatible con su "
905
  "cliente de correo electrónico!"
906
 
907
+ #: contact_form.php:3366
908
  msgid "FAQ"
909
  msgstr "Preguntas más frecuentes"
910
 
911
+ #: contact_form.php:3367
912
  msgid "Support"
913
  msgstr "Soporte técnico"
914
 
915
+ #: contact_form.php:3416
916
  msgid "Are you sure that you want to delete this language data?"
917
  msgstr "¿Estás seguro de que quieres eliminar este idioma?"
918
 
919
+ #: contact_form.php:3437
920
  msgid "Add multiple forms"
921
  msgstr "Añadir múltiples forularios"
922
 
923
+ #: contact_form.php:3437
924
  msgid ""
925
  "Install Contact Form Multi plugin to create unlimited number of contact "
926
  "forms."
928
  "Instalar el plugin Contact Form Multi para crear un número ilimitado de "
929
  "formas de contacto."
930
 
931
+ #: contact_form.php:3442
932
  msgid "Learn more"
933
  msgstr "Más información"
934
 
935
+ #: contact_form.php:3663
936
  msgid "Close notice"
937
  msgstr "Cerrar aviso"
938
 
939
+ #: contact_form.php:3668
940
  msgid "allows to store your messages to the database."
941
  msgstr "Permite almacenar sus mensajes en la base de datos."
942
 
943
+ #: contact_form.php:3669
944
  msgid "Manage messages that have been sent from your website."
945
  msgstr "Administración de mensajes que han sido enviados desde su sitio web."
946
 
947
+ #: contact_form.php:3727
948
  msgid "Contact form"
949
  msgstr "Formulario de contacto"
950
 
951
+ #: contact_form.php:3740 contact_form.php:3750
952
  msgid "Language"
953
  msgstr "Idioma"
954
 
955
+ #~ msgid "Name:"
956
+ #~ msgstr "Nombre:"
957
+
958
+ #~ msgid "Address:"
959
+ #~ msgstr "Dirección:"
960
+
961
+ #~ msgid "Email Address:"
962
+ #~ msgstr "Dirección de correo electrónico:"
963
+
964
+ #~ msgid "Phone number:"
965
+ #~ msgstr "Número de teléfono:"
966
+
967
+ #~ msgid "Subject:"
968
+ #~ msgstr "Asunto:"
969
+
970
+ #~ msgid "Message:"
971
+ #~ msgstr "Mensaje:"
972
+
973
+ #~ msgid "Attachment:"
974
+ #~ msgstr "Datos adjuntos:"
975
+
976
+ #~ msgid ""
977
+ #~ "Please enable JavaScript to add language in the contact form, change the "
978
+ #~ "names of the contact form fields and error messages."
979
+ #~ msgstr ""
980
+ #~ "Por favor, activa JavaScript para añadir un idioma en el formulario de "
981
+ #~ "contacto, cambiar los nombres de los campos del formulario de contacto y "
982
+ #~ "mensajes de error"
983
+
984
+ #~ msgid "What to use?"
985
+ #~ msgstr "Qué usar?"
986
+
987
+ #~ msgid "Using Contact Form to DB by BestWebSoft"
988
+ #~ msgstr "Mediante Formularios de Contacto de BD de BestWebSoft"
989
+
990
+ #~ msgid "Activate Subscriber"
991
+ #~ msgstr "Activar suscripción"
992
+
993
+ #~ msgid "Download Subscriber"
994
+ #~ msgstr "Descargar suscripción"
995
+
996
+ #~ msgid "Activate Captcha"
997
+ #~ msgstr "Activar Captcha"
998
+
999
+ #~ msgid "Download Captcha"
1000
+ #~ msgstr "Descargar Captcha"
1001
+
1002
+ #~ msgid "Phone"
1003
+ #~ msgstr "Teléfono"
1004
+
1005
  #~ msgid "To send mail you can use the php mail function"
1006
  #~ msgstr "Para enviar el correo se puede utilizar la función de correo php"
1007
 
1181
  #~ msgid "Please, go to"
1182
  #~ msgstr "Por favor, vaya a"
1183
 
 
 
 
1184
  #~ msgid "You will be redirected automatically in 5 seconds."
1185
  #~ msgstr "Usted será redirigido automáticamente en 5 segundos."
1186
 
languages/contact-form-plugin-et.mo CHANGED
Binary file
languages/contact-form-plugin-et.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: 2016-06-27 16:31+0300\n"
6
- "PO-Revision-Date: 2016-06-27 16:31+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Feliks <feliks@veebimeister.com>\n"
9
  "Language: ca_ES\n"
@@ -16,7 +16,7 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:37 contact_form.php:1030
20
  msgid "Contact Form Settings"
21
  msgstr "Contact Form seaded"
22
 
@@ -24,35 +24,46 @@ msgstr "Contact Form seaded"
24
  msgid "Contact Form"
25
  msgstr "Contact Form"
26
 
27
- #: contact_form.php:165 contact_form.php:1565 contact_form.php:1599
28
- msgid "Name:"
29
- msgstr "Nimi:"
 
 
30
 
31
- #: contact_form.php:166 contact_form.php:1566 contact_form.php:1600
32
- msgid "Address:"
33
- msgstr "Aadress:"
 
 
34
 
35
- #: contact_form.php:167 contact_form.php:1567 contact_form.php:1601
36
- msgid "Email Address:"
37
- msgstr "E-maili aadress:"
 
38
 
39
- #: contact_form.php:168 contact_form.php:1568 contact_form.php:1602
40
- msgid "Phone number:"
41
- msgstr "Telefoni number:"
 
42
 
43
- #: contact_form.php:169 contact_form.php:1569 contact_form.php:1603
44
- msgid "Subject:"
45
- msgstr "Pealkiri:"
 
 
46
 
47
- #: contact_form.php:170 contact_form.php:1570 contact_form.php:1604
48
- msgid "Message:"
49
- msgstr "Sõnum:"
 
 
50
 
51
- #: contact_form.php:171 contact_form.php:1571 contact_form.php:1605
52
- msgid "Attachment:"
53
- msgstr "Manus:"
 
54
 
55
- #: contact_form.php:172
56
  msgid ""
57
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
58
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -60,77 +71,77 @@ msgstr ""
60
  "Toetatud failitüübid: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
61
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
62
 
63
- #: contact_form.php:173 contact_form.php:1573 contact_form.php:1607
64
  msgid "Send me a copy"
65
  msgstr "Saada mulle koopia"
66
 
67
- #: contact_form.php:174 contact_form.php:1574 contact_form.php:1608
68
  msgid "Submit"
69
  msgstr "Saada"
70
 
71
- #: contact_form.php:175
72
  msgid "Your name is required."
73
  msgstr "Sinu nimi on kohustuslik."
74
 
75
- #: contact_form.php:176
76
  msgid "Address is required."
77
  msgstr "Aadress on kohustuslik."
78
 
79
- #: contact_form.php:177
80
  msgid "A valid email address is required."
81
  msgstr "Korrektne e-mail on kohustuslik."
82
 
83
- #: contact_form.php:178
84
  msgid "Phone number is required."
85
  msgstr "Telefoni number on kohustuslik."
86
 
87
- #: contact_form.php:179
88
  msgid "Subject is required."
89
  msgstr "Pealkiri on kohustuslik."
90
 
91
- #: contact_form.php:180
92
  msgid "Message text is required."
93
  msgstr "Sõnumi tekst on kohustuslik."
94
 
95
- #: contact_form.php:181
96
  msgid "File format is not valid."
97
  msgstr "Failiformaat pole toetatud."
98
 
99
- #: contact_form.php:182
100
  msgid "File upload error."
101
  msgstr "Error faili üles laadimisel."
102
 
103
- #: contact_form.php:183
104
  msgid "The file could not be uploaded."
105
  msgstr "Faili ei saanud üles laadida."
106
 
107
- #: contact_form.php:184
108
  msgid "This file is too large."
109
  msgstr "See fail on liiga suur."
110
 
111
- #: contact_form.php:185
112
  msgid "Please fill out the CAPTCHA."
113
  msgstr "Palun täida CAPTCHA."
114
 
115
- #: contact_form.php:186
116
  msgid "Please make corrections below and try again."
117
  msgstr "Palun tee allolevad parandused ja proovi uuesti."
118
 
119
- #: contact_form.php:188
120
  msgid "Thank you for contacting us."
121
  msgstr "Tänan meiega kontakteerumast."
122
 
123
- #: contact_form.php:688 contact_form.php:998
124
  msgid "Settings saved."
125
  msgstr "Seaded salvestatud."
126
 
127
- #: contact_form.php:940
128
  msgid ""
129
  "Email 'FROM' field option was changed, which may cause email messages being "
130
  "moved to the spam folder or email delivery failures."
131
  msgstr ""
132
 
133
- #: contact_form.php:950
134
  msgid ""
135
  "If the 'Redirect to page' option is selected then the URL field should be in "
136
  "the following format"
@@ -138,77 +149,62 @@ msgstr ""
138
  "Kui 'Suuna lehele' valik on aktiveeritud, siis URL-i väli peab olema "
139
  "järgnevas formaadis"
140
 
141
- #: contact_form.php:957
142
  msgid "Such user does not exist."
143
  msgstr "Sellist kasutajat ei eksisteeri. "
144
 
145
- #: contact_form.php:967
146
  msgid ""
147
  "Please enter a valid email address in the 'Use this email address' field."
148
  msgstr "Palun sisesta 'Kellelt' väljale korrektne e-maili aadress. "
149
 
150
- #: contact_form.php:975
151
  msgid "Please enter a valid email address in the 'FROM' field."
152
  msgstr "Palun sisesta 'Kellelt' väljale korrektne e-maili aadress. "
153
 
154
- #: contact_form.php:1000
155
  msgid "Settings are not saved."
156
  msgstr "Seaded pole salvestatud."
157
 
158
- #: contact_form.php:1027
159
  msgid "All plugin settings were restored."
160
  msgstr ""
161
 
162
- #: contact_form.php:1032
163
  msgid "How to Use Step-by-step Instruction"
164
  msgstr ""
165
 
166
- #: contact_form.php:1035 contact_form.php:3024 contact_form.php:3038
167
  msgid "Settings"
168
  msgstr "Seaded"
169
 
170
- #: contact_form.php:1036
171
  #, fuzzy
172
  msgid "Additional settings"
173
  msgstr "Opcions addicionals"
174
 
175
- #: contact_form.php:1037
176
  msgid "Appearance"
177
  msgstr ""
178
 
179
- #: contact_form.php:1038
180
  msgid "Custom code"
181
  msgstr ""
182
 
183
- #: contact_form.php:1039
184
  msgid "Go PRO"
185
  msgstr "Telli PRO"
186
 
187
- #: contact_form.php:1045
188
- #, fuzzy
189
- msgid ""
190
- "Please enable JavaScript to add language in the contact form, change the "
191
- "names of the contact form fields and error messages."
192
- msgstr "Muuda kontakti vormi väljade ja error-sõnumite nimesid"
193
-
194
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1740
195
- msgid "Form layout"
196
- msgstr ""
197
-
198
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1752
199
  #, fuzzy
200
- msgid "Submit position"
201
- msgstr "'Saada' nupp"
202
-
203
- #: contact_form.php:1057
204
- msgid "Notice:"
205
  msgstr "Märkus:"
206
 
207
- #: contact_form.php:1061
208
  msgid "NEW_FORM"
209
  msgstr ""
210
 
211
- #: contact_form.php:1062
212
  msgid ""
213
  "If you want to create multiple contact forms, please install the Contact "
214
  "Form Multi plugin."
@@ -216,7 +212,7 @@ msgstr ""
216
  "Kui soovid sisestada mitut kontaktivormi, siis installi Contact Form Multi "
217
  "plugin."
218
 
219
- #: contact_form.php:1071
220
  #, fuzzy, php-format
221
  msgid ""
222
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -225,7 +221,7 @@ msgstr ""
225
  "Kui soovid lisada kontakti vormi oma kodulehele, siis lihtsalt kopeeri see "
226
  "lühikood oma postitusele või lehele või moodulile:"
227
 
228
- #: contact_form.php:1077
229
  #, php-format
230
  msgid ""
231
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -234,7 +230,7 @@ msgid ""
234
  "language."
235
  msgstr ""
236
 
237
- #: contact_form.php:1086
238
  msgid ""
239
  "If you leave the fields empty, the messages will be sent to the email "
240
  "address specified during registration."
@@ -242,126 +238,134 @@ msgstr ""
242
  "Kui sa jätad selle välja tühjaks, siis sõnumid saadetakse registreerumisel "
243
  "antud e-maili aadressile."
244
 
245
- #: contact_form.php:1089
246
- msgid "The user's email address:"
 
247
  msgstr "Kasutaja e-maili aadress:"
248
 
249
- #: contact_form.php:1093
250
  #, fuzzy
251
  msgid "Select a username"
252
  msgstr "Loo kasutajanimi"
253
 
254
- #: contact_form.php:1106
 
255
  msgid ""
256
- "Enter a username of the person who should get the messages from the contact "
257
  "form."
258
  msgstr ""
259
  "Sisesta selle isiku kasutajanimi, kes peaks saama sõnumid kontaktivormilt."
260
 
261
- #: contact_form.php:1110
262
- msgid "Use this email address:"
 
263
  msgstr "Kasuta seda e-maili aadressi:"
264
 
265
- #: contact_form.php:1114
266
- msgid "Enter the email address you want the messages forwarded to."
 
267
  msgstr ""
268
  "Introdueixi una adreça de correu electrònic on vulgui re-enviar el missatge"
269
 
270
- #: contact_form.php:1121 contact_form.php:1487 contact_form.php:1679
271
- #: contact_form.php:1767 contact_form.php:3119
272
  msgid "Close"
273
  msgstr ""
274
 
275
- #: contact_form.php:1125
276
- msgid "Add department selectbox to the contact form:"
 
277
  msgstr "Lisa valikukast kontakti vormile:"
278
 
279
- #: contact_form.php:1133 contact_form.php:1496 contact_form.php:1698
280
- #: contact_form.php:1973
281
  msgid "If you upgrade to Pro version all your settings will be saved."
282
  msgstr "Kui sa lähed üle Pro versioonile, siis kõik seaded salvestatakse."
283
 
284
- #: contact_form.php:1140 contact_form.php:1407 contact_form.php:1501
285
- #: contact_form.php:1705 contact_form.php:1980
286
  #, fuzzy
287
  msgid "Unlock premium options by upgrading to Pro version"
288
  msgstr "Telli PRO versioon ja ava premium valikud."
289
 
290
- #: contact_form.php:1143 contact_form.php:1410 contact_form.php:1504
291
- #: contact_form.php:1708 contact_form.php:1983 contact_form.php:3329
292
  msgid "Learn More"
293
  msgstr "Uuri lähemalt"
294
 
295
- #: contact_form.php:1151
296
  msgid "Save emails to the database"
297
  msgstr "Salvesta e-mailid andmebaasi"
298
 
299
- #: contact_form.php:1156
300
  msgid "Using"
301
  msgstr "Kasutan"
302
 
303
- #: contact_form.php:1159 contact_form.php:1163
 
 
 
 
 
 
304
  #, fuzzy
305
- msgid "Using Contact Form to DB by BestWebSoft"
306
- msgstr "Kontakti vorm andmebaasi on loonud"
307
 
308
- #: contact_form.php:1159
 
309
  msgid "Activate"
310
  msgstr "Aktiveeri"
311
 
312
- #: contact_form.php:1163
 
313
  msgid "Download"
314
  msgstr "Descarregar"
315
 
316
- #: contact_form.php:1173
317
- msgid "What to use?"
318
- msgstr "Mida kasutada?"
319
 
320
- #: contact_form.php:1178
321
  msgid "Wp-mail"
322
  msgstr "Wp-mail"
323
 
324
- #: contact_form.php:1180
325
  #, fuzzy
326
  msgid "You can use the Wordpress wp_mail function for mailing"
327
  msgstr "Võid kasutada wp_mail funktsiooni e-mailide saatmiseks"
328
 
329
- #: contact_form.php:1183
330
  msgid "Mail"
331
  msgstr "E-mail"
332
 
333
- #: contact_form.php:1185
334
  #, fuzzy
335
  msgid "You can use the PHP mail function for mailing"
336
  msgstr "Võid kasutada wp_mail funktsiooni e-mailide saatmiseks"
337
 
338
- #: contact_form.php:1190
339
  msgid "'FROM' field"
340
  msgstr ""
341
 
342
- #: contact_form.php:1192 contact_form.php:1251 contact_form.php:1839
343
- #: contact_form.php:2810 contact_form.php:2846
344
- msgid "Name"
345
- msgstr "Nimi"
346
-
347
- #: contact_form.php:1195
348
  msgid "User name"
349
  msgstr "Kasutaja nimi"
350
 
351
- #: contact_form.php:1197
352
  msgid ""
353
  "The name of the user who fills the form will be used in the field 'From'."
354
  msgstr "Kasutaja nime (kes täidab vormi) kasutatakse 'Kellelt' väljal."
355
 
356
- #: contact_form.php:1202 contact_form.php:2821 contact_form.php:2853
357
  msgid "Email"
358
  msgstr "E-mail"
359
 
360
- #: contact_form.php:1205
361
  msgid "User email"
362
  msgstr "Kasutaja e-mail"
363
 
364
- #: contact_form.php:1207
365
  msgid ""
366
  "The email address of the user who fills the form will be used in the field "
367
  "'From'."
@@ -369,190 +373,148 @@ msgstr ""
369
  "Selle kasutaja, kes täidab vormi, e-maili aadressi kasutatakse 'Kellelt' "
370
  "väljal."
371
 
372
- #: contact_form.php:1210
373
  msgid ""
374
  "If this option is changed, email messages may be moved to the spam folder or "
375
  "email delivery failures may occur."
376
  msgstr ""
377
 
378
- #: contact_form.php:1216
379
  msgid "Required symbol"
380
  msgstr "Nõutud sümbol"
381
 
382
- #: contact_form.php:1226
383
  msgid "Fields"
384
  msgstr "Väljad"
385
 
386
- #: contact_form.php:1227 contact_form.php:1254 contact_form.php:1281
387
- #: contact_form.php:1301 contact_form.php:1340 contact_form.php:1425
388
  msgid "Used"
389
  msgstr "Kasutatud"
390
 
391
- #: contact_form.php:1228 contact_form.php:1243 contact_form.php:1258
392
- #: contact_form.php:1285 contact_form.php:1305 contact_form.php:1318
393
- #: contact_form.php:1344 contact_form.php:1357 contact_form.php:1381
394
  msgid "Required"
395
  msgstr "Nõutud"
396
 
397
- #: contact_form.php:1230 contact_form.php:1263 contact_form.php:1323
398
- #: contact_form.php:1362 contact_form.php:1386
399
  msgid "Visible"
400
  msgstr "Nähtav"
401
 
402
- #: contact_form.php:1231 contact_form.php:1267 contact_form.php:1327
403
- #: contact_form.php:1366 contact_form.php:1390
404
  msgid "Disabled for editing"
405
  msgstr "Toimetamiseks välja lülitatud"
406
 
407
- #: contact_form.php:1232 contact_form.php:1291 contact_form.php:1370
408
- #: contact_form.php:1394
409
  msgid "Field's default value"
410
  msgstr "Välja vaikeseades väärtus"
411
 
412
- #: contact_form.php:1239
413
  #, fuzzy
414
  msgid "Department selectbox"
415
  msgstr "Asukoha valik"
416
 
417
- #: contact_form.php:1271
418
  msgid "Use User's name as a default value if the user is logged in."
419
  msgstr ""
420
 
421
- #: contact_form.php:1272 contact_form.php:1332
422
  msgid ""
423
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
424
  "in users."
425
  msgstr ""
426
 
427
- #: contact_form.php:1278
428
  msgid "Location selectbox"
429
  msgstr "Asukoha valik"
430
 
431
- #: contact_form.php:1298 contact_form.php:1844 contact_form.php:2816
432
- #: contact_form.php:2850
433
- msgid "Address"
434
- msgstr "Aadress"
435
-
436
- #: contact_form.php:1314
437
- msgid "Email Address"
438
- msgstr "E-maili aadress"
439
-
440
- #: contact_form.php:1331
441
  msgid "Use User's email as a default value if the user is logged in."
442
  msgstr ""
443
 
444
- #: contact_form.php:1337
445
- msgid "Phone number"
446
- msgstr "Telefoni number"
447
-
448
- #: contact_form.php:1353 contact_form.php:1859 contact_form.php:2831
449
- #: contact_form.php:2859
450
- msgid "Subject"
451
- msgstr "Pealkiri"
452
-
453
- #: contact_form.php:1377 contact_form.php:1863 contact_form.php:2834
454
- #: contact_form.php:2861
455
- msgid "Message"
456
- msgstr "Sõnum"
457
-
458
- #: contact_form.php:1418
459
  msgid "Attachment block"
460
  msgstr "Manuste blokk"
461
 
462
- #: contact_form.php:1420
463
  msgid "Users can attach the following file formats"
464
  msgstr "Kasutajad saavad lisada manuseid järgnevates formaatides"
465
 
466
- #: contact_form.php:1438
467
  msgid "Add to the form"
468
  msgstr "Lisa vormile"
469
 
470
- #: contact_form.php:1443
471
  msgid "Tips below the Attachment"
472
  msgstr "Vihjed manuse alla"
473
 
474
- #: contact_form.php:1452
475
  msgid "'Send me a copy' block"
476
  msgstr "'Saada mulle koopia' blokk"
477
 
478
- #: contact_form.php:1464
479
- #, fuzzy
480
- msgid "Activate Subscriber"
481
- msgstr "Plugin activat"
482
-
483
- #: contact_form.php:1468
484
- msgid "Download Subscriber"
485
- msgstr ""
486
-
487
- #: contact_form.php:1477
488
- #, fuzzy
489
- msgid "Activate Captcha"
490
- msgstr "Captcha activat"
491
-
492
- #: contact_form.php:1481
493
- #, fuzzy
494
- msgid "Download Captcha"
495
- msgstr "Lae captcha alla"
496
-
497
- #: contact_form.php:1491
498
  msgid "Agreement checkbox"
499
  msgstr "Nõustumise kastike"
500
 
501
- #: contact_form.php:1491
502
  msgid "Required checkbox for submitting the form"
503
  msgstr "Nõutud kastike vormi saatmiseks"
504
 
505
- #: contact_form.php:1492
506
  msgid "Optional checkbox"
507
  msgstr "Valikuline kastike"
508
 
509
- #: contact_form.php:1492
510
  msgid "Optional checkbox, the results of which will be displayed in email"
511
  msgstr "Valikuline kastike, mille tulemusi näidatakse e-mailis"
512
 
513
- #: contact_form.php:1513
514
  msgid "Delete an attachment file from the server after the email is sent"
515
  msgstr "Kustuta manuse fail serverist peale e-maili saatmist"
516
 
517
- #: contact_form.php:1519
518
  msgid "Email in HTML format sending"
519
  msgstr "E-maili saatmine HTML formaadis"
520
 
521
- #: contact_form.php:1523
522
  msgid "Display additional info in the email"
523
  msgstr "Näita e-mailis lisainfot"
524
 
525
- #: contact_form.php:1529
526
  #, fuzzy
527
  msgid "Sent from (IP address)"
528
  msgstr "Saadetud (IP aadress)"
529
 
530
- #: contact_form.php:1529
531
  msgid "Example: Sent from (IP address):\t127.0.0.1"
532
  msgstr "Näide: Saadetud (IP address):\t127.0.0.1"
533
 
534
- #: contact_form.php:1530 contact_form.php:2783 contact_form.php:2785
535
  msgid "Date/Time"
536
  msgstr "Kuupäev/Aeg"
537
 
538
- #: contact_form.php:1530
539
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
540
  msgstr "Näide: Kuupäev/Aeg:\tAugust 19, 2013 8:50 pm"
541
 
542
- #: contact_form.php:1531 contact_form.php:2789 contact_form.php:2791
543
  msgid "Sent from (referer)"
544
  msgstr "Saadetud (referer)"
545
 
546
- #: contact_form.php:1531
547
  msgid ""
548
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
549
  msgstr "Näide: Saatnud (referer):\thttp://veebimeister.com/"
550
 
551
- #: contact_form.php:1532 contact_form.php:2795 contact_form.php:2797
552
  msgid "Using (user agent)"
553
  msgstr "Kasutab (user agent)"
554
 
555
- #: contact_form.php:1532
556
  msgid ""
557
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
558
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -560,134 +522,134 @@ msgstr ""
560
  "Näide: Kasutab (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
561
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
562
 
563
- #: contact_form.php:1537
564
  msgid "Language settings for the field names in the form"
565
  msgstr "Vormi keeleseaded nimeväljadele"
566
 
567
- #: contact_form.php:1546
568
  msgid "Add a language"
569
  msgstr "Lisa keel"
570
 
571
- #: contact_form.php:1550
572
  msgid "Change the names of the contact form fields and error messages"
573
  msgstr "Muuda kontakti vormi väljade ja error-sõnumite nimesid"
574
 
575
- #: contact_form.php:1555 contact_form.php:1642 contact_form.php:1887
576
- #: contact_form.php:1892 contact_form.php:1902 contact_form.php:1907
577
- #: contact_form.php:1912 contact_form.php:1917 contact_form.php:1927
578
- #: contact_form.php:1932 contact_form.php:1941 contact_form.php:1955
579
- #: contact_form.php:1960 contact_form.php:1965
580
  msgid "Default"
581
  msgstr "Vaikimisi valik"
582
 
583
- #: contact_form.php:1563 contact_form.php:1597
584
  msgid "click to expand/hide the list"
585
  msgstr "avamiseks/sulgemiseks klikka"
586
 
587
- #: contact_form.php:1572 contact_form.php:1606
588
  msgid "Tips below the Attachment block"
589
  msgstr "Vihje manuse bloki all"
590
 
591
- #: contact_form.php:1575 contact_form.php:1609
592
  msgid "Error message for the Name field"
593
  msgstr "Error väljal 'Nimi'"
594
 
595
- #: contact_form.php:1576 contact_form.php:1610
596
  msgid "Error message for the Address field"
597
  msgstr "Error väljal 'Aadress'"
598
 
599
- #: contact_form.php:1577 contact_form.php:1611
600
  msgid "Error message for the Email field"
601
  msgstr "Error väljal 'E-mail'"
602
 
603
- #: contact_form.php:1578 contact_form.php:1612
604
  msgid "Error message for the Phone field"
605
  msgstr "Error väljal 'Telefon'"
606
 
607
- #: contact_form.php:1579 contact_form.php:1613
608
  msgid "Error message for the Subject field"
609
  msgstr "Error väljal 'Pealkiri'"
610
 
611
- #: contact_form.php:1580 contact_form.php:1614
612
  msgid "Error message for the Message field"
613
  msgstr "Error väljal 'Sõnum'"
614
 
615
- #: contact_form.php:1581 contact_form.php:1615
616
  msgid "Error message about the file type for the Attachment field"
617
  msgstr "Error faili tüübi kohta manuse väljal"
618
 
619
- #: contact_form.php:1582 contact_form.php:1616
620
  msgid ""
621
  "Error message while uploading a file for the Attachment field to the server"
622
  msgstr "Error faili üles laadimisel serverisse manuse välja jaoks"
623
 
624
- #: contact_form.php:1583 contact_form.php:1617
625
  msgid "Error message while moving the file for the Attachment field"
626
  msgstr "Error faili liigutamisel manuse väljale"
627
 
628
- #: contact_form.php:1584 contact_form.php:1618
629
  msgid "Error message when file size limit for the Attachment field is exceeded"
630
  msgstr "Error ületades faili suuruse limiiti manuse väljal"
631
 
632
- #: contact_form.php:1585 contact_form.php:1619
633
  msgid "Error message for the Captcha field"
634
  msgstr "Error väljal 'Captcha'"
635
 
636
- #: contact_form.php:1586 contact_form.php:1620
637
  msgid "Error message for the whole form"
638
  msgstr "Error kogu vormi kohta"
639
 
640
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
641
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
642
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
643
- #: contact_form.php:3179
644
  msgid "Use shortcode"
645
  msgstr "Kasuta lühikoodi"
646
 
647
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
648
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
649
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
650
- #: contact_form.php:3179
651
  msgid "for this language"
652
  msgstr "selle keele jaoks"
653
 
654
- #: contact_form.php:1633
655
  msgid "Use the changed names of the contact form fields in the email"
656
  msgstr "Kasuta kontaktivormi väljade muudetud nimesid emailis"
657
 
658
- #: contact_form.php:1639
659
  msgid "Action after email is sent"
660
  msgstr "Tegevus peale e-maili saatmist"
661
 
662
- #: contact_form.php:1641
663
  msgid "Display text"
664
  msgstr "Näita teksti"
665
 
666
- #: contact_form.php:1650 contact_form.php:1660
667
  msgid "Text"
668
  msgstr "Tekst"
669
 
670
- #: contact_form.php:1671
671
  msgid "Redirect to the page"
672
  msgstr "Suuna lehele"
673
 
674
- #: contact_form.php:1672
675
  msgid "Url"
676
  msgstr "Url"
677
 
678
- #: contact_form.php:1683
679
  msgid "Add field 'Reply-To' to the email header"
680
  msgstr ""
681
 
682
- #: contact_form.php:1685
683
  msgid "Field 'Reply-To' will be initialized by user email"
684
  msgstr ""
685
 
686
- #: contact_form.php:1689
687
  msgid "Auto Response"
688
  msgstr ""
689
 
690
- #: contact_form.php:1693
691
  #, php-format
692
  msgid ""
693
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -695,205 +657,207 @@ msgid ""
695
  "name."
696
  msgstr ""
697
 
698
- #: contact_form.php:1718 contact_form.php:2213
699
  msgid "Save Changes"
700
  msgstr "Salvesta muudatused"
701
 
702
- #: contact_form.php:1731
703
  #, php-format
704
  msgid ""
705
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
706
  msgstr ""
707
 
708
- #: contact_form.php:1744
 
 
 
 
 
 
 
 
 
709
  msgid "One column"
710
  msgstr ""
711
 
712
- #: contact_form.php:1747
713
  msgid "Two columns"
714
  msgstr ""
715
 
716
- #: contact_form.php:1756 contact_form.php:1775 contact_form.php:1793
717
- #: contact_form.php:1808
718
  msgid "Left"
719
  msgstr ""
720
 
721
- #: contact_form.php:1759 contact_form.php:1781 contact_form.php:1796
722
- #: contact_form.php:1814
723
  msgid "Right"
724
  msgstr ""
725
 
726
- #: contact_form.php:1771
727
  msgid "Form align"
728
  msgstr ""
729
 
730
- #: contact_form.php:1778 contact_form.php:1811
731
  msgid "Center"
732
  msgstr ""
733
 
734
- #: contact_form.php:1786
735
  #, fuzzy
736
  msgid "Labels position"
737
  msgstr "'Saada' nupp"
738
 
739
- #: contact_form.php:1790
740
  msgid "Top"
741
  msgstr ""
742
 
743
- #: contact_form.php:1799
744
  msgid "Bottom"
745
  msgstr ""
746
 
747
- #: contact_form.php:1804
748
  msgid "Labels align"
749
  msgstr ""
750
 
751
- #: contact_form.php:1819
752
  msgid "Errors output"
753
  msgstr "Errorite väljund"
754
 
755
- #: contact_form.php:1822
756
  msgid "Display error messages"
757
  msgstr "Näita error-sõnumeid"
758
 
759
- #: contact_form.php:1823
760
  msgid "Color of the input field errors."
761
  msgstr "Sisestusväljade errorite värv"
762
 
763
- #: contact_form.php:1824
764
  msgid "Display error messages & color of the input field errors"
765
  msgstr "Näita error-sõnumeid ja sisestusväljade errorite värvi"
766
 
767
- #: contact_form.php:1829
768
  msgid "Add placeholder to the input blocks"
769
  msgstr "Lisa kohahoidja sisestusblokkidele"
770
 
771
- #: contact_form.php:1835
772
  msgid "Add tooltips"
773
  msgstr "Lisa vihjed"
774
 
775
- #: contact_form.php:1849
776
  msgid "Email address"
777
  msgstr "E-maili aadress"
778
 
779
- #: contact_form.php:1854
780
  msgid "Phone Number"
781
  msgstr "Telefoni number"
782
 
783
- #: contact_form.php:1868
784
- msgid "Attachment"
785
- msgstr "Manus"
786
-
787
- #: contact_form.php:1880
788
  msgid "Style options"
789
  msgstr "Stiili valikud"
790
 
791
- #: contact_form.php:1884
792
  msgid "Text color"
793
  msgstr "Teksti värv"
794
 
795
- #: contact_form.php:1889
796
  msgid "Label text color"
797
  msgstr "Sildi teksti värv"
798
 
799
- #: contact_form.php:1894
800
  msgid "Placeholder color"
801
  msgstr "Kohahoidja värv"
802
 
803
- #: contact_form.php:1899
804
  msgid "Errors color"
805
  msgstr "Errorite värv"
806
 
807
- #: contact_form.php:1904
808
  msgid "Error text color"
809
  msgstr "Error-teksti värv"
810
 
811
- #: contact_form.php:1909
812
  msgid "Background color of the input field errors"
813
  msgstr "Sisestusväljade errorite taustavärv"
814
 
815
- #: contact_form.php:1914
816
  msgid "Border color of the input field errors"
817
  msgstr "Sisestusväljade errorite piirjoonte värv"
818
 
819
- #: contact_form.php:1919
820
  msgid "Placeholder color of the input field errors"
821
  msgstr "Sisestusväljade errorite kohahoidja värv"
822
 
823
- #: contact_form.php:1924
824
  msgid "Input fields"
825
  msgstr "Sisestusväljad"
826
 
827
- #: contact_form.php:1929
828
  msgid "Input fields background color"
829
  msgstr "Sisestusväljade taustavärv"
830
 
831
- #: contact_form.php:1934
832
  msgid "Text fields color"
833
  msgstr "Tekstiväljade värv"
834
 
835
- #: contact_form.php:1938
836
  msgid "Border width in px, numbers only"
837
  msgstr "Piirjoone paksus pikslites. Ainult number"
838
 
839
- #: contact_form.php:1943 contact_form.php:1967
840
  msgid "Border color"
841
  msgstr "Piirjoone värv"
842
 
843
- #: contact_form.php:1948
844
  msgid "Submit button"
845
  msgstr "'Saada' nupp"
846
 
847
- #: contact_form.php:1952
848
  msgid "Width in px, numbers only"
849
  msgstr "Laius pikslites, ainult numbrid"
850
 
851
- #: contact_form.php:1957
852
  msgid "Button color"
853
  msgstr "Nupu värv"
854
 
855
- #: contact_form.php:1962
856
  msgid "Button text color"
857
  msgstr "Nupu teksti värv"
858
 
859
- #: contact_form.php:1994
860
  #, fuzzy
861
  msgid "Contact Form | Preview"
862
  msgstr "Contact Form Pro | Eelvaade"
863
 
864
- #: contact_form.php:1995
865
  msgid "Drag the necessary field to sort fields."
866
  msgstr ""
867
 
868
- #: contact_form.php:2200
 
869
  msgid ""
870
  "If you would like to add the Contact Form to your website, just copy and "
871
- "paste this shortcode to your post or page or widget:"
872
  msgstr ""
873
  "Kui soovid lisada kontakti vormi oma kodulehele, siis lihtsalt kopeeri see "
874
  "lühikood oma postitusele või lehele või moodulile:"
875
 
876
- #: contact_form.php:2297
877
  msgid "Sorry, email message could not be delivered."
878
  msgstr "Vabandust, see kiri jäi saatmata."
879
 
880
- #: contact_form.php:2777 contact_form.php:2779
881
  msgid "Sent from (ip address)"
882
  msgstr "Saadetud (IP aadress)"
883
 
884
- #: contact_form.php:2804
885
  msgid "Contact from"
886
  msgstr "Kontakti vorm"
887
 
888
- #: contact_form.php:2826 contact_form.php:2856
889
- msgid "Phone"
890
- msgstr "Telefon"
891
-
892
- #: contact_form.php:2837 contact_form.php:2863
893
  msgid "Site"
894
  msgstr "Leht"
895
 
896
- #: contact_form.php:2956
897
  msgid ""
898
  "If you can see this MIME, it means that the MIME type is not supported by "
899
  "your email client!"
@@ -901,58 +865,107 @@ msgstr ""
901
  "Kui sa näed seda MIME-t, siis MIME tüüp pole sinu e-maili kliendi poolt "
902
  "toetatud!"
903
 
904
- #: contact_form.php:3039
905
  msgid "FAQ"
906
  msgstr "KKK"
907
 
908
- #: contact_form.php:3040
909
  msgid "Support"
910
  msgstr "Klienditugi"
911
 
912
- #: contact_form.php:3089
913
  msgid "Are you sure that you want to delete this language data?"
914
  msgstr "Oled sa kindel, et soovid kustutada selle keele andmeid?"
915
 
916
- #: contact_form.php:3110
917
  #, fuzzy
918
  msgid "Add multiple forms"
919
  msgstr "Lisa vormile"
920
 
921
- #: contact_form.php:3110
922
  msgid ""
923
  "Install Contact Form Multi plugin to create unlimited number of contact "
924
  "forms."
925
  msgstr ""
926
 
927
- #: contact_form.php:3115
928
  #, fuzzy
929
  msgid "Learn more"
930
  msgstr "Uuri lähemalt"
931
 
932
- #: contact_form.php:3320
933
  msgid "Close notice"
934
  msgstr ""
935
 
936
- #: contact_form.php:3325
937
  #, fuzzy
938
  msgid "allows to store your messages to the database."
939
  msgstr ""
940
  "<strong>Contact Form to DB</strong> laseb sul salvestada sõnumeid andmebaasi."
941
 
942
- #: contact_form.php:3326
943
  msgid "Manage messages that have been sent from your website."
944
  msgstr "Toimeta sõnumeid, mis on sulle saadetud sinu veebilehelt."
945
 
946
- #: contact_form.php:3384
947
  #, fuzzy
948
  msgid "Contact form"
949
  msgstr "Kontakti vorm"
950
 
951
- #: contact_form.php:3397 contact_form.php:3407
952
  #, fuzzy
953
  msgid "Language"
954
  msgstr "Lisa keel"
955
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
956
  #~ msgid "To send mail you can use the php mail function"
957
  #~ msgstr "E-mailide saatmiseks saad kasutada php mail funktsiooni"
958
 
@@ -1122,9 +1135,6 @@ msgstr "Lisa keel"
1122
  #~ msgid "Please, go to"
1123
  #~ msgstr "Palun mine"
1124
 
1125
- #~ msgid "the setting page"
1126
- #~ msgstr "seadete leht"
1127
-
1128
  #~ msgid "You will be redirected automatically in 5 seconds."
1129
  #~ msgstr "Sind suunatakse automaatselt edasi 5 sekundi jooksul."
1130
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-12 17:22+0300\n"
6
+ "PO-Revision-Date: 2016-07-12 17:22+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Feliks <feliks@veebimeister.com>\n"
9
  "Language: ca_ES\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:37 contact_form.php:1118
20
  msgid "Contact Form Settings"
21
  msgstr "Contact Form seaded"
22
 
24
  msgid "Contact Form"
25
  msgstr "Contact Form"
26
 
27
+ #: contact_form.php:167 contact_form.php:1294 contact_form.php:1353
28
+ #: contact_form.php:1746 contact_form.php:1784 contact_form.php:2033
29
+ #: contact_form.php:3113 contact_form.php:3159
30
+ msgid "Name"
31
+ msgstr "Nimi"
32
 
33
+ #: contact_form.php:168 contact_form.php:1400 contact_form.php:1747
34
+ #: contact_form.php:1785 contact_form.php:2038 contact_form.php:3120
35
+ #: contact_form.php:3165
36
+ msgid "Address"
37
+ msgstr "Aadress"
38
 
39
+ #: contact_form.php:169 contact_form.php:1416 contact_form.php:1748
40
+ #: contact_form.php:1786
41
+ msgid "Email Address"
42
+ msgstr "E-maili aadress"
43
 
44
+ #: contact_form.php:170 contact_form.php:1439 contact_form.php:1749
45
+ #: contact_form.php:1787
46
+ msgid "Phone number"
47
+ msgstr "Telefoni number"
48
 
49
+ #: contact_form.php:171 contact_form.php:1455 contact_form.php:1750
50
+ #: contact_form.php:1788 contact_form.php:2053 contact_form.php:3131
51
+ #: contact_form.php:3174
52
+ msgid "Subject"
53
+ msgstr "Pealkiri"
54
 
55
+ #: contact_form.php:172 contact_form.php:1479 contact_form.php:1751
56
+ #: contact_form.php:1789 contact_form.php:2057 contact_form.php:3136
57
+ #: contact_form.php:3178
58
+ msgid "Message"
59
+ msgstr "Sõnum"
60
 
61
+ #: contact_form.php:173 contact_form.php:1752 contact_form.php:1790
62
+ #: contact_form.php:2062
63
+ msgid "Attachment"
64
+ msgstr "Manus"
65
 
66
+ #: contact_form.php:174
67
  msgid ""
68
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
69
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
71
  "Toetatud failitüübid: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
72
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
73
 
74
+ #: contact_form.php:175 contact_form.php:1754 contact_form.php:1792
75
  msgid "Send me a copy"
76
  msgstr "Saada mulle koopia"
77
 
78
+ #: contact_form.php:176 contact_form.php:1755 contact_form.php:1793
79
  msgid "Submit"
80
  msgstr "Saada"
81
 
82
+ #: contact_form.php:177
83
  msgid "Your name is required."
84
  msgstr "Sinu nimi on kohustuslik."
85
 
86
+ #: contact_form.php:178
87
  msgid "Address is required."
88
  msgstr "Aadress on kohustuslik."
89
 
90
+ #: contact_form.php:179
91
  msgid "A valid email address is required."
92
  msgstr "Korrektne e-mail on kohustuslik."
93
 
94
+ #: contact_form.php:180
95
  msgid "Phone number is required."
96
  msgstr "Telefoni number on kohustuslik."
97
 
98
+ #: contact_form.php:181
99
  msgid "Subject is required."
100
  msgstr "Pealkiri on kohustuslik."
101
 
102
+ #: contact_form.php:182
103
  msgid "Message text is required."
104
  msgstr "Sõnumi tekst on kohustuslik."
105
 
106
+ #: contact_form.php:183
107
  msgid "File format is not valid."
108
  msgstr "Failiformaat pole toetatud."
109
 
110
+ #: contact_form.php:184
111
  msgid "File upload error."
112
  msgstr "Error faili üles laadimisel."
113
 
114
+ #: contact_form.php:185
115
  msgid "The file could not be uploaded."
116
  msgstr "Faili ei saanud üles laadida."
117
 
118
+ #: contact_form.php:186
119
  msgid "This file is too large."
120
  msgstr "See fail on liiga suur."
121
 
122
+ #: contact_form.php:187
123
  msgid "Please fill out the CAPTCHA."
124
  msgstr "Palun täida CAPTCHA."
125
 
126
+ #: contact_form.php:188
127
  msgid "Please make corrections below and try again."
128
  msgstr "Palun tee allolevad parandused ja proovi uuesti."
129
 
130
+ #: contact_form.php:190
131
  msgid "Thank you for contacting us."
132
  msgstr "Tänan meiega kontakteerumast."
133
 
134
+ #: contact_form.php:824 contact_form.php:1076
135
  msgid "Settings saved."
136
  msgstr "Seaded salvestatud."
137
 
138
+ #: contact_form.php:1021
139
  msgid ""
140
  "Email 'FROM' field option was changed, which may cause email messages being "
141
  "moved to the spam folder or email delivery failures."
142
  msgstr ""
143
 
144
+ #: contact_form.php:1031
145
  msgid ""
146
  "If the 'Redirect to page' option is selected then the URL field should be in "
147
  "the following format"
149
  "Kui 'Suuna lehele' valik on aktiveeritud, siis URL-i väli peab olema "
150
  "järgnevas formaadis"
151
 
152
+ #: contact_form.php:1038
153
  msgid "Such user does not exist."
154
  msgstr "Sellist kasutajat ei eksisteeri. "
155
 
156
+ #: contact_form.php:1048
157
  msgid ""
158
  "Please enter a valid email address in the 'Use this email address' field."
159
  msgstr "Palun sisesta 'Kellelt' väljale korrektne e-maili aadress. "
160
 
161
+ #: contact_form.php:1056
162
  msgid "Please enter a valid email address in the 'FROM' field."
163
  msgstr "Palun sisesta 'Kellelt' väljale korrektne e-maili aadress. "
164
 
165
+ #: contact_form.php:1078
166
  msgid "Settings are not saved."
167
  msgstr "Seaded pole salvestatud."
168
 
169
+ #: contact_form.php:1115
170
  msgid "All plugin settings were restored."
171
  msgstr ""
172
 
173
+ #: contact_form.php:1120
174
  msgid "How to Use Step-by-step Instruction"
175
  msgstr ""
176
 
177
+ #: contact_form.php:1123 contact_form.php:3351 contact_form.php:3365
178
  msgid "Settings"
179
  msgstr "Seaded"
180
 
181
+ #: contact_form.php:1124
182
  #, fuzzy
183
  msgid "Additional settings"
184
  msgstr "Opcions addicionals"
185
 
186
+ #: contact_form.php:1125
187
  msgid "Appearance"
188
  msgstr ""
189
 
190
+ #: contact_form.php:1126
191
  msgid "Custom code"
192
  msgstr ""
193
 
194
+ #: contact_form.php:1127
195
  msgid "Go PRO"
196
  msgstr "Telli PRO"
197
 
198
+ #: contact_form.php:1136
 
 
 
 
 
 
 
 
 
 
 
199
  #, fuzzy
200
+ msgid "Notice"
 
 
 
 
201
  msgstr "Märkus:"
202
 
203
+ #: contact_form.php:1140
204
  msgid "NEW_FORM"
205
  msgstr ""
206
 
207
+ #: contact_form.php:1141
208
  msgid ""
209
  "If you want to create multiple contact forms, please install the Contact "
210
  "Form Multi plugin."
212
  "Kui soovid sisestada mitut kontaktivormi, siis installi Contact Form Multi "
213
  "plugin."
214
 
215
+ #: contact_form.php:1150
216
  #, fuzzy, php-format
217
  msgid ""
218
  "If you would like to add a Contact Form to your page or post, please use %s "
221
  "Kui soovid lisada kontakti vormi oma kodulehele, siis lihtsalt kopeeri see "
222
  "lühikood oma postitusele või lehele või moodulile:"
223
 
224
+ #: contact_form.php:1156
225
  #, php-format
226
  msgid ""
227
  "You can add the Contact Form to your page or post by clicking on %s button "
230
  "language."
231
  msgstr ""
232
 
233
+ #: contact_form.php:1165
234
  msgid ""
235
  "If you leave the fields empty, the messages will be sent to the email "
236
  "address specified during registration."
238
  "Kui sa jätad selle välja tühjaks, siis sõnumid saadetakse registreerumisel "
239
  "antud e-maili aadressile."
240
 
241
+ #: contact_form.php:1168
242
+ #, fuzzy
243
+ msgid "The user's email address"
244
  msgstr "Kasutaja e-maili aadress:"
245
 
246
+ #: contact_form.php:1172
247
  #, fuzzy
248
  msgid "Select a username"
249
  msgstr "Loo kasutajanimi"
250
 
251
+ #: contact_form.php:1185
252
+ #, fuzzy
253
  msgid ""
254
+ "Select a username of the person who should get the messages from the contact "
255
  "form."
256
  msgstr ""
257
  "Sisesta selle isiku kasutajanimi, kes peaks saama sõnumid kontaktivormilt."
258
 
259
+ #: contact_form.php:1189
260
+ #, fuzzy
261
+ msgid "Use this email address"
262
  msgstr "Kasuta seda e-maili aadressi:"
263
 
264
+ #: contact_form.php:1193
265
+ #, fuzzy
266
+ msgid "Enter the email address for receiving messages"
267
  msgstr ""
268
  "Introdueixi una adreça de correu electrònic on vulgui re-enviar el missatge"
269
 
270
+ #: contact_form.php:1200 contact_form.php:1663 contact_form.php:1873
271
+ #: contact_form.php:1961 contact_form.php:3446
272
  msgid "Close"
273
  msgstr ""
274
 
275
+ #: contact_form.php:1204
276
+ #, fuzzy
277
+ msgid "Add department selectbox to the contact form"
278
  msgstr "Lisa valikukast kontakti vormile:"
279
 
280
+ #: contact_form.php:1212 contact_form.php:1672 contact_form.php:1892
281
+ #: contact_form.php:2167
282
  msgid "If you upgrade to Pro version all your settings will be saved."
283
  msgstr "Kui sa lähed üle Pro versioonile, siis kõik seaded salvestatakse."
284
 
285
+ #: contact_form.php:1219 contact_form.php:1509 contact_form.php:1677
286
+ #: contact_form.php:1899 contact_form.php:2174
287
  #, fuzzy
288
  msgid "Unlock premium options by upgrading to Pro version"
289
  msgstr "Telli PRO versioon ja ava premium valikud."
290
 
291
+ #: contact_form.php:1222 contact_form.php:1512 contact_form.php:1680
292
+ #: contact_form.php:1902 contact_form.php:2177 contact_form.php:3672
293
  msgid "Learn More"
294
  msgstr "Uuri lähemalt"
295
 
296
+ #: contact_form.php:1230
297
  msgid "Save emails to the database"
298
  msgstr "Salvesta e-mailid andmebaasi"
299
 
300
+ #: contact_form.php:1241 contact_form.php:1255 contact_form.php:1262
301
  msgid "Using"
302
  msgstr "Kasutan"
303
 
304
+ #: contact_form.php:1247 contact_form.php:1572 contact_form.php:1605
305
+ #: contact_form.php:1640
306
+ msgid "Please activate the appropriate option on"
307
+ msgstr ""
308
+
309
+ #: contact_form.php:1250 contact_form.php:1575 contact_form.php:1608
310
+ #: contact_form.php:1643
311
  #, fuzzy
312
+ msgid "settings page"
313
+ msgstr "seadete leht"
314
 
315
+ #: contact_form.php:1256 contact_form.php:1581 contact_form.php:1615
316
+ #: contact_form.php:1651
317
  msgid "Activate"
318
  msgstr "Aktiveeri"
319
 
320
+ #: contact_form.php:1263 contact_form.php:1587 contact_form.php:1621
321
+ #: contact_form.php:1656
322
  msgid "Download"
323
  msgstr "Descarregar"
324
 
325
+ #: contact_form.php:1275
326
+ msgid "Sending method"
327
+ msgstr ""
328
 
329
+ #: contact_form.php:1280
330
  msgid "Wp-mail"
331
  msgstr "Wp-mail"
332
 
333
+ #: contact_form.php:1282
334
  #, fuzzy
335
  msgid "You can use the Wordpress wp_mail function for mailing"
336
  msgstr "Võid kasutada wp_mail funktsiooni e-mailide saatmiseks"
337
 
338
+ #: contact_form.php:1285
339
  msgid "Mail"
340
  msgstr "E-mail"
341
 
342
+ #: contact_form.php:1287
343
  #, fuzzy
344
  msgid "You can use the PHP mail function for mailing"
345
  msgstr "Võid kasutada wp_mail funktsiooni e-mailide saatmiseks"
346
 
347
+ #: contact_form.php:1292
348
  msgid "'FROM' field"
349
  msgstr ""
350
 
351
+ #: contact_form.php:1297
 
 
 
 
 
352
  msgid "User name"
353
  msgstr "Kasutaja nimi"
354
 
355
+ #: contact_form.php:1299
356
  msgid ""
357
  "The name of the user who fills the form will be used in the field 'From'."
358
  msgstr "Kasutaja nime (kes täidab vormi) kasutatakse 'Kellelt' väljal."
359
 
360
+ #: contact_form.php:1304 contact_form.php:3126 contact_form.php:3170
361
  msgid "Email"
362
  msgstr "E-mail"
363
 
364
+ #: contact_form.php:1307
365
  msgid "User email"
366
  msgstr "Kasutaja e-mail"
367
 
368
+ #: contact_form.php:1309
369
  msgid ""
370
  "The email address of the user who fills the form will be used in the field "
371
  "'From'."
373
  "Selle kasutaja, kes täidab vormi, e-maili aadressi kasutatakse 'Kellelt' "
374
  "väljal."
375
 
376
+ #: contact_form.php:1312
377
  msgid ""
378
  "If this option is changed, email messages may be moved to the spam folder or "
379
  "email delivery failures may occur."
380
  msgstr ""
381
 
382
+ #: contact_form.php:1318
383
  msgid "Required symbol"
384
  msgstr "Nõutud sümbol"
385
 
386
+ #: contact_form.php:1328
387
  msgid "Fields"
388
  msgstr "Väljad"
389
 
390
+ #: contact_form.php:1329 contact_form.php:1356 contact_form.php:1383
391
+ #: contact_form.php:1403 contact_form.php:1442 contact_form.php:1527
392
  msgid "Used"
393
  msgstr "Kasutatud"
394
 
395
+ #: contact_form.php:1330 contact_form.php:1345 contact_form.php:1360
396
+ #: contact_form.php:1387 contact_form.php:1407 contact_form.php:1420
397
+ #: contact_form.php:1446 contact_form.php:1459 contact_form.php:1483
398
  msgid "Required"
399
  msgstr "Nõutud"
400
 
401
+ #: contact_form.php:1332 contact_form.php:1365 contact_form.php:1425
402
+ #: contact_form.php:1464 contact_form.php:1488
403
  msgid "Visible"
404
  msgstr "Nähtav"
405
 
406
+ #: contact_form.php:1333 contact_form.php:1369 contact_form.php:1429
407
+ #: contact_form.php:1468 contact_form.php:1492
408
  msgid "Disabled for editing"
409
  msgstr "Toimetamiseks välja lülitatud"
410
 
411
+ #: contact_form.php:1334 contact_form.php:1393 contact_form.php:1472
412
+ #: contact_form.php:1496
413
  msgid "Field's default value"
414
  msgstr "Välja vaikeseades väärtus"
415
 
416
+ #: contact_form.php:1341
417
  #, fuzzy
418
  msgid "Department selectbox"
419
  msgstr "Asukoha valik"
420
 
421
+ #: contact_form.php:1373
422
  msgid "Use User's name as a default value if the user is logged in."
423
  msgstr ""
424
 
425
+ #: contact_form.php:1374 contact_form.php:1434
426
  msgid ""
427
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
428
  "in users."
429
  msgstr ""
430
 
431
+ #: contact_form.php:1380
432
  msgid "Location selectbox"
433
  msgstr "Asukoha valik"
434
 
435
+ #: contact_form.php:1433
 
 
 
 
 
 
 
 
 
436
  msgid "Use User's email as a default value if the user is logged in."
437
  msgstr ""
438
 
439
+ #: contact_form.php:1520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
440
  msgid "Attachment block"
441
  msgstr "Manuste blokk"
442
 
443
+ #: contact_form.php:1522
444
  msgid "Users can attach the following file formats"
445
  msgstr "Kasutajad saavad lisada manuseid järgnevates formaatides"
446
 
447
+ #: contact_form.php:1540
448
  msgid "Add to the form"
449
  msgstr "Lisa vormile"
450
 
451
+ #: contact_form.php:1545
452
  msgid "Tips below the Attachment"
453
  msgstr "Vihjed manuse alla"
454
 
455
+ #: contact_form.php:1554
456
  msgid "'Send me a copy' block"
457
  msgstr "'Saada mulle koopia' blokk"
458
 
459
+ #: contact_form.php:1667
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
460
  msgid "Agreement checkbox"
461
  msgstr "Nõustumise kastike"
462
 
463
+ #: contact_form.php:1667
464
  msgid "Required checkbox for submitting the form"
465
  msgstr "Nõutud kastike vormi saatmiseks"
466
 
467
+ #: contact_form.php:1668
468
  msgid "Optional checkbox"
469
  msgstr "Valikuline kastike"
470
 
471
+ #: contact_form.php:1668
472
  msgid "Optional checkbox, the results of which will be displayed in email"
473
  msgstr "Valikuline kastike, mille tulemusi näidatakse e-mailis"
474
 
475
+ #: contact_form.php:1689
476
  msgid "Delete an attachment file from the server after the email is sent"
477
  msgstr "Kustuta manuse fail serverist peale e-maili saatmist"
478
 
479
+ #: contact_form.php:1695
480
  msgid "Email in HTML format sending"
481
  msgstr "E-maili saatmine HTML formaadis"
482
 
483
+ #: contact_form.php:1699
484
  msgid "Display additional info in the email"
485
  msgstr "Näita e-mailis lisainfot"
486
 
487
+ #: contact_form.php:1705
488
  #, fuzzy
489
  msgid "Sent from (IP address)"
490
  msgstr "Saadetud (IP aadress)"
491
 
492
+ #: contact_form.php:1705
493
  msgid "Example: Sent from (IP address):\t127.0.0.1"
494
  msgstr "Näide: Saadetud (IP address):\t127.0.0.1"
495
 
496
+ #: contact_form.php:1706 contact_form.php:3075 contact_form.php:3077
497
  msgid "Date/Time"
498
  msgstr "Kuupäev/Aeg"
499
 
500
+ #: contact_form.php:1706
501
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
502
  msgstr "Näide: Kuupäev/Aeg:\tAugust 19, 2013 8:50 pm"
503
 
504
+ #: contact_form.php:1707 contact_form.php:3081 contact_form.php:3083
505
  msgid "Sent from (referer)"
506
  msgstr "Saadetud (referer)"
507
 
508
+ #: contact_form.php:1707
509
  msgid ""
510
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
511
  msgstr "Näide: Saatnud (referer):\thttp://veebimeister.com/"
512
 
513
+ #: contact_form.php:1708 contact_form.php:3087 contact_form.php:3089
514
  msgid "Using (user agent)"
515
  msgstr "Kasutab (user agent)"
516
 
517
+ #: contact_form.php:1708
518
  msgid ""
519
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
520
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
522
  "Näide: Kasutab (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
523
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
524
 
525
+ #: contact_form.php:1713
526
  msgid "Language settings for the field names in the form"
527
  msgstr "Vormi keeleseaded nimeväljadele"
528
 
529
+ #: contact_form.php:1722
530
  msgid "Add a language"
531
  msgstr "Lisa keel"
532
 
533
+ #: contact_form.php:1726
534
  msgid "Change the names of the contact form fields and error messages"
535
  msgstr "Muuda kontakti vormi väljade ja error-sõnumite nimesid"
536
 
537
+ #: contact_form.php:1731 contact_form.php:1827 contact_form.php:2081
538
+ #: contact_form.php:2086 contact_form.php:2096 contact_form.php:2101
539
+ #: contact_form.php:2106 contact_form.php:2111 contact_form.php:2121
540
+ #: contact_form.php:2126 contact_form.php:2135 contact_form.php:2149
541
+ #: contact_form.php:2154 contact_form.php:2159
542
  msgid "Default"
543
  msgstr "Vaikimisi valik"
544
 
545
+ #: contact_form.php:1744 contact_form.php:1782
546
  msgid "click to expand/hide the list"
547
  msgstr "avamiseks/sulgemiseks klikka"
548
 
549
+ #: contact_form.php:1753 contact_form.php:1791
550
  msgid "Tips below the Attachment block"
551
  msgstr "Vihje manuse bloki all"
552
 
553
+ #: contact_form.php:1756 contact_form.php:1794
554
  msgid "Error message for the Name field"
555
  msgstr "Error väljal 'Nimi'"
556
 
557
+ #: contact_form.php:1757 contact_form.php:1795
558
  msgid "Error message for the Address field"
559
  msgstr "Error väljal 'Aadress'"
560
 
561
+ #: contact_form.php:1758 contact_form.php:1796
562
  msgid "Error message for the Email field"
563
  msgstr "Error väljal 'E-mail'"
564
 
565
+ #: contact_form.php:1759 contact_form.php:1797
566
  msgid "Error message for the Phone field"
567
  msgstr "Error väljal 'Telefon'"
568
 
569
+ #: contact_form.php:1760 contact_form.php:1798
570
  msgid "Error message for the Subject field"
571
  msgstr "Error väljal 'Pealkiri'"
572
 
573
+ #: contact_form.php:1761 contact_form.php:1799
574
  msgid "Error message for the Message field"
575
  msgstr "Error väljal 'Sõnum'"
576
 
577
+ #: contact_form.php:1762 contact_form.php:1800
578
  msgid "Error message about the file type for the Attachment field"
579
  msgstr "Error faili tüübi kohta manuse väljal"
580
 
581
+ #: contact_form.php:1763 contact_form.php:1801
582
  msgid ""
583
  "Error message while uploading a file for the Attachment field to the server"
584
  msgstr "Error faili üles laadimisel serverisse manuse välja jaoks"
585
 
586
+ #: contact_form.php:1764 contact_form.php:1802
587
  msgid "Error message while moving the file for the Attachment field"
588
  msgstr "Error faili liigutamisel manuse väljale"
589
 
590
+ #: contact_form.php:1765 contact_form.php:1803
591
  msgid "Error message when file size limit for the Attachment field is exceeded"
592
  msgstr "Error ületades faili suuruse limiiti manuse väljal"
593
 
594
+ #: contact_form.php:1766 contact_form.php:1804
595
  msgid "Error message for the Captcha field"
596
  msgstr "Error väljal 'Captcha'"
597
 
598
+ #: contact_form.php:1767 contact_form.php:1805
599
  msgid "Error message for the whole form"
600
  msgstr "Error kogu vormi kohta"
601
 
602
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
603
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
604
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
605
+ #: contact_form.php:3516
606
  msgid "Use shortcode"
607
  msgstr "Kasuta lühikoodi"
608
 
609
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
610
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
611
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
612
+ #: contact_form.php:3516
613
  msgid "for this language"
614
  msgstr "selle keele jaoks"
615
 
616
+ #: contact_form.php:1818
617
  msgid "Use the changed names of the contact form fields in the email"
618
  msgstr "Kasuta kontaktivormi väljade muudetud nimesid emailis"
619
 
620
+ #: contact_form.php:1824
621
  msgid "Action after email is sent"
622
  msgstr "Tegevus peale e-maili saatmist"
623
 
624
+ #: contact_form.php:1826
625
  msgid "Display text"
626
  msgstr "Näita teksti"
627
 
628
+ #: contact_form.php:1840 contact_form.php:1854
629
  msgid "Text"
630
  msgstr "Tekst"
631
 
632
+ #: contact_form.php:1865
633
  msgid "Redirect to the page"
634
  msgstr "Suuna lehele"
635
 
636
+ #: contact_form.php:1866
637
  msgid "Url"
638
  msgstr "Url"
639
 
640
+ #: contact_form.php:1877
641
  msgid "Add field 'Reply-To' to the email header"
642
  msgstr ""
643
 
644
+ #: contact_form.php:1879
645
  msgid "Field 'Reply-To' will be initialized by user email"
646
  msgstr ""
647
 
648
+ #: contact_form.php:1883
649
  msgid "Auto Response"
650
  msgstr ""
651
 
652
+ #: contact_form.php:1887
653
  #, php-format
654
  msgid ""
655
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
657
  "name."
658
  msgstr ""
659
 
660
+ #: contact_form.php:1912 contact_form.php:2398
661
  msgid "Save Changes"
662
  msgstr "Salvesta muudatused"
663
 
664
+ #: contact_form.php:1925
665
  #, php-format
666
  msgid ""
667
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
668
  msgstr ""
669
 
670
+ #: contact_form.php:1925 contact_form.php:1934
671
+ msgid "Form layout"
672
+ msgstr ""
673
+
674
+ #: contact_form.php:1925 contact_form.php:1946
675
+ #, fuzzy
676
+ msgid "Submit position"
677
+ msgstr "'Saada' nupp"
678
+
679
+ #: contact_form.php:1938
680
  msgid "One column"
681
  msgstr ""
682
 
683
+ #: contact_form.php:1941
684
  msgid "Two columns"
685
  msgstr ""
686
 
687
+ #: contact_form.php:1950 contact_form.php:1969 contact_form.php:1987
688
+ #: contact_form.php:2002
689
  msgid "Left"
690
  msgstr ""
691
 
692
+ #: contact_form.php:1953 contact_form.php:1975 contact_form.php:1990
693
+ #: contact_form.php:2008
694
  msgid "Right"
695
  msgstr ""
696
 
697
+ #: contact_form.php:1965
698
  msgid "Form align"
699
  msgstr ""
700
 
701
+ #: contact_form.php:1972 contact_form.php:2005
702
  msgid "Center"
703
  msgstr ""
704
 
705
+ #: contact_form.php:1980
706
  #, fuzzy
707
  msgid "Labels position"
708
  msgstr "'Saada' nupp"
709
 
710
+ #: contact_form.php:1984
711
  msgid "Top"
712
  msgstr ""
713
 
714
+ #: contact_form.php:1993
715
  msgid "Bottom"
716
  msgstr ""
717
 
718
+ #: contact_form.php:1998
719
  msgid "Labels align"
720
  msgstr ""
721
 
722
+ #: contact_form.php:2013
723
  msgid "Errors output"
724
  msgstr "Errorite väljund"
725
 
726
+ #: contact_form.php:2016
727
  msgid "Display error messages"
728
  msgstr "Näita error-sõnumeid"
729
 
730
+ #: contact_form.php:2017
731
  msgid "Color of the input field errors."
732
  msgstr "Sisestusväljade errorite värv"
733
 
734
+ #: contact_form.php:2018
735
  msgid "Display error messages & color of the input field errors"
736
  msgstr "Näita error-sõnumeid ja sisestusväljade errorite värvi"
737
 
738
+ #: contact_form.php:2023
739
  msgid "Add placeholder to the input blocks"
740
  msgstr "Lisa kohahoidja sisestusblokkidele"
741
 
742
+ #: contact_form.php:2029
743
  msgid "Add tooltips"
744
  msgstr "Lisa vihjed"
745
 
746
+ #: contact_form.php:2043
747
  msgid "Email address"
748
  msgstr "E-maili aadress"
749
 
750
+ #: contact_form.php:2048 contact_form.php:3142 contact_form.php:3183
751
  msgid "Phone Number"
752
  msgstr "Telefoni number"
753
 
754
+ #: contact_form.php:2074
 
 
 
 
755
  msgid "Style options"
756
  msgstr "Stiili valikud"
757
 
758
+ #: contact_form.php:2078
759
  msgid "Text color"
760
  msgstr "Teksti värv"
761
 
762
+ #: contact_form.php:2083
763
  msgid "Label text color"
764
  msgstr "Sildi teksti värv"
765
 
766
+ #: contact_form.php:2088
767
  msgid "Placeholder color"
768
  msgstr "Kohahoidja värv"
769
 
770
+ #: contact_form.php:2093
771
  msgid "Errors color"
772
  msgstr "Errorite värv"
773
 
774
+ #: contact_form.php:2098
775
  msgid "Error text color"
776
  msgstr "Error-teksti värv"
777
 
778
+ #: contact_form.php:2103
779
  msgid "Background color of the input field errors"
780
  msgstr "Sisestusväljade errorite taustavärv"
781
 
782
+ #: contact_form.php:2108
783
  msgid "Border color of the input field errors"
784
  msgstr "Sisestusväljade errorite piirjoonte värv"
785
 
786
+ #: contact_form.php:2113
787
  msgid "Placeholder color of the input field errors"
788
  msgstr "Sisestusväljade errorite kohahoidja värv"
789
 
790
+ #: contact_form.php:2118
791
  msgid "Input fields"
792
  msgstr "Sisestusväljad"
793
 
794
+ #: contact_form.php:2123
795
  msgid "Input fields background color"
796
  msgstr "Sisestusväljade taustavärv"
797
 
798
+ #: contact_form.php:2128
799
  msgid "Text fields color"
800
  msgstr "Tekstiväljade värv"
801
 
802
+ #: contact_form.php:2132
803
  msgid "Border width in px, numbers only"
804
  msgstr "Piirjoone paksus pikslites. Ainult number"
805
 
806
+ #: contact_form.php:2137 contact_form.php:2161
807
  msgid "Border color"
808
  msgstr "Piirjoone värv"
809
 
810
+ #: contact_form.php:2142
811
  msgid "Submit button"
812
  msgstr "'Saada' nupp"
813
 
814
+ #: contact_form.php:2146
815
  msgid "Width in px, numbers only"
816
  msgstr "Laius pikslites, ainult numbrid"
817
 
818
+ #: contact_form.php:2151
819
  msgid "Button color"
820
  msgstr "Nupu värv"
821
 
822
+ #: contact_form.php:2156
823
  msgid "Button text color"
824
  msgstr "Nupu teksti värv"
825
 
826
+ #: contact_form.php:2188
827
  #, fuzzy
828
  msgid "Contact Form | Preview"
829
  msgstr "Contact Form Pro | Eelvaade"
830
 
831
+ #: contact_form.php:2189
832
  msgid "Drag the necessary field to sort fields."
833
  msgstr ""
834
 
835
+ #: contact_form.php:2385
836
+ #, fuzzy
837
  msgid ""
838
  "If you would like to add the Contact Form to your website, just copy and "
839
+ "paste this shortcode to your post or page or widget"
840
  msgstr ""
841
  "Kui soovid lisada kontakti vormi oma kodulehele, siis lihtsalt kopeeri see "
842
  "lühikood oma postitusele või lehele või moodulile:"
843
 
844
+ #: contact_form.php:2501
845
  msgid "Sorry, email message could not be delivered."
846
  msgstr "Vabandust, see kiri jäi saatmata."
847
 
848
+ #: contact_form.php:3069 contact_form.php:3071
849
  msgid "Sent from (ip address)"
850
  msgstr "Saadetud (IP aadress)"
851
 
852
+ #: contact_form.php:3099
853
  msgid "Contact from"
854
  msgstr "Kontakti vorm"
855
 
856
+ #: contact_form.php:3104 contact_form.php:3153
 
 
 
 
857
  msgid "Site"
858
  msgstr "Leht"
859
 
860
+ #: contact_form.php:3283
861
  msgid ""
862
  "If you can see this MIME, it means that the MIME type is not supported by "
863
  "your email client!"
865
  "Kui sa näed seda MIME-t, siis MIME tüüp pole sinu e-maili kliendi poolt "
866
  "toetatud!"
867
 
868
+ #: contact_form.php:3366
869
  msgid "FAQ"
870
  msgstr "KKK"
871
 
872
+ #: contact_form.php:3367
873
  msgid "Support"
874
  msgstr "Klienditugi"
875
 
876
+ #: contact_form.php:3416
877
  msgid "Are you sure that you want to delete this language data?"
878
  msgstr "Oled sa kindel, et soovid kustutada selle keele andmeid?"
879
 
880
+ #: contact_form.php:3437
881
  #, fuzzy
882
  msgid "Add multiple forms"
883
  msgstr "Lisa vormile"
884
 
885
+ #: contact_form.php:3437
886
  msgid ""
887
  "Install Contact Form Multi plugin to create unlimited number of contact "
888
  "forms."
889
  msgstr ""
890
 
891
+ #: contact_form.php:3442
892
  #, fuzzy
893
  msgid "Learn more"
894
  msgstr "Uuri lähemalt"
895
 
896
+ #: contact_form.php:3663
897
  msgid "Close notice"
898
  msgstr ""
899
 
900
+ #: contact_form.php:3668
901
  #, fuzzy
902
  msgid "allows to store your messages to the database."
903
  msgstr ""
904
  "<strong>Contact Form to DB</strong> laseb sul salvestada sõnumeid andmebaasi."
905
 
906
+ #: contact_form.php:3669
907
  msgid "Manage messages that have been sent from your website."
908
  msgstr "Toimeta sõnumeid, mis on sulle saadetud sinu veebilehelt."
909
 
910
+ #: contact_form.php:3727
911
  #, fuzzy
912
  msgid "Contact form"
913
  msgstr "Kontakti vorm"
914
 
915
+ #: contact_form.php:3740 contact_form.php:3750
916
  #, fuzzy
917
  msgid "Language"
918
  msgstr "Lisa keel"
919
 
920
+ #~ msgid "Name:"
921
+ #~ msgstr "Nimi:"
922
+
923
+ #~ msgid "Address:"
924
+ #~ msgstr "Aadress:"
925
+
926
+ #~ msgid "Email Address:"
927
+ #~ msgstr "E-maili aadress:"
928
+
929
+ #~ msgid "Phone number:"
930
+ #~ msgstr "Telefoni number:"
931
+
932
+ #~ msgid "Subject:"
933
+ #~ msgstr "Pealkiri:"
934
+
935
+ #~ msgid "Message:"
936
+ #~ msgstr "Sõnum:"
937
+
938
+ #~ msgid "Attachment:"
939
+ #~ msgstr "Manus:"
940
+
941
+ #, fuzzy
942
+ #~ msgid ""
943
+ #~ "Please enable JavaScript to add language in the contact form, change the "
944
+ #~ "names of the contact form fields and error messages."
945
+ #~ msgstr "Muuda kontakti vormi väljade ja error-sõnumite nimesid"
946
+
947
+ #~ msgid "What to use?"
948
+ #~ msgstr "Mida kasutada?"
949
+
950
+ #, fuzzy
951
+ #~ msgid "Using Contact Form to DB by BestWebSoft"
952
+ #~ msgstr "Kontakti vorm andmebaasi on loonud"
953
+
954
+ #, fuzzy
955
+ #~ msgid "Activate Subscriber"
956
+ #~ msgstr "Plugin activat"
957
+
958
+ #, fuzzy
959
+ #~ msgid "Activate Captcha"
960
+ #~ msgstr "Captcha activat"
961
+
962
+ #, fuzzy
963
+ #~ msgid "Download Captcha"
964
+ #~ msgstr "Lae captcha alla"
965
+
966
+ #~ msgid "Phone"
967
+ #~ msgstr "Telefon"
968
+
969
  #~ msgid "To send mail you can use the php mail function"
970
  #~ msgstr "E-mailide saatmiseks saad kasutada php mail funktsiooni"
971
 
1135
  #~ msgid "Please, go to"
1136
  #~ msgstr "Palun mine"
1137
 
 
 
 
1138
  #~ msgid "You will be redirected automatically in 5 seconds."
1139
  #~ msgstr "Sind suunatakse automaatselt edasi 5 sekundi jooksul."
1140
 
languages/contact-form-plugin-fr_FR.mo CHANGED
Binary file
languages/contact-form-plugin-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact-form-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-06-27 16:31+0300\n"
6
- "PO-Revision-Date: 2016-06-27 16:31+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: contact_form.php:37 contact_form.php:1030
22
  msgid "Contact Form Settings"
23
  msgstr "Options du formulaire de contact"
24
 
@@ -26,35 +26,46 @@ msgstr "Options du formulaire de contact"
26
  msgid "Contact Form"
27
  msgstr "Formulaire de contact"
28
 
29
- #: contact_form.php:165 contact_form.php:1565 contact_form.php:1599
30
- msgid "Name:"
31
- msgstr "Nom&nbsp;:"
 
 
32
 
33
- #: contact_form.php:166 contact_form.php:1566 contact_form.php:1600
34
- msgid "Address:"
35
- msgstr "Adresse&nbsp;:"
 
 
36
 
37
- #: contact_form.php:167 contact_form.php:1567 contact_form.php:1601
38
- msgid "Email Address:"
39
- msgstr "Adresse e-mail&nbsp;:"
 
40
 
41
- #: contact_form.php:168 contact_form.php:1568 contact_form.php:1602
42
- msgid "Phone number:"
43
- msgstr "Téléphone&nbsp;:"
 
44
 
45
- #: contact_form.php:169 contact_form.php:1569 contact_form.php:1603
46
- msgid "Subject:"
47
- msgstr "Sujet&nbsp;:"
 
 
48
 
49
- #: contact_form.php:170 contact_form.php:1570 contact_form.php:1604
50
- msgid "Message:"
51
- msgstr "Message&nbsp;:"
 
 
52
 
53
- #: contact_form.php:171 contact_form.php:1571 contact_form.php:1605
54
- msgid "Attachment:"
55
- msgstr "Pièce jointe&nbsp;:"
 
56
 
57
- #: contact_form.php:172
58
  msgid ""
59
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
60
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -63,71 +74,71 @@ msgstr ""
63
  "TIFF, BMP, AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, "
64
  "MP3, PPT."
65
 
66
- #: contact_form.php:173 contact_form.php:1573 contact_form.php:1607
67
  msgid "Send me a copy"
68
  msgstr "M'envoyer une copie"
69
 
70
- #: contact_form.php:174 contact_form.php:1574 contact_form.php:1608
71
  msgid "Submit"
72
  msgstr "Envoyer"
73
 
74
- #: contact_form.php:175
75
  msgid "Your name is required."
76
  msgstr "Un nom est obligatoire."
77
 
78
- #: contact_form.php:176
79
  msgid "Address is required."
80
  msgstr "Une adresse est obligatoire."
81
 
82
- #: contact_form.php:177
83
  msgid "A valid email address is required."
84
  msgstr "Une adresse e-mail valide est obligatoire."
85
 
86
- #: contact_form.php:178
87
  msgid "Phone number is required."
88
  msgstr "Le numéro de téléphone est obligatoire."
89
 
90
- #: contact_form.php:179
91
  msgid "Subject is required."
92
  msgstr "Le sujet est obligatoire."
93
 
94
- #: contact_form.php:180
95
  msgid "Message text is required."
96
  msgstr "Un message est obligatoire."
97
 
98
- #: contact_form.php:181
99
  msgid "File format is not valid."
100
  msgstr "Le type de pièce jointe n'est pas valide."
101
 
102
- #: contact_form.php:182
103
  msgid "File upload error."
104
  msgstr "Erreur de chargement du fichier."
105
 
106
- #: contact_form.php:183
107
  msgid "The file could not be uploaded."
108
  msgstr "Le fichier n'a pas pu être envoyé."
109
 
110
- #: contact_form.php:184
111
  msgid "This file is too large."
112
  msgstr "Le fichier est trop volumineux."
113
 
114
- #: contact_form.php:185
115
  msgid "Please fill out the CAPTCHA."
116
  msgstr "Merci de compléter le CAPTCHA."
117
 
118
- #: contact_form.php:186
119
  msgid "Please make corrections below and try again."
120
  msgstr "Merci de faire les corrections suivantes et de réessayer."
121
 
122
- #: contact_form.php:188
123
  msgid "Thank you for contacting us."
124
  msgstr "Merci de nous avoir contacté."
125
 
126
- #: contact_form.php:688 contact_form.php:998
127
  msgid "Settings saved."
128
  msgstr "Options enregistrées."
129
 
130
- #: contact_form.php:940
131
  msgid ""
132
  "Email 'FROM' field option was changed, which may cause email messages being "
133
  "moved to the spam folder or email delivery failures."
@@ -136,7 +147,7 @@ msgstr ""
136
  "entraîner un classement des messages dans les dossiers spam ou bien une "
137
  "erreur d'acheminement peut survenir."
138
 
139
- #: contact_form.php:950
140
  msgid ""
141
  "If the 'Redirect to page' option is selected then the URL field should be in "
142
  "the following format"
@@ -144,79 +155,63 @@ msgstr ""
144
  "Si l’option 'Rediriger vers la page' est positionnée, alors le champ Url "
145
  "doit être rempli avec le format suivant"
146
 
147
- #: contact_form.php:957
148
  msgid "Such user does not exist."
149
  msgstr "Cet utilisateur est inconnu."
150
 
151
- #: contact_form.php:967
152
  msgid ""
153
  "Please enter a valid email address in the 'Use this email address' field."
154
  msgstr ""
155
  "Merci de saisir une adresse e-mail valide pour le champ 'Utiliser cette "
156
  "adresse e-mail'."
157
 
158
- #: contact_form.php:975
159
  msgid "Please enter a valid email address in the 'FROM' field."
160
  msgstr "Merci de saisir une adresse e-mail valide pour le champ 'FROM'."
161
 
162
- #: contact_form.php:1000
163
  msgid "Settings are not saved."
164
  msgstr "Paramètres non enregistrées."
165
 
166
- #: contact_form.php:1027
167
  msgid "All plugin settings were restored."
168
  msgstr "Remettre les valeurs par défaut des paramètres de l'extension."
169
 
170
- #: contact_form.php:1032
171
  msgid "How to Use Step-by-step Instruction"
172
  msgstr "Mode d'emploi pas à pas"
173
 
174
- #: contact_form.php:1035 contact_form.php:3024 contact_form.php:3038
175
  msgid "Settings"
176
  msgstr "Réglages"
177
 
178
- #: contact_form.php:1036
179
  msgid "Additional settings"
180
  msgstr "Options supplémentaires"
181
 
182
- #: contact_form.php:1037
183
  msgid "Appearance"
184
  msgstr "Aspect"
185
 
186
- #: contact_form.php:1038
187
  #, fuzzy
188
  msgid "Custom code"
189
  msgstr "Personnaliser"
190
 
191
- #: contact_form.php:1039
192
  msgid "Go PRO"
193
  msgstr "Choisir la version PRO"
194
 
195
- #: contact_form.php:1045
196
- msgid ""
197
- "Please enable JavaScript to add language in the contact form, change the "
198
- "names of the contact form fields and error messages."
199
- msgstr ""
200
- "Merci d'activer le java-script pour ajouter une nouvelle langue au "
201
- "formulaire de contact, changer les noms des champs et les messages d'erreur."
202
-
203
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1740
204
- msgid "Form layout"
205
- msgstr "Structure du formulaire"
206
-
207
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1752
208
- msgid "Submit position"
209
- msgstr "Position du bouton envoyer"
210
 
211
- #: contact_form.php:1057
212
- msgid "Notice:"
213
- msgstr "Avertissement&nbsp;:"
214
-
215
- #: contact_form.php:1061
216
  msgid "NEW_FORM"
217
  msgstr "Nouveau Formulaire"
218
 
219
- #: contact_form.php:1062
220
  msgid ""
221
  "If you want to create multiple contact forms, please install the Contact "
222
  "Form Multi plugin."
@@ -224,7 +219,7 @@ msgstr ""
224
  "Si vous voulez créer plusieurs formulaire de contact, merci d'installer "
225
  "l'extension 'Contact Form Multi'"
226
 
227
- #: contact_form.php:1071
228
  #, php-format
229
  msgid ""
230
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -233,7 +228,7 @@ msgstr ""
233
  "Si vous souhaitez ajouter un formulaire de contact à votre page ou votre "
234
  "article, merci d’utiliser le bouton %s"
235
 
236
- #: contact_form.php:1077
237
  #, php-format
238
  msgid ""
239
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -246,7 +241,7 @@ msgstr ""
246
  "bouton n'est pas affiché, merci d'utiliser le code court %s ou %s où * est à "
247
  "remplacer par la langue du formulaire de contact."
248
 
249
- #: contact_form.php:1086
250
  msgid ""
251
  "If you leave the fields empty, the messages will be sent to the email "
252
  "address specified during registration."
@@ -254,130 +249,139 @@ msgstr ""
254
  "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à "
255
  "l'adresse spécifiée lors de l'enregistrement."
256
 
257
- #: contact_form.php:1089
258
- msgid "The user's email address:"
 
259
  msgstr "Utiliser l'e-mail du compte WordPress&nbsp;:"
260
 
261
- #: contact_form.php:1093
262
  msgid "Select a username"
263
  msgstr "Choisir un nom d'utilisateur"
264
 
265
- #: contact_form.php:1106
 
266
  msgid ""
267
- "Enter a username of the person who should get the messages from the contact "
268
  "form."
269
  msgstr ""
270
  "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le "
271
  "formulaire de contact."
272
 
273
- #: contact_form.php:1110
274
- msgid "Use this email address:"
 
275
  msgstr "Utiliser cette adresse e-mail&nbsp;:"
276
 
277
- #: contact_form.php:1114
278
- msgid "Enter the email address you want the messages forwarded to."
 
279
  msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages."
280
 
281
- #: contact_form.php:1121 contact_form.php:1487 contact_form.php:1679
282
- #: contact_form.php:1767 contact_form.php:3119
283
  msgid "Close"
284
  msgstr "Fermer"
285
 
286
- #: contact_form.php:1125
287
- msgid "Add department selectbox to the contact form:"
 
288
  msgstr ""
289
  "Ajouter la liste déroulante pour le département dans le formulaire de "
290
  "contact&nbsp;:"
291
 
292
- #: contact_form.php:1133 contact_form.php:1496 contact_form.php:1698
293
- #: contact_form.php:1973
294
  msgid "If you upgrade to Pro version all your settings will be saved."
295
  msgstr ""
296
  "Si vous passez à la version Pro, tous ces paramètres seront enregistrés."
297
 
298
- #: contact_form.php:1140 contact_form.php:1407 contact_form.php:1501
299
- #: contact_form.php:1705 contact_form.php:1980
300
  msgid "Unlock premium options by upgrading to Pro version"
301
  msgstr "Débloquer les options premium en migrant vers la version PRO."
302
 
303
- #: contact_form.php:1143 contact_form.php:1410 contact_form.php:1504
304
- #: contact_form.php:1708 contact_form.php:1983 contact_form.php:3329
305
  msgid "Learn More"
306
  msgstr "Lire la suite"
307
 
308
- #: contact_form.php:1151
309
  msgid "Save emails to the database"
310
  msgstr "Enregistrer les e-mails dans la base de données"
311
 
312
- #: contact_form.php:1156
313
  msgid "Using"
314
  msgstr "Utilisant"
315
 
316
- #: contact_form.php:1159 contact_form.php:1163
317
- msgid "Using Contact Form to DB by BestWebSoft"
318
- msgstr "en utilisant l'extension Contact Form to DB de BestWebSoft"
 
319
 
320
- #: contact_form.php:1159
 
 
 
 
 
 
 
321
  msgid "Activate"
322
  msgstr "Activé"
323
 
324
- #: contact_form.php:1163
 
325
  msgid "Download"
326
  msgstr "Téléchargement"
327
 
328
- #: contact_form.php:1173
329
- msgid "What to use?"
330
- msgstr "Quelle méthode d’envoi ?"
331
 
332
- #: contact_form.php:1178
333
  msgid "Wp-mail"
334
  msgstr "Wp-mail"
335
 
336
- #: contact_form.php:1180
337
  msgid "You can use the Wordpress wp_mail function for mailing"
338
  msgstr ""
339
  "Pour envoyer le courriel, vous pouvez utiliser la fonction wp_mail de "
340
  "WordPress "
341
 
342
- #: contact_form.php:1183
343
  msgid "Mail"
344
  msgstr "E-mail"
345
 
346
- #: contact_form.php:1185
347
  msgid "You can use the PHP mail function for mailing"
348
  msgstr ""
349
  "Pour envoyer le courriel, vous pouvez utiliser la fonction wp_mail de "
350
  "WordPress "
351
 
352
- #: contact_form.php:1190
353
  msgid "'FROM' field"
354
  msgstr "Champ 'From'"
355
 
356
- #: contact_form.php:1192 contact_form.php:1251 contact_form.php:1839
357
- #: contact_form.php:2810 contact_form.php:2846
358
- msgid "Name"
359
- msgstr "Nom"
360
-
361
- #: contact_form.php:1195
362
  msgid "User name"
363
  msgstr "Nom de l’utilisateur"
364
 
365
- #: contact_form.php:1197
366
  msgid ""
367
  "The name of the user who fills the form will be used in the field 'From'."
368
  msgstr ""
369
  "Dans le champ 'FROM' du courriel, il sera utilisé l'adresse e-mail de "
370
  "l’utilisateur qui rempli le formulaire."
371
 
372
- #: contact_form.php:1202 contact_form.php:2821 contact_form.php:2853
373
  msgid "Email"
374
  msgstr "E-mail"
375
 
376
- #: contact_form.php:1205
377
  msgid "User email"
378
  msgstr "E-mail de l’utilisateur"
379
 
380
- #: contact_form.php:1207
381
  msgid ""
382
  "The email address of the user who fills the form will be used in the field "
383
  "'From'."
@@ -385,7 +389,7 @@ msgstr ""
385
  "Dans le champ 'FROM' du courriel, il sera utilisé l'adresse e-mail de "
386
  "l’utilisateur qui rempli le formulaire."
387
 
388
- #: contact_form.php:1210
389
  msgid ""
390
  "If this option is changed, email messages may be moved to the spam folder or "
391
  "email delivery failures may occur."
@@ -393,51 +397,51 @@ msgstr ""
393
  "Si cette option est modifiée, les courriels pourront se retrouver classer "
394
  "dans le dossier spam ou bien une erreur d'acheminement peut survenir."
395
 
396
- #: contact_form.php:1216
397
  msgid "Required symbol"
398
  msgstr "Symbole obligatoire"
399
 
400
- #: contact_form.php:1226
401
  msgid "Fields"
402
  msgstr "Champs"
403
 
404
- #: contact_form.php:1227 contact_form.php:1254 contact_form.php:1281
405
- #: contact_form.php:1301 contact_form.php:1340 contact_form.php:1425
406
  msgid "Used"
407
  msgstr "Utilisé"
408
 
409
- #: contact_form.php:1228 contact_form.php:1243 contact_form.php:1258
410
- #: contact_form.php:1285 contact_form.php:1305 contact_form.php:1318
411
- #: contact_form.php:1344 contact_form.php:1357 contact_form.php:1381
412
  msgid "Required"
413
  msgstr "Obligatoire"
414
 
415
- #: contact_form.php:1230 contact_form.php:1263 contact_form.php:1323
416
- #: contact_form.php:1362 contact_form.php:1386
417
  msgid "Visible"
418
  msgstr "Visible"
419
 
420
- #: contact_form.php:1231 contact_form.php:1267 contact_form.php:1327
421
- #: contact_form.php:1366 contact_form.php:1390
422
  msgid "Disabled for editing"
423
  msgstr "Non actif pour l'édition"
424
 
425
- #: contact_form.php:1232 contact_form.php:1291 contact_form.php:1370
426
- #: contact_form.php:1394
427
  msgid "Field's default value"
428
  msgstr "Valeur par défaut du champ"
429
 
430
- #: contact_form.php:1239
431
  msgid "Department selectbox"
432
  msgstr "Liste déroulante des localisations"
433
 
434
- #: contact_form.php:1271
435
  msgid "Use User's name as a default value if the user is logged in."
436
  msgstr ""
437
  "Utiliser le nom de l'utilisateur comme valeur par défaut si un utilisateur "
438
  "est connecté."
439
 
440
- #: contact_form.php:1272 contact_form.php:1332
441
  msgid ""
442
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
443
  "in users."
@@ -445,135 +449,96 @@ msgstr ""
445
  "'Visible' et 'Inactif' pour modifier les options ne seront appliqués qu'aux "
446
  "utilisateurs connectés."
447
 
448
- #: contact_form.php:1278
449
  msgid "Location selectbox"
450
  msgstr "Liste déroulante des localisations"
451
 
452
- #: contact_form.php:1298 contact_form.php:1844 contact_form.php:2816
453
- #: contact_form.php:2850
454
- msgid "Address"
455
- msgstr "Adresse"
456
-
457
- #: contact_form.php:1314
458
- msgid "Email Address"
459
- msgstr "Adresse e-mail"
460
-
461
- #: contact_form.php:1331
462
  msgid "Use User's email as a default value if the user is logged in."
463
  msgstr ""
464
  "Utiliser l'adresse e-mail de l'utilisateur comme valeur par défaut si un "
465
  "utilisateur est connecté."
466
 
467
- #: contact_form.php:1337
468
- msgid "Phone number"
469
- msgstr "Téléphone"
470
-
471
- #: contact_form.php:1353 contact_form.php:1859 contact_form.php:2831
472
- #: contact_form.php:2859
473
- msgid "Subject"
474
- msgstr "Sujet"
475
-
476
- #: contact_form.php:1377 contact_form.php:1863 contact_form.php:2834
477
- #: contact_form.php:2861
478
- msgid "Message"
479
- msgstr "Message"
480
-
481
- #: contact_form.php:1418
482
  msgid "Attachment block"
483
  msgstr "Bloc pièce jointe"
484
 
485
- #: contact_form.php:1420
486
  msgid "Users can attach the following file formats"
487
  msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
488
 
489
- #: contact_form.php:1438
490
  msgid "Add to the form"
491
  msgstr "Ajouter au formulaire"
492
 
493
- #: contact_form.php:1443
494
  msgid "Tips below the Attachment"
495
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
496
 
497
- #: contact_form.php:1452
498
  msgid "'Send me a copy' block"
499
  msgstr "Afficher le bloc \"M'envoyer une copie\""
500
 
501
- #: contact_form.php:1464
502
- msgid "Activate Subscriber"
503
- msgstr "Activer l'enregistrement"
504
-
505
- #: contact_form.php:1468
506
- msgid "Download Subscriber"
507
- msgstr "Télécharger l'extension Subscriber"
508
-
509
- #: contact_form.php:1477
510
- msgid "Activate Captcha"
511
- msgstr "Activé le captcha"
512
-
513
- #: contact_form.php:1481
514
- msgid "Download Captcha"
515
- msgstr "Télécharger le captcha"
516
-
517
- #: contact_form.php:1491
518
  msgid "Agreement checkbox"
519
  msgstr "Case à cocher pour valider le formulaire"
520
 
521
- #: contact_form.php:1491
522
  msgid "Required checkbox for submitting the form"
523
  msgstr "Boite à cocher obligatoire pour la validation du formulaire."
524
 
525
- #: contact_form.php:1492
526
  msgid "Optional checkbox"
527
  msgstr "Boite à cocher optionnelle"
528
 
529
- #: contact_form.php:1492
530
  msgid "Optional checkbox, the results of which will be displayed in email"
531
  msgstr "Boite à cocher optionnelle, le résultat sera affiché dans le courriel"
532
 
533
- #: contact_form.php:1513
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 du courriel"
536
 
537
- #: contact_form.php:1519
538
  msgid "Email in HTML format sending"
539
  msgstr "Courriel au format HTML"
540
 
541
- #: contact_form.php:1523
542
  msgid "Display additional info in the email"
543
  msgstr "Afficher les informations complémentaires dans le courriel"
544
 
545
- #: contact_form.php:1529
546
  msgid "Sent from (IP address)"
547
  msgstr "Envoyé de (adresse IP)"
548
 
549
- #: contact_form.php:1529
550
  msgid "Example: Sent from (IP address):\t127.0.0.1"
551
  msgstr "Exemple: Envoyé de (adresse IP)&nbsp;:\t127.0.0.1"
552
 
553
- #: contact_form.php:1530 contact_form.php:2783 contact_form.php:2785
554
  msgid "Date/Time"
555
  msgstr "Date/Heure"
556
 
557
- #: contact_form.php:1530
558
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
559
  msgstr "Exemple: Date/Heure&nbsp;:\tAoût 19, 2013 8:50pm"
560
 
561
- #: contact_form.php:1531 contact_form.php:2789 contact_form.php:2791
562
  msgid "Sent from (referer)"
563
  msgstr "Envoyer de (référence)"
564
 
565
- #: contact_form.php:1531
566
  msgid ""
567
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
568
  msgstr ""
569
  "Exemple&nbsp;: Envoyer de (referer) :\thttp://bestwebsoft.com/contacts/"
570
  "contact-us/"
571
 
572
- #: contact_form.php:1532 contact_form.php:2795 contact_form.php:2797
573
  msgid "Using (user agent)"
574
  msgstr "Depuis (navigateur)"
575
 
576
- #: contact_form.php:1532
577
  msgid ""
578
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
579
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -582,142 +547,142 @@ msgstr ""
582
  "WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 "
583
  "Safari/537.36"
584
 
585
- #: contact_form.php:1537
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:1546
590
  msgid "Add a language"
591
  msgstr "Ajouter une langue"
592
 
593
- #: contact_form.php:1550
594
  msgid "Change the names of the contact form fields and error messages"
595
  msgstr ""
596
  "Modifier le texte pour les champs du formulaire de contact et les messages "
597
  "d'erreur"
598
 
599
- #: contact_form.php:1555 contact_form.php:1642 contact_form.php:1887
600
- #: contact_form.php:1892 contact_form.php:1902 contact_form.php:1907
601
- #: contact_form.php:1912 contact_form.php:1917 contact_form.php:1927
602
- #: contact_form.php:1932 contact_form.php:1941 contact_form.php:1955
603
- #: contact_form.php:1960 contact_form.php:1965
604
  msgid "Default"
605
  msgstr "Défaut"
606
 
607
- #: contact_form.php:1563 contact_form.php:1597
608
  msgid "click to expand/hide the list"
609
  msgstr "cliquer pour voir/cacher la liste"
610
 
611
- #: contact_form.php:1572 contact_form.php:1606
612
  msgid "Tips below the Attachment block"
613
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
614
 
615
- #: contact_form.php:1575 contact_form.php:1609
616
  msgid "Error message for the Name field"
617
  msgstr "Message d'erreur pour le champ nom"
618
 
619
- #: contact_form.php:1576 contact_form.php:1610
620
  msgid "Error message for the Address field"
621
  msgstr "Message d'erreur pour le champ Adresse"
622
 
623
- #: contact_form.php:1577 contact_form.php:1611
624
  msgid "Error message for the Email field"
625
  msgstr "Message d'erreur pour le champ e-mail"
626
 
627
- #: contact_form.php:1578 contact_form.php:1612
628
  msgid "Error message for the Phone field"
629
  msgstr "Message d'erreur pour le champ téléphone"
630
 
631
- #: contact_form.php:1579 contact_form.php:1613
632
  msgid "Error message for the Subject field"
633
  msgstr "Message d'erreur pour le champ sujet"
634
 
635
- #: contact_form.php:1580 contact_form.php:1614
636
  msgid "Error message for the Message field"
637
  msgstr "Message d'erreur pour le champ message"
638
 
639
- #: contact_form.php:1581 contact_form.php:1615
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:1582 contact_form.php:1616
644
  msgid ""
645
  "Error message while uploading a file for the Attachment field to the server"
646
  msgstr ""
647
  "Message d'erreur pour le champ fichier joint (problème d'envoi vers le "
648
  "serveur)"
649
 
650
- #: contact_form.php:1583 contact_form.php:1617
651
  msgid "Error message while moving the file for the Attachment field"
652
  msgstr "Message d'erreur pour le champ fichier joint (déplacement du fichier)"
653
 
654
- #: contact_form.php:1584 contact_form.php:1618
655
  msgid "Error message when file size limit for the Attachment field is exceeded"
656
  msgstr ""
657
  "Message d'erreur pour le champ fichier joint (taille limite du fichier "
658
  "atteinte)"
659
 
660
- #: contact_form.php:1585 contact_form.php:1619
661
  msgid "Error message for the Captcha field"
662
  msgstr "Message d'erreur pour le captcha"
663
 
664
- #: contact_form.php:1586 contact_form.php:1620
665
  msgid "Error message for the whole form"
666
  msgstr "Message d'erreur demandant à compléter les champs manquants"
667
 
668
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
669
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
670
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
671
- #: contact_form.php:3179
672
  msgid "Use shortcode"
673
  msgstr "Utiliser le code court"
674
 
675
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
676
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
677
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
678
- #: contact_form.php:3179
679
  msgid "for this language"
680
  msgstr "pour cette langue"
681
 
682
- #: contact_form.php:1633
683
  msgid "Use the changed names of the contact form fields in the email"
684
  msgstr "Utiliser les noms des champs modifiés dans les courriels"
685
 
686
- #: contact_form.php:1639
687
  msgid "Action after email is sent"
688
  msgstr "Action après l'envoie du courriel"
689
 
690
- #: contact_form.php:1641
691
  msgid "Display text"
692
  msgstr "Afficher le texte"
693
 
694
- #: contact_form.php:1650 contact_form.php:1660
695
  msgid "Text"
696
  msgstr "Texte"
697
 
698
- #: contact_form.php:1671
699
  msgid "Redirect to the page"
700
  msgstr "Rediriger vers la page"
701
 
702
- #: contact_form.php:1672
703
  msgid "Url"
704
  msgstr "Url"
705
 
706
- #: contact_form.php:1683
707
  msgid "Add field 'Reply-To' to the email header"
708
  msgstr "Ajouter le champ 'Répondre à/Reply-To' dans l'entête du courriel"
709
 
710
- #: contact_form.php:1685
711
  msgid "Field 'Reply-To' will be initialized by user email"
712
  msgstr ""
713
  "Le champ 'Répondre à/Reply-To' sera rempli avec l'adresse e-mail de "
714
  "l'utilisateur"
715
 
716
- #: contact_form.php:1689
717
  msgid "Auto Response"
718
  msgstr "Réponse automatique"
719
 
720
- #: contact_form.php:1693
721
  #, php-format
722
  msgid ""
723
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -728,11 +693,11 @@ msgstr ""
728
  "%%MESSAGE%% pour afficher des données du champ message, de même %%SITENAME%% "
729
  "pour afficher le nom du site."
730
 
731
- #: contact_form.php:1718 contact_form.php:2213
732
  msgid "Save Changes"
733
  msgstr "Enregistrer les modifications"
734
 
735
- #: contact_form.php:1731
736
  #, php-format
737
  msgid ""
738
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
@@ -740,195 +705,196 @@ msgstr ""
740
  "Merci d'activer le java-script pour modifier les options '%s', '%s' ainsi "
741
  "que pour trier les champs."
742
 
743
- #: contact_form.php:1744
 
 
 
 
 
 
 
 
744
  msgid "One column"
745
  msgstr "Une colonne"
746
 
747
- #: contact_form.php:1747
748
  msgid "Two columns"
749
  msgstr "Deux colonnes"
750
 
751
- #: contact_form.php:1756 contact_form.php:1775 contact_form.php:1793
752
- #: contact_form.php:1808
753
  msgid "Left"
754
  msgstr "Gauche"
755
 
756
- #: contact_form.php:1759 contact_form.php:1781 contact_form.php:1796
757
- #: contact_form.php:1814
758
  msgid "Right"
759
  msgstr "Droite"
760
 
761
- #: contact_form.php:1771
762
  msgid "Form align"
763
  msgstr "Alignement des champs"
764
 
765
- #: contact_form.php:1778 contact_form.php:1811
766
  msgid "Center"
767
  msgstr "Centre"
768
 
769
- #: contact_form.php:1786
770
  msgid "Labels position"
771
  msgstr "Position des textes"
772
 
773
- #: contact_form.php:1790
774
  msgid "Top"
775
  msgstr "Haut"
776
 
777
- #: contact_form.php:1799
778
  msgid "Bottom"
779
  msgstr "Bas"
780
 
781
- #: contact_form.php:1804
782
  msgid "Labels align"
783
  msgstr "Alignement des textes"
784
 
785
- #: contact_form.php:1819
786
  msgid "Errors output"
787
  msgstr "Affichage des erreurs"
788
 
789
- #: contact_form.php:1822
790
  msgid "Display error messages"
791
  msgstr "Afficher les messages d'erreur"
792
 
793
- #: contact_form.php:1823
794
  msgid "Color of the input field errors."
795
  msgstr "Mettre en couleur les champs ayant des erreurs"
796
 
797
- #: contact_form.php:1824
798
  msgid "Display error messages & color of the input field errors"
799
  msgstr ""
800
  "Afficher les messages d'erreur et mettre en couleur les champs ayant des "
801
  "erreurs"
802
 
803
- #: contact_form.php:1829
804
  msgid "Add placeholder to the input blocks"
805
  msgstr "Ajouter la localisation dans le bloc de saisie"
806
 
807
- #: contact_form.php:1835
808
  msgid "Add tooltips"
809
  msgstr "Ajouter les conseils"
810
 
811
- #: contact_form.php:1849
812
  msgid "Email address"
813
  msgstr "Adresse e-mail"
814
 
815
- #: contact_form.php:1854
816
  msgid "Phone Number"
817
  msgstr "Téléphone"
818
 
819
- #: contact_form.php:1868
820
- msgid "Attachment"
821
- msgstr "Pièce jointe"
822
-
823
- #: contact_form.php:1880
824
  msgid "Style options"
825
  msgstr "Options de style"
826
 
827
- #: contact_form.php:1884
828
  msgid "Text color"
829
  msgstr "Couleur du texte"
830
 
831
- #: contact_form.php:1889
832
  msgid "Label text color"
833
  msgstr "Couleur des textes des intitulés"
834
 
835
- #: contact_form.php:1894
836
  msgid "Placeholder color"
837
  msgstr "Couleur pour la localisation"
838
 
839
- #: contact_form.php:1899
840
  msgid "Errors color"
841
  msgstr "Couleur pour les erreurs"
842
 
843
- #: contact_form.php:1904
844
  msgid "Error text color"
845
  msgstr "Couleur pour le texte des erreurs"
846
 
847
- #: contact_form.php:1909
848
  msgid "Background color of the input field errors"
849
  msgstr "Couleur de fond pour les erreurs de saisie dans les champs"
850
 
851
- #: contact_form.php:1914
852
  msgid "Border color of the input field errors"
853
  msgstr "Couleur de la bordure pour les erreurs de saisie dans les champs"
854
 
855
- #: contact_form.php:1919
856
  msgid "Placeholder color of the input field errors"
857
  msgstr "Couleur pour la localisation lors d'une erreur de saisie du champ"
858
 
859
- #: contact_form.php:1924
860
  msgid "Input fields"
861
  msgstr "Champs de saisie"
862
 
863
- #: contact_form.php:1929
864
  msgid "Input fields background color"
865
  msgstr "Couleur de fond pour les champs de saisie"
866
 
867
- #: contact_form.php:1934
868
  msgid "Text fields color"
869
  msgstr "Couleur pour les textes des champs de saisie"
870
 
871
- #: contact_form.php:1938
872
  msgid "Border width in px, numbers only"
873
  msgstr "Largeur des bordures en px, nombre seulement"
874
 
875
- #: contact_form.php:1943 contact_form.php:1967
876
  msgid "Border color"
877
  msgstr "Couleur des bordures"
878
 
879
- #: contact_form.php:1948
880
  msgid "Submit button"
881
  msgstr "Bouton Envoyer"
882
 
883
- #: contact_form.php:1952
884
  msgid "Width in px, numbers only"
885
  msgstr "Largeur en px, nombre seulement"
886
 
887
- #: contact_form.php:1957
888
  msgid "Button color"
889
  msgstr "Couleur du bouton"
890
 
891
- #: contact_form.php:1962
892
  msgid "Button text color"
893
  msgstr "Couleur du texte du bouton"
894
 
895
- #: contact_form.php:1994
896
  msgid "Contact Form | Preview"
897
  msgstr "Formulaire de Contact | Prévisualisation"
898
 
899
- #: contact_form.php:1995
900
  msgid "Drag the necessary field to sort fields."
901
  msgstr "Déposer les champs nécessaires dans la liste des tris."
902
 
903
- #: contact_form.php:2200
 
904
  msgid ""
905
  "If you would like to add the Contact Form to your website, just copy and "
906
- "paste this shortcode to your post or page or widget:"
907
  msgstr ""
908
  "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez "
909
  "juste ce code dans un article ou sur une page ou un widget&nbsp;:"
910
 
911
- #: contact_form.php:2297
912
  msgid "Sorry, email message could not be delivered."
913
  msgstr "Désolé, votre courriel n'a pas pu être envoyé."
914
 
915
- #: contact_form.php:2777 contact_form.php:2779
916
  msgid "Sent from (ip address)"
917
  msgstr "Envoyé de (adresse IP)"
918
 
919
- #: contact_form.php:2804
920
  msgid "Contact from"
921
  msgstr "Contact de"
922
 
923
- #: contact_form.php:2826 contact_form.php:2856
924
- msgid "Phone"
925
- msgstr "Téléphone"
926
-
927
- #: contact_form.php:2837 contact_form.php:2863
928
  msgid "Site"
929
  msgstr "Site"
930
 
931
- #: contact_form.php:2956
932
  msgid ""
933
  "If you can see this MIME, it means that the MIME type is not supported by "
934
  "your email client!"
@@ -936,23 +902,23 @@ msgstr ""
936
  "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de "
937
  "MIME !"
938
 
939
- #: contact_form.php:3039
940
  msgid "FAQ"
941
  msgstr "FAQ"
942
 
943
- #: contact_form.php:3040
944
  msgid "Support"
945
  msgstr "Support"
946
 
947
- #: contact_form.php:3089
948
  msgid "Are you sure that you want to delete this language data?"
949
  msgstr "Êtes vous sûr de vouloir supprimer cette langue ?"
950
 
951
- #: contact_form.php:3110
952
  msgid "Add multiple forms"
953
  msgstr "Ajouter plusieurs formulaires"
954
 
955
- #: contact_form.php:3110
956
  msgid ""
957
  "Install Contact Form Multi plugin to create unlimited number of contact "
958
  "forms."
@@ -960,30 +926,83 @@ msgstr ""
960
  "Installer l'extension 'Contact Form Multi' pour créer un nombre infini de "
961
  "formulaires de contact."
962
 
963
- #: contact_form.php:3115
964
  msgid "Learn more"
965
  msgstr "Lire la suite"
966
 
967
- #: contact_form.php:3320
968
  msgid "Close notice"
969
  msgstr "Fermer l'avertissement"
970
 
971
- #: contact_form.php:3325
972
  msgid "allows to store your messages to the database."
973
  msgstr "permet d'enregistrer les messages dans la base de données."
974
 
975
- #: contact_form.php:3326
976
  msgid "Manage messages that have been sent from your website."
977
  msgstr "Gérer les messages qui ont été envoyés depuis votre site."
978
 
979
- #: contact_form.php:3384
980
  msgid "Contact form"
981
  msgstr "Formulaire de contact"
982
 
983
- #: contact_form.php:3397 contact_form.php:3407
984
  msgid "Language"
985
  msgstr "Langue"
986
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
987
  #~ msgid "Not set"
988
  #~ msgstr "Not set"
989
 
@@ -1301,9 +1320,6 @@ msgstr "Langue"
1301
  #~ msgid "Please, go to"
1302
  #~ msgstr "Merci d’aller à"
1303
 
1304
- #~ msgid "the setting page"
1305
- #~ msgstr "Options supplémentaires"
1306
-
1307
  #~ msgid "You will be redirected automatically in 5 seconds."
1308
  #~ msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
1309
 
@@ -1492,9 +1508,6 @@ msgstr "Langue"
1492
  #~ msgid "Suggest a Feature"
1493
  #~ msgstr "Suggérer une fonctionnalité"
1494
 
1495
- #~ msgid "Notice"
1496
- #~ msgstr "Avertissement"
1497
-
1498
  #~ msgid "The plugin's settings have been changed."
1499
  #~ msgstr "Les paramètres de l'extension ont été modifiés."
1500
 
2
  msgstr ""
3
  "Project-Id-Version: contact-form-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-12 17:22+0300\n"
6
+ "PO-Revision-Date: 2016-07-12 17:22+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
18
  "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: contact_form.php:37 contact_form.php:1118
22
  msgid "Contact Form Settings"
23
  msgstr "Options du formulaire de contact"
24
 
26
  msgid "Contact Form"
27
  msgstr "Formulaire de contact"
28
 
29
+ #: contact_form.php:167 contact_form.php:1294 contact_form.php:1353
30
+ #: contact_form.php:1746 contact_form.php:1784 contact_form.php:2033
31
+ #: contact_form.php:3113 contact_form.php:3159
32
+ msgid "Name"
33
+ msgstr "Nom"
34
 
35
+ #: contact_form.php:168 contact_form.php:1400 contact_form.php:1747
36
+ #: contact_form.php:1785 contact_form.php:2038 contact_form.php:3120
37
+ #: contact_form.php:3165
38
+ msgid "Address"
39
+ msgstr "Adresse"
40
 
41
+ #: contact_form.php:169 contact_form.php:1416 contact_form.php:1748
42
+ #: contact_form.php:1786
43
+ msgid "Email Address"
44
+ msgstr "Adresse e-mail"
45
 
46
+ #: contact_form.php:170 contact_form.php:1439 contact_form.php:1749
47
+ #: contact_form.php:1787
48
+ msgid "Phone number"
49
+ msgstr "Téléphone"
50
 
51
+ #: contact_form.php:171 contact_form.php:1455 contact_form.php:1750
52
+ #: contact_form.php:1788 contact_form.php:2053 contact_form.php:3131
53
+ #: contact_form.php:3174
54
+ msgid "Subject"
55
+ msgstr "Sujet"
56
 
57
+ #: contact_form.php:172 contact_form.php:1479 contact_form.php:1751
58
+ #: contact_form.php:1789 contact_form.php:2057 contact_form.php:3136
59
+ #: contact_form.php:3178
60
+ msgid "Message"
61
+ msgstr "Message"
62
 
63
+ #: contact_form.php:173 contact_form.php:1752 contact_form.php:1790
64
+ #: contact_form.php:2062
65
+ msgid "Attachment"
66
+ msgstr "Pièce jointe"
67
 
68
+ #: contact_form.php:174
69
  msgid ""
70
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
71
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
74
  "TIFF, BMP, AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, "
75
  "MP3, PPT."
76
 
77
+ #: contact_form.php:175 contact_form.php:1754 contact_form.php:1792
78
  msgid "Send me a copy"
79
  msgstr "M'envoyer une copie"
80
 
81
+ #: contact_form.php:176 contact_form.php:1755 contact_form.php:1793
82
  msgid "Submit"
83
  msgstr "Envoyer"
84
 
85
+ #: contact_form.php:177
86
  msgid "Your name is required."
87
  msgstr "Un nom est obligatoire."
88
 
89
+ #: contact_form.php:178
90
  msgid "Address is required."
91
  msgstr "Une adresse est obligatoire."
92
 
93
+ #: contact_form.php:179
94
  msgid "A valid email address is required."
95
  msgstr "Une adresse e-mail valide est obligatoire."
96
 
97
+ #: contact_form.php:180
98
  msgid "Phone number is required."
99
  msgstr "Le numéro de téléphone est obligatoire."
100
 
101
+ #: contact_form.php:181
102
  msgid "Subject is required."
103
  msgstr "Le sujet est obligatoire."
104
 
105
+ #: contact_form.php:182
106
  msgid "Message text is required."
107
  msgstr "Un message est obligatoire."
108
 
109
+ #: contact_form.php:183
110
  msgid "File format is not valid."
111
  msgstr "Le type de pièce jointe n'est pas valide."
112
 
113
+ #: contact_form.php:184
114
  msgid "File upload error."
115
  msgstr "Erreur de chargement du fichier."
116
 
117
+ #: contact_form.php:185
118
  msgid "The file could not be uploaded."
119
  msgstr "Le fichier n'a pas pu être envoyé."
120
 
121
+ #: contact_form.php:186
122
  msgid "This file is too large."
123
  msgstr "Le fichier est trop volumineux."
124
 
125
+ #: contact_form.php:187
126
  msgid "Please fill out the CAPTCHA."
127
  msgstr "Merci de compléter le CAPTCHA."
128
 
129
+ #: contact_form.php:188
130
  msgid "Please make corrections below and try again."
131
  msgstr "Merci de faire les corrections suivantes et de réessayer."
132
 
133
+ #: contact_form.php:190
134
  msgid "Thank you for contacting us."
135
  msgstr "Merci de nous avoir contacté."
136
 
137
+ #: contact_form.php:824 contact_form.php:1076
138
  msgid "Settings saved."
139
  msgstr "Options enregistrées."
140
 
141
+ #: contact_form.php:1021
142
  msgid ""
143
  "Email 'FROM' field option was changed, which may cause email messages being "
144
  "moved to the spam folder or email delivery failures."
147
  "entraîner un classement des messages dans les dossiers spam ou bien une "
148
  "erreur d'acheminement peut survenir."
149
 
150
+ #: contact_form.php:1031
151
  msgid ""
152
  "If the 'Redirect to page' option is selected then the URL field should be in "
153
  "the following format"
155
  "Si l’option 'Rediriger vers la page' est positionnée, alors le champ Url "
156
  "doit être rempli avec le format suivant"
157
 
158
+ #: contact_form.php:1038
159
  msgid "Such user does not exist."
160
  msgstr "Cet utilisateur est inconnu."
161
 
162
+ #: contact_form.php:1048
163
  msgid ""
164
  "Please enter a valid email address in the 'Use this email address' field."
165
  msgstr ""
166
  "Merci de saisir une adresse e-mail valide pour le champ 'Utiliser cette "
167
  "adresse e-mail'."
168
 
169
+ #: contact_form.php:1056
170
  msgid "Please enter a valid email address in the 'FROM' field."
171
  msgstr "Merci de saisir une adresse e-mail valide pour le champ 'FROM'."
172
 
173
+ #: contact_form.php:1078
174
  msgid "Settings are not saved."
175
  msgstr "Paramètres non enregistrées."
176
 
177
+ #: contact_form.php:1115
178
  msgid "All plugin settings were restored."
179
  msgstr "Remettre les valeurs par défaut des paramètres de l'extension."
180
 
181
+ #: contact_form.php:1120
182
  msgid "How to Use Step-by-step Instruction"
183
  msgstr "Mode d'emploi pas à pas"
184
 
185
+ #: contact_form.php:1123 contact_form.php:3351 contact_form.php:3365
186
  msgid "Settings"
187
  msgstr "Réglages"
188
 
189
+ #: contact_form.php:1124
190
  msgid "Additional settings"
191
  msgstr "Options supplémentaires"
192
 
193
+ #: contact_form.php:1125
194
  msgid "Appearance"
195
  msgstr "Aspect"
196
 
197
+ #: contact_form.php:1126
198
  #, fuzzy
199
  msgid "Custom code"
200
  msgstr "Personnaliser"
201
 
202
+ #: contact_form.php:1127
203
  msgid "Go PRO"
204
  msgstr "Choisir la version PRO"
205
 
206
+ #: contact_form.php:1136
207
+ msgid "Notice"
208
+ msgstr "Avertissement"
 
 
 
 
 
 
 
 
 
 
 
 
209
 
210
+ #: contact_form.php:1140
 
 
 
 
211
  msgid "NEW_FORM"
212
  msgstr "Nouveau Formulaire"
213
 
214
+ #: contact_form.php:1141
215
  msgid ""
216
  "If you want to create multiple contact forms, please install the Contact "
217
  "Form Multi plugin."
219
  "Si vous voulez créer plusieurs formulaire de contact, merci d'installer "
220
  "l'extension 'Contact Form Multi'"
221
 
222
+ #: contact_form.php:1150
223
  #, php-format
224
  msgid ""
225
  "If you would like to add a Contact Form to your page or post, please use %s "
228
  "Si vous souhaitez ajouter un formulaire de contact à votre page ou votre "
229
  "article, merci d’utiliser le bouton %s"
230
 
231
+ #: contact_form.php:1156
232
  #, php-format
233
  msgid ""
234
  "You can add the Contact Form to your page or post by clicking on %s button "
241
  "bouton n'est pas affiché, merci d'utiliser le code court %s ou %s où * est à "
242
  "remplacer par la langue du formulaire de contact."
243
 
244
+ #: contact_form.php:1165
245
  msgid ""
246
  "If you leave the fields empty, the messages will be sent to the email "
247
  "address specified during registration."
249
  "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à "
250
  "l'adresse spécifiée lors de l'enregistrement."
251
 
252
+ #: contact_form.php:1168
253
+ #, fuzzy
254
+ msgid "The user's email address"
255
  msgstr "Utiliser l'e-mail du compte WordPress&nbsp;:"
256
 
257
+ #: contact_form.php:1172
258
  msgid "Select a username"
259
  msgstr "Choisir un nom d'utilisateur"
260
 
261
+ #: contact_form.php:1185
262
+ #, fuzzy
263
  msgid ""
264
+ "Select a username of the person who should get the messages from the contact "
265
  "form."
266
  msgstr ""
267
  "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le "
268
  "formulaire de contact."
269
 
270
+ #: contact_form.php:1189
271
+ #, fuzzy
272
+ msgid "Use this email address"
273
  msgstr "Utiliser cette adresse e-mail&nbsp;:"
274
 
275
+ #: contact_form.php:1193
276
+ #, fuzzy
277
+ msgid "Enter the email address for receiving messages"
278
  msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages."
279
 
280
+ #: contact_form.php:1200 contact_form.php:1663 contact_form.php:1873
281
+ #: contact_form.php:1961 contact_form.php:3446
282
  msgid "Close"
283
  msgstr "Fermer"
284
 
285
+ #: contact_form.php:1204
286
+ #, fuzzy
287
+ msgid "Add department selectbox to the contact form"
288
  msgstr ""
289
  "Ajouter la liste déroulante pour le département dans le formulaire de "
290
  "contact&nbsp;:"
291
 
292
+ #: contact_form.php:1212 contact_form.php:1672 contact_form.php:1892
293
+ #: contact_form.php:2167
294
  msgid "If you upgrade to Pro version all your settings will be saved."
295
  msgstr ""
296
  "Si vous passez à la version Pro, tous ces paramètres seront enregistrés."
297
 
298
+ #: contact_form.php:1219 contact_form.php:1509 contact_form.php:1677
299
+ #: contact_form.php:1899 contact_form.php:2174
300
  msgid "Unlock premium options by upgrading to Pro version"
301
  msgstr "Débloquer les options premium en migrant vers la version PRO."
302
 
303
+ #: contact_form.php:1222 contact_form.php:1512 contact_form.php:1680
304
+ #: contact_form.php:1902 contact_form.php:2177 contact_form.php:3672
305
  msgid "Learn More"
306
  msgstr "Lire la suite"
307
 
308
+ #: contact_form.php:1230
309
  msgid "Save emails to the database"
310
  msgstr "Enregistrer les e-mails dans la base de données"
311
 
312
+ #: contact_form.php:1241 contact_form.php:1255 contact_form.php:1262
313
  msgid "Using"
314
  msgstr "Utilisant"
315
 
316
+ #: contact_form.php:1247 contact_form.php:1572 contact_form.php:1605
317
+ #: contact_form.php:1640
318
+ msgid "Please activate the appropriate option on"
319
+ msgstr ""
320
 
321
+ #: contact_form.php:1250 contact_form.php:1575 contact_form.php:1608
322
+ #: contact_form.php:1643
323
+ #, fuzzy
324
+ msgid "settings page"
325
+ msgstr "Options supplémentaires"
326
+
327
+ #: contact_form.php:1256 contact_form.php:1581 contact_form.php:1615
328
+ #: contact_form.php:1651
329
  msgid "Activate"
330
  msgstr "Activé"
331
 
332
+ #: contact_form.php:1263 contact_form.php:1587 contact_form.php:1621
333
+ #: contact_form.php:1656
334
  msgid "Download"
335
  msgstr "Téléchargement"
336
 
337
+ #: contact_form.php:1275
338
+ msgid "Sending method"
339
+ msgstr ""
340
 
341
+ #: contact_form.php:1280
342
  msgid "Wp-mail"
343
  msgstr "Wp-mail"
344
 
345
+ #: contact_form.php:1282
346
  msgid "You can use the Wordpress wp_mail function for mailing"
347
  msgstr ""
348
  "Pour envoyer le courriel, vous pouvez utiliser la fonction wp_mail de "
349
  "WordPress "
350
 
351
+ #: contact_form.php:1285
352
  msgid "Mail"
353
  msgstr "E-mail"
354
 
355
+ #: contact_form.php:1287
356
  msgid "You can use the PHP mail function for mailing"
357
  msgstr ""
358
  "Pour envoyer le courriel, vous pouvez utiliser la fonction wp_mail de "
359
  "WordPress "
360
 
361
+ #: contact_form.php:1292
362
  msgid "'FROM' field"
363
  msgstr "Champ 'From'"
364
 
365
+ #: contact_form.php:1297
 
 
 
 
 
366
  msgid "User name"
367
  msgstr "Nom de l’utilisateur"
368
 
369
+ #: contact_form.php:1299
370
  msgid ""
371
  "The name of the user who fills the form will be used in the field 'From'."
372
  msgstr ""
373
  "Dans le champ 'FROM' du courriel, il sera utilisé l'adresse e-mail de "
374
  "l’utilisateur qui rempli le formulaire."
375
 
376
+ #: contact_form.php:1304 contact_form.php:3126 contact_form.php:3170
377
  msgid "Email"
378
  msgstr "E-mail"
379
 
380
+ #: contact_form.php:1307
381
  msgid "User email"
382
  msgstr "E-mail de l’utilisateur"
383
 
384
+ #: contact_form.php:1309
385
  msgid ""
386
  "The email address of the user who fills the form will be used in the field "
387
  "'From'."
389
  "Dans le champ 'FROM' du courriel, il sera utilisé l'adresse e-mail de "
390
  "l’utilisateur qui rempli le formulaire."
391
 
392
+ #: contact_form.php:1312
393
  msgid ""
394
  "If this option is changed, email messages may be moved to the spam folder or "
395
  "email delivery failures may occur."
397
  "Si cette option est modifiée, les courriels pourront se retrouver classer "
398
  "dans le dossier spam ou bien une erreur d'acheminement peut survenir."
399
 
400
+ #: contact_form.php:1318
401
  msgid "Required symbol"
402
  msgstr "Symbole obligatoire"
403
 
404
+ #: contact_form.php:1328
405
  msgid "Fields"
406
  msgstr "Champs"
407
 
408
+ #: contact_form.php:1329 contact_form.php:1356 contact_form.php:1383
409
+ #: contact_form.php:1403 contact_form.php:1442 contact_form.php:1527
410
  msgid "Used"
411
  msgstr "Utilisé"
412
 
413
+ #: contact_form.php:1330 contact_form.php:1345 contact_form.php:1360
414
+ #: contact_form.php:1387 contact_form.php:1407 contact_form.php:1420
415
+ #: contact_form.php:1446 contact_form.php:1459 contact_form.php:1483
416
  msgid "Required"
417
  msgstr "Obligatoire"
418
 
419
+ #: contact_form.php:1332 contact_form.php:1365 contact_form.php:1425
420
+ #: contact_form.php:1464 contact_form.php:1488
421
  msgid "Visible"
422
  msgstr "Visible"
423
 
424
+ #: contact_form.php:1333 contact_form.php:1369 contact_form.php:1429
425
+ #: contact_form.php:1468 contact_form.php:1492
426
  msgid "Disabled for editing"
427
  msgstr "Non actif pour l'édition"
428
 
429
+ #: contact_form.php:1334 contact_form.php:1393 contact_form.php:1472
430
+ #: contact_form.php:1496
431
  msgid "Field's default value"
432
  msgstr "Valeur par défaut du champ"
433
 
434
+ #: contact_form.php:1341
435
  msgid "Department selectbox"
436
  msgstr "Liste déroulante des localisations"
437
 
438
+ #: contact_form.php:1373
439
  msgid "Use User's name as a default value if the user is logged in."
440
  msgstr ""
441
  "Utiliser le nom de l'utilisateur comme valeur par défaut si un utilisateur "
442
  "est connecté."
443
 
444
+ #: contact_form.php:1374 contact_form.php:1434
445
  msgid ""
446
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
447
  "in users."
449
  "'Visible' et 'Inactif' pour modifier les options ne seront appliqués qu'aux "
450
  "utilisateurs connectés."
451
 
452
+ #: contact_form.php:1380
453
  msgid "Location selectbox"
454
  msgstr "Liste déroulante des localisations"
455
 
456
+ #: contact_form.php:1433
 
 
 
 
 
 
 
 
 
457
  msgid "Use User's email as a default value if the user is logged in."
458
  msgstr ""
459
  "Utiliser l'adresse e-mail de l'utilisateur comme valeur par défaut si un "
460
  "utilisateur est connecté."
461
 
462
+ #: contact_form.php:1520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
463
  msgid "Attachment block"
464
  msgstr "Bloc pièce jointe"
465
 
466
+ #: contact_form.php:1522
467
  msgid "Users can attach the following file formats"
468
  msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
469
 
470
+ #: contact_form.php:1540
471
  msgid "Add to the form"
472
  msgstr "Ajouter au formulaire"
473
 
474
+ #: contact_form.php:1545
475
  msgid "Tips below the Attachment"
476
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
477
 
478
+ #: contact_form.php:1554
479
  msgid "'Send me a copy' block"
480
  msgstr "Afficher le bloc \"M'envoyer une copie\""
481
 
482
+ #: contact_form.php:1667
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
483
  msgid "Agreement checkbox"
484
  msgstr "Case à cocher pour valider le formulaire"
485
 
486
+ #: contact_form.php:1667
487
  msgid "Required checkbox for submitting the form"
488
  msgstr "Boite à cocher obligatoire pour la validation du formulaire."
489
 
490
+ #: contact_form.php:1668
491
  msgid "Optional checkbox"
492
  msgstr "Boite à cocher optionnelle"
493
 
494
+ #: contact_form.php:1668
495
  msgid "Optional checkbox, the results of which will be displayed in email"
496
  msgstr "Boite à cocher optionnelle, le résultat sera affiché dans le courriel"
497
 
498
+ #: contact_form.php:1689
499
  msgid "Delete an attachment file from the server after the email is sent"
500
  msgstr "Supprimer le fichier joint sur le serveur après l'envoie du courriel"
501
 
502
+ #: contact_form.php:1695
503
  msgid "Email in HTML format sending"
504
  msgstr "Courriel au format HTML"
505
 
506
+ #: contact_form.php:1699
507
  msgid "Display additional info in the email"
508
  msgstr "Afficher les informations complémentaires dans le courriel"
509
 
510
+ #: contact_form.php:1705
511
  msgid "Sent from (IP address)"
512
  msgstr "Envoyé de (adresse IP)"
513
 
514
+ #: contact_form.php:1705
515
  msgid "Example: Sent from (IP address):\t127.0.0.1"
516
  msgstr "Exemple: Envoyé de (adresse IP)&nbsp;:\t127.0.0.1"
517
 
518
+ #: contact_form.php:1706 contact_form.php:3075 contact_form.php:3077
519
  msgid "Date/Time"
520
  msgstr "Date/Heure"
521
 
522
+ #: contact_form.php:1706
523
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
524
  msgstr "Exemple: Date/Heure&nbsp;:\tAoût 19, 2013 8:50pm"
525
 
526
+ #: contact_form.php:1707 contact_form.php:3081 contact_form.php:3083
527
  msgid "Sent from (referer)"
528
  msgstr "Envoyer de (référence)"
529
 
530
+ #: contact_form.php:1707
531
  msgid ""
532
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
533
  msgstr ""
534
  "Exemple&nbsp;: Envoyer de (referer) :\thttp://bestwebsoft.com/contacts/"
535
  "contact-us/"
536
 
537
+ #: contact_form.php:1708 contact_form.php:3087 contact_form.php:3089
538
  msgid "Using (user agent)"
539
  msgstr "Depuis (navigateur)"
540
 
541
+ #: contact_form.php:1708
542
  msgid ""
543
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
544
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
547
  "WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 "
548
  "Safari/537.36"
549
 
550
+ #: contact_form.php:1713
551
  msgid "Language settings for the field names in the form"
552
  msgstr "Définition des langues pour les titres des champs"
553
 
554
+ #: contact_form.php:1722
555
  msgid "Add a language"
556
  msgstr "Ajouter une langue"
557
 
558
+ #: contact_form.php:1726
559
  msgid "Change the names of the contact form fields and error messages"
560
  msgstr ""
561
  "Modifier le texte pour les champs du formulaire de contact et les messages "
562
  "d'erreur"
563
 
564
+ #: contact_form.php:1731 contact_form.php:1827 contact_form.php:2081
565
+ #: contact_form.php:2086 contact_form.php:2096 contact_form.php:2101
566
+ #: contact_form.php:2106 contact_form.php:2111 contact_form.php:2121
567
+ #: contact_form.php:2126 contact_form.php:2135 contact_form.php:2149
568
+ #: contact_form.php:2154 contact_form.php:2159
569
  msgid "Default"
570
  msgstr "Défaut"
571
 
572
+ #: contact_form.php:1744 contact_form.php:1782
573
  msgid "click to expand/hide the list"
574
  msgstr "cliquer pour voir/cacher la liste"
575
 
576
+ #: contact_form.php:1753 contact_form.php:1791
577
  msgid "Tips below the Attachment block"
578
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
579
 
580
+ #: contact_form.php:1756 contact_form.php:1794
581
  msgid "Error message for the Name field"
582
  msgstr "Message d'erreur pour le champ nom"
583
 
584
+ #: contact_form.php:1757 contact_form.php:1795
585
  msgid "Error message for the Address field"
586
  msgstr "Message d'erreur pour le champ Adresse"
587
 
588
+ #: contact_form.php:1758 contact_form.php:1796
589
  msgid "Error message for the Email field"
590
  msgstr "Message d'erreur pour le champ e-mail"
591
 
592
+ #: contact_form.php:1759 contact_form.php:1797
593
  msgid "Error message for the Phone field"
594
  msgstr "Message d'erreur pour le champ téléphone"
595
 
596
+ #: contact_form.php:1760 contact_form.php:1798
597
  msgid "Error message for the Subject field"
598
  msgstr "Message d'erreur pour le champ sujet"
599
 
600
+ #: contact_form.php:1761 contact_form.php:1799
601
  msgid "Error message for the Message field"
602
  msgstr "Message d'erreur pour le champ message"
603
 
604
+ #: contact_form.php:1762 contact_form.php:1800
605
  msgid "Error message about the file type for the Attachment field"
606
  msgstr "Message d'erreur pour le champ fichier joint (type du fichier)"
607
 
608
+ #: contact_form.php:1763 contact_form.php:1801
609
  msgid ""
610
  "Error message while uploading a file for the Attachment field to the server"
611
  msgstr ""
612
  "Message d'erreur pour le champ fichier joint (problème d'envoi vers le "
613
  "serveur)"
614
 
615
+ #: contact_form.php:1764 contact_form.php:1802
616
  msgid "Error message while moving the file for the Attachment field"
617
  msgstr "Message d'erreur pour le champ fichier joint (déplacement du fichier)"
618
 
619
+ #: contact_form.php:1765 contact_form.php:1803
620
  msgid "Error message when file size limit for the Attachment field is exceeded"
621
  msgstr ""
622
  "Message d'erreur pour le champ fichier joint (taille limite du fichier "
623
  "atteinte)"
624
 
625
+ #: contact_form.php:1766 contact_form.php:1804
626
  msgid "Error message for the Captcha field"
627
  msgstr "Message d'erreur pour le captcha"
628
 
629
+ #: contact_form.php:1767 contact_form.php:1805
630
  msgid "Error message for the whole form"
631
  msgstr "Message d'erreur demandant à compléter les champs manquants"
632
 
633
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
634
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
635
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
636
+ #: contact_form.php:3516
637
  msgid "Use shortcode"
638
  msgstr "Utiliser le code court"
639
 
640
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
641
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
642
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
643
+ #: contact_form.php:3516
644
  msgid "for this language"
645
  msgstr "pour cette langue"
646
 
647
+ #: contact_form.php:1818
648
  msgid "Use the changed names of the contact form fields in the email"
649
  msgstr "Utiliser les noms des champs modifiés dans les courriels"
650
 
651
+ #: contact_form.php:1824
652
  msgid "Action after email is sent"
653
  msgstr "Action après l'envoie du courriel"
654
 
655
+ #: contact_form.php:1826
656
  msgid "Display text"
657
  msgstr "Afficher le texte"
658
 
659
+ #: contact_form.php:1840 contact_form.php:1854
660
  msgid "Text"
661
  msgstr "Texte"
662
 
663
+ #: contact_form.php:1865
664
  msgid "Redirect to the page"
665
  msgstr "Rediriger vers la page"
666
 
667
+ #: contact_form.php:1866
668
  msgid "Url"
669
  msgstr "Url"
670
 
671
+ #: contact_form.php:1877
672
  msgid "Add field 'Reply-To' to the email header"
673
  msgstr "Ajouter le champ 'Répondre à/Reply-To' dans l'entête du courriel"
674
 
675
+ #: contact_form.php:1879
676
  msgid "Field 'Reply-To' will be initialized by user email"
677
  msgstr ""
678
  "Le champ 'Répondre à/Reply-To' sera rempli avec l'adresse e-mail de "
679
  "l'utilisateur"
680
 
681
+ #: contact_form.php:1883
682
  msgid "Auto Response"
683
  msgstr "Réponse automatique"
684
 
685
+ #: contact_form.php:1887
686
  #, php-format
687
  msgid ""
688
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
693
  "%%MESSAGE%% pour afficher des données du champ message, de même %%SITENAME%% "
694
  "pour afficher le nom du site."
695
 
696
+ #: contact_form.php:1912 contact_form.php:2398
697
  msgid "Save Changes"
698
  msgstr "Enregistrer les modifications"
699
 
700
+ #: contact_form.php:1925
701
  #, php-format
702
  msgid ""
703
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
705
  "Merci d'activer le java-script pour modifier les options '%s', '%s' ainsi "
706
  "que pour trier les champs."
707
 
708
+ #: contact_form.php:1925 contact_form.php:1934
709
+ msgid "Form layout"
710
+ msgstr "Structure du formulaire"
711
+
712
+ #: contact_form.php:1925 contact_form.php:1946
713
+ msgid "Submit position"
714
+ msgstr "Position du bouton envoyer"
715
+
716
+ #: contact_form.php:1938
717
  msgid "One column"
718
  msgstr "Une colonne"
719
 
720
+ #: contact_form.php:1941
721
  msgid "Two columns"
722
  msgstr "Deux colonnes"
723
 
724
+ #: contact_form.php:1950 contact_form.php:1969 contact_form.php:1987
725
+ #: contact_form.php:2002
726
  msgid "Left"
727
  msgstr "Gauche"
728
 
729
+ #: contact_form.php:1953 contact_form.php:1975 contact_form.php:1990
730
+ #: contact_form.php:2008
731
  msgid "Right"
732
  msgstr "Droite"
733
 
734
+ #: contact_form.php:1965
735
  msgid "Form align"
736
  msgstr "Alignement des champs"
737
 
738
+ #: contact_form.php:1972 contact_form.php:2005
739
  msgid "Center"
740
  msgstr "Centre"
741
 
742
+ #: contact_form.php:1980
743
  msgid "Labels position"
744
  msgstr "Position des textes"
745
 
746
+ #: contact_form.php:1984
747
  msgid "Top"
748
  msgstr "Haut"
749
 
750
+ #: contact_form.php:1993
751
  msgid "Bottom"
752
  msgstr "Bas"
753
 
754
+ #: contact_form.php:1998
755
  msgid "Labels align"
756
  msgstr "Alignement des textes"
757
 
758
+ #: contact_form.php:2013
759
  msgid "Errors output"
760
  msgstr "Affichage des erreurs"
761
 
762
+ #: contact_form.php:2016
763
  msgid "Display error messages"
764
  msgstr "Afficher les messages d'erreur"
765
 
766
+ #: contact_form.php:2017
767
  msgid "Color of the input field errors."
768
  msgstr "Mettre en couleur les champs ayant des erreurs"
769
 
770
+ #: contact_form.php:2018
771
  msgid "Display error messages & color of the input field errors"
772
  msgstr ""
773
  "Afficher les messages d'erreur et mettre en couleur les champs ayant des "
774
  "erreurs"
775
 
776
+ #: contact_form.php:2023
777
  msgid "Add placeholder to the input blocks"
778
  msgstr "Ajouter la localisation dans le bloc de saisie"
779
 
780
+ #: contact_form.php:2029
781
  msgid "Add tooltips"
782
  msgstr "Ajouter les conseils"
783
 
784
+ #: contact_form.php:2043
785
  msgid "Email address"
786
  msgstr "Adresse e-mail"
787
 
788
+ #: contact_form.php:2048 contact_form.php:3142 contact_form.php:3183
789
  msgid "Phone Number"
790
  msgstr "Téléphone"
791
 
792
+ #: contact_form.php:2074
 
 
 
 
793
  msgid "Style options"
794
  msgstr "Options de style"
795
 
796
+ #: contact_form.php:2078
797
  msgid "Text color"
798
  msgstr "Couleur du texte"
799
 
800
+ #: contact_form.php:2083
801
  msgid "Label text color"
802
  msgstr "Couleur des textes des intitulés"
803
 
804
+ #: contact_form.php:2088
805
  msgid "Placeholder color"
806
  msgstr "Couleur pour la localisation"
807
 
808
+ #: contact_form.php:2093
809
  msgid "Errors color"
810
  msgstr "Couleur pour les erreurs"
811
 
812
+ #: contact_form.php:2098
813
  msgid "Error text color"
814
  msgstr "Couleur pour le texte des erreurs"
815
 
816
+ #: contact_form.php:2103
817
  msgid "Background color of the input field errors"
818
  msgstr "Couleur de fond pour les erreurs de saisie dans les champs"
819
 
820
+ #: contact_form.php:2108
821
  msgid "Border color of the input field errors"
822
  msgstr "Couleur de la bordure pour les erreurs de saisie dans les champs"
823
 
824
+ #: contact_form.php:2113
825
  msgid "Placeholder color of the input field errors"
826
  msgstr "Couleur pour la localisation lors d'une erreur de saisie du champ"
827
 
828
+ #: contact_form.php:2118
829
  msgid "Input fields"
830
  msgstr "Champs de saisie"
831
 
832
+ #: contact_form.php:2123
833
  msgid "Input fields background color"
834
  msgstr "Couleur de fond pour les champs de saisie"
835
 
836
+ #: contact_form.php:2128
837
  msgid "Text fields color"
838
  msgstr "Couleur pour les textes des champs de saisie"
839
 
840
+ #: contact_form.php:2132
841
  msgid "Border width in px, numbers only"
842
  msgstr "Largeur des bordures en px, nombre seulement"
843
 
844
+ #: contact_form.php:2137 contact_form.php:2161
845
  msgid "Border color"
846
  msgstr "Couleur des bordures"
847
 
848
+ #: contact_form.php:2142
849
  msgid "Submit button"
850
  msgstr "Bouton Envoyer"
851
 
852
+ #: contact_form.php:2146
853
  msgid "Width in px, numbers only"
854
  msgstr "Largeur en px, nombre seulement"
855
 
856
+ #: contact_form.php:2151
857
  msgid "Button color"
858
  msgstr "Couleur du bouton"
859
 
860
+ #: contact_form.php:2156
861
  msgid "Button text color"
862
  msgstr "Couleur du texte du bouton"
863
 
864
+ #: contact_form.php:2188
865
  msgid "Contact Form | Preview"
866
  msgstr "Formulaire de Contact | Prévisualisation"
867
 
868
+ #: contact_form.php:2189
869
  msgid "Drag the necessary field to sort fields."
870
  msgstr "Déposer les champs nécessaires dans la liste des tris."
871
 
872
+ #: contact_form.php:2385
873
+ #, fuzzy
874
  msgid ""
875
  "If you would like to add the Contact Form to your website, just copy and "
876
+ "paste this shortcode to your post or page or widget"
877
  msgstr ""
878
  "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez "
879
  "juste ce code dans un article ou sur une page ou un widget&nbsp;:"
880
 
881
+ #: contact_form.php:2501
882
  msgid "Sorry, email message could not be delivered."
883
  msgstr "Désolé, votre courriel n'a pas pu être envoyé."
884
 
885
+ #: contact_form.php:3069 contact_form.php:3071
886
  msgid "Sent from (ip address)"
887
  msgstr "Envoyé de (adresse IP)"
888
 
889
+ #: contact_form.php:3099
890
  msgid "Contact from"
891
  msgstr "Contact de"
892
 
893
+ #: contact_form.php:3104 contact_form.php:3153
 
 
 
 
894
  msgid "Site"
895
  msgstr "Site"
896
 
897
+ #: contact_form.php:3283
898
  msgid ""
899
  "If you can see this MIME, it means that the MIME type is not supported by "
900
  "your email client!"
902
  "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de "
903
  "MIME !"
904
 
905
+ #: contact_form.php:3366
906
  msgid "FAQ"
907
  msgstr "FAQ"
908
 
909
+ #: contact_form.php:3367
910
  msgid "Support"
911
  msgstr "Support"
912
 
913
+ #: contact_form.php:3416
914
  msgid "Are you sure that you want to delete this language data?"
915
  msgstr "Êtes vous sûr de vouloir supprimer cette langue ?"
916
 
917
+ #: contact_form.php:3437
918
  msgid "Add multiple forms"
919
  msgstr "Ajouter plusieurs formulaires"
920
 
921
+ #: contact_form.php:3437
922
  msgid ""
923
  "Install Contact Form Multi plugin to create unlimited number of contact "
924
  "forms."
926
  "Installer l'extension 'Contact Form Multi' pour créer un nombre infini de "
927
  "formulaires de contact."
928
 
929
+ #: contact_form.php:3442
930
  msgid "Learn more"
931
  msgstr "Lire la suite"
932
 
933
+ #: contact_form.php:3663
934
  msgid "Close notice"
935
  msgstr "Fermer l'avertissement"
936
 
937
+ #: contact_form.php:3668
938
  msgid "allows to store your messages to the database."
939
  msgstr "permet d'enregistrer les messages dans la base de données."
940
 
941
+ #: contact_form.php:3669
942
  msgid "Manage messages that have been sent from your website."
943
  msgstr "Gérer les messages qui ont été envoyés depuis votre site."
944
 
945
+ #: contact_form.php:3727
946
  msgid "Contact form"
947
  msgstr "Formulaire de contact"
948
 
949
+ #: contact_form.php:3740 contact_form.php:3750
950
  msgid "Language"
951
  msgstr "Langue"
952
 
953
+ #~ msgid "Name:"
954
+ #~ msgstr "Nom&nbsp;:"
955
+
956
+ #~ msgid "Address:"
957
+ #~ msgstr "Adresse&nbsp;:"
958
+
959
+ #~ msgid "Email Address:"
960
+ #~ msgstr "Adresse e-mail&nbsp;:"
961
+
962
+ #~ msgid "Phone number:"
963
+ #~ msgstr "Téléphone&nbsp;:"
964
+
965
+ #~ msgid "Subject:"
966
+ #~ msgstr "Sujet&nbsp;:"
967
+
968
+ #~ msgid "Message:"
969
+ #~ msgstr "Message&nbsp;:"
970
+
971
+ #~ msgid "Attachment:"
972
+ #~ msgstr "Pièce jointe&nbsp;:"
973
+
974
+ #~ msgid ""
975
+ #~ "Please enable JavaScript to add language in the contact form, change the "
976
+ #~ "names of the contact form fields and error messages."
977
+ #~ msgstr ""
978
+ #~ "Merci d'activer le java-script pour ajouter une nouvelle langue au "
979
+ #~ "formulaire de contact, changer les noms des champs et les messages "
980
+ #~ "d'erreur."
981
+
982
+ #~ msgid "Notice:"
983
+ #~ msgstr "Avertissement&nbsp;:"
984
+
985
+ #~ msgid "What to use?"
986
+ #~ msgstr "Quelle méthode d’envoi ?"
987
+
988
+ #~ msgid "Using Contact Form to DB by BestWebSoft"
989
+ #~ msgstr "en utilisant l'extension Contact Form to DB de BestWebSoft"
990
+
991
+ #~ msgid "Activate Subscriber"
992
+ #~ msgstr "Activer l'enregistrement"
993
+
994
+ #~ msgid "Download Subscriber"
995
+ #~ msgstr "Télécharger l'extension Subscriber"
996
+
997
+ #~ msgid "Activate Captcha"
998
+ #~ msgstr "Activé le captcha"
999
+
1000
+ #~ msgid "Download Captcha"
1001
+ #~ msgstr "Télécharger le captcha"
1002
+
1003
+ #~ msgid "Phone"
1004
+ #~ msgstr "Téléphone"
1005
+
1006
  #~ msgid "Not set"
1007
  #~ msgstr "Not set"
1008
 
1320
  #~ msgid "Please, go to"
1321
  #~ msgstr "Merci d’aller à"
1322
 
 
 
 
1323
  #~ msgid "You will be redirected automatically in 5 seconds."
1324
  #~ msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
1325
 
1508
  #~ msgid "Suggest a Feature"
1509
  #~ msgstr "Suggérer une fonctionnalité"
1510
 
 
 
 
1511
  #~ msgid "The plugin's settings have been changed."
1512
  #~ msgstr "Les paramètres de l'extension ont été modifiés."
1513
 
languages/contact-form-plugin-ja.mo CHANGED
Binary file
languages/contact-form-plugin-ja.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: 2016-06-27 16:31+0300\n"
6
- "PO-Revision-Date: 2016-06-27 16:31+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: foken <foken@gmx.com>\n"
9
  "Language: ja_JP\n"
@@ -16,7 +16,7 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:37 contact_form.php:1030
20
  msgid "Contact Form Settings"
21
  msgstr "Contact Form設定"
22
 
@@ -24,35 +24,46 @@ msgstr "Contact Form設定"
24
  msgid "Contact Form"
25
  msgstr "Contact Form"
26
 
27
- #: contact_form.php:165 contact_form.php:1565 contact_form.php:1599
28
- msgid "Name:"
29
- msgstr "名前:"
 
 
30
 
31
- #: contact_form.php:166 contact_form.php:1566 contact_form.php:1600
32
- msgid "Address:"
33
- msgstr "住所:"
 
 
34
 
35
- #: contact_form.php:167 contact_form.php:1567 contact_form.php:1601
36
- msgid "Email Address:"
37
- msgstr "Eメール:"
 
38
 
39
- #: contact_form.php:168 contact_form.php:1568 contact_form.php:1602
40
- msgid "Phone number:"
41
- msgstr "電話番号:"
 
42
 
43
- #: contact_form.php:169 contact_form.php:1569 contact_form.php:1603
44
- msgid "Subject:"
45
- msgstr "件名:"
 
 
46
 
47
- #: contact_form.php:170 contact_form.php:1570 contact_form.php:1604
48
- msgid "Message:"
49
- msgstr "メッセージ:"
 
 
50
 
51
- #: contact_form.php:171 contact_form.php:1571 contact_form.php:1605
52
- msgid "Attachment:"
53
- msgstr "添付:"
 
54
 
55
- #: contact_form.php:172
56
  msgid ""
57
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
58
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -60,77 +71,77 @@ msgstr ""
60
  "サポートしてるファイル形式: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
61
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
62
 
63
- #: contact_form.php:173 contact_form.php:1573 contact_form.php:1607
64
  msgid "Send me a copy"
65
  msgstr "コピーを自分に送る"
66
 
67
- #: contact_form.php:174 contact_form.php:1574 contact_form.php:1608
68
  msgid "Submit"
69
  msgstr "送信"
70
 
71
- #: contact_form.php:175
72
  msgid "Your name is required."
73
  msgstr "名前は必須です。"
74
 
75
- #: contact_form.php:176
76
  msgid "Address is required."
77
  msgstr "住所が必要です。"
78
 
79
- #: contact_form.php:177
80
  msgid "A valid email address is required."
81
  msgstr "有効なEメールアドレスlが必須です。"
82
 
83
- #: contact_form.php:178
84
  msgid "Phone number is required."
85
  msgstr "電話番号は必須です。"
86
 
87
- #: contact_form.php:179
88
  msgid "Subject is required."
89
  msgstr "件名は必須です。"
90
 
91
- #: contact_form.php:180
92
  msgid "Message text is required."
93
  msgstr "メッセージ本文は必須です。"
94
 
95
- #: contact_form.php:181
96
  msgid "File format is not valid."
97
  msgstr "添付が壊れています。"
98
 
99
- #: contact_form.php:182
100
  msgid "File upload error."
101
  msgstr "ファイル・アップロード・エラー。"
102
 
103
- #: contact_form.php:183
104
  msgid "The file could not be uploaded."
105
  msgstr "ファイルは、アップロード出来ませんでした。"
106
 
107
- #: contact_form.php:184
108
  msgid "This file is too large."
109
  msgstr "このファイルは大きすぎます。"
110
 
111
- #: contact_form.php:185
112
  msgid "Please fill out the CAPTCHA."
113
  msgstr "CAPTCHAを入力して下さい。"
114
 
115
- #: contact_form.php:186
116
  msgid "Please make corrections below and try again."
117
  msgstr "以下を修正し、再度試して下さい。"
118
 
119
- #: contact_form.php:188
120
  msgid "Thank you for contacting us."
121
  msgstr "ご連絡ありがとうございます"
122
 
123
- #: contact_form.php:688 contact_form.php:998
124
  msgid "Settings saved."
125
  msgstr "設定保存."
126
 
127
- #: contact_form.php:940
128
  msgid ""
129
  "Email 'FROM' field option was changed, which may cause email messages being "
130
  "moved to the spam folder or email delivery failures."
131
  msgstr ""
132
 
133
- #: contact_form.php:950
134
  msgid ""
135
  "If the 'Redirect to page' option is selected then the URL field should be in "
136
  "the following format"
@@ -138,79 +149,64 @@ msgstr ""
138
  "’ページに転送’オプションを選択した場合は、URLフィールドが、以下の形式になりま"
139
  "す"
140
 
141
- #: contact_form.php:957
142
  msgid "Such user does not exist."
143
  msgstr "そのようなユーザは存在しません。"
144
 
145
- #: contact_form.php:967
146
  msgid ""
147
  "Please enter a valid email address in the 'Use this email address' field."
148
  msgstr ""
149
  "'このEメールアドレスを使用'フィールドに有効化なEメール・アドレスを入力して下"
150
  "さい。"
151
 
152
- #: contact_form.php:975
153
  msgid "Please enter a valid email address in the 'FROM' field."
154
  msgstr "'送信者'フィールドに有効なEメールアドレスを入力して下さい。"
155
 
156
- #: contact_form.php:1000
157
  msgid "Settings are not saved."
158
  msgstr "設定は保存さていません。"
159
 
160
- #: contact_form.php:1027
161
  msgid "All plugin settings were restored."
162
  msgstr ""
163
 
164
- #: contact_form.php:1032
165
  msgid "How to Use Step-by-step Instruction"
166
  msgstr ""
167
 
168
- #: contact_form.php:1035 contact_form.php:3024 contact_form.php:3038
169
  msgid "Settings"
170
  msgstr "設定"
171
 
172
- #: contact_form.php:1036
173
  #, fuzzy
174
  msgid "Additional settings"
175
  msgstr "追加オプション"
176
 
177
- #: contact_form.php:1037
178
  msgid "Appearance"
179
  msgstr ""
180
 
181
- #: contact_form.php:1038
182
  msgid "Custom code"
183
  msgstr ""
184
 
185
- #: contact_form.php:1039
186
  msgid "Go PRO"
187
  msgstr "PROに進む"
188
 
189
- #: contact_form.php:1045
190
  #, fuzzy
191
- msgid ""
192
- "Please enable JavaScript to add language in the contact form, change the "
193
- "names of the contact form fields and error messages."
194
- msgstr "コンタクトフォームのフィールド名及びエラーメッセージを変更"
195
-
196
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1740
197
- msgid "Form layout"
198
- msgstr ""
199
-
200
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1752
201
- #, fuzzy
202
- msgid "Submit position"
203
- msgstr "送信ボタン"
204
-
205
- #: contact_form.php:1057
206
- msgid "Notice:"
207
  msgstr "通知:"
208
 
209
- #: contact_form.php:1061
210
  msgid "NEW_FORM"
211
  msgstr ""
212
 
213
- #: contact_form.php:1062
214
  msgid ""
215
  "If you want to create multiple contact forms, please install the Contact "
216
  "Form Multi plugin."
@@ -218,7 +214,7 @@ msgstr ""
218
  "複数のコンタクトフォームを作成したい場合は、Contact Form Multiプラグインを導"
219
  "入して下さい。"
220
 
221
- #: contact_form.php:1071
222
  #, fuzzy, php-format
223
  msgid ""
224
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -227,7 +223,7 @@ msgstr ""
227
  "Contact Formをあなたのサイトに追加したい場合は、このショートカットを投稿、"
228
  "ページ又はウェジットにコピーして貼り付けるだけです:"
229
 
230
- #: contact_form.php:1077
231
  #, php-format
232
  msgid ""
233
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -236,7 +232,7 @@ msgid ""
236
  "language."
237
  msgstr ""
238
 
239
- #: contact_form.php:1086
240
  msgid ""
241
  "If you leave the fields empty, the messages will be sent to the email "
242
  "address specified during registration."
@@ -244,126 +240,134 @@ msgstr ""
244
  "以下の項目の情報が空欄の場合、登録の際に記述したアドレスにメッセージが送られ"
245
  "ます。"
246
 
247
- #: contact_form.php:1089
248
- msgid "The user's email address:"
 
249
  msgstr "wordpressユーザのEメールを利用r:"
250
 
251
- #: contact_form.php:1093
252
  #, fuzzy
253
  msgid "Select a username"
254
  msgstr "ユーザ名の選択"
255
 
256
- #: contact_form.php:1106
 
257
  msgid ""
258
- "Enter a username of the person who should get the messages from the contact "
259
  "form."
260
  msgstr "コンタクトフォームからメッセージを受け取る方のユーザ名を入力。"
261
 
262
- #: contact_form.php:1110
263
- msgid "Use this email address:"
 
264
  msgstr "このEメールを利用:"
265
 
266
- #: contact_form.php:1114
267
- msgid "Enter the email address you want the messages forwarded to."
 
268
  msgstr "メッセージ受信用のEメールを設定。"
269
 
270
- #: contact_form.php:1121 contact_form.php:1487 contact_form.php:1679
271
- #: contact_form.php:1767 contact_form.php:3119
272
  msgid "Close"
273
  msgstr ""
274
 
275
- #: contact_form.php:1125
276
- msgid "Add department selectbox to the contact form:"
 
277
  msgstr "部署選択ボックスをコンタクトフォームに追加:"
278
 
279
- #: contact_form.php:1133 contact_form.php:1496 contact_form.php:1698
280
- #: contact_form.php:1973
281
  msgid "If you upgrade to Pro version all your settings will be saved."
282
  msgstr "PROバージョンにアップグレードすると、設定が保存されます。"
283
 
284
- #: contact_form.php:1140 contact_form.php:1407 contact_form.php:1501
285
- #: contact_form.php:1705 contact_form.php:1980
286
  #, fuzzy
287
  msgid "Unlock premium options by upgrading to Pro version"
288
  msgstr ""
289
  "PROバージョンにアップグレードすることにより、プレミアム・オプションが解除され"
290
  "ます。"
291
 
292
- #: contact_form.php:1143 contact_form.php:1410 contact_form.php:1504
293
- #: contact_form.php:1708 contact_form.php:1983 contact_form.php:3329
294
  msgid "Learn More"
295
  msgstr "もっと学ぶ"
296
 
297
- #: contact_form.php:1151
298
  msgid "Save emails to the database"
299
  msgstr "メールをデータベースに保存"
300
 
301
- #: contact_form.php:1156
302
  msgid "Using"
303
  msgstr "使用中"
304
 
305
- #: contact_form.php:1159 contact_form.php:1163
 
 
 
 
 
 
306
  #, fuzzy
307
- msgid "Using Contact Form to DB by BestWebSoft"
308
- msgstr "利用 Contact Form to DB powered by"
309
 
310
- #: contact_form.php:1159
 
311
  msgid "Activate"
312
  msgstr "有効化"
313
 
314
- #: contact_form.php:1163
 
315
  msgid "Download"
316
  msgstr "ダウンロード"
317
 
318
- #: contact_form.php:1173
319
- msgid "What to use?"
320
- msgstr "何を使用?"
321
 
322
- #: contact_form.php:1178
323
  msgid "Wp-mail"
324
  msgstr "WPメール"
325
 
326
- #: contact_form.php:1180
327
  #, fuzzy
328
  msgid "You can use the Wordpress wp_mail function for mailing"
329
  msgstr "メールにwp_mali機能が利用できます"
330
 
331
- #: contact_form.php:1183
332
  msgid "Mail"
333
  msgstr "メール"
334
 
335
- #: contact_form.php:1185
336
  #, fuzzy
337
  msgid "You can use the PHP mail function for mailing"
338
  msgstr "メールにwp_mali機能が利用できます"
339
 
340
- #: contact_form.php:1190
341
  msgid "'FROM' field"
342
  msgstr ""
343
 
344
- #: contact_form.php:1192 contact_form.php:1251 contact_form.php:1839
345
- #: contact_form.php:2810 contact_form.php:2846
346
- msgid "Name"
347
- msgstr "名前"
348
-
349
- #: contact_form.php:1195
350
  msgid "User name"
351
  msgstr "ユーザ名"
352
 
353
- #: contact_form.php:1197
354
  msgid ""
355
  "The name of the user who fills the form will be used in the field 'From'."
356
  msgstr "フォームを入力するユーザの名前が、'送信者'フィールドに使用されます。"
357
 
358
- #: contact_form.php:1202 contact_form.php:2821 contact_form.php:2853
359
  msgid "Email"
360
  msgstr "Eメール"
361
 
362
- #: contact_form.php:1205
363
  msgid "User email"
364
  msgstr "ユーザ・Eメール"
365
 
366
- #: contact_form.php:1207
367
  msgid ""
368
  "The email address of the user who fills the form will be used in the field "
369
  "'From'."
@@ -371,189 +375,148 @@ msgstr ""
371
  "フォームを入力したユーザのEメール・アドレスは、'送信者'フィールドに使用されま"
372
  "す。"
373
 
374
- #: contact_form.php:1210
375
  msgid ""
376
  "If this option is changed, email messages may be moved to the spam folder or "
377
  "email delivery failures may occur."
378
  msgstr ""
379
 
380
- #: contact_form.php:1216
381
  msgid "Required symbol"
382
  msgstr "必須シンボル"
383
 
384
- #: contact_form.php:1226
385
  msgid "Fields"
386
  msgstr "フィールド"
387
 
388
- #: contact_form.php:1227 contact_form.php:1254 contact_form.php:1281
389
- #: contact_form.php:1301 contact_form.php:1340 contact_form.php:1425
390
  msgid "Used"
391
  msgstr "使用済"
392
 
393
- #: contact_form.php:1228 contact_form.php:1243 contact_form.php:1258
394
- #: contact_form.php:1285 contact_form.php:1305 contact_form.php:1318
395
- #: contact_form.php:1344 contact_form.php:1357 contact_form.php:1381
396
  msgid "Required"
397
  msgstr "必須"
398
 
399
- #: contact_form.php:1230 contact_form.php:1263 contact_form.php:1323
400
- #: contact_form.php:1362 contact_form.php:1386
401
  msgid "Visible"
402
  msgstr "可視"
403
 
404
- #: contact_form.php:1231 contact_form.php:1267 contact_form.php:1327
405
- #: contact_form.php:1366 contact_form.php:1390
406
  msgid "Disabled for editing"
407
  msgstr "編集を無効化"
408
 
409
- #: contact_form.php:1232 contact_form.php:1291 contact_form.php:1370
410
- #: contact_form.php:1394
411
  msgid "Field's default value"
412
  msgstr "フィールドのデフォルト値"
413
 
414
- #: contact_form.php:1239
415
  #, fuzzy
416
  msgid "Department selectbox"
417
  msgstr "場所選択ボックス"
418
 
419
- #: contact_form.php:1271
420
  msgid "Use User's name as a default value if the user is logged in."
421
  msgstr ""
422
 
423
- #: contact_form.php:1272 contact_form.php:1332
424
  msgid ""
425
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
426
  "in users."
427
  msgstr ""
428
 
429
- #: contact_form.php:1278
430
  msgid "Location selectbox"
431
  msgstr "場所選択ボックス"
432
 
433
- #: contact_form.php:1298 contact_form.php:1844 contact_form.php:2816
434
- #: contact_form.php:2850
435
- msgid "Address"
436
- msgstr "住所"
437
-
438
- #: contact_form.php:1314
439
- msgid "Email Address"
440
- msgstr "Eメール・アドレス"
441
-
442
- #: contact_form.php:1331
443
  msgid "Use User's email as a default value if the user is logged in."
444
  msgstr ""
445
 
446
- #: contact_form.php:1337
447
- msgid "Phone number"
448
- msgstr "電話番号"
449
-
450
- #: contact_form.php:1353 contact_form.php:1859 contact_form.php:2831
451
- #: contact_form.php:2859
452
- msgid "Subject"
453
- msgstr "件名"
454
-
455
- #: contact_form.php:1377 contact_form.php:1863 contact_form.php:2834
456
- #: contact_form.php:2861
457
- msgid "Message"
458
- msgstr "メッセージ"
459
-
460
- #: contact_form.php:1418
461
  msgid "Attachment block"
462
  msgstr "添付ブロック"
463
 
464
- #: contact_form.php:1420
465
  msgid "Users can attach the following file formats"
466
  msgstr "ユーザは、以下のタイプのファイルを添付できる"
467
 
468
- #: contact_form.php:1438
469
  msgid "Add to the form"
470
  msgstr "フォームに追加"
471
 
472
- #: contact_form.php:1443
473
  msgid "Tips below the Attachment"
474
  msgstr "添付ファイルの下のチップス"
475
 
476
- #: contact_form.php:1452
477
  msgid "'Send me a copy' block"
478
  msgstr "'コピーを自分に送る'ブロック"
479
 
480
- #: contact_form.php:1464
481
- msgid "Activate Subscriber"
482
- msgstr ""
483
-
484
- #: contact_form.php:1468
485
- msgid "Download Subscriber"
486
- msgstr ""
487
-
488
- #: contact_form.php:1477
489
- #, fuzzy
490
- msgid "Activate Captcha"
491
- msgstr "有効なcaptcha"
492
-
493
- #: contact_form.php:1481
494
- #, fuzzy
495
- msgid "Download Captcha"
496
- msgstr "captchaをダウンロード"
497
-
498
- #: contact_form.php:1491
499
  msgid "Agreement checkbox"
500
  msgstr "同意のチェックボックス"
501
 
502
- #: contact_form.php:1491
503
  msgid "Required checkbox for submitting the form"
504
  msgstr "フォームを送信するために必須のチェックボックス"
505
 
506
- #: contact_form.php:1492
507
  msgid "Optional checkbox"
508
  msgstr "オプションのチェックボックス"
509
 
510
- #: contact_form.php:1492
511
  msgid "Optional checkbox, the results of which will be displayed in email"
512
  msgstr "オプションのチェックボックス、Eメールに表示される結果"
513
 
514
- #: contact_form.php:1513
515
  msgid "Delete an attachment file from the server after the email is sent"
516
  msgstr "Eメール送信後、サーバから添付ファイルを削除"
517
 
518
- #: contact_form.php:1519
519
  msgid "Email in HTML format sending"
520
  msgstr "HTMLフォーマットでメール送信"
521
 
522
- #: contact_form.php:1523
523
  msgid "Display additional info in the email"
524
  msgstr "メール中に追加情報を表示"
525
 
526
- #: contact_form.php:1529
527
  #, fuzzy
528
  msgid "Sent from (IP address)"
529
  msgstr "送信された(IP-Adresse)"
530
 
531
- #: contact_form.php:1529
532
  msgid "Example: Sent from (IP address):\t127.0.0.1"
533
  msgstr "例: 送信された(IP-Adresse):\t127.0.0.1"
534
 
535
- #: contact_form.php:1530 contact_form.php:2783 contact_form.php:2785
536
  msgid "Date/Time"
537
  msgstr "日時"
538
 
539
- #: contact_form.php:1530
540
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
541
  msgstr "例: 日時:\tAugust 19, 2013 8:50 pm"
542
 
543
- #: contact_form.php:1531 contact_form.php:2789 contact_form.php:2791
544
  msgid "Sent from (referer)"
545
  msgstr "送信された(referer)"
546
 
547
- #: contact_form.php:1531
548
  msgid ""
549
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
550
  msgstr "例: 送信された (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
551
 
552
- #: contact_form.php:1532 contact_form.php:2795 contact_form.php:2797
553
  msgid "Using (user agent)"
554
  msgstr "利用中の (user agent)"
555
 
556
- #: contact_form.php:1532
557
  msgid ""
558
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
559
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -561,134 +524,134 @@ msgstr ""
561
  "例: 利用中の (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
562
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
563
 
564
- #: contact_form.php:1537
565
  msgid "Language settings for the field names in the form"
566
  msgstr "フォーム内のフィールド名の言語設定"
567
 
568
- #: contact_form.php:1546
569
  msgid "Add a language"
570
  msgstr "言語の追加"
571
 
572
- #: contact_form.php:1550
573
  msgid "Change the names of the contact form fields and error messages"
574
  msgstr "コンタクトフォームのフィールド名及びエラーメッセージを変更"
575
 
576
- #: contact_form.php:1555 contact_form.php:1642 contact_form.php:1887
577
- #: contact_form.php:1892 contact_form.php:1902 contact_form.php:1907
578
- #: contact_form.php:1912 contact_form.php:1917 contact_form.php:1927
579
- #: contact_form.php:1932 contact_form.php:1941 contact_form.php:1955
580
- #: contact_form.php:1960 contact_form.php:1965
581
  msgid "Default"
582
  msgstr "標準"
583
 
584
- #: contact_form.php:1563 contact_form.php:1597
585
  msgid "click to expand/hide the list"
586
  msgstr "クリックして、このリストを展開/隠す"
587
 
588
- #: contact_form.php:1572 contact_form.php:1606
589
  msgid "Tips below the Attachment block"
590
  msgstr "添付ファイル・ブロックの下のチップス"
591
 
592
- #: contact_form.php:1575 contact_form.php:1609
593
  msgid "Error message for the Name field"
594
  msgstr "名前フィールド用のエラーメッセージ"
595
 
596
- #: contact_form.php:1576 contact_form.php:1610
597
  msgid "Error message for the Address field"
598
  msgstr "住所フィールド用のエラーメッセージ"
599
 
600
- #: contact_form.php:1577 contact_form.php:1611
601
  msgid "Error message for the Email field"
602
  msgstr "Eメール・フィールド用のエラーメッセージ"
603
 
604
- #: contact_form.php:1578 contact_form.php:1612
605
  msgid "Error message for the Phone field"
606
  msgstr "電話フィールド用のエラーメッセージ"
607
 
608
- #: contact_form.php:1579 contact_form.php:1613
609
  msgid "Error message for the Subject field"
610
  msgstr "件名フィールド用のエラーメッセージ"
611
 
612
- #: contact_form.php:1580 contact_form.php:1614
613
  msgid "Error message for the Message field"
614
  msgstr "メッセージ・フィールド用のエラーメッセージ"
615
 
616
- #: contact_form.php:1581 contact_form.php:1615
617
  msgid "Error message about the file type for the Attachment field"
618
  msgstr "添付フィールド用の拡張子タイプに関するエラーメッセージ"
619
 
620
- #: contact_form.php:1582 contact_form.php:1616
621
  msgid ""
622
  "Error message while uploading a file for the Attachment field to the server"
623
  msgstr "添付フィールド用のファイルをサーバにアップロード中のエラーメッセージ"
624
 
625
- #: contact_form.php:1583 contact_form.php:1617
626
  msgid "Error message while moving the file for the Attachment field"
627
  msgstr "添付フィールド用のファイルを移動中のエラーメッセージ"
628
 
629
- #: contact_form.php:1584 contact_form.php:1618
630
  msgid "Error message when file size limit for the Attachment field is exceeded"
631
  msgstr "添付フィールド用のファイルサイズ制限を超した場合のエラーメッセージ"
632
 
633
- #: contact_form.php:1585 contact_form.php:1619
634
  msgid "Error message for the Captcha field"
635
  msgstr "Captcha フィールド用のエラーメッセージ"
636
 
637
- #: contact_form.php:1586 contact_form.php:1620
638
  msgid "Error message for the whole form"
639
  msgstr "全体フォーム用のエラーメッセージ"
640
 
641
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
642
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
643
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
644
- #: contact_form.php:3179
645
  msgid "Use shortcode"
646
  msgstr "短いコードの利用"
647
 
648
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
649
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
650
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
651
- #: contact_form.php:3179
652
  msgid "for this language"
653
  msgstr "この言語用に"
654
 
655
- #: contact_form.php:1633
656
  msgid "Use the changed names of the contact form fields in the email"
657
  msgstr "Eメール内のコンタクトフォーム・フィールドの変更された名前を使用"
658
 
659
- #: contact_form.php:1639
660
  msgid "Action after email is sent"
661
  msgstr "メール送信後の動作"
662
 
663
- #: contact_form.php:1641
664
  msgid "Display text"
665
  msgstr "テキストを表示"
666
 
667
- #: contact_form.php:1650 contact_form.php:1660
668
  msgid "Text"
669
  msgstr "文字"
670
 
671
- #: contact_form.php:1671
672
  msgid "Redirect to the page"
673
  msgstr "ページに転送"
674
 
675
- #: contact_form.php:1672
676
  msgid "Url"
677
  msgstr "Url"
678
 
679
- #: contact_form.php:1683
680
  msgid "Add field 'Reply-To' to the email header"
681
  msgstr ""
682
 
683
- #: contact_form.php:1685
684
  msgid "Field 'Reply-To' will be initialized by user email"
685
  msgstr ""
686
 
687
- #: contact_form.php:1689
688
  msgid "Auto Response"
689
  msgstr "自動応答"
690
 
691
- #: contact_form.php:1693
692
  #, php-format
693
  msgid ""
694
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -699,262 +662,309 @@ msgstr ""
699
  "表示するために%%NAME%%を、メッセージフィールドからデータを表示するため"
700
  "に%%MESSAGE%%が利用することが出来ます。"
701
 
702
- #: contact_form.php:1718 contact_form.php:2213
703
  msgid "Save Changes"
704
  msgstr "変更保存"
705
 
706
- #: contact_form.php:1731
707
  #, php-format
708
  msgid ""
709
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
710
  msgstr ""
711
 
712
- #: contact_form.php:1744
 
 
 
 
 
 
 
 
 
713
  msgid "One column"
714
  msgstr ""
715
 
716
- #: contact_form.php:1747
717
  msgid "Two columns"
718
  msgstr ""
719
 
720
- #: contact_form.php:1756 contact_form.php:1775 contact_form.php:1793
721
- #: contact_form.php:1808
722
  msgid "Left"
723
  msgstr ""
724
 
725
- #: contact_form.php:1759 contact_form.php:1781 contact_form.php:1796
726
- #: contact_form.php:1814
727
  msgid "Right"
728
  msgstr ""
729
 
730
- #: contact_form.php:1771
731
  msgid "Form align"
732
  msgstr ""
733
 
734
- #: contact_form.php:1778 contact_form.php:1811
735
  msgid "Center"
736
  msgstr ""
737
 
738
- #: contact_form.php:1786
739
  #, fuzzy
740
  msgid "Labels position"
741
  msgstr "送信ボタン"
742
 
743
- #: contact_form.php:1790
744
  msgid "Top"
745
  msgstr ""
746
 
747
- #: contact_form.php:1799
748
  msgid "Bottom"
749
  msgstr ""
750
 
751
- #: contact_form.php:1804
752
  msgid "Labels align"
753
  msgstr ""
754
 
755
- #: contact_form.php:1819
756
  msgid "Errors output"
757
  msgstr "エラー出力"
758
 
759
- #: contact_form.php:1822
760
  msgid "Display error messages"
761
  msgstr "エラーメッセージの表示"
762
 
763
- #: contact_form.php:1823
764
  msgid "Color of the input field errors."
765
  msgstr "入力フィールド・エラーの色"
766
 
767
- #: contact_form.php:1824
768
  msgid "Display error messages & color of the input field errors"
769
  msgstr "エラーメッセージと入力フィールド・エラーの色を表示"
770
 
771
- #: contact_form.php:1829
772
  msgid "Add placeholder to the input blocks"
773
  msgstr "プレースホルダーを入力ブロックに追加"
774
 
775
- #: contact_form.php:1835
776
  msgid "Add tooltips"
777
  msgstr "ツールチップの追加"
778
 
779
- #: contact_form.php:1849
780
  msgid "Email address"
781
  msgstr "Eメール・アドレス"
782
 
783
- #: contact_form.php:1854
784
  msgid "Phone Number"
785
  msgstr "電話番号"
786
 
787
- #: contact_form.php:1868
788
- msgid "Attachment"
789
- msgstr "添付"
790
-
791
- #: contact_form.php:1880
792
  msgid "Style options"
793
  msgstr "スタイル・オプション"
794
 
795
- #: contact_form.php:1884
796
  msgid "Text color"
797
  msgstr "文字色"
798
 
799
- #: contact_form.php:1889
800
  msgid "Label text color"
801
  msgstr "ラベル文字色"
802
 
803
- #: contact_form.php:1894
804
  msgid "Placeholder color"
805
  msgstr "プレースホルダ色"
806
 
807
- #: contact_form.php:1899
808
  msgid "Errors color"
809
  msgstr "エラーの色"
810
 
811
- #: contact_form.php:1904
812
  msgid "Error text color"
813
  msgstr "エラーテキストの色"
814
 
815
- #: contact_form.php:1909
816
  msgid "Background color of the input field errors"
817
  msgstr "入力フィールド・エラーの背景色"
818
 
819
- #: contact_form.php:1914
820
  msgid "Border color of the input field errors"
821
  msgstr "入力フィールド・エラーの罫線色"
822
 
823
- #: contact_form.php:1919
824
  msgid "Placeholder color of the input field errors"
825
  msgstr "入力フィールド・エラー用のプレースホルダ色"
826
 
827
- #: contact_form.php:1924
828
  msgid "Input fields"
829
  msgstr "フィールドを入力"
830
 
831
- #: contact_form.php:1929
832
  msgid "Input fields background color"
833
  msgstr "フィールドの背景色の入力"
834
 
835
- #: contact_form.php:1934
836
  msgid "Text fields color"
837
  msgstr "文字フィールド色"
838
 
839
- #: contact_form.php:1938
840
  msgid "Border width in px, numbers only"
841
  msgstr "罫線幅(px単位)、数値のみ"
842
 
843
- #: contact_form.php:1943 contact_form.php:1967
844
  msgid "Border color"
845
  msgstr "罫線色"
846
 
847
- #: contact_form.php:1948
848
  msgid "Submit button"
849
  msgstr "送信ボタン"
850
 
851
- #: contact_form.php:1952
852
  msgid "Width in px, numbers only"
853
  msgstr "px単位の幅、数字のみ"
854
 
855
- #: contact_form.php:1957
856
  msgid "Button color"
857
  msgstr "ボタンの色"
858
 
859
- #: contact_form.php:1962
860
  msgid "Button text color"
861
  msgstr "ボタン文字の色"
862
 
863
- #: contact_form.php:1994
864
  #, fuzzy
865
  msgid "Contact Form | Preview"
866
  msgstr "Contact Form Pro | プレビュー"
867
 
868
- #: contact_form.php:1995
869
  msgid "Drag the necessary field to sort fields."
870
  msgstr ""
871
 
872
- #: contact_form.php:2200
 
873
  msgid ""
874
  "If you would like to add the Contact Form to your website, just copy and "
875
- "paste this shortcode to your post or page or widget:"
876
  msgstr ""
877
  "Contact Formをあなたのサイトに追加したい場合は、このショートカットを投稿、"
878
  "ページ又はウェジットにコピーして貼り付けるだけです:"
879
 
880
- #: contact_form.php:2297
881
  msgid "Sorry, email message could not be delivered."
882
  msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
883
 
884
- #: contact_form.php:2777 contact_form.php:2779
885
  msgid "Sent from (ip address)"
886
  msgstr "送信された(IP-Adresse)"
887
 
888
- #: contact_form.php:2804
889
  msgid "Contact from"
890
  msgstr "Contact Form"
891
 
892
- #: contact_form.php:2826 contact_form.php:2856
893
- msgid "Phone"
894
- msgstr "電話"
895
-
896
- #: contact_form.php:2837 contact_form.php:2863
897
  msgid "Site"
898
  msgstr "サイト"
899
 
900
- #: contact_form.php:2956
901
  msgid ""
902
  "If you can see this MIME, it means that the MIME type is not supported by "
903
  "your email client!"
904
  msgstr "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
905
 
906
- #: contact_form.php:3039
907
  msgid "FAQ"
908
  msgstr "FAQ"
909
 
910
- #: contact_form.php:3040
911
  msgid "Support"
912
  msgstr "サポート"
913
 
914
- #: contact_form.php:3089
915
  msgid "Are you sure that you want to delete this language data?"
916
  msgstr "本当に、この言語データを削除しますか?"
917
 
918
- #: contact_form.php:3110
919
  #, fuzzy
920
  msgid "Add multiple forms"
921
  msgstr "フォームに追加"
922
 
923
- #: contact_form.php:3110
924
  msgid ""
925
  "Install Contact Form Multi plugin to create unlimited number of contact "
926
  "forms."
927
  msgstr ""
928
 
929
- #: contact_form.php:3115
930
  msgid "Learn more"
931
  msgstr "もっと学ぶ"
932
 
933
- #: contact_form.php:3320
934
  msgid "Close notice"
935
  msgstr ""
936
 
937
- #: contact_form.php:3325
938
  #, fuzzy
939
  msgid "allows to store your messages to the database."
940
  msgstr ""
941
  "<strong>Contact Form to DB</strong>は、貴方のメッセージをデータベースに保存し"
942
  "ます。"
943
 
944
- #: contact_form.php:3326
945
  msgid "Manage messages that have been sent from your website."
946
  msgstr "貴方のウェブサイトから送られるメッセージを管理"
947
 
948
- #: contact_form.php:3384
949
  #, fuzzy
950
  msgid "Contact form"
951
  msgstr "Contact Form"
952
 
953
- #: contact_form.php:3397 contact_form.php:3407
954
  #, fuzzy
955
  msgid "Language"
956
  msgstr "言語の追加"
957
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
958
  #~ msgid "To send mail you can use the php mail function"
959
  #~ msgstr "メールを送信するには、phpメール機能が利用できます"
960
 
@@ -1131,9 +1141,6 @@ msgstr "言語の追加"
1131
  #~ msgid "Please, go to"
1132
  #~ msgstr "どうかお進み下さい:"
1133
 
1134
- #~ msgid "the setting page"
1135
- #~ msgstr "設定ページ"
1136
-
1137
  #~ msgid "You will be redirected automatically in 5 seconds."
1138
  #~ msgstr "5秒後に自動的に転送されます。"
1139
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-12 17:23+0300\n"
6
+ "PO-Revision-Date: 2016-07-12 17:23+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: foken <foken@gmx.com>\n"
9
  "Language: ja_JP\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:37 contact_form.php:1118
20
  msgid "Contact Form Settings"
21
  msgstr "Contact Form設定"
22
 
24
  msgid "Contact Form"
25
  msgstr "Contact Form"
26
 
27
+ #: contact_form.php:167 contact_form.php:1294 contact_form.php:1353
28
+ #: contact_form.php:1746 contact_form.php:1784 contact_form.php:2033
29
+ #: contact_form.php:3113 contact_form.php:3159
30
+ msgid "Name"
31
+ msgstr "名前"
32
 
33
+ #: contact_form.php:168 contact_form.php:1400 contact_form.php:1747
34
+ #: contact_form.php:1785 contact_form.php:2038 contact_form.php:3120
35
+ #: contact_form.php:3165
36
+ msgid "Address"
37
+ msgstr "住所"
38
 
39
+ #: contact_form.php:169 contact_form.php:1416 contact_form.php:1748
40
+ #: contact_form.php:1786
41
+ msgid "Email Address"
42
+ msgstr "Eメール・アドレス"
43
 
44
+ #: contact_form.php:170 contact_form.php:1439 contact_form.php:1749
45
+ #: contact_form.php:1787
46
+ msgid "Phone number"
47
+ msgstr "電話番号"
48
 
49
+ #: contact_form.php:171 contact_form.php:1455 contact_form.php:1750
50
+ #: contact_form.php:1788 contact_form.php:2053 contact_form.php:3131
51
+ #: contact_form.php:3174
52
+ msgid "Subject"
53
+ msgstr "件名"
54
 
55
+ #: contact_form.php:172 contact_form.php:1479 contact_form.php:1751
56
+ #: contact_form.php:1789 contact_form.php:2057 contact_form.php:3136
57
+ #: contact_form.php:3178
58
+ msgid "Message"
59
+ msgstr "メッセージ"
60
 
61
+ #: contact_form.php:173 contact_form.php:1752 contact_form.php:1790
62
+ #: contact_form.php:2062
63
+ msgid "Attachment"
64
+ msgstr "添付"
65
 
66
+ #: contact_form.php:174
67
  msgid ""
68
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
69
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
71
  "サポートしてるファイル形式: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
72
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
73
 
74
+ #: contact_form.php:175 contact_form.php:1754 contact_form.php:1792
75
  msgid "Send me a copy"
76
  msgstr "コピーを自分に送る"
77
 
78
+ #: contact_form.php:176 contact_form.php:1755 contact_form.php:1793
79
  msgid "Submit"
80
  msgstr "送信"
81
 
82
+ #: contact_form.php:177
83
  msgid "Your name is required."
84
  msgstr "名前は必須です。"
85
 
86
+ #: contact_form.php:178
87
  msgid "Address is required."
88
  msgstr "住所が必要です。"
89
 
90
+ #: contact_form.php:179
91
  msgid "A valid email address is required."
92
  msgstr "有効なEメールアドレスlが必須です。"
93
 
94
+ #: contact_form.php:180
95
  msgid "Phone number is required."
96
  msgstr "電話番号は必須です。"
97
 
98
+ #: contact_form.php:181
99
  msgid "Subject is required."
100
  msgstr "件名は必須です。"
101
 
102
+ #: contact_form.php:182
103
  msgid "Message text is required."
104
  msgstr "メッセージ本文は必須です。"
105
 
106
+ #: contact_form.php:183
107
  msgid "File format is not valid."
108
  msgstr "添付が壊れています。"
109
 
110
+ #: contact_form.php:184
111
  msgid "File upload error."
112
  msgstr "ファイル・アップロード・エラー。"
113
 
114
+ #: contact_form.php:185
115
  msgid "The file could not be uploaded."
116
  msgstr "ファイルは、アップロード出来ませんでした。"
117
 
118
+ #: contact_form.php:186
119
  msgid "This file is too large."
120
  msgstr "このファイルは大きすぎます。"
121
 
122
+ #: contact_form.php:187
123
  msgid "Please fill out the CAPTCHA."
124
  msgstr "CAPTCHAを入力して下さい。"
125
 
126
+ #: contact_form.php:188
127
  msgid "Please make corrections below and try again."
128
  msgstr "以下を修正し、再度試して下さい。"
129
 
130
+ #: contact_form.php:190
131
  msgid "Thank you for contacting us."
132
  msgstr "ご連絡ありがとうございます"
133
 
134
+ #: contact_form.php:824 contact_form.php:1076
135
  msgid "Settings saved."
136
  msgstr "設定保存."
137
 
138
+ #: contact_form.php:1021
139
  msgid ""
140
  "Email 'FROM' field option was changed, which may cause email messages being "
141
  "moved to the spam folder or email delivery failures."
142
  msgstr ""
143
 
144
+ #: contact_form.php:1031
145
  msgid ""
146
  "If the 'Redirect to page' option is selected then the URL field should be in "
147
  "the following format"
149
  "’ページに転送’オプションを選択した場合は、URLフィールドが、以下の形式になりま"
150
  "す"
151
 
152
+ #: contact_form.php:1038
153
  msgid "Such user does not exist."
154
  msgstr "そのようなユーザは存在しません。"
155
 
156
+ #: contact_form.php:1048
157
  msgid ""
158
  "Please enter a valid email address in the 'Use this email address' field."
159
  msgstr ""
160
  "'このEメールアドレスを使用'フィールドに有効化なEメール・アドレスを入力して下"
161
  "さい。"
162
 
163
+ #: contact_form.php:1056
164
  msgid "Please enter a valid email address in the 'FROM' field."
165
  msgstr "'送信者'フィールドに有効なEメールアドレスを入力して下さい。"
166
 
167
+ #: contact_form.php:1078
168
  msgid "Settings are not saved."
169
  msgstr "設定は保存さていません。"
170
 
171
+ #: contact_form.php:1115
172
  msgid "All plugin settings were restored."
173
  msgstr ""
174
 
175
+ #: contact_form.php:1120
176
  msgid "How to Use Step-by-step Instruction"
177
  msgstr ""
178
 
179
+ #: contact_form.php:1123 contact_form.php:3351 contact_form.php:3365
180
  msgid "Settings"
181
  msgstr "設定"
182
 
183
+ #: contact_form.php:1124
184
  #, fuzzy
185
  msgid "Additional settings"
186
  msgstr "追加オプション"
187
 
188
+ #: contact_form.php:1125
189
  msgid "Appearance"
190
  msgstr ""
191
 
192
+ #: contact_form.php:1126
193
  msgid "Custom code"
194
  msgstr ""
195
 
196
+ #: contact_form.php:1127
197
  msgid "Go PRO"
198
  msgstr "PROに進む"
199
 
200
+ #: contact_form.php:1136
201
  #, fuzzy
202
+ msgid "Notice"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
203
  msgstr "通知:"
204
 
205
+ #: contact_form.php:1140
206
  msgid "NEW_FORM"
207
  msgstr ""
208
 
209
+ #: contact_form.php:1141
210
  msgid ""
211
  "If you want to create multiple contact forms, please install the Contact "
212
  "Form Multi plugin."
214
  "複数のコンタクトフォームを作成したい場合は、Contact Form Multiプラグインを導"
215
  "入して下さい。"
216
 
217
+ #: contact_form.php:1150
218
  #, fuzzy, php-format
219
  msgid ""
220
  "If you would like to add a Contact Form to your page or post, please use %s "
223
  "Contact Formをあなたのサイトに追加したい場合は、このショートカットを投稿、"
224
  "ページ又はウェジットにコピーして貼り付けるだけです:"
225
 
226
+ #: contact_form.php:1156
227
  #, php-format
228
  msgid ""
229
  "You can add the Contact Form to your page or post by clicking on %s button "
232
  "language."
233
  msgstr ""
234
 
235
+ #: contact_form.php:1165
236
  msgid ""
237
  "If you leave the fields empty, the messages will be sent to the email "
238
  "address specified during registration."
240
  "以下の項目の情報が空欄の場合、登録の際に記述したアドレスにメッセージが送られ"
241
  "ます。"
242
 
243
+ #: contact_form.php:1168
244
+ #, fuzzy
245
+ msgid "The user's email address"
246
  msgstr "wordpressユーザのEメールを利用r:"
247
 
248
+ #: contact_form.php:1172
249
  #, fuzzy
250
  msgid "Select a username"
251
  msgstr "ユーザ名の選択"
252
 
253
+ #: contact_form.php:1185
254
+ #, fuzzy
255
  msgid ""
256
+ "Select a username of the person who should get the messages from the contact "
257
  "form."
258
  msgstr "コンタクトフォームからメッセージを受け取る方のユーザ名を入力。"
259
 
260
+ #: contact_form.php:1189
261
+ #, fuzzy
262
+ msgid "Use this email address"
263
  msgstr "このEメールを利用:"
264
 
265
+ #: contact_form.php:1193
266
+ #, fuzzy
267
+ msgid "Enter the email address for receiving messages"
268
  msgstr "メッセージ受信用のEメールを設定。"
269
 
270
+ #: contact_form.php:1200 contact_form.php:1663 contact_form.php:1873
271
+ #: contact_form.php:1961 contact_form.php:3446
272
  msgid "Close"
273
  msgstr ""
274
 
275
+ #: contact_form.php:1204
276
+ #, fuzzy
277
+ msgid "Add department selectbox to the contact form"
278
  msgstr "部署選択ボックスをコンタクトフォームに追加:"
279
 
280
+ #: contact_form.php:1212 contact_form.php:1672 contact_form.php:1892
281
+ #: contact_form.php:2167
282
  msgid "If you upgrade to Pro version all your settings will be saved."
283
  msgstr "PROバージョンにアップグレードすると、設定が保存されます。"
284
 
285
+ #: contact_form.php:1219 contact_form.php:1509 contact_form.php:1677
286
+ #: contact_form.php:1899 contact_form.php:2174
287
  #, fuzzy
288
  msgid "Unlock premium options by upgrading to Pro version"
289
  msgstr ""
290
  "PROバージョンにアップグレードすることにより、プレミアム・オプションが解除され"
291
  "ます。"
292
 
293
+ #: contact_form.php:1222 contact_form.php:1512 contact_form.php:1680
294
+ #: contact_form.php:1902 contact_form.php:2177 contact_form.php:3672
295
  msgid "Learn More"
296
  msgstr "もっと学ぶ"
297
 
298
+ #: contact_form.php:1230
299
  msgid "Save emails to the database"
300
  msgstr "メールをデータベースに保存"
301
 
302
+ #: contact_form.php:1241 contact_form.php:1255 contact_form.php:1262
303
  msgid "Using"
304
  msgstr "使用中"
305
 
306
+ #: contact_form.php:1247 contact_form.php:1572 contact_form.php:1605
307
+ #: contact_form.php:1640
308
+ msgid "Please activate the appropriate option on"
309
+ msgstr ""
310
+
311
+ #: contact_form.php:1250 contact_form.php:1575 contact_form.php:1608
312
+ #: contact_form.php:1643
313
  #, fuzzy
314
+ msgid "settings page"
315
+ msgstr "設定ページ"
316
 
317
+ #: contact_form.php:1256 contact_form.php:1581 contact_form.php:1615
318
+ #: contact_form.php:1651
319
  msgid "Activate"
320
  msgstr "有効化"
321
 
322
+ #: contact_form.php:1263 contact_form.php:1587 contact_form.php:1621
323
+ #: contact_form.php:1656
324
  msgid "Download"
325
  msgstr "ダウンロード"
326
 
327
+ #: contact_form.php:1275
328
+ msgid "Sending method"
329
+ msgstr ""
330
 
331
+ #: contact_form.php:1280
332
  msgid "Wp-mail"
333
  msgstr "WPメール"
334
 
335
+ #: contact_form.php:1282
336
  #, fuzzy
337
  msgid "You can use the Wordpress wp_mail function for mailing"
338
  msgstr "メールにwp_mali機能が利用できます"
339
 
340
+ #: contact_form.php:1285
341
  msgid "Mail"
342
  msgstr "メール"
343
 
344
+ #: contact_form.php:1287
345
  #, fuzzy
346
  msgid "You can use the PHP mail function for mailing"
347
  msgstr "メールにwp_mali機能が利用できます"
348
 
349
+ #: contact_form.php:1292
350
  msgid "'FROM' field"
351
  msgstr ""
352
 
353
+ #: contact_form.php:1297
 
 
 
 
 
354
  msgid "User name"
355
  msgstr "ユーザ名"
356
 
357
+ #: contact_form.php:1299
358
  msgid ""
359
  "The name of the user who fills the form will be used in the field 'From'."
360
  msgstr "フォームを入力するユーザの名前が、'送信者'フィールドに使用されます。"
361
 
362
+ #: contact_form.php:1304 contact_form.php:3126 contact_form.php:3170
363
  msgid "Email"
364
  msgstr "Eメール"
365
 
366
+ #: contact_form.php:1307
367
  msgid "User email"
368
  msgstr "ユーザ・Eメール"
369
 
370
+ #: contact_form.php:1309
371
  msgid ""
372
  "The email address of the user who fills the form will be used in the field "
373
  "'From'."
375
  "フォームを入力したユーザのEメール・アドレスは、'送信者'フィールドに使用されま"
376
  "す。"
377
 
378
+ #: contact_form.php:1312
379
  msgid ""
380
  "If this option is changed, email messages may be moved to the spam folder or "
381
  "email delivery failures may occur."
382
  msgstr ""
383
 
384
+ #: contact_form.php:1318
385
  msgid "Required symbol"
386
  msgstr "必須シンボル"
387
 
388
+ #: contact_form.php:1328
389
  msgid "Fields"
390
  msgstr "フィールド"
391
 
392
+ #: contact_form.php:1329 contact_form.php:1356 contact_form.php:1383
393
+ #: contact_form.php:1403 contact_form.php:1442 contact_form.php:1527
394
  msgid "Used"
395
  msgstr "使用済"
396
 
397
+ #: contact_form.php:1330 contact_form.php:1345 contact_form.php:1360
398
+ #: contact_form.php:1387 contact_form.php:1407 contact_form.php:1420
399
+ #: contact_form.php:1446 contact_form.php:1459 contact_form.php:1483
400
  msgid "Required"
401
  msgstr "必須"
402
 
403
+ #: contact_form.php:1332 contact_form.php:1365 contact_form.php:1425
404
+ #: contact_form.php:1464 contact_form.php:1488
405
  msgid "Visible"
406
  msgstr "可視"
407
 
408
+ #: contact_form.php:1333 contact_form.php:1369 contact_form.php:1429
409
+ #: contact_form.php:1468 contact_form.php:1492
410
  msgid "Disabled for editing"
411
  msgstr "編集を無効化"
412
 
413
+ #: contact_form.php:1334 contact_form.php:1393 contact_form.php:1472
414
+ #: contact_form.php:1496
415
  msgid "Field's default value"
416
  msgstr "フィールドのデフォルト値"
417
 
418
+ #: contact_form.php:1341
419
  #, fuzzy
420
  msgid "Department selectbox"
421
  msgstr "場所選択ボックス"
422
 
423
+ #: contact_form.php:1373
424
  msgid "Use User's name as a default value if the user is logged in."
425
  msgstr ""
426
 
427
+ #: contact_form.php:1374 contact_form.php:1434
428
  msgid ""
429
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
430
  "in users."
431
  msgstr ""
432
 
433
+ #: contact_form.php:1380
434
  msgid "Location selectbox"
435
  msgstr "場所選択ボックス"
436
 
437
+ #: contact_form.php:1433
 
 
 
 
 
 
 
 
 
438
  msgid "Use User's email as a default value if the user is logged in."
439
  msgstr ""
440
 
441
+ #: contact_form.php:1520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
442
  msgid "Attachment block"
443
  msgstr "添付ブロック"
444
 
445
+ #: contact_form.php:1522
446
  msgid "Users can attach the following file formats"
447
  msgstr "ユーザは、以下のタイプのファイルを添付できる"
448
 
449
+ #: contact_form.php:1540
450
  msgid "Add to the form"
451
  msgstr "フォームに追加"
452
 
453
+ #: contact_form.php:1545
454
  msgid "Tips below the Attachment"
455
  msgstr "添付ファイルの下のチップス"
456
 
457
+ #: contact_form.php:1554
458
  msgid "'Send me a copy' block"
459
  msgstr "'コピーを自分に送る'ブロック"
460
 
461
+ #: contact_form.php:1667
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
462
  msgid "Agreement checkbox"
463
  msgstr "同意のチェックボックス"
464
 
465
+ #: contact_form.php:1667
466
  msgid "Required checkbox for submitting the form"
467
  msgstr "フォームを送信するために必須のチェックボックス"
468
 
469
+ #: contact_form.php:1668
470
  msgid "Optional checkbox"
471
  msgstr "オプションのチェックボックス"
472
 
473
+ #: contact_form.php:1668
474
  msgid "Optional checkbox, the results of which will be displayed in email"
475
  msgstr "オプションのチェックボックス、Eメールに表示される結果"
476
 
477
+ #: contact_form.php:1689
478
  msgid "Delete an attachment file from the server after the email is sent"
479
  msgstr "Eメール送信後、サーバから添付ファイルを削除"
480
 
481
+ #: contact_form.php:1695
482
  msgid "Email in HTML format sending"
483
  msgstr "HTMLフォーマットでメール送信"
484
 
485
+ #: contact_form.php:1699
486
  msgid "Display additional info in the email"
487
  msgstr "メール中に追加情報を表示"
488
 
489
+ #: contact_form.php:1705
490
  #, fuzzy
491
  msgid "Sent from (IP address)"
492
  msgstr "送信された(IP-Adresse)"
493
 
494
+ #: contact_form.php:1705
495
  msgid "Example: Sent from (IP address):\t127.0.0.1"
496
  msgstr "例: 送信された(IP-Adresse):\t127.0.0.1"
497
 
498
+ #: contact_form.php:1706 contact_form.php:3075 contact_form.php:3077
499
  msgid "Date/Time"
500
  msgstr "日時"
501
 
502
+ #: contact_form.php:1706
503
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
504
  msgstr "例: 日時:\tAugust 19, 2013 8:50 pm"
505
 
506
+ #: contact_form.php:1707 contact_form.php:3081 contact_form.php:3083
507
  msgid "Sent from (referer)"
508
  msgstr "送信された(referer)"
509
 
510
+ #: contact_form.php:1707
511
  msgid ""
512
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
513
  msgstr "例: 送信された (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
514
 
515
+ #: contact_form.php:1708 contact_form.php:3087 contact_form.php:3089
516
  msgid "Using (user agent)"
517
  msgstr "利用中の (user agent)"
518
 
519
+ #: contact_form.php:1708
520
  msgid ""
521
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
522
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
524
  "例: 利用中の (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
525
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
526
 
527
+ #: contact_form.php:1713
528
  msgid "Language settings for the field names in the form"
529
  msgstr "フォーム内のフィールド名の言語設定"
530
 
531
+ #: contact_form.php:1722
532
  msgid "Add a language"
533
  msgstr "言語の追加"
534
 
535
+ #: contact_form.php:1726
536
  msgid "Change the names of the contact form fields and error messages"
537
  msgstr "コンタクトフォームのフィールド名及びエラーメッセージを変更"
538
 
539
+ #: contact_form.php:1731 contact_form.php:1827 contact_form.php:2081
540
+ #: contact_form.php:2086 contact_form.php:2096 contact_form.php:2101
541
+ #: contact_form.php:2106 contact_form.php:2111 contact_form.php:2121
542
+ #: contact_form.php:2126 contact_form.php:2135 contact_form.php:2149
543
+ #: contact_form.php:2154 contact_form.php:2159
544
  msgid "Default"
545
  msgstr "標準"
546
 
547
+ #: contact_form.php:1744 contact_form.php:1782
548
  msgid "click to expand/hide the list"
549
  msgstr "クリックして、このリストを展開/隠す"
550
 
551
+ #: contact_form.php:1753 contact_form.php:1791
552
  msgid "Tips below the Attachment block"
553
  msgstr "添付ファイル・ブロックの下のチップス"
554
 
555
+ #: contact_form.php:1756 contact_form.php:1794
556
  msgid "Error message for the Name field"
557
  msgstr "名前フィールド用のエラーメッセージ"
558
 
559
+ #: contact_form.php:1757 contact_form.php:1795
560
  msgid "Error message for the Address field"
561
  msgstr "住所フィールド用のエラーメッセージ"
562
 
563
+ #: contact_form.php:1758 contact_form.php:1796
564
  msgid "Error message for the Email field"
565
  msgstr "Eメール・フィールド用のエラーメッセージ"
566
 
567
+ #: contact_form.php:1759 contact_form.php:1797
568
  msgid "Error message for the Phone field"
569
  msgstr "電話フィールド用のエラーメッセージ"
570
 
571
+ #: contact_form.php:1760 contact_form.php:1798
572
  msgid "Error message for the Subject field"
573
  msgstr "件名フィールド用のエラーメッセージ"
574
 
575
+ #: contact_form.php:1761 contact_form.php:1799
576
  msgid "Error message for the Message field"
577
  msgstr "メッセージ・フィールド用のエラーメッセージ"
578
 
579
+ #: contact_form.php:1762 contact_form.php:1800
580
  msgid "Error message about the file type for the Attachment field"
581
  msgstr "添付フィールド用の拡張子タイプに関するエラーメッセージ"
582
 
583
+ #: contact_form.php:1763 contact_form.php:1801
584
  msgid ""
585
  "Error message while uploading a file for the Attachment field to the server"
586
  msgstr "添付フィールド用のファイルをサーバにアップロード中のエラーメッセージ"
587
 
588
+ #: contact_form.php:1764 contact_form.php:1802
589
  msgid "Error message while moving the file for the Attachment field"
590
  msgstr "添付フィールド用のファイルを移動中のエラーメッセージ"
591
 
592
+ #: contact_form.php:1765 contact_form.php:1803
593
  msgid "Error message when file size limit for the Attachment field is exceeded"
594
  msgstr "添付フィールド用のファイルサイズ制限を超した場合のエラーメッセージ"
595
 
596
+ #: contact_form.php:1766 contact_form.php:1804
597
  msgid "Error message for the Captcha field"
598
  msgstr "Captcha フィールド用のエラーメッセージ"
599
 
600
+ #: contact_form.php:1767 contact_form.php:1805
601
  msgid "Error message for the whole form"
602
  msgstr "全体フォーム用のエラーメッセージ"
603
 
604
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
605
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
606
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
607
+ #: contact_form.php:3516
608
  msgid "Use shortcode"
609
  msgstr "短いコードの利用"
610
 
611
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
612
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
613
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
614
+ #: contact_form.php:3516
615
  msgid "for this language"
616
  msgstr "この言語用に"
617
 
618
+ #: contact_form.php:1818
619
  msgid "Use the changed names of the contact form fields in the email"
620
  msgstr "Eメール内のコンタクトフォーム・フィールドの変更された名前を使用"
621
 
622
+ #: contact_form.php:1824
623
  msgid "Action after email is sent"
624
  msgstr "メール送信後の動作"
625
 
626
+ #: contact_form.php:1826
627
  msgid "Display text"
628
  msgstr "テキストを表示"
629
 
630
+ #: contact_form.php:1840 contact_form.php:1854
631
  msgid "Text"
632
  msgstr "文字"
633
 
634
+ #: contact_form.php:1865
635
  msgid "Redirect to the page"
636
  msgstr "ページに転送"
637
 
638
+ #: contact_form.php:1866
639
  msgid "Url"
640
  msgstr "Url"
641
 
642
+ #: contact_form.php:1877
643
  msgid "Add field 'Reply-To' to the email header"
644
  msgstr ""
645
 
646
+ #: contact_form.php:1879
647
  msgid "Field 'Reply-To' will be initialized by user email"
648
  msgstr ""
649
 
650
+ #: contact_form.php:1883
651
  msgid "Auto Response"
652
  msgstr "自動応答"
653
 
654
+ #: contact_form.php:1887
655
  #, php-format
656
  msgid ""
657
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
662
  "表示するために%%NAME%%を、メッセージフィールドからデータを表示するため"
663
  "に%%MESSAGE%%が利用することが出来ます。"
664
 
665
+ #: contact_form.php:1912 contact_form.php:2398
666
  msgid "Save Changes"
667
  msgstr "変更保存"
668
 
669
+ #: contact_form.php:1925
670
  #, php-format
671
  msgid ""
672
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
673
  msgstr ""
674
 
675
+ #: contact_form.php:1925 contact_form.php:1934
676
+ msgid "Form layout"
677
+ msgstr ""
678
+
679
+ #: contact_form.php:1925 contact_form.php:1946
680
+ #, fuzzy
681
+ msgid "Submit position"
682
+ msgstr "送信ボタン"
683
+
684
+ #: contact_form.php:1938
685
  msgid "One column"
686
  msgstr ""
687
 
688
+ #: contact_form.php:1941
689
  msgid "Two columns"
690
  msgstr ""
691
 
692
+ #: contact_form.php:1950 contact_form.php:1969 contact_form.php:1987
693
+ #: contact_form.php:2002
694
  msgid "Left"
695
  msgstr ""
696
 
697
+ #: contact_form.php:1953 contact_form.php:1975 contact_form.php:1990
698
+ #: contact_form.php:2008
699
  msgid "Right"
700
  msgstr ""
701
 
702
+ #: contact_form.php:1965
703
  msgid "Form align"
704
  msgstr ""
705
 
706
+ #: contact_form.php:1972 contact_form.php:2005
707
  msgid "Center"
708
  msgstr ""
709
 
710
+ #: contact_form.php:1980
711
  #, fuzzy
712
  msgid "Labels position"
713
  msgstr "送信ボタン"
714
 
715
+ #: contact_form.php:1984
716
  msgid "Top"
717
  msgstr ""
718
 
719
+ #: contact_form.php:1993
720
  msgid "Bottom"
721
  msgstr ""
722
 
723
+ #: contact_form.php:1998
724
  msgid "Labels align"
725
  msgstr ""
726
 
727
+ #: contact_form.php:2013
728
  msgid "Errors output"
729
  msgstr "エラー出力"
730
 
731
+ #: contact_form.php:2016
732
  msgid "Display error messages"
733
  msgstr "エラーメッセージの表示"
734
 
735
+ #: contact_form.php:2017
736
  msgid "Color of the input field errors."
737
  msgstr "入力フィールド・エラーの色"
738
 
739
+ #: contact_form.php:2018
740
  msgid "Display error messages & color of the input field errors"
741
  msgstr "エラーメッセージと入力フィールド・エラーの色を表示"
742
 
743
+ #: contact_form.php:2023
744
  msgid "Add placeholder to the input blocks"
745
  msgstr "プレースホルダーを入力ブロックに追加"
746
 
747
+ #: contact_form.php:2029
748
  msgid "Add tooltips"
749
  msgstr "ツールチップの追加"
750
 
751
+ #: contact_form.php:2043
752
  msgid "Email address"
753
  msgstr "Eメール・アドレス"
754
 
755
+ #: contact_form.php:2048 contact_form.php:3142 contact_form.php:3183
756
  msgid "Phone Number"
757
  msgstr "電話番号"
758
 
759
+ #: contact_form.php:2074
 
 
 
 
760
  msgid "Style options"
761
  msgstr "スタイル・オプション"
762
 
763
+ #: contact_form.php:2078
764
  msgid "Text color"
765
  msgstr "文字色"
766
 
767
+ #: contact_form.php:2083
768
  msgid "Label text color"
769
  msgstr "ラベル文字色"
770
 
771
+ #: contact_form.php:2088
772
  msgid "Placeholder color"
773
  msgstr "プレースホルダ色"
774
 
775
+ #: contact_form.php:2093
776
  msgid "Errors color"
777
  msgstr "エラーの色"
778
 
779
+ #: contact_form.php:2098
780
  msgid "Error text color"
781
  msgstr "エラーテキストの色"
782
 
783
+ #: contact_form.php:2103
784
  msgid "Background color of the input field errors"
785
  msgstr "入力フィールド・エラーの背景色"
786
 
787
+ #: contact_form.php:2108
788
  msgid "Border color of the input field errors"
789
  msgstr "入力フィールド・エラーの罫線色"
790
 
791
+ #: contact_form.php:2113
792
  msgid "Placeholder color of the input field errors"
793
  msgstr "入力フィールド・エラー用のプレースホルダ色"
794
 
795
+ #: contact_form.php:2118
796
  msgid "Input fields"
797
  msgstr "フィールドを入力"
798
 
799
+ #: contact_form.php:2123
800
  msgid "Input fields background color"
801
  msgstr "フィールドの背景色の入力"
802
 
803
+ #: contact_form.php:2128
804
  msgid "Text fields color"
805
  msgstr "文字フィールド色"
806
 
807
+ #: contact_form.php:2132
808
  msgid "Border width in px, numbers only"
809
  msgstr "罫線幅(px単位)、数値のみ"
810
 
811
+ #: contact_form.php:2137 contact_form.php:2161
812
  msgid "Border color"
813
  msgstr "罫線色"
814
 
815
+ #: contact_form.php:2142
816
  msgid "Submit button"
817
  msgstr "送信ボタン"
818
 
819
+ #: contact_form.php:2146
820
  msgid "Width in px, numbers only"
821
  msgstr "px単位の幅、数字のみ"
822
 
823
+ #: contact_form.php:2151
824
  msgid "Button color"
825
  msgstr "ボタンの色"
826
 
827
+ #: contact_form.php:2156
828
  msgid "Button text color"
829
  msgstr "ボタン文字の色"
830
 
831
+ #: contact_form.php:2188
832
  #, fuzzy
833
  msgid "Contact Form | Preview"
834
  msgstr "Contact Form Pro | プレビュー"
835
 
836
+ #: contact_form.php:2189
837
  msgid "Drag the necessary field to sort fields."
838
  msgstr ""
839
 
840
+ #: contact_form.php:2385
841
+ #, fuzzy
842
  msgid ""
843
  "If you would like to add the Contact Form to your website, just copy and "
844
+ "paste this shortcode to your post or page or widget"
845
  msgstr ""
846
  "Contact Formをあなたのサイトに追加したい場合は、このショートカットを投稿、"
847
  "ページ又はウェジットにコピーして貼り付けるだけです:"
848
 
849
+ #: contact_form.php:2501
850
  msgid "Sorry, email message could not be delivered."
851
  msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
852
 
853
+ #: contact_form.php:3069 contact_form.php:3071
854
  msgid "Sent from (ip address)"
855
  msgstr "送信された(IP-Adresse)"
856
 
857
+ #: contact_form.php:3099
858
  msgid "Contact from"
859
  msgstr "Contact Form"
860
 
861
+ #: contact_form.php:3104 contact_form.php:3153
 
 
 
 
862
  msgid "Site"
863
  msgstr "サイト"
864
 
865
+ #: contact_form.php:3283
866
  msgid ""
867
  "If you can see this MIME, it means that the MIME type is not supported by "
868
  "your email client!"
869
  msgstr "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
870
 
871
+ #: contact_form.php:3366
872
  msgid "FAQ"
873
  msgstr "FAQ"
874
 
875
+ #: contact_form.php:3367
876
  msgid "Support"
877
  msgstr "サポート"
878
 
879
+ #: contact_form.php:3416
880
  msgid "Are you sure that you want to delete this language data?"
881
  msgstr "本当に、この言語データを削除しますか?"
882
 
883
+ #: contact_form.php:3437
884
  #, fuzzy
885
  msgid "Add multiple forms"
886
  msgstr "フォームに追加"
887
 
888
+ #: contact_form.php:3437
889
  msgid ""
890
  "Install Contact Form Multi plugin to create unlimited number of contact "
891
  "forms."
892
  msgstr ""
893
 
894
+ #: contact_form.php:3442
895
  msgid "Learn more"
896
  msgstr "もっと学ぶ"
897
 
898
+ #: contact_form.php:3663
899
  msgid "Close notice"
900
  msgstr ""
901
 
902
+ #: contact_form.php:3668
903
  #, fuzzy
904
  msgid "allows to store your messages to the database."
905
  msgstr ""
906
  "<strong>Contact Form to DB</strong>は、貴方のメッセージをデータベースに保存し"
907
  "ます。"
908
 
909
+ #: contact_form.php:3669
910
  msgid "Manage messages that have been sent from your website."
911
  msgstr "貴方のウェブサイトから送られるメッセージを管理"
912
 
913
+ #: contact_form.php:3727
914
  #, fuzzy
915
  msgid "Contact form"
916
  msgstr "Contact Form"
917
 
918
+ #: contact_form.php:3740 contact_form.php:3750
919
  #, fuzzy
920
  msgid "Language"
921
  msgstr "言語の追加"
922
 
923
+ #~ msgid "Name:"
924
+ #~ msgstr "名前:"
925
+
926
+ #~ msgid "Address:"
927
+ #~ msgstr "住所:"
928
+
929
+ #~ msgid "Email Address:"
930
+ #~ msgstr "Eメール:"
931
+
932
+ #~ msgid "Phone number:"
933
+ #~ msgstr "電話番号:"
934
+
935
+ #~ msgid "Subject:"
936
+ #~ msgstr "件名:"
937
+
938
+ #~ msgid "Message:"
939
+ #~ msgstr "メッセージ:"
940
+
941
+ #~ msgid "Attachment:"
942
+ #~ msgstr "添付:"
943
+
944
+ #, fuzzy
945
+ #~ msgid ""
946
+ #~ "Please enable JavaScript to add language in the contact form, change the "
947
+ #~ "names of the contact form fields and error messages."
948
+ #~ msgstr "コンタクトフォームのフィールド名及びエラーメッセージを変更"
949
+
950
+ #~ msgid "What to use?"
951
+ #~ msgstr "何を使用?"
952
+
953
+ #, fuzzy
954
+ #~ msgid "Using Contact Form to DB by BestWebSoft"
955
+ #~ msgstr "利用 Contact Form to DB powered by"
956
+
957
+ #, fuzzy
958
+ #~ msgid "Activate Captcha"
959
+ #~ msgstr "有効なcaptcha"
960
+
961
+ #, fuzzy
962
+ #~ msgid "Download Captcha"
963
+ #~ msgstr "captchaをダウンロード"
964
+
965
+ #~ msgid "Phone"
966
+ #~ msgstr "電話"
967
+
968
  #~ msgid "To send mail you can use the php mail function"
969
  #~ msgstr "メールを送信するには、phpメール機能が利用できます"
970
 
1141
  #~ msgid "Please, go to"
1142
  #~ msgstr "どうかお進み下さい:"
1143
 
 
 
 
1144
  #~ msgid "You will be redirected automatically in 5 seconds."
1145
  #~ msgstr "5秒後に自動的に転送されます。"
1146
 
languages/contact-form-plugin-nb_NO.mo CHANGED
Binary file
languages/contact-form-plugin-nb_NO.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: 2016-06-27 16:31+0300\n"
6
- "PO-Revision-Date: 2016-06-27 16:31+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Per Rommetveit <bestwebsoftcontact@nordsoft.no>\n"
9
  "Language: nb_NO\n"
@@ -16,7 +16,7 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:37 contact_form.php:1030
20
  msgid "Contact Form Settings"
21
  msgstr "Instillinger for kontaktskjema"
22
 
@@ -24,35 +24,46 @@ msgstr "Instillinger for kontaktskjema"
24
  msgid "Contact Form"
25
  msgstr "Kontaktskjema"
26
 
27
- #: contact_form.php:165 contact_form.php:1565 contact_form.php:1599
28
- msgid "Name:"
29
- msgstr "Navn:"
 
 
30
 
31
- #: contact_form.php:166 contact_form.php:1566 contact_form.php:1600
32
- msgid "Address:"
33
- msgstr "Adresse:"
 
 
34
 
35
- #: contact_form.php:167 contact_form.php:1567 contact_form.php:1601
36
- msgid "Email Address:"
37
- msgstr "E-post:"
 
38
 
39
- #: contact_form.php:168 contact_form.php:1568 contact_form.php:1602
40
- msgid "Phone number:"
41
- msgstr "Telefon:"
 
42
 
43
- #: contact_form.php:169 contact_form.php:1569 contact_form.php:1603
44
- msgid "Subject:"
45
- msgstr "Tema:"
 
 
46
 
47
- #: contact_form.php:170 contact_form.php:1570 contact_form.php:1604
48
- msgid "Message:"
49
- msgstr "Melding:"
 
 
50
 
51
- #: contact_form.php:171 contact_form.php:1571 contact_form.php:1605
52
- msgid "Attachment:"
53
- msgstr "Vedheng:"
 
54
 
55
- #: contact_form.php:172
56
  msgid ""
57
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
58
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -60,77 +71,77 @@ msgstr ""
60
  "Støttede filtyper: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, "
61
  "PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
62
 
63
- #: contact_form.php:173 contact_form.php:1573 contact_form.php:1607
64
  msgid "Send me a copy"
65
  msgstr "Send meg en kopi"
66
 
67
- #: contact_form.php:174 contact_form.php:1574 contact_form.php:1608
68
  msgid "Submit"
69
  msgstr "Send"
70
 
71
- #: contact_form.php:175
72
  msgid "Your name is required."
73
  msgstr "Navn er obligatorisk."
74
 
75
- #: contact_form.php:176
76
  msgid "Address is required."
77
  msgstr "Adresse er påkrevet."
78
 
79
- #: contact_form.php:177
80
  msgid "A valid email address is required."
81
  msgstr "Gyldig e-post adresse er nødvendig."
82
 
83
- #: contact_form.php:178
84
  msgid "Phone number is required."
85
  msgstr "Telefon er nødvendig."
86
 
87
- #: contact_form.php:179
88
  msgid "Subject is required."
89
  msgstr "Tema er nødvendig."
90
 
91
- #: contact_form.php:180
92
  msgid "Message text is required."
93
  msgstr "Meldingsinnhold er nødvendig."
94
 
95
- #: contact_form.php:181
96
  msgid "File format is not valid."
97
  msgstr "Filformat er ikke gyldig"
98
 
99
- #: contact_form.php:182
100
  msgid "File upload error."
101
  msgstr "Feil ved opplasting av fil."
102
 
103
- #: contact_form.php:183
104
  msgid "The file could not be uploaded."
105
  msgstr "Filen kunne ikke lastes opp."
106
 
107
- #: contact_form.php:184
108
  msgid "This file is too large."
109
  msgstr "Filen er for stor."
110
 
111
- #: contact_form.php:185
112
  msgid "Please fill out the CAPTCHA."
113
  msgstr "Vennligst fyll ut CAPTCHA."
114
 
115
- #: contact_form.php:186
116
  msgid "Please make corrections below and try again."
117
  msgstr "Vennligst gjør korrigeringer, og prøv igjen."
118
 
119
- #: contact_form.php:188
120
  msgid "Thank you for contacting us."
121
  msgstr "Takk for at du kontakter oss."
122
 
123
- #: contact_form.php:688 contact_form.php:998
124
  msgid "Settings saved."
125
  msgstr "Instillinger lagret."
126
 
127
- #: contact_form.php:940
128
  msgid ""
129
  "Email 'FROM' field option was changed, which may cause email messages being "
130
  "moved to the spam folder or email delivery failures."
131
  msgstr ""
132
 
133
- #: contact_form.php:950
134
  msgid ""
135
  "If the 'Redirect to page' option is selected then the URL field should be in "
136
  "the following format"
@@ -138,78 +149,63 @@ msgstr ""
138
  "Dersom 'Videresend til side' instilling er valgt, så skal URL feltet være i "
139
  "følgende format"
140
 
141
- #: contact_form.php:957
142
  msgid "Such user does not exist."
143
  msgstr "En slik bruker eksisterer ikke."
144
 
145
- #: contact_form.php:967
146
  msgid ""
147
  "Please enter a valid email address in the 'Use this email address' field."
148
  msgstr ""
149
  "Vennligst skriv inn en gyldig e-postadresse i 'Bruk denne e-posten' feltet."
150
 
151
- #: contact_form.php:975
152
  msgid "Please enter a valid email address in the 'FROM' field."
153
  msgstr "Vennligst skriv inn en gyldig e-post i 'FRA' feltet."
154
 
155
- #: contact_form.php:1000
156
  msgid "Settings are not saved."
157
  msgstr "Instillinger er ikke lagret."
158
 
159
- #: contact_form.php:1027
160
  msgid "All plugin settings were restored."
161
  msgstr ""
162
 
163
- #: contact_form.php:1032
164
  msgid "How to Use Step-by-step Instruction"
165
  msgstr ""
166
 
167
- #: contact_form.php:1035 contact_form.php:3024 contact_form.php:3038
168
  msgid "Settings"
169
  msgstr "Instillinger"
170
 
171
- #: contact_form.php:1036
172
  #, fuzzy
173
  msgid "Additional settings"
174
  msgstr "Ekstrainstillinger"
175
 
176
- #: contact_form.php:1037
177
  msgid "Appearance"
178
  msgstr ""
179
 
180
- #: contact_form.php:1038
181
  msgid "Custom code"
182
  msgstr ""
183
 
184
- #: contact_form.php:1039
185
  msgid "Go PRO"
186
  msgstr "Go PRO"
187
 
188
- #: contact_form.php:1045
189
  #, fuzzy
190
- msgid ""
191
- "Please enable JavaScript to add language in the contact form, change the "
192
- "names of the contact form fields and error messages."
193
- msgstr "Endre navnene på kontaktskjemafeltene og feilmeldingene"
194
-
195
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1740
196
- msgid "Form layout"
197
- msgstr ""
198
-
199
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1752
200
- #, fuzzy
201
- msgid "Submit position"
202
- msgstr "Send knapp"
203
-
204
- #: contact_form.php:1057
205
- msgid "Notice:"
206
  msgstr "Notis:"
207
 
208
- #: contact_form.php:1061
209
  msgid "NEW_FORM"
210
  msgstr ""
211
 
212
- #: contact_form.php:1062
213
  msgid ""
214
  "If you want to create multiple contact forms, please install the Contact "
215
  "Form Multi plugin."
@@ -217,7 +213,7 @@ msgstr ""
217
  "Dersom du ønsker å opprette flere kontaktskjema, vennligst installer Contact "
218
  "From Multi plugin"
219
 
220
- #: contact_form.php:1071
221
  #, fuzzy, php-format
222
  msgid ""
223
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -226,7 +222,7 @@ msgstr ""
226
  "Om du ønsker å legge til kontakskjema for din webside, kopier denne "
227
  "shortcoden til din post, side eller widget."
228
 
229
- #: contact_form.php:1077
230
  #, php-format
231
  msgid ""
232
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -235,7 +231,7 @@ msgid ""
235
  "language."
236
  msgstr ""
237
 
238
- #: contact_form.php:1086
239
  msgid ""
240
  "If you leave the fields empty, the messages will be sent to the email "
241
  "address specified during registration."
@@ -243,318 +239,284 @@ msgstr ""
243
  "Om du lar feltene være tomme, vil meldingene bli sent til e-post adresse "
244
  "oppgitt ved registreringen."
245
 
246
- #: contact_form.php:1089
247
- msgid "The user's email address:"
 
248
  msgstr "Brukerens e-post adress:"
249
 
250
- #: contact_form.php:1093
251
  #, fuzzy
252
  msgid "Select a username"
253
  msgstr "Opprett et brukernavn"
254
 
255
- #: contact_form.php:1106
 
256
  msgid ""
257
- "Enter a username of the person who should get the messages from the contact "
258
  "form."
259
  msgstr ""
260
  "Oppgi brukernavn til personen som skal få meldingene fra kontaktskjemaet."
261
 
262
- #: contact_form.php:1110
263
- msgid "Use this email address:"
 
264
  msgstr "Bruk denne e-post adressen:"
265
 
266
- #: contact_form.php:1114
267
- msgid "Enter the email address you want the messages forwarded to."
 
268
  msgstr "Legg inn e-post adressen du ønsker meldingene videresendt til."
269
 
270
- #: contact_form.php:1121 contact_form.php:1487 contact_form.php:1679
271
- #: contact_form.php:1767 contact_form.php:3119
272
  msgid "Close"
273
  msgstr ""
274
 
275
- #: contact_form.php:1125
276
- msgid "Add department selectbox to the contact form:"
 
277
  msgstr "Legg til avdelingssjekkboks til kontaktskjemaet:"
278
 
279
- #: contact_form.php:1133 contact_form.php:1496 contact_form.php:1698
280
- #: contact_form.php:1973
281
  msgid "If you upgrade to Pro version all your settings will be saved."
282
  msgstr ""
283
  "Om du oppgraderer til Pro versjonen, vil alle instillingene dine bli lagret."
284
 
285
- #: contact_form.php:1140 contact_form.php:1407 contact_form.php:1501
286
- #: contact_form.php:1705 contact_form.php:1980
287
  #, fuzzy
288
  msgid "Unlock premium options by upgrading to Pro version"
289
  msgstr "Lås opp ekstrafunksjoner ved å oppgradere til en PRO-versjon."
290
 
291
- #: contact_form.php:1143 contact_form.php:1410 contact_form.php:1504
292
- #: contact_form.php:1708 contact_form.php:1983 contact_form.php:3329
293
  msgid "Learn More"
294
  msgstr "Lær mer"
295
 
296
- #: contact_form.php:1151
297
  msgid "Save emails to the database"
298
  msgstr "Lagre e-poster til databasen."
299
 
300
- #: contact_form.php:1156
301
  msgid "Using"
302
  msgstr "Bruker"
303
 
304
- #: contact_form.php:1159 contact_form.php:1163
 
 
 
 
 
 
305
  #, fuzzy
306
- msgid "Using Contact Form to DB by BestWebSoft"
307
- msgstr "Bruker Contact Form to DB støttet av"
308
 
309
- #: contact_form.php:1159
 
310
  msgid "Activate"
311
  msgstr "Aktiver"
312
 
313
- #: contact_form.php:1163
 
314
  msgid "Download"
315
  msgstr "Завантажити"
316
 
317
- #: contact_form.php:1173
318
- msgid "What to use?"
319
- msgstr "Hva skal brukes?"
320
 
321
- #: contact_form.php:1178
322
  msgid "Wp-mail"
323
  msgstr "Wp-mail"
324
 
325
- #: contact_form.php:1180
326
  #, fuzzy
327
  msgid "You can use the Wordpress wp_mail function for mailing"
328
  msgstr "Du kan bruke wp_mail funksjon for å sende e-post."
329
 
330
- #: contact_form.php:1183
331
  msgid "Mail"
332
  msgstr "E-post"
333
 
334
- #: contact_form.php:1185
335
  #, fuzzy
336
  msgid "You can use the PHP mail function for mailing"
337
  msgstr "Du kan bruke wp_mail funksjon for å sende e-post."
338
 
339
- #: contact_form.php:1190
340
  msgid "'FROM' field"
341
  msgstr ""
342
 
343
- #: contact_form.php:1192 contact_form.php:1251 contact_form.php:1839
344
- #: contact_form.php:2810 contact_form.php:2846
345
- msgid "Name"
346
- msgstr "Navn"
347
-
348
- #: contact_form.php:1195
349
  msgid "User name"
350
  msgstr "Brukernavn"
351
 
352
- #: contact_form.php:1197
353
  msgid ""
354
  "The name of the user who fills the form will be used in the field 'From'."
355
  msgstr ""
356
  "Navnet til brukeren som fyller ut skjema vil bli brukt i 'From'-feltet."
357
 
358
- #: contact_form.php:1202 contact_form.php:2821 contact_form.php:2853
359
  msgid "Email"
360
  msgstr "E-post"
361
 
362
- #: contact_form.php:1205
363
  msgid "User email"
364
  msgstr "Brukers e-post"
365
 
366
- #: contact_form.php:1207
367
  msgid ""
368
  "The email address of the user who fills the form will be used in the field "
369
  "'From'."
370
  msgstr ""
371
  "E-post adresse til bruker som fyller ut skjema vil bli brukt i 'From'-feltet."
372
 
373
- #: contact_form.php:1210
374
  msgid ""
375
  "If this option is changed, email messages may be moved to the spam folder or "
376
  "email delivery failures may occur."
377
  msgstr ""
378
 
379
- #: contact_form.php:1216
380
  msgid "Required symbol"
381
  msgstr "Obligatorisk symbol"
382
 
383
- #: contact_form.php:1226
384
  msgid "Fields"
385
  msgstr "Felt"
386
 
387
- #: contact_form.php:1227 contact_form.php:1254 contact_form.php:1281
388
- #: contact_form.php:1301 contact_form.php:1340 contact_form.php:1425
389
  msgid "Used"
390
  msgstr "Brukt"
391
 
392
- #: contact_form.php:1228 contact_form.php:1243 contact_form.php:1258
393
- #: contact_form.php:1285 contact_form.php:1305 contact_form.php:1318
394
- #: contact_form.php:1344 contact_form.php:1357 contact_form.php:1381
395
  msgid "Required"
396
  msgstr "Obligatorisk"
397
 
398
- #: contact_form.php:1230 contact_form.php:1263 contact_form.php:1323
399
- #: contact_form.php:1362 contact_form.php:1386
400
  msgid "Visible"
401
  msgstr "Synlig"
402
 
403
- #: contact_form.php:1231 contact_form.php:1267 contact_form.php:1327
404
- #: contact_form.php:1366 contact_form.php:1390
405
  msgid "Disabled for editing"
406
  msgstr "Sperret for redigering"
407
 
408
- #: contact_form.php:1232 contact_form.php:1291 contact_form.php:1370
409
- #: contact_form.php:1394
410
  msgid "Field's default value"
411
  msgstr "Feltets standardverdi"
412
 
413
- #: contact_form.php:1239
414
  #, fuzzy
415
  msgid "Department selectbox"
416
  msgstr "Flervalgsboks for sted"
417
 
418
- #: contact_form.php:1271
419
  msgid "Use User's name as a default value if the user is logged in."
420
  msgstr ""
421
 
422
- #: contact_form.php:1272 contact_form.php:1332
423
  msgid ""
424
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
425
  "in users."
426
  msgstr ""
427
 
428
- #: contact_form.php:1278
429
  msgid "Location selectbox"
430
  msgstr "Flervalgsboks for sted"
431
 
432
- #: contact_form.php:1298 contact_form.php:1844 contact_form.php:2816
433
- #: contact_form.php:2850
434
- msgid "Address"
435
- msgstr "Adresse"
436
-
437
- #: contact_form.php:1314
438
- msgid "Email Address"
439
- msgstr "E-post"
440
-
441
- #: contact_form.php:1331
442
  msgid "Use User's email as a default value if the user is logged in."
443
  msgstr ""
444
 
445
- #: contact_form.php:1337
446
- msgid "Phone number"
447
- msgstr "Telefon"
448
-
449
- #: contact_form.php:1353 contact_form.php:1859 contact_form.php:2831
450
- #: contact_form.php:2859
451
- msgid "Subject"
452
- msgstr "Tema"
453
-
454
- #: contact_form.php:1377 contact_form.php:1863 contact_form.php:2834
455
- #: contact_form.php:2861
456
- msgid "Message"
457
- msgstr "Melding"
458
-
459
- #: contact_form.php:1418
460
  msgid "Attachment block"
461
  msgstr "Vedhengsblokk"
462
 
463
- #: contact_form.php:1420
464
  msgid "Users can attach the following file formats"
465
  msgstr "Brukere kan legge ved følgende filformat"
466
 
467
- #: contact_form.php:1438
468
  msgid "Add to the form"
469
  msgstr "Legg til skjemaet"
470
 
471
- #: contact_form.php:1443
472
  msgid "Tips below the Attachment"
473
  msgstr "Tips under vedheng"
474
 
475
- #: contact_form.php:1452
476
  msgid "'Send me a copy' block"
477
  msgstr "'Send meg en kopi' blokk"
478
 
479
- #: contact_form.php:1464
480
- #, fuzzy
481
- msgid "Activate Subscriber"
482
- msgstr "Активовані плагіни"
483
-
484
- #: contact_form.php:1468
485
- msgid "Download Subscriber"
486
- msgstr ""
487
-
488
- #: contact_form.php:1477
489
- #, fuzzy
490
- msgid "Activate Captcha"
491
- msgstr "Aktiver captcha"
492
-
493
- #: contact_form.php:1481
494
- #, fuzzy
495
- msgid "Download Captcha"
496
- msgstr "Last ned captcha"
497
-
498
- #: contact_form.php:1491
499
  msgid "Agreement checkbox"
500
  msgstr "Sjekkboks for vilkår"
501
 
502
- #: contact_form.php:1491
503
  msgid "Required checkbox for submitting the form"
504
  msgstr "Obligatoriske sjekkbokser for å sende inn skjemaet"
505
 
506
- #: contact_form.php:1492
507
  msgid "Optional checkbox"
508
  msgstr "Valgfri sjekkboks"
509
 
510
- #: contact_form.php:1492
511
  msgid "Optional checkbox, the results of which will be displayed in email"
512
  msgstr "Valgfri sjekkboks, resultatene vil bli vist i e-post"
513
 
514
- #: contact_form.php:1513
515
  msgid "Delete an attachment file from the server after the email is sent"
516
  msgstr "Slett vedhengsfil fra server etter at e-posten er sendt."
517
 
518
- #: contact_form.php:1519
519
  msgid "Email in HTML format sending"
520
  msgstr "Send e-post i HTML format"
521
 
522
- #: contact_form.php:1523
523
  msgid "Display additional info in the email"
524
  msgstr "Vis ekstra informasjon i e-posten"
525
 
526
- #: contact_form.php:1529
527
  #, fuzzy
528
  msgid "Sent from (IP address)"
529
  msgstr "Sent fra (ip-adresse)"
530
 
531
- #: contact_form.php:1529
532
  msgid "Example: Sent from (IP address):\t127.0.0.1"
533
  msgstr "Eksempel: Sendt fra (IP adresse):\t127.0.0.1"
534
 
535
- #: contact_form.php:1530 contact_form.php:2783 contact_form.php:2785
536
  msgid "Date/Time"
537
  msgstr "Dato/Tid"
538
 
539
- #: contact_form.php:1530
540
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
541
  msgstr "Eksempel: Dato/Tid:\tAugust 19, 2013 8:50 pm"
542
 
543
- #: contact_form.php:1531 contact_form.php:2789 contact_form.php:2791
544
  msgid "Sent from (referer)"
545
  msgstr "Sent fra (referer)"
546
 
547
- #: contact_form.php:1531
548
  msgid ""
549
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
550
  msgstr ""
551
  "Eksempel: Sent fra (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
552
 
553
- #: contact_form.php:1532 contact_form.php:2795 contact_form.php:2797
554
  msgid "Using (user agent)"
555
  msgstr "Bruker (user agent)"
556
 
557
- #: contact_form.php:1532
558
  msgid ""
559
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
560
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -562,134 +524,134 @@ msgstr ""
562
  "Eksempel: Bruker (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
563
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
564
 
565
- #: contact_form.php:1537
566
  msgid "Language settings for the field names in the form"
567
  msgstr "Språkinstillinger for feltnavn i skjemaet"
568
 
569
- #: contact_form.php:1546
570
  msgid "Add a language"
571
  msgstr "Legg til et språk"
572
 
573
- #: contact_form.php:1550
574
  msgid "Change the names of the contact form fields and error messages"
575
  msgstr "Endre navnene på kontaktskjemafeltene og feilmeldingene"
576
 
577
- #: contact_form.php:1555 contact_form.php:1642 contact_form.php:1887
578
- #: contact_form.php:1892 contact_form.php:1902 contact_form.php:1907
579
- #: contact_form.php:1912 contact_form.php:1917 contact_form.php:1927
580
- #: contact_form.php:1932 contact_form.php:1941 contact_form.php:1955
581
- #: contact_form.php:1960 contact_form.php:1965
582
  msgid "Default"
583
  msgstr "Standard"
584
 
585
- #: contact_form.php:1563 contact_form.php:1597
586
  msgid "click to expand/hide the list"
587
  msgstr "klikk for å ekspandere/gjemme listen"
588
 
589
- #: contact_form.php:1572 contact_form.php:1606
590
  msgid "Tips below the Attachment block"
591
  msgstr "Tips under Vedhengblokken"
592
 
593
- #: contact_form.php:1575 contact_form.php:1609
594
  msgid "Error message for the Name field"
595
  msgstr "Feilmelding for navnefeltet"
596
 
597
- #: contact_form.php:1576 contact_form.php:1610
598
  msgid "Error message for the Address field"
599
  msgstr "Feilmelding for adressefeltet"
600
 
601
- #: contact_form.php:1577 contact_form.php:1611
602
  msgid "Error message for the Email field"
603
  msgstr "Feilmelding for e-post feltet"
604
 
605
- #: contact_form.php:1578 contact_form.php:1612
606
  msgid "Error message for the Phone field"
607
  msgstr "Feilmelding for telefon-feltet"
608
 
609
- #: contact_form.php:1579 contact_form.php:1613
610
  msgid "Error message for the Subject field"
611
  msgstr "Feilmelding for tema-feltet"
612
 
613
- #: contact_form.php:1580 contact_form.php:1614
614
  msgid "Error message for the Message field"
615
  msgstr "Feilmelding for meldingsfeltet"
616
 
617
- #: contact_form.php:1581 contact_form.php:1615
618
  msgid "Error message about the file type for the Attachment field"
619
  msgstr "Feilmelding for filtype til vedhengsfeltet"
620
 
621
- #: contact_form.php:1582 contact_form.php:1616
622
  msgid ""
623
  "Error message while uploading a file for the Attachment field to the server"
624
  msgstr "Feilmelding ved opplasting av fil for vedhengsfeltet til server"
625
 
626
- #: contact_form.php:1583 contact_form.php:1617
627
  msgid "Error message while moving the file for the Attachment field"
628
  msgstr "Feilmedling ved flytting av fil for vedhengsfeltet."
629
 
630
- #: contact_form.php:1584 contact_form.php:1618
631
  msgid "Error message when file size limit for the Attachment field is exceeded"
632
  msgstr "Feilmelding når filstørrelsebegrensning for vedhengsfeltet er nådd"
633
 
634
- #: contact_form.php:1585 contact_form.php:1619
635
  msgid "Error message for the Captcha field"
636
  msgstr "Feilmelding for Captcha-feltet"
637
 
638
- #: contact_form.php:1586 contact_form.php:1620
639
  msgid "Error message for the whole form"
640
  msgstr "Feilmelding for hele skjemaet"
641
 
642
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
643
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
644
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
645
- #: contact_form.php:3179
646
  msgid "Use shortcode"
647
  msgstr "Bruk shortcode"
648
 
649
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
650
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
651
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
652
- #: contact_form.php:3179
653
  msgid "for this language"
654
  msgstr "for dette språket"
655
 
656
- #: contact_form.php:1633
657
  msgid "Use the changed names of the contact form fields in the email"
658
  msgstr "Bruk de endrede navnene i kontaktskjemafeltene i e-posten"
659
 
660
- #: contact_form.php:1639
661
  msgid "Action after email is sent"
662
  msgstr "Handling etter at e-posten er sendt"
663
 
664
- #: contact_form.php:1641
665
  msgid "Display text"
666
  msgstr "Vis tekst"
667
 
668
- #: contact_form.php:1650 contact_form.php:1660
669
  msgid "Text"
670
  msgstr "Tekst"
671
 
672
- #: contact_form.php:1671
673
  msgid "Redirect to the page"
674
  msgstr "Videresend til siden"
675
 
676
- #: contact_form.php:1672
677
  msgid "Url"
678
  msgstr "Url"
679
 
680
- #: contact_form.php:1683
681
  msgid "Add field 'Reply-To' to the email header"
682
  msgstr ""
683
 
684
- #: contact_form.php:1685
685
  msgid "Field 'Reply-To' will be initialized by user email"
686
  msgstr ""
687
 
688
- #: contact_form.php:1689
689
  msgid "Auto Response"
690
  msgstr ""
691
 
692
- #: contact_form.php:1693
693
  #, php-format
694
  msgid ""
695
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -697,205 +659,207 @@ msgid ""
697
  "name."
698
  msgstr ""
699
 
700
- #: contact_form.php:1718 contact_form.php:2213
701
  msgid "Save Changes"
702
  msgstr "Lagre endringer"
703
 
704
- #: contact_form.php:1731
705
  #, php-format
706
  msgid ""
707
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
708
  msgstr ""
709
 
710
- #: contact_form.php:1744
 
 
 
 
 
 
 
 
 
711
  msgid "One column"
712
  msgstr ""
713
 
714
- #: contact_form.php:1747
715
  msgid "Two columns"
716
  msgstr ""
717
 
718
- #: contact_form.php:1756 contact_form.php:1775 contact_form.php:1793
719
- #: contact_form.php:1808
720
  msgid "Left"
721
  msgstr ""
722
 
723
- #: contact_form.php:1759 contact_form.php:1781 contact_form.php:1796
724
- #: contact_form.php:1814
725
  msgid "Right"
726
  msgstr ""
727
 
728
- #: contact_form.php:1771
729
  msgid "Form align"
730
  msgstr ""
731
 
732
- #: contact_form.php:1778 contact_form.php:1811
733
  msgid "Center"
734
  msgstr ""
735
 
736
- #: contact_form.php:1786
737
  #, fuzzy
738
  msgid "Labels position"
739
  msgstr "Send knapp"
740
 
741
- #: contact_form.php:1790
742
  msgid "Top"
743
  msgstr ""
744
 
745
- #: contact_form.php:1799
746
  msgid "Bottom"
747
  msgstr ""
748
 
749
- #: contact_form.php:1804
750
  msgid "Labels align"
751
  msgstr ""
752
 
753
- #: contact_form.php:1819
754
  msgid "Errors output"
755
  msgstr "Feilmelding utdata"
756
 
757
- #: contact_form.php:1822
758
  msgid "Display error messages"
759
  msgstr "Vise feilmeldinger"
760
 
761
- #: contact_form.php:1823
762
  msgid "Color of the input field errors."
763
  msgstr "Farger på feilmeldingene for inputfelt"
764
 
765
- #: contact_form.php:1824
766
  msgid "Display error messages & color of the input field errors"
767
  msgstr "Vis feilmeldinger og farge på inputfeltfeil"
768
 
769
- #: contact_form.php:1829
770
  msgid "Add placeholder to the input blocks"
771
  msgstr "Legg til placeholder på inputblokkene"
772
 
773
- #: contact_form.php:1835
774
  msgid "Add tooltips"
775
  msgstr "Legg til tooltips"
776
 
777
- #: contact_form.php:1849
778
  msgid "Email address"
779
  msgstr "E-post adresse"
780
 
781
- #: contact_form.php:1854
782
  msgid "Phone Number"
783
  msgstr "Telefon"
784
 
785
- #: contact_form.php:1868
786
- msgid "Attachment"
787
- msgstr "Vedheng"
788
-
789
- #: contact_form.php:1880
790
  msgid "Style options"
791
  msgstr "Styleringsopsjoner"
792
 
793
- #: contact_form.php:1884
794
  msgid "Text color"
795
  msgstr "Tekstfarge"
796
 
797
- #: contact_form.php:1889
798
  msgid "Label text color"
799
  msgstr "Tekstfarge på merkelapp"
800
 
801
- #: contact_form.php:1894
802
  msgid "Placeholder color"
803
  msgstr "Placeholder farge"
804
 
805
- #: contact_form.php:1899
806
  msgid "Errors color"
807
  msgstr "Feilmeldingsfarge"
808
 
809
- #: contact_form.php:1904
810
  msgid "Error text color"
811
  msgstr "Tekstfarge på feilmelding"
812
 
813
- #: contact_form.php:1909
814
  msgid "Background color of the input field errors"
815
  msgstr "Bakgrunnsfarge på inputfeltfeil"
816
 
817
- #: contact_form.php:1914
818
  msgid "Border color of the input field errors"
819
  msgstr "Rammefarge på inputfeltfeil"
820
 
821
- #: contact_form.php:1919
822
  msgid "Placeholder color of the input field errors"
823
  msgstr "Placeholderfarge på inputfeltfeil"
824
 
825
- #: contact_form.php:1924
826
  msgid "Input fields"
827
  msgstr "Inputfelt"
828
 
829
- #: contact_form.php:1929
830
  msgid "Input fields background color"
831
  msgstr "Bakgrunnsfarge på inputfelter"
832
 
833
- #: contact_form.php:1934
834
  msgid "Text fields color"
835
  msgstr "Farge på tekstfelter"
836
 
837
- #: contact_form.php:1938
838
  msgid "Border width in px, numbers only"
839
  msgstr "Rammebredde i pixler, kun tall"
840
 
841
- #: contact_form.php:1943 contact_form.php:1967
842
  msgid "Border color"
843
  msgstr "Ramme farge"
844
 
845
- #: contact_form.php:1948
846
  msgid "Submit button"
847
  msgstr "Send knapp"
848
 
849
- #: contact_form.php:1952
850
  msgid "Width in px, numbers only"
851
  msgstr "Bredde i piksler, kun tall"
852
 
853
- #: contact_form.php:1957
854
  msgid "Button color"
855
  msgstr "Knappfarge"
856
 
857
- #: contact_form.php:1962
858
  msgid "Button text color"
859
  msgstr "Farge på knappetekst"
860
 
861
- #: contact_form.php:1994
862
  #, fuzzy
863
  msgid "Contact Form | Preview"
864
  msgstr "Contact Form Pro | Forhåndsvisning"
865
 
866
- #: contact_form.php:1995
867
  msgid "Drag the necessary field to sort fields."
868
  msgstr ""
869
 
870
- #: contact_form.php:2200
 
871
  msgid ""
872
  "If you would like to add the Contact Form to your website, just copy and "
873
- "paste this shortcode to your post or page or widget:"
874
  msgstr ""
875
  "Om du ønsker å legge til kontakskjema for din webside, kopier denne "
876
  "shortcoden til din post, side eller widget."
877
 
878
- #: contact_form.php:2297
879
  msgid "Sorry, email message could not be delivered."
880
  msgstr "Beklager, e-postmelding kunne ikke leveres."
881
 
882
- #: contact_form.php:2777 contact_form.php:2779
883
  msgid "Sent from (ip address)"
884
  msgstr "Sent fra (ip-adresse)"
885
 
886
- #: contact_form.php:2804
887
  msgid "Contact from"
888
  msgstr "Kontaktskjema"
889
 
890
- #: contact_form.php:2826 contact_form.php:2856
891
- msgid "Phone"
892
- msgstr "Telefon"
893
-
894
- #: contact_form.php:2837 contact_form.php:2863
895
  msgid "Site"
896
  msgstr "side"
897
 
898
- #: contact_form.php:2956
899
  msgid ""
900
  "If you can see this MIME, it means that the MIME type is not supported by "
901
  "your email client!"
@@ -903,58 +867,107 @@ msgstr ""
903
  "Om du kan se denne MIME, betyr det at MIME format ikke er støttet av din e-"
904
  "postklient!"
905
 
906
- #: contact_form.php:3039
907
  msgid "FAQ"
908
  msgstr "Часті питання"
909
 
910
- #: contact_form.php:3040
911
  msgid "Support"
912
  msgstr "Support"
913
 
914
- #: contact_form.php:3089
915
  msgid "Are you sure that you want to delete this language data?"
916
  msgstr "Er du sikker på at du ønsker å slette disse språkdatane?"
917
 
918
- #: contact_form.php:3110
919
  #, fuzzy
920
  msgid "Add multiple forms"
921
  msgstr "Legg til skjemaet"
922
 
923
- #: contact_form.php:3110
924
  msgid ""
925
  "Install Contact Form Multi plugin to create unlimited number of contact "
926
  "forms."
927
  msgstr ""
928
 
929
- #: contact_form.php:3115
930
  #, fuzzy
931
  msgid "Learn more"
932
  msgstr "Lær mer"
933
 
934
- #: contact_form.php:3320
935
  msgid "Close notice"
936
  msgstr ""
937
 
938
- #: contact_form.php:3325
939
  #, fuzzy
940
  msgid "allows to store your messages to the database."
941
  msgstr ""
942
  "<strong>Contact Form to DB</strong> lar deg lagre meldinger i databasen."
943
 
944
- #: contact_form.php:3326
945
  msgid "Manage messages that have been sent from your website."
946
  msgstr "Administrer meldinger som har blitt sendt fra din webside."
947
 
948
- #: contact_form.php:3384
949
  #, fuzzy
950
  msgid "Contact form"
951
  msgstr "Kontaktskjema"
952
 
953
- #: contact_form.php:3397 contact_form.php:3407
954
  #, fuzzy
955
  msgid "Language"
956
  msgstr "Legg til et språk"
957
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
958
  #~ msgid "To send mail you can use the php mail function"
959
  #~ msgstr "For å sende e-post kan du bruke php mail funksjon."
960
 
@@ -1127,9 +1140,6 @@ msgstr "Legg til et språk"
1127
  #~ msgid "Please, go to"
1128
  #~ msgstr "Vennligst, gå til"
1129
 
1130
- #~ msgid "the setting page"
1131
- #~ msgstr "siden for instillinger"
1132
-
1133
  #~ msgid "You will be redirected automatically in 5 seconds."
1134
  #~ msgstr "Du vil automatisk viderekobles om 5 sekunder."
1135
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-12 17:22+0300\n"
6
+ "PO-Revision-Date: 2016-07-12 17:22+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Per Rommetveit <bestwebsoftcontact@nordsoft.no>\n"
9
  "Language: nb_NO\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:37 contact_form.php:1118
20
  msgid "Contact Form Settings"
21
  msgstr "Instillinger for kontaktskjema"
22
 
24
  msgid "Contact Form"
25
  msgstr "Kontaktskjema"
26
 
27
+ #: contact_form.php:167 contact_form.php:1294 contact_form.php:1353
28
+ #: contact_form.php:1746 contact_form.php:1784 contact_form.php:2033
29
+ #: contact_form.php:3113 contact_form.php:3159
30
+ msgid "Name"
31
+ msgstr "Navn"
32
 
33
+ #: contact_form.php:168 contact_form.php:1400 contact_form.php:1747
34
+ #: contact_form.php:1785 contact_form.php:2038 contact_form.php:3120
35
+ #: contact_form.php:3165
36
+ msgid "Address"
37
+ msgstr "Adresse"
38
 
39
+ #: contact_form.php:169 contact_form.php:1416 contact_form.php:1748
40
+ #: contact_form.php:1786
41
+ msgid "Email Address"
42
+ msgstr "E-post"
43
 
44
+ #: contact_form.php:170 contact_form.php:1439 contact_form.php:1749
45
+ #: contact_form.php:1787
46
+ msgid "Phone number"
47
+ msgstr "Telefon"
48
 
49
+ #: contact_form.php:171 contact_form.php:1455 contact_form.php:1750
50
+ #: contact_form.php:1788 contact_form.php:2053 contact_form.php:3131
51
+ #: contact_form.php:3174
52
+ msgid "Subject"
53
+ msgstr "Tema"
54
 
55
+ #: contact_form.php:172 contact_form.php:1479 contact_form.php:1751
56
+ #: contact_form.php:1789 contact_form.php:2057 contact_form.php:3136
57
+ #: contact_form.php:3178
58
+ msgid "Message"
59
+ msgstr "Melding"
60
 
61
+ #: contact_form.php:173 contact_form.php:1752 contact_form.php:1790
62
+ #: contact_form.php:2062
63
+ msgid "Attachment"
64
+ msgstr "Vedheng"
65
 
66
+ #: contact_form.php:174
67
  msgid ""
68
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
69
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
71
  "Støttede filtyper: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, "
72
  "PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
73
 
74
+ #: contact_form.php:175 contact_form.php:1754 contact_form.php:1792
75
  msgid "Send me a copy"
76
  msgstr "Send meg en kopi"
77
 
78
+ #: contact_form.php:176 contact_form.php:1755 contact_form.php:1793
79
  msgid "Submit"
80
  msgstr "Send"
81
 
82
+ #: contact_form.php:177
83
  msgid "Your name is required."
84
  msgstr "Navn er obligatorisk."
85
 
86
+ #: contact_form.php:178
87
  msgid "Address is required."
88
  msgstr "Adresse er påkrevet."
89
 
90
+ #: contact_form.php:179
91
  msgid "A valid email address is required."
92
  msgstr "Gyldig e-post adresse er nødvendig."
93
 
94
+ #: contact_form.php:180
95
  msgid "Phone number is required."
96
  msgstr "Telefon er nødvendig."
97
 
98
+ #: contact_form.php:181
99
  msgid "Subject is required."
100
  msgstr "Tema er nødvendig."
101
 
102
+ #: contact_form.php:182
103
  msgid "Message text is required."
104
  msgstr "Meldingsinnhold er nødvendig."
105
 
106
+ #: contact_form.php:183
107
  msgid "File format is not valid."
108
  msgstr "Filformat er ikke gyldig"
109
 
110
+ #: contact_form.php:184
111
  msgid "File upload error."
112
  msgstr "Feil ved opplasting av fil."
113
 
114
+ #: contact_form.php:185
115
  msgid "The file could not be uploaded."
116
  msgstr "Filen kunne ikke lastes opp."
117
 
118
+ #: contact_form.php:186
119
  msgid "This file is too large."
120
  msgstr "Filen er for stor."
121
 
122
+ #: contact_form.php:187
123
  msgid "Please fill out the CAPTCHA."
124
  msgstr "Vennligst fyll ut CAPTCHA."
125
 
126
+ #: contact_form.php:188
127
  msgid "Please make corrections below and try again."
128
  msgstr "Vennligst gjør korrigeringer, og prøv igjen."
129
 
130
+ #: contact_form.php:190
131
  msgid "Thank you for contacting us."
132
  msgstr "Takk for at du kontakter oss."
133
 
134
+ #: contact_form.php:824 contact_form.php:1076
135
  msgid "Settings saved."
136
  msgstr "Instillinger lagret."
137
 
138
+ #: contact_form.php:1021
139
  msgid ""
140
  "Email 'FROM' field option was changed, which may cause email messages being "
141
  "moved to the spam folder or email delivery failures."
142
  msgstr ""
143
 
144
+ #: contact_form.php:1031
145
  msgid ""
146
  "If the 'Redirect to page' option is selected then the URL field should be in "
147
  "the following format"
149
  "Dersom 'Videresend til side' instilling er valgt, så skal URL feltet være i "
150
  "følgende format"
151
 
152
+ #: contact_form.php:1038
153
  msgid "Such user does not exist."
154
  msgstr "En slik bruker eksisterer ikke."
155
 
156
+ #: contact_form.php:1048
157
  msgid ""
158
  "Please enter a valid email address in the 'Use this email address' field."
159
  msgstr ""
160
  "Vennligst skriv inn en gyldig e-postadresse i 'Bruk denne e-posten' feltet."
161
 
162
+ #: contact_form.php:1056
163
  msgid "Please enter a valid email address in the 'FROM' field."
164
  msgstr "Vennligst skriv inn en gyldig e-post i 'FRA' feltet."
165
 
166
+ #: contact_form.php:1078
167
  msgid "Settings are not saved."
168
  msgstr "Instillinger er ikke lagret."
169
 
170
+ #: contact_form.php:1115
171
  msgid "All plugin settings were restored."
172
  msgstr ""
173
 
174
+ #: contact_form.php:1120
175
  msgid "How to Use Step-by-step Instruction"
176
  msgstr ""
177
 
178
+ #: contact_form.php:1123 contact_form.php:3351 contact_form.php:3365
179
  msgid "Settings"
180
  msgstr "Instillinger"
181
 
182
+ #: contact_form.php:1124
183
  #, fuzzy
184
  msgid "Additional settings"
185
  msgstr "Ekstrainstillinger"
186
 
187
+ #: contact_form.php:1125
188
  msgid "Appearance"
189
  msgstr ""
190
 
191
+ #: contact_form.php:1126
192
  msgid "Custom code"
193
  msgstr ""
194
 
195
+ #: contact_form.php:1127
196
  msgid "Go PRO"
197
  msgstr "Go PRO"
198
 
199
+ #: contact_form.php:1136
200
  #, fuzzy
201
+ msgid "Notice"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
202
  msgstr "Notis:"
203
 
204
+ #: contact_form.php:1140
205
  msgid "NEW_FORM"
206
  msgstr ""
207
 
208
+ #: contact_form.php:1141
209
  msgid ""
210
  "If you want to create multiple contact forms, please install the Contact "
211
  "Form Multi plugin."
213
  "Dersom du ønsker å opprette flere kontaktskjema, vennligst installer Contact "
214
  "From Multi plugin"
215
 
216
+ #: contact_form.php:1150
217
  #, fuzzy, php-format
218
  msgid ""
219
  "If you would like to add a Contact Form to your page or post, please use %s "
222
  "Om du ønsker å legge til kontakskjema for din webside, kopier denne "
223
  "shortcoden til din post, side eller widget."
224
 
225
+ #: contact_form.php:1156
226
  #, php-format
227
  msgid ""
228
  "You can add the Contact Form to your page or post by clicking on %s button "
231
  "language."
232
  msgstr ""
233
 
234
+ #: contact_form.php:1165
235
  msgid ""
236
  "If you leave the fields empty, the messages will be sent to the email "
237
  "address specified during registration."
239
  "Om du lar feltene være tomme, vil meldingene bli sent til e-post adresse "
240
  "oppgitt ved registreringen."
241
 
242
+ #: contact_form.php:1168
243
+ #, fuzzy
244
+ msgid "The user's email address"
245
  msgstr "Brukerens e-post adress:"
246
 
247
+ #: contact_form.php:1172
248
  #, fuzzy
249
  msgid "Select a username"
250
  msgstr "Opprett et brukernavn"
251
 
252
+ #: contact_form.php:1185
253
+ #, fuzzy
254
  msgid ""
255
+ "Select a username of the person who should get the messages from the contact "
256
  "form."
257
  msgstr ""
258
  "Oppgi brukernavn til personen som skal få meldingene fra kontaktskjemaet."
259
 
260
+ #: contact_form.php:1189
261
+ #, fuzzy
262
+ msgid "Use this email address"
263
  msgstr "Bruk denne e-post adressen:"
264
 
265
+ #: contact_form.php:1193
266
+ #, fuzzy
267
+ msgid "Enter the email address for receiving messages"
268
  msgstr "Legg inn e-post adressen du ønsker meldingene videresendt til."
269
 
270
+ #: contact_form.php:1200 contact_form.php:1663 contact_form.php:1873
271
+ #: contact_form.php:1961 contact_form.php:3446
272
  msgid "Close"
273
  msgstr ""
274
 
275
+ #: contact_form.php:1204
276
+ #, fuzzy
277
+ msgid "Add department selectbox to the contact form"
278
  msgstr "Legg til avdelingssjekkboks til kontaktskjemaet:"
279
 
280
+ #: contact_form.php:1212 contact_form.php:1672 contact_form.php:1892
281
+ #: contact_form.php:2167
282
  msgid "If you upgrade to Pro version all your settings will be saved."
283
  msgstr ""
284
  "Om du oppgraderer til Pro versjonen, vil alle instillingene dine bli lagret."
285
 
286
+ #: contact_form.php:1219 contact_form.php:1509 contact_form.php:1677
287
+ #: contact_form.php:1899 contact_form.php:2174
288
  #, fuzzy
289
  msgid "Unlock premium options by upgrading to Pro version"
290
  msgstr "Lås opp ekstrafunksjoner ved å oppgradere til en PRO-versjon."
291
 
292
+ #: contact_form.php:1222 contact_form.php:1512 contact_form.php:1680
293
+ #: contact_form.php:1902 contact_form.php:2177 contact_form.php:3672
294
  msgid "Learn More"
295
  msgstr "Lær mer"
296
 
297
+ #: contact_form.php:1230
298
  msgid "Save emails to the database"
299
  msgstr "Lagre e-poster til databasen."
300
 
301
+ #: contact_form.php:1241 contact_form.php:1255 contact_form.php:1262
302
  msgid "Using"
303
  msgstr "Bruker"
304
 
305
+ #: contact_form.php:1247 contact_form.php:1572 contact_form.php:1605
306
+ #: contact_form.php:1640
307
+ msgid "Please activate the appropriate option on"
308
+ msgstr ""
309
+
310
+ #: contact_form.php:1250 contact_form.php:1575 contact_form.php:1608
311
+ #: contact_form.php:1643
312
  #, fuzzy
313
+ msgid "settings page"
314
+ msgstr "siden for instillinger"
315
 
316
+ #: contact_form.php:1256 contact_form.php:1581 contact_form.php:1615
317
+ #: contact_form.php:1651
318
  msgid "Activate"
319
  msgstr "Aktiver"
320
 
321
+ #: contact_form.php:1263 contact_form.php:1587 contact_form.php:1621
322
+ #: contact_form.php:1656
323
  msgid "Download"
324
  msgstr "Завантажити"
325
 
326
+ #: contact_form.php:1275
327
+ msgid "Sending method"
328
+ msgstr ""
329
 
330
+ #: contact_form.php:1280
331
  msgid "Wp-mail"
332
  msgstr "Wp-mail"
333
 
334
+ #: contact_form.php:1282
335
  #, fuzzy
336
  msgid "You can use the Wordpress wp_mail function for mailing"
337
  msgstr "Du kan bruke wp_mail funksjon for å sende e-post."
338
 
339
+ #: contact_form.php:1285
340
  msgid "Mail"
341
  msgstr "E-post"
342
 
343
+ #: contact_form.php:1287
344
  #, fuzzy
345
  msgid "You can use the PHP mail function for mailing"
346
  msgstr "Du kan bruke wp_mail funksjon for å sende e-post."
347
 
348
+ #: contact_form.php:1292
349
  msgid "'FROM' field"
350
  msgstr ""
351
 
352
+ #: contact_form.php:1297
 
 
 
 
 
353
  msgid "User name"
354
  msgstr "Brukernavn"
355
 
356
+ #: contact_form.php:1299
357
  msgid ""
358
  "The name of the user who fills the form will be used in the field 'From'."
359
  msgstr ""
360
  "Navnet til brukeren som fyller ut skjema vil bli brukt i 'From'-feltet."
361
 
362
+ #: contact_form.php:1304 contact_form.php:3126 contact_form.php:3170
363
  msgid "Email"
364
  msgstr "E-post"
365
 
366
+ #: contact_form.php:1307
367
  msgid "User email"
368
  msgstr "Brukers e-post"
369
 
370
+ #: contact_form.php:1309
371
  msgid ""
372
  "The email address of the user who fills the form will be used in the field "
373
  "'From'."
374
  msgstr ""
375
  "E-post adresse til bruker som fyller ut skjema vil bli brukt i 'From'-feltet."
376
 
377
+ #: contact_form.php:1312
378
  msgid ""
379
  "If this option is changed, email messages may be moved to the spam folder or "
380
  "email delivery failures may occur."
381
  msgstr ""
382
 
383
+ #: contact_form.php:1318
384
  msgid "Required symbol"
385
  msgstr "Obligatorisk symbol"
386
 
387
+ #: contact_form.php:1328
388
  msgid "Fields"
389
  msgstr "Felt"
390
 
391
+ #: contact_form.php:1329 contact_form.php:1356 contact_form.php:1383
392
+ #: contact_form.php:1403 contact_form.php:1442 contact_form.php:1527
393
  msgid "Used"
394
  msgstr "Brukt"
395
 
396
+ #: contact_form.php:1330 contact_form.php:1345 contact_form.php:1360
397
+ #: contact_form.php:1387 contact_form.php:1407 contact_form.php:1420
398
+ #: contact_form.php:1446 contact_form.php:1459 contact_form.php:1483
399
  msgid "Required"
400
  msgstr "Obligatorisk"
401
 
402
+ #: contact_form.php:1332 contact_form.php:1365 contact_form.php:1425
403
+ #: contact_form.php:1464 contact_form.php:1488
404
  msgid "Visible"
405
  msgstr "Synlig"
406
 
407
+ #: contact_form.php:1333 contact_form.php:1369 contact_form.php:1429
408
+ #: contact_form.php:1468 contact_form.php:1492
409
  msgid "Disabled for editing"
410
  msgstr "Sperret for redigering"
411
 
412
+ #: contact_form.php:1334 contact_form.php:1393 contact_form.php:1472
413
+ #: contact_form.php:1496
414
  msgid "Field's default value"
415
  msgstr "Feltets standardverdi"
416
 
417
+ #: contact_form.php:1341
418
  #, fuzzy
419
  msgid "Department selectbox"
420
  msgstr "Flervalgsboks for sted"
421
 
422
+ #: contact_form.php:1373
423
  msgid "Use User's name as a default value if the user is logged in."
424
  msgstr ""
425
 
426
+ #: contact_form.php:1374 contact_form.php:1434
427
  msgid ""
428
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
429
  "in users."
430
  msgstr ""
431
 
432
+ #: contact_form.php:1380
433
  msgid "Location selectbox"
434
  msgstr "Flervalgsboks for sted"
435
 
436
+ #: contact_form.php:1433
 
 
 
 
 
 
 
 
 
437
  msgid "Use User's email as a default value if the user is logged in."
438
  msgstr ""
439
 
440
+ #: contact_form.php:1520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
441
  msgid "Attachment block"
442
  msgstr "Vedhengsblokk"
443
 
444
+ #: contact_form.php:1522
445
  msgid "Users can attach the following file formats"
446
  msgstr "Brukere kan legge ved følgende filformat"
447
 
448
+ #: contact_form.php:1540
449
  msgid "Add to the form"
450
  msgstr "Legg til skjemaet"
451
 
452
+ #: contact_form.php:1545
453
  msgid "Tips below the Attachment"
454
  msgstr "Tips under vedheng"
455
 
456
+ #: contact_form.php:1554
457
  msgid "'Send me a copy' block"
458
  msgstr "'Send meg en kopi' blokk"
459
 
460
+ #: contact_form.php:1667
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
461
  msgid "Agreement checkbox"
462
  msgstr "Sjekkboks for vilkår"
463
 
464
+ #: contact_form.php:1667
465
  msgid "Required checkbox for submitting the form"
466
  msgstr "Obligatoriske sjekkbokser for å sende inn skjemaet"
467
 
468
+ #: contact_form.php:1668
469
  msgid "Optional checkbox"
470
  msgstr "Valgfri sjekkboks"
471
 
472
+ #: contact_form.php:1668
473
  msgid "Optional checkbox, the results of which will be displayed in email"
474
  msgstr "Valgfri sjekkboks, resultatene vil bli vist i e-post"
475
 
476
+ #: contact_form.php:1689
477
  msgid "Delete an attachment file from the server after the email is sent"
478
  msgstr "Slett vedhengsfil fra server etter at e-posten er sendt."
479
 
480
+ #: contact_form.php:1695
481
  msgid "Email in HTML format sending"
482
  msgstr "Send e-post i HTML format"
483
 
484
+ #: contact_form.php:1699
485
  msgid "Display additional info in the email"
486
  msgstr "Vis ekstra informasjon i e-posten"
487
 
488
+ #: contact_form.php:1705
489
  #, fuzzy
490
  msgid "Sent from (IP address)"
491
  msgstr "Sent fra (ip-adresse)"
492
 
493
+ #: contact_form.php:1705
494
  msgid "Example: Sent from (IP address):\t127.0.0.1"
495
  msgstr "Eksempel: Sendt fra (IP adresse):\t127.0.0.1"
496
 
497
+ #: contact_form.php:1706 contact_form.php:3075 contact_form.php:3077
498
  msgid "Date/Time"
499
  msgstr "Dato/Tid"
500
 
501
+ #: contact_form.php:1706
502
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
503
  msgstr "Eksempel: Dato/Tid:\tAugust 19, 2013 8:50 pm"
504
 
505
+ #: contact_form.php:1707 contact_form.php:3081 contact_form.php:3083
506
  msgid "Sent from (referer)"
507
  msgstr "Sent fra (referer)"
508
 
509
+ #: contact_form.php:1707
510
  msgid ""
511
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
512
  msgstr ""
513
  "Eksempel: Sent fra (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
514
 
515
+ #: contact_form.php:1708 contact_form.php:3087 contact_form.php:3089
516
  msgid "Using (user agent)"
517
  msgstr "Bruker (user agent)"
518
 
519
+ #: contact_form.php:1708
520
  msgid ""
521
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
522
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
524
  "Eksempel: Bruker (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
525
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
526
 
527
+ #: contact_form.php:1713
528
  msgid "Language settings for the field names in the form"
529
  msgstr "Språkinstillinger for feltnavn i skjemaet"
530
 
531
+ #: contact_form.php:1722
532
  msgid "Add a language"
533
  msgstr "Legg til et språk"
534
 
535
+ #: contact_form.php:1726
536
  msgid "Change the names of the contact form fields and error messages"
537
  msgstr "Endre navnene på kontaktskjemafeltene og feilmeldingene"
538
 
539
+ #: contact_form.php:1731 contact_form.php:1827 contact_form.php:2081
540
+ #: contact_form.php:2086 contact_form.php:2096 contact_form.php:2101
541
+ #: contact_form.php:2106 contact_form.php:2111 contact_form.php:2121
542
+ #: contact_form.php:2126 contact_form.php:2135 contact_form.php:2149
543
+ #: contact_form.php:2154 contact_form.php:2159
544
  msgid "Default"
545
  msgstr "Standard"
546
 
547
+ #: contact_form.php:1744 contact_form.php:1782
548
  msgid "click to expand/hide the list"
549
  msgstr "klikk for å ekspandere/gjemme listen"
550
 
551
+ #: contact_form.php:1753 contact_form.php:1791
552
  msgid "Tips below the Attachment block"
553
  msgstr "Tips under Vedhengblokken"
554
 
555
+ #: contact_form.php:1756 contact_form.php:1794
556
  msgid "Error message for the Name field"
557
  msgstr "Feilmelding for navnefeltet"
558
 
559
+ #: contact_form.php:1757 contact_form.php:1795
560
  msgid "Error message for the Address field"
561
  msgstr "Feilmelding for adressefeltet"
562
 
563
+ #: contact_form.php:1758 contact_form.php:1796
564
  msgid "Error message for the Email field"
565
  msgstr "Feilmelding for e-post feltet"
566
 
567
+ #: contact_form.php:1759 contact_form.php:1797
568
  msgid "Error message for the Phone field"
569
  msgstr "Feilmelding for telefon-feltet"
570
 
571
+ #: contact_form.php:1760 contact_form.php:1798
572
  msgid "Error message for the Subject field"
573
  msgstr "Feilmelding for tema-feltet"
574
 
575
+ #: contact_form.php:1761 contact_form.php:1799
576
  msgid "Error message for the Message field"
577
  msgstr "Feilmelding for meldingsfeltet"
578
 
579
+ #: contact_form.php:1762 contact_form.php:1800
580
  msgid "Error message about the file type for the Attachment field"
581
  msgstr "Feilmelding for filtype til vedhengsfeltet"
582
 
583
+ #: contact_form.php:1763 contact_form.php:1801
584
  msgid ""
585
  "Error message while uploading a file for the Attachment field to the server"
586
  msgstr "Feilmelding ved opplasting av fil for vedhengsfeltet til server"
587
 
588
+ #: contact_form.php:1764 contact_form.php:1802
589
  msgid "Error message while moving the file for the Attachment field"
590
  msgstr "Feilmedling ved flytting av fil for vedhengsfeltet."
591
 
592
+ #: contact_form.php:1765 contact_form.php:1803
593
  msgid "Error message when file size limit for the Attachment field is exceeded"
594
  msgstr "Feilmelding når filstørrelsebegrensning for vedhengsfeltet er nådd"
595
 
596
+ #: contact_form.php:1766 contact_form.php:1804
597
  msgid "Error message for the Captcha field"
598
  msgstr "Feilmelding for Captcha-feltet"
599
 
600
+ #: contact_form.php:1767 contact_form.php:1805
601
  msgid "Error message for the whole form"
602
  msgstr "Feilmelding for hele skjemaet"
603
 
604
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
605
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
606
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
607
+ #: contact_form.php:3516
608
  msgid "Use shortcode"
609
  msgstr "Bruk shortcode"
610
 
611
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
612
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
613
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
614
+ #: contact_form.php:3516
615
  msgid "for this language"
616
  msgstr "for dette språket"
617
 
618
+ #: contact_form.php:1818
619
  msgid "Use the changed names of the contact form fields in the email"
620
  msgstr "Bruk de endrede navnene i kontaktskjemafeltene i e-posten"
621
 
622
+ #: contact_form.php:1824
623
  msgid "Action after email is sent"
624
  msgstr "Handling etter at e-posten er sendt"
625
 
626
+ #: contact_form.php:1826
627
  msgid "Display text"
628
  msgstr "Vis tekst"
629
 
630
+ #: contact_form.php:1840 contact_form.php:1854
631
  msgid "Text"
632
  msgstr "Tekst"
633
 
634
+ #: contact_form.php:1865
635
  msgid "Redirect to the page"
636
  msgstr "Videresend til siden"
637
 
638
+ #: contact_form.php:1866
639
  msgid "Url"
640
  msgstr "Url"
641
 
642
+ #: contact_form.php:1877
643
  msgid "Add field 'Reply-To' to the email header"
644
  msgstr ""
645
 
646
+ #: contact_form.php:1879
647
  msgid "Field 'Reply-To' will be initialized by user email"
648
  msgstr ""
649
 
650
+ #: contact_form.php:1883
651
  msgid "Auto Response"
652
  msgstr ""
653
 
654
+ #: contact_form.php:1887
655
  #, php-format
656
  msgid ""
657
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
659
  "name."
660
  msgstr ""
661
 
662
+ #: contact_form.php:1912 contact_form.php:2398
663
  msgid "Save Changes"
664
  msgstr "Lagre endringer"
665
 
666
+ #: contact_form.php:1925
667
  #, php-format
668
  msgid ""
669
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
670
  msgstr ""
671
 
672
+ #: contact_form.php:1925 contact_form.php:1934
673
+ msgid "Form layout"
674
+ msgstr ""
675
+
676
+ #: contact_form.php:1925 contact_form.php:1946
677
+ #, fuzzy
678
+ msgid "Submit position"
679
+ msgstr "Send knapp"
680
+
681
+ #: contact_form.php:1938
682
  msgid "One column"
683
  msgstr ""
684
 
685
+ #: contact_form.php:1941
686
  msgid "Two columns"
687
  msgstr ""
688
 
689
+ #: contact_form.php:1950 contact_form.php:1969 contact_form.php:1987
690
+ #: contact_form.php:2002
691
  msgid "Left"
692
  msgstr ""
693
 
694
+ #: contact_form.php:1953 contact_form.php:1975 contact_form.php:1990
695
+ #: contact_form.php:2008
696
  msgid "Right"
697
  msgstr ""
698
 
699
+ #: contact_form.php:1965
700
  msgid "Form align"
701
  msgstr ""
702
 
703
+ #: contact_form.php:1972 contact_form.php:2005
704
  msgid "Center"
705
  msgstr ""
706
 
707
+ #: contact_form.php:1980
708
  #, fuzzy
709
  msgid "Labels position"
710
  msgstr "Send knapp"
711
 
712
+ #: contact_form.php:1984
713
  msgid "Top"
714
  msgstr ""
715
 
716
+ #: contact_form.php:1993
717
  msgid "Bottom"
718
  msgstr ""
719
 
720
+ #: contact_form.php:1998
721
  msgid "Labels align"
722
  msgstr ""
723
 
724
+ #: contact_form.php:2013
725
  msgid "Errors output"
726
  msgstr "Feilmelding utdata"
727
 
728
+ #: contact_form.php:2016
729
  msgid "Display error messages"
730
  msgstr "Vise feilmeldinger"
731
 
732
+ #: contact_form.php:2017
733
  msgid "Color of the input field errors."
734
  msgstr "Farger på feilmeldingene for inputfelt"
735
 
736
+ #: contact_form.php:2018
737
  msgid "Display error messages & color of the input field errors"
738
  msgstr "Vis feilmeldinger og farge på inputfeltfeil"
739
 
740
+ #: contact_form.php:2023
741
  msgid "Add placeholder to the input blocks"
742
  msgstr "Legg til placeholder på inputblokkene"
743
 
744
+ #: contact_form.php:2029
745
  msgid "Add tooltips"
746
  msgstr "Legg til tooltips"
747
 
748
+ #: contact_form.php:2043
749
  msgid "Email address"
750
  msgstr "E-post adresse"
751
 
752
+ #: contact_form.php:2048 contact_form.php:3142 contact_form.php:3183
753
  msgid "Phone Number"
754
  msgstr "Telefon"
755
 
756
+ #: contact_form.php:2074
 
 
 
 
757
  msgid "Style options"
758
  msgstr "Styleringsopsjoner"
759
 
760
+ #: contact_form.php:2078
761
  msgid "Text color"
762
  msgstr "Tekstfarge"
763
 
764
+ #: contact_form.php:2083
765
  msgid "Label text color"
766
  msgstr "Tekstfarge på merkelapp"
767
 
768
+ #: contact_form.php:2088
769
  msgid "Placeholder color"
770
  msgstr "Placeholder farge"
771
 
772
+ #: contact_form.php:2093
773
  msgid "Errors color"
774
  msgstr "Feilmeldingsfarge"
775
 
776
+ #: contact_form.php:2098
777
  msgid "Error text color"
778
  msgstr "Tekstfarge på feilmelding"
779
 
780
+ #: contact_form.php:2103
781
  msgid "Background color of the input field errors"
782
  msgstr "Bakgrunnsfarge på inputfeltfeil"
783
 
784
+ #: contact_form.php:2108
785
  msgid "Border color of the input field errors"
786
  msgstr "Rammefarge på inputfeltfeil"
787
 
788
+ #: contact_form.php:2113
789
  msgid "Placeholder color of the input field errors"
790
  msgstr "Placeholderfarge på inputfeltfeil"
791
 
792
+ #: contact_form.php:2118
793
  msgid "Input fields"
794
  msgstr "Inputfelt"
795
 
796
+ #: contact_form.php:2123
797
  msgid "Input fields background color"
798
  msgstr "Bakgrunnsfarge på inputfelter"
799
 
800
+ #: contact_form.php:2128
801
  msgid "Text fields color"
802
  msgstr "Farge på tekstfelter"
803
 
804
+ #: contact_form.php:2132
805
  msgid "Border width in px, numbers only"
806
  msgstr "Rammebredde i pixler, kun tall"
807
 
808
+ #: contact_form.php:2137 contact_form.php:2161
809
  msgid "Border color"
810
  msgstr "Ramme farge"
811
 
812
+ #: contact_form.php:2142
813
  msgid "Submit button"
814
  msgstr "Send knapp"
815
 
816
+ #: contact_form.php:2146
817
  msgid "Width in px, numbers only"
818
  msgstr "Bredde i piksler, kun tall"
819
 
820
+ #: contact_form.php:2151
821
  msgid "Button color"
822
  msgstr "Knappfarge"
823
 
824
+ #: contact_form.php:2156
825
  msgid "Button text color"
826
  msgstr "Farge på knappetekst"
827
 
828
+ #: contact_form.php:2188
829
  #, fuzzy
830
  msgid "Contact Form | Preview"
831
  msgstr "Contact Form Pro | Forhåndsvisning"
832
 
833
+ #: contact_form.php:2189
834
  msgid "Drag the necessary field to sort fields."
835
  msgstr ""
836
 
837
+ #: contact_form.php:2385
838
+ #, fuzzy
839
  msgid ""
840
  "If you would like to add the Contact Form to your website, just copy and "
841
+ "paste this shortcode to your post or page or widget"
842
  msgstr ""
843
  "Om du ønsker å legge til kontakskjema for din webside, kopier denne "
844
  "shortcoden til din post, side eller widget."
845
 
846
+ #: contact_form.php:2501
847
  msgid "Sorry, email message could not be delivered."
848
  msgstr "Beklager, e-postmelding kunne ikke leveres."
849
 
850
+ #: contact_form.php:3069 contact_form.php:3071
851
  msgid "Sent from (ip address)"
852
  msgstr "Sent fra (ip-adresse)"
853
 
854
+ #: contact_form.php:3099
855
  msgid "Contact from"
856
  msgstr "Kontaktskjema"
857
 
858
+ #: contact_form.php:3104 contact_form.php:3153
 
 
 
 
859
  msgid "Site"
860
  msgstr "side"
861
 
862
+ #: contact_form.php:3283
863
  msgid ""
864
  "If you can see this MIME, it means that the MIME type is not supported by "
865
  "your email client!"
867
  "Om du kan se denne MIME, betyr det at MIME format ikke er støttet av din e-"
868
  "postklient!"
869
 
870
+ #: contact_form.php:3366
871
  msgid "FAQ"
872
  msgstr "Часті питання"
873
 
874
+ #: contact_form.php:3367
875
  msgid "Support"
876
  msgstr "Support"
877
 
878
+ #: contact_form.php:3416
879
  msgid "Are you sure that you want to delete this language data?"
880
  msgstr "Er du sikker på at du ønsker å slette disse språkdatane?"
881
 
882
+ #: contact_form.php:3437
883
  #, fuzzy
884
  msgid "Add multiple forms"
885
  msgstr "Legg til skjemaet"
886
 
887
+ #: contact_form.php:3437
888
  msgid ""
889
  "Install Contact Form Multi plugin to create unlimited number of contact "
890
  "forms."
891
  msgstr ""
892
 
893
+ #: contact_form.php:3442
894
  #, fuzzy
895
  msgid "Learn more"
896
  msgstr "Lær mer"
897
 
898
+ #: contact_form.php:3663
899
  msgid "Close notice"
900
  msgstr ""
901
 
902
+ #: contact_form.php:3668
903
  #, fuzzy
904
  msgid "allows to store your messages to the database."
905
  msgstr ""
906
  "<strong>Contact Form to DB</strong> lar deg lagre meldinger i databasen."
907
 
908
+ #: contact_form.php:3669
909
  msgid "Manage messages that have been sent from your website."
910
  msgstr "Administrer meldinger som har blitt sendt fra din webside."
911
 
912
+ #: contact_form.php:3727
913
  #, fuzzy
914
  msgid "Contact form"
915
  msgstr "Kontaktskjema"
916
 
917
+ #: contact_form.php:3740 contact_form.php:3750
918
  #, fuzzy
919
  msgid "Language"
920
  msgstr "Legg til et språk"
921
 
922
+ #~ msgid "Name:"
923
+ #~ msgstr "Navn:"
924
+
925
+ #~ msgid "Address:"
926
+ #~ msgstr "Adresse:"
927
+
928
+ #~ msgid "Email Address:"
929
+ #~ msgstr "E-post:"
930
+
931
+ #~ msgid "Phone number:"
932
+ #~ msgstr "Telefon:"
933
+
934
+ #~ msgid "Subject:"
935
+ #~ msgstr "Tema:"
936
+
937
+ #~ msgid "Message:"
938
+ #~ msgstr "Melding:"
939
+
940
+ #~ msgid "Attachment:"
941
+ #~ msgstr "Vedheng:"
942
+
943
+ #, fuzzy
944
+ #~ msgid ""
945
+ #~ "Please enable JavaScript to add language in the contact form, change the "
946
+ #~ "names of the contact form fields and error messages."
947
+ #~ msgstr "Endre navnene på kontaktskjemafeltene og feilmeldingene"
948
+
949
+ #~ msgid "What to use?"
950
+ #~ msgstr "Hva skal brukes?"
951
+
952
+ #, fuzzy
953
+ #~ msgid "Using Contact Form to DB by BestWebSoft"
954
+ #~ msgstr "Bruker Contact Form to DB støttet av"
955
+
956
+ #, fuzzy
957
+ #~ msgid "Activate Subscriber"
958
+ #~ msgstr "Активовані плагіни"
959
+
960
+ #, fuzzy
961
+ #~ msgid "Activate Captcha"
962
+ #~ msgstr "Aktiver captcha"
963
+
964
+ #, fuzzy
965
+ #~ msgid "Download Captcha"
966
+ #~ msgstr "Last ned captcha"
967
+
968
+ #~ msgid "Phone"
969
+ #~ msgstr "Telefon"
970
+
971
  #~ msgid "To send mail you can use the php mail function"
972
  #~ msgstr "For å sende e-post kan du bruke php mail funksjon."
973
 
1140
  #~ msgid "Please, go to"
1141
  #~ msgstr "Vennligst, gå til"
1142
 
 
 
 
1143
  #~ msgid "You will be redirected automatically in 5 seconds."
1144
  #~ msgstr "Du vil automatisk viderekobles om 5 sekunder."
1145
 
languages/contact-form-plugin-nl_NL.mo CHANGED
Binary file
languages/contact-form-plugin-nl_NL.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: 2016-06-27 16:31+0300\n"
6
- "PO-Revision-Date: 2016-06-27 16:31+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Olivier Smet <olivier.smet@dynata.nl>\n"
9
  "Language: nl\n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: contact_form.php:37 contact_form.php:1030
22
  msgid "Contact Form Settings"
23
  msgstr "Contact Formulier Instellingen"
24
 
@@ -26,35 +26,46 @@ msgstr "Contact Formulier Instellingen"
26
  msgid "Contact Form"
27
  msgstr "Contact Formulier"
28
 
29
- #: contact_form.php:165 contact_form.php:1565 contact_form.php:1599
30
- msgid "Name:"
31
- msgstr "Naam:"
 
 
32
 
33
- #: contact_form.php:166 contact_form.php:1566 contact_form.php:1600
34
- msgid "Address:"
35
- msgstr "Adres:"
 
 
36
 
37
- #: contact_form.php:167 contact_form.php:1567 contact_form.php:1601
38
- msgid "Email Address:"
39
- msgstr "e-mailadres:"
 
40
 
41
- #: contact_form.php:168 contact_form.php:1568 contact_form.php:1602
42
- msgid "Phone number:"
43
- msgstr "Telefoonnummer:"
 
44
 
45
- #: contact_form.php:169 contact_form.php:1569 contact_form.php:1603
46
- msgid "Subject:"
47
- msgstr "Onderwerp:"
 
 
48
 
49
- #: contact_form.php:170 contact_form.php:1570 contact_form.php:1604
50
- msgid "Message:"
51
- msgstr "Bericht:"
 
 
52
 
53
- #: contact_form.php:171 contact_form.php:1571 contact_form.php:1605
54
- msgid "Attachment:"
55
- msgstr "Bijlage:"
 
56
 
57
- #: contact_form.php:172
58
  msgid ""
59
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
60
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -63,71 +74,71 @@ msgstr ""
63
  "BMP, AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, "
64
  "PPT."
65
 
66
- #: contact_form.php:173 contact_form.php:1573 contact_form.php:1607
67
  msgid "Send me a copy"
68
  msgstr "Stuur mij een kopie"
69
 
70
- #: contact_form.php:174 contact_form.php:1574 contact_form.php:1608
71
  msgid "Submit"
72
  msgstr "Verstuur"
73
 
74
- #: contact_form.php:175
75
  msgid "Your name is required."
76
  msgstr "Je naam is vereist."
77
 
78
- #: contact_form.php:176
79
  msgid "Address is required."
80
  msgstr "Je adres is vereist."
81
 
82
- #: contact_form.php:177
83
  msgid "A valid email address is required."
84
  msgstr "Een geldig e-mailadres is vereist."
85
 
86
- #: contact_form.php:178
87
  msgid "Phone number is required."
88
  msgstr "Je telefoonnummer is vereist."
89
 
90
- #: contact_form.php:179
91
  msgid "Subject is required."
92
  msgstr "Het onderwerp is vereist."
93
 
94
- #: contact_form.php:180
95
  msgid "Message text is required."
96
  msgstr "Het bericht is vereist."
97
 
98
- #: contact_form.php:181
99
  msgid "File format is not valid."
100
  msgstr "Het bestandsformaat van je bijlage is niet geldig."
101
 
102
- #: contact_form.php:182
103
  msgid "File upload error."
104
  msgstr "Bestand upload fout."
105
 
106
- #: contact_form.php:183
107
  msgid "The file could not be uploaded."
108
  msgstr "Het bestand kon niet worden geüpload."
109
 
110
- #: contact_form.php:184
111
  msgid "This file is too large."
112
  msgstr "Het bestand is te groot."
113
 
114
- #: contact_form.php:185
115
  msgid "Please fill out the CAPTCHA."
116
  msgstr "Vul alsjeblieft de CAPTCHA in."
117
 
118
- #: contact_form.php:186
119
  msgid "Please make corrections below and try again."
120
  msgstr "Maak hieronder alsjeblieft correcties en probeer het dan opnieuw."
121
 
122
- #: contact_form.php:188
123
  msgid "Thank you for contacting us."
124
  msgstr "Bedankt voor het opnemen van contact met ons."
125
 
126
- #: contact_form.php:688 contact_form.php:998
127
  msgid "Settings saved."
128
  msgstr "Instellingen opgeslagen."
129
 
130
- #: contact_form.php:940
131
  msgid ""
132
  "Email 'FROM' field option was changed, which may cause email messages being "
133
  "moved to the spam folder or email delivery failures."
@@ -136,7 +147,7 @@ msgstr ""
136
  "mailberichten naar de spam map worden verplaats of dat de e-mailberichten "
137
  "niet kunnen worden afgeleverd."
138
 
139
- #: contact_form.php:950
140
  msgid ""
141
  "If the 'Redirect to page' option is selected then the URL field should be in "
142
  "the following format"
@@ -144,80 +155,64 @@ msgstr ""
144
  "Als de 'Stuur door naar pagina' optie is geselecteerd, moet het URL veld in "
145
  "het volgende format zijn"
146
 
147
- #: contact_form.php:957
148
  msgid "Such user does not exist."
149
  msgstr "Deze gebruiker bestaat niet."
150
 
151
- #: contact_form.php:967
152
  msgid ""
153
  "Please enter a valid email address in the 'Use this email address' field."
154
  msgstr ""
155
  "Vul alsjeblieft een geldig e-mailadres in, in het 'Gebruik dit e-mailadres' "
156
  "veld."
157
 
158
- #: contact_form.php:975
159
  msgid "Please enter a valid email address in the 'FROM' field."
160
  msgstr "Vul alsjeblieft een geldig e-mailadres in, in het 'VAN' veld."
161
 
162
- #: contact_form.php:1000
163
  msgid "Settings are not saved."
164
  msgstr "De instellingen zijn niet opgeslagen."
165
 
166
- #: contact_form.php:1027
167
  msgid "All plugin settings were restored."
168
  msgstr "Alle plugin instellingen zijn hersteld."
169
 
170
- #: contact_form.php:1032
171
  msgid "How to Use Step-by-step Instruction"
172
  msgstr ""
173
 
174
- #: contact_form.php:1035 contact_form.php:3024 contact_form.php:3038
175
  msgid "Settings"
176
  msgstr "Instellingen"
177
 
178
- #: contact_form.php:1036
179
  msgid "Additional settings"
180
  msgstr "Aanvullende instellingen"
181
 
182
- #: contact_form.php:1037
183
  msgid "Appearance"
184
  msgstr "Weergave"
185
 
186
- #: contact_form.php:1038
187
  #, fuzzy
188
  msgid "Custom code"
189
  msgstr "Aanpassen"
190
 
191
- #: contact_form.php:1039
192
  msgid "Go PRO"
193
  msgstr "Gebruik PRO"
194
 
195
- #: contact_form.php:1045
196
  #, fuzzy
197
- msgid ""
198
- "Please enable JavaScript to add language in the contact form, change the "
199
- "names of the contact form fields and error messages."
200
- msgstr ""
201
- "De namen voor de velden en foutmeldingen van het contactformulier aanpassen"
202
-
203
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1740
204
- msgid "Form layout"
205
- msgstr ""
206
-
207
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1752
208
- #, fuzzy
209
- msgid "Submit position"
210
- msgstr "Verzend knop"
211
-
212
- #: contact_form.php:1057
213
- msgid "Notice:"
214
  msgstr "Let op:"
215
 
216
- #: contact_form.php:1061
217
  msgid "NEW_FORM"
218
  msgstr ""
219
 
220
- #: contact_form.php:1062
221
  msgid ""
222
  "If you want to create multiple contact forms, please install the Contact "
223
  "Form Multi plugin."
@@ -225,7 +220,7 @@ msgstr ""
225
  "Als je meerdere contact formulieren wil maken, installeer dan alsjeblieft de "
226
  "'Contact Form Multi plugin'."
227
 
228
- #: contact_form.php:1071
229
  #, fuzzy, php-format
230
  msgid ""
231
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -234,7 +229,7 @@ msgstr ""
234
  "Als je het contactformulier aan je website wil toevoegen, kopieer en plak "
235
  "deze code dan in je post of pagina:"
236
 
237
- #: contact_form.php:1077
238
  #, php-format
239
  msgid ""
240
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -243,7 +238,7 @@ msgid ""
243
  "language."
244
  msgstr ""
245
 
246
- #: contact_form.php:1086
247
  msgid ""
248
  "If you leave the fields empty, the messages will be sent to the email "
249
  "address specified during registration."
@@ -251,127 +246,136 @@ msgstr ""
251
  "Als je de velden leeg laat, zullen alle berichten worden verstuurd naar het "
252
  "e-mailadres dat is opgegeven tijdens de registratie."
253
 
254
- #: contact_form.php:1089
255
- msgid "The user's email address:"
 
256
  msgstr "Het e-mailadres van de gebruiker:"
257
 
258
- #: contact_form.php:1093
259
  msgid "Select a username"
260
  msgstr "Selecteer een gebruikersnaam"
261
 
262
- #: contact_form.php:1106
 
263
  msgid ""
264
- "Enter a username of the person who should get the messages from the contact "
265
  "form."
266
  msgstr ""
267
  "Vul de gebruikersnaam in van de persoon die de berichten van het "
268
  "contactformulier zou moeten ontvangen."
269
 
270
- #: contact_form.php:1110
271
- msgid "Use this email address:"
 
272
  msgstr "Gebruik dit e-mailadres:"
273
 
274
- #: contact_form.php:1114
275
- msgid "Enter the email address you want the messages forwarded to."
 
276
  msgstr "Vul het e-mailadres in waar je de berichten naar wil laten doorsturen."
277
 
278
- #: contact_form.php:1121 contact_form.php:1487 contact_form.php:1679
279
- #: contact_form.php:1767 contact_form.php:3119
280
  msgid "Close"
281
  msgstr "Sluiten"
282
 
283
- #: contact_form.php:1125
284
- msgid "Add department selectbox to the contact form:"
 
285
  msgstr "Voeg het departement keuzeveld aan het contactformulier toe:"
286
 
287
- #: contact_form.php:1133 contact_form.php:1496 contact_form.php:1698
288
- #: contact_form.php:1973
289
  msgid "If you upgrade to Pro version all your settings will be saved."
290
  msgstr ""
291
  "Als je naar de Pro versie upgrade worden al je instellingen opgeslagen."
292
 
293
- #: contact_form.php:1140 contact_form.php:1407 contact_form.php:1501
294
- #: contact_form.php:1705 contact_form.php:1980
295
  #, fuzzy
296
  msgid "Unlock premium options by upgrading to Pro version"
297
  msgstr "Maak gebruik van premium opties door te upgraden naar de PRO versie."
298
 
299
- #: contact_form.php:1143 contact_form.php:1410 contact_form.php:1504
300
- #: contact_form.php:1708 contact_form.php:1983 contact_form.php:3329
301
  msgid "Learn More"
302
  msgstr "Meer Informatie"
303
 
304
- #: contact_form.php:1151
305
  msgid "Save emails to the database"
306
  msgstr "E-mailberichten opslaan in de database"
307
 
308
- #: contact_form.php:1156
309
  msgid "Using"
310
  msgstr "Gebruikt"
311
 
312
- #: contact_form.php:1159 contact_form.php:1163
313
- msgid "Using Contact Form to DB by BestWebSoft"
314
- msgstr "Gebruikt Contact Form to DB door BestWebSoft"
 
 
 
 
 
 
 
315
 
316
- #: contact_form.php:1159
 
317
  msgid "Activate"
318
  msgstr "Activeren"
319
 
320
- #: contact_form.php:1163
 
321
  msgid "Download"
322
  msgstr "Downloaden"
323
 
324
- #: contact_form.php:1173
325
- msgid "What to use?"
326
- msgstr "Wat te gebruiken?"
327
 
328
- #: contact_form.php:1178
329
  msgid "Wp-mail"
330
  msgstr "wp-mail"
331
 
332
- #: contact_form.php:1180
333
  #, fuzzy
334
  msgid "You can use the Wordpress wp_mail function for mailing"
335
  msgstr "Je kan de wp_mail functie gebruiken voor e-mailen"
336
 
337
- #: contact_form.php:1183
338
  msgid "Mail"
339
  msgstr "E-Mail"
340
 
341
- #: contact_form.php:1185
342
  #, fuzzy
343
  msgid "You can use the PHP mail function for mailing"
344
  msgstr "Je kan de wp_mail functie gebruiken voor e-mailen"
345
 
346
- #: contact_form.php:1190
347
  msgid "'FROM' field"
348
  msgstr "'VAN' veld"
349
 
350
- #: contact_form.php:1192 contact_form.php:1251 contact_form.php:1839
351
- #: contact_form.php:2810 contact_form.php:2846
352
- msgid "Name"
353
- msgstr "Naam"
354
-
355
- #: contact_form.php:1195
356
  msgid "User name"
357
  msgstr "Gebruikersnaam"
358
 
359
- #: contact_form.php:1197
360
  msgid ""
361
  "The name of the user who fills the form will be used in the field 'From'."
362
  msgstr ""
363
  "De naam van de gebruiker die het formulier invult zal worden gebruikt in het "
364
  "'Van' veld."
365
 
366
- #: contact_form.php:1202 contact_form.php:2821 contact_form.php:2853
367
  msgid "Email"
368
  msgstr "E-mailadres"
369
 
370
- #: contact_form.php:1205
371
  msgid "User email"
372
  msgstr "E-mailadres van de gebruiker"
373
 
374
- #: contact_form.php:1207
375
  msgid ""
376
  "The email address of the user who fills the form will be used in the field "
377
  "'From'."
@@ -379,7 +383,7 @@ msgstr ""
379
  "De naam van de gebruiker die het formulier invult zal worden gebruikt in het "
380
  "'Van' veld."
381
 
382
- #: contact_form.php:1210
383
  msgid ""
384
  "If this option is changed, email messages may be moved to the spam folder or "
385
  "email delivery failures may occur."
@@ -388,51 +392,51 @@ msgstr ""
388
  "spam map worden verplaats of dat de e-mailberichten niet kunnen worden "
389
  "afgeleverd."
390
 
391
- #: contact_form.php:1216
392
  msgid "Required symbol"
393
  msgstr "Vereist symbool"
394
 
395
- #: contact_form.php:1226
396
  msgid "Fields"
397
  msgstr "Velden"
398
 
399
- #: contact_form.php:1227 contact_form.php:1254 contact_form.php:1281
400
- #: contact_form.php:1301 contact_form.php:1340 contact_form.php:1425
401
  msgid "Used"
402
  msgstr "Gebruikt"
403
 
404
- #: contact_form.php:1228 contact_form.php:1243 contact_form.php:1258
405
- #: contact_form.php:1285 contact_form.php:1305 contact_form.php:1318
406
- #: contact_form.php:1344 contact_form.php:1357 contact_form.php:1381
407
  msgid "Required"
408
  msgstr "Vereist"
409
 
410
- #: contact_form.php:1230 contact_form.php:1263 contact_form.php:1323
411
- #: contact_form.php:1362 contact_form.php:1386
412
  msgid "Visible"
413
  msgstr "Zichtbaar"
414
 
415
- #: contact_form.php:1231 contact_form.php:1267 contact_form.php:1327
416
- #: contact_form.php:1366 contact_form.php:1390
417
  msgid "Disabled for editing"
418
  msgstr "Uitgesloten van bewerken"
419
 
420
- #: contact_form.php:1232 contact_form.php:1291 contact_form.php:1370
421
- #: contact_form.php:1394
422
  msgid "Field's default value"
423
  msgstr "Standaard waarde van het veld"
424
 
425
- #: contact_form.php:1239
426
  msgid "Department selectbox"
427
  msgstr "Departement keuzeveld"
428
 
429
- #: contact_form.php:1271
430
  msgid "Use User's name as a default value if the user is logged in."
431
  msgstr ""
432
  "Gebruik de naam van de gebruiker als standaard waarde wanneer de gebruik is "
433
  "ingelogd."
434
 
435
- #: contact_form.php:1272 contact_form.php:1332
436
  msgid ""
437
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
438
  "in users."
@@ -440,141 +444,99 @@ msgstr ""
440
  "De opties 'Zichtbaar' en 'Uitgesloten van bewerken' zullen alleen worden "
441
  "toegepast op ingelogde gebruikers."
442
 
443
- #: contact_form.php:1278
444
  msgid "Location selectbox"
445
  msgstr "Locatie keuzeveld"
446
 
447
- #: contact_form.php:1298 contact_form.php:1844 contact_form.php:2816
448
- #: contact_form.php:2850
449
- msgid "Address"
450
- msgstr "Adres"
451
-
452
- #: contact_form.php:1314
453
- msgid "Email Address"
454
- msgstr "E-mailadres"
455
-
456
- #: contact_form.php:1331
457
  msgid "Use User's email as a default value if the user is logged in."
458
  msgstr ""
459
  "Gebruik het e-mailadres van de gebruiker als standaard waarde wanneer de "
460
  "gebruiker is ingelogd."
461
 
462
- #: contact_form.php:1337
463
- msgid "Phone number"
464
- msgstr "Telefoonnummer"
465
-
466
- #: contact_form.php:1353 contact_form.php:1859 contact_form.php:2831
467
- #: contact_form.php:2859
468
- msgid "Subject"
469
- msgstr "Onderwerp"
470
-
471
- #: contact_form.php:1377 contact_form.php:1863 contact_form.php:2834
472
- #: contact_form.php:2861
473
- msgid "Message"
474
- msgstr "Bericht"
475
-
476
- #: contact_form.php:1418
477
  msgid "Attachment block"
478
  msgstr "Bijlagen blok"
479
 
480
- #: contact_form.php:1420
481
  msgid "Users can attach the following file formats"
482
  msgstr "Gebruikers kunnen de volgende bestandsformaten bijvoegen"
483
 
484
- #: contact_form.php:1438
485
  msgid "Add to the form"
486
  msgstr "Aan het formulier toevoegen"
487
 
488
- #: contact_form.php:1443
489
  msgid "Tips below the Attachment"
490
  msgstr "Tips onder de bijlagen weergeven"
491
 
492
- #: contact_form.php:1452
493
  msgid "'Send me a copy' block"
494
  msgstr "'Stuur mij een kopie' blok"
495
 
496
- #: contact_form.php:1464
497
- #, fuzzy
498
- msgid "Activate Subscriber"
499
- msgstr "Geactiveerde plugins"
500
-
501
- #: contact_form.php:1468
502
- msgid "Download Subscriber"
503
- msgstr ""
504
-
505
- #: contact_form.php:1477
506
- #, fuzzy
507
- msgid "Activate Captcha"
508
- msgstr "CAPTCHA activeren"
509
-
510
- #: contact_form.php:1481
511
- #, fuzzy
512
- msgid "Download Captcha"
513
- msgstr "CAPTCHA downloaden"
514
-
515
- #: contact_form.php:1491
516
  msgid "Agreement checkbox"
517
  msgstr "Akkoord gaan vinkje"
518
 
519
- #: contact_form.php:1491
520
  msgid "Required checkbox for submitting the form"
521
  msgstr "Vereist vinkje voor het verzenden van het formulier"
522
 
523
- #: contact_form.php:1492
524
  msgid "Optional checkbox"
525
  msgstr "Optioneel vinkje"
526
 
527
- #: contact_form.php:1492
528
  msgid "Optional checkbox, the results of which will be displayed in email"
529
  msgstr ""
530
  "Optioneel vinkje, waarvan de resultaten in de e-mail zullen worden "
531
  "weergegeven"
532
 
533
- #: contact_form.php:1513
534
  msgid "Delete an attachment file from the server after the email is sent"
535
  msgstr "Verwijder een bijlage van de server nadat de e-mail is verzonden"
536
 
537
- #: contact_form.php:1519
538
  msgid "Email in HTML format sending"
539
  msgstr "E-mail in HTML formaat verzenden"
540
 
541
- #: contact_form.php:1523
542
  msgid "Display additional info in the email"
543
  msgstr "Additionele informatie in de e-mail weergeven"
544
 
545
- #: contact_form.php:1529
546
  #, fuzzy
547
  msgid "Sent from (IP address)"
548
  msgstr "Verstuurd van (IP-adres)"
549
 
550
- #: contact_form.php:1529
551
  msgid "Example: Sent from (IP address):\t127.0.0.1"
552
  msgstr "Voorbeeld: Verstuur van (IP-adres):\t127.0.0.1"
553
 
554
- #: contact_form.php:1530 contact_form.php:2783 contact_form.php:2785
555
  msgid "Date/Time"
556
  msgstr "Dag/Tijd"
557
 
558
- #: contact_form.php:1530
559
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
560
  msgstr "Voorbeeld: Dag/Tijd:\tAugustus 19, 2013 8:50 pm"
561
 
562
- #: contact_form.php:1531 contact_form.php:2789 contact_form.php:2791
563
  msgid "Sent from (referer)"
564
  msgstr "Verzonden van (verwijzing)"
565
 
566
- #: contact_form.php:1531
567
  msgid ""
568
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
569
  msgstr ""
570
  "Voorbeeld: Verzonden van (verwijzing):\thttp://bestwebsoft.com/contacts/"
571
  "contact-us/"
572
 
573
- #: contact_form.php:1532 contact_form.php:2795 contact_form.php:2797
574
  msgid "Using (user agent)"
575
  msgstr "Met behulp van (user agent)"
576
 
577
- #: contact_form.php:1532
578
  msgid ""
579
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
580
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -582,142 +544,142 @@ msgstr ""
582
  "Voorbeeld: Met behulp van (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
583
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
584
 
585
- #: contact_form.php:1537
586
  msgid "Language settings for the field names in the form"
587
  msgstr "Taal instellingen voor de veldnamen in het formulier"
588
 
589
- #: contact_form.php:1546
590
  msgid "Add a language"
591
  msgstr "Een taal toevoegen"
592
 
593
- #: contact_form.php:1550
594
  msgid "Change the names of the contact form fields and error messages"
595
  msgstr ""
596
  "De namen voor de velden en foutmeldingen van het contactformulier aanpassen"
597
 
598
- #: contact_form.php:1555 contact_form.php:1642 contact_form.php:1887
599
- #: contact_form.php:1892 contact_form.php:1902 contact_form.php:1907
600
- #: contact_form.php:1912 contact_form.php:1917 contact_form.php:1927
601
- #: contact_form.php:1932 contact_form.php:1941 contact_form.php:1955
602
- #: contact_form.php:1960 contact_form.php:1965
603
  msgid "Default"
604
  msgstr "Standaard"
605
 
606
- #: contact_form.php:1563 contact_form.php:1597
607
  msgid "click to expand/hide the list"
608
  msgstr "klik om de lijst weer te geven/te verbergen"
609
 
610
- #: contact_form.php:1572 contact_form.php:1606
611
  msgid "Tips below the Attachment block"
612
  msgstr "Tips onder het bijlagen blok weergeven"
613
 
614
- #: contact_form.php:1575 contact_form.php:1609
615
  msgid "Error message for the Name field"
616
  msgstr "Foutmelding voor het Naam veld"
617
 
618
- #: contact_form.php:1576 contact_form.php:1610
619
  msgid "Error message for the Address field"
620
  msgstr "Foutmelding voor het Adres veld"
621
 
622
- #: contact_form.php:1577 contact_form.php:1611
623
  msgid "Error message for the Email field"
624
  msgstr "Foutmelding voor het E-mailadres veld"
625
 
626
- #: contact_form.php:1578 contact_form.php:1612
627
  msgid "Error message for the Phone field"
628
  msgstr "Foutmelding voor het Telefoonnummer veld"
629
 
630
- #: contact_form.php:1579 contact_form.php:1613
631
  msgid "Error message for the Subject field"
632
  msgstr "Foutmelding voor het Onderwerp veld"
633
 
634
- #: contact_form.php:1580 contact_form.php:1614
635
  msgid "Error message for the Message field"
636
  msgstr "Foutmelding voor het Bericht veld"
637
 
638
- #: contact_form.php:1581 contact_form.php:1615
639
  msgid "Error message about the file type for the Attachment field"
640
  msgstr "Foutmelding over het bestandsformaat voor het bijlagen veld"
641
 
642
- #: contact_form.php:1582 contact_form.php:1616
643
  msgid ""
644
  "Error message while uploading a file for the Attachment field to the server"
645
  msgstr ""
646
  "Foutmelding tijdens het uploaden van een bestand naar de server voor het "
647
  "bijlagen veld"
648
 
649
- #: contact_form.php:1583 contact_form.php:1617
650
  msgid "Error message while moving the file for the Attachment field"
651
  msgstr ""
652
  "Foutmelding tijdens het verplaatsen van een bestand voor het bijlagen veld"
653
 
654
- #: contact_form.php:1584 contact_form.php:1618
655
  msgid "Error message when file size limit for the Attachment field is exceeded"
656
  msgstr ""
657
  "Foutmelding wanner de maximale bestandsgrootte voor het bijlagen veld wordt "
658
  "overschreden"
659
 
660
- #: contact_form.php:1585 contact_form.php:1619
661
  msgid "Error message for the Captcha field"
662
  msgstr "Foutmelding voor het CAPTCHA veld"
663
 
664
- #: contact_form.php:1586 contact_form.php:1620
665
  msgid "Error message for the whole form"
666
  msgstr "Foutmelding voor het volledige formulier"
667
 
668
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
669
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
670
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
671
- #: contact_form.php:3179
672
  msgid "Use shortcode"
673
  msgstr "Gebruik code"
674
 
675
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
676
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
677
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
678
- #: contact_form.php:3179
679
  msgid "for this language"
680
  msgstr "voor deze taal"
681
 
682
- #: contact_form.php:1633
683
  msgid "Use the changed names of the contact form fields in the email"
684
  msgstr ""
685
  "Gebruik de onaangepaste namen van de velden van het contactformulier in de e-"
686
  "mail"
687
 
688
- #: contact_form.php:1639
689
  msgid "Action after email is sent"
690
  msgstr "Actie nadat de e-mail is verzonden"
691
 
692
- #: contact_form.php:1641
693
  msgid "Display text"
694
  msgstr "Tekst weergeven"
695
 
696
- #: contact_form.php:1650 contact_form.php:1660
697
  msgid "Text"
698
  msgstr "Tekst"
699
 
700
- #: contact_form.php:1671
701
  msgid "Redirect to the page"
702
  msgstr "Doorsturen naar pagina"
703
 
704
- #: contact_form.php:1672
705
  msgid "Url"
706
  msgstr "URL"
707
 
708
- #: contact_form.php:1683
709
  msgid "Add field 'Reply-To' to the email header"
710
  msgstr ""
711
 
712
- #: contact_form.php:1685
713
  msgid "Field 'Reply-To' will be initialized by user email"
714
  msgstr ""
715
 
716
- #: contact_form.php:1689
717
  msgid "Auto Response"
718
  msgstr "Automatisch Antwoord"
719
 
720
- #: contact_form.php:1693
721
  #, php-format
722
  msgid ""
723
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -728,205 +690,207 @@ msgstr ""
728
  "%%MESSAGE%% om data weer te geven uit het bericht veld en %%SITENAME%% om de "
729
  "naam van het blog weer te geven."
730
 
731
- #: contact_form.php:1718 contact_form.php:2213
732
  msgid "Save Changes"
733
  msgstr "Instellingen Opslaan"
734
 
735
- #: contact_form.php:1731
736
  #, php-format
737
  msgid ""
738
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
739
  msgstr ""
740
 
741
- #: contact_form.php:1744
 
 
 
 
 
 
 
 
 
742
  msgid "One column"
743
  msgstr ""
744
 
745
- #: contact_form.php:1747
746
  msgid "Two columns"
747
  msgstr ""
748
 
749
- #: contact_form.php:1756 contact_form.php:1775 contact_form.php:1793
750
- #: contact_form.php:1808
751
  msgid "Left"
752
  msgstr ""
753
 
754
- #: contact_form.php:1759 contact_form.php:1781 contact_form.php:1796
755
- #: contact_form.php:1814
756
  msgid "Right"
757
  msgstr ""
758
 
759
- #: contact_form.php:1771
760
  msgid "Form align"
761
  msgstr ""
762
 
763
- #: contact_form.php:1778 contact_form.php:1811
764
  msgid "Center"
765
  msgstr ""
766
 
767
- #: contact_form.php:1786
768
  #, fuzzy
769
  msgid "Labels position"
770
  msgstr "Verzend knop"
771
 
772
- #: contact_form.php:1790
773
  msgid "Top"
774
  msgstr ""
775
 
776
- #: contact_form.php:1799
777
  msgid "Bottom"
778
  msgstr ""
779
 
780
- #: contact_form.php:1804
781
  msgid "Labels align"
782
  msgstr ""
783
 
784
- #: contact_form.php:1819
785
  msgid "Errors output"
786
  msgstr "Foutmeldingen uitvoer"
787
 
788
- #: contact_form.php:1822
789
  msgid "Display error messages"
790
  msgstr "Foutmeldingen weergeven"
791
 
792
- #: contact_form.php:1823
793
  msgid "Color of the input field errors."
794
  msgstr "Kleur van de velden met foutmeldingen"
795
 
796
- #: contact_form.php:1824
797
  msgid "Display error messages & color of the input field errors"
798
  msgstr "Foutmeldingen & kleur van de velden met foutmeldingen weergeven"
799
 
800
- #: contact_form.php:1829
801
  msgid "Add placeholder to the input blocks"
802
  msgstr "Tijdelijke aanduiding aan de velden toevoegen"
803
 
804
- #: contact_form.php:1835
805
  msgid "Add tooltips"
806
  msgstr "Tooltips toevoegen"
807
 
808
- #: contact_form.php:1849
809
  msgid "Email address"
810
  msgstr "E-mailadres"
811
 
812
- #: contact_form.php:1854
813
  msgid "Phone Number"
814
  msgstr "Telefoonnummer"
815
 
816
- #: contact_form.php:1868
817
- msgid "Attachment"
818
- msgstr "Bijlage"
819
-
820
- #: contact_form.php:1880
821
  msgid "Style options"
822
  msgstr "Stijl opties"
823
 
824
- #: contact_form.php:1884
825
  msgid "Text color"
826
  msgstr "Tekstkleur"
827
 
828
- #: contact_form.php:1889
829
  msgid "Label text color"
830
  msgstr "Label tekstkleur"
831
 
832
- #: contact_form.php:1894
833
  msgid "Placeholder color"
834
  msgstr "Kleur van tijdelijke aanduiding"
835
 
836
- #: contact_form.php:1899
837
  msgid "Errors color"
838
  msgstr "Kleur van foutmeldingen"
839
 
840
- #: contact_form.php:1904
841
  msgid "Error text color"
842
  msgstr "Tekstkleur van foutmeldingen"
843
 
844
- #: contact_form.php:1909
845
  msgid "Background color of the input field errors"
846
  msgstr "Achtergrondkleur van veldfoutmeldingen"
847
 
848
- #: contact_form.php:1914
849
  msgid "Border color of the input field errors"
850
  msgstr "Randkleur van veldfoutmeldingen"
851
 
852
- #: contact_form.php:1919
853
  msgid "Placeholder color of the input field errors"
854
  msgstr "Kleur van tijdelijke aanduidingen in een veld met foutmeldingen"
855
 
856
- #: contact_form.php:1924
857
  msgid "Input fields"
858
  msgstr "Velden"
859
 
860
- #: contact_form.php:1929
861
  msgid "Input fields background color"
862
  msgstr "Achtergrondkleur van velden"
863
 
864
- #: contact_form.php:1934
865
  msgid "Text fields color"
866
  msgstr "Kleur van velden met tekst"
867
 
868
- #: contact_form.php:1938
869
  msgid "Border width in px, numbers only"
870
  msgstr "Border breedte in px, slechts getallen"
871
 
872
- #: contact_form.php:1943 contact_form.php:1967
873
  msgid "Border color"
874
  msgstr "Border kleur"
875
 
876
- #: contact_form.php:1948
877
  msgid "Submit button"
878
  msgstr "Verzend knop"
879
 
880
- #: contact_form.php:1952
881
  msgid "Width in px, numbers only"
882
  msgstr "Breedte in px, slechts getallen"
883
 
884
- #: contact_form.php:1957
885
  msgid "Button color"
886
  msgstr "Kleur van knop"
887
 
888
- #: contact_form.php:1962
889
  msgid "Button text color"
890
  msgstr "Tekstkleur van knop"
891
 
892
- #: contact_form.php:1994
893
  #, fuzzy
894
  msgid "Contact Form | Preview"
895
  msgstr "Contact Formulier Pro | Voorbeeld"
896
 
897
- #: contact_form.php:1995
898
  msgid "Drag the necessary field to sort fields."
899
  msgstr ""
900
 
901
- #: contact_form.php:2200
 
902
  msgid ""
903
  "If you would like to add the Contact Form to your website, just copy and "
904
- "paste this shortcode to your post or page or widget:"
905
  msgstr ""
906
  "Als je het Contact Formulier aan je website wil toevoegen, kopieer en plak "
907
  "deze code dan naar je bericht, pagina of widget:"
908
 
909
- #: contact_form.php:2297
910
  msgid "Sorry, email message could not be delivered."
911
  msgstr "Sorry, het e-mailbericht kon niet worden afgeleverd."
912
 
913
- #: contact_form.php:2777 contact_form.php:2779
914
  msgid "Sent from (ip address)"
915
  msgstr "Verstuurd van (IP-adres)"
916
 
917
- #: contact_form.php:2804
918
  msgid "Contact from"
919
  msgstr "Contact van"
920
 
921
- #: contact_form.php:2826 contact_form.php:2856
922
- msgid "Phone"
923
- msgstr "Telefoon"
924
-
925
- #: contact_form.php:2837 contact_form.php:2863
926
  msgid "Site"
927
  msgstr "Website"
928
 
929
- #: contact_form.php:2956
930
  msgid ""
931
  "If you can see this MIME, it means that the MIME type is not supported by "
932
  "your email client!"
@@ -934,23 +898,23 @@ msgstr ""
934
  "Als je deze MIME kan zien, betekent dat dat het MIME type niet wordt "
935
  "ondersteund door je e-mailprogramma!"
936
 
937
- #: contact_form.php:3039
938
  msgid "FAQ"
939
  msgstr "Veelgestelde vragen"
940
 
941
- #: contact_form.php:3040
942
  msgid "Support"
943
  msgstr "Ondersteuning"
944
 
945
- #: contact_form.php:3089
946
  msgid "Are you sure that you want to delete this language data?"
947
  msgstr "Weet je zeker dat je deze taal data wil verwijderen?"
948
 
949
- #: contact_form.php:3110
950
  msgid "Add multiple forms"
951
  msgstr "Meerdere formulieren toevoegen"
952
 
953
- #: contact_form.php:3110
954
  msgid ""
955
  "Install Contact Form Multi plugin to create unlimited number of contact "
956
  "forms."
@@ -958,32 +922,82 @@ msgstr ""
958
  "Installeer de Contact Form Multi plugin om een ongelimiteerd aantal "
959
  "contactformulieren te maken"
960
 
961
- #: contact_form.php:3115
962
  msgid "Learn more"
963
  msgstr "Meer informatie"
964
 
965
- #: contact_form.php:3320
966
  msgid "Close notice"
967
  msgstr ""
968
 
969
- #: contact_form.php:3325
970
  msgid "allows to store your messages to the database."
971
  msgstr "staat toe om je berichten in de database op te slaan"
972
 
973
- #: contact_form.php:3326
974
  msgid "Manage messages that have been sent from your website."
975
  msgstr "Beheer berichten die van je website zijn verstuurd."
976
 
977
- #: contact_form.php:3384
978
  #, fuzzy
979
  msgid "Contact form"
980
  msgstr "Contact van"
981
 
982
- #: contact_form.php:3397 contact_form.php:3407
983
  #, fuzzy
984
  msgid "Language"
985
  msgstr "Een taal toevoegen"
986
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
987
  #~ msgid "To send mail you can use the php mail function"
988
  #~ msgstr "Om e-mail te versturen kun je de php mail functie gebruiken"
989
 
@@ -1200,9 +1214,6 @@ msgstr "Een taal toevoegen"
1200
  #~ msgid "Please, go to"
1201
  #~ msgstr "Ga alsjeblieft naar"
1202
 
1203
- #~ msgid "the setting page"
1204
- #~ msgstr "de instellingen pagina"
1205
-
1206
  #~ msgid "You will be redirected automatically in 5 seconds."
1207
  #~ msgstr "Je wordt automatisch doorgestuurd in 5 seconden."
1208
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-12 17:22+0300\n"
6
+ "PO-Revision-Date: 2016-07-12 17:22+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Olivier Smet <olivier.smet@dynata.nl>\n"
9
  "Language: nl\n"
18
  "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: contact_form.php:37 contact_form.php:1118
22
  msgid "Contact Form Settings"
23
  msgstr "Contact Formulier Instellingen"
24
 
26
  msgid "Contact Form"
27
  msgstr "Contact Formulier"
28
 
29
+ #: contact_form.php:167 contact_form.php:1294 contact_form.php:1353
30
+ #: contact_form.php:1746 contact_form.php:1784 contact_form.php:2033
31
+ #: contact_form.php:3113 contact_form.php:3159
32
+ msgid "Name"
33
+ msgstr "Naam"
34
 
35
+ #: contact_form.php:168 contact_form.php:1400 contact_form.php:1747
36
+ #: contact_form.php:1785 contact_form.php:2038 contact_form.php:3120
37
+ #: contact_form.php:3165
38
+ msgid "Address"
39
+ msgstr "Adres"
40
 
41
+ #: contact_form.php:169 contact_form.php:1416 contact_form.php:1748
42
+ #: contact_form.php:1786
43
+ msgid "Email Address"
44
+ msgstr "E-mailadres"
45
 
46
+ #: contact_form.php:170 contact_form.php:1439 contact_form.php:1749
47
+ #: contact_form.php:1787
48
+ msgid "Phone number"
49
+ msgstr "Telefoonnummer"
50
 
51
+ #: contact_form.php:171 contact_form.php:1455 contact_form.php:1750
52
+ #: contact_form.php:1788 contact_form.php:2053 contact_form.php:3131
53
+ #: contact_form.php:3174
54
+ msgid "Subject"
55
+ msgstr "Onderwerp"
56
 
57
+ #: contact_form.php:172 contact_form.php:1479 contact_form.php:1751
58
+ #: contact_form.php:1789 contact_form.php:2057 contact_form.php:3136
59
+ #: contact_form.php:3178
60
+ msgid "Message"
61
+ msgstr "Bericht"
62
 
63
+ #: contact_form.php:173 contact_form.php:1752 contact_form.php:1790
64
+ #: contact_form.php:2062
65
+ msgid "Attachment"
66
+ msgstr "Bijlage"
67
 
68
+ #: contact_form.php:174
69
  msgid ""
70
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
71
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
74
  "BMP, AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, "
75
  "PPT."
76
 
77
+ #: contact_form.php:175 contact_form.php:1754 contact_form.php:1792
78
  msgid "Send me a copy"
79
  msgstr "Stuur mij een kopie"
80
 
81
+ #: contact_form.php:176 contact_form.php:1755 contact_form.php:1793
82
  msgid "Submit"
83
  msgstr "Verstuur"
84
 
85
+ #: contact_form.php:177
86
  msgid "Your name is required."
87
  msgstr "Je naam is vereist."
88
 
89
+ #: contact_form.php:178
90
  msgid "Address is required."
91
  msgstr "Je adres is vereist."
92
 
93
+ #: contact_form.php:179
94
  msgid "A valid email address is required."
95
  msgstr "Een geldig e-mailadres is vereist."
96
 
97
+ #: contact_form.php:180
98
  msgid "Phone number is required."
99
  msgstr "Je telefoonnummer is vereist."
100
 
101
+ #: contact_form.php:181
102
  msgid "Subject is required."
103
  msgstr "Het onderwerp is vereist."
104
 
105
+ #: contact_form.php:182
106
  msgid "Message text is required."
107
  msgstr "Het bericht is vereist."
108
 
109
+ #: contact_form.php:183
110
  msgid "File format is not valid."
111
  msgstr "Het bestandsformaat van je bijlage is niet geldig."
112
 
113
+ #: contact_form.php:184
114
  msgid "File upload error."
115
  msgstr "Bestand upload fout."
116
 
117
+ #: contact_form.php:185
118
  msgid "The file could not be uploaded."
119
  msgstr "Het bestand kon niet worden geüpload."
120
 
121
+ #: contact_form.php:186
122
  msgid "This file is too large."
123
  msgstr "Het bestand is te groot."
124
 
125
+ #: contact_form.php:187
126
  msgid "Please fill out the CAPTCHA."
127
  msgstr "Vul alsjeblieft de CAPTCHA in."
128
 
129
+ #: contact_form.php:188
130
  msgid "Please make corrections below and try again."
131
  msgstr "Maak hieronder alsjeblieft correcties en probeer het dan opnieuw."
132
 
133
+ #: contact_form.php:190
134
  msgid "Thank you for contacting us."
135
  msgstr "Bedankt voor het opnemen van contact met ons."
136
 
137
+ #: contact_form.php:824 contact_form.php:1076
138
  msgid "Settings saved."
139
  msgstr "Instellingen opgeslagen."
140
 
141
+ #: contact_form.php:1021
142
  msgid ""
143
  "Email 'FROM' field option was changed, which may cause email messages being "
144
  "moved to the spam folder or email delivery failures."
147
  "mailberichten naar de spam map worden verplaats of dat de e-mailberichten "
148
  "niet kunnen worden afgeleverd."
149
 
150
+ #: contact_form.php:1031
151
  msgid ""
152
  "If the 'Redirect to page' option is selected then the URL field should be in "
153
  "the following format"
155
  "Als de 'Stuur door naar pagina' optie is geselecteerd, moet het URL veld in "
156
  "het volgende format zijn"
157
 
158
+ #: contact_form.php:1038
159
  msgid "Such user does not exist."
160
  msgstr "Deze gebruiker bestaat niet."
161
 
162
+ #: contact_form.php:1048
163
  msgid ""
164
  "Please enter a valid email address in the 'Use this email address' field."
165
  msgstr ""
166
  "Vul alsjeblieft een geldig e-mailadres in, in het 'Gebruik dit e-mailadres' "
167
  "veld."
168
 
169
+ #: contact_form.php:1056
170
  msgid "Please enter a valid email address in the 'FROM' field."
171
  msgstr "Vul alsjeblieft een geldig e-mailadres in, in het 'VAN' veld."
172
 
173
+ #: contact_form.php:1078
174
  msgid "Settings are not saved."
175
  msgstr "De instellingen zijn niet opgeslagen."
176
 
177
+ #: contact_form.php:1115
178
  msgid "All plugin settings were restored."
179
  msgstr "Alle plugin instellingen zijn hersteld."
180
 
181
+ #: contact_form.php:1120
182
  msgid "How to Use Step-by-step Instruction"
183
  msgstr ""
184
 
185
+ #: contact_form.php:1123 contact_form.php:3351 contact_form.php:3365
186
  msgid "Settings"
187
  msgstr "Instellingen"
188
 
189
+ #: contact_form.php:1124
190
  msgid "Additional settings"
191
  msgstr "Aanvullende instellingen"
192
 
193
+ #: contact_form.php:1125
194
  msgid "Appearance"
195
  msgstr "Weergave"
196
 
197
+ #: contact_form.php:1126
198
  #, fuzzy
199
  msgid "Custom code"
200
  msgstr "Aanpassen"
201
 
202
+ #: contact_form.php:1127
203
  msgid "Go PRO"
204
  msgstr "Gebruik PRO"
205
 
206
+ #: contact_form.php:1136
207
  #, fuzzy
208
+ msgid "Notice"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
209
  msgstr "Let op:"
210
 
211
+ #: contact_form.php:1140
212
  msgid "NEW_FORM"
213
  msgstr ""
214
 
215
+ #: contact_form.php:1141
216
  msgid ""
217
  "If you want to create multiple contact forms, please install the Contact "
218
  "Form Multi plugin."
220
  "Als je meerdere contact formulieren wil maken, installeer dan alsjeblieft de "
221
  "'Contact Form Multi plugin'."
222
 
223
+ #: contact_form.php:1150
224
  #, fuzzy, php-format
225
  msgid ""
226
  "If you would like to add a Contact Form to your page or post, please use %s "
229
  "Als je het contactformulier aan je website wil toevoegen, kopieer en plak "
230
  "deze code dan in je post of pagina:"
231
 
232
+ #: contact_form.php:1156
233
  #, php-format
234
  msgid ""
235
  "You can add the Contact Form to your page or post by clicking on %s button "
238
  "language."
239
  msgstr ""
240
 
241
+ #: contact_form.php:1165
242
  msgid ""
243
  "If you leave the fields empty, the messages will be sent to the email "
244
  "address specified during registration."
246
  "Als je de velden leeg laat, zullen alle berichten worden verstuurd naar het "
247
  "e-mailadres dat is opgegeven tijdens de registratie."
248
 
249
+ #: contact_form.php:1168
250
+ #, fuzzy
251
+ msgid "The user's email address"
252
  msgstr "Het e-mailadres van de gebruiker:"
253
 
254
+ #: contact_form.php:1172
255
  msgid "Select a username"
256
  msgstr "Selecteer een gebruikersnaam"
257
 
258
+ #: contact_form.php:1185
259
+ #, fuzzy
260
  msgid ""
261
+ "Select a username of the person who should get the messages from the contact "
262
  "form."
263
  msgstr ""
264
  "Vul de gebruikersnaam in van de persoon die de berichten van het "
265
  "contactformulier zou moeten ontvangen."
266
 
267
+ #: contact_form.php:1189
268
+ #, fuzzy
269
+ msgid "Use this email address"
270
  msgstr "Gebruik dit e-mailadres:"
271
 
272
+ #: contact_form.php:1193
273
+ #, fuzzy
274
+ msgid "Enter the email address for receiving messages"
275
  msgstr "Vul het e-mailadres in waar je de berichten naar wil laten doorsturen."
276
 
277
+ #: contact_form.php:1200 contact_form.php:1663 contact_form.php:1873
278
+ #: contact_form.php:1961 contact_form.php:3446
279
  msgid "Close"
280
  msgstr "Sluiten"
281
 
282
+ #: contact_form.php:1204
283
+ #, fuzzy
284
+ msgid "Add department selectbox to the contact form"
285
  msgstr "Voeg het departement keuzeveld aan het contactformulier toe:"
286
 
287
+ #: contact_form.php:1212 contact_form.php:1672 contact_form.php:1892
288
+ #: contact_form.php:2167
289
  msgid "If you upgrade to Pro version all your settings will be saved."
290
  msgstr ""
291
  "Als je naar de Pro versie upgrade worden al je instellingen opgeslagen."
292
 
293
+ #: contact_form.php:1219 contact_form.php:1509 contact_form.php:1677
294
+ #: contact_form.php:1899 contact_form.php:2174
295
  #, fuzzy
296
  msgid "Unlock premium options by upgrading to Pro version"
297
  msgstr "Maak gebruik van premium opties door te upgraden naar de PRO versie."
298
 
299
+ #: contact_form.php:1222 contact_form.php:1512 contact_form.php:1680
300
+ #: contact_form.php:1902 contact_form.php:2177 contact_form.php:3672
301
  msgid "Learn More"
302
  msgstr "Meer Informatie"
303
 
304
+ #: contact_form.php:1230
305
  msgid "Save emails to the database"
306
  msgstr "E-mailberichten opslaan in de database"
307
 
308
+ #: contact_form.php:1241 contact_form.php:1255 contact_form.php:1262
309
  msgid "Using"
310
  msgstr "Gebruikt"
311
 
312
+ #: contact_form.php:1247 contact_form.php:1572 contact_form.php:1605
313
+ #: contact_form.php:1640
314
+ msgid "Please activate the appropriate option on"
315
+ msgstr ""
316
+
317
+ #: contact_form.php:1250 contact_form.php:1575 contact_form.php:1608
318
+ #: contact_form.php:1643
319
+ #, fuzzy
320
+ msgid "settings page"
321
+ msgstr "de instellingen pagina"
322
 
323
+ #: contact_form.php:1256 contact_form.php:1581 contact_form.php:1615
324
+ #: contact_form.php:1651
325
  msgid "Activate"
326
  msgstr "Activeren"
327
 
328
+ #: contact_form.php:1263 contact_form.php:1587 contact_form.php:1621
329
+ #: contact_form.php:1656
330
  msgid "Download"
331
  msgstr "Downloaden"
332
 
333
+ #: contact_form.php:1275
334
+ msgid "Sending method"
335
+ msgstr ""
336
 
337
+ #: contact_form.php:1280
338
  msgid "Wp-mail"
339
  msgstr "wp-mail"
340
 
341
+ #: contact_form.php:1282
342
  #, fuzzy
343
  msgid "You can use the Wordpress wp_mail function for mailing"
344
  msgstr "Je kan de wp_mail functie gebruiken voor e-mailen"
345
 
346
+ #: contact_form.php:1285
347
  msgid "Mail"
348
  msgstr "E-Mail"
349
 
350
+ #: contact_form.php:1287
351
  #, fuzzy
352
  msgid "You can use the PHP mail function for mailing"
353
  msgstr "Je kan de wp_mail functie gebruiken voor e-mailen"
354
 
355
+ #: contact_form.php:1292
356
  msgid "'FROM' field"
357
  msgstr "'VAN' veld"
358
 
359
+ #: contact_form.php:1297
 
 
 
 
 
360
  msgid "User name"
361
  msgstr "Gebruikersnaam"
362
 
363
+ #: contact_form.php:1299
364
  msgid ""
365
  "The name of the user who fills the form will be used in the field 'From'."
366
  msgstr ""
367
  "De naam van de gebruiker die het formulier invult zal worden gebruikt in het "
368
  "'Van' veld."
369
 
370
+ #: contact_form.php:1304 contact_form.php:3126 contact_form.php:3170
371
  msgid "Email"
372
  msgstr "E-mailadres"
373
 
374
+ #: contact_form.php:1307
375
  msgid "User email"
376
  msgstr "E-mailadres van de gebruiker"
377
 
378
+ #: contact_form.php:1309
379
  msgid ""
380
  "The email address of the user who fills the form will be used in the field "
381
  "'From'."
383
  "De naam van de gebruiker die het formulier invult zal worden gebruikt in het "
384
  "'Van' veld."
385
 
386
+ #: contact_form.php:1312
387
  msgid ""
388
  "If this option is changed, email messages may be moved to the spam folder or "
389
  "email delivery failures may occur."
392
  "spam map worden verplaats of dat de e-mailberichten niet kunnen worden "
393
  "afgeleverd."
394
 
395
+ #: contact_form.php:1318
396
  msgid "Required symbol"
397
  msgstr "Vereist symbool"
398
 
399
+ #: contact_form.php:1328
400
  msgid "Fields"
401
  msgstr "Velden"
402
 
403
+ #: contact_form.php:1329 contact_form.php:1356 contact_form.php:1383
404
+ #: contact_form.php:1403 contact_form.php:1442 contact_form.php:1527
405
  msgid "Used"
406
  msgstr "Gebruikt"
407
 
408
+ #: contact_form.php:1330 contact_form.php:1345 contact_form.php:1360
409
+ #: contact_form.php:1387 contact_form.php:1407 contact_form.php:1420
410
+ #: contact_form.php:1446 contact_form.php:1459 contact_form.php:1483
411
  msgid "Required"
412
  msgstr "Vereist"
413
 
414
+ #: contact_form.php:1332 contact_form.php:1365 contact_form.php:1425
415
+ #: contact_form.php:1464 contact_form.php:1488
416
  msgid "Visible"
417
  msgstr "Zichtbaar"
418
 
419
+ #: contact_form.php:1333 contact_form.php:1369 contact_form.php:1429
420
+ #: contact_form.php:1468 contact_form.php:1492
421
  msgid "Disabled for editing"
422
  msgstr "Uitgesloten van bewerken"
423
 
424
+ #: contact_form.php:1334 contact_form.php:1393 contact_form.php:1472
425
+ #: contact_form.php:1496
426
  msgid "Field's default value"
427
  msgstr "Standaard waarde van het veld"
428
 
429
+ #: contact_form.php:1341
430
  msgid "Department selectbox"
431
  msgstr "Departement keuzeveld"
432
 
433
+ #: contact_form.php:1373
434
  msgid "Use User's name as a default value if the user is logged in."
435
  msgstr ""
436
  "Gebruik de naam van de gebruiker als standaard waarde wanneer de gebruik is "
437
  "ingelogd."
438
 
439
+ #: contact_form.php:1374 contact_form.php:1434
440
  msgid ""
441
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
442
  "in users."
444
  "De opties 'Zichtbaar' en 'Uitgesloten van bewerken' zullen alleen worden "
445
  "toegepast op ingelogde gebruikers."
446
 
447
+ #: contact_form.php:1380
448
  msgid "Location selectbox"
449
  msgstr "Locatie keuzeveld"
450
 
451
+ #: contact_form.php:1433
 
 
 
 
 
 
 
 
 
452
  msgid "Use User's email as a default value if the user is logged in."
453
  msgstr ""
454
  "Gebruik het e-mailadres van de gebruiker als standaard waarde wanneer de "
455
  "gebruiker is ingelogd."
456
 
457
+ #: contact_form.php:1520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
458
  msgid "Attachment block"
459
  msgstr "Bijlagen blok"
460
 
461
+ #: contact_form.php:1522
462
  msgid "Users can attach the following file formats"
463
  msgstr "Gebruikers kunnen de volgende bestandsformaten bijvoegen"
464
 
465
+ #: contact_form.php:1540
466
  msgid "Add to the form"
467
  msgstr "Aan het formulier toevoegen"
468
 
469
+ #: contact_form.php:1545
470
  msgid "Tips below the Attachment"
471
  msgstr "Tips onder de bijlagen weergeven"
472
 
473
+ #: contact_form.php:1554
474
  msgid "'Send me a copy' block"
475
  msgstr "'Stuur mij een kopie' blok"
476
 
477
+ #: contact_form.php:1667
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
478
  msgid "Agreement checkbox"
479
  msgstr "Akkoord gaan vinkje"
480
 
481
+ #: contact_form.php:1667
482
  msgid "Required checkbox for submitting the form"
483
  msgstr "Vereist vinkje voor het verzenden van het formulier"
484
 
485
+ #: contact_form.php:1668
486
  msgid "Optional checkbox"
487
  msgstr "Optioneel vinkje"
488
 
489
+ #: contact_form.php:1668
490
  msgid "Optional checkbox, the results of which will be displayed in email"
491
  msgstr ""
492
  "Optioneel vinkje, waarvan de resultaten in de e-mail zullen worden "
493
  "weergegeven"
494
 
495
+ #: contact_form.php:1689
496
  msgid "Delete an attachment file from the server after the email is sent"
497
  msgstr "Verwijder een bijlage van de server nadat de e-mail is verzonden"
498
 
499
+ #: contact_form.php:1695
500
  msgid "Email in HTML format sending"
501
  msgstr "E-mail in HTML formaat verzenden"
502
 
503
+ #: contact_form.php:1699
504
  msgid "Display additional info in the email"
505
  msgstr "Additionele informatie in de e-mail weergeven"
506
 
507
+ #: contact_form.php:1705
508
  #, fuzzy
509
  msgid "Sent from (IP address)"
510
  msgstr "Verstuurd van (IP-adres)"
511
 
512
+ #: contact_form.php:1705
513
  msgid "Example: Sent from (IP address):\t127.0.0.1"
514
  msgstr "Voorbeeld: Verstuur van (IP-adres):\t127.0.0.1"
515
 
516
+ #: contact_form.php:1706 contact_form.php:3075 contact_form.php:3077
517
  msgid "Date/Time"
518
  msgstr "Dag/Tijd"
519
 
520
+ #: contact_form.php:1706
521
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
522
  msgstr "Voorbeeld: Dag/Tijd:\tAugustus 19, 2013 8:50 pm"
523
 
524
+ #: contact_form.php:1707 contact_form.php:3081 contact_form.php:3083
525
  msgid "Sent from (referer)"
526
  msgstr "Verzonden van (verwijzing)"
527
 
528
+ #: contact_form.php:1707
529
  msgid ""
530
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
531
  msgstr ""
532
  "Voorbeeld: Verzonden van (verwijzing):\thttp://bestwebsoft.com/contacts/"
533
  "contact-us/"
534
 
535
+ #: contact_form.php:1708 contact_form.php:3087 contact_form.php:3089
536
  msgid "Using (user agent)"
537
  msgstr "Met behulp van (user agent)"
538
 
539
+ #: contact_form.php:1708
540
  msgid ""
541
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
542
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
544
  "Voorbeeld: Met behulp van (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
545
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
546
 
547
+ #: contact_form.php:1713
548
  msgid "Language settings for the field names in the form"
549
  msgstr "Taal instellingen voor de veldnamen in het formulier"
550
 
551
+ #: contact_form.php:1722
552
  msgid "Add a language"
553
  msgstr "Een taal toevoegen"
554
 
555
+ #: contact_form.php:1726
556
  msgid "Change the names of the contact form fields and error messages"
557
  msgstr ""
558
  "De namen voor de velden en foutmeldingen van het contactformulier aanpassen"
559
 
560
+ #: contact_form.php:1731 contact_form.php:1827 contact_form.php:2081
561
+ #: contact_form.php:2086 contact_form.php:2096 contact_form.php:2101
562
+ #: contact_form.php:2106 contact_form.php:2111 contact_form.php:2121
563
+ #: contact_form.php:2126 contact_form.php:2135 contact_form.php:2149
564
+ #: contact_form.php:2154 contact_form.php:2159
565
  msgid "Default"
566
  msgstr "Standaard"
567
 
568
+ #: contact_form.php:1744 contact_form.php:1782
569
  msgid "click to expand/hide the list"
570
  msgstr "klik om de lijst weer te geven/te verbergen"
571
 
572
+ #: contact_form.php:1753 contact_form.php:1791
573
  msgid "Tips below the Attachment block"
574
  msgstr "Tips onder het bijlagen blok weergeven"
575
 
576
+ #: contact_form.php:1756 contact_form.php:1794
577
  msgid "Error message for the Name field"
578
  msgstr "Foutmelding voor het Naam veld"
579
 
580
+ #: contact_form.php:1757 contact_form.php:1795
581
  msgid "Error message for the Address field"
582
  msgstr "Foutmelding voor het Adres veld"
583
 
584
+ #: contact_form.php:1758 contact_form.php:1796
585
  msgid "Error message for the Email field"
586
  msgstr "Foutmelding voor het E-mailadres veld"
587
 
588
+ #: contact_form.php:1759 contact_form.php:1797
589
  msgid "Error message for the Phone field"
590
  msgstr "Foutmelding voor het Telefoonnummer veld"
591
 
592
+ #: contact_form.php:1760 contact_form.php:1798
593
  msgid "Error message for the Subject field"
594
  msgstr "Foutmelding voor het Onderwerp veld"
595
 
596
+ #: contact_form.php:1761 contact_form.php:1799
597
  msgid "Error message for the Message field"
598
  msgstr "Foutmelding voor het Bericht veld"
599
 
600
+ #: contact_form.php:1762 contact_form.php:1800
601
  msgid "Error message about the file type for the Attachment field"
602
  msgstr "Foutmelding over het bestandsformaat voor het bijlagen veld"
603
 
604
+ #: contact_form.php:1763 contact_form.php:1801
605
  msgid ""
606
  "Error message while uploading a file for the Attachment field to the server"
607
  msgstr ""
608
  "Foutmelding tijdens het uploaden van een bestand naar de server voor het "
609
  "bijlagen veld"
610
 
611
+ #: contact_form.php:1764 contact_form.php:1802
612
  msgid "Error message while moving the file for the Attachment field"
613
  msgstr ""
614
  "Foutmelding tijdens het verplaatsen van een bestand voor het bijlagen veld"
615
 
616
+ #: contact_form.php:1765 contact_form.php:1803
617
  msgid "Error message when file size limit for the Attachment field is exceeded"
618
  msgstr ""
619
  "Foutmelding wanner de maximale bestandsgrootte voor het bijlagen veld wordt "
620
  "overschreden"
621
 
622
+ #: contact_form.php:1766 contact_form.php:1804
623
  msgid "Error message for the Captcha field"
624
  msgstr "Foutmelding voor het CAPTCHA veld"
625
 
626
+ #: contact_form.php:1767 contact_form.php:1805
627
  msgid "Error message for the whole form"
628
  msgstr "Foutmelding voor het volledige formulier"
629
 
630
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
631
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
632
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
633
+ #: contact_form.php:3516
634
  msgid "Use shortcode"
635
  msgstr "Gebruik code"
636
 
637
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
638
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
639
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
640
+ #: contact_form.php:3516
641
  msgid "for this language"
642
  msgstr "voor deze taal"
643
 
644
+ #: contact_form.php:1818
645
  msgid "Use the changed names of the contact form fields in the email"
646
  msgstr ""
647
  "Gebruik de onaangepaste namen van de velden van het contactformulier in de e-"
648
  "mail"
649
 
650
+ #: contact_form.php:1824
651
  msgid "Action after email is sent"
652
  msgstr "Actie nadat de e-mail is verzonden"
653
 
654
+ #: contact_form.php:1826
655
  msgid "Display text"
656
  msgstr "Tekst weergeven"
657
 
658
+ #: contact_form.php:1840 contact_form.php:1854
659
  msgid "Text"
660
  msgstr "Tekst"
661
 
662
+ #: contact_form.php:1865
663
  msgid "Redirect to the page"
664
  msgstr "Doorsturen naar pagina"
665
 
666
+ #: contact_form.php:1866
667
  msgid "Url"
668
  msgstr "URL"
669
 
670
+ #: contact_form.php:1877
671
  msgid "Add field 'Reply-To' to the email header"
672
  msgstr ""
673
 
674
+ #: contact_form.php:1879
675
  msgid "Field 'Reply-To' will be initialized by user email"
676
  msgstr ""
677
 
678
+ #: contact_form.php:1883
679
  msgid "Auto Response"
680
  msgstr "Automatisch Antwoord"
681
 
682
+ #: contact_form.php:1887
683
  #, php-format
684
  msgid ""
685
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
690
  "%%MESSAGE%% om data weer te geven uit het bericht veld en %%SITENAME%% om de "
691
  "naam van het blog weer te geven."
692
 
693
+ #: contact_form.php:1912 contact_form.php:2398
694
  msgid "Save Changes"
695
  msgstr "Instellingen Opslaan"
696
 
697
+ #: contact_form.php:1925
698
  #, php-format
699
  msgid ""
700
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
701
  msgstr ""
702
 
703
+ #: contact_form.php:1925 contact_form.php:1934
704
+ msgid "Form layout"
705
+ msgstr ""
706
+
707
+ #: contact_form.php:1925 contact_form.php:1946
708
+ #, fuzzy
709
+ msgid "Submit position"
710
+ msgstr "Verzend knop"
711
+
712
+ #: contact_form.php:1938
713
  msgid "One column"
714
  msgstr ""
715
 
716
+ #: contact_form.php:1941
717
  msgid "Two columns"
718
  msgstr ""
719
 
720
+ #: contact_form.php:1950 contact_form.php:1969 contact_form.php:1987
721
+ #: contact_form.php:2002
722
  msgid "Left"
723
  msgstr ""
724
 
725
+ #: contact_form.php:1953 contact_form.php:1975 contact_form.php:1990
726
+ #: contact_form.php:2008
727
  msgid "Right"
728
  msgstr ""
729
 
730
+ #: contact_form.php:1965
731
  msgid "Form align"
732
  msgstr ""
733
 
734
+ #: contact_form.php:1972 contact_form.php:2005
735
  msgid "Center"
736
  msgstr ""
737
 
738
+ #: contact_form.php:1980
739
  #, fuzzy
740
  msgid "Labels position"
741
  msgstr "Verzend knop"
742
 
743
+ #: contact_form.php:1984
744
  msgid "Top"
745
  msgstr ""
746
 
747
+ #: contact_form.php:1993
748
  msgid "Bottom"
749
  msgstr ""
750
 
751
+ #: contact_form.php:1998
752
  msgid "Labels align"
753
  msgstr ""
754
 
755
+ #: contact_form.php:2013
756
  msgid "Errors output"
757
  msgstr "Foutmeldingen uitvoer"
758
 
759
+ #: contact_form.php:2016
760
  msgid "Display error messages"
761
  msgstr "Foutmeldingen weergeven"
762
 
763
+ #: contact_form.php:2017
764
  msgid "Color of the input field errors."
765
  msgstr "Kleur van de velden met foutmeldingen"
766
 
767
+ #: contact_form.php:2018
768
  msgid "Display error messages & color of the input field errors"
769
  msgstr "Foutmeldingen & kleur van de velden met foutmeldingen weergeven"
770
 
771
+ #: contact_form.php:2023
772
  msgid "Add placeholder to the input blocks"
773
  msgstr "Tijdelijke aanduiding aan de velden toevoegen"
774
 
775
+ #: contact_form.php:2029
776
  msgid "Add tooltips"
777
  msgstr "Tooltips toevoegen"
778
 
779
+ #: contact_form.php:2043
780
  msgid "Email address"
781
  msgstr "E-mailadres"
782
 
783
+ #: contact_form.php:2048 contact_form.php:3142 contact_form.php:3183
784
  msgid "Phone Number"
785
  msgstr "Telefoonnummer"
786
 
787
+ #: contact_form.php:2074
 
 
 
 
788
  msgid "Style options"
789
  msgstr "Stijl opties"
790
 
791
+ #: contact_form.php:2078
792
  msgid "Text color"
793
  msgstr "Tekstkleur"
794
 
795
+ #: contact_form.php:2083
796
  msgid "Label text color"
797
  msgstr "Label tekstkleur"
798
 
799
+ #: contact_form.php:2088
800
  msgid "Placeholder color"
801
  msgstr "Kleur van tijdelijke aanduiding"
802
 
803
+ #: contact_form.php:2093
804
  msgid "Errors color"
805
  msgstr "Kleur van foutmeldingen"
806
 
807
+ #: contact_form.php:2098
808
  msgid "Error text color"
809
  msgstr "Tekstkleur van foutmeldingen"
810
 
811
+ #: contact_form.php:2103
812
  msgid "Background color of the input field errors"
813
  msgstr "Achtergrondkleur van veldfoutmeldingen"
814
 
815
+ #: contact_form.php:2108
816
  msgid "Border color of the input field errors"
817
  msgstr "Randkleur van veldfoutmeldingen"
818
 
819
+ #: contact_form.php:2113
820
  msgid "Placeholder color of the input field errors"
821
  msgstr "Kleur van tijdelijke aanduidingen in een veld met foutmeldingen"
822
 
823
+ #: contact_form.php:2118
824
  msgid "Input fields"
825
  msgstr "Velden"
826
 
827
+ #: contact_form.php:2123
828
  msgid "Input fields background color"
829
  msgstr "Achtergrondkleur van velden"
830
 
831
+ #: contact_form.php:2128
832
  msgid "Text fields color"
833
  msgstr "Kleur van velden met tekst"
834
 
835
+ #: contact_form.php:2132
836
  msgid "Border width in px, numbers only"
837
  msgstr "Border breedte in px, slechts getallen"
838
 
839
+ #: contact_form.php:2137 contact_form.php:2161
840
  msgid "Border color"
841
  msgstr "Border kleur"
842
 
843
+ #: contact_form.php:2142
844
  msgid "Submit button"
845
  msgstr "Verzend knop"
846
 
847
+ #: contact_form.php:2146
848
  msgid "Width in px, numbers only"
849
  msgstr "Breedte in px, slechts getallen"
850
 
851
+ #: contact_form.php:2151
852
  msgid "Button color"
853
  msgstr "Kleur van knop"
854
 
855
+ #: contact_form.php:2156
856
  msgid "Button text color"
857
  msgstr "Tekstkleur van knop"
858
 
859
+ #: contact_form.php:2188
860
  #, fuzzy
861
  msgid "Contact Form | Preview"
862
  msgstr "Contact Formulier Pro | Voorbeeld"
863
 
864
+ #: contact_form.php:2189
865
  msgid "Drag the necessary field to sort fields."
866
  msgstr ""
867
 
868
+ #: contact_form.php:2385
869
+ #, fuzzy
870
  msgid ""
871
  "If you would like to add the Contact Form to your website, just copy and "
872
+ "paste this shortcode to your post or page or widget"
873
  msgstr ""
874
  "Als je het Contact Formulier aan je website wil toevoegen, kopieer en plak "
875
  "deze code dan naar je bericht, pagina of widget:"
876
 
877
+ #: contact_form.php:2501
878
  msgid "Sorry, email message could not be delivered."
879
  msgstr "Sorry, het e-mailbericht kon niet worden afgeleverd."
880
 
881
+ #: contact_form.php:3069 contact_form.php:3071
882
  msgid "Sent from (ip address)"
883
  msgstr "Verstuurd van (IP-adres)"
884
 
885
+ #: contact_form.php:3099
886
  msgid "Contact from"
887
  msgstr "Contact van"
888
 
889
+ #: contact_form.php:3104 contact_form.php:3153
 
 
 
 
890
  msgid "Site"
891
  msgstr "Website"
892
 
893
+ #: contact_form.php:3283
894
  msgid ""
895
  "If you can see this MIME, it means that the MIME type is not supported by "
896
  "your email client!"
898
  "Als je deze MIME kan zien, betekent dat dat het MIME type niet wordt "
899
  "ondersteund door je e-mailprogramma!"
900
 
901
+ #: contact_form.php:3366
902
  msgid "FAQ"
903
  msgstr "Veelgestelde vragen"
904
 
905
+ #: contact_form.php:3367
906
  msgid "Support"
907
  msgstr "Ondersteuning"
908
 
909
+ #: contact_form.php:3416
910
  msgid "Are you sure that you want to delete this language data?"
911
  msgstr "Weet je zeker dat je deze taal data wil verwijderen?"
912
 
913
+ #: contact_form.php:3437
914
  msgid "Add multiple forms"
915
  msgstr "Meerdere formulieren toevoegen"
916
 
917
+ #: contact_form.php:3437
918
  msgid ""
919
  "Install Contact Form Multi plugin to create unlimited number of contact "
920
  "forms."
922
  "Installeer de Contact Form Multi plugin om een ongelimiteerd aantal "
923
  "contactformulieren te maken"
924
 
925
+ #: contact_form.php:3442
926
  msgid "Learn more"
927
  msgstr "Meer informatie"
928
 
929
+ #: contact_form.php:3663
930
  msgid "Close notice"
931
  msgstr ""
932
 
933
+ #: contact_form.php:3668
934
  msgid "allows to store your messages to the database."
935
  msgstr "staat toe om je berichten in de database op te slaan"
936
 
937
+ #: contact_form.php:3669
938
  msgid "Manage messages that have been sent from your website."
939
  msgstr "Beheer berichten die van je website zijn verstuurd."
940
 
941
+ #: contact_form.php:3727
942
  #, fuzzy
943
  msgid "Contact form"
944
  msgstr "Contact van"
945
 
946
+ #: contact_form.php:3740 contact_form.php:3750
947
  #, fuzzy
948
  msgid "Language"
949
  msgstr "Een taal toevoegen"
950
 
951
+ #~ msgid "Name:"
952
+ #~ msgstr "Naam:"
953
+
954
+ #~ msgid "Address:"
955
+ #~ msgstr "Adres:"
956
+
957
+ #~ msgid "Email Address:"
958
+ #~ msgstr "e-mailadres:"
959
+
960
+ #~ msgid "Phone number:"
961
+ #~ msgstr "Telefoonnummer:"
962
+
963
+ #~ msgid "Subject:"
964
+ #~ msgstr "Onderwerp:"
965
+
966
+ #~ msgid "Message:"
967
+ #~ msgstr "Bericht:"
968
+
969
+ #~ msgid "Attachment:"
970
+ #~ msgstr "Bijlage:"
971
+
972
+ #, fuzzy
973
+ #~ msgid ""
974
+ #~ "Please enable JavaScript to add language in the contact form, change the "
975
+ #~ "names of the contact form fields and error messages."
976
+ #~ msgstr ""
977
+ #~ "De namen voor de velden en foutmeldingen van het contactformulier "
978
+ #~ "aanpassen"
979
+
980
+ #~ msgid "What to use?"
981
+ #~ msgstr "Wat te gebruiken?"
982
+
983
+ #~ msgid "Using Contact Form to DB by BestWebSoft"
984
+ #~ msgstr "Gebruikt Contact Form to DB door BestWebSoft"
985
+
986
+ #, fuzzy
987
+ #~ msgid "Activate Subscriber"
988
+ #~ msgstr "Geactiveerde plugins"
989
+
990
+ #, fuzzy
991
+ #~ msgid "Activate Captcha"
992
+ #~ msgstr "CAPTCHA activeren"
993
+
994
+ #, fuzzy
995
+ #~ msgid "Download Captcha"
996
+ #~ msgstr "CAPTCHA downloaden"
997
+
998
+ #~ msgid "Phone"
999
+ #~ msgstr "Telefoon"
1000
+
1001
  #~ msgid "To send mail you can use the php mail function"
1002
  #~ msgstr "Om e-mail te versturen kun je de php mail functie gebruiken"
1003
 
1214
  #~ msgid "Please, go to"
1215
  #~ msgstr "Ga alsjeblieft naar"
1216
 
 
 
 
1217
  #~ msgid "You will be redirected automatically in 5 seconds."
1218
  #~ msgstr "Je wordt automatisch doorgestuurd in 5 seconden."
1219
 
languages/contact-form-plugin-pt_BR.mo CHANGED
Binary file
languages/contact-form-plugin-pt_BR.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: 2016-06-27 16:31+0300\n"
6
- "PO-Revision-Date: 2016-06-27 16:31+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Breno Jacinto, DJIO | Dionizio Bonfim Bach <brenojac@gmail."
9
  "com, wordpress@djio.com.br>\n"
@@ -20,7 +20,7 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ contact_form
23
- #: contact_form.php:37 contact_form.php:1030
24
  msgid "Contact Form Settings"
25
  msgstr "Configurações do Formulário de Contato"
26
 
@@ -30,42 +30,54 @@ msgid "Contact Form"
30
  msgstr "Formulário de contato"
31
 
32
  # @ contact_form
33
- #: contact_form.php:165 contact_form.php:1565 contact_form.php:1599
34
- msgid "Name:"
35
- msgstr "Nome:"
 
 
36
 
37
  # @ contact_form
38
- #: contact_form.php:166 contact_form.php:1566 contact_form.php:1600
39
- msgid "Address:"
40
- msgstr "Endereço:"
 
 
41
 
42
  # @ contact_form
43
- #: contact_form.php:167 contact_form.php:1567 contact_form.php:1601
44
- msgid "Email Address:"
45
- msgstr "Endereço de E-mail:"
 
46
 
47
  # @ contact_form
48
- #: contact_form.php:168 contact_form.php:1568 contact_form.php:1602
49
- msgid "Phone number:"
 
 
50
  msgstr "Número de Telefone:"
51
 
52
  # @ contact_form
53
- #: contact_form.php:169 contact_form.php:1569 contact_form.php:1603
54
- msgid "Subject:"
55
- msgstr "Assunto:"
 
 
56
 
57
  # @ contact_form
58
- #: contact_form.php:170 contact_form.php:1570 contact_form.php:1604
59
- msgid "Message:"
60
- msgstr "Mensagem:"
 
 
61
 
62
  # @ contact_form
63
- #: contact_form.php:171 contact_form.php:1571 contact_form.php:1605
64
- msgid "Attachment:"
65
- msgstr "Anexo:"
 
66
 
67
  # @ contact_form
68
- #: contact_form.php:172
69
  msgid ""
70
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
71
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -74,95 +86,95 @@ msgstr ""
74
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
75
 
76
  # @ contact_form
77
- #: contact_form.php:173 contact_form.php:1573 contact_form.php:1607
78
  msgid "Send me a copy"
79
  msgstr "Envie-me uma cópia"
80
 
81
  # @ contact_form
82
- #: contact_form.php:174 contact_form.php:1574 contact_form.php:1608
83
  msgid "Submit"
84
  msgstr "Enviar"
85
 
86
  # @ contact_form
87
- #: contact_form.php:175
88
  msgid "Your name is required."
89
  msgstr "Seu nome é obrigatório"
90
 
91
  # @ contact_form
92
- #: contact_form.php:176
93
  msgid "Address is required."
94
  msgstr "Endereço é obrigatório."
95
 
96
  # @ contact_form
97
- #: contact_form.php:177
98
  msgid "A valid email address is required."
99
  msgstr "Um e-mail válido é obrigatório."
100
 
101
  # @ contact_form
102
- #: contact_form.php:178
103
  msgid "Phone number is required."
104
  msgstr "Telefone é obrigatório."
105
 
106
  # @ contact_form
107
- #: contact_form.php:179
108
  msgid "Subject is required."
109
  msgstr "O Assunto da mensagem é obrigatório."
110
 
111
  # @ contact_form
112
- #: contact_form.php:180
113
  msgid "Message text is required."
114
  msgstr "O texto da Mensagem é obrigatório."
115
 
116
  # @ contact_form
117
- #: contact_form.php:181
118
  msgid "File format is not valid."
119
  msgstr "Impossível anexar arquivo. "
120
 
121
  # @ contact_form
122
- #: contact_form.php:182
123
  msgid "File upload error."
124
  msgstr "Erro no upload do arquivo."
125
 
126
  # @ contact_form
127
- #: contact_form.php:183
128
  msgid "The file could not be uploaded."
129
  msgstr "O foi possível fazer upload do arquivo."
130
 
131
  # @ contact_form
132
- #: contact_form.php:184
133
  msgid "This file is too large."
134
  msgstr "Este arquivo é muito grande."
135
 
136
  # @ contact_form
137
- #: contact_form.php:185
138
  msgid "Please fill out the CAPTCHA."
139
  msgstr "Por favor, complete a resposta da charada ."
140
 
141
  # @ contact_form
142
- #: contact_form.php:186
143
  msgid "Please make corrections below and try again."
144
  msgstr ""
145
  "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
146
 
147
  # @ bestwebsoft
148
  # @ contact_form
149
- #: contact_form.php:188
150
  msgid "Thank you for contacting us."
151
  msgstr "Obrigado por nos contatar"
152
 
153
  # @ contact_form
154
- #: contact_form.php:688 contact_form.php:998
155
  msgid "Settings saved."
156
  msgstr "As configurações foram salvas."
157
 
158
- #: contact_form.php:940
159
  msgid ""
160
  "Email 'FROM' field option was changed, which may cause email messages being "
161
  "moved to the spam folder or email delivery failures."
162
  msgstr ""
163
 
164
  # @ contact_form
165
- #: contact_form.php:950
166
  msgid ""
167
  "If the 'Redirect to page' option is selected then the URL field should be in "
168
  "the following format"
@@ -171,13 +183,13 @@ msgstr ""
171
  "URL deve ser no seguinte formato"
172
 
173
  # @ contact_form
174
- #: contact_form.php:957
175
  #, fuzzy
176
  msgid "Such user does not exist."
177
  msgstr "Tal usuário não existe. Configurações não foram salvas."
178
 
179
  # @ contact_form
180
- #: contact_form.php:967
181
  #, fuzzy
182
  msgid ""
183
  "Please enter a valid email address in the 'Use this email address' field."
@@ -186,7 +198,7 @@ msgstr ""
186
  "salvas."
187
 
188
  # @ contact_form
189
- #: contact_form.php:975
190
  #, fuzzy
191
  msgid "Please enter a valid email address in the 'FROM' field."
192
  msgstr ""
@@ -194,77 +206,59 @@ msgstr ""
194
  "salvas."
195
 
196
  # @ contact_form
197
- #: contact_form.php:1000
198
  #, fuzzy
199
  msgid "Settings are not saved."
200
  msgstr "As configurações foram salvas."
201
 
202
- #: contact_form.php:1027
203
  msgid "All plugin settings were restored."
204
  msgstr ""
205
 
206
- #: contact_form.php:1032
207
  msgid "How to Use Step-by-step Instruction"
208
  msgstr ""
209
 
210
  # @ bestwebsoft
211
  # @ contact_form
212
- #: contact_form.php:1035 contact_form.php:3024 contact_form.php:3038
213
  msgid "Settings"
214
  msgstr "Configurações"
215
 
216
  # @ contact_form
217
- #: contact_form.php:1036
218
  #, fuzzy
219
  msgid "Additional settings"
220
  msgstr "Opções adicionais"
221
 
222
- #: contact_form.php:1037
223
  msgid "Appearance"
224
  msgstr ""
225
 
226
- #: contact_form.php:1038
227
  msgid "Custom code"
228
  msgstr ""
229
 
230
- #: contact_form.php:1039
231
  msgid "Go PRO"
232
  msgstr ""
233
 
234
- # @ contact_form
235
- #: contact_form.php:1045
236
- #, fuzzy
237
- msgid ""
238
- "Please enable JavaScript to add language in the contact form, change the "
239
- "names of the contact form fields and error messages."
240
- msgstr "Mude os nomes dos campos do formulário de contato e mensagens de erro."
241
-
242
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1740
243
- msgid "Form layout"
244
- msgstr ""
245
-
246
- # @ contact_form
247
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1752
248
- #, fuzzy
249
- msgid "Submit position"
250
- msgstr "Botão de Envio"
251
-
252
- #: contact_form.php:1057
253
- msgid "Notice:"
254
  msgstr ""
255
 
256
- #: contact_form.php:1061
257
  msgid "NEW_FORM"
258
  msgstr ""
259
 
260
- #: contact_form.php:1062
261
  msgid ""
262
  "If you want to create multiple contact forms, please install the Contact "
263
  "Form Multi plugin."
264
  msgstr ""
265
 
266
  # @ contact_form
267
- #: contact_form.php:1071
268
  #, fuzzy, php-format
269
  msgid ""
270
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -273,7 +267,7 @@ msgstr ""
273
  "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas "
274
  "copie e cole este código na sua postagem ou página ou widget:"
275
 
276
- #: contact_form.php:1077
277
  #, php-format
278
  msgid ""
279
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -283,7 +277,7 @@ msgid ""
283
  msgstr ""
284
 
285
  # @ contact_form
286
- #: contact_form.php:1086
287
  msgid ""
288
  "If you leave the fields empty, the messages will be sent to the email "
289
  "address specified during registration."
@@ -292,132 +286,137 @@ msgstr ""
292
  "enviadas para um endereço que foi especificado durante o registro."
293
 
294
  # @ contact_form
295
- #: contact_form.php:1089
296
- msgid "The user's email address:"
 
297
  msgstr "Use o email de um usuário do wordpress:"
298
 
299
  # @ contact_form
300
- #: contact_form.php:1093
301
  #, fuzzy
302
  msgid "Select a username"
303
  msgstr "Selecione o nome do usuário"
304
 
305
  # @ contact_form
306
- #: contact_form.php:1106
 
307
  msgid ""
308
- "Enter a username of the person who should get the messages from the contact "
309
  "form."
310
  msgstr ""
311
  "Determine um nome de usuário que receberá as mensagens enviadas pelo "
312
  "Formulário de Contato."
313
 
314
  # @ contact_form
315
- #: contact_form.php:1110
316
- msgid "Use this email address:"
 
317
  msgstr "Use este email:"
318
 
319
  # @ contact_form
320
- #: contact_form.php:1114
321
- msgid "Enter the email address you want the messages forwarded to."
 
322
  msgstr ""
323
  "Configure um endereço de email que será usado para o recebimento de "
324
  "mensagens."
325
 
326
- #: contact_form.php:1121 contact_form.php:1487 contact_form.php:1679
327
- #: contact_form.php:1767 contact_form.php:3119
328
  msgid "Close"
329
  msgstr ""
330
 
331
- #: contact_form.php:1125
332
- msgid "Add department selectbox to the contact form:"
333
  msgstr ""
334
 
335
- #: contact_form.php:1133 contact_form.php:1496 contact_form.php:1698
336
- #: contact_form.php:1973
337
  msgid "If you upgrade to Pro version all your settings will be saved."
338
  msgstr ""
339
 
340
- #: contact_form.php:1140 contact_form.php:1407 contact_form.php:1501
341
- #: contact_form.php:1705 contact_form.php:1980
342
  msgid "Unlock premium options by upgrading to Pro version"
343
  msgstr ""
344
 
345
- #: contact_form.php:1143 contact_form.php:1410 contact_form.php:1504
346
- #: contact_form.php:1708 contact_form.php:1983 contact_form.php:3329
347
  msgid "Learn More"
348
  msgstr ""
349
 
350
- #: contact_form.php:1151
351
  msgid "Save emails to the database"
352
  msgstr ""
353
 
354
- #: contact_form.php:1156
355
  msgid "Using"
356
  msgstr ""
357
 
 
 
 
 
 
358
  # @ contact_form
359
- #: contact_form.php:1159 contact_form.php:1163
 
360
  #, fuzzy
361
- msgid "Using Contact Form to DB by BestWebSoft"
362
- msgstr "Formulário de Contato Pro"
363
 
364
  # @ contact_form
365
- #: contact_form.php:1159
 
366
  #, fuzzy
367
  msgid "Activate"
368
  msgstr "Ativar captcha"
369
 
370
  # @ contact_form
371
- #: contact_form.php:1163
 
372
  #, fuzzy
373
  msgid "Download"
374
  msgstr "Fazer Download do Captcha"
375
 
376
- # @ contact_form
377
- #: contact_form.php:1173
378
- msgid "What to use?"
379
- msgstr "O que usar?"
380
 
381
  # @ contact_form
382
- #: contact_form.php:1178
383
  msgid "Wp-mail"
384
  msgstr "Wp-mail"
385
 
386
  # @ contact_form
387
- #: contact_form.php:1180
388
  #, fuzzy
389
  msgid "You can use the Wordpress wp_mail function for mailing"
390
  msgstr "Você pode usar a função wp_mail para enviar emails"
391
 
392
  # @ contact_form
393
- #: contact_form.php:1183
394
  msgid "Mail"
395
  msgstr "Mail"
396
 
397
  # @ contact_form
398
- #: contact_form.php:1185
399
  #, fuzzy
400
  msgid "You can use the PHP mail function for mailing"
401
  msgstr "Você pode usar a função wp_mail para enviar emails"
402
 
403
- #: contact_form.php:1190
404
  msgid "'FROM' field"
405
  msgstr ""
406
 
407
  # @ contact_form
408
- #: contact_form.php:1192 contact_form.php:1251 contact_form.php:1839
409
- #: contact_form.php:2810 contact_form.php:2846
410
- msgid "Name"
411
- msgstr "Nome"
412
-
413
- # @ contact_form
414
- #: contact_form.php:1195
415
  #, fuzzy
416
  msgid "User name"
417
  msgstr "Email do usuário"
418
 
419
  # @ contact_form
420
- #: contact_form.php:1197
421
  #, fuzzy
422
  msgid ""
423
  "The name of the user who fills the form will be used in the field 'From'."
@@ -426,17 +425,17 @@ msgstr ""
426
  "campo 'De'"
427
 
428
  # @ contact_form
429
- #: contact_form.php:1202 contact_form.php:2821 contact_form.php:2853
430
  msgid "Email"
431
  msgstr "E-Mail"
432
 
433
  # @ contact_form
434
- #: contact_form.php:1205
435
  msgid "User email"
436
  msgstr "Email do usuário"
437
 
438
  # @ contact_form
439
- #: contact_form.php:1207
440
  msgid ""
441
  "The email address of the user who fills the form will be used in the field "
442
  "'From'."
@@ -444,217 +443,168 @@ msgstr ""
444
  "O endereço de email do usuário que preencher o formulário será usado no "
445
  "campo 'De'"
446
 
447
- #: contact_form.php:1210
448
  msgid ""
449
  "If this option is changed, email messages may be moved to the spam folder or "
450
  "email delivery failures may occur."
451
  msgstr ""
452
 
453
  # @ contact_form
454
- #: contact_form.php:1216
455
  #, fuzzy
456
  msgid "Required symbol"
457
  msgstr "Campos obrigatórios"
458
 
459
- #: contact_form.php:1226
460
  msgid "Fields"
461
  msgstr ""
462
 
463
- #: contact_form.php:1227 contact_form.php:1254 contact_form.php:1281
464
- #: contact_form.php:1301 contact_form.php:1340 contact_form.php:1425
465
  msgid "Used"
466
  msgstr ""
467
 
468
  # @ contact_form
469
- #: contact_form.php:1228 contact_form.php:1243 contact_form.php:1258
470
- #: contact_form.php:1285 contact_form.php:1305 contact_form.php:1318
471
- #: contact_form.php:1344 contact_form.php:1357 contact_form.php:1381
472
  #, fuzzy
473
  msgid "Required"
474
  msgstr "Campos obrigatórios"
475
 
476
- #: contact_form.php:1230 contact_form.php:1263 contact_form.php:1323
477
- #: contact_form.php:1362 contact_form.php:1386
478
  msgid "Visible"
479
  msgstr ""
480
 
481
- #: contact_form.php:1231 contact_form.php:1267 contact_form.php:1327
482
- #: contact_form.php:1366 contact_form.php:1390
483
  msgid "Disabled for editing"
484
  msgstr ""
485
 
486
- #: contact_form.php:1232 contact_form.php:1291 contact_form.php:1370
487
- #: contact_form.php:1394
488
  msgid "Field's default value"
489
  msgstr ""
490
 
491
- #: contact_form.php:1239
492
  msgid "Department selectbox"
493
  msgstr ""
494
 
495
- #: contact_form.php:1271
496
  msgid "Use User's name as a default value if the user is logged in."
497
  msgstr ""
498
 
499
- #: contact_form.php:1272 contact_form.php:1332
500
  msgid ""
501
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
502
  "in users."
503
  msgstr ""
504
 
505
- #: contact_form.php:1278
506
  msgid "Location selectbox"
507
  msgstr ""
508
 
509
- # @ contact_form
510
- #: contact_form.php:1298 contact_form.php:1844 contact_form.php:2816
511
- #: contact_form.php:2850
512
- msgid "Address"
513
- msgstr "Endereço"
514
-
515
- # @ contact_form
516
- #: contact_form.php:1314
517
- msgid "Email Address"
518
- msgstr "Endereço de email"
519
-
520
- #: contact_form.php:1331
521
  msgid "Use User's email as a default value if the user is logged in."
522
  msgstr ""
523
 
524
  # @ contact_form
525
- #: contact_form.php:1337
526
- #, fuzzy
527
- msgid "Phone number"
528
- msgstr "Número de Telefone:"
529
-
530
- # @ contact_form
531
- #: contact_form.php:1353 contact_form.php:1859 contact_form.php:2831
532
- #: contact_form.php:2859
533
- msgid "Subject"
534
- msgstr "Assunto"
535
-
536
- # @ contact_form
537
- #: contact_form.php:1377 contact_form.php:1863 contact_form.php:2834
538
- #: contact_form.php:2861
539
- msgid "Message"
540
- msgstr "Mensagem"
541
-
542
- # @ contact_form
543
- #: contact_form.php:1418
544
  msgid "Attachment block"
545
  msgstr "Bloco de anexos"
546
 
547
  # @ contact_form
548
- #: contact_form.php:1420
549
  msgid "Users can attach the following file formats"
550
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
551
 
552
- #: contact_form.php:1438
553
  msgid "Add to the form"
554
  msgstr ""
555
 
556
  # @ contact_form
557
- #: contact_form.php:1443
558
  #, fuzzy
559
  msgid "Tips below the Attachment"
560
  msgstr "Exibir dicas abaixo do bloco de Anexos"
561
 
562
  # @ contact_form
563
- #: contact_form.php:1452
564
  #, fuzzy
565
  msgid "'Send me a copy' block"
566
  msgstr "Exibir bloco 'Enviar-me uma cópia'"
567
 
568
- #: contact_form.php:1464
569
- msgid "Activate Subscriber"
570
- msgstr ""
571
-
572
- #: contact_form.php:1468
573
- msgid "Download Subscriber"
574
- msgstr ""
575
-
576
- # @ contact_form
577
- #: contact_form.php:1477
578
- #, fuzzy
579
- msgid "Activate Captcha"
580
- msgstr "Ativar captcha"
581
-
582
- # @ contact_form
583
- #: contact_form.php:1481
584
- #, fuzzy
585
- msgid "Download Captcha"
586
- msgstr "Fazer Download do Captcha"
587
-
588
- #: contact_form.php:1491
589
  msgid "Agreement checkbox"
590
  msgstr ""
591
 
592
- #: contact_form.php:1491
593
  msgid "Required checkbox for submitting the form"
594
  msgstr ""
595
 
596
- #: contact_form.php:1492
597
  msgid "Optional checkbox"
598
  msgstr ""
599
 
600
- #: contact_form.php:1492
601
  msgid "Optional checkbox, the results of which will be displayed in email"
602
  msgstr ""
603
 
604
  # @ contact_form
605
- #: contact_form.php:1513
606
  msgid "Delete an attachment file from the server after the email is sent"
607
  msgstr "Excluir um arquivo anexo do servidor depois que o e-mail for enviado"
608
 
609
- #: contact_form.php:1519
610
  msgid "Email in HTML format sending"
611
  msgstr ""
612
 
613
  # @ contact_form
614
- #: contact_form.php:1523
615
  msgid "Display additional info in the email"
616
  msgstr "Mostre informações adicionais no email"
617
 
618
  # @ contact_form
619
- #: contact_form.php:1529
620
  #, fuzzy
621
  msgid "Sent from (IP address)"
622
  msgstr "Enviado de (Endereço IP)"
623
 
624
  # @ contact_form
625
- #: contact_form.php:1529
626
  msgid "Example: Sent from (IP address):\t127.0.0.1"
627
  msgstr "Examplo: Enviado de (endereço IP):\\\t127.0.0.1"
628
 
629
  # @ contact_form
630
- #: contact_form.php:1530 contact_form.php:2783 contact_form.php:2785
631
  msgid "Date/Time"
632
  msgstr "Data / Hora"
633
 
634
  # @ contact_form
635
- #: contact_form.php:1530
636
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
637
  msgstr "Exemplo: Data/Hora:\\\t19 de Agosto de 2013 20:50"
638
 
639
  # @ contact_form
640
- #: contact_form.php:1531 contact_form.php:2789 contact_form.php:2791
641
  msgid "Sent from (referer)"
642
  msgstr "Vindo de (origem)"
643
 
644
  # @ contact_form
645
- #: contact_form.php:1531
646
  msgid ""
647
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
648
  msgstr ""
649
  "Exemplo: Enviado do (referer):\\\thttp://bestwebsoft.com/contacts/contact-us/"
650
 
651
  # @ contact_form
652
- #: contact_form.php:1532 contact_form.php:2795 contact_form.php:2797
653
  msgid "Using (user agent)"
654
  msgstr "Usando (cliente de email)"
655
 
656
  # @ contact_form
657
- #: contact_form.php:1532
658
  msgid ""
659
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
660
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -663,76 +613,76 @@ msgstr ""
663
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
664
 
665
  # @ contact_form
666
- #: contact_form.php:1537
667
  msgid "Language settings for the field names in the form"
668
  msgstr "Configurações de idioma para os nomes dos campos no formulário"
669
 
670
  # @ contact_form
671
- #: contact_form.php:1546
672
  msgid "Add a language"
673
  msgstr "Adicione um idioma"
674
 
675
  # @ contact_form
676
- #: contact_form.php:1550
677
  msgid "Change the names of the contact form fields and error messages"
678
  msgstr "Mude os nomes dos campos do formulário de contato e mensagens de erro."
679
 
680
  # @ contact_form
681
- #: contact_form.php:1555 contact_form.php:1642 contact_form.php:1887
682
- #: contact_form.php:1892 contact_form.php:1902 contact_form.php:1907
683
- #: contact_form.php:1912 contact_form.php:1917 contact_form.php:1927
684
- #: contact_form.php:1932 contact_form.php:1941 contact_form.php:1955
685
- #: contact_form.php:1960 contact_form.php:1965
686
  msgid "Default"
687
  msgstr "Padrão"
688
 
689
- #: contact_form.php:1563 contact_form.php:1597
690
  msgid "click to expand/hide the list"
691
  msgstr ""
692
 
693
  # @ contact_form
694
- #: contact_form.php:1572 contact_form.php:1606
695
  #, fuzzy
696
  msgid "Tips below the Attachment block"
697
  msgstr "Exibir dicas abaixo do bloco de Anexos"
698
 
699
  # @ contact_form
700
- #: contact_form.php:1575 contact_form.php:1609
701
  msgid "Error message for the Name field"
702
  msgstr "Mensagem de erro para o campo Nome"
703
 
704
  # @ contact_form
705
- #: contact_form.php:1576 contact_form.php:1610
706
  msgid "Error message for the Address field"
707
  msgstr "Mensagem de erro para o campo Endereço"
708
 
709
  # @ contact_form
710
- #: contact_form.php:1577 contact_form.php:1611
711
  msgid "Error message for the Email field"
712
  msgstr "Mensagem de erro para o campo Email"
713
 
714
  # @ contact_form
715
- #: contact_form.php:1578 contact_form.php:1612
716
  msgid "Error message for the Phone field"
717
  msgstr "Mensagem de erro para o campo Telefone"
718
 
719
  # @ contact_form
720
- #: contact_form.php:1579 contact_form.php:1613
721
  msgid "Error message for the Subject field"
722
  msgstr "Mensagem de erro para o campo Assunto"
723
 
724
  # @ contact_form
725
- #: contact_form.php:1580 contact_form.php:1614
726
  msgid "Error message for the Message field"
727
  msgstr "Mensagem de erro para o campo Mensagem"
728
 
729
  # @ contact_form
730
- #: contact_form.php:1581 contact_form.php:1615
731
  msgid "Error message about the file type for the Attachment field"
732
  msgstr "Mensagem de erro para o campo Anexo sobre o tipo de arquivo"
733
 
734
  # @ contact_form
735
- #: contact_form.php:1582 contact_form.php:1616
736
  msgid ""
737
  "Error message while uploading a file for the Attachment field to the server"
738
  msgstr ""
@@ -740,87 +690,87 @@ msgstr ""
740
  "servidor"
741
 
742
  # @ contact_form
743
- #: contact_form.php:1583 contact_form.php:1617
744
  msgid "Error message while moving the file for the Attachment field"
745
  msgstr "Mensagem de erro para o campo Anexo quando estiver movendo o arquivo"
746
 
747
  # @ contact_form
748
- #: contact_form.php:1584 contact_form.php:1618
749
  msgid "Error message when file size limit for the Attachment field is exceeded"
750
  msgstr ""
751
  "Mensagem de erro para o campo Anexo quando o tamanho máximo do arquivo for "
752
  "excedido"
753
 
754
  # @ contact_form
755
- #: contact_form.php:1585 contact_form.php:1619
756
  msgid "Error message for the Captcha field"
757
  msgstr "Mensagem de erro para o campo Captcha"
758
 
759
  # @ contact_form
760
- #: contact_form.php:1586 contact_form.php:1620
761
  msgid "Error message for the whole form"
762
  msgstr "Mensagem de erro para o formulário inteiro"
763
 
764
  # @ contact_form
765
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
766
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
767
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
768
- #: contact_form.php:3179
769
  msgid "Use shortcode"
770
  msgstr "Use shortcode (abreviações)"
771
 
772
  # @ contact_form
773
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
774
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
775
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
776
- #: contact_form.php:3179
777
  msgid "for this language"
778
  msgstr "para este idioma"
779
 
780
  # @ contact_form
781
- #: contact_form.php:1633
782
  #, fuzzy
783
  msgid "Use the changed names of the contact form fields in the email"
784
  msgstr "Mude os nomes dos campos do formulário de contato e mensagens de erro."
785
 
786
  # @ contact_form
787
- #: contact_form.php:1639
788
  msgid "Action after email is sent"
789
  msgstr "Ação após o email ser enviado"
790
 
791
  # @ contact_form
792
- #: contact_form.php:1641
793
  msgid "Display text"
794
  msgstr "Mostrar texto"
795
 
796
  # @ contact_form
797
- #: contact_form.php:1650 contact_form.php:1660
798
  msgid "Text"
799
  msgstr "Texto"
800
 
801
  # @ contact_form
802
- #: contact_form.php:1671
803
  msgid "Redirect to the page"
804
  msgstr "Redirecione para a página"
805
 
806
  # @ contact_form
807
- #: contact_form.php:1672
808
  msgid "Url"
809
  msgstr "URL"
810
 
811
- #: contact_form.php:1683
812
  msgid "Add field 'Reply-To' to the email header"
813
  msgstr ""
814
 
815
- #: contact_form.php:1685
816
  msgid "Field 'Reply-To' will be initialized by user email"
817
  msgstr ""
818
 
819
- #: contact_form.php:1689
820
  msgid "Auto Response"
821
  msgstr ""
822
 
823
- #: contact_form.php:1693
824
  #, php-format
825
  msgid ""
826
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -829,242 +779,243 @@ msgid ""
829
  msgstr ""
830
 
831
  # @ default
832
- #: contact_form.php:1718 contact_form.php:2213
833
  msgid "Save Changes"
834
  msgstr "Salvar Mudanças"
835
 
836
- #: contact_form.php:1731
837
  #, php-format
838
  msgid ""
839
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
840
  msgstr ""
841
 
842
- #: contact_form.php:1744
 
 
 
 
 
 
 
 
 
 
843
  msgid "One column"
844
  msgstr ""
845
 
846
- #: contact_form.php:1747
847
  msgid "Two columns"
848
  msgstr ""
849
 
850
- #: contact_form.php:1756 contact_form.php:1775 contact_form.php:1793
851
- #: contact_form.php:1808
852
  msgid "Left"
853
  msgstr ""
854
 
855
- #: contact_form.php:1759 contact_form.php:1781 contact_form.php:1796
856
- #: contact_form.php:1814
857
  msgid "Right"
858
  msgstr ""
859
 
860
- #: contact_form.php:1771
861
  msgid "Form align"
862
  msgstr ""
863
 
864
- #: contact_form.php:1778 contact_form.php:1811
865
  msgid "Center"
866
  msgstr ""
867
 
868
  # @ contact_form
869
- #: contact_form.php:1786
870
  #, fuzzy
871
  msgid "Labels position"
872
  msgstr "Botão de Envio"
873
 
874
- #: contact_form.php:1790
875
  msgid "Top"
876
  msgstr ""
877
 
878
- #: contact_form.php:1799
879
  msgid "Bottom"
880
  msgstr ""
881
 
882
- #: contact_form.php:1804
883
  msgid "Labels align"
884
  msgstr ""
885
 
886
  # @ contact_form
887
- #: contact_form.php:1819
888
  msgid "Errors output"
889
  msgstr "Saída de erros."
890
 
891
  # @ contact_form
892
- #: contact_form.php:1822
893
  msgid "Display error messages"
894
  msgstr "Mostrar mensagens de erro"
895
 
896
  # @ contact_form
897
- #: contact_form.php:1823
898
  msgid "Color of the input field errors."
899
  msgstr "Cor do erro nos campos de formulário"
900
 
901
  # @ contact_form
902
- #: contact_form.php:1824
903
  msgid "Display error messages & color of the input field errors"
904
  msgstr "Mostrar mensagens de erro e cores para os campos com erro"
905
 
906
  # @ contact_form
907
- #: contact_form.php:1829
908
  msgid "Add placeholder to the input blocks"
909
  msgstr "Adicione reserva de espaço aos blocos de inserção"
910
 
911
  # @ contact_form
912
- #: contact_form.php:1835
913
  msgid "Add tooltips"
914
  msgstr "Adicionar mensagens de ajuda"
915
 
916
  # @ contact_form
917
- #: contact_form.php:1849
918
  msgid "Email address"
919
  msgstr "Endereço de email"
920
 
921
  # @ contact_form
922
- #: contact_form.php:1854
923
  msgid "Phone Number"
924
  msgstr "Telefone"
925
 
926
  # @ contact_form
927
- #: contact_form.php:1868
928
- msgid "Attachment"
929
- msgstr "Anexo"
930
-
931
- # @ contact_form
932
- #: contact_form.php:1880
933
  msgid "Style options"
934
  msgstr "Opções de estilo"
935
 
936
  # @ contact_form
937
- #: contact_form.php:1884
938
  msgid "Text color"
939
  msgstr "Cor do texto"
940
 
941
  # @ contact_form
942
- #: contact_form.php:1889
943
  msgid "Label text color"
944
  msgstr "Cor do texto descritivo"
945
 
946
  # @ contact_form
947
- #: contact_form.php:1894
948
  msgid "Placeholder color"
949
  msgstr "Cor da reserva de espaço"
950
 
951
  # @ contact_form
952
- #: contact_form.php:1899
953
  msgid "Errors color"
954
  msgstr "Cor dos erros"
955
 
956
  # @ contact_form
957
- #: contact_form.php:1904
958
  msgid "Error text color"
959
  msgstr "Cor de texto do erro"
960
 
961
  # @ contact_form
962
- #: contact_form.php:1909
963
  msgid "Background color of the input field errors"
964
  msgstr "Cor de fundo do campo de formulário com erros"
965
 
966
  # @ contact_form
967
- #: contact_form.php:1914
968
  msgid "Border color of the input field errors"
969
  msgstr "Cor de borda do campo de formulário com erros"
970
 
971
  # @ contact_form
972
- #: contact_form.php:1919
973
  msgid "Placeholder color of the input field errors"
974
  msgstr "Cor de reserva de espaço do campo de formulário com erros"
975
 
976
  # @ contact_form
977
- #: contact_form.php:1924
978
  msgid "Input fields"
979
  msgstr "Campos do folmulário"
980
 
981
  # @ contact_form
982
- #: contact_form.php:1929
983
  msgid "Input fields background color"
984
  msgstr "Cor de fundo dos campos de formulário"
985
 
986
  # @ contact_form
987
- #: contact_form.php:1934
988
  msgid "Text fields color"
989
  msgstr "Cor dos campos de texto"
990
 
991
  # @ contact_form
992
- #: contact_form.php:1938
993
  msgid "Border width in px, numbers only"
994
  msgstr "Largura da borda em px, somente o número"
995
 
996
  # @ contact_form
997
- #: contact_form.php:1943 contact_form.php:1967
998
  msgid "Border color"
999
  msgstr "Cor da borda"
1000
 
1001
  # @ contact_form
1002
- #: contact_form.php:1948
1003
  msgid "Submit button"
1004
  msgstr "Botão de Envio"
1005
 
1006
  # @ contact_form
1007
- #: contact_form.php:1952
1008
  msgid "Width in px, numbers only"
1009
  msgstr "Largura em px, somente o número"
1010
 
1011
  # @ contact_form
1012
- #: contact_form.php:1957
1013
  msgid "Button color"
1014
  msgstr "Cor do botão"
1015
 
1016
  # @ contact_form
1017
- #: contact_form.php:1962
1018
  msgid "Button text color"
1019
  msgstr "Cor do texto do botão"
1020
 
1021
  # @ contact_form
1022
- #: contact_form.php:1994
1023
  #, fuzzy
1024
  msgid "Contact Form | Preview"
1025
  msgstr "Formulário de Contato Pro | Prévia"
1026
 
1027
- #: contact_form.php:1995
1028
  msgid "Drag the necessary field to sort fields."
1029
  msgstr ""
1030
 
1031
  # @ contact_form
1032
- #: contact_form.php:2200
 
1033
  msgid ""
1034
  "If you would like to add the Contact Form to your website, just copy and "
1035
- "paste this shortcode to your post or page or widget:"
1036
  msgstr ""
1037
  "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas "
1038
  "copie e cole este código na sua postagem ou página ou widget:"
1039
 
1040
  # @ bestwebsoft
1041
  # @ contact_form
1042
- #: contact_form.php:2297
1043
  msgid "Sorry, email message could not be delivered."
1044
  msgstr "Desculpe, seu e-mail não pode ser entregue."
1045
 
1046
  # @ contact_form
1047
- #: contact_form.php:2777 contact_form.php:2779
1048
  msgid "Sent from (ip address)"
1049
  msgstr "Enviado de (Endereço IP)"
1050
 
1051
  # @ contact_form
1052
- #: contact_form.php:2804
1053
  msgid "Contact from"
1054
  msgstr "Formulário de Contato"
1055
 
1056
  # @ contact_form
1057
- #: contact_form.php:2826 contact_form.php:2856
1058
- msgid "Phone"
1059
- msgstr "Telefone"
1060
-
1061
- # @ contact_form
1062
- #: contact_form.php:2837 contact_form.php:2863
1063
  msgid "Site"
1064
  msgstr "Site"
1065
 
1066
  # @ contact_form
1067
- #: contact_form.php:2956
1068
  msgid ""
1069
  "If you can see this MIME, it means that the MIME type is not supported by "
1070
  "your email client!"
@@ -1073,60 +1024,119 @@ msgstr ""
1073
  "Favor usar um cliente mais atualizado."
1074
 
1075
  # @ contact_form
1076
- #: contact_form.php:3039
1077
  msgid "FAQ"
1078
  msgstr "Perguntas Frequentes"
1079
 
1080
  # @ contact_form
1081
- #: contact_form.php:3040
1082
  msgid "Support"
1083
  msgstr "Suporte"
1084
 
1085
  # @ contact_form
1086
- #: contact_form.php:3089
1087
  msgid "Are you sure that you want to delete this language data?"
1088
  msgstr "Tem certeza que você quer apagar estes dados de idioma?"
1089
 
1090
  # @ contact_form
1091
- #: contact_form.php:3110
1092
  #, fuzzy
1093
  msgid "Add multiple forms"
1094
  msgstr "Adicionar mensagens de ajuda"
1095
 
1096
- #: contact_form.php:3110
1097
  msgid ""
1098
  "Install Contact Form Multi plugin to create unlimited number of contact "
1099
  "forms."
1100
  msgstr ""
1101
 
1102
- #: contact_form.php:3115
1103
  msgid "Learn more"
1104
  msgstr ""
1105
 
1106
- #: contact_form.php:3320
1107
  msgid "Close notice"
1108
  msgstr ""
1109
 
1110
- #: contact_form.php:3325
1111
  msgid "allows to store your messages to the database."
1112
  msgstr ""
1113
 
1114
- #: contact_form.php:3326
1115
  msgid "Manage messages that have been sent from your website."
1116
  msgstr ""
1117
 
1118
  # @ contact_form
1119
- #: contact_form.php:3384
1120
  #, fuzzy
1121
  msgid "Contact form"
1122
  msgstr "Formulário de Contato"
1123
 
1124
  # @ contact_form
1125
- #: contact_form.php:3397 contact_form.php:3407
1126
  #, fuzzy
1127
  msgid "Language"
1128
  msgstr "Adicione um idioma"
1129
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1130
  # @ contact_form
1131
  #~ msgid "To send mail you can use the php mail function"
1132
  #~ msgstr "Para enviar emails você pode usar a função mail() do php"
@@ -1215,11 +1225,6 @@ msgstr "Adicione um idioma"
1215
  #~ msgid "Please, enter Your license key"
1216
  #~ msgstr "Informe sua mensagem…"
1217
 
1218
- # @ contact_form
1219
- #, fuzzy
1220
- #~ msgid "the setting page"
1221
- #~ msgstr "Configurações extras"
1222
-
1223
  # @ contact_form
1224
  #~ msgid "Extra settings"
1225
  #~ msgstr "Configurações extras"
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-12 17:22+0300\n"
6
+ "PO-Revision-Date: 2016-07-12 17:22+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Breno Jacinto, DJIO | Dionizio Bonfim Bach <brenojac@gmail."
9
  "com, wordpress@djio.com.br>\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ contact_form
23
+ #: contact_form.php:37 contact_form.php:1118
24
  msgid "Contact Form Settings"
25
  msgstr "Configurações do Formulário de Contato"
26
 
30
  msgstr "Formulário de contato"
31
 
32
  # @ contact_form
33
+ #: contact_form.php:167 contact_form.php:1294 contact_form.php:1353
34
+ #: contact_form.php:1746 contact_form.php:1784 contact_form.php:2033
35
+ #: contact_form.php:3113 contact_form.php:3159
36
+ msgid "Name"
37
+ msgstr "Nome"
38
 
39
  # @ contact_form
40
+ #: contact_form.php:168 contact_form.php:1400 contact_form.php:1747
41
+ #: contact_form.php:1785 contact_form.php:2038 contact_form.php:3120
42
+ #: contact_form.php:3165
43
+ msgid "Address"
44
+ msgstr "Endereço"
45
 
46
  # @ contact_form
47
+ #: contact_form.php:169 contact_form.php:1416 contact_form.php:1748
48
+ #: contact_form.php:1786
49
+ msgid "Email Address"
50
+ msgstr "Endereço de email"
51
 
52
  # @ contact_form
53
+ #: contact_form.php:170 contact_form.php:1439 contact_form.php:1749
54
+ #: contact_form.php:1787
55
+ #, fuzzy
56
+ msgid "Phone number"
57
  msgstr "Número de Telefone:"
58
 
59
  # @ contact_form
60
+ #: contact_form.php:171 contact_form.php:1455 contact_form.php:1750
61
+ #: contact_form.php:1788 contact_form.php:2053 contact_form.php:3131
62
+ #: contact_form.php:3174
63
+ msgid "Subject"
64
+ msgstr "Assunto"
65
 
66
  # @ contact_form
67
+ #: contact_form.php:172 contact_form.php:1479 contact_form.php:1751
68
+ #: contact_form.php:1789 contact_form.php:2057 contact_form.php:3136
69
+ #: contact_form.php:3178
70
+ msgid "Message"
71
+ msgstr "Mensagem"
72
 
73
  # @ contact_form
74
+ #: contact_form.php:173 contact_form.php:1752 contact_form.php:1790
75
+ #: contact_form.php:2062
76
+ msgid "Attachment"
77
+ msgstr "Anexo"
78
 
79
  # @ contact_form
80
+ #: contact_form.php:174
81
  msgid ""
82
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
83
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
86
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
87
 
88
  # @ contact_form
89
+ #: contact_form.php:175 contact_form.php:1754 contact_form.php:1792
90
  msgid "Send me a copy"
91
  msgstr "Envie-me uma cópia"
92
 
93
  # @ contact_form
94
+ #: contact_form.php:176 contact_form.php:1755 contact_form.php:1793
95
  msgid "Submit"
96
  msgstr "Enviar"
97
 
98
  # @ contact_form
99
+ #: contact_form.php:177
100
  msgid "Your name is required."
101
  msgstr "Seu nome é obrigatório"
102
 
103
  # @ contact_form
104
+ #: contact_form.php:178
105
  msgid "Address is required."
106
  msgstr "Endereço é obrigatório."
107
 
108
  # @ contact_form
109
+ #: contact_form.php:179
110
  msgid "A valid email address is required."
111
  msgstr "Um e-mail válido é obrigatório."
112
 
113
  # @ contact_form
114
+ #: contact_form.php:180
115
  msgid "Phone number is required."
116
  msgstr "Telefone é obrigatório."
117
 
118
  # @ contact_form
119
+ #: contact_form.php:181
120
  msgid "Subject is required."
121
  msgstr "O Assunto da mensagem é obrigatório."
122
 
123
  # @ contact_form
124
+ #: contact_form.php:182
125
  msgid "Message text is required."
126
  msgstr "O texto da Mensagem é obrigatório."
127
 
128
  # @ contact_form
129
+ #: contact_form.php:183
130
  msgid "File format is not valid."
131
  msgstr "Impossível anexar arquivo. "
132
 
133
  # @ contact_form
134
+ #: contact_form.php:184
135
  msgid "File upload error."
136
  msgstr "Erro no upload do arquivo."
137
 
138
  # @ contact_form
139
+ #: contact_form.php:185
140
  msgid "The file could not be uploaded."
141
  msgstr "O foi possível fazer upload do arquivo."
142
 
143
  # @ contact_form
144
+ #: contact_form.php:186
145
  msgid "This file is too large."
146
  msgstr "Este arquivo é muito grande."
147
 
148
  # @ contact_form
149
+ #: contact_form.php:187
150
  msgid "Please fill out the CAPTCHA."
151
  msgstr "Por favor, complete a resposta da charada ."
152
 
153
  # @ contact_form
154
+ #: contact_form.php:188
155
  msgid "Please make corrections below and try again."
156
  msgstr ""
157
  "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
158
 
159
  # @ bestwebsoft
160
  # @ contact_form
161
+ #: contact_form.php:190
162
  msgid "Thank you for contacting us."
163
  msgstr "Obrigado por nos contatar"
164
 
165
  # @ contact_form
166
+ #: contact_form.php:824 contact_form.php:1076
167
  msgid "Settings saved."
168
  msgstr "As configurações foram salvas."
169
 
170
+ #: contact_form.php:1021
171
  msgid ""
172
  "Email 'FROM' field option was changed, which may cause email messages being "
173
  "moved to the spam folder or email delivery failures."
174
  msgstr ""
175
 
176
  # @ contact_form
177
+ #: contact_form.php:1031
178
  msgid ""
179
  "If the 'Redirect to page' option is selected then the URL field should be in "
180
  "the following format"
183
  "URL deve ser no seguinte formato"
184
 
185
  # @ contact_form
186
+ #: contact_form.php:1038
187
  #, fuzzy
188
  msgid "Such user does not exist."
189
  msgstr "Tal usuário não existe. Configurações não foram salvas."
190
 
191
  # @ contact_form
192
+ #: contact_form.php:1048
193
  #, fuzzy
194
  msgid ""
195
  "Please enter a valid email address in the 'Use this email address' field."
198
  "salvas."
199
 
200
  # @ contact_form
201
+ #: contact_form.php:1056
202
  #, fuzzy
203
  msgid "Please enter a valid email address in the 'FROM' field."
204
  msgstr ""
206
  "salvas."
207
 
208
  # @ contact_form
209
+ #: contact_form.php:1078
210
  #, fuzzy
211
  msgid "Settings are not saved."
212
  msgstr "As configurações foram salvas."
213
 
214
+ #: contact_form.php:1115
215
  msgid "All plugin settings were restored."
216
  msgstr ""
217
 
218
+ #: contact_form.php:1120
219
  msgid "How to Use Step-by-step Instruction"
220
  msgstr ""
221
 
222
  # @ bestwebsoft
223
  # @ contact_form
224
+ #: contact_form.php:1123 contact_form.php:3351 contact_form.php:3365
225
  msgid "Settings"
226
  msgstr "Configurações"
227
 
228
  # @ contact_form
229
+ #: contact_form.php:1124
230
  #, fuzzy
231
  msgid "Additional settings"
232
  msgstr "Opções adicionais"
233
 
234
+ #: contact_form.php:1125
235
  msgid "Appearance"
236
  msgstr ""
237
 
238
+ #: contact_form.php:1126
239
  msgid "Custom code"
240
  msgstr ""
241
 
242
+ #: contact_form.php:1127
243
  msgid "Go PRO"
244
  msgstr ""
245
 
246
+ #: contact_form.php:1136
247
+ msgid "Notice"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
  msgstr ""
249
 
250
+ #: contact_form.php:1140
251
  msgid "NEW_FORM"
252
  msgstr ""
253
 
254
+ #: contact_form.php:1141
255
  msgid ""
256
  "If you want to create multiple contact forms, please install the Contact "
257
  "Form Multi plugin."
258
  msgstr ""
259
 
260
  # @ contact_form
261
+ #: contact_form.php:1150
262
  #, fuzzy, php-format
263
  msgid ""
264
  "If you would like to add a Contact Form to your page or post, please use %s "
267
  "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas "
268
  "copie e cole este código na sua postagem ou página ou widget:"
269
 
270
+ #: contact_form.php:1156
271
  #, php-format
272
  msgid ""
273
  "You can add the Contact Form to your page or post by clicking on %s button "
277
  msgstr ""
278
 
279
  # @ contact_form
280
+ #: contact_form.php:1165
281
  msgid ""
282
  "If you leave the fields empty, the messages will be sent to the email "
283
  "address specified during registration."
286
  "enviadas para um endereço que foi especificado durante o registro."
287
 
288
  # @ contact_form
289
+ #: contact_form.php:1168
290
+ #, fuzzy
291
+ msgid "The user's email address"
292
  msgstr "Use o email de um usuário do wordpress:"
293
 
294
  # @ contact_form
295
+ #: contact_form.php:1172
296
  #, fuzzy
297
  msgid "Select a username"
298
  msgstr "Selecione o nome do usuário"
299
 
300
  # @ contact_form
301
+ #: contact_form.php:1185
302
+ #, fuzzy
303
  msgid ""
304
+ "Select a username of the person who should get the messages from the contact "
305
  "form."
306
  msgstr ""
307
  "Determine um nome de usuário que receberá as mensagens enviadas pelo "
308
  "Formulário de Contato."
309
 
310
  # @ contact_form
311
+ #: contact_form.php:1189
312
+ #, fuzzy
313
+ msgid "Use this email address"
314
  msgstr "Use este email:"
315
 
316
  # @ contact_form
317
+ #: contact_form.php:1193
318
+ #, fuzzy
319
+ msgid "Enter the email address for receiving messages"
320
  msgstr ""
321
  "Configure um endereço de email que será usado para o recebimento de "
322
  "mensagens."
323
 
324
+ #: contact_form.php:1200 contact_form.php:1663 contact_form.php:1873
325
+ #: contact_form.php:1961 contact_form.php:3446
326
  msgid "Close"
327
  msgstr ""
328
 
329
+ #: contact_form.php:1204
330
+ msgid "Add department selectbox to the contact form"
331
  msgstr ""
332
 
333
+ #: contact_form.php:1212 contact_form.php:1672 contact_form.php:1892
334
+ #: contact_form.php:2167
335
  msgid "If you upgrade to Pro version all your settings will be saved."
336
  msgstr ""
337
 
338
+ #: contact_form.php:1219 contact_form.php:1509 contact_form.php:1677
339
+ #: contact_form.php:1899 contact_form.php:2174
340
  msgid "Unlock premium options by upgrading to Pro version"
341
  msgstr ""
342
 
343
+ #: contact_form.php:1222 contact_form.php:1512 contact_form.php:1680
344
+ #: contact_form.php:1902 contact_form.php:2177 contact_form.php:3672
345
  msgid "Learn More"
346
  msgstr ""
347
 
348
+ #: contact_form.php:1230
349
  msgid "Save emails to the database"
350
  msgstr ""
351
 
352
+ #: contact_form.php:1241 contact_form.php:1255 contact_form.php:1262
353
  msgid "Using"
354
  msgstr ""
355
 
356
+ #: contact_form.php:1247 contact_form.php:1572 contact_form.php:1605
357
+ #: contact_form.php:1640
358
+ msgid "Please activate the appropriate option on"
359
+ msgstr ""
360
+
361
  # @ contact_form
362
+ #: contact_form.php:1250 contact_form.php:1575 contact_form.php:1608
363
+ #: contact_form.php:1643
364
  #, fuzzy
365
+ msgid "settings page"
366
+ msgstr "Configurações extras"
367
 
368
  # @ contact_form
369
+ #: contact_form.php:1256 contact_form.php:1581 contact_form.php:1615
370
+ #: contact_form.php:1651
371
  #, fuzzy
372
  msgid "Activate"
373
  msgstr "Ativar captcha"
374
 
375
  # @ contact_form
376
+ #: contact_form.php:1263 contact_form.php:1587 contact_form.php:1621
377
+ #: contact_form.php:1656
378
  #, fuzzy
379
  msgid "Download"
380
  msgstr "Fazer Download do Captcha"
381
 
382
+ #: contact_form.php:1275
383
+ msgid "Sending method"
384
+ msgstr ""
 
385
 
386
  # @ contact_form
387
+ #: contact_form.php:1280
388
  msgid "Wp-mail"
389
  msgstr "Wp-mail"
390
 
391
  # @ contact_form
392
+ #: contact_form.php:1282
393
  #, fuzzy
394
  msgid "You can use the Wordpress wp_mail function for mailing"
395
  msgstr "Você pode usar a função wp_mail para enviar emails"
396
 
397
  # @ contact_form
398
+ #: contact_form.php:1285
399
  msgid "Mail"
400
  msgstr "Mail"
401
 
402
  # @ contact_form
403
+ #: contact_form.php:1287
404
  #, fuzzy
405
  msgid "You can use the PHP mail function for mailing"
406
  msgstr "Você pode usar a função wp_mail para enviar emails"
407
 
408
+ #: contact_form.php:1292
409
  msgid "'FROM' field"
410
  msgstr ""
411
 
412
  # @ contact_form
413
+ #: contact_form.php:1297
 
 
 
 
 
 
414
  #, fuzzy
415
  msgid "User name"
416
  msgstr "Email do usuário"
417
 
418
  # @ contact_form
419
+ #: contact_form.php:1299
420
  #, fuzzy
421
  msgid ""
422
  "The name of the user who fills the form will be used in the field 'From'."
425
  "campo 'De'"
426
 
427
  # @ contact_form
428
+ #: contact_form.php:1304 contact_form.php:3126 contact_form.php:3170
429
  msgid "Email"
430
  msgstr "E-Mail"
431
 
432
  # @ contact_form
433
+ #: contact_form.php:1307
434
  msgid "User email"
435
  msgstr "Email do usuário"
436
 
437
  # @ contact_form
438
+ #: contact_form.php:1309
439
  msgid ""
440
  "The email address of the user who fills the form will be used in the field "
441
  "'From'."
443
  "O endereço de email do usuário que preencher o formulário será usado no "
444
  "campo 'De'"
445
 
446
+ #: contact_form.php:1312
447
  msgid ""
448
  "If this option is changed, email messages may be moved to the spam folder or "
449
  "email delivery failures may occur."
450
  msgstr ""
451
 
452
  # @ contact_form
453
+ #: contact_form.php:1318
454
  #, fuzzy
455
  msgid "Required symbol"
456
  msgstr "Campos obrigatórios"
457
 
458
+ #: contact_form.php:1328
459
  msgid "Fields"
460
  msgstr ""
461
 
462
+ #: contact_form.php:1329 contact_form.php:1356 contact_form.php:1383
463
+ #: contact_form.php:1403 contact_form.php:1442 contact_form.php:1527
464
  msgid "Used"
465
  msgstr ""
466
 
467
  # @ contact_form
468
+ #: contact_form.php:1330 contact_form.php:1345 contact_form.php:1360
469
+ #: contact_form.php:1387 contact_form.php:1407 contact_form.php:1420
470
+ #: contact_form.php:1446 contact_form.php:1459 contact_form.php:1483
471
  #, fuzzy
472
  msgid "Required"
473
  msgstr "Campos obrigatórios"
474
 
475
+ #: contact_form.php:1332 contact_form.php:1365 contact_form.php:1425
476
+ #: contact_form.php:1464 contact_form.php:1488
477
  msgid "Visible"
478
  msgstr ""
479
 
480
+ #: contact_form.php:1333 contact_form.php:1369 contact_form.php:1429
481
+ #: contact_form.php:1468 contact_form.php:1492
482
  msgid "Disabled for editing"
483
  msgstr ""
484
 
485
+ #: contact_form.php:1334 contact_form.php:1393 contact_form.php:1472
486
+ #: contact_form.php:1496
487
  msgid "Field's default value"
488
  msgstr ""
489
 
490
+ #: contact_form.php:1341
491
  msgid "Department selectbox"
492
  msgstr ""
493
 
494
+ #: contact_form.php:1373
495
  msgid "Use User's name as a default value if the user is logged in."
496
  msgstr ""
497
 
498
+ #: contact_form.php:1374 contact_form.php:1434
499
  msgid ""
500
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
501
  "in users."
502
  msgstr ""
503
 
504
+ #: contact_form.php:1380
505
  msgid "Location selectbox"
506
  msgstr ""
507
 
508
+ #: contact_form.php:1433
 
 
 
 
 
 
 
 
 
 
 
509
  msgid "Use User's email as a default value if the user is logged in."
510
  msgstr ""
511
 
512
  # @ contact_form
513
+ #: contact_form.php:1520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
514
  msgid "Attachment block"
515
  msgstr "Bloco de anexos"
516
 
517
  # @ contact_form
518
+ #: contact_form.php:1522
519
  msgid "Users can attach the following file formats"
520
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
521
 
522
+ #: contact_form.php:1540
523
  msgid "Add to the form"
524
  msgstr ""
525
 
526
  # @ contact_form
527
+ #: contact_form.php:1545
528
  #, fuzzy
529
  msgid "Tips below the Attachment"
530
  msgstr "Exibir dicas abaixo do bloco de Anexos"
531
 
532
  # @ contact_form
533
+ #: contact_form.php:1554
534
  #, fuzzy
535
  msgid "'Send me a copy' block"
536
  msgstr "Exibir bloco 'Enviar-me uma cópia'"
537
 
538
+ #: contact_form.php:1667
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
539
  msgid "Agreement checkbox"
540
  msgstr ""
541
 
542
+ #: contact_form.php:1667
543
  msgid "Required checkbox for submitting the form"
544
  msgstr ""
545
 
546
+ #: contact_form.php:1668
547
  msgid "Optional checkbox"
548
  msgstr ""
549
 
550
+ #: contact_form.php:1668
551
  msgid "Optional checkbox, the results of which will be displayed in email"
552
  msgstr ""
553
 
554
  # @ contact_form
555
+ #: contact_form.php:1689
556
  msgid "Delete an attachment file from the server after the email is sent"
557
  msgstr "Excluir um arquivo anexo do servidor depois que o e-mail for enviado"
558
 
559
+ #: contact_form.php:1695
560
  msgid "Email in HTML format sending"
561
  msgstr ""
562
 
563
  # @ contact_form
564
+ #: contact_form.php:1699
565
  msgid "Display additional info in the email"
566
  msgstr "Mostre informações adicionais no email"
567
 
568
  # @ contact_form
569
+ #: contact_form.php:1705
570
  #, fuzzy
571
  msgid "Sent from (IP address)"
572
  msgstr "Enviado de (Endereço IP)"
573
 
574
  # @ contact_form
575
+ #: contact_form.php:1705
576
  msgid "Example: Sent from (IP address):\t127.0.0.1"
577
  msgstr "Examplo: Enviado de (endereço IP):\\\t127.0.0.1"
578
 
579
  # @ contact_form
580
+ #: contact_form.php:1706 contact_form.php:3075 contact_form.php:3077
581
  msgid "Date/Time"
582
  msgstr "Data / Hora"
583
 
584
  # @ contact_form
585
+ #: contact_form.php:1706
586
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
587
  msgstr "Exemplo: Data/Hora:\\\t19 de Agosto de 2013 20:50"
588
 
589
  # @ contact_form
590
+ #: contact_form.php:1707 contact_form.php:3081 contact_form.php:3083
591
  msgid "Sent from (referer)"
592
  msgstr "Vindo de (origem)"
593
 
594
  # @ contact_form
595
+ #: contact_form.php:1707
596
  msgid ""
597
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
598
  msgstr ""
599
  "Exemplo: Enviado do (referer):\\\thttp://bestwebsoft.com/contacts/contact-us/"
600
 
601
  # @ contact_form
602
+ #: contact_form.php:1708 contact_form.php:3087 contact_form.php:3089
603
  msgid "Using (user agent)"
604
  msgstr "Usando (cliente de email)"
605
 
606
  # @ contact_form
607
+ #: contact_form.php:1708
608
  msgid ""
609
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
610
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
613
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
614
 
615
  # @ contact_form
616
+ #: contact_form.php:1713
617
  msgid "Language settings for the field names in the form"
618
  msgstr "Configurações de idioma para os nomes dos campos no formulário"
619
 
620
  # @ contact_form
621
+ #: contact_form.php:1722
622
  msgid "Add a language"
623
  msgstr "Adicione um idioma"
624
 
625
  # @ contact_form
626
+ #: contact_form.php:1726
627
  msgid "Change the names of the contact form fields and error messages"
628
  msgstr "Mude os nomes dos campos do formulário de contato e mensagens de erro."
629
 
630
  # @ contact_form
631
+ #: contact_form.php:1731 contact_form.php:1827 contact_form.php:2081
632
+ #: contact_form.php:2086 contact_form.php:2096 contact_form.php:2101
633
+ #: contact_form.php:2106 contact_form.php:2111 contact_form.php:2121
634
+ #: contact_form.php:2126 contact_form.php:2135 contact_form.php:2149
635
+ #: contact_form.php:2154 contact_form.php:2159
636
  msgid "Default"
637
  msgstr "Padrão"
638
 
639
+ #: contact_form.php:1744 contact_form.php:1782
640
  msgid "click to expand/hide the list"
641
  msgstr ""
642
 
643
  # @ contact_form
644
+ #: contact_form.php:1753 contact_form.php:1791
645
  #, fuzzy
646
  msgid "Tips below the Attachment block"
647
  msgstr "Exibir dicas abaixo do bloco de Anexos"
648
 
649
  # @ contact_form
650
+ #: contact_form.php:1756 contact_form.php:1794
651
  msgid "Error message for the Name field"
652
  msgstr "Mensagem de erro para o campo Nome"
653
 
654
  # @ contact_form
655
+ #: contact_form.php:1757 contact_form.php:1795
656
  msgid "Error message for the Address field"
657
  msgstr "Mensagem de erro para o campo Endereço"
658
 
659
  # @ contact_form
660
+ #: contact_form.php:1758 contact_form.php:1796
661
  msgid "Error message for the Email field"
662
  msgstr "Mensagem de erro para o campo Email"
663
 
664
  # @ contact_form
665
+ #: contact_form.php:1759 contact_form.php:1797
666
  msgid "Error message for the Phone field"
667
  msgstr "Mensagem de erro para o campo Telefone"
668
 
669
  # @ contact_form
670
+ #: contact_form.php:1760 contact_form.php:1798
671
  msgid "Error message for the Subject field"
672
  msgstr "Mensagem de erro para o campo Assunto"
673
 
674
  # @ contact_form
675
+ #: contact_form.php:1761 contact_form.php:1799
676
  msgid "Error message for the Message field"
677
  msgstr "Mensagem de erro para o campo Mensagem"
678
 
679
  # @ contact_form
680
+ #: contact_form.php:1762 contact_form.php:1800
681
  msgid "Error message about the file type for the Attachment field"
682
  msgstr "Mensagem de erro para o campo Anexo sobre o tipo de arquivo"
683
 
684
  # @ contact_form
685
+ #: contact_form.php:1763 contact_form.php:1801
686
  msgid ""
687
  "Error message while uploading a file for the Attachment field to the server"
688
  msgstr ""
690
  "servidor"
691
 
692
  # @ contact_form
693
+ #: contact_form.php:1764 contact_form.php:1802
694
  msgid "Error message while moving the file for the Attachment field"
695
  msgstr "Mensagem de erro para o campo Anexo quando estiver movendo o arquivo"
696
 
697
  # @ contact_form
698
+ #: contact_form.php:1765 contact_form.php:1803
699
  msgid "Error message when file size limit for the Attachment field is exceeded"
700
  msgstr ""
701
  "Mensagem de erro para o campo Anexo quando o tamanho máximo do arquivo for "
702
  "excedido"
703
 
704
  # @ contact_form
705
+ #: contact_form.php:1766 contact_form.php:1804
706
  msgid "Error message for the Captcha field"
707
  msgstr "Mensagem de erro para o campo Captcha"
708
 
709
  # @ contact_form
710
+ #: contact_form.php:1767 contact_form.php:1805
711
  msgid "Error message for the whole form"
712
  msgstr "Mensagem de erro para o formulário inteiro"
713
 
714
  # @ contact_form
715
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
716
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
717
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
718
+ #: contact_form.php:3516
719
  msgid "Use shortcode"
720
  msgstr "Use shortcode (abreviações)"
721
 
722
  # @ contact_form
723
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
724
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
725
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
726
+ #: contact_form.php:3516
727
  msgid "for this language"
728
  msgstr "para este idioma"
729
 
730
  # @ contact_form
731
+ #: contact_form.php:1818
732
  #, fuzzy
733
  msgid "Use the changed names of the contact form fields in the email"
734
  msgstr "Mude os nomes dos campos do formulário de contato e mensagens de erro."
735
 
736
  # @ contact_form
737
+ #: contact_form.php:1824
738
  msgid "Action after email is sent"
739
  msgstr "Ação após o email ser enviado"
740
 
741
  # @ contact_form
742
+ #: contact_form.php:1826
743
  msgid "Display text"
744
  msgstr "Mostrar texto"
745
 
746
  # @ contact_form
747
+ #: contact_form.php:1840 contact_form.php:1854
748
  msgid "Text"
749
  msgstr "Texto"
750
 
751
  # @ contact_form
752
+ #: contact_form.php:1865
753
  msgid "Redirect to the page"
754
  msgstr "Redirecione para a página"
755
 
756
  # @ contact_form
757
+ #: contact_form.php:1866
758
  msgid "Url"
759
  msgstr "URL"
760
 
761
+ #: contact_form.php:1877
762
  msgid "Add field 'Reply-To' to the email header"
763
  msgstr ""
764
 
765
+ #: contact_form.php:1879
766
  msgid "Field 'Reply-To' will be initialized by user email"
767
  msgstr ""
768
 
769
+ #: contact_form.php:1883
770
  msgid "Auto Response"
771
  msgstr ""
772
 
773
+ #: contact_form.php:1887
774
  #, php-format
775
  msgid ""
776
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
779
  msgstr ""
780
 
781
  # @ default
782
+ #: contact_form.php:1912 contact_form.php:2398
783
  msgid "Save Changes"
784
  msgstr "Salvar Mudanças"
785
 
786
+ #: contact_form.php:1925
787
  #, php-format
788
  msgid ""
789
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
790
  msgstr ""
791
 
792
+ #: contact_form.php:1925 contact_form.php:1934
793
+ msgid "Form layout"
794
+ msgstr ""
795
+
796
+ # @ contact_form
797
+ #: contact_form.php:1925 contact_form.php:1946
798
+ #, fuzzy
799
+ msgid "Submit position"
800
+ msgstr "Botão de Envio"
801
+
802
+ #: contact_form.php:1938
803
  msgid "One column"
804
  msgstr ""
805
 
806
+ #: contact_form.php:1941
807
  msgid "Two columns"
808
  msgstr ""
809
 
810
+ #: contact_form.php:1950 contact_form.php:1969 contact_form.php:1987
811
+ #: contact_form.php:2002
812
  msgid "Left"
813
  msgstr ""
814
 
815
+ #: contact_form.php:1953 contact_form.php:1975 contact_form.php:1990
816
+ #: contact_form.php:2008
817
  msgid "Right"
818
  msgstr ""
819
 
820
+ #: contact_form.php:1965
821
  msgid "Form align"
822
  msgstr ""
823
 
824
+ #: contact_form.php:1972 contact_form.php:2005
825
  msgid "Center"
826
  msgstr ""
827
 
828
  # @ contact_form
829
+ #: contact_form.php:1980
830
  #, fuzzy
831
  msgid "Labels position"
832
  msgstr "Botão de Envio"
833
 
834
+ #: contact_form.php:1984
835
  msgid "Top"
836
  msgstr ""
837
 
838
+ #: contact_form.php:1993
839
  msgid "Bottom"
840
  msgstr ""
841
 
842
+ #: contact_form.php:1998
843
  msgid "Labels align"
844
  msgstr ""
845
 
846
  # @ contact_form
847
+ #: contact_form.php:2013
848
  msgid "Errors output"
849
  msgstr "Saída de erros."
850
 
851
  # @ contact_form
852
+ #: contact_form.php:2016
853
  msgid "Display error messages"
854
  msgstr "Mostrar mensagens de erro"
855
 
856
  # @ contact_form
857
+ #: contact_form.php:2017
858
  msgid "Color of the input field errors."
859
  msgstr "Cor do erro nos campos de formulário"
860
 
861
  # @ contact_form
862
+ #: contact_form.php:2018
863
  msgid "Display error messages & color of the input field errors"
864
  msgstr "Mostrar mensagens de erro e cores para os campos com erro"
865
 
866
  # @ contact_form
867
+ #: contact_form.php:2023
868
  msgid "Add placeholder to the input blocks"
869
  msgstr "Adicione reserva de espaço aos blocos de inserção"
870
 
871
  # @ contact_form
872
+ #: contact_form.php:2029
873
  msgid "Add tooltips"
874
  msgstr "Adicionar mensagens de ajuda"
875
 
876
  # @ contact_form
877
+ #: contact_form.php:2043
878
  msgid "Email address"
879
  msgstr "Endereço de email"
880
 
881
  # @ contact_form
882
+ #: contact_form.php:2048 contact_form.php:3142 contact_form.php:3183
883
  msgid "Phone Number"
884
  msgstr "Telefone"
885
 
886
  # @ contact_form
887
+ #: contact_form.php:2074
 
 
 
 
 
888
  msgid "Style options"
889
  msgstr "Opções de estilo"
890
 
891
  # @ contact_form
892
+ #: contact_form.php:2078
893
  msgid "Text color"
894
  msgstr "Cor do texto"
895
 
896
  # @ contact_form
897
+ #: contact_form.php:2083
898
  msgid "Label text color"
899
  msgstr "Cor do texto descritivo"
900
 
901
  # @ contact_form
902
+ #: contact_form.php:2088
903
  msgid "Placeholder color"
904
  msgstr "Cor da reserva de espaço"
905
 
906
  # @ contact_form
907
+ #: contact_form.php:2093
908
  msgid "Errors color"
909
  msgstr "Cor dos erros"
910
 
911
  # @ contact_form
912
+ #: contact_form.php:2098
913
  msgid "Error text color"
914
  msgstr "Cor de texto do erro"
915
 
916
  # @ contact_form
917
+ #: contact_form.php:2103
918
  msgid "Background color of the input field errors"
919
  msgstr "Cor de fundo do campo de formulário com erros"
920
 
921
  # @ contact_form
922
+ #: contact_form.php:2108
923
  msgid "Border color of the input field errors"
924
  msgstr "Cor de borda do campo de formulário com erros"
925
 
926
  # @ contact_form
927
+ #: contact_form.php:2113
928
  msgid "Placeholder color of the input field errors"
929
  msgstr "Cor de reserva de espaço do campo de formulário com erros"
930
 
931
  # @ contact_form
932
+ #: contact_form.php:2118
933
  msgid "Input fields"
934
  msgstr "Campos do folmulário"
935
 
936
  # @ contact_form
937
+ #: contact_form.php:2123
938
  msgid "Input fields background color"
939
  msgstr "Cor de fundo dos campos de formulário"
940
 
941
  # @ contact_form
942
+ #: contact_form.php:2128
943
  msgid "Text fields color"
944
  msgstr "Cor dos campos de texto"
945
 
946
  # @ contact_form
947
+ #: contact_form.php:2132
948
  msgid "Border width in px, numbers only"
949
  msgstr "Largura da borda em px, somente o número"
950
 
951
  # @ contact_form
952
+ #: contact_form.php:2137 contact_form.php:2161
953
  msgid "Border color"
954
  msgstr "Cor da borda"
955
 
956
  # @ contact_form
957
+ #: contact_form.php:2142
958
  msgid "Submit button"
959
  msgstr "Botão de Envio"
960
 
961
  # @ contact_form
962
+ #: contact_form.php:2146
963
  msgid "Width in px, numbers only"
964
  msgstr "Largura em px, somente o número"
965
 
966
  # @ contact_form
967
+ #: contact_form.php:2151
968
  msgid "Button color"
969
  msgstr "Cor do botão"
970
 
971
  # @ contact_form
972
+ #: contact_form.php:2156
973
  msgid "Button text color"
974
  msgstr "Cor do texto do botão"
975
 
976
  # @ contact_form
977
+ #: contact_form.php:2188
978
  #, fuzzy
979
  msgid "Contact Form | Preview"
980
  msgstr "Formulário de Contato Pro | Prévia"
981
 
982
+ #: contact_form.php:2189
983
  msgid "Drag the necessary field to sort fields."
984
  msgstr ""
985
 
986
  # @ contact_form
987
+ #: contact_form.php:2385
988
+ #, fuzzy
989
  msgid ""
990
  "If you would like to add the Contact Form to your website, just copy and "
991
+ "paste this shortcode to your post or page or widget"
992
  msgstr ""
993
  "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas "
994
  "copie e cole este código na sua postagem ou página ou widget:"
995
 
996
  # @ bestwebsoft
997
  # @ contact_form
998
+ #: contact_form.php:2501
999
  msgid "Sorry, email message could not be delivered."
1000
  msgstr "Desculpe, seu e-mail não pode ser entregue."
1001
 
1002
  # @ contact_form
1003
+ #: contact_form.php:3069 contact_form.php:3071
1004
  msgid "Sent from (ip address)"
1005
  msgstr "Enviado de (Endereço IP)"
1006
 
1007
  # @ contact_form
1008
+ #: contact_form.php:3099
1009
  msgid "Contact from"
1010
  msgstr "Formulário de Contato"
1011
 
1012
  # @ contact_form
1013
+ #: contact_form.php:3104 contact_form.php:3153
 
 
 
 
 
1014
  msgid "Site"
1015
  msgstr "Site"
1016
 
1017
  # @ contact_form
1018
+ #: contact_form.php:3283
1019
  msgid ""
1020
  "If you can see this MIME, it means that the MIME type is not supported by "
1021
  "your email client!"
1024
  "Favor usar um cliente mais atualizado."
1025
 
1026
  # @ contact_form
1027
+ #: contact_form.php:3366
1028
  msgid "FAQ"
1029
  msgstr "Perguntas Frequentes"
1030
 
1031
  # @ contact_form
1032
+ #: contact_form.php:3367
1033
  msgid "Support"
1034
  msgstr "Suporte"
1035
 
1036
  # @ contact_form
1037
+ #: contact_form.php:3416
1038
  msgid "Are you sure that you want to delete this language data?"
1039
  msgstr "Tem certeza que você quer apagar estes dados de idioma?"
1040
 
1041
  # @ contact_form
1042
+ #: contact_form.php:3437
1043
  #, fuzzy
1044
  msgid "Add multiple forms"
1045
  msgstr "Adicionar mensagens de ajuda"
1046
 
1047
+ #: contact_form.php:3437
1048
  msgid ""
1049
  "Install Contact Form Multi plugin to create unlimited number of contact "
1050
  "forms."
1051
  msgstr ""
1052
 
1053
+ #: contact_form.php:3442
1054
  msgid "Learn more"
1055
  msgstr ""
1056
 
1057
+ #: contact_form.php:3663
1058
  msgid "Close notice"
1059
  msgstr ""
1060
 
1061
+ #: contact_form.php:3668
1062
  msgid "allows to store your messages to the database."
1063
  msgstr ""
1064
 
1065
+ #: contact_form.php:3669
1066
  msgid "Manage messages that have been sent from your website."
1067
  msgstr ""
1068
 
1069
  # @ contact_form
1070
+ #: contact_form.php:3727
1071
  #, fuzzy
1072
  msgid "Contact form"
1073
  msgstr "Formulário de Contato"
1074
 
1075
  # @ contact_form
1076
+ #: contact_form.php:3740 contact_form.php:3750
1077
  #, fuzzy
1078
  msgid "Language"
1079
  msgstr "Adicione um idioma"
1080
 
1081
+ # @ contact_form
1082
+ #~ msgid "Name:"
1083
+ #~ msgstr "Nome:"
1084
+
1085
+ # @ contact_form
1086
+ #~ msgid "Address:"
1087
+ #~ msgstr "Endereço:"
1088
+
1089
+ # @ contact_form
1090
+ #~ msgid "Email Address:"
1091
+ #~ msgstr "Endereço de E-mail:"
1092
+
1093
+ # @ contact_form
1094
+ #~ msgid "Phone number:"
1095
+ #~ msgstr "Número de Telefone:"
1096
+
1097
+ # @ contact_form
1098
+ #~ msgid "Subject:"
1099
+ #~ msgstr "Assunto:"
1100
+
1101
+ # @ contact_form
1102
+ #~ msgid "Message:"
1103
+ #~ msgstr "Mensagem:"
1104
+
1105
+ # @ contact_form
1106
+ #~ msgid "Attachment:"
1107
+ #~ msgstr "Anexo:"
1108
+
1109
+ # @ contact_form
1110
+ #, fuzzy
1111
+ #~ msgid ""
1112
+ #~ "Please enable JavaScript to add language in the contact form, change the "
1113
+ #~ "names of the contact form fields and error messages."
1114
+ #~ msgstr ""
1115
+ #~ "Mude os nomes dos campos do formulário de contato e mensagens de erro."
1116
+
1117
+ # @ contact_form
1118
+ #~ msgid "What to use?"
1119
+ #~ msgstr "O que usar?"
1120
+
1121
+ # @ contact_form
1122
+ #, fuzzy
1123
+ #~ msgid "Using Contact Form to DB by BestWebSoft"
1124
+ #~ msgstr "Formulário de Contato Pro"
1125
+
1126
+ # @ contact_form
1127
+ #, fuzzy
1128
+ #~ msgid "Activate Captcha"
1129
+ #~ msgstr "Ativar captcha"
1130
+
1131
+ # @ contact_form
1132
+ #, fuzzy
1133
+ #~ msgid "Download Captcha"
1134
+ #~ msgstr "Fazer Download do Captcha"
1135
+
1136
+ # @ contact_form
1137
+ #~ msgid "Phone"
1138
+ #~ msgstr "Telefone"
1139
+
1140
  # @ contact_form
1141
  #~ msgid "To send mail you can use the php mail function"
1142
  #~ msgstr "Para enviar emails você pode usar a função mail() do php"
1225
  #~ msgid "Please, enter Your license key"
1226
  #~ msgstr "Informe sua mensagem…"
1227
 
 
 
 
 
 
1228
  # @ contact_form
1229
  #~ msgid "Extra settings"
1230
  #~ msgstr "Configurações extras"
languages/contact-form-plugin-ru_RU.mo CHANGED
Binary file
languages/contact-form-plugin-ru_RU.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: 2016-06-27 16:31+0300\n"
6
- "PO-Revision-Date: 2016-06-27 16:32+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -20,7 +20,7 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ contact_form
23
- #: contact_form.php:37 contact_form.php:1030
24
  msgid "Contact Form Settings"
25
  msgstr "Настройки Contact Form"
26
 
@@ -30,42 +30,53 @@ msgid "Contact Form"
30
  msgstr "Contact Form"
31
 
32
  # @ contact_form
33
- #: contact_form.php:165 contact_form.php:1565 contact_form.php:1599
34
- msgid "Name:"
35
- msgstr "Имя:"
 
 
36
 
37
  # @ contact_form
38
- #: contact_form.php:166 contact_form.php:1566 contact_form.php:1600
39
- msgid "Address:"
40
- msgstr "Адрес:"
 
 
41
 
42
  # @ contact_form
43
- #: contact_form.php:167 contact_form.php:1567 contact_form.php:1601
44
- msgid "Email Address:"
45
- msgstr "Email:"
 
46
 
47
  # @ contact_form
48
- #: contact_form.php:168 contact_form.php:1568 contact_form.php:1602
49
- msgid "Phone number:"
50
- msgstr "Телефон:"
 
51
 
52
  # @ contact_form
53
- #: contact_form.php:169 contact_form.php:1569 contact_form.php:1603
54
- msgid "Subject:"
55
- msgstr "Тема:"
 
 
56
 
57
  # @ contact_form
58
- #: contact_form.php:170 contact_form.php:1570 contact_form.php:1604
59
- msgid "Message:"
60
- msgstr "Сообщение:"
 
 
61
 
62
  # @ contact_form
63
- #: contact_form.php:171 contact_form.php:1571 contact_form.php:1605
64
- msgid "Attachment:"
65
- msgstr "Прикрепить файл:"
 
66
 
67
  # @ contact_form
68
- #: contact_form.php:172
69
  msgid ""
70
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
71
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -74,96 +85,96 @@ msgstr ""
74
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
75
 
76
  # @ contact_form
77
- #: contact_form.php:173 contact_form.php:1573 contact_form.php:1607
78
  msgid "Send me a copy"
79
  msgstr "Отправить мне копию"
80
 
81
  # @ contact_form
82
- #: contact_form.php:174 contact_form.php:1574 contact_form.php:1608
83
  msgid "Submit"
84
  msgstr "Отправить"
85
 
86
  # @ contact_form
87
- #: contact_form.php:175
88
  msgid "Your name is required."
89
  msgstr "Поле Имя - это обязательное поле для заполнения."
90
 
91
  # @ contact_form
92
- #: contact_form.php:176
93
  msgid "Address is required."
94
  msgstr "Поле Адрес - это обязательное поле для заполнения."
95
 
96
  # @ contact_form
97
- #: contact_form.php:177
98
  msgid "A valid email address is required."
99
  msgstr "Укажите корректный email - адрес."
100
 
101
  # @ contact_form
102
- #: contact_form.php:178
103
  msgid "Phone number is required."
104
  msgstr "Поле Телефон - это обязательное поле для заполнения."
105
 
106
  # @ contact_form
107
- #: contact_form.php:179
108
  msgid "Subject is required."
109
  msgstr "Поле Тема - это обязательное поле для заполнения."
110
 
111
  # @ contact_form
112
- #: contact_form.php:180
113
  msgid "Message text is required."
114
  msgstr "Поле Сообщение - это обязательное поле для заполнения."
115
 
116
  # @ contact_form
117
- #: contact_form.php:181
118
  msgid "File format is not valid."
119
  msgstr "Прикрепленный тип файла не поддерживается."
120
 
121
  # @ contact_form
122
- #: contact_form.php:182
123
  msgid "File upload error."
124
  msgstr "Ошибка при загрузке файла."
125
 
126
  # @ contact_form
127
- #: contact_form.php:183
128
  msgid "The file could not be uploaded."
129
  msgstr "Невозможно загрузить файл."
130
 
131
  # @ contact_form
132
- #: contact_form.php:184
133
  msgid "This file is too large."
134
  msgstr "Размер файла слишком большой."
135
 
136
  # @ contact_form
137
- #: contact_form.php:185
138
  msgid "Please fill out the CAPTCHA."
139
  msgstr "Пожалуйста, заполните CAPTCHA."
140
 
141
  # @ contact_form
142
- #: contact_form.php:186
143
  msgid "Please make corrections below and try again."
144
  msgstr ""
145
  "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
146
 
147
  # @ contact_form
148
- #: contact_form.php:188
149
  msgid "Thank you for contacting us."
150
  msgstr "Спасибо, что связались с нами."
151
 
152
  # @ contact_form
153
- #: contact_form.php:688 contact_form.php:998
154
  msgid "Settings saved."
155
  msgstr "Настройки сохранены"
156
 
157
- #: contact_form.php:940
158
  msgid ""
159
  "Email 'FROM' field option was changed, which may cause email messages being "
160
  "moved to the spam folder or email delivery failures."
161
  msgstr ""
162
- "Опция \"Электронный адрес поля 'От'\" была изменена, что может приводить к "
163
- "тому, что письма будут попадать в спам или не будут доставлены."
164
 
165
  # @ contact_form
166
- #: contact_form.php:950
167
  msgid ""
168
  "If the 'Redirect to page' option is selected then the URL field should be in "
169
  "the following format"
@@ -172,86 +183,68 @@ msgstr ""
172
  "в следующем формате"
173
 
174
  # @ contact_form
175
- #: contact_form.php:957
176
  msgid "Such user does not exist."
177
  msgstr "Данный пользователь не найден."
178
 
179
  # @ contact_form
180
- #: contact_form.php:967
181
  msgid ""
182
  "Please enter a valid email address in the 'Use this email address' field."
183
  msgstr "Пожалуйста, введите корректный email в поле 'Использовать этот email'."
184
 
185
  # @ contact_form
186
- #: contact_form.php:975
187
  msgid "Please enter a valid email address in the 'FROM' field."
188
- msgstr "Пожалуйста, введите корректный email для поля 'FROM'."
189
 
190
  # @ contact_form
191
- #: contact_form.php:1000
192
  msgid "Settings are not saved."
193
  msgstr "Настройки не сохранены."
194
 
195
- #: contact_form.php:1027
196
  msgid "All plugin settings were restored."
197
  msgstr "Все настройки плагина восстановлены."
198
 
199
- #: contact_form.php:1032
200
  msgid "How to Use Step-by-step Instruction"
201
  msgstr "Пошаговая инструкция по использованию плагина"
202
 
203
  # @ contact_form
204
- #: contact_form.php:1035 contact_form.php:3024 contact_form.php:3038
205
  msgid "Settings"
206
  msgstr "Настройки"
207
 
208
  # @ contact_form
209
- #: contact_form.php:1036
210
  msgid "Additional settings"
211
  msgstr "Дополнительные настройки"
212
 
213
- #: contact_form.php:1037
214
  msgid "Appearance"
215
  msgstr "Отображение"
216
 
217
- #: contact_form.php:1038
218
  msgid "Custom code"
219
  msgstr "Пользовательский код"
220
 
221
  # @ contact_form
222
- #: contact_form.php:1039
223
  msgid "Go PRO"
224
  msgstr "Перейти на PRO версию"
225
 
226
  # @ contact_form
227
- #: contact_form.php:1045
228
- msgid ""
229
- "Please enable JavaScript to add language in the contact form, change the "
230
- "names of the contact form fields and error messages."
231
- msgstr ""
232
- "Пожалуйста, включите JavaScript для добавления языка в контактную форму, "
233
- "изменения названий полей контактной формы и сообщений об ошибках."
234
-
235
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1740
236
- msgid "Form layout"
237
- msgstr "Шаблон формы"
238
-
239
- # @ contact_form
240
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1752
241
- msgid "Submit position"
242
- msgstr "Позиция кнопки 'Отправить'"
243
-
244
- # @ contact_form
245
- #: contact_form.php:1057
246
- msgid "Notice:"
247
- msgstr "Обратите внимание:"
248
 
249
- #: contact_form.php:1061
250
  msgid "NEW_FORM"
251
  msgstr "НОВАЯ_ФОРМА"
252
 
253
  # @ contact_form
254
- #: contact_form.php:1062
255
  msgid ""
256
  "If you want to create multiple contact forms, please install the Contact "
257
  "Form Multi plugin."
@@ -260,7 +253,7 @@ msgstr ""
260
  "установите плагин Contact Form Multi."
261
 
262
  # @ contact_form
263
- #: contact_form.php:1071
264
  #, php-format
265
  msgid ""
266
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -269,7 +262,7 @@ msgstr ""
269
  "Если вы хотите добавить контактную форму на вашу страницу или пост, то "
270
  "используйте кнопку %s"
271
 
272
- #: contact_form.php:1077
273
  #, php-format
274
  msgid ""
275
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -283,7 +276,7 @@ msgstr ""
283
  "язык контактной формы."
284
 
285
  # @ contact_form
286
- #: contact_form.php:1086
287
  msgid ""
288
  "If you leave the fields empty, the messages will be sent to the email "
289
  "address specified during registration."
@@ -292,129 +285,130 @@ msgstr ""
292
  "email, который был указан при регистрации сайта."
293
 
294
  # @ contact_form
295
- #: contact_form.php:1089
296
- msgid "The user's email address:"
297
- msgstr "Email пользователя сайта:"
298
 
299
  # @ contact_form
300
- #: contact_form.php:1093
301
  msgid "Select a username"
302
  msgstr "Выберите имя пользователя"
303
 
304
  # @ contact_form
305
- #: contact_form.php:1106
306
  msgid ""
307
- "Enter a username of the person who should get the messages from the contact "
308
  "form."
309
  msgstr ""
310
  "Укажите логин пользователя, который будет получать сообщения контактной "
311
  "формы."
312
 
313
  # @ contact_form
314
- #: contact_form.php:1110
315
- msgid "Use this email address:"
316
- msgstr "Использовать этот email:"
317
 
318
  # @ contact_form
319
- #: contact_form.php:1114
320
- msgid "Enter the email address you want the messages forwarded to."
321
- msgstr "Укажите email, на который будут отправляться сообщения."
322
 
323
- #: contact_form.php:1121 contact_form.php:1487 contact_form.php:1679
324
- #: contact_form.php:1767 contact_form.php:3119
325
  msgid "Close"
326
  msgstr "Закрыть"
327
 
328
  # @ contact_form
329
- #: contact_form.php:1125
330
- msgid "Add department selectbox to the contact form:"
331
- msgstr "Добавить выбор отдела в контактную форму:"
332
 
333
  # @ contact_form
334
- #: contact_form.php:1133 contact_form.php:1496 contact_form.php:1698
335
- #: contact_form.php:1973
336
  msgid "If you upgrade to Pro version all your settings will be saved."
337
  msgstr "При установке Pro версии плагина, все ваши настройки сохраняются."
338
 
339
  # @ contact_form
340
- #: contact_form.php:1140 contact_form.php:1407 contact_form.php:1501
341
- #: contact_form.php:1705 contact_form.php:1980
342
  msgid "Unlock premium options by upgrading to Pro version"
343
  msgstr "Активируйте премиум опции обновившись до Pro версии"
344
 
345
  # @ contact_form
346
- #: contact_form.php:1143 contact_form.php:1410 contact_form.php:1504
347
- #: contact_form.php:1708 contact_form.php:1983 contact_form.php:3329
348
  msgid "Learn More"
349
  msgstr "Подробнее"
350
 
351
  # @ contact_form
352
- #: contact_form.php:1151
353
  msgid "Save emails to the database"
354
  msgstr "Сохранять email в базу данных"
355
 
356
  # @ contact_form
357
- #: contact_form.php:1156
358
  msgid "Using"
359
  msgstr "Используя"
360
 
 
 
 
 
 
361
  # @ contact_form
362
- #: contact_form.php:1159 contact_form.php:1163
363
- msgid "Using Contact Form to DB by BestWebSoft"
364
- msgstr "Используя Contact Form to DB, разработанный компанией BestWebSoft"
 
365
 
366
  # @ contact_form
367
- #: contact_form.php:1159
 
368
  msgid "Activate"
369
  msgstr "Активировать"
370
 
371
  # @ contact_form
372
- #: contact_form.php:1163
 
373
  msgid "Download"
374
  msgstr "Скачать"
375
 
376
- # @ contact_form
377
- #: contact_form.php:1173
378
- msgid "What to use?"
379
- msgstr "Что использовать?"
380
 
381
  # @ contact_form
382
- #: contact_form.php:1178
383
  msgid "Wp-mail"
384
  msgstr "Wp-mail"
385
 
386
  # @ contact_form
387
- #: contact_form.php:1180
388
  msgid "You can use the Wordpress wp_mail function for mailing"
389
  msgstr "Для отправки почты вы можете использовать Wordpress функцию wp_mail"
390
 
391
  # @ contact_form
392
- #: contact_form.php:1183
393
  msgid "Mail"
394
  msgstr "Mail"
395
 
396
  # @ contact_form
397
- #: contact_form.php:1185
398
  msgid "You can use the PHP mail function for mailing"
399
  msgstr "Для отправки почты вы можете использовать PHP функцию mail"
400
 
401
- #: contact_form.php:1190
402
  msgid "'FROM' field"
403
- msgstr "Поле 'От'"
404
 
405
  # @ contact_form
406
- #: contact_form.php:1192 contact_form.php:1251 contact_form.php:1839
407
- #: contact_form.php:2810 contact_form.php:2846
408
- msgid "Name"
409
- msgstr "Имя"
410
-
411
- # @ contact_form
412
- #: contact_form.php:1195
413
  msgid "User name"
414
  msgstr "Имя пользователя"
415
 
416
  # @ contact_form
417
- #: contact_form.php:1197
418
  msgid ""
419
  "The name of the user who fills the form will be used in the field 'From'."
420
  msgstr ""
@@ -422,17 +416,17 @@ msgstr ""
422
  "заполняет форму."
423
 
424
  # @ contact_form
425
- #: contact_form.php:1202 contact_form.php:2821 contact_form.php:2853
426
  msgid "Email"
427
  msgstr "Email"
428
 
429
  # @ contact_form
430
- #: contact_form.php:1205
431
  msgid "User email"
432
  msgstr "Email пользователя"
433
 
434
  # @ contact_form
435
- #: contact_form.php:1207
436
  msgid ""
437
  "The email address of the user who fills the form will be used in the field "
438
  "'From'."
@@ -440,7 +434,7 @@ msgstr ""
440
  "В поле \"От\" в письме будет использоваться email того пользователя, который "
441
  "заполняет форму."
442
 
443
- #: contact_form.php:1210
444
  msgid ""
445
  "If this option is changed, email messages may be moved to the spam folder or "
446
  "email delivery failures may occur."
@@ -449,58 +443,58 @@ msgstr ""
449
  "будут попадать в спам или не будут доставлены."
450
 
451
  # @ contact_form
452
- #: contact_form.php:1216
453
  msgid "Required symbol"
454
  msgstr "Символ, отображающий обязательное поле"
455
 
456
  # @ contact_form
457
- #: contact_form.php:1226
458
  msgid "Fields"
459
  msgstr "Поля"
460
 
461
  # @ contact_form
462
- #: contact_form.php:1227 contact_form.php:1254 contact_form.php:1281
463
- #: contact_form.php:1301 contact_form.php:1340 contact_form.php:1425
464
  msgid "Used"
465
  msgstr "Используется"
466
 
467
  # @ contact_form
468
- #: contact_form.php:1228 contact_form.php:1243 contact_form.php:1258
469
- #: contact_form.php:1285 contact_form.php:1305 contact_form.php:1318
470
- #: contact_form.php:1344 contact_form.php:1357 contact_form.php:1381
471
  msgid "Required"
472
- msgstr "Обязательные"
473
 
474
  # @ contact_form
475
- #: contact_form.php:1230 contact_form.php:1263 contact_form.php:1323
476
- #: contact_form.php:1362 contact_form.php:1386
477
  msgid "Visible"
478
  msgstr "Видимое"
479
 
480
  # @ contact_form
481
- #: contact_form.php:1231 contact_form.php:1267 contact_form.php:1327
482
- #: contact_form.php:1366 contact_form.php:1390
483
  msgid "Disabled for editing"
484
  msgstr "Нет возможности редактировать"
485
 
486
  # @ contact_form
487
- #: contact_form.php:1232 contact_form.php:1291 contact_form.php:1370
488
- #: contact_form.php:1394
489
  msgid "Field's default value"
490
  msgstr "Значение полей по умолчанию"
491
 
492
  # @ contact_form
493
- #: contact_form.php:1239
494
  msgid "Department selectbox"
495
  msgstr "Список отделов"
496
 
497
- #: contact_form.php:1271
498
  msgid "Use User's name as a default value if the user is logged in."
499
  msgstr ""
500
  "Использовать имя Пользователя как значение по умолчанию, если пользователь "
501
  "залогинен."
502
 
503
- #: contact_form.php:1272 contact_form.php:1332
504
  msgid ""
505
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
506
  "in users."
@@ -509,161 +503,115 @@ msgstr ""
509
  "к залогиненным пользователям."
510
 
511
  # @ contact_form
512
- #: contact_form.php:1278
513
  msgid "Location selectbox"
514
  msgstr "Список местоположений"
515
 
516
- # @ contact_form
517
- #: contact_form.php:1298 contact_form.php:1844 contact_form.php:2816
518
- #: contact_form.php:2850
519
- msgid "Address"
520
- msgstr "Адрес"
521
-
522
- # @ contact_form
523
- #: contact_form.php:1314
524
- msgid "Email Address"
525
- msgstr "Email адрес"
526
-
527
- #: contact_form.php:1331
528
  msgid "Use User's email as a default value if the user is logged in."
529
  msgstr ""
530
  "Использовать Email Пользователя как значение по умолчанию, если пользователь "
531
  "залогинен."
532
 
533
  # @ contact_form
534
- #: contact_form.php:1337
535
- msgid "Phone number"
536
- msgstr "Телефон"
537
-
538
- # @ contact_form
539
- #: contact_form.php:1353 contact_form.php:1859 contact_form.php:2831
540
- #: contact_form.php:2859
541
- msgid "Subject"
542
- msgstr "Тема"
543
-
544
- # @ contact_form
545
- #: contact_form.php:1377 contact_form.php:1863 contact_form.php:2834
546
- #: contact_form.php:2861
547
- msgid "Message"
548
- msgstr "Сообщение"
549
-
550
- # @ contact_form
551
- #: contact_form.php:1418
552
  msgid "Attachment block"
553
- msgstr "Блок 'Прикрепить файл'"
554
 
555
  # @ contact_form
556
- #: contact_form.php:1420
557
  msgid "Users can attach the following file formats"
558
  msgstr "Пользователи могут прикрепить файлы таких типов"
559
 
560
  # @ contact_form
561
- #: contact_form.php:1438
562
  msgid "Add to the form"
563
  msgstr "Добавить в форму"
564
 
565
  # @ contact_form
566
- #: contact_form.php:1443
567
  msgid "Tips below the Attachment"
568
  msgstr "Пояснения после блока \"Прикрепить файл\""
569
 
570
  # @ contact_form
571
- #: contact_form.php:1452
572
  msgid "'Send me a copy' block"
573
- msgstr "Блок 'Отправить мне копию'"
574
-
575
- #: contact_form.php:1464
576
- msgid "Activate Subscriber"
577
- msgstr "Активировать Subscriber"
578
-
579
- #: contact_form.php:1468
580
- msgid "Download Subscriber"
581
- msgstr "Скачать Subscriber"
582
 
583
  # @ contact_form
584
- #: contact_form.php:1477
585
- msgid "Activate Captcha"
586
- msgstr "Активировать Сaptcha"
587
-
588
- # @ contact_form
589
- #: contact_form.php:1481
590
- msgid "Download Captcha"
591
- msgstr "Скачать Сaptcha"
592
-
593
- # @ contact_form
594
- #: contact_form.php:1491
595
  msgid "Agreement checkbox"
596
  msgstr "Чекбокс согласия с условиями"
597
 
598
  # @ contact_form
599
- #: contact_form.php:1491
600
  msgid "Required checkbox for submitting the form"
601
  msgstr "Обязательный чекбокс для отправки формы"
602
 
603
  # @ contact_form
604
- #: contact_form.php:1492
605
  msgid "Optional checkbox"
606
  msgstr "Дополнительный чекбокс"
607
 
608
  # @ contact_form
609
- #: contact_form.php:1492
610
  msgid "Optional checkbox, the results of which will be displayed in email"
611
  msgstr "Дополнительный чекбокс, результаты которого будут отображены в email"
612
 
613
  # @ contact_form
614
- #: contact_form.php:1513
615
  msgid "Delete an attachment file from the server after the email is sent"
616
  msgstr "Удалить прикрепленный файл с сервера после отправки email"
617
 
618
  # @ contact_form
619
- #: contact_form.php:1519
620
  msgid "Email in HTML format sending"
621
  msgstr "Отправка еmail в формате HTML"
622
 
623
  # @ contact_form
624
- #: contact_form.php:1523
625
  msgid "Display additional info in the email"
626
  msgstr "Отображение дополнительной информации в письме"
627
 
628
  # @ contact_form
629
- #: contact_form.php:1529
630
  msgid "Sent from (IP address)"
631
  msgstr "Отправлено от (IP адрес)"
632
 
633
  # @ contact_form
634
- #: contact_form.php:1529
635
  msgid "Example: Sent from (IP address):\t127.0.0.1"
636
  msgstr "Пример: Отправлено от (IP адрес):\t127.0.0.1"
637
 
638
  # @ contact_form
639
- #: contact_form.php:1530 contact_form.php:2783 contact_form.php:2785
640
  msgid "Date/Time"
641
  msgstr "Дата/Время"
642
 
643
  # @ contact_form
644
- #: contact_form.php:1530
645
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
646
  msgstr "Пример: Дата/Время:\tАвгуст 19, 2013 8:50"
647
 
648
  # @ contact_form
649
- #: contact_form.php:1531 contact_form.php:2789 contact_form.php:2791
650
  msgid "Sent from (referer)"
651
  msgstr "Отправлено от (referer)"
652
 
653
  # @ contact_form
654
- #: contact_form.php:1531
655
  msgid ""
656
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
657
  msgstr ""
658
  "Пример: Отправлено от (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
659
 
660
  # @ contact_form
661
- #: contact_form.php:1532 contact_form.php:2795 contact_form.php:2797
662
  msgid "Using (user agent)"
663
  msgstr "Используя (user agent)"
664
 
665
  # @ contact_form
666
- #: contact_form.php:1532
667
  msgid ""
668
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
669
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -672,163 +620,165 @@ msgstr ""
672
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
673
 
674
  # @ contact_form
675
- #: contact_form.php:1537
676
  msgid "Language settings for the field names in the form"
677
- msgstr "Языковые настройки для названия полей в форме"
678
 
679
  # @ contact_form
680
- #: contact_form.php:1546
681
  msgid "Add a language"
682
  msgstr "Добавить язык"
683
 
684
  # @ contact_form
685
- #: contact_form.php:1550
686
  msgid "Change the names of the contact form fields and error messages"
687
- msgstr "Изменить названия полей контактной формы и сообщений об ошибках"
688
 
689
  # @ contact_form
690
- #: contact_form.php:1555 contact_form.php:1642 contact_form.php:1887
691
- #: contact_form.php:1892 contact_form.php:1902 contact_form.php:1907
692
- #: contact_form.php:1912 contact_form.php:1917 contact_form.php:1927
693
- #: contact_form.php:1932 contact_form.php:1941 contact_form.php:1955
694
- #: contact_form.php:1960 contact_form.php:1965
695
  msgid "Default"
696
  msgstr "По умолчанию"
697
 
698
  # @ contact_form
699
- #: contact_form.php:1563 contact_form.php:1597
700
  msgid "click to expand/hide the list"
701
  msgstr "нажмите чтобы развернуть/свернуть список"
702
 
703
  # @ contact_form
704
- #: contact_form.php:1572 contact_form.php:1606
705
  msgid "Tips below the Attachment block"
706
  msgstr "Пояснения после блока \"Прикрепить файл\""
707
 
708
  # @ contact_form
709
- #: contact_form.php:1575 contact_form.php:1609
710
  msgid "Error message for the Name field"
711
- msgstr "Сообщение об ошибке для поля Name"
712
 
713
  # @ contact_form
714
- #: contact_form.php:1576 contact_form.php:1610
715
  msgid "Error message for the Address field"
716
- msgstr "Сообщение об ошибке для поля Address"
717
 
718
  # @ contact_form
719
- #: contact_form.php:1577 contact_form.php:1611
720
  msgid "Error message for the Email field"
721
  msgstr "Сообщение об ошибке для поля Email"
722
 
723
  # @ contact_form
724
- #: contact_form.php:1578 contact_form.php:1612
725
  msgid "Error message for the Phone field"
726
- msgstr "Сообщение об ошибке для поля Phone"
727
 
728
  # @ contact_form
729
- #: contact_form.php:1579 contact_form.php:1613
730
  msgid "Error message for the Subject field"
731
- msgstr "Сообщение об ошибке для поля Subject"
732
 
733
  # @ contact_form
734
- #: contact_form.php:1580 contact_form.php:1614
735
  msgid "Error message for the Message field"
736
- msgstr "Сообщение об ошибке для поля Message"
737
 
738
  # @ contact_form
739
- #: contact_form.php:1581 contact_form.php:1615
740
  msgid "Error message about the file type for the Attachment field"
741
- msgstr "Сообщение об ошибке о типе файла для поля Attachment"
742
 
743
  # @ contact_form
744
- #: contact_form.php:1582 contact_form.php:1616
745
  msgid ""
746
  "Error message while uploading a file for the Attachment field to the server"
747
- msgstr "Сообщение об ошибке при загрузке файла на сервер для поля Attachment"
 
748
 
749
  # @ contact_form
750
- #: contact_form.php:1583 contact_form.php:1617
751
  msgid "Error message while moving the file for the Attachment field"
752
- msgstr "Сообщение об ошибке при перемещении файла для поля Attachment"
753
 
754
  # @ contact_form
755
- #: contact_form.php:1584 contact_form.php:1618
756
  msgid "Error message when file size limit for the Attachment field is exceeded"
757
  msgstr ""
758
- "Сообщение об ошибке когда размер файла превышает размер разрешенного "
759
- "сервером для поля Attachment"
760
 
761
  # @ contact_form
762
- #: contact_form.php:1585 contact_form.php:1619
763
  msgid "Error message for the Captcha field"
764
  msgstr "Сообщение об ошибке для поля Captcha"
765
 
766
  # @ contact_form
767
- #: contact_form.php:1586 contact_form.php:1620
768
  msgid "Error message for the whole form"
769
  msgstr "Сообщение об ошибке для всей формы"
770
 
771
  # @ contact_form
772
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
773
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
774
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
775
- #: contact_form.php:3179
776
  msgid "Use shortcode"
777
- msgstr "Использовать шорткод"
778
 
779
  # @ contact_form
780
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
781
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
782
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
783
- #: contact_form.php:3179
784
  msgid "for this language"
785
  msgstr "для данного языка"
786
 
787
  # @ contact_form
788
- #: contact_form.php:1633
789
  msgid "Use the changed names of the contact form fields in the email"
790
- msgstr "Использовать измененные названия полей контактной формы в email"
791
 
792
  # @ contact_form
793
- #: contact_form.php:1639
794
  msgid "Action after email is sent"
795
  msgstr "Действие после отправки письма"
796
 
797
  # @ contact_form
798
- #: contact_form.php:1641
799
  msgid "Display text"
800
  msgstr "Отобразить текст"
801
 
802
  # @ contact_form
803
- #: contact_form.php:1650 contact_form.php:1660
804
  msgid "Text"
805
  msgstr "Текст"
806
 
807
  # @ contact_form
808
- #: contact_form.php:1671
809
  msgid "Redirect to the page"
810
  msgstr "Перенаправление на страницу"
811
 
812
  # @ contact_form
813
- #: contact_form.php:1672
814
  msgid "Url"
815
  msgstr "Ссылка"
816
 
817
- #: contact_form.php:1683
818
  msgid "Add field 'Reply-To' to the email header"
819
  msgstr "Добавить поле 'Reply-To' в заголовок емейла"
820
 
821
- #: contact_form.php:1685
822
  msgid "Field 'Reply-To' will be initialized by user email"
823
- msgstr "Поле 'Reply-To' будет проинициализировано емейлом пользователя"
 
824
 
825
  # @ contact_form_pro
826
- #: contact_form.php:1689
827
  msgid "Auto Response"
828
  msgstr "Автоответ"
829
 
830
  # @ contact_form
831
- #: contact_form.php:1693
832
  #, php-format
833
  msgid ""
834
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -840,11 +790,11 @@ msgstr ""
840
  "названия блога."
841
 
842
  # @ default
843
- #: contact_form.php:1718 contact_form.php:2213
844
  msgid "Save Changes"
845
  msgstr "Сохранить изменения"
846
 
847
- #: contact_form.php:1731
848
  #, php-format
849
  msgid ""
850
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
@@ -852,229 +802,228 @@ msgstr ""
852
  "Пожалуйста, включите JavaScript для изменения опций '%s', '%s' и сортировки "
853
  "полей."
854
 
855
- #: contact_form.php:1744
 
 
 
 
 
 
 
 
 
856
  msgid "One column"
857
  msgstr "Одна колонка"
858
 
859
- #: contact_form.php:1747
860
  msgid "Two columns"
861
  msgstr "Две колонки"
862
 
863
- #: contact_form.php:1756 contact_form.php:1775 contact_form.php:1793
864
- #: contact_form.php:1808
865
  msgid "Left"
866
  msgstr "Слева"
867
 
868
- #: contact_form.php:1759 contact_form.php:1781 contact_form.php:1796
869
- #: contact_form.php:1814
870
  msgid "Right"
871
  msgstr "Справа"
872
 
873
- #: contact_form.php:1771
874
  msgid "Form align"
875
  msgstr "Выравнивание формы"
876
 
877
- #: contact_form.php:1778 contact_form.php:1811
878
  msgid "Center"
879
  msgstr "По центру"
880
 
881
  # @ contact_form
882
- #: contact_form.php:1786
883
  msgid "Labels position"
884
- msgstr "Позиция лейблов"
885
 
886
- #: contact_form.php:1790
887
  msgid "Top"
888
  msgstr "Сверху"
889
 
890
- #: contact_form.php:1799
891
  msgid "Bottom"
892
  msgstr "Снизу"
893
 
894
- #: contact_form.php:1804
895
  msgid "Labels align"
896
  msgstr "Выравнивание лейблов"
897
 
898
  # @ contact_form
899
- #: contact_form.php:1819
900
  msgid "Errors output"
901
  msgstr "Отображение ошибок"
902
 
903
  # @ contact_form
904
- #: contact_form.php:1822
905
  msgid "Display error messages"
906
  msgstr "Отображать сообщения об ошибках"
907
 
908
  # @ contact_form
909
- #: contact_form.php:1823
910
  msgid "Color of the input field errors."
911
  msgstr "Отображать ошибки цветом для полей ввода."
912
 
913
  # @ contact_form
914
- #: contact_form.php:1824
915
  msgid "Display error messages & color of the input field errors"
916
  msgstr "Отображать сообщения об ошибках и цвет полей ввода с ошибками"
917
 
918
  # @ contact_form
919
- #: contact_form.php:1829
920
  msgid "Add placeholder to the input blocks"
921
  msgstr "Добавить вспомогательный текст в поля ввода"
922
 
923
  # @ contact_form
924
- #: contact_form.php:1835
925
  msgid "Add tooltips"
926
  msgstr "Добавить подсказки"
927
 
928
  # @ contact_form
929
- #: contact_form.php:1849
930
  msgid "Email address"
931
  msgstr "Email"
932
 
933
  # @ contact_form
934
- #: contact_form.php:1854
935
  msgid "Phone Number"
936
  msgstr "Телефон"
937
 
938
  # @ contact_form
939
- #: contact_form.php:1868
940
- msgid "Attachment"
941
- msgstr "Прикрепить файл"
942
-
943
- # @ contact_form
944
- #: contact_form.php:1880
945
  msgid "Style options"
946
  msgstr "Настройки стиля"
947
 
948
  # @ contact_form
949
- #: contact_form.php:1884
950
  msgid "Text color"
951
  msgstr "Цвет текста"
952
 
953
  # @ contact_form
954
- #: contact_form.php:1889
955
  msgid "Label text color"
956
  msgstr "Цвет текста"
957
 
958
  # @ contact_form
959
- #: contact_form.php:1894
960
  msgid "Placeholder color"
961
- msgstr "Цвет замещающегося текста"
962
 
963
  # @ contact_form
964
- #: contact_form.php:1899
965
  msgid "Errors color"
966
  msgstr "Цвет ошибок"
967
 
968
  # @ contact_form
969
- #: contact_form.php:1904
970
  msgid "Error text color"
971
  msgstr "Цвет текста для ошибок"
972
 
973
  # @ contact_form
974
- #: contact_form.php:1909
975
  msgid "Background color of the input field errors"
976
  msgstr "Цвет фона для полей ввода с ошибками"
977
 
978
  # @ contact_form
979
- #: contact_form.php:1914
980
  msgid "Border color of the input field errors"
981
  msgstr "Цвет рамки для полей ввода с ошибками"
982
 
983
  # @ contact_form
984
- #: contact_form.php:1919
985
  msgid "Placeholder color of the input field errors"
986
  msgstr "Цвет вспомогательного текста для полей ввода с ошибками"
987
 
988
  # @ contact_form
989
- #: contact_form.php:1924
990
  msgid "Input fields"
991
  msgstr "Поля ввода"
992
 
993
  # @ contact_form
994
- #: contact_form.php:1929
995
  msgid "Input fields background color"
996
  msgstr "Цвет фона для полей ввода"
997
 
998
  # @ contact_form
999
- #: contact_form.php:1934
1000
  msgid "Text fields color"
1001
  msgstr "Цвет текста для полей ввода"
1002
 
1003
  # @ contact_form
1004
- #: contact_form.php:1938
1005
  msgid "Border width in px, numbers only"
1006
  msgstr "Ширина рамки в пикселях, только цифры"
1007
 
1008
  # @ contact_form
1009
- #: contact_form.php:1943 contact_form.php:1967
1010
  msgid "Border color"
1011
  msgstr "Цвет рамки"
1012
 
1013
  # @ contact_form
1014
- #: contact_form.php:1948
1015
  msgid "Submit button"
1016
  msgstr "Кнопка Отправить"
1017
 
1018
  # @ contact_form
1019
- #: contact_form.php:1952
1020
  msgid "Width in px, numbers only"
1021
  msgstr "Ширина в пикселях, только цифры"
1022
 
1023
  # @ contact_form
1024
- #: contact_form.php:1957
1025
  msgid "Button color"
1026
  msgstr "Цвет кнопки"
1027
 
1028
  # @ contact_form
1029
- #: contact_form.php:1962
1030
  msgid "Button text color"
1031
  msgstr "Цвет текста для кнопки"
1032
 
1033
  # @ contact_form
1034
- #: contact_form.php:1994
1035
  msgid "Contact Form | Preview"
1036
  msgstr "Contact Form | Предпросмотр"
1037
 
1038
- #: contact_form.php:1995
1039
  msgid "Drag the necessary field to sort fields."
1040
  msgstr "Перетащите необходимое поле для сортировки полей."
1041
 
1042
  # @ contact_form
1043
- #: contact_form.php:2200
1044
  msgid ""
1045
  "If you would like to add the Contact Form to your website, just copy and "
1046
- "paste this shortcode to your post or page or widget:"
1047
  msgstr ""
1048
  "Если вы хотите добавить контактную форму на свой сайт, вам нужно только "
1049
- "скопировать и вставить шорткод в контент страницы или поста или виджета:"
1050
 
1051
  # @ contact_form
1052
- #: contact_form.php:2297
1053
  msgid "Sorry, email message could not be delivered."
1054
  msgstr "Извините, ваш email не может быть отправлен."
1055
 
1056
  # @ contact_form
1057
- #: contact_form.php:2777 contact_form.php:2779
1058
  msgid "Sent from (ip address)"
1059
  msgstr "Отправлено от (IP адрес)"
1060
 
1061
  # @ contact_form
1062
- #: contact_form.php:2804
1063
  msgid "Contact from"
1064
  msgstr "Контакт из"
1065
 
1066
  # @ contact_form
1067
- #: contact_form.php:2826 contact_form.php:2856
1068
- msgid "Phone"
1069
- msgstr "Телефон"
1070
-
1071
- # @ contact_form
1072
- #: contact_form.php:2837 contact_form.php:2863
1073
  msgid "Site"
1074
  msgstr "Сайт"
1075
 
1076
  # @ contact_form
1077
- #: contact_form.php:2956
1078
  msgid ""
1079
  "If you can see this MIME, it means that the MIME type is not supported by "
1080
  "your email client!"
@@ -1083,26 +1032,26 @@ msgstr ""
1083
  "MIME тип!"
1084
 
1085
  # @ contact_form
1086
- #: contact_form.php:3039
1087
  msgid "FAQ"
1088
  msgstr "FAQ"
1089
 
1090
  # @ contact_form
1091
- #: contact_form.php:3040
1092
  msgid "Support"
1093
  msgstr "Поддержка"
1094
 
1095
  # @ contact_form
1096
- #: contact_form.php:3089
1097
  msgid "Are you sure that you want to delete this language data?"
1098
  msgstr "Вы действительно хотите удалить данные для этого языка?"
1099
 
1100
  # @ contact_form
1101
- #: contact_form.php:3110
1102
  msgid "Add multiple forms"
1103
  msgstr "Добавить несколько форм"
1104
 
1105
- #: contact_form.php:3110
1106
  msgid ""
1107
  "Install Contact Form Multi plugin to create unlimited number of contact "
1108
  "forms."
@@ -1111,30 +1060,30 @@ msgstr ""
1111
  "контактных форм."
1112
 
1113
  # @ contact_form
1114
- #: contact_form.php:3115
1115
  msgid "Learn more"
1116
  msgstr "Подробнее"
1117
 
1118
- #: contact_form.php:3320
1119
  msgid "Close notice"
1120
  msgstr "Закрыть"
1121
 
1122
  # @ contact_form
1123
- #: contact_form.php:3325
1124
  msgid "allows to store your messages to the database."
1125
  msgstr "позволяет хранить ваши сообщения в базе данных."
1126
 
1127
  # @ contact_form
1128
- #: contact_form.php:3326
1129
  msgid "Manage messages that have been sent from your website."
1130
  msgstr "Управление сообщениями, которые были отправлены с вашего сайта."
1131
 
1132
  # @ contact_form
1133
- #: contact_form.php:3384
1134
  msgid "Contact form"
1135
  msgstr "Контактная форма"
1136
 
1137
  # @ contact_form
1138
- #: contact_form.php:3397 contact_form.php:3407
1139
  msgid "Language"
1140
  msgstr "Язык"
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-12 16:27+0300\n"
6
+ "PO-Revision-Date: 2016-07-12 17:17+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ contact_form
23
+ #: contact_form.php:37 contact_form.php:1118
24
  msgid "Contact Form Settings"
25
  msgstr "Настройки Contact Form"
26
 
30
  msgstr "Contact Form"
31
 
32
  # @ contact_form
33
+ #: contact_form.php:167 contact_form.php:1294 contact_form.php:1353
34
+ #: contact_form.php:1746 contact_form.php:1784 contact_form.php:2033
35
+ #: contact_form.php:3113 contact_form.php:3159
36
+ msgid "Name"
37
+ msgstr "Имя"
38
 
39
  # @ contact_form
40
+ #: contact_form.php:168 contact_form.php:1400 contact_form.php:1747
41
+ #: contact_form.php:1785 contact_form.php:2038 contact_form.php:3120
42
+ #: contact_form.php:3165
43
+ msgid "Address"
44
+ msgstr "Адрес"
45
 
46
  # @ contact_form
47
+ #: contact_form.php:169 contact_form.php:1416 contact_form.php:1748
48
+ #: contact_form.php:1786
49
+ msgid "Email Address"
50
+ msgstr "Email адрес"
51
 
52
  # @ contact_form
53
+ #: contact_form.php:170 contact_form.php:1439 contact_form.php:1749
54
+ #: contact_form.php:1787
55
+ msgid "Phone number"
56
+ msgstr "Телефон"
57
 
58
  # @ contact_form
59
+ #: contact_form.php:171 contact_form.php:1455 contact_form.php:1750
60
+ #: contact_form.php:1788 contact_form.php:2053 contact_form.php:3131
61
+ #: contact_form.php:3174
62
+ msgid "Subject"
63
+ msgstr "Тема"
64
 
65
  # @ contact_form
66
+ #: contact_form.php:172 contact_form.php:1479 contact_form.php:1751
67
+ #: contact_form.php:1789 contact_form.php:2057 contact_form.php:3136
68
+ #: contact_form.php:3178
69
+ msgid "Message"
70
+ msgstr "Сообщение"
71
 
72
  # @ contact_form
73
+ #: contact_form.php:173 contact_form.php:1752 contact_form.php:1790
74
+ #: contact_form.php:2062
75
+ msgid "Attachment"
76
+ msgstr "Прикрепить файл"
77
 
78
  # @ contact_form
79
+ #: contact_form.php:174
80
  msgid ""
81
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
82
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
85
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
86
 
87
  # @ contact_form
88
+ #: contact_form.php:175 contact_form.php:1754 contact_form.php:1792
89
  msgid "Send me a copy"
90
  msgstr "Отправить мне копию"
91
 
92
  # @ contact_form
93
+ #: contact_form.php:176 contact_form.php:1755 contact_form.php:1793
94
  msgid "Submit"
95
  msgstr "Отправить"
96
 
97
  # @ contact_form
98
+ #: contact_form.php:177
99
  msgid "Your name is required."
100
  msgstr "Поле Имя - это обязательное поле для заполнения."
101
 
102
  # @ contact_form
103
+ #: contact_form.php:178
104
  msgid "Address is required."
105
  msgstr "Поле Адрес - это обязательное поле для заполнения."
106
 
107
  # @ contact_form
108
+ #: contact_form.php:179
109
  msgid "A valid email address is required."
110
  msgstr "Укажите корректный email - адрес."
111
 
112
  # @ contact_form
113
+ #: contact_form.php:180
114
  msgid "Phone number is required."
115
  msgstr "Поле Телефон - это обязательное поле для заполнения."
116
 
117
  # @ contact_form
118
+ #: contact_form.php:181
119
  msgid "Subject is required."
120
  msgstr "Поле Тема - это обязательное поле для заполнения."
121
 
122
  # @ contact_form
123
+ #: contact_form.php:182
124
  msgid "Message text is required."
125
  msgstr "Поле Сообщение - это обязательное поле для заполнения."
126
 
127
  # @ contact_form
128
+ #: contact_form.php:183
129
  msgid "File format is not valid."
130
  msgstr "Прикрепленный тип файла не поддерживается."
131
 
132
  # @ contact_form
133
+ #: contact_form.php:184
134
  msgid "File upload error."
135
  msgstr "Ошибка при загрузке файла."
136
 
137
  # @ contact_form
138
+ #: contact_form.php:185
139
  msgid "The file could not be uploaded."
140
  msgstr "Невозможно загрузить файл."
141
 
142
  # @ contact_form
143
+ #: contact_form.php:186
144
  msgid "This file is too large."
145
  msgstr "Размер файла слишком большой."
146
 
147
  # @ contact_form
148
+ #: contact_form.php:187
149
  msgid "Please fill out the CAPTCHA."
150
  msgstr "Пожалуйста, заполните CAPTCHA."
151
 
152
  # @ contact_form
153
+ #: contact_form.php:188
154
  msgid "Please make corrections below and try again."
155
  msgstr ""
156
  "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
157
 
158
  # @ contact_form
159
+ #: contact_form.php:190
160
  msgid "Thank you for contacting us."
161
  msgstr "Спасибо, что связались с нами."
162
 
163
  # @ contact_form
164
+ #: contact_form.php:824 contact_form.php:1076
165
  msgid "Settings saved."
166
  msgstr "Настройки сохранены"
167
 
168
+ #: contact_form.php:1021
169
  msgid ""
170
  "Email 'FROM' field option was changed, which may cause email messages being "
171
  "moved to the spam folder or email delivery failures."
172
  msgstr ""
173
+ "Настройка для поля email \"От\" была изменена, что может приводить к тому, "
174
+ "что письма будут попадать в спам или не будут доставлены"
175
 
176
  # @ contact_form
177
+ #: contact_form.php:1031
178
  msgid ""
179
  "If the 'Redirect to page' option is selected then the URL field should be in "
180
  "the following format"
183
  "в следующем формате"
184
 
185
  # @ contact_form
186
+ #: contact_form.php:1038
187
  msgid "Such user does not exist."
188
  msgstr "Данный пользователь не найден."
189
 
190
  # @ contact_form
191
+ #: contact_form.php:1048
192
  msgid ""
193
  "Please enter a valid email address in the 'Use this email address' field."
194
  msgstr "Пожалуйста, введите корректный email в поле 'Использовать этот email'."
195
 
196
  # @ contact_form
197
+ #: contact_form.php:1056
198
  msgid "Please enter a valid email address in the 'FROM' field."
199
+ msgstr "Пожалуйста, введите корректный email для поля \"От\"."
200
 
201
  # @ contact_form
202
+ #: contact_form.php:1078
203
  msgid "Settings are not saved."
204
  msgstr "Настройки не сохранены."
205
 
206
+ #: contact_form.php:1115
207
  msgid "All plugin settings were restored."
208
  msgstr "Все настройки плагина восстановлены."
209
 
210
+ #: contact_form.php:1120
211
  msgid "How to Use Step-by-step Instruction"
212
  msgstr "Пошаговая инструкция по использованию плагина"
213
 
214
  # @ contact_form
215
+ #: contact_form.php:1123 contact_form.php:3351 contact_form.php:3365
216
  msgid "Settings"
217
  msgstr "Настройки"
218
 
219
  # @ contact_form
220
+ #: contact_form.php:1124
221
  msgid "Additional settings"
222
  msgstr "Дополнительные настройки"
223
 
224
+ #: contact_form.php:1125
225
  msgid "Appearance"
226
  msgstr "Отображение"
227
 
228
+ #: contact_form.php:1126
229
  msgid "Custom code"
230
  msgstr "Пользовательский код"
231
 
232
  # @ contact_form
233
+ #: contact_form.php:1127
234
  msgid "Go PRO"
235
  msgstr "Перейти на PRO версию"
236
 
237
  # @ contact_form
238
+ #: contact_form.php:1136
239
+ msgid "Notice"
240
+ msgstr "Обратите внимание"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
 
242
+ #: contact_form.php:1140
243
  msgid "NEW_FORM"
244
  msgstr "НОВАЯ_ФОРМА"
245
 
246
  # @ contact_form
247
+ #: contact_form.php:1141
248
  msgid ""
249
  "If you want to create multiple contact forms, please install the Contact "
250
  "Form Multi plugin."
253
  "установите плагин Contact Form Multi."
254
 
255
  # @ contact_form
256
+ #: contact_form.php:1150
257
  #, php-format
258
  msgid ""
259
  "If you would like to add a Contact Form to your page or post, please use %s "
262
  "Если вы хотите добавить контактную форму на вашу страницу или пост, то "
263
  "используйте кнопку %s"
264
 
265
+ #: contact_form.php:1156
266
  #, php-format
267
  msgid ""
268
  "You can add the Contact Form to your page or post by clicking on %s button "
276
  "язык контактной формы."
277
 
278
  # @ contact_form
279
+ #: contact_form.php:1165
280
  msgid ""
281
  "If you leave the fields empty, the messages will be sent to the email "
282
  "address specified during registration."
285
  "email, который был указан при регистрации сайта."
286
 
287
  # @ contact_form
288
+ #: contact_form.php:1168
289
+ msgid "The user's email address"
290
+ msgstr "Email пользователя сайта"
291
 
292
  # @ contact_form
293
+ #: contact_form.php:1172
294
  msgid "Select a username"
295
  msgstr "Выберите имя пользователя"
296
 
297
  # @ contact_form
298
+ #: contact_form.php:1185
299
  msgid ""
300
+ "Select a username of the person who should get the messages from the contact "
301
  "form."
302
  msgstr ""
303
  "Укажите логин пользователя, который будет получать сообщения контактной "
304
  "формы."
305
 
306
  # @ contact_form
307
+ #: contact_form.php:1189
308
+ msgid "Use this email address"
309
+ msgstr "Использовать этот email"
310
 
311
  # @ contact_form
312
+ #: contact_form.php:1193
313
+ msgid "Enter the email address for receiving messages"
314
+ msgstr "Укажите email, на который будут отправляться сообщения"
315
 
316
+ #: contact_form.php:1200 contact_form.php:1663 contact_form.php:1873
317
+ #: contact_form.php:1961 contact_form.php:3446
318
  msgid "Close"
319
  msgstr "Закрыть"
320
 
321
  # @ contact_form
322
+ #: contact_form.php:1204
323
+ msgid "Add department selectbox to the contact form"
324
+ msgstr "Добавить выбор отдела в контактную форму"
325
 
326
  # @ contact_form
327
+ #: contact_form.php:1212 contact_form.php:1672 contact_form.php:1892
328
+ #: contact_form.php:2167
329
  msgid "If you upgrade to Pro version all your settings will be saved."
330
  msgstr "При установке Pro версии плагина, все ваши настройки сохраняются."
331
 
332
  # @ contact_form
333
+ #: contact_form.php:1219 contact_form.php:1509 contact_form.php:1677
334
+ #: contact_form.php:1899 contact_form.php:2174
335
  msgid "Unlock premium options by upgrading to Pro version"
336
  msgstr "Активируйте премиум опции обновившись до Pro версии"
337
 
338
  # @ contact_form
339
+ #: contact_form.php:1222 contact_form.php:1512 contact_form.php:1680
340
+ #: contact_form.php:1902 contact_form.php:2177 contact_form.php:3672
341
  msgid "Learn More"
342
  msgstr "Подробнее"
343
 
344
  # @ contact_form
345
+ #: contact_form.php:1230
346
  msgid "Save emails to the database"
347
  msgstr "Сохранять email в базу данных"
348
 
349
  # @ contact_form
350
+ #: contact_form.php:1241 contact_form.php:1255 contact_form.php:1262
351
  msgid "Using"
352
  msgstr "Используя"
353
 
354
+ #: contact_form.php:1247 contact_form.php:1572 contact_form.php:1605
355
+ #: contact_form.php:1640
356
+ msgid "Please activate the appropriate option on"
357
+ msgstr "Пожалуйста, активируйте соответствующую опцию на странице настроек"
358
+
359
  # @ contact_form
360
+ #: contact_form.php:1250 contact_form.php:1575 contact_form.php:1608
361
+ #: contact_form.php:1643
362
+ msgid "settings page"
363
+ msgstr " "
364
 
365
  # @ contact_form
366
+ #: contact_form.php:1256 contact_form.php:1581 contact_form.php:1615
367
+ #: contact_form.php:1651
368
  msgid "Activate"
369
  msgstr "Активировать"
370
 
371
  # @ contact_form
372
+ #: contact_form.php:1263 contact_form.php:1587 contact_form.php:1621
373
+ #: contact_form.php:1656
374
  msgid "Download"
375
  msgstr "Скачать"
376
 
377
+ #: contact_form.php:1275
378
+ msgid "Sending method"
379
+ msgstr "Метод отправки"
 
380
 
381
  # @ contact_form
382
+ #: contact_form.php:1280
383
  msgid "Wp-mail"
384
  msgstr "Wp-mail"
385
 
386
  # @ contact_form
387
+ #: contact_form.php:1282
388
  msgid "You can use the Wordpress wp_mail function for mailing"
389
  msgstr "Для отправки почты вы можете использовать Wordpress функцию wp_mail"
390
 
391
  # @ contact_form
392
+ #: contact_form.php:1285
393
  msgid "Mail"
394
  msgstr "Mail"
395
 
396
  # @ contact_form
397
+ #: contact_form.php:1287
398
  msgid "You can use the PHP mail function for mailing"
399
  msgstr "Для отправки почты вы можете использовать PHP функцию mail"
400
 
401
+ #: contact_form.php:1292
402
  msgid "'FROM' field"
403
+ msgstr "Поле \"От\""
404
 
405
  # @ contact_form
406
+ #: contact_form.php:1297
 
 
 
 
 
 
407
  msgid "User name"
408
  msgstr "Имя пользователя"
409
 
410
  # @ contact_form
411
+ #: contact_form.php:1299
412
  msgid ""
413
  "The name of the user who fills the form will be used in the field 'From'."
414
  msgstr ""
416
  "заполняет форму."
417
 
418
  # @ contact_form
419
+ #: contact_form.php:1304 contact_form.php:3126 contact_form.php:3170
420
  msgid "Email"
421
  msgstr "Email"
422
 
423
  # @ contact_form
424
+ #: contact_form.php:1307
425
  msgid "User email"
426
  msgstr "Email пользователя"
427
 
428
  # @ contact_form
429
+ #: contact_form.php:1309
430
  msgid ""
431
  "The email address of the user who fills the form will be used in the field "
432
  "'From'."
434
  "В поле \"От\" в письме будет использоваться email того пользователя, который "
435
  "заполняет форму."
436
 
437
+ #: contact_form.php:1312
438
  msgid ""
439
  "If this option is changed, email messages may be moved to the spam folder or "
440
  "email delivery failures may occur."
443
  "будут попадать в спам или не будут доставлены."
444
 
445
  # @ contact_form
446
+ #: contact_form.php:1318
447
  msgid "Required symbol"
448
  msgstr "Символ, отображающий обязательное поле"
449
 
450
  # @ contact_form
451
+ #: contact_form.php:1328
452
  msgid "Fields"
453
  msgstr "Поля"
454
 
455
  # @ contact_form
456
+ #: contact_form.php:1329 contact_form.php:1356 contact_form.php:1383
457
+ #: contact_form.php:1403 contact_form.php:1442 contact_form.php:1527
458
  msgid "Used"
459
  msgstr "Используется"
460
 
461
  # @ contact_form
462
+ #: contact_form.php:1330 contact_form.php:1345 contact_form.php:1360
463
+ #: contact_form.php:1387 contact_form.php:1407 contact_form.php:1420
464
+ #: contact_form.php:1446 contact_form.php:1459 contact_form.php:1483
465
  msgid "Required"
466
+ msgstr "Обязательное"
467
 
468
  # @ contact_form
469
+ #: contact_form.php:1332 contact_form.php:1365 contact_form.php:1425
470
+ #: contact_form.php:1464 contact_form.php:1488
471
  msgid "Visible"
472
  msgstr "Видимое"
473
 
474
  # @ contact_form
475
+ #: contact_form.php:1333 contact_form.php:1369 contact_form.php:1429
476
+ #: contact_form.php:1468 contact_form.php:1492
477
  msgid "Disabled for editing"
478
  msgstr "Нет возможности редактировать"
479
 
480
  # @ contact_form
481
+ #: contact_form.php:1334 contact_form.php:1393 contact_form.php:1472
482
+ #: contact_form.php:1496
483
  msgid "Field's default value"
484
  msgstr "Значение полей по умолчанию"
485
 
486
  # @ contact_form
487
+ #: contact_form.php:1341
488
  msgid "Department selectbox"
489
  msgstr "Список отделов"
490
 
491
+ #: contact_form.php:1373
492
  msgid "Use User's name as a default value if the user is logged in."
493
  msgstr ""
494
  "Использовать имя Пользователя как значение по умолчанию, если пользователь "
495
  "залогинен."
496
 
497
+ #: contact_form.php:1374 contact_form.php:1434
498
  msgid ""
499
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
500
  "in users."
503
  "к залогиненным пользователям."
504
 
505
  # @ contact_form
506
+ #: contact_form.php:1380
507
  msgid "Location selectbox"
508
  msgstr "Список местоположений"
509
 
510
+ #: contact_form.php:1433
 
 
 
 
 
 
 
 
 
 
 
511
  msgid "Use User's email as a default value if the user is logged in."
512
  msgstr ""
513
  "Использовать Email Пользователя как значение по умолчанию, если пользователь "
514
  "залогинен."
515
 
516
  # @ contact_form
517
+ #: contact_form.php:1520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
518
  msgid "Attachment block"
519
+ msgstr "Блок \"Прикрепить файл\""
520
 
521
  # @ contact_form
522
+ #: contact_form.php:1522
523
  msgid "Users can attach the following file formats"
524
  msgstr "Пользователи могут прикрепить файлы таких типов"
525
 
526
  # @ contact_form
527
+ #: contact_form.php:1540
528
  msgid "Add to the form"
529
  msgstr "Добавить в форму"
530
 
531
  # @ contact_form
532
+ #: contact_form.php:1545
533
  msgid "Tips below the Attachment"
534
  msgstr "Пояснения после блока \"Прикрепить файл\""
535
 
536
  # @ contact_form
537
+ #: contact_form.php:1554
538
  msgid "'Send me a copy' block"
539
+ msgstr "Блок \"Отправить мне копию\""
 
 
 
 
 
 
 
 
540
 
541
  # @ contact_form
542
+ #: contact_form.php:1667
 
 
 
 
 
 
 
 
 
 
543
  msgid "Agreement checkbox"
544
  msgstr "Чекбокс согласия с условиями"
545
 
546
  # @ contact_form
547
+ #: contact_form.php:1667
548
  msgid "Required checkbox for submitting the form"
549
  msgstr "Обязательный чекбокс для отправки формы"
550
 
551
  # @ contact_form
552
+ #: contact_form.php:1668
553
  msgid "Optional checkbox"
554
  msgstr "Дополнительный чекбокс"
555
 
556
  # @ contact_form
557
+ #: contact_form.php:1668
558
  msgid "Optional checkbox, the results of which will be displayed in email"
559
  msgstr "Дополнительный чекбокс, результаты которого будут отображены в email"
560
 
561
  # @ contact_form
562
+ #: contact_form.php:1689
563
  msgid "Delete an attachment file from the server after the email is sent"
564
  msgstr "Удалить прикрепленный файл с сервера после отправки email"
565
 
566
  # @ contact_form
567
+ #: contact_form.php:1695
568
  msgid "Email in HTML format sending"
569
  msgstr "Отправка еmail в формате HTML"
570
 
571
  # @ contact_form
572
+ #: contact_form.php:1699
573
  msgid "Display additional info in the email"
574
  msgstr "Отображение дополнительной информации в письме"
575
 
576
  # @ contact_form
577
+ #: contact_form.php:1705
578
  msgid "Sent from (IP address)"
579
  msgstr "Отправлено от (IP адрес)"
580
 
581
  # @ contact_form
582
+ #: contact_form.php:1705
583
  msgid "Example: Sent from (IP address):\t127.0.0.1"
584
  msgstr "Пример: Отправлено от (IP адрес):\t127.0.0.1"
585
 
586
  # @ contact_form
587
+ #: contact_form.php:1706 contact_form.php:3075 contact_form.php:3077
588
  msgid "Date/Time"
589
  msgstr "Дата/Время"
590
 
591
  # @ contact_form
592
+ #: contact_form.php:1706
593
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
594
  msgstr "Пример: Дата/Время:\tАвгуст 19, 2013 8:50"
595
 
596
  # @ contact_form
597
+ #: contact_form.php:1707 contact_form.php:3081 contact_form.php:3083
598
  msgid "Sent from (referer)"
599
  msgstr "Отправлено от (referer)"
600
 
601
  # @ contact_form
602
+ #: contact_form.php:1707
603
  msgid ""
604
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
605
  msgstr ""
606
  "Пример: Отправлено от (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
607
 
608
  # @ contact_form
609
+ #: contact_form.php:1708 contact_form.php:3087 contact_form.php:3089
610
  msgid "Using (user agent)"
611
  msgstr "Используя (user agent)"
612
 
613
  # @ contact_form
614
+ #: contact_form.php:1708
615
  msgid ""
616
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
617
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
620
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
621
 
622
  # @ contact_form
623
+ #: contact_form.php:1713
624
  msgid "Language settings for the field names in the form"
625
+ msgstr "Языковые настройки для имён полей в форме"
626
 
627
  # @ contact_form
628
+ #: contact_form.php:1722
629
  msgid "Add a language"
630
  msgstr "Добавить язык"
631
 
632
  # @ contact_form
633
+ #: contact_form.php:1726
634
  msgid "Change the names of the contact form fields and error messages"
635
+ msgstr "Изменить имён полей контактной формы и сообщений об ошибках"
636
 
637
  # @ contact_form
638
+ #: contact_form.php:1731 contact_form.php:1827 contact_form.php:2081
639
+ #: contact_form.php:2086 contact_form.php:2096 contact_form.php:2101
640
+ #: contact_form.php:2106 contact_form.php:2111 contact_form.php:2121
641
+ #: contact_form.php:2126 contact_form.php:2135 contact_form.php:2149
642
+ #: contact_form.php:2154 contact_form.php:2159
643
  msgid "Default"
644
  msgstr "По умолчанию"
645
 
646
  # @ contact_form
647
+ #: contact_form.php:1744 contact_form.php:1782
648
  msgid "click to expand/hide the list"
649
  msgstr "нажмите чтобы развернуть/свернуть список"
650
 
651
  # @ contact_form
652
+ #: contact_form.php:1753 contact_form.php:1791
653
  msgid "Tips below the Attachment block"
654
  msgstr "Пояснения после блока \"Прикрепить файл\""
655
 
656
  # @ contact_form
657
+ #: contact_form.php:1756 contact_form.php:1794
658
  msgid "Error message for the Name field"
659
+ msgstr "Сообщение об ошибке для поля Имя"
660
 
661
  # @ contact_form
662
+ #: contact_form.php:1757 contact_form.php:1795
663
  msgid "Error message for the Address field"
664
+ msgstr "Сообщение об ошибке для поля Адрес"
665
 
666
  # @ contact_form
667
+ #: contact_form.php:1758 contact_form.php:1796
668
  msgid "Error message for the Email field"
669
  msgstr "Сообщение об ошибке для поля Email"
670
 
671
  # @ contact_form
672
+ #: contact_form.php:1759 contact_form.php:1797
673
  msgid "Error message for the Phone field"
674
+ msgstr "Сообщение об ошибке для поля Телефон"
675
 
676
  # @ contact_form
677
+ #: contact_form.php:1760 contact_form.php:1798
678
  msgid "Error message for the Subject field"
679
+ msgstr "Сообщение об ошибке для поля Тема"
680
 
681
  # @ contact_form
682
+ #: contact_form.php:1761 contact_form.php:1799
683
  msgid "Error message for the Message field"
684
+ msgstr "Сообщение об ошибке для поля Сообщение"
685
 
686
  # @ contact_form
687
+ #: contact_form.php:1762 contact_form.php:1800
688
  msgid "Error message about the file type for the Attachment field"
689
+ msgstr "Сообщение об ошибке о типе файла для поля \"Прикрепить файл\""
690
 
691
  # @ contact_form
692
+ #: contact_form.php:1763 contact_form.php:1801
693
  msgid ""
694
  "Error message while uploading a file for the Attachment field to the server"
695
+ msgstr ""
696
+ "Сообщение об ошибке при загрузке файла на сервер для поля \"Прикрепить файл\""
697
 
698
  # @ contact_form
699
+ #: contact_form.php:1764 contact_form.php:1802
700
  msgid "Error message while moving the file for the Attachment field"
701
+ msgstr "Сообщение об ошибке при перемещении файла для поля \"Прикрепить файл\""
702
 
703
  # @ contact_form
704
+ #: contact_form.php:1765 contact_form.php:1803
705
  msgid "Error message when file size limit for the Attachment field is exceeded"
706
  msgstr ""
707
+ "Сообщение об ошибке, когда размер файла превышает размер разрешенного "
708
+ "сервером для поля \"Прикрепить файл\""
709
 
710
  # @ contact_form
711
+ #: contact_form.php:1766 contact_form.php:1804
712
  msgid "Error message for the Captcha field"
713
  msgstr "Сообщение об ошибке для поля Captcha"
714
 
715
  # @ contact_form
716
+ #: contact_form.php:1767 contact_form.php:1805
717
  msgid "Error message for the whole form"
718
  msgstr "Сообщение об ошибке для всей формы"
719
 
720
  # @ contact_form
721
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
722
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
723
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
724
+ #: contact_form.php:3516
725
  msgid "Use shortcode"
726
+ msgstr "Используйте шорткод"
727
 
728
  # @ contact_form
729
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
730
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
731
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
732
+ #: contact_form.php:3516
733
  msgid "for this language"
734
  msgstr "для данного языка"
735
 
736
  # @ contact_form
737
+ #: contact_form.php:1818
738
  msgid "Use the changed names of the contact form fields in the email"
739
+ msgstr "Использовать измененные имена полей контактной формы в email"
740
 
741
  # @ contact_form
742
+ #: contact_form.php:1824
743
  msgid "Action after email is sent"
744
  msgstr "Действие после отправки письма"
745
 
746
  # @ contact_form
747
+ #: contact_form.php:1826
748
  msgid "Display text"
749
  msgstr "Отобразить текст"
750
 
751
  # @ contact_form
752
+ #: contact_form.php:1840 contact_form.php:1854
753
  msgid "Text"
754
  msgstr "Текст"
755
 
756
  # @ contact_form
757
+ #: contact_form.php:1865
758
  msgid "Redirect to the page"
759
  msgstr "Перенаправление на страницу"
760
 
761
  # @ contact_form
762
+ #: contact_form.php:1866
763
  msgid "Url"
764
  msgstr "Ссылка"
765
 
766
+ #: contact_form.php:1877
767
  msgid "Add field 'Reply-To' to the email header"
768
  msgstr "Добавить поле 'Reply-To' в заголовок емейла"
769
 
770
+ #: contact_form.php:1879
771
  msgid "Field 'Reply-To' will be initialized by user email"
772
+ msgstr ""
773
+ "Поле 'Reply-To' будет проинициализировано электронной почтой пользователя"
774
 
775
  # @ contact_form_pro
776
+ #: contact_form.php:1883
777
  msgid "Auto Response"
778
  msgstr "Автоответ"
779
 
780
  # @ contact_form
781
+ #: contact_form.php:1887
782
  #, php-format
783
  msgid ""
784
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
790
  "названия блога."
791
 
792
  # @ default
793
+ #: contact_form.php:1912 contact_form.php:2398
794
  msgid "Save Changes"
795
  msgstr "Сохранить изменения"
796
 
797
+ #: contact_form.php:1925
798
  #, php-format
799
  msgid ""
800
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
802
  "Пожалуйста, включите JavaScript для изменения опций '%s', '%s' и сортировки "
803
  "полей."
804
 
805
+ #: contact_form.php:1925 contact_form.php:1934
806
+ msgid "Form layout"
807
+ msgstr "Шаблон формы"
808
+
809
+ # @ contact_form
810
+ #: contact_form.php:1925 contact_form.php:1946
811
+ msgid "Submit position"
812
+ msgstr "Позиция кнопки 'Отправить'"
813
+
814
+ #: contact_form.php:1938
815
  msgid "One column"
816
  msgstr "Одна колонка"
817
 
818
+ #: contact_form.php:1941
819
  msgid "Two columns"
820
  msgstr "Две колонки"
821
 
822
+ #: contact_form.php:1950 contact_form.php:1969 contact_form.php:1987
823
+ #: contact_form.php:2002
824
  msgid "Left"
825
  msgstr "Слева"
826
 
827
+ #: contact_form.php:1953 contact_form.php:1975 contact_form.php:1990
828
+ #: contact_form.php:2008
829
  msgid "Right"
830
  msgstr "Справа"
831
 
832
+ #: contact_form.php:1965
833
  msgid "Form align"
834
  msgstr "Выравнивание формы"
835
 
836
+ #: contact_form.php:1972 contact_form.php:2005
837
  msgid "Center"
838
  msgstr "По центру"
839
 
840
  # @ contact_form
841
+ #: contact_form.php:1980
842
  msgid "Labels position"
843
+ msgstr "Расположение имен полей"
844
 
845
+ #: contact_form.php:1984
846
  msgid "Top"
847
  msgstr "Сверху"
848
 
849
+ #: contact_form.php:1993
850
  msgid "Bottom"
851
  msgstr "Снизу"
852
 
853
+ #: contact_form.php:1998
854
  msgid "Labels align"
855
  msgstr "Выравнивание лейблов"
856
 
857
  # @ contact_form
858
+ #: contact_form.php:2013
859
  msgid "Errors output"
860
  msgstr "Отображение ошибок"
861
 
862
  # @ contact_form
863
+ #: contact_form.php:2016
864
  msgid "Display error messages"
865
  msgstr "Отображать сообщения об ошибках"
866
 
867
  # @ contact_form
868
+ #: contact_form.php:2017
869
  msgid "Color of the input field errors."
870
  msgstr "Отображать ошибки цветом для полей ввода."
871
 
872
  # @ contact_form
873
+ #: contact_form.php:2018
874
  msgid "Display error messages & color of the input field errors"
875
  msgstr "Отображать сообщения об ошибках и цвет полей ввода с ошибками"
876
 
877
  # @ contact_form
878
+ #: contact_form.php:2023
879
  msgid "Add placeholder to the input blocks"
880
  msgstr "Добавить вспомогательный текст в поля ввода"
881
 
882
  # @ contact_form
883
+ #: contact_form.php:2029
884
  msgid "Add tooltips"
885
  msgstr "Добавить подсказки"
886
 
887
  # @ contact_form
888
+ #: contact_form.php:2043
889
  msgid "Email address"
890
  msgstr "Email"
891
 
892
  # @ contact_form
893
+ #: contact_form.php:2048 contact_form.php:3142 contact_form.php:3183
894
  msgid "Phone Number"
895
  msgstr "Телефон"
896
 
897
  # @ contact_form
898
+ #: contact_form.php:2074
 
 
 
 
 
899
  msgid "Style options"
900
  msgstr "Настройки стиля"
901
 
902
  # @ contact_form
903
+ #: contact_form.php:2078
904
  msgid "Text color"
905
  msgstr "Цвет текста"
906
 
907
  # @ contact_form
908
+ #: contact_form.php:2083
909
  msgid "Label text color"
910
  msgstr "Цвет текста"
911
 
912
  # @ contact_form
913
+ #: contact_form.php:2088
914
  msgid "Placeholder color"
915
+ msgstr "Цвет вспомогательного текста"
916
 
917
  # @ contact_form
918
+ #: contact_form.php:2093
919
  msgid "Errors color"
920
  msgstr "Цвет ошибок"
921
 
922
  # @ contact_form
923
+ #: contact_form.php:2098
924
  msgid "Error text color"
925
  msgstr "Цвет текста для ошибок"
926
 
927
  # @ contact_form
928
+ #: contact_form.php:2103
929
  msgid "Background color of the input field errors"
930
  msgstr "Цвет фона для полей ввода с ошибками"
931
 
932
  # @ contact_form
933
+ #: contact_form.php:2108
934
  msgid "Border color of the input field errors"
935
  msgstr "Цвет рамки для полей ввода с ошибками"
936
 
937
  # @ contact_form
938
+ #: contact_form.php:2113
939
  msgid "Placeholder color of the input field errors"
940
  msgstr "Цвет вспомогательного текста для полей ввода с ошибками"
941
 
942
  # @ contact_form
943
+ #: contact_form.php:2118
944
  msgid "Input fields"
945
  msgstr "Поля ввода"
946
 
947
  # @ contact_form
948
+ #: contact_form.php:2123
949
  msgid "Input fields background color"
950
  msgstr "Цвет фона для полей ввода"
951
 
952
  # @ contact_form
953
+ #: contact_form.php:2128
954
  msgid "Text fields color"
955
  msgstr "Цвет текста для полей ввода"
956
 
957
  # @ contact_form
958
+ #: contact_form.php:2132
959
  msgid "Border width in px, numbers only"
960
  msgstr "Ширина рамки в пикселях, только цифры"
961
 
962
  # @ contact_form
963
+ #: contact_form.php:2137 contact_form.php:2161
964
  msgid "Border color"
965
  msgstr "Цвет рамки"
966
 
967
  # @ contact_form
968
+ #: contact_form.php:2142
969
  msgid "Submit button"
970
  msgstr "Кнопка Отправить"
971
 
972
  # @ contact_form
973
+ #: contact_form.php:2146
974
  msgid "Width in px, numbers only"
975
  msgstr "Ширина в пикселях, только цифры"
976
 
977
  # @ contact_form
978
+ #: contact_form.php:2151
979
  msgid "Button color"
980
  msgstr "Цвет кнопки"
981
 
982
  # @ contact_form
983
+ #: contact_form.php:2156
984
  msgid "Button text color"
985
  msgstr "Цвет текста для кнопки"
986
 
987
  # @ contact_form
988
+ #: contact_form.php:2188
989
  msgid "Contact Form | Preview"
990
  msgstr "Contact Form | Предпросмотр"
991
 
992
+ #: contact_form.php:2189
993
  msgid "Drag the necessary field to sort fields."
994
  msgstr "Перетащите необходимое поле для сортировки полей."
995
 
996
  # @ contact_form
997
+ #: contact_form.php:2385
998
  msgid ""
999
  "If you would like to add the Contact Form to your website, just copy and "
1000
+ "paste this shortcode to your post or page or widget"
1001
  msgstr ""
1002
  "Если вы хотите добавить контактную форму на свой сайт, вам нужно только "
1003
+ "скопировать и вставить шорткод в контент страницы, поста или виджета"
1004
 
1005
  # @ contact_form
1006
+ #: contact_form.php:2501
1007
  msgid "Sorry, email message could not be delivered."
1008
  msgstr "Извините, ваш email не может быть отправлен."
1009
 
1010
  # @ contact_form
1011
+ #: contact_form.php:3069 contact_form.php:3071
1012
  msgid "Sent from (ip address)"
1013
  msgstr "Отправлено от (IP адрес)"
1014
 
1015
  # @ contact_form
1016
+ #: contact_form.php:3099
1017
  msgid "Contact from"
1018
  msgstr "Контакт из"
1019
 
1020
  # @ contact_form
1021
+ #: contact_form.php:3104 contact_form.php:3153
 
 
 
 
 
1022
  msgid "Site"
1023
  msgstr "Сайт"
1024
 
1025
  # @ contact_form
1026
+ #: contact_form.php:3283
1027
  msgid ""
1028
  "If you can see this MIME, it means that the MIME type is not supported by "
1029
  "your email client!"
1032
  "MIME тип!"
1033
 
1034
  # @ contact_form
1035
+ #: contact_form.php:3366
1036
  msgid "FAQ"
1037
  msgstr "FAQ"
1038
 
1039
  # @ contact_form
1040
+ #: contact_form.php:3367
1041
  msgid "Support"
1042
  msgstr "Поддержка"
1043
 
1044
  # @ contact_form
1045
+ #: contact_form.php:3416
1046
  msgid "Are you sure that you want to delete this language data?"
1047
  msgstr "Вы действительно хотите удалить данные для этого языка?"
1048
 
1049
  # @ contact_form
1050
+ #: contact_form.php:3437
1051
  msgid "Add multiple forms"
1052
  msgstr "Добавить несколько форм"
1053
 
1054
+ #: contact_form.php:3437
1055
  msgid ""
1056
  "Install Contact Form Multi plugin to create unlimited number of contact "
1057
  "forms."
1060
  "контактных форм."
1061
 
1062
  # @ contact_form
1063
+ #: contact_form.php:3442
1064
  msgid "Learn more"
1065
  msgstr "Подробнее"
1066
 
1067
+ #: contact_form.php:3663
1068
  msgid "Close notice"
1069
  msgstr "Закрыть"
1070
 
1071
  # @ contact_form
1072
+ #: contact_form.php:3668
1073
  msgid "allows to store your messages to the database."
1074
  msgstr "позволяет хранить ваши сообщения в базе данных."
1075
 
1076
  # @ contact_form
1077
+ #: contact_form.php:3669
1078
  msgid "Manage messages that have been sent from your website."
1079
  msgstr "Управление сообщениями, которые были отправлены с вашего сайта."
1080
 
1081
  # @ contact_form
1082
+ #: contact_form.php:3727
1083
  msgid "Contact form"
1084
  msgstr "Контактная форма"
1085
 
1086
  # @ contact_form
1087
+ #: contact_form.php:3740 contact_form.php:3750
1088
  msgid "Language"
1089
  msgstr "Язык"
languages/contact-form-plugin-sk_SK.mo CHANGED
Binary file
languages/contact-form-plugin-sk_SK.po CHANGED
@@ -6,8 +6,8 @@ msgid ""
6
  msgstr ""
7
  "Project-Id-Version: Contact Form\n"
8
  "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2016-06-27 16:32+0300\n"
10
- "PO-Revision-Date: 2016-06-27 16:32+0300\n"
11
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
12
  "Language-Team: Michal Vittek, www.wp.sk <michal.vittek@wp.sk>\n"
13
  "Language: sk_SK\n"
@@ -21,7 +21,7 @@ msgstr ""
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
- #: contact_form.php:37 contact_form.php:1030
25
  msgid "Contact Form Settings"
26
  msgstr "Nastavenie kontaktného formulára"
27
 
@@ -29,35 +29,46 @@ msgstr "Nastavenie kontaktného formulára"
29
  msgid "Contact Form"
30
  msgstr "Kontaktný formulár"
31
 
32
- #: contact_form.php:165 contact_form.php:1565 contact_form.php:1599
33
- msgid "Name:"
34
- msgstr "Meno:"
 
 
35
 
36
- #: contact_form.php:166 contact_form.php:1566 contact_form.php:1600
37
- msgid "Address:"
38
- msgstr "Adresa::"
 
 
39
 
40
- #: contact_form.php:167 contact_form.php:1567 contact_form.php:1601
41
- msgid "Email Address:"
42
- msgstr "E-Mail:"
 
43
 
44
- #: contact_form.php:168 contact_form.php:1568 contact_form.php:1602
45
- msgid "Phone number:"
46
- msgstr "Telefónne číslo:"
 
47
 
48
- #: contact_form.php:169 contact_form.php:1569 contact_form.php:1603
49
- msgid "Subject:"
50
- msgstr "Predmet:"
 
 
51
 
52
- #: contact_form.php:170 contact_form.php:1570 contact_form.php:1604
53
- msgid "Message:"
54
- msgstr "Správa:"
 
 
55
 
56
- #: contact_form.php:171 contact_form.php:1571 contact_form.php:1605
57
- msgid "Attachment:"
 
58
  msgstr "Príloha"
59
 
60
- #: contact_form.php:172
61
  msgid ""
62
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
63
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -65,77 +76,77 @@ msgstr ""
65
  "Podporované typy súborov: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
66
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
67
 
68
- #: contact_form.php:173 contact_form.php:1573 contact_form.php:1607
69
  msgid "Send me a copy"
70
  msgstr "Zaslať mi kópiu"
71
 
72
- #: contact_form.php:174 contact_form.php:1574 contact_form.php:1608
73
  msgid "Submit"
74
  msgstr "Odoslať"
75
 
76
- #: contact_form.php:175
77
  msgid "Your name is required."
78
  msgstr "Vaše meno je vyžadované."
79
 
80
- #: contact_form.php:176
81
  msgid "Address is required."
82
  msgstr "Adresa je vyžadovaná."
83
 
84
- #: contact_form.php:177
85
  msgid "A valid email address is required."
86
  msgstr "Platný E-mail je vyžadovaný."
87
 
88
- #: contact_form.php:178
89
  msgid "Phone number is required."
90
  msgstr "Telefónne číslo je vyžadované."
91
 
92
- #: contact_form.php:179
93
  msgid "Subject is required."
94
  msgstr "Predmet je vyžadovaný."
95
 
96
- #: contact_form.php:180
97
  msgid "Message text is required."
98
  msgstr "Správa je vyžadovaná."
99
 
100
- #: contact_form.php:181
101
  msgid "File format is not valid."
102
  msgstr "Nesprávny typ súboru."
103
 
104
- #: contact_form.php:182
105
  msgid "File upload error."
106
  msgstr "Nahrávanie súboru zlyhalo."
107
 
108
- #: contact_form.php:183
109
  msgid "The file could not be uploaded."
110
  msgstr "Súbor nemôže byť nahraný."
111
 
112
- #: contact_form.php:184
113
  msgid "This file is too large."
114
  msgstr "Súbor je príliš veľký."
115
 
116
- #: contact_form.php:185
117
  msgid "Please fill out the CAPTCHA."
118
  msgstr "Prosím opíšte CAPTCHA text."
119
 
120
- #: contact_form.php:186
121
  msgid "Please make corrections below and try again."
122
  msgstr "Prosím opravte chyby a skúste to opäť."
123
 
124
- #: contact_form.php:188
125
  msgid "Thank you for contacting us."
126
  msgstr "Ďakujeme za správu."
127
 
128
- #: contact_form.php:688 contact_form.php:998
129
  msgid "Settings saved."
130
  msgstr "Nastavenie uložené."
131
 
132
- #: contact_form.php:940
133
  msgid ""
134
  "Email 'FROM' field option was changed, which may cause email messages being "
135
  "moved to the spam folder or email delivery failures."
136
  msgstr ""
137
 
138
- #: contact_form.php:950
139
  msgid ""
140
  "If the 'Redirect to page' option is selected then the URL field should be in "
141
  "the following format"
@@ -143,77 +154,62 @@ msgstr ""
143
  "Ak je vybratá možnosť \"Presmerovanie na stránku\" potom pole URL by malo "
144
  "mať nasledujúci formát"
145
 
146
- #: contact_form.php:957
147
  msgid "Such user does not exist."
148
  msgstr "Taký užívateľ neexistuje."
149
 
150
- #: contact_form.php:967
151
  msgid ""
152
  "Please enter a valid email address in the 'Use this email address' field."
153
  msgstr "Zadajte platnú e-mailovú adresu v poli \"Použiť tento email\"."
154
 
155
- #: contact_form.php:975
156
  msgid "Please enter a valid email address in the 'FROM' field."
157
  msgstr "Zadajte platnú e-mailovú adresu v poli \"Od\"."
158
 
159
- #: contact_form.php:1000
160
  msgid "Settings are not saved."
161
  msgstr "Nastavenie sa neuloží."
162
 
163
- #: contact_form.php:1027
164
  msgid "All plugin settings were restored."
165
  msgstr ""
166
 
167
- #: contact_form.php:1032
168
  msgid "How to Use Step-by-step Instruction"
169
  msgstr ""
170
 
171
- #: contact_form.php:1035 contact_form.php:3024 contact_form.php:3038
172
  msgid "Settings"
173
  msgstr "Nastavenia"
174
 
175
- #: contact_form.php:1036
176
  #, fuzzy
177
  msgid "Additional settings"
178
  msgstr "Ďalšie nastavenia"
179
 
180
- #: contact_form.php:1037
181
  msgid "Appearance"
182
  msgstr ""
183
 
184
- #: contact_form.php:1038
185
  msgid "Custom code"
186
  msgstr ""
187
 
188
- #: contact_form.php:1039
189
  msgid "Go PRO"
190
  msgstr "Zakúpiť PRO"
191
 
192
- #: contact_form.php:1045
193
- #, fuzzy
194
- msgid ""
195
- "Please enable JavaScript to add language in the contact form, change the "
196
- "names of the contact form fields and error messages."
197
- msgstr "Zmena názvov polí kontaktného formulára a chybových hlásení"
198
-
199
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1740
200
- msgid "Form layout"
201
- msgstr ""
202
-
203
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1752
204
  #, fuzzy
205
- msgid "Submit position"
206
- msgstr "Porvrdzovacie tlačidlo"
207
-
208
- #: contact_form.php:1057
209
- msgid "Notice:"
210
  msgstr "Oznam:"
211
 
212
- #: contact_form.php:1061
213
  msgid "NEW_FORM"
214
  msgstr ""
215
 
216
- #: contact_form.php:1062
217
  msgid ""
218
  "If you want to create multiple contact forms, please install the Contact "
219
  "Form Multi plugin."
@@ -221,7 +217,7 @@ msgstr ""
221
  "Ak si želáte vytvoriť viac formulárov, prosím nainštalujte si modul Contact "
222
  "Form Multi "
223
 
224
- #: contact_form.php:1071
225
  #, fuzzy, php-format
226
  msgid ""
227
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -230,7 +226,7 @@ msgstr ""
230
  "Ak by ste chceli pridať kontaktný formulár na svoje webové stránky, stačí "
231
  "skopírovať a vložiť shortcode k príspevku, stránke alebo widgetu:"
232
 
233
- #: contact_form.php:1077
234
  #, php-format
235
  msgid ""
236
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -239,7 +235,7 @@ msgid ""
239
  "language."
240
  msgstr ""
241
 
242
- #: contact_form.php:1086
243
  msgid ""
244
  "If you leave the fields empty, the messages will be sent to the email "
245
  "address specified during registration."
@@ -247,318 +243,284 @@ msgstr ""
247
  "Ak necháte pole prázdne, budú správy posielané na e-mailovú adresu zadanú "
248
  "pri registrácii."
249
 
250
- #: contact_form.php:1089
251
- msgid "The user's email address:"
 
252
  msgstr "Užívateľova e-mailová adresa:"
253
 
254
- #: contact_form.php:1093
255
  #, fuzzy
256
  msgid "Select a username"
257
  msgstr "Vytvorte užívateľské meno"
258
 
259
- #: contact_form.php:1106
 
260
  msgid ""
261
- "Enter a username of the person who should get the messages from the contact "
262
  "form."
263
  msgstr ""
264
  "Zadajte užívateľské meno osoby, ktorá by mala dostať správy z kontaktného "
265
  "formulára."
266
 
267
- #: contact_form.php:1110
268
- msgid "Use this email address:"
 
269
  msgstr "Použíte tento email::"
270
 
271
- #: contact_form.php:1114
272
- msgid "Enter the email address you want the messages forwarded to."
 
273
  msgstr "Zadajte e-mailovú adresu, ktorú chcete do správy presmerovať."
274
 
275
- #: contact_form.php:1121 contact_form.php:1487 contact_form.php:1679
276
- #: contact_form.php:1767 contact_form.php:3119
277
  msgid "Close"
278
  msgstr ""
279
 
280
- #: contact_form.php:1125
281
- msgid "Add department selectbox to the contact form:"
 
282
  msgstr "Pridať oddelenie výberového oddielu do formulára:"
283
 
284
- #: contact_form.php:1133 contact_form.php:1496 contact_form.php:1698
285
- #: contact_form.php:1973
286
  msgid "If you upgrade to Pro version all your settings will be saved."
287
  msgstr "Ak si zakúpite PRO verziu, vaše nastavenia sa uložia."
288
 
289
- #: contact_form.php:1140 contact_form.php:1407 contact_form.php:1501
290
- #: contact_form.php:1705 contact_form.php:1980
291
  #, fuzzy
292
  msgid "Unlock premium options by upgrading to Pro version"
293
  msgstr "Odblokujte prémiové nastavenia kúpením PRO verzie modulu."
294
 
295
- #: contact_form.php:1143 contact_form.php:1410 contact_form.php:1504
296
- #: contact_form.php:1708 contact_form.php:1983 contact_form.php:3329
297
  msgid "Learn More"
298
  msgstr "Zistiť viac"
299
 
300
- #: contact_form.php:1151
301
  msgid "Save emails to the database"
302
  msgstr "Uložiť emaily do databázy"
303
 
304
- #: contact_form.php:1156
305
  msgid "Using"
306
  msgstr "Používa"
307
 
308
- #: contact_form.php:1159 contact_form.php:1163
 
 
 
 
 
 
309
  #, fuzzy
310
- msgid "Using Contact Form to DB by BestWebSoft"
311
- msgstr "Použiť Contact Forrm do DB poháňaný"
312
 
313
- #: contact_form.php:1159
 
314
  msgid "Activate"
315
  msgstr "Aktivovať"
316
 
317
- #: contact_form.php:1163
 
318
  msgid "Download"
319
  msgstr "Stiahnuť"
320
 
321
- #: contact_form.php:1173
322
- msgid "What to use?"
323
- msgstr "Čo používať?"
324
 
325
- #: contact_form.php:1178
326
  msgid "Wp-mail"
327
  msgstr "Wp-mail"
328
 
329
- #: contact_form.php:1180
330
  #, fuzzy
331
  msgid "You can use the Wordpress wp_mail function for mailing"
332
  msgstr "Môžete použiť wp_mail funkcie pre zasielanie"
333
 
334
- #: contact_form.php:1183
335
  msgid "Mail"
336
  msgstr "Email"
337
 
338
- #: contact_form.php:1185
339
  #, fuzzy
340
  msgid "You can use the PHP mail function for mailing"
341
  msgstr "Môžete použiť wp_mail funkcie pre zasielanie"
342
 
343
- #: contact_form.php:1190
344
  msgid "'FROM' field"
345
  msgstr ""
346
 
347
- #: contact_form.php:1192 contact_form.php:1251 contact_form.php:1839
348
- #: contact_form.php:2810 contact_form.php:2846
349
- msgid "Name"
350
- msgstr "Meno"
351
-
352
- #: contact_form.php:1195
353
  msgid "User name"
354
  msgstr "Používateľské meno"
355
 
356
- #: contact_form.php:1197
357
  msgid ""
358
  "The name of the user who fills the form will be used in the field 'From'."
359
  msgstr "Meno, zobrazené ako odosielateľ emailu."
360
 
361
- #: contact_form.php:1202 contact_form.php:2821 contact_form.php:2853
362
  msgid "Email"
363
  msgstr "Email"
364
 
365
- #: contact_form.php:1205
366
  msgid "User email"
367
  msgstr "Používateľský email"
368
 
369
- #: contact_form.php:1207
370
  msgid ""
371
  "The email address of the user who fills the form will be used in the field "
372
  "'From'."
373
  msgstr ""
374
  "Emailová adresa používateľa, ktorý vyplní formulár bude použitá v poli \"Od\""
375
 
376
- #: contact_form.php:1210
377
  msgid ""
378
  "If this option is changed, email messages may be moved to the spam folder or "
379
  "email delivery failures may occur."
380
  msgstr ""
381
 
382
- #: contact_form.php:1216
383
  msgid "Required symbol"
384
  msgstr "Vyžadovaný znak"
385
 
386
- #: contact_form.php:1226
387
  msgid "Fields"
388
  msgstr "Polia"
389
 
390
- #: contact_form.php:1227 contact_form.php:1254 contact_form.php:1281
391
- #: contact_form.php:1301 contact_form.php:1340 contact_form.php:1425
392
  msgid "Used"
393
  msgstr "Použité"
394
 
395
- #: contact_form.php:1228 contact_form.php:1243 contact_form.php:1258
396
- #: contact_form.php:1285 contact_form.php:1305 contact_form.php:1318
397
- #: contact_form.php:1344 contact_form.php:1357 contact_form.php:1381
398
  msgid "Required"
399
  msgstr "Vyžadované"
400
 
401
- #: contact_form.php:1230 contact_form.php:1263 contact_form.php:1323
402
- #: contact_form.php:1362 contact_form.php:1386
403
  msgid "Visible"
404
  msgstr "Viditeľné"
405
 
406
- #: contact_form.php:1231 contact_form.php:1267 contact_form.php:1327
407
- #: contact_form.php:1366 contact_form.php:1390
408
  msgid "Disabled for editing"
409
  msgstr "Nedá sa upraviť"
410
 
411
- #: contact_form.php:1232 contact_form.php:1291 contact_form.php:1370
412
- #: contact_form.php:1394
413
  msgid "Field's default value"
414
  msgstr "Základná hodnota pola"
415
 
416
- #: contact_form.php:1239
417
  #, fuzzy
418
  msgid "Department selectbox"
419
  msgstr "Poloha výberového oddielu"
420
 
421
- #: contact_form.php:1271
422
  msgid "Use User's name as a default value if the user is logged in."
423
  msgstr ""
424
 
425
- #: contact_form.php:1272 contact_form.php:1332
426
  msgid ""
427
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
428
  "in users."
429
  msgstr ""
430
 
431
- #: contact_form.php:1278
432
  msgid "Location selectbox"
433
  msgstr "Poloha výberového oddielu"
434
 
435
- #: contact_form.php:1298 contact_form.php:1844 contact_form.php:2816
436
- #: contact_form.php:2850
437
- msgid "Address"
438
- msgstr "Adresa"
439
-
440
- #: contact_form.php:1314
441
- msgid "Email Address"
442
- msgstr "Emailová adresa"
443
-
444
- #: contact_form.php:1331
445
  msgid "Use User's email as a default value if the user is logged in."
446
  msgstr ""
447
 
448
- #: contact_form.php:1337
449
- msgid "Phone number"
450
- msgstr "Telefónne číslo"
451
-
452
- #: contact_form.php:1353 contact_form.php:1859 contact_form.php:2831
453
- #: contact_form.php:2859
454
- msgid "Subject"
455
- msgstr "Predmet"
456
-
457
- #: contact_form.php:1377 contact_form.php:1863 contact_form.php:2834
458
- #: contact_form.php:2861
459
- msgid "Message"
460
- msgstr "Správa"
461
-
462
- #: contact_form.php:1418
463
  msgid "Attachment block"
464
  msgstr "Blok príloh"
465
 
466
- #: contact_form.php:1420
467
  msgid "Users can attach the following file formats"
468
  msgstr "Užívatelia môžu pripojiť nasledujúce formáty súborov"
469
 
470
- #: contact_form.php:1438
471
  msgid "Add to the form"
472
  msgstr "Pridať do formulára"
473
 
474
- #: contact_form.php:1443
475
  msgid "Tips below the Attachment"
476
  msgstr "Rady zobrazené pod prílohami"
477
 
478
- #: contact_form.php:1452
479
  msgid "'Send me a copy' block"
480
  msgstr "Zobraziť blok 'Zaslať kópiu'"
481
 
482
- #: contact_form.php:1464
483
- #, fuzzy
484
- msgid "Activate Subscriber"
485
- msgstr "Aktivované pluginy"
486
-
487
- #: contact_form.php:1468
488
- msgid "Download Subscriber"
489
- msgstr ""
490
-
491
- #: contact_form.php:1477
492
- #, fuzzy
493
- msgid "Activate Captcha"
494
- msgstr "Aktivovať captcha"
495
-
496
- #: contact_form.php:1481
497
- #, fuzzy
498
- msgid "Download Captcha"
499
- msgstr "Stiahnuť captcha"
500
-
501
- #: contact_form.php:1491
502
  msgid "Agreement checkbox"
503
  msgstr "Označenie súhlasu"
504
 
505
- #: contact_form.php:1491
506
  msgid "Required checkbox for submitting the form"
507
  msgstr "Vyžaduje označenie súhlasu pri odoslaní formulára"
508
 
509
- #: contact_form.php:1492
510
  msgid "Optional checkbox"
511
  msgstr "Voliteľné zaškrtávacie políčko"
512
 
513
- #: contact_form.php:1492
514
  msgid "Optional checkbox, the results of which will be displayed in email"
515
  msgstr "Voliteľné zaškrtávacie políčko, jeho výsledok bude zobrazený v emaile"
516
 
517
- #: contact_form.php:1513
518
  msgid "Delete an attachment file from the server after the email is sent"
519
  msgstr "Vymazať prílohy zo servera po odoslaní emailu"
520
 
521
- #: contact_form.php:1519
522
  msgid "Email in HTML format sending"
523
  msgstr "Povoliť HTML formátovanie"
524
 
525
- #: contact_form.php:1523
526
  msgid "Display additional info in the email"
527
  msgstr "Zobraziť ďalšie informácie v e-maile"
528
 
529
- #: contact_form.php:1529
530
  #, fuzzy
531
  msgid "Sent from (IP address)"
532
  msgstr "Odoslané z (ip adresa)"
533
 
534
- #: contact_form.php:1529
535
  msgid "Example: Sent from (IP address):\t127.0.0.1"
536
  msgstr "Príklad: Odoslané z (IP addresa):\t127.0.0.1"
537
 
538
- #: contact_form.php:1530 contact_form.php:2783 contact_form.php:2785
539
  msgid "Date/Time"
540
  msgstr "Datum / Čas"
541
 
542
- #: contact_form.php:1530
543
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
544
  msgstr "Príklad: Dátum/Čas:\tAugust 19, 2013 8:50 pm"
545
 
546
- #: contact_form.php:1531 contact_form.php:2789 contact_form.php:2791
547
  msgid "Sent from (referer)"
548
  msgstr "Odoslané z"
549
 
550
- #: contact_form.php:1531
551
  msgid ""
552
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
553
  msgstr ""
554
  "Príklad: Odoslané pomocou (odkaz):\thttp://bestwebsoft.com/contacts/contact-"
555
  "us/"
556
 
557
- #: contact_form.php:1532 contact_form.php:2795 contact_form.php:2797
558
  msgid "Using (user agent)"
559
  msgstr "Použitie (user agent)"
560
 
561
- #: contact_form.php:1532
562
  msgid ""
563
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
564
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -566,134 +528,134 @@ msgstr ""
566
  "Príklad: Prehliadač (používateľ):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
567
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
568
 
569
- #: contact_form.php:1537
570
  msgid "Language settings for the field names in the form"
571
  msgstr "Nastavenie jazyka pre názvy polí vo formulári"
572
 
573
- #: contact_form.php:1546
574
  msgid "Add a language"
575
  msgstr "Pridať jazyk"
576
 
577
- #: contact_form.php:1550
578
  msgid "Change the names of the contact form fields and error messages"
579
  msgstr "Zmena názvov polí kontaktného formulára a chybových hlásení"
580
 
581
- #: contact_form.php:1555 contact_form.php:1642 contact_form.php:1887
582
- #: contact_form.php:1892 contact_form.php:1902 contact_form.php:1907
583
- #: contact_form.php:1912 contact_form.php:1917 contact_form.php:1927
584
- #: contact_form.php:1932 contact_form.php:1941 contact_form.php:1955
585
- #: contact_form.php:1960 contact_form.php:1965
586
  msgid "Default"
587
  msgstr "Základná"
588
 
589
- #: contact_form.php:1563 contact_form.php:1597
590
  msgid "click to expand/hide the list"
591
  msgstr "kliknite pre rozbalenie/schovanie zoznamu"
592
 
593
- #: contact_form.php:1572 contact_form.php:1606
594
  msgid "Tips below the Attachment block"
595
  msgstr "Zobrazenie rád pod blokom príloh"
596
 
597
- #: contact_form.php:1575 contact_form.php:1609
598
  msgid "Error message for the Name field"
599
  msgstr "Chybová správa v poli: Meno"
600
 
601
- #: contact_form.php:1576 contact_form.php:1610
602
  msgid "Error message for the Address field"
603
  msgstr "Chybová správa v poli: Adresa"
604
 
605
- #: contact_form.php:1577 contact_form.php:1611
606
  msgid "Error message for the Email field"
607
  msgstr "Chybová správa v poli: Email"
608
 
609
- #: contact_form.php:1578 contact_form.php:1612
610
  msgid "Error message for the Phone field"
611
  msgstr "Chybová správa v poli: Telefón"
612
 
613
- #: contact_form.php:1579 contact_form.php:1613
614
  msgid "Error message for the Subject field"
615
  msgstr "Chybová správa v poli: Predmet"
616
 
617
- #: contact_form.php:1580 contact_form.php:1614
618
  msgid "Error message for the Message field"
619
  msgstr "Chybová správa v poli: Správa"
620
 
621
- #: contact_form.php:1581 contact_form.php:1615
622
  msgid "Error message about the file type for the Attachment field"
623
  msgstr "Chybová správa o type súbora v poli príloh"
624
 
625
- #: contact_form.php:1582 contact_form.php:1616
626
  msgid ""
627
  "Error message while uploading a file for the Attachment field to the server"
628
  msgstr "Chybová správa pri neúspešnom nahraní súbora na server"
629
 
630
- #: contact_form.php:1583 contact_form.php:1617
631
  msgid "Error message while moving the file for the Attachment field"
632
  msgstr "Chybová správa pri neúspešnom presune súbora do pola prílohy"
633
 
634
- #: contact_form.php:1584 contact_form.php:1618
635
  msgid "Error message when file size limit for the Attachment field is exceeded"
636
  msgstr "Chybová správa pri prekročení maximálnej veľkosti súboru"
637
 
638
- #: contact_form.php:1585 contact_form.php:1619
639
  msgid "Error message for the Captcha field"
640
  msgstr "Chybová správa v poli Captcha"
641
 
642
- #: contact_form.php:1586 contact_form.php:1620
643
  msgid "Error message for the whole form"
644
  msgstr "Chybová správa celého formulára"
645
 
646
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
647
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
648
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
649
- #: contact_form.php:3179
650
  msgid "Use shortcode"
651
  msgstr "Použite krátky kód"
652
 
653
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
654
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
655
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
656
- #: contact_form.php:3179
657
  msgid "for this language"
658
  msgstr "pre tento jazyk"
659
 
660
- #: contact_form.php:1633
661
  msgid "Use the changed names of the contact form fields in the email"
662
  msgstr "Použite zmenu názvov polí v emaile"
663
 
664
- #: contact_form.php:1639
665
  msgid "Action after email is sent"
666
  msgstr "Akcia po zaslaní mailu."
667
 
668
- #: contact_form.php:1641
669
  msgid "Display text"
670
  msgstr "Zobraziť text"
671
 
672
- #: contact_form.php:1650 contact_form.php:1660
673
  msgid "Text"
674
  msgstr "Text"
675
 
676
- #: contact_form.php:1671
677
  msgid "Redirect to the page"
678
  msgstr "Presmerovať na stránku"
679
 
680
- #: contact_form.php:1672
681
  msgid "Url"
682
  msgstr "Url"
683
 
684
- #: contact_form.php:1683
685
  msgid "Add field 'Reply-To' to the email header"
686
  msgstr ""
687
 
688
- #: contact_form.php:1685
689
  msgid "Field 'Reply-To' will be initialized by user email"
690
  msgstr ""
691
 
692
- #: contact_form.php:1689
693
  msgid "Auto Response"
694
  msgstr ""
695
 
696
- #: contact_form.php:1693
697
  #, php-format
698
  msgid ""
699
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -701,205 +663,207 @@ msgid ""
701
  "name."
702
  msgstr ""
703
 
704
- #: contact_form.php:1718 contact_form.php:2213
705
  msgid "Save Changes"
706
  msgstr "Uložiť zmeny"
707
 
708
- #: contact_form.php:1731
709
  #, php-format
710
  msgid ""
711
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
712
  msgstr ""
713
 
714
- #: contact_form.php:1744
 
 
 
 
 
 
 
 
 
715
  msgid "One column"
716
  msgstr ""
717
 
718
- #: contact_form.php:1747
719
  msgid "Two columns"
720
  msgstr ""
721
 
722
- #: contact_form.php:1756 contact_form.php:1775 contact_form.php:1793
723
- #: contact_form.php:1808
724
  msgid "Left"
725
  msgstr ""
726
 
727
- #: contact_form.php:1759 contact_form.php:1781 contact_form.php:1796
728
- #: contact_form.php:1814
729
  msgid "Right"
730
  msgstr ""
731
 
732
- #: contact_form.php:1771
733
  msgid "Form align"
734
  msgstr ""
735
 
736
- #: contact_form.php:1778 contact_form.php:1811
737
  msgid "Center"
738
  msgstr ""
739
 
740
- #: contact_form.php:1786
741
  #, fuzzy
742
  msgid "Labels position"
743
  msgstr "Porvrdzovacie tlačidlo"
744
 
745
- #: contact_form.php:1790
746
  msgid "Top"
747
  msgstr ""
748
 
749
- #: contact_form.php:1799
750
  msgid "Bottom"
751
  msgstr ""
752
 
753
- #: contact_form.php:1804
754
  msgid "Labels align"
755
  msgstr ""
756
 
757
- #: contact_form.php:1819
758
  msgid "Errors output"
759
  msgstr "Chybový výstup"
760
 
761
- #: contact_form.php:1822
762
  msgid "Display error messages"
763
  msgstr "Zobrazí chybové správy"
764
 
765
- #: contact_form.php:1823
766
  msgid "Color of the input field errors."
767
  msgstr "Farba textu chybových polí."
768
 
769
- #: contact_form.php:1824
770
  msgid "Display error messages & color of the input field errors"
771
  msgstr "Zobrazí chybové správy a ich farbu"
772
 
773
- #: contact_form.php:1829
774
  msgid "Add placeholder to the input blocks"
775
  msgstr "Pridať zástupný znak do blokov"
776
 
777
- #: contact_form.php:1835
778
  msgid "Add tooltips"
779
  msgstr "Pridať popisky"
780
 
781
- #: contact_form.php:1849
782
  msgid "Email address"
783
  msgstr "Emailová adresa"
784
 
785
- #: contact_form.php:1854
786
  msgid "Phone Number"
787
  msgstr "Tel. číslo"
788
 
789
- #: contact_form.php:1868
790
- msgid "Attachment"
791
- msgstr "Príloha"
792
-
793
- #: contact_form.php:1880
794
  msgid "Style options"
795
  msgstr "Nastavenie štýlu"
796
 
797
- #: contact_form.php:1884
798
  msgid "Text color"
799
  msgstr "Farba textu"
800
 
801
- #: contact_form.php:1889
802
  msgid "Label text color"
803
  msgstr "Označenie farby textu"
804
 
805
- #: contact_form.php:1894
806
  msgid "Placeholder color"
807
  msgstr "Farba zástupného znaku"
808
 
809
- #: contact_form.php:1899
810
  msgid "Errors color"
811
  msgstr "Farba chýb"
812
 
813
- #: contact_form.php:1904
814
  msgid "Error text color"
815
  msgstr "Farba textu"
816
 
817
- #: contact_form.php:1909
818
  msgid "Background color of the input field errors"
819
  msgstr "Farba pozadia polí chýb"
820
 
821
- #: contact_form.php:1914
822
  msgid "Border color of the input field errors"
823
  msgstr "Farba ohraničenia polí chýb"
824
 
825
- #: contact_form.php:1919
826
  msgid "Placeholder color of the input field errors"
827
  msgstr "Farba zástupného znaku polí chýb"
828
 
829
- #: contact_form.php:1924
830
  msgid "Input fields"
831
  msgstr "Vložiť polia"
832
 
833
- #: contact_form.php:1929
834
  msgid "Input fields background color"
835
  msgstr "Farba pozadia polí"
836
 
837
- #: contact_form.php:1934
838
  msgid "Text fields color"
839
  msgstr "Farba textových polí"
840
 
841
- #: contact_form.php:1938
842
  msgid "Border width in px, numbers only"
843
  msgstr "Šírka orámovania v px, vkladajte iba číselné hodnoty"
844
 
845
- #: contact_form.php:1943 contact_form.php:1967
846
  msgid "Border color"
847
  msgstr "Farba ohraničenia"
848
 
849
- #: contact_form.php:1948
850
  msgid "Submit button"
851
  msgstr "Porvrdzovacie tlačidlo"
852
 
853
- #: contact_form.php:1952
854
  msgid "Width in px, numbers only"
855
  msgstr "Šírka v px, vkladajte iba číselné hodnoty"
856
 
857
- #: contact_form.php:1957
858
  msgid "Button color"
859
  msgstr "Farba tlačidla"
860
 
861
- #: contact_form.php:1962
862
  msgid "Button text color"
863
  msgstr "Farba textu v tlačidle"
864
 
865
- #: contact_form.php:1994
866
  #, fuzzy
867
  msgid "Contact Form | Preview"
868
  msgstr "Kontaktný formulár Pro | Zobrazenie"
869
 
870
- #: contact_form.php:1995
871
  msgid "Drag the necessary field to sort fields."
872
  msgstr ""
873
 
874
- #: contact_form.php:2200
 
875
  msgid ""
876
  "If you would like to add the Contact Form to your website, just copy and "
877
- "paste this shortcode to your post or page or widget:"
878
  msgstr ""
879
  "Ak by ste chceli pridať kontaktný formulár na svoje webové stránky, stačí "
880
  "skopírovať a vložiť shortcode k príspevku, stránke alebo widgetu:"
881
 
882
- #: contact_form.php:2297
883
  msgid "Sorry, email message could not be delivered."
884
  msgstr "Prepáčte, správa nemohla byť doručená."
885
 
886
- #: contact_form.php:2777 contact_form.php:2779
887
  msgid "Sent from (ip address)"
888
  msgstr "Odoslané z (ip adresa)"
889
 
890
- #: contact_form.php:2804
891
  msgid "Contact from"
892
  msgstr "Kontaktný formulár"
893
 
894
- #: contact_form.php:2826 contact_form.php:2856
895
- msgid "Phone"
896
- msgstr "Telefón"
897
-
898
- #: contact_form.php:2837 contact_form.php:2863
899
  msgid "Site"
900
  msgstr "Stránka"
901
 
902
- #: contact_form.php:2956
903
  msgid ""
904
  "If you can see this MIME, it means that the MIME type is not supported by "
905
  "your email client!"
@@ -907,58 +871,107 @@ msgstr ""
907
  "Ak vidíte túto MIME, znamená to, že MIME typ nie je podporovaný vyším e-"
908
  "mailovým klientom!"
909
 
910
- #: contact_form.php:3039
911
  msgid "FAQ"
912
  msgstr "Často kladené otázky"
913
 
914
- #: contact_form.php:3040
915
  msgid "Support"
916
  msgstr "Podpora"
917
 
918
- #: contact_form.php:3089
919
  msgid "Are you sure that you want to delete this language data?"
920
  msgstr "Naozaj chcete vymazať tieto jazykové dáta?"
921
 
922
- #: contact_form.php:3110
923
  #, fuzzy
924
  msgid "Add multiple forms"
925
  msgstr "Pridať do formulára"
926
 
927
- #: contact_form.php:3110
928
  msgid ""
929
  "Install Contact Form Multi plugin to create unlimited number of contact "
930
  "forms."
931
  msgstr ""
932
 
933
- #: contact_form.php:3115
934
  #, fuzzy
935
  msgid "Learn more"
936
  msgstr "Zistiť viac"
937
 
938
- #: contact_form.php:3320
939
  msgid "Close notice"
940
  msgstr ""
941
 
942
- #: contact_form.php:3325
943
  #, fuzzy
944
  msgid "allows to store your messages to the database."
945
  msgstr ""
946
  "<strong>Contact Form to DB</strong> vám dovolí ukladať spravy do databázy."
947
 
948
- #: contact_form.php:3326
949
  msgid "Manage messages that have been sent from your website."
950
  msgstr "Spravujte správy, ktoré boli odoslané z vašej stránky"
951
 
952
- #: contact_form.php:3384
953
  #, fuzzy
954
  msgid "Contact form"
955
  msgstr "Kontaktný formulár"
956
 
957
- #: contact_form.php:3397 contact_form.php:3407
958
  #, fuzzy
959
  msgid "Language"
960
  msgstr "Pridať jazyk"
961
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
962
  #~ msgid "To send mail you can use the php mail function"
963
  #~ msgstr "Ak chcete odosielať poštu, môžete použiť e-mailoé PHP funkcie"
964
 
@@ -1126,9 +1139,6 @@ msgstr "Pridať jazyk"
1126
  #~ msgid "Please, go to"
1127
  #~ msgstr "Prosím, choďte na"
1128
 
1129
- #~ msgid "the setting page"
1130
- #~ msgstr "stránku nastavení"
1131
-
1132
  #~ msgid "You will be redirected automatically in 5 seconds."
1133
  #~ msgstr "Za 5 sekúnd budete automaticky presmerovaní."
1134
 
6
  msgstr ""
7
  "Project-Id-Version: Contact Form\n"
8
  "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2016-07-12 17:22+0300\n"
10
+ "PO-Revision-Date: 2016-07-12 17:22+0300\n"
11
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
12
  "Language-Team: Michal Vittek, www.wp.sk <michal.vittek@wp.sk>\n"
13
  "Language: sk_SK\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
+ #: contact_form.php:37 contact_form.php:1118
25
  msgid "Contact Form Settings"
26
  msgstr "Nastavenie kontaktného formulára"
27
 
29
  msgid "Contact Form"
30
  msgstr "Kontaktný formulár"
31
 
32
+ #: contact_form.php:167 contact_form.php:1294 contact_form.php:1353
33
+ #: contact_form.php:1746 contact_form.php:1784 contact_form.php:2033
34
+ #: contact_form.php:3113 contact_form.php:3159
35
+ msgid "Name"
36
+ msgstr "Meno"
37
 
38
+ #: contact_form.php:168 contact_form.php:1400 contact_form.php:1747
39
+ #: contact_form.php:1785 contact_form.php:2038 contact_form.php:3120
40
+ #: contact_form.php:3165
41
+ msgid "Address"
42
+ msgstr "Adresa"
43
 
44
+ #: contact_form.php:169 contact_form.php:1416 contact_form.php:1748
45
+ #: contact_form.php:1786
46
+ msgid "Email Address"
47
+ msgstr "Emailová adresa"
48
 
49
+ #: contact_form.php:170 contact_form.php:1439 contact_form.php:1749
50
+ #: contact_form.php:1787
51
+ msgid "Phone number"
52
+ msgstr "Telefónne číslo"
53
 
54
+ #: contact_form.php:171 contact_form.php:1455 contact_form.php:1750
55
+ #: contact_form.php:1788 contact_form.php:2053 contact_form.php:3131
56
+ #: contact_form.php:3174
57
+ msgid "Subject"
58
+ msgstr "Predmet"
59
 
60
+ #: contact_form.php:172 contact_form.php:1479 contact_form.php:1751
61
+ #: contact_form.php:1789 contact_form.php:2057 contact_form.php:3136
62
+ #: contact_form.php:3178
63
+ msgid "Message"
64
+ msgstr "Správa"
65
 
66
+ #: contact_form.php:173 contact_form.php:1752 contact_form.php:1790
67
+ #: contact_form.php:2062
68
+ msgid "Attachment"
69
  msgstr "Príloha"
70
 
71
+ #: contact_form.php:174
72
  msgid ""
73
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
74
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
76
  "Podporované typy súborov: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
77
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
78
 
79
+ #: contact_form.php:175 contact_form.php:1754 contact_form.php:1792
80
  msgid "Send me a copy"
81
  msgstr "Zaslať mi kópiu"
82
 
83
+ #: contact_form.php:176 contact_form.php:1755 contact_form.php:1793
84
  msgid "Submit"
85
  msgstr "Odoslať"
86
 
87
+ #: contact_form.php:177
88
  msgid "Your name is required."
89
  msgstr "Vaše meno je vyžadované."
90
 
91
+ #: contact_form.php:178
92
  msgid "Address is required."
93
  msgstr "Adresa je vyžadovaná."
94
 
95
+ #: contact_form.php:179
96
  msgid "A valid email address is required."
97
  msgstr "Platný E-mail je vyžadovaný."
98
 
99
+ #: contact_form.php:180
100
  msgid "Phone number is required."
101
  msgstr "Telefónne číslo je vyžadované."
102
 
103
+ #: contact_form.php:181
104
  msgid "Subject is required."
105
  msgstr "Predmet je vyžadovaný."
106
 
107
+ #: contact_form.php:182
108
  msgid "Message text is required."
109
  msgstr "Správa je vyžadovaná."
110
 
111
+ #: contact_form.php:183
112
  msgid "File format is not valid."
113
  msgstr "Nesprávny typ súboru."
114
 
115
+ #: contact_form.php:184
116
  msgid "File upload error."
117
  msgstr "Nahrávanie súboru zlyhalo."
118
 
119
+ #: contact_form.php:185
120
  msgid "The file could not be uploaded."
121
  msgstr "Súbor nemôže byť nahraný."
122
 
123
+ #: contact_form.php:186
124
  msgid "This file is too large."
125
  msgstr "Súbor je príliš veľký."
126
 
127
+ #: contact_form.php:187
128
  msgid "Please fill out the CAPTCHA."
129
  msgstr "Prosím opíšte CAPTCHA text."
130
 
131
+ #: contact_form.php:188
132
  msgid "Please make corrections below and try again."
133
  msgstr "Prosím opravte chyby a skúste to opäť."
134
 
135
+ #: contact_form.php:190
136
  msgid "Thank you for contacting us."
137
  msgstr "Ďakujeme za správu."
138
 
139
+ #: contact_form.php:824 contact_form.php:1076
140
  msgid "Settings saved."
141
  msgstr "Nastavenie uložené."
142
 
143
+ #: contact_form.php:1021
144
  msgid ""
145
  "Email 'FROM' field option was changed, which may cause email messages being "
146
  "moved to the spam folder or email delivery failures."
147
  msgstr ""
148
 
149
+ #: contact_form.php:1031
150
  msgid ""
151
  "If the 'Redirect to page' option is selected then the URL field should be in "
152
  "the following format"
154
  "Ak je vybratá možnosť \"Presmerovanie na stránku\" potom pole URL by malo "
155
  "mať nasledujúci formát"
156
 
157
+ #: contact_form.php:1038
158
  msgid "Such user does not exist."
159
  msgstr "Taký užívateľ neexistuje."
160
 
161
+ #: contact_form.php:1048
162
  msgid ""
163
  "Please enter a valid email address in the 'Use this email address' field."
164
  msgstr "Zadajte platnú e-mailovú adresu v poli \"Použiť tento email\"."
165
 
166
+ #: contact_form.php:1056
167
  msgid "Please enter a valid email address in the 'FROM' field."
168
  msgstr "Zadajte platnú e-mailovú adresu v poli \"Od\"."
169
 
170
+ #: contact_form.php:1078
171
  msgid "Settings are not saved."
172
  msgstr "Nastavenie sa neuloží."
173
 
174
+ #: contact_form.php:1115
175
  msgid "All plugin settings were restored."
176
  msgstr ""
177
 
178
+ #: contact_form.php:1120
179
  msgid "How to Use Step-by-step Instruction"
180
  msgstr ""
181
 
182
+ #: contact_form.php:1123 contact_form.php:3351 contact_form.php:3365
183
  msgid "Settings"
184
  msgstr "Nastavenia"
185
 
186
+ #: contact_form.php:1124
187
  #, fuzzy
188
  msgid "Additional settings"
189
  msgstr "Ďalšie nastavenia"
190
 
191
+ #: contact_form.php:1125
192
  msgid "Appearance"
193
  msgstr ""
194
 
195
+ #: contact_form.php:1126
196
  msgid "Custom code"
197
  msgstr ""
198
 
199
+ #: contact_form.php:1127
200
  msgid "Go PRO"
201
  msgstr "Zakúpiť PRO"
202
 
203
+ #: contact_form.php:1136
 
 
 
 
 
 
 
 
 
 
 
204
  #, fuzzy
205
+ msgid "Notice"
 
 
 
 
206
  msgstr "Oznam:"
207
 
208
+ #: contact_form.php:1140
209
  msgid "NEW_FORM"
210
  msgstr ""
211
 
212
+ #: contact_form.php:1141
213
  msgid ""
214
  "If you want to create multiple contact forms, please install the Contact "
215
  "Form Multi plugin."
217
  "Ak si želáte vytvoriť viac formulárov, prosím nainštalujte si modul Contact "
218
  "Form Multi "
219
 
220
+ #: contact_form.php:1150
221
  #, fuzzy, php-format
222
  msgid ""
223
  "If you would like to add a Contact Form to your page or post, please use %s "
226
  "Ak by ste chceli pridať kontaktný formulár na svoje webové stránky, stačí "
227
  "skopírovať a vložiť shortcode k príspevku, stránke alebo widgetu:"
228
 
229
+ #: contact_form.php:1156
230
  #, php-format
231
  msgid ""
232
  "You can add the Contact Form to your page or post by clicking on %s button "
235
  "language."
236
  msgstr ""
237
 
238
+ #: contact_form.php:1165
239
  msgid ""
240
  "If you leave the fields empty, the messages will be sent to the email "
241
  "address specified during registration."
243
  "Ak necháte pole prázdne, budú správy posielané na e-mailovú adresu zadanú "
244
  "pri registrácii."
245
 
246
+ #: contact_form.php:1168
247
+ #, fuzzy
248
+ msgid "The user's email address"
249
  msgstr "Užívateľova e-mailová adresa:"
250
 
251
+ #: contact_form.php:1172
252
  #, fuzzy
253
  msgid "Select a username"
254
  msgstr "Vytvorte užívateľské meno"
255
 
256
+ #: contact_form.php:1185
257
+ #, fuzzy
258
  msgid ""
259
+ "Select a username of the person who should get the messages from the contact "
260
  "form."
261
  msgstr ""
262
  "Zadajte užívateľské meno osoby, ktorá by mala dostať správy z kontaktného "
263
  "formulára."
264
 
265
+ #: contact_form.php:1189
266
+ #, fuzzy
267
+ msgid "Use this email address"
268
  msgstr "Použíte tento email::"
269
 
270
+ #: contact_form.php:1193
271
+ #, fuzzy
272
+ msgid "Enter the email address for receiving messages"
273
  msgstr "Zadajte e-mailovú adresu, ktorú chcete do správy presmerovať."
274
 
275
+ #: contact_form.php:1200 contact_form.php:1663 contact_form.php:1873
276
+ #: contact_form.php:1961 contact_form.php:3446
277
  msgid "Close"
278
  msgstr ""
279
 
280
+ #: contact_form.php:1204
281
+ #, fuzzy
282
+ msgid "Add department selectbox to the contact form"
283
  msgstr "Pridať oddelenie výberového oddielu do formulára:"
284
 
285
+ #: contact_form.php:1212 contact_form.php:1672 contact_form.php:1892
286
+ #: contact_form.php:2167
287
  msgid "If you upgrade to Pro version all your settings will be saved."
288
  msgstr "Ak si zakúpite PRO verziu, vaše nastavenia sa uložia."
289
 
290
+ #: contact_form.php:1219 contact_form.php:1509 contact_form.php:1677
291
+ #: contact_form.php:1899 contact_form.php:2174
292
  #, fuzzy
293
  msgid "Unlock premium options by upgrading to Pro version"
294
  msgstr "Odblokujte prémiové nastavenia kúpením PRO verzie modulu."
295
 
296
+ #: contact_form.php:1222 contact_form.php:1512 contact_form.php:1680
297
+ #: contact_form.php:1902 contact_form.php:2177 contact_form.php:3672
298
  msgid "Learn More"
299
  msgstr "Zistiť viac"
300
 
301
+ #: contact_form.php:1230
302
  msgid "Save emails to the database"
303
  msgstr "Uložiť emaily do databázy"
304
 
305
+ #: contact_form.php:1241 contact_form.php:1255 contact_form.php:1262
306
  msgid "Using"
307
  msgstr "Používa"
308
 
309
+ #: contact_form.php:1247 contact_form.php:1572 contact_form.php:1605
310
+ #: contact_form.php:1640
311
+ msgid "Please activate the appropriate option on"
312
+ msgstr ""
313
+
314
+ #: contact_form.php:1250 contact_form.php:1575 contact_form.php:1608
315
+ #: contact_form.php:1643
316
  #, fuzzy
317
+ msgid "settings page"
318
+ msgstr "stránku nastavení"
319
 
320
+ #: contact_form.php:1256 contact_form.php:1581 contact_form.php:1615
321
+ #: contact_form.php:1651
322
  msgid "Activate"
323
  msgstr "Aktivovať"
324
 
325
+ #: contact_form.php:1263 contact_form.php:1587 contact_form.php:1621
326
+ #: contact_form.php:1656
327
  msgid "Download"
328
  msgstr "Stiahnuť"
329
 
330
+ #: contact_form.php:1275
331
+ msgid "Sending method"
332
+ msgstr ""
333
 
334
+ #: contact_form.php:1280
335
  msgid "Wp-mail"
336
  msgstr "Wp-mail"
337
 
338
+ #: contact_form.php:1282
339
  #, fuzzy
340
  msgid "You can use the Wordpress wp_mail function for mailing"
341
  msgstr "Môžete použiť wp_mail funkcie pre zasielanie"
342
 
343
+ #: contact_form.php:1285
344
  msgid "Mail"
345
  msgstr "Email"
346
 
347
+ #: contact_form.php:1287
348
  #, fuzzy
349
  msgid "You can use the PHP mail function for mailing"
350
  msgstr "Môžete použiť wp_mail funkcie pre zasielanie"
351
 
352
+ #: contact_form.php:1292
353
  msgid "'FROM' field"
354
  msgstr ""
355
 
356
+ #: contact_form.php:1297
 
 
 
 
 
357
  msgid "User name"
358
  msgstr "Používateľské meno"
359
 
360
+ #: contact_form.php:1299
361
  msgid ""
362
  "The name of the user who fills the form will be used in the field 'From'."
363
  msgstr "Meno, zobrazené ako odosielateľ emailu."
364
 
365
+ #: contact_form.php:1304 contact_form.php:3126 contact_form.php:3170
366
  msgid "Email"
367
  msgstr "Email"
368
 
369
+ #: contact_form.php:1307
370
  msgid "User email"
371
  msgstr "Používateľský email"
372
 
373
+ #: contact_form.php:1309
374
  msgid ""
375
  "The email address of the user who fills the form will be used in the field "
376
  "'From'."
377
  msgstr ""
378
  "Emailová adresa používateľa, ktorý vyplní formulár bude použitá v poli \"Od\""
379
 
380
+ #: contact_form.php:1312
381
  msgid ""
382
  "If this option is changed, email messages may be moved to the spam folder or "
383
  "email delivery failures may occur."
384
  msgstr ""
385
 
386
+ #: contact_form.php:1318
387
  msgid "Required symbol"
388
  msgstr "Vyžadovaný znak"
389
 
390
+ #: contact_form.php:1328
391
  msgid "Fields"
392
  msgstr "Polia"
393
 
394
+ #: contact_form.php:1329 contact_form.php:1356 contact_form.php:1383
395
+ #: contact_form.php:1403 contact_form.php:1442 contact_form.php:1527
396
  msgid "Used"
397
  msgstr "Použité"
398
 
399
+ #: contact_form.php:1330 contact_form.php:1345 contact_form.php:1360
400
+ #: contact_form.php:1387 contact_form.php:1407 contact_form.php:1420
401
+ #: contact_form.php:1446 contact_form.php:1459 contact_form.php:1483
402
  msgid "Required"
403
  msgstr "Vyžadované"
404
 
405
+ #: contact_form.php:1332 contact_form.php:1365 contact_form.php:1425
406
+ #: contact_form.php:1464 contact_form.php:1488
407
  msgid "Visible"
408
  msgstr "Viditeľné"
409
 
410
+ #: contact_form.php:1333 contact_form.php:1369 contact_form.php:1429
411
+ #: contact_form.php:1468 contact_form.php:1492
412
  msgid "Disabled for editing"
413
  msgstr "Nedá sa upraviť"
414
 
415
+ #: contact_form.php:1334 contact_form.php:1393 contact_form.php:1472
416
+ #: contact_form.php:1496
417
  msgid "Field's default value"
418
  msgstr "Základná hodnota pola"
419
 
420
+ #: contact_form.php:1341
421
  #, fuzzy
422
  msgid "Department selectbox"
423
  msgstr "Poloha výberového oddielu"
424
 
425
+ #: contact_form.php:1373
426
  msgid "Use User's name as a default value if the user is logged in."
427
  msgstr ""
428
 
429
+ #: contact_form.php:1374 contact_form.php:1434
430
  msgid ""
431
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
432
  "in users."
433
  msgstr ""
434
 
435
+ #: contact_form.php:1380
436
  msgid "Location selectbox"
437
  msgstr "Poloha výberového oddielu"
438
 
439
+ #: contact_form.php:1433
 
 
 
 
 
 
 
 
 
440
  msgid "Use User's email as a default value if the user is logged in."
441
  msgstr ""
442
 
443
+ #: contact_form.php:1520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
444
  msgid "Attachment block"
445
  msgstr "Blok príloh"
446
 
447
+ #: contact_form.php:1522
448
  msgid "Users can attach the following file formats"
449
  msgstr "Užívatelia môžu pripojiť nasledujúce formáty súborov"
450
 
451
+ #: contact_form.php:1540
452
  msgid "Add to the form"
453
  msgstr "Pridať do formulára"
454
 
455
+ #: contact_form.php:1545
456
  msgid "Tips below the Attachment"
457
  msgstr "Rady zobrazené pod prílohami"
458
 
459
+ #: contact_form.php:1554
460
  msgid "'Send me a copy' block"
461
  msgstr "Zobraziť blok 'Zaslať kópiu'"
462
 
463
+ #: contact_form.php:1667
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
464
  msgid "Agreement checkbox"
465
  msgstr "Označenie súhlasu"
466
 
467
+ #: contact_form.php:1667
468
  msgid "Required checkbox for submitting the form"
469
  msgstr "Vyžaduje označenie súhlasu pri odoslaní formulára"
470
 
471
+ #: contact_form.php:1668
472
  msgid "Optional checkbox"
473
  msgstr "Voliteľné zaškrtávacie políčko"
474
 
475
+ #: contact_form.php:1668
476
  msgid "Optional checkbox, the results of which will be displayed in email"
477
  msgstr "Voliteľné zaškrtávacie políčko, jeho výsledok bude zobrazený v emaile"
478
 
479
+ #: contact_form.php:1689
480
  msgid "Delete an attachment file from the server after the email is sent"
481
  msgstr "Vymazať prílohy zo servera po odoslaní emailu"
482
 
483
+ #: contact_form.php:1695
484
  msgid "Email in HTML format sending"
485
  msgstr "Povoliť HTML formátovanie"
486
 
487
+ #: contact_form.php:1699
488
  msgid "Display additional info in the email"
489
  msgstr "Zobraziť ďalšie informácie v e-maile"
490
 
491
+ #: contact_form.php:1705
492
  #, fuzzy
493
  msgid "Sent from (IP address)"
494
  msgstr "Odoslané z (ip adresa)"
495
 
496
+ #: contact_form.php:1705
497
  msgid "Example: Sent from (IP address):\t127.0.0.1"
498
  msgstr "Príklad: Odoslané z (IP addresa):\t127.0.0.1"
499
 
500
+ #: contact_form.php:1706 contact_form.php:3075 contact_form.php:3077
501
  msgid "Date/Time"
502
  msgstr "Datum / Čas"
503
 
504
+ #: contact_form.php:1706
505
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
506
  msgstr "Príklad: Dátum/Čas:\tAugust 19, 2013 8:50 pm"
507
 
508
+ #: contact_form.php:1707 contact_form.php:3081 contact_form.php:3083
509
  msgid "Sent from (referer)"
510
  msgstr "Odoslané z"
511
 
512
+ #: contact_form.php:1707
513
  msgid ""
514
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
515
  msgstr ""
516
  "Príklad: Odoslané pomocou (odkaz):\thttp://bestwebsoft.com/contacts/contact-"
517
  "us/"
518
 
519
+ #: contact_form.php:1708 contact_form.php:3087 contact_form.php:3089
520
  msgid "Using (user agent)"
521
  msgstr "Použitie (user agent)"
522
 
523
+ #: contact_form.php:1708
524
  msgid ""
525
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
526
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
528
  "Príklad: Prehliadač (používateľ):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
529
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
530
 
531
+ #: contact_form.php:1713
532
  msgid "Language settings for the field names in the form"
533
  msgstr "Nastavenie jazyka pre názvy polí vo formulári"
534
 
535
+ #: contact_form.php:1722
536
  msgid "Add a language"
537
  msgstr "Pridať jazyk"
538
 
539
+ #: contact_form.php:1726
540
  msgid "Change the names of the contact form fields and error messages"
541
  msgstr "Zmena názvov polí kontaktného formulára a chybových hlásení"
542
 
543
+ #: contact_form.php:1731 contact_form.php:1827 contact_form.php:2081
544
+ #: contact_form.php:2086 contact_form.php:2096 contact_form.php:2101
545
+ #: contact_form.php:2106 contact_form.php:2111 contact_form.php:2121
546
+ #: contact_form.php:2126 contact_form.php:2135 contact_form.php:2149
547
+ #: contact_form.php:2154 contact_form.php:2159
548
  msgid "Default"
549
  msgstr "Základná"
550
 
551
+ #: contact_form.php:1744 contact_form.php:1782
552
  msgid "click to expand/hide the list"
553
  msgstr "kliknite pre rozbalenie/schovanie zoznamu"
554
 
555
+ #: contact_form.php:1753 contact_form.php:1791
556
  msgid "Tips below the Attachment block"
557
  msgstr "Zobrazenie rád pod blokom príloh"
558
 
559
+ #: contact_form.php:1756 contact_form.php:1794
560
  msgid "Error message for the Name field"
561
  msgstr "Chybová správa v poli: Meno"
562
 
563
+ #: contact_form.php:1757 contact_form.php:1795
564
  msgid "Error message for the Address field"
565
  msgstr "Chybová správa v poli: Adresa"
566
 
567
+ #: contact_form.php:1758 contact_form.php:1796
568
  msgid "Error message for the Email field"
569
  msgstr "Chybová správa v poli: Email"
570
 
571
+ #: contact_form.php:1759 contact_form.php:1797
572
  msgid "Error message for the Phone field"
573
  msgstr "Chybová správa v poli: Telefón"
574
 
575
+ #: contact_form.php:1760 contact_form.php:1798
576
  msgid "Error message for the Subject field"
577
  msgstr "Chybová správa v poli: Predmet"
578
 
579
+ #: contact_form.php:1761 contact_form.php:1799
580
  msgid "Error message for the Message field"
581
  msgstr "Chybová správa v poli: Správa"
582
 
583
+ #: contact_form.php:1762 contact_form.php:1800
584
  msgid "Error message about the file type for the Attachment field"
585
  msgstr "Chybová správa o type súbora v poli príloh"
586
 
587
+ #: contact_form.php:1763 contact_form.php:1801
588
  msgid ""
589
  "Error message while uploading a file for the Attachment field to the server"
590
  msgstr "Chybová správa pri neúspešnom nahraní súbora na server"
591
 
592
+ #: contact_form.php:1764 contact_form.php:1802
593
  msgid "Error message while moving the file for the Attachment field"
594
  msgstr "Chybová správa pri neúspešnom presune súbora do pola prílohy"
595
 
596
+ #: contact_form.php:1765 contact_form.php:1803
597
  msgid "Error message when file size limit for the Attachment field is exceeded"
598
  msgstr "Chybová správa pri prekročení maximálnej veľkosti súboru"
599
 
600
+ #: contact_form.php:1766 contact_form.php:1804
601
  msgid "Error message for the Captcha field"
602
  msgstr "Chybová správa v poli Captcha"
603
 
604
+ #: contact_form.php:1767 contact_form.php:1805
605
  msgid "Error message for the whole form"
606
  msgstr "Chybová správa celého formulára"
607
 
608
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
609
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
610
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
611
+ #: contact_form.php:3516
612
  msgid "Use shortcode"
613
  msgstr "Použite krátky kód"
614
 
615
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
616
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
617
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
618
+ #: contact_form.php:3516
619
  msgid "for this language"
620
  msgstr "pre tento jazyk"
621
 
622
+ #: contact_form.php:1818
623
  msgid "Use the changed names of the contact form fields in the email"
624
  msgstr "Použite zmenu názvov polí v emaile"
625
 
626
+ #: contact_form.php:1824
627
  msgid "Action after email is sent"
628
  msgstr "Akcia po zaslaní mailu."
629
 
630
+ #: contact_form.php:1826
631
  msgid "Display text"
632
  msgstr "Zobraziť text"
633
 
634
+ #: contact_form.php:1840 contact_form.php:1854
635
  msgid "Text"
636
  msgstr "Text"
637
 
638
+ #: contact_form.php:1865
639
  msgid "Redirect to the page"
640
  msgstr "Presmerovať na stránku"
641
 
642
+ #: contact_form.php:1866
643
  msgid "Url"
644
  msgstr "Url"
645
 
646
+ #: contact_form.php:1877
647
  msgid "Add field 'Reply-To' to the email header"
648
  msgstr ""
649
 
650
+ #: contact_form.php:1879
651
  msgid "Field 'Reply-To' will be initialized by user email"
652
  msgstr ""
653
 
654
+ #: contact_form.php:1883
655
  msgid "Auto Response"
656
  msgstr ""
657
 
658
+ #: contact_form.php:1887
659
  #, php-format
660
  msgid ""
661
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
663
  "name."
664
  msgstr ""
665
 
666
+ #: contact_form.php:1912 contact_form.php:2398
667
  msgid "Save Changes"
668
  msgstr "Uložiť zmeny"
669
 
670
+ #: contact_form.php:1925
671
  #, php-format
672
  msgid ""
673
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
674
  msgstr ""
675
 
676
+ #: contact_form.php:1925 contact_form.php:1934
677
+ msgid "Form layout"
678
+ msgstr ""
679
+
680
+ #: contact_form.php:1925 contact_form.php:1946
681
+ #, fuzzy
682
+ msgid "Submit position"
683
+ msgstr "Porvrdzovacie tlačidlo"
684
+
685
+ #: contact_form.php:1938
686
  msgid "One column"
687
  msgstr ""
688
 
689
+ #: contact_form.php:1941
690
  msgid "Two columns"
691
  msgstr ""
692
 
693
+ #: contact_form.php:1950 contact_form.php:1969 contact_form.php:1987
694
+ #: contact_form.php:2002
695
  msgid "Left"
696
  msgstr ""
697
 
698
+ #: contact_form.php:1953 contact_form.php:1975 contact_form.php:1990
699
+ #: contact_form.php:2008
700
  msgid "Right"
701
  msgstr ""
702
 
703
+ #: contact_form.php:1965
704
  msgid "Form align"
705
  msgstr ""
706
 
707
+ #: contact_form.php:1972 contact_form.php:2005
708
  msgid "Center"
709
  msgstr ""
710
 
711
+ #: contact_form.php:1980
712
  #, fuzzy
713
  msgid "Labels position"
714
  msgstr "Porvrdzovacie tlačidlo"
715
 
716
+ #: contact_form.php:1984
717
  msgid "Top"
718
  msgstr ""
719
 
720
+ #: contact_form.php:1993
721
  msgid "Bottom"
722
  msgstr ""
723
 
724
+ #: contact_form.php:1998
725
  msgid "Labels align"
726
  msgstr ""
727
 
728
+ #: contact_form.php:2013
729
  msgid "Errors output"
730
  msgstr "Chybový výstup"
731
 
732
+ #: contact_form.php:2016
733
  msgid "Display error messages"
734
  msgstr "Zobrazí chybové správy"
735
 
736
+ #: contact_form.php:2017
737
  msgid "Color of the input field errors."
738
  msgstr "Farba textu chybových polí."
739
 
740
+ #: contact_form.php:2018
741
  msgid "Display error messages & color of the input field errors"
742
  msgstr "Zobrazí chybové správy a ich farbu"
743
 
744
+ #: contact_form.php:2023
745
  msgid "Add placeholder to the input blocks"
746
  msgstr "Pridať zástupný znak do blokov"
747
 
748
+ #: contact_form.php:2029
749
  msgid "Add tooltips"
750
  msgstr "Pridať popisky"
751
 
752
+ #: contact_form.php:2043
753
  msgid "Email address"
754
  msgstr "Emailová adresa"
755
 
756
+ #: contact_form.php:2048 contact_form.php:3142 contact_form.php:3183
757
  msgid "Phone Number"
758
  msgstr "Tel. číslo"
759
 
760
+ #: contact_form.php:2074
 
 
 
 
761
  msgid "Style options"
762
  msgstr "Nastavenie štýlu"
763
 
764
+ #: contact_form.php:2078
765
  msgid "Text color"
766
  msgstr "Farba textu"
767
 
768
+ #: contact_form.php:2083
769
  msgid "Label text color"
770
  msgstr "Označenie farby textu"
771
 
772
+ #: contact_form.php:2088
773
  msgid "Placeholder color"
774
  msgstr "Farba zástupného znaku"
775
 
776
+ #: contact_form.php:2093
777
  msgid "Errors color"
778
  msgstr "Farba chýb"
779
 
780
+ #: contact_form.php:2098
781
  msgid "Error text color"
782
  msgstr "Farba textu"
783
 
784
+ #: contact_form.php:2103
785
  msgid "Background color of the input field errors"
786
  msgstr "Farba pozadia polí chýb"
787
 
788
+ #: contact_form.php:2108
789
  msgid "Border color of the input field errors"
790
  msgstr "Farba ohraničenia polí chýb"
791
 
792
+ #: contact_form.php:2113
793
  msgid "Placeholder color of the input field errors"
794
  msgstr "Farba zástupného znaku polí chýb"
795
 
796
+ #: contact_form.php:2118
797
  msgid "Input fields"
798
  msgstr "Vložiť polia"
799
 
800
+ #: contact_form.php:2123
801
  msgid "Input fields background color"
802
  msgstr "Farba pozadia polí"
803
 
804
+ #: contact_form.php:2128
805
  msgid "Text fields color"
806
  msgstr "Farba textových polí"
807
 
808
+ #: contact_form.php:2132
809
  msgid "Border width in px, numbers only"
810
  msgstr "Šírka orámovania v px, vkladajte iba číselné hodnoty"
811
 
812
+ #: contact_form.php:2137 contact_form.php:2161
813
  msgid "Border color"
814
  msgstr "Farba ohraničenia"
815
 
816
+ #: contact_form.php:2142
817
  msgid "Submit button"
818
  msgstr "Porvrdzovacie tlačidlo"
819
 
820
+ #: contact_form.php:2146
821
  msgid "Width in px, numbers only"
822
  msgstr "Šírka v px, vkladajte iba číselné hodnoty"
823
 
824
+ #: contact_form.php:2151
825
  msgid "Button color"
826
  msgstr "Farba tlačidla"
827
 
828
+ #: contact_form.php:2156
829
  msgid "Button text color"
830
  msgstr "Farba textu v tlačidle"
831
 
832
+ #: contact_form.php:2188
833
  #, fuzzy
834
  msgid "Contact Form | Preview"
835
  msgstr "Kontaktný formulár Pro | Zobrazenie"
836
 
837
+ #: contact_form.php:2189
838
  msgid "Drag the necessary field to sort fields."
839
  msgstr ""
840
 
841
+ #: contact_form.php:2385
842
+ #, fuzzy
843
  msgid ""
844
  "If you would like to add the Contact Form to your website, just copy and "
845
+ "paste this shortcode to your post or page or widget"
846
  msgstr ""
847
  "Ak by ste chceli pridať kontaktný formulár na svoje webové stránky, stačí "
848
  "skopírovať a vložiť shortcode k príspevku, stránke alebo widgetu:"
849
 
850
+ #: contact_form.php:2501
851
  msgid "Sorry, email message could not be delivered."
852
  msgstr "Prepáčte, správa nemohla byť doručená."
853
 
854
+ #: contact_form.php:3069 contact_form.php:3071
855
  msgid "Sent from (ip address)"
856
  msgstr "Odoslané z (ip adresa)"
857
 
858
+ #: contact_form.php:3099
859
  msgid "Contact from"
860
  msgstr "Kontaktný formulár"
861
 
862
+ #: contact_form.php:3104 contact_form.php:3153
 
 
 
 
863
  msgid "Site"
864
  msgstr "Stránka"
865
 
866
+ #: contact_form.php:3283
867
  msgid ""
868
  "If you can see this MIME, it means that the MIME type is not supported by "
869
  "your email client!"
871
  "Ak vidíte túto MIME, znamená to, že MIME typ nie je podporovaný vyším e-"
872
  "mailovým klientom!"
873
 
874
+ #: contact_form.php:3366
875
  msgid "FAQ"
876
  msgstr "Často kladené otázky"
877
 
878
+ #: contact_form.php:3367
879
  msgid "Support"
880
  msgstr "Podpora"
881
 
882
+ #: contact_form.php:3416
883
  msgid "Are you sure that you want to delete this language data?"
884
  msgstr "Naozaj chcete vymazať tieto jazykové dáta?"
885
 
886
+ #: contact_form.php:3437
887
  #, fuzzy
888
  msgid "Add multiple forms"
889
  msgstr "Pridať do formulára"
890
 
891
+ #: contact_form.php:3437
892
  msgid ""
893
  "Install Contact Form Multi plugin to create unlimited number of contact "
894
  "forms."
895
  msgstr ""
896
 
897
+ #: contact_form.php:3442
898
  #, fuzzy
899
  msgid "Learn more"
900
  msgstr "Zistiť viac"
901
 
902
+ #: contact_form.php:3663
903
  msgid "Close notice"
904
  msgstr ""
905
 
906
+ #: contact_form.php:3668
907
  #, fuzzy
908
  msgid "allows to store your messages to the database."
909
  msgstr ""
910
  "<strong>Contact Form to DB</strong> vám dovolí ukladať spravy do databázy."
911
 
912
+ #: contact_form.php:3669
913
  msgid "Manage messages that have been sent from your website."
914
  msgstr "Spravujte správy, ktoré boli odoslané z vašej stránky"
915
 
916
+ #: contact_form.php:3727
917
  #, fuzzy
918
  msgid "Contact form"
919
  msgstr "Kontaktný formulár"
920
 
921
+ #: contact_form.php:3740 contact_form.php:3750
922
  #, fuzzy
923
  msgid "Language"
924
  msgstr "Pridať jazyk"
925
 
926
+ #~ msgid "Name:"
927
+ #~ msgstr "Meno:"
928
+
929
+ #~ msgid "Address:"
930
+ #~ msgstr "Adresa::"
931
+
932
+ #~ msgid "Email Address:"
933
+ #~ msgstr "E-Mail:"
934
+
935
+ #~ msgid "Phone number:"
936
+ #~ msgstr "Telefónne číslo:"
937
+
938
+ #~ msgid "Subject:"
939
+ #~ msgstr "Predmet:"
940
+
941
+ #~ msgid "Message:"
942
+ #~ msgstr "Správa:"
943
+
944
+ #~ msgid "Attachment:"
945
+ #~ msgstr "Príloha"
946
+
947
+ #, fuzzy
948
+ #~ msgid ""
949
+ #~ "Please enable JavaScript to add language in the contact form, change the "
950
+ #~ "names of the contact form fields and error messages."
951
+ #~ msgstr "Zmena názvov polí kontaktného formulára a chybových hlásení"
952
+
953
+ #~ msgid "What to use?"
954
+ #~ msgstr "Čo používať?"
955
+
956
+ #, fuzzy
957
+ #~ msgid "Using Contact Form to DB by BestWebSoft"
958
+ #~ msgstr "Použiť Contact Forrm do DB poháňaný"
959
+
960
+ #, fuzzy
961
+ #~ msgid "Activate Subscriber"
962
+ #~ msgstr "Aktivované pluginy"
963
+
964
+ #, fuzzy
965
+ #~ msgid "Activate Captcha"
966
+ #~ msgstr "Aktivovať captcha"
967
+
968
+ #, fuzzy
969
+ #~ msgid "Download Captcha"
970
+ #~ msgstr "Stiahnuť captcha"
971
+
972
+ #~ msgid "Phone"
973
+ #~ msgstr "Telefón"
974
+
975
  #~ msgid "To send mail you can use the php mail function"
976
  #~ msgstr "Ak chcete odosielať poštu, môžete použiť e-mailoé PHP funkcie"
977
 
1139
  #~ msgid "Please, go to"
1140
  #~ msgstr "Prosím, choďte na"
1141
 
 
 
 
1142
  #~ msgid "You will be redirected automatically in 5 seconds."
1143
  #~ msgstr "Za 5 sekúnd budete automaticky presmerovaní."
1144
 
languages/contact-form-plugin-sv_SE.mo CHANGED
Binary file
languages/contact-form-plugin-sv_SE.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: 2016-06-27 16:32+0300\n"
6
- "PO-Revision-Date: 2016-06-27 16:32+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Martin Tonek, Joakim Lindskog, Maarten van den Driest "
9
  "<joakim@limewoodmedia.com, maarten@vandendriest.com>\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: contact_form.php:37 contact_form.php:1030
21
  msgid "Contact Form Settings"
22
  msgstr "Kontaktformulärinställningar"
23
 
@@ -25,35 +25,47 @@ msgstr "Kontaktformulärinställningar"
25
  msgid "Contact Form"
26
  msgstr "Kontaktformulär"
27
 
28
- #: contact_form.php:165 contact_form.php:1565 contact_form.php:1599
29
- msgid "Name:"
30
- msgstr "Namn:"
 
 
31
 
32
- #: contact_form.php:166 contact_form.php:1566 contact_form.php:1600
33
- msgid "Address:"
34
- msgstr "Adress:"
 
 
35
 
36
- #: contact_form.php:167 contact_form.php:1567 contact_form.php:1601
37
- msgid "Email Address:"
38
- msgstr "E-postadress:"
 
39
 
40
- #: contact_form.php:168 contact_form.php:1568 contact_form.php:1602
41
- msgid "Phone number:"
 
 
42
  msgstr "Telefonnummer:"
43
 
44
- #: contact_form.php:169 contact_form.php:1569 contact_form.php:1603
45
- msgid "Subject:"
46
- msgstr "Ämne:"
 
 
47
 
48
- #: contact_form.php:170 contact_form.php:1570 contact_form.php:1604
49
- msgid "Message:"
50
- msgstr "Meddelande:"
 
 
51
 
52
- #: contact_form.php:171 contact_form.php:1571 contact_form.php:1605
53
- msgid "Attachment:"
54
- msgstr "Bifogad fil:"
 
55
 
56
- #: contact_form.php:172
57
  msgid ""
58
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
59
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -61,77 +73,77 @@ msgstr ""
61
  "Stödda filformat: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, "
62
  "PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
63
 
64
- #: contact_form.php:173 contact_form.php:1573 contact_form.php:1607
65
  msgid "Send me a copy"
66
  msgstr "Skicka mig en kopia"
67
 
68
- #: contact_form.php:174 contact_form.php:1574 contact_form.php:1608
69
  msgid "Submit"
70
  msgstr "Skicka"
71
 
72
- #: contact_form.php:175
73
  msgid "Your name is required."
74
  msgstr "Ditt namn krävs."
75
 
76
- #: contact_form.php:176
77
  msgid "Address is required."
78
  msgstr "Adress krävs."
79
 
80
- #: contact_form.php:177
81
  msgid "A valid email address is required."
82
  msgstr "En giltig e-postadress krävs."
83
 
84
- #: contact_form.php:178
85
  msgid "Phone number is required."
86
  msgstr "Telefonnummer krävs."
87
 
88
- #: contact_form.php:179
89
  msgid "Subject is required."
90
  msgstr "Ämne krävs."
91
 
92
- #: contact_form.php:180
93
  msgid "Message text is required."
94
  msgstr "Meddelande krävs."
95
 
96
- #: contact_form.php:181
97
  msgid "File format is not valid."
98
  msgstr "Bilageformaten är inte giltigt."
99
 
100
- #: contact_form.php:182
101
  msgid "File upload error."
102
  msgstr "Filuppladdningsfel."
103
 
104
- #: contact_form.php:183
105
  msgid "The file could not be uploaded."
106
  msgstr "Filen kunde inte laddas upp."
107
 
108
- #: contact_form.php:184
109
  msgid "This file is too large."
110
  msgstr "Filen är för stor."
111
 
112
- #: contact_form.php:185
113
  msgid "Please fill out the CAPTCHA."
114
  msgstr "Var god fyll i CAPTCHA."
115
 
116
- #: contact_form.php:186
117
  msgid "Please make corrections below and try again."
118
  msgstr "Var god gör korrigeringar nedan och försök igen."
119
 
120
- #: contact_form.php:188
121
  msgid "Thank you for contacting us."
122
  msgstr "Tack för att du kontaktade oss."
123
 
124
- #: contact_form.php:688 contact_form.php:998
125
  msgid "Settings saved."
126
  msgstr "Inställningar sparades."
127
 
128
- #: contact_form.php:940
129
  msgid ""
130
  "Email 'FROM' field option was changed, which may cause email messages being "
131
  "moved to the spam folder or email delivery failures."
132
  msgstr ""
133
 
134
- #: contact_form.php:950
135
  msgid ""
136
  "If the 'Redirect to page' option is selected then the URL field should be in "
137
  "the following format"
@@ -139,12 +151,12 @@ msgstr ""
139
  "Om alternativet 'Omdirigera till sida' väljs ska URL-fältet fyllas i med "
140
  "följande format"
141
 
142
- #: contact_form.php:957
143
  #, fuzzy
144
  msgid "Such user does not exist."
145
  msgstr "Användaren finns inte. Inställningarna sparades inte."
146
 
147
- #: contact_form.php:967
148
  #, fuzzy
149
  msgid ""
150
  "Please enter a valid email address in the 'Use this email address' field."
@@ -152,78 +164,62 @@ msgstr ""
152
  "Var god ange en giltig e-postadress i 'FRÅN'-fältet. Inställningarna "
153
  "sparades inte."
154
 
155
- #: contact_form.php:975
156
  #, fuzzy
157
  msgid "Please enter a valid email address in the 'FROM' field."
158
  msgstr ""
159
  "Var god ange en giltig e-postadress i 'FRÅN'-fältet. Inställningarna "
160
  "sparades inte."
161
 
162
- #: contact_form.php:1000
163
  #, fuzzy
164
  msgid "Settings are not saved."
165
  msgstr "Inställningar sparades."
166
 
167
- #: contact_form.php:1027
168
  msgid "All plugin settings were restored."
169
  msgstr ""
170
 
171
- #: contact_form.php:1032
172
  msgid "How to Use Step-by-step Instruction"
173
  msgstr ""
174
 
175
- #: contact_form.php:1035 contact_form.php:3024 contact_form.php:3038
176
  msgid "Settings"
177
  msgstr "Inställningar"
178
 
179
- #: contact_form.php:1036
180
  #, fuzzy
181
  msgid "Additional settings"
182
  msgstr "Ytterligare alternativ"
183
 
184
- #: contact_form.php:1037
185
  msgid "Appearance"
186
  msgstr ""
187
 
188
- #: contact_form.php:1038
189
  msgid "Custom code"
190
  msgstr ""
191
 
192
- #: contact_form.php:1039
193
  msgid "Go PRO"
194
  msgstr ""
195
 
196
- #: contact_form.php:1045
197
- #, fuzzy
198
- msgid ""
199
- "Please enable JavaScript to add language in the contact form, change the "
200
- "names of the contact form fields and error messages."
201
- msgstr "Ändra etikett för fälten i kontaktformuläret och felmeddelanden"
202
-
203
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1740
204
- msgid "Form layout"
205
- msgstr ""
206
-
207
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1752
208
- #, fuzzy
209
- msgid "Submit position"
210
- msgstr "Skicka-knapp"
211
-
212
- #: contact_form.php:1057
213
- msgid "Notice:"
214
  msgstr ""
215
 
216
- #: contact_form.php:1061
217
  msgid "NEW_FORM"
218
  msgstr ""
219
 
220
- #: contact_form.php:1062
221
  msgid ""
222
  "If you want to create multiple contact forms, please install the Contact "
223
  "Form Multi plugin."
224
  msgstr ""
225
 
226
- #: contact_form.php:1071
227
  #, fuzzy, php-format
228
  msgid ""
229
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -232,7 +228,7 @@ msgstr ""
232
  "Om du vill lägga till ett kontaktformulär på din webbplats, kopiera följande "
233
  "kortkod och klistra in den på rätt inlägg, sida eller widget:"
234
 
235
- #: contact_form.php:1077
236
  #, php-format
237
  msgid ""
238
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -241,7 +237,7 @@ msgid ""
241
  "language."
242
  msgstr ""
243
 
244
- #: contact_form.php:1086
245
  msgid ""
246
  "If you leave the fields empty, the messages will be sent to the email "
247
  "address specified during registration."
@@ -249,114 +245,121 @@ msgstr ""
249
  "Om du lämnar fälten tomma kommer meddelandena att skickas till den e-"
250
  "postadressen som angavs under registreringen."
251
 
252
- #: contact_form.php:1089
253
- msgid "The user's email address:"
 
254
  msgstr "Användarens e-postadress:"
255
 
256
- #: contact_form.php:1093
257
  #, fuzzy
258
  msgid "Select a username"
259
  msgstr "Skapa ett användarnamn"
260
 
261
- #: contact_form.php:1106
 
262
  msgid ""
263
- "Enter a username of the person who should get the messages from the contact "
264
  "form."
265
  msgstr ""
266
  "Ange ett användarnamn på den användare som ska få meddelanden från "
267
  "kontaktformuläret."
268
 
269
- #: contact_form.php:1110
270
- msgid "Use this email address:"
 
271
  msgstr "Använd den här e-postadressen:"
272
 
273
- #: contact_form.php:1114
274
- msgid "Enter the email address you want the messages forwarded to."
 
275
  msgstr "Ange en e-postadress som ska användas för att ta emot meddelanden."
276
 
277
- #: contact_form.php:1121 contact_form.php:1487 contact_form.php:1679
278
- #: contact_form.php:1767 contact_form.php:3119
279
  msgid "Close"
280
  msgstr ""
281
 
282
- #: contact_form.php:1125
283
- msgid "Add department selectbox to the contact form:"
284
  msgstr ""
285
 
286
- #: contact_form.php:1133 contact_form.php:1496 contact_form.php:1698
287
- #: contact_form.php:1973
288
  msgid "If you upgrade to Pro version all your settings will be saved."
289
  msgstr ""
290
 
291
- #: contact_form.php:1140 contact_form.php:1407 contact_form.php:1501
292
- #: contact_form.php:1705 contact_form.php:1980
293
  msgid "Unlock premium options by upgrading to Pro version"
294
  msgstr ""
295
 
296
- #: contact_form.php:1143 contact_form.php:1410 contact_form.php:1504
297
- #: contact_form.php:1708 contact_form.php:1983 contact_form.php:3329
298
  msgid "Learn More"
299
  msgstr ""
300
 
301
- #: contact_form.php:1151
302
  msgid "Save emails to the database"
303
  msgstr ""
304
 
305
- #: contact_form.php:1156
306
  msgid "Using"
307
  msgstr ""
308
 
309
- #: contact_form.php:1159 contact_form.php:1163
 
 
 
 
 
 
310
  #, fuzzy
311
- msgid "Using Contact Form to DB by BestWebSoft"
312
- msgstr "Kontaktformulär Pro"
313
 
314
- #: contact_form.php:1159
 
315
  #, fuzzy
316
  msgid "Activate"
317
  msgstr "Aktivera captcha"
318
 
319
- #: contact_form.php:1163
 
320
  msgid "Download"
321
  msgstr "Hämta"
322
 
323
- #: contact_form.php:1173
324
- msgid "What to use?"
325
- msgstr "Vad ska användas?"
326
 
327
- #: contact_form.php:1178
328
  msgid "Wp-mail"
329
  msgstr "Wp-mail"
330
 
331
- #: contact_form.php:1180
332
  #, fuzzy
333
  msgid "You can use the Wordpress wp_mail function for mailing"
334
  msgstr "Du kan använda wp_mail-funktionen för att skicka e-post"
335
 
336
- #: contact_form.php:1183
337
  msgid "Mail"
338
  msgstr "E-post"
339
 
340
- #: contact_form.php:1185
341
  #, fuzzy
342
  msgid "You can use the PHP mail function for mailing"
343
  msgstr "Du kan använda wp_mail-funktionen för att skicka e-post"
344
 
345
- #: contact_form.php:1190
346
  msgid "'FROM' field"
347
  msgstr ""
348
 
349
- #: contact_form.php:1192 contact_form.php:1251 contact_form.php:1839
350
- #: contact_form.php:2810 contact_form.php:2846
351
- msgid "Name"
352
- msgstr "Namn"
353
-
354
- #: contact_form.php:1195
355
  #, fuzzy
356
  msgid "User name"
357
  msgstr "Användarens e-post"
358
 
359
- #: contact_form.php:1197
360
  #, fuzzy
361
  msgid ""
362
  "The name of the user who fills the form will be used in the field 'From'."
@@ -364,15 +367,15 @@ msgstr ""
364
  "E-postadressen för användaren som fyller i formuläret kommer att användas i "
365
  "'Från'-fältet."
366
 
367
- #: contact_form.php:1202 contact_form.php:2821 contact_form.php:2853
368
  msgid "Email"
369
  msgstr "E-post"
370
 
371
- #: contact_form.php:1205
372
  msgid "User email"
373
  msgstr "Användarens e-post"
374
 
375
- #: contact_form.php:1207
376
  msgid ""
377
  "The email address of the user who fills the form will be used in the field "
378
  "'From'."
@@ -380,330 +383,287 @@ msgstr ""
380
  "E-postadressen för användaren som fyller i formuläret kommer att användas i "
381
  "'Från'-fältet."
382
 
383
- #: contact_form.php:1210
384
  msgid ""
385
  "If this option is changed, email messages may be moved to the spam folder or "
386
  "email delivery failures may occur."
387
  msgstr ""
388
 
389
- #: contact_form.php:1216
390
  #, fuzzy
391
  msgid "Required symbol"
392
  msgstr "Obligatoriska fält"
393
 
394
- #: contact_form.php:1226
395
  msgid "Fields"
396
  msgstr ""
397
 
398
- #: contact_form.php:1227 contact_form.php:1254 contact_form.php:1281
399
- #: contact_form.php:1301 contact_form.php:1340 contact_form.php:1425
400
  msgid "Used"
401
  msgstr ""
402
 
403
- #: contact_form.php:1228 contact_form.php:1243 contact_form.php:1258
404
- #: contact_form.php:1285 contact_form.php:1305 contact_form.php:1318
405
- #: contact_form.php:1344 contact_form.php:1357 contact_form.php:1381
406
  #, fuzzy
407
  msgid "Required"
408
  msgstr "Obligatoriska fält"
409
 
410
- #: contact_form.php:1230 contact_form.php:1263 contact_form.php:1323
411
- #: contact_form.php:1362 contact_form.php:1386
412
  msgid "Visible"
413
  msgstr ""
414
 
415
- #: contact_form.php:1231 contact_form.php:1267 contact_form.php:1327
416
- #: contact_form.php:1366 contact_form.php:1390
417
  msgid "Disabled for editing"
418
  msgstr ""
419
 
420
- #: contact_form.php:1232 contact_form.php:1291 contact_form.php:1370
421
- #: contact_form.php:1394
422
  msgid "Field's default value"
423
  msgstr ""
424
 
425
- #: contact_form.php:1239
426
  msgid "Department selectbox"
427
  msgstr ""
428
 
429
- #: contact_form.php:1271
430
  msgid "Use User's name as a default value if the user is logged in."
431
  msgstr ""
432
 
433
- #: contact_form.php:1272 contact_form.php:1332
434
  msgid ""
435
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
436
  "in users."
437
  msgstr ""
438
 
439
- #: contact_form.php:1278
440
  msgid "Location selectbox"
441
  msgstr ""
442
 
443
- #: contact_form.php:1298 contact_form.php:1844 contact_form.php:2816
444
- #: contact_form.php:2850
445
- msgid "Address"
446
- msgstr "Adress"
447
-
448
- #: contact_form.php:1314
449
- msgid "Email Address"
450
- msgstr "E-postadress"
451
-
452
- #: contact_form.php:1331
453
  msgid "Use User's email as a default value if the user is logged in."
454
  msgstr ""
455
 
456
- #: contact_form.php:1337
457
- #, fuzzy
458
- msgid "Phone number"
459
- msgstr "Telefonnummer:"
460
-
461
- #: contact_form.php:1353 contact_form.php:1859 contact_form.php:2831
462
- #: contact_form.php:2859
463
- msgid "Subject"
464
- msgstr "Ämne"
465
-
466
- #: contact_form.php:1377 contact_form.php:1863 contact_form.php:2834
467
- #: contact_form.php:2861
468
- msgid "Message"
469
- msgstr "Meddelande"
470
-
471
- #: contact_form.php:1418
472
  msgid "Attachment block"
473
  msgstr "Bilageblock"
474
 
475
- #: contact_form.php:1420
476
  msgid "Users can attach the following file formats"
477
  msgstr "Användare kan bifoga filer av följande format"
478
 
479
- #: contact_form.php:1438
480
  msgid "Add to the form"
481
  msgstr ""
482
 
483
- #: contact_form.php:1443
484
  #, fuzzy
485
  msgid "Tips below the Attachment"
486
  msgstr "Visa förklaringar under bilageblocket"
487
 
488
- #: contact_form.php:1452
489
  #, fuzzy
490
  msgid "'Send me a copy' block"
491
  msgstr "Skicka mig en kopia-block"
492
 
493
- #: contact_form.php:1464
494
- #, fuzzy
495
- msgid "Activate Subscriber"
496
- msgstr "Aktiverade tillägg"
497
-
498
- #: contact_form.php:1468
499
- msgid "Download Subscriber"
500
- msgstr ""
501
-
502
- #: contact_form.php:1477
503
- #, fuzzy
504
- msgid "Activate Captcha"
505
- msgstr "Aktivera captcha"
506
-
507
- #: contact_form.php:1481
508
- #, fuzzy
509
- msgid "Download Captcha"
510
- msgstr "Hämta captcha"
511
-
512
- #: contact_form.php:1491
513
  msgid "Agreement checkbox"
514
  msgstr ""
515
 
516
- #: contact_form.php:1491
517
  msgid "Required checkbox for submitting the form"
518
  msgstr ""
519
 
520
- #: contact_form.php:1492
521
  msgid "Optional checkbox"
522
  msgstr ""
523
 
524
- #: contact_form.php:1492
525
  msgid "Optional checkbox, the results of which will be displayed in email"
526
  msgstr ""
527
 
528
- #: contact_form.php:1513
529
  msgid "Delete an attachment file from the server after the email is sent"
530
  msgstr ""
531
 
532
- #: contact_form.php:1519
533
  msgid "Email in HTML format sending"
534
  msgstr ""
535
 
536
- #: contact_form.php:1523
537
  msgid "Display additional info in the email"
538
  msgstr "Visa ytterligare information i meddelandet"
539
 
540
- #: contact_form.php:1529
541
  #, fuzzy
542
  msgid "Sent from (IP address)"
543
  msgstr "Skickat från (ip-adress)"
544
 
545
- #: contact_form.php:1529
546
  #, fuzzy
547
  msgid "Example: Sent from (IP address):\t127.0.0.1"
548
  msgstr "Skickat från (ip-adress)"
549
 
550
- #: contact_form.php:1530 contact_form.php:2783 contact_form.php:2785
551
  msgid "Date/Time"
552
  msgstr "Datum/Tid"
553
 
554
- #: contact_form.php:1530
555
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
556
  msgstr ""
557
 
558
- #: contact_form.php:1531 contact_form.php:2789 contact_form.php:2791
559
  msgid "Sent from (referer)"
560
  msgstr "Skickat från (referer)"
561
 
562
- #: contact_form.php:1531
563
  msgid ""
564
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
565
  msgstr ""
566
 
567
- #: contact_form.php:1532 contact_form.php:2795 contact_form.php:2797
568
  msgid "Using (user agent)"
569
  msgstr "Använder (user agent)"
570
 
571
- #: contact_form.php:1532
572
  msgid ""
573
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
574
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
575
  msgstr ""
576
 
577
- #: contact_form.php:1537
578
  msgid "Language settings for the field names in the form"
579
  msgstr "Språkinställningar för etikettnamn in formuläret"
580
 
581
- #: contact_form.php:1546
582
  msgid "Add a language"
583
  msgstr "Lägg till ett språk"
584
 
585
- #: contact_form.php:1550
586
  msgid "Change the names of the contact form fields and error messages"
587
  msgstr "Ändra etikett för fälten i kontaktformuläret och felmeddelanden"
588
 
589
- #: contact_form.php:1555 contact_form.php:1642 contact_form.php:1887
590
- #: contact_form.php:1892 contact_form.php:1902 contact_form.php:1907
591
- #: contact_form.php:1912 contact_form.php:1917 contact_form.php:1927
592
- #: contact_form.php:1932 contact_form.php:1941 contact_form.php:1955
593
- #: contact_form.php:1960 contact_form.php:1965
594
  msgid "Default"
595
  msgstr "Standard"
596
 
597
- #: contact_form.php:1563 contact_form.php:1597
598
  msgid "click to expand/hide the list"
599
  msgstr ""
600
 
601
- #: contact_form.php:1572 contact_form.php:1606
602
  #, fuzzy
603
  msgid "Tips below the Attachment block"
604
  msgstr "Visa förklaringar under bilageblocket"
605
 
606
- #: contact_form.php:1575 contact_form.php:1609
607
  msgid "Error message for the Name field"
608
  msgstr "Felmeddelande för namnfältet"
609
 
610
- #: contact_form.php:1576 contact_form.php:1610
611
  msgid "Error message for the Address field"
612
  msgstr "Felmeddelande för adressfältet"
613
 
614
- #: contact_form.php:1577 contact_form.php:1611
615
  msgid "Error message for the Email field"
616
  msgstr "Felmeddelande för e-postadressfältet"
617
 
618
- #: contact_form.php:1578 contact_form.php:1612
619
  msgid "Error message for the Phone field"
620
  msgstr "Felmeddelande för telefonfältet"
621
 
622
- #: contact_form.php:1579 contact_form.php:1613
623
  msgid "Error message for the Subject field"
624
  msgstr "Felmeddelande for ämnesfältet"
625
 
626
- #: contact_form.php:1580 contact_form.php:1614
627
  msgid "Error message for the Message field"
628
  msgstr "Felmeddelande för meddelandefältet"
629
 
630
- #: contact_form.php:1581 contact_form.php:1615
631
  msgid "Error message about the file type for the Attachment field"
632
  msgstr "Felmeddelande för filformat i bilagefältet"
633
 
634
- #: contact_form.php:1582 contact_form.php:1616
635
  msgid ""
636
  "Error message while uploading a file for the Attachment field to the server"
637
  msgstr "Felmeddelande för uppladdning av fil till bilagefältet på servern"
638
 
639
- #: contact_form.php:1583 contact_form.php:1617
640
  msgid "Error message while moving the file for the Attachment field"
641
  msgstr "Felmeddelande för flytt av fil till bilagefältet"
642
 
643
- #: contact_form.php:1584 contact_form.php:1618
644
  msgid "Error message when file size limit for the Attachment field is exceeded"
645
  msgstr "Felmeddelande för max filstorlek i bilagefältet "
646
 
647
- #: contact_form.php:1585 contact_form.php:1619
648
  msgid "Error message for the Captcha field"
649
  msgstr "Felmeddelande för CAPTCHA"
650
 
651
- #: contact_form.php:1586 contact_form.php:1620
652
  msgid "Error message for the whole form"
653
  msgstr "Felmeddelande för formuläret"
654
 
655
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
656
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
657
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
658
- #: contact_form.php:3179
659
  msgid "Use shortcode"
660
  msgstr "Använd kortkod"
661
 
662
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
663
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
664
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
665
- #: contact_form.php:3179
666
  msgid "for this language"
667
  msgstr "för detta språk"
668
 
669
- #: contact_form.php:1633
670
  #, fuzzy
671
  msgid "Use the changed names of the contact form fields in the email"
672
  msgstr "Ändra etikett för fälten i kontaktformuläret och felmeddelanden"
673
 
674
- #: contact_form.php:1639
675
  msgid "Action after email is sent"
676
  msgstr "Åtgärd efter meddelande skickats"
677
 
678
- #: contact_form.php:1641
679
  msgid "Display text"
680
  msgstr "Visa text"
681
 
682
- #: contact_form.php:1650 contact_form.php:1660
683
  msgid "Text"
684
  msgstr "Text"
685
 
686
- #: contact_form.php:1671
687
  msgid "Redirect to the page"
688
  msgstr "Omdirigera till sida"
689
 
690
- #: contact_form.php:1672
691
  msgid "Url"
692
  msgstr "Url"
693
 
694
- #: contact_form.php:1683
695
  msgid "Add field 'Reply-To' to the email header"
696
  msgstr ""
697
 
698
- #: contact_form.php:1685
699
  msgid "Field 'Reply-To' will be initialized by user email"
700
  msgstr ""
701
 
702
- #: contact_form.php:1689
703
  msgid "Auto Response"
704
  msgstr ""
705
 
706
- #: contact_form.php:1693
707
  #, php-format
708
  msgid ""
709
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -711,261 +671,312 @@ msgid ""
711
  "name."
712
  msgstr ""
713
 
714
- #: contact_form.php:1718 contact_form.php:2213
715
  msgid "Save Changes"
716
  msgstr "Spara ändringar"
717
 
718
- #: contact_form.php:1731
719
  #, php-format
720
  msgid ""
721
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
722
  msgstr ""
723
 
724
- #: contact_form.php:1744
 
 
 
 
 
 
 
 
 
725
  msgid "One column"
726
  msgstr ""
727
 
728
- #: contact_form.php:1747
729
  msgid "Two columns"
730
  msgstr ""
731
 
732
- #: contact_form.php:1756 contact_form.php:1775 contact_form.php:1793
733
- #: contact_form.php:1808
734
  msgid "Left"
735
  msgstr ""
736
 
737
- #: contact_form.php:1759 contact_form.php:1781 contact_form.php:1796
738
- #: contact_form.php:1814
739
  msgid "Right"
740
  msgstr ""
741
 
742
- #: contact_form.php:1771
743
  msgid "Form align"
744
  msgstr ""
745
 
746
- #: contact_form.php:1778 contact_form.php:1811
747
  msgid "Center"
748
  msgstr ""
749
 
750
- #: contact_form.php:1786
751
  #, fuzzy
752
  msgid "Labels position"
753
  msgstr "Skicka-knapp"
754
 
755
- #: contact_form.php:1790
756
  msgid "Top"
757
  msgstr ""
758
 
759
- #: contact_form.php:1799
760
  msgid "Bottom"
761
  msgstr ""
762
 
763
- #: contact_form.php:1804
764
  msgid "Labels align"
765
  msgstr ""
766
 
767
- #: contact_form.php:1819
768
  msgid "Errors output"
769
  msgstr "Felutmatning"
770
 
771
- #: contact_form.php:1822
772
  msgid "Display error messages"
773
  msgstr "Visa felmeddelanden"
774
 
775
- #: contact_form.php:1823
776
  msgid "Color of the input field errors."
777
  msgstr "Färg på inmatningfältsfel."
778
 
779
- #: contact_form.php:1824
780
  msgid "Display error messages & color of the input field errors"
781
  msgstr "Visa felmeddelanden & färg på inmatningfältsfel"
782
 
783
- #: contact_form.php:1829
784
  msgid "Add placeholder to the input blocks"
785
  msgstr "Lägg till platshållare på inmatningsblocken"
786
 
787
- #: contact_form.php:1835
788
  msgid "Add tooltips"
789
  msgstr "Visa verktygstips"
790
 
791
- #: contact_form.php:1849
792
  msgid "Email address"
793
  msgstr "E-postadress"
794
 
795
- #: contact_form.php:1854
796
  msgid "Phone Number"
797
  msgstr "Telefonnummer"
798
 
799
- #: contact_form.php:1868
800
- msgid "Attachment"
801
- msgstr "Bifoga fil"
802
-
803
- #: contact_form.php:1880
804
  msgid "Style options"
805
  msgstr "Stilalternativ"
806
 
807
- #: contact_form.php:1884
808
  msgid "Text color"
809
  msgstr "Textfärg"
810
 
811
- #: contact_form.php:1889
812
  msgid "Label text color"
813
  msgstr "Etikett-textfärg"
814
 
815
- #: contact_form.php:1894
816
  msgid "Placeholder color"
817
  msgstr "Platshållarfärg"
818
 
819
- #: contact_form.php:1899
820
  msgid "Errors color"
821
  msgstr "Felfärg"
822
 
823
- #: contact_form.php:1904
824
  msgid "Error text color"
825
  msgstr "Feltextfärg"
826
 
827
- #: contact_form.php:1909
828
  msgid "Background color of the input field errors"
829
  msgstr "Bakgrundsfärg på inmatningfältsfel"
830
 
831
- #: contact_form.php:1914
832
  msgid "Border color of the input field errors"
833
  msgstr "Ramfärg på inmatningfältsfel"
834
 
835
- #: contact_form.php:1919
836
  msgid "Placeholder color of the input field errors"
837
  msgstr "Platshållarfärg för inmatningfältsfel"
838
 
839
- #: contact_form.php:1924
840
  msgid "Input fields"
841
  msgstr "Inmatningsfält"
842
 
843
- #: contact_form.php:1929
844
  msgid "Input fields background color"
845
  msgstr "Inmatningfältsbakgrundsfärg"
846
 
847
- #: contact_form.php:1934
848
  msgid "Text fields color"
849
  msgstr "Textfältfärg"
850
 
851
- #: contact_form.php:1938
852
  msgid "Border width in px, numbers only"
853
  msgstr "Rambredd i px, endast siffror"
854
 
855
- #: contact_form.php:1943 contact_form.php:1967
856
  msgid "Border color"
857
  msgstr "Ramfärg"
858
 
859
- #: contact_form.php:1948
860
  msgid "Submit button"
861
  msgstr "Skicka-knapp"
862
 
863
- #: contact_form.php:1952
864
  msgid "Width in px, numbers only"
865
  msgstr "Bredd i px, endast siffror"
866
 
867
- #: contact_form.php:1957
868
  msgid "Button color"
869
  msgstr "Knappfärg"
870
 
871
- #: contact_form.php:1962
872
  msgid "Button text color"
873
  msgstr "Knapptextfärg"
874
 
875
- #: contact_form.php:1994
876
  #, fuzzy
877
  msgid "Contact Form | Preview"
878
  msgstr "Kontaktformulär Pro | Förhandsgranskning"
879
 
880
- #: contact_form.php:1995
881
  msgid "Drag the necessary field to sort fields."
882
  msgstr ""
883
 
884
- #: contact_form.php:2200
 
885
  msgid ""
886
  "If you would like to add the Contact Form to your website, just copy and "
887
- "paste this shortcode to your post or page or widget:"
888
  msgstr ""
889
  "Om du vill lägga till ett kontaktformulär på din webbplats, kopiera följande "
890
  "kortkod och klistra in den på rätt inlägg, sida eller widget:"
891
 
892
- #: contact_form.php:2297
893
  msgid "Sorry, email message could not be delivered."
894
  msgstr "Tyvärr kunde ditt meddelande inte levereras."
895
 
896
- #: contact_form.php:2777 contact_form.php:2779
897
  msgid "Sent from (ip address)"
898
  msgstr "Skickat från (ip-adress)"
899
 
900
- #: contact_form.php:2804
901
  msgid "Contact from"
902
  msgstr "Kontaktformulär"
903
 
904
- #: contact_form.php:2826 contact_form.php:2856
905
- msgid "Phone"
906
- msgstr "Telefon"
907
-
908
- #: contact_form.php:2837 contact_form.php:2863
909
  msgid "Site"
910
  msgstr "Sajt"
911
 
912
- #: contact_form.php:2956
913
  msgid ""
914
  "If you can see this MIME, it means that the MIME type is not supported by "
915
  "your email client!"
916
  msgstr ""
917
  "Om du kan se detta MIME, så accepterar inte din e-postklient denna MIME-typ!"
918
 
919
- #: contact_form.php:3039
920
  msgid "FAQ"
921
  msgstr "FAQ"
922
 
923
- #: contact_form.php:3040
924
  msgid "Support"
925
  msgstr "Support"
926
 
927
- #: contact_form.php:3089
928
  msgid "Are you sure that you want to delete this language data?"
929
  msgstr "Är du säker på att du vill ta bort språkdatan?"
930
 
931
- #: contact_form.php:3110
932
  #, fuzzy
933
  msgid "Add multiple forms"
934
  msgstr "Visa verktygstips"
935
 
936
- #: contact_form.php:3110
937
  msgid ""
938
  "Install Contact Form Multi plugin to create unlimited number of contact "
939
  "forms."
940
  msgstr ""
941
 
942
- #: contact_form.php:3115
943
  #, fuzzy
944
  msgid "Learn more"
945
  msgstr "Läs mer"
946
 
947
- #: contact_form.php:3320
948
  msgid "Close notice"
949
  msgstr ""
950
 
951
- #: contact_form.php:3325
952
  msgid "allows to store your messages to the database."
953
  msgstr ""
954
 
955
- #: contact_form.php:3326
956
  msgid "Manage messages that have been sent from your website."
957
  msgstr ""
958
 
959
- #: contact_form.php:3384
960
  #, fuzzy
961
  msgid "Contact form"
962
  msgstr "Kontaktformulär"
963
 
964
- #: contact_form.php:3397 contact_form.php:3407
965
  #, fuzzy
966
  msgid "Language"
967
  msgstr "Lägg till ett språk"
968
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
969
  #~ msgid "To send mail you can use the php mail function"
970
  #~ msgstr "Du kan använda php-funktionen för att skicka e-post"
971
 
@@ -1023,10 +1034,6 @@ msgstr "Lägg till ett språk"
1023
  #~ msgid "If there is something wrong about it, please contact us"
1024
  #~ msgstr "Om du har några frågor, kontakta oss via"
1025
 
1026
- #, fuzzy
1027
- #~ msgid "the setting page"
1028
- #~ msgstr "Extra inställningar"
1029
-
1030
  #~ msgid "Extra settings"
1031
  #~ msgstr "Extra inställningar"
1032
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-12 17:21+0300\n"
6
+ "PO-Revision-Date: 2016-07-12 17:21+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Martin Tonek, Joakim Lindskog, Maarten van den Driest "
9
  "<joakim@limewoodmedia.com, maarten@vandendriest.com>\n"
17
  "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: contact_form.php:37 contact_form.php:1118
21
  msgid "Contact Form Settings"
22
  msgstr "Kontaktformulärinställningar"
23
 
25
  msgid "Contact Form"
26
  msgstr "Kontaktformulär"
27
 
28
+ #: contact_form.php:167 contact_form.php:1294 contact_form.php:1353
29
+ #: contact_form.php:1746 contact_form.php:1784 contact_form.php:2033
30
+ #: contact_form.php:3113 contact_form.php:3159
31
+ msgid "Name"
32
+ msgstr "Namn"
33
 
34
+ #: contact_form.php:168 contact_form.php:1400 contact_form.php:1747
35
+ #: contact_form.php:1785 contact_form.php:2038 contact_form.php:3120
36
+ #: contact_form.php:3165
37
+ msgid "Address"
38
+ msgstr "Adress"
39
 
40
+ #: contact_form.php:169 contact_form.php:1416 contact_form.php:1748
41
+ #: contact_form.php:1786
42
+ msgid "Email Address"
43
+ msgstr "E-postadress"
44
 
45
+ #: contact_form.php:170 contact_form.php:1439 contact_form.php:1749
46
+ #: contact_form.php:1787
47
+ #, fuzzy
48
+ msgid "Phone number"
49
  msgstr "Telefonnummer:"
50
 
51
+ #: contact_form.php:171 contact_form.php:1455 contact_form.php:1750
52
+ #: contact_form.php:1788 contact_form.php:2053 contact_form.php:3131
53
+ #: contact_form.php:3174
54
+ msgid "Subject"
55
+ msgstr "Ämne"
56
 
57
+ #: contact_form.php:172 contact_form.php:1479 contact_form.php:1751
58
+ #: contact_form.php:1789 contact_form.php:2057 contact_form.php:3136
59
+ #: contact_form.php:3178
60
+ msgid "Message"
61
+ msgstr "Meddelande"
62
 
63
+ #: contact_form.php:173 contact_form.php:1752 contact_form.php:1790
64
+ #: contact_form.php:2062
65
+ msgid "Attachment"
66
+ msgstr "Bifoga fil"
67
 
68
+ #: contact_form.php:174
69
  msgid ""
70
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
71
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
73
  "Stödda filformat: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, "
74
  "PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
75
 
76
+ #: contact_form.php:175 contact_form.php:1754 contact_form.php:1792
77
  msgid "Send me a copy"
78
  msgstr "Skicka mig en kopia"
79
 
80
+ #: contact_form.php:176 contact_form.php:1755 contact_form.php:1793
81
  msgid "Submit"
82
  msgstr "Skicka"
83
 
84
+ #: contact_form.php:177
85
  msgid "Your name is required."
86
  msgstr "Ditt namn krävs."
87
 
88
+ #: contact_form.php:178
89
  msgid "Address is required."
90
  msgstr "Adress krävs."
91
 
92
+ #: contact_form.php:179
93
  msgid "A valid email address is required."
94
  msgstr "En giltig e-postadress krävs."
95
 
96
+ #: contact_form.php:180
97
  msgid "Phone number is required."
98
  msgstr "Telefonnummer krävs."
99
 
100
+ #: contact_form.php:181
101
  msgid "Subject is required."
102
  msgstr "Ämne krävs."
103
 
104
+ #: contact_form.php:182
105
  msgid "Message text is required."
106
  msgstr "Meddelande krävs."
107
 
108
+ #: contact_form.php:183
109
  msgid "File format is not valid."
110
  msgstr "Bilageformaten är inte giltigt."
111
 
112
+ #: contact_form.php:184
113
  msgid "File upload error."
114
  msgstr "Filuppladdningsfel."
115
 
116
+ #: contact_form.php:185
117
  msgid "The file could not be uploaded."
118
  msgstr "Filen kunde inte laddas upp."
119
 
120
+ #: contact_form.php:186
121
  msgid "This file is too large."
122
  msgstr "Filen är för stor."
123
 
124
+ #: contact_form.php:187
125
  msgid "Please fill out the CAPTCHA."
126
  msgstr "Var god fyll i CAPTCHA."
127
 
128
+ #: contact_form.php:188
129
  msgid "Please make corrections below and try again."
130
  msgstr "Var god gör korrigeringar nedan och försök igen."
131
 
132
+ #: contact_form.php:190
133
  msgid "Thank you for contacting us."
134
  msgstr "Tack för att du kontaktade oss."
135
 
136
+ #: contact_form.php:824 contact_form.php:1076
137
  msgid "Settings saved."
138
  msgstr "Inställningar sparades."
139
 
140
+ #: contact_form.php:1021
141
  msgid ""
142
  "Email 'FROM' field option was changed, which may cause email messages being "
143
  "moved to the spam folder or email delivery failures."
144
  msgstr ""
145
 
146
+ #: contact_form.php:1031
147
  msgid ""
148
  "If the 'Redirect to page' option is selected then the URL field should be in "
149
  "the following format"
151
  "Om alternativet 'Omdirigera till sida' väljs ska URL-fältet fyllas i med "
152
  "följande format"
153
 
154
+ #: contact_form.php:1038
155
  #, fuzzy
156
  msgid "Such user does not exist."
157
  msgstr "Användaren finns inte. Inställningarna sparades inte."
158
 
159
+ #: contact_form.php:1048
160
  #, fuzzy
161
  msgid ""
162
  "Please enter a valid email address in the 'Use this email address' field."
164
  "Var god ange en giltig e-postadress i 'FRÅN'-fältet. Inställningarna "
165
  "sparades inte."
166
 
167
+ #: contact_form.php:1056
168
  #, fuzzy
169
  msgid "Please enter a valid email address in the 'FROM' field."
170
  msgstr ""
171
  "Var god ange en giltig e-postadress i 'FRÅN'-fältet. Inställningarna "
172
  "sparades inte."
173
 
174
+ #: contact_form.php:1078
175
  #, fuzzy
176
  msgid "Settings are not saved."
177
  msgstr "Inställningar sparades."
178
 
179
+ #: contact_form.php:1115
180
  msgid "All plugin settings were restored."
181
  msgstr ""
182
 
183
+ #: contact_form.php:1120
184
  msgid "How to Use Step-by-step Instruction"
185
  msgstr ""
186
 
187
+ #: contact_form.php:1123 contact_form.php:3351 contact_form.php:3365
188
  msgid "Settings"
189
  msgstr "Inställningar"
190
 
191
+ #: contact_form.php:1124
192
  #, fuzzy
193
  msgid "Additional settings"
194
  msgstr "Ytterligare alternativ"
195
 
196
+ #: contact_form.php:1125
197
  msgid "Appearance"
198
  msgstr ""
199
 
200
+ #: contact_form.php:1126
201
  msgid "Custom code"
202
  msgstr ""
203
 
204
+ #: contact_form.php:1127
205
  msgid "Go PRO"
206
  msgstr ""
207
 
208
+ #: contact_form.php:1136
209
+ msgid "Notice"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
210
  msgstr ""
211
 
212
+ #: contact_form.php:1140
213
  msgid "NEW_FORM"
214
  msgstr ""
215
 
216
+ #: contact_form.php:1141
217
  msgid ""
218
  "If you want to create multiple contact forms, please install the Contact "
219
  "Form Multi plugin."
220
  msgstr ""
221
 
222
+ #: contact_form.php:1150
223
  #, fuzzy, php-format
224
  msgid ""
225
  "If you would like to add a Contact Form to your page or post, please use %s "
228
  "Om du vill lägga till ett kontaktformulär på din webbplats, kopiera följande "
229
  "kortkod och klistra in den på rätt inlägg, sida eller widget:"
230
 
231
+ #: contact_form.php:1156
232
  #, php-format
233
  msgid ""
234
  "You can add the Contact Form to your page or post by clicking on %s button "
237
  "language."
238
  msgstr ""
239
 
240
+ #: contact_form.php:1165
241
  msgid ""
242
  "If you leave the fields empty, the messages will be sent to the email "
243
  "address specified during registration."
245
  "Om du lämnar fälten tomma kommer meddelandena att skickas till den e-"
246
  "postadressen som angavs under registreringen."
247
 
248
+ #: contact_form.php:1168
249
+ #, fuzzy
250
+ msgid "The user's email address"
251
  msgstr "Användarens e-postadress:"
252
 
253
+ #: contact_form.php:1172
254
  #, fuzzy
255
  msgid "Select a username"
256
  msgstr "Skapa ett användarnamn"
257
 
258
+ #: contact_form.php:1185
259
+ #, fuzzy
260
  msgid ""
261
+ "Select a username of the person who should get the messages from the contact "
262
  "form."
263
  msgstr ""
264
  "Ange ett användarnamn på den användare som ska få meddelanden från "
265
  "kontaktformuläret."
266
 
267
+ #: contact_form.php:1189
268
+ #, fuzzy
269
+ msgid "Use this email address"
270
  msgstr "Använd den här e-postadressen:"
271
 
272
+ #: contact_form.php:1193
273
+ #, fuzzy
274
+ msgid "Enter the email address for receiving messages"
275
  msgstr "Ange en e-postadress som ska användas för att ta emot meddelanden."
276
 
277
+ #: contact_form.php:1200 contact_form.php:1663 contact_form.php:1873
278
+ #: contact_form.php:1961 contact_form.php:3446
279
  msgid "Close"
280
  msgstr ""
281
 
282
+ #: contact_form.php:1204
283
+ msgid "Add department selectbox to the contact form"
284
  msgstr ""
285
 
286
+ #: contact_form.php:1212 contact_form.php:1672 contact_form.php:1892
287
+ #: contact_form.php:2167
288
  msgid "If you upgrade to Pro version all your settings will be saved."
289
  msgstr ""
290
 
291
+ #: contact_form.php:1219 contact_form.php:1509 contact_form.php:1677
292
+ #: contact_form.php:1899 contact_form.php:2174
293
  msgid "Unlock premium options by upgrading to Pro version"
294
  msgstr ""
295
 
296
+ #: contact_form.php:1222 contact_form.php:1512 contact_form.php:1680
297
+ #: contact_form.php:1902 contact_form.php:2177 contact_form.php:3672
298
  msgid "Learn More"
299
  msgstr ""
300
 
301
+ #: contact_form.php:1230
302
  msgid "Save emails to the database"
303
  msgstr ""
304
 
305
+ #: contact_form.php:1241 contact_form.php:1255 contact_form.php:1262
306
  msgid "Using"
307
  msgstr ""
308
 
309
+ #: contact_form.php:1247 contact_form.php:1572 contact_form.php:1605
310
+ #: contact_form.php:1640
311
+ msgid "Please activate the appropriate option on"
312
+ msgstr ""
313
+
314
+ #: contact_form.php:1250 contact_form.php:1575 contact_form.php:1608
315
+ #: contact_form.php:1643
316
  #, fuzzy
317
+ msgid "settings page"
318
+ msgstr "Extra inställningar"
319
 
320
+ #: contact_form.php:1256 contact_form.php:1581 contact_form.php:1615
321
+ #: contact_form.php:1651
322
  #, fuzzy
323
  msgid "Activate"
324
  msgstr "Aktivera captcha"
325
 
326
+ #: contact_form.php:1263 contact_form.php:1587 contact_form.php:1621
327
+ #: contact_form.php:1656
328
  msgid "Download"
329
  msgstr "Hämta"
330
 
331
+ #: contact_form.php:1275
332
+ msgid "Sending method"
333
+ msgstr ""
334
 
335
+ #: contact_form.php:1280
336
  msgid "Wp-mail"
337
  msgstr "Wp-mail"
338
 
339
+ #: contact_form.php:1282
340
  #, fuzzy
341
  msgid "You can use the Wordpress wp_mail function for mailing"
342
  msgstr "Du kan använda wp_mail-funktionen för att skicka e-post"
343
 
344
+ #: contact_form.php:1285
345
  msgid "Mail"
346
  msgstr "E-post"
347
 
348
+ #: contact_form.php:1287
349
  #, fuzzy
350
  msgid "You can use the PHP mail function for mailing"
351
  msgstr "Du kan använda wp_mail-funktionen för att skicka e-post"
352
 
353
+ #: contact_form.php:1292
354
  msgid "'FROM' field"
355
  msgstr ""
356
 
357
+ #: contact_form.php:1297
 
 
 
 
 
358
  #, fuzzy
359
  msgid "User name"
360
  msgstr "Användarens e-post"
361
 
362
+ #: contact_form.php:1299
363
  #, fuzzy
364
  msgid ""
365
  "The name of the user who fills the form will be used in the field 'From'."
367
  "E-postadressen för användaren som fyller i formuläret kommer att användas i "
368
  "'Från'-fältet."
369
 
370
+ #: contact_form.php:1304 contact_form.php:3126 contact_form.php:3170
371
  msgid "Email"
372
  msgstr "E-post"
373
 
374
+ #: contact_form.php:1307
375
  msgid "User email"
376
  msgstr "Användarens e-post"
377
 
378
+ #: contact_form.php:1309
379
  msgid ""
380
  "The email address of the user who fills the form will be used in the field "
381
  "'From'."
383
  "E-postadressen för användaren som fyller i formuläret kommer att användas i "
384
  "'Från'-fältet."
385
 
386
+ #: contact_form.php:1312
387
  msgid ""
388
  "If this option is changed, email messages may be moved to the spam folder or "
389
  "email delivery failures may occur."
390
  msgstr ""
391
 
392
+ #: contact_form.php:1318
393
  #, fuzzy
394
  msgid "Required symbol"
395
  msgstr "Obligatoriska fält"
396
 
397
+ #: contact_form.php:1328
398
  msgid "Fields"
399
  msgstr ""
400
 
401
+ #: contact_form.php:1329 contact_form.php:1356 contact_form.php:1383
402
+ #: contact_form.php:1403 contact_form.php:1442 contact_form.php:1527
403
  msgid "Used"
404
  msgstr ""
405
 
406
+ #: contact_form.php:1330 contact_form.php:1345 contact_form.php:1360
407
+ #: contact_form.php:1387 contact_form.php:1407 contact_form.php:1420
408
+ #: contact_form.php:1446 contact_form.php:1459 contact_form.php:1483
409
  #, fuzzy
410
  msgid "Required"
411
  msgstr "Obligatoriska fält"
412
 
413
+ #: contact_form.php:1332 contact_form.php:1365 contact_form.php:1425
414
+ #: contact_form.php:1464 contact_form.php:1488
415
  msgid "Visible"
416
  msgstr ""
417
 
418
+ #: contact_form.php:1333 contact_form.php:1369 contact_form.php:1429
419
+ #: contact_form.php:1468 contact_form.php:1492
420
  msgid "Disabled for editing"
421
  msgstr ""
422
 
423
+ #: contact_form.php:1334 contact_form.php:1393 contact_form.php:1472
424
+ #: contact_form.php:1496
425
  msgid "Field's default value"
426
  msgstr ""
427
 
428
+ #: contact_form.php:1341
429
  msgid "Department selectbox"
430
  msgstr ""
431
 
432
+ #: contact_form.php:1373
433
  msgid "Use User's name as a default value if the user is logged in."
434
  msgstr ""
435
 
436
+ #: contact_form.php:1374 contact_form.php:1434
437
  msgid ""
438
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
439
  "in users."
440
  msgstr ""
441
 
442
+ #: contact_form.php:1380
443
  msgid "Location selectbox"
444
  msgstr ""
445
 
446
+ #: contact_form.php:1433
 
 
 
 
 
 
 
 
 
447
  msgid "Use User's email as a default value if the user is logged in."
448
  msgstr ""
449
 
450
+ #: contact_form.php:1520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
451
  msgid "Attachment block"
452
  msgstr "Bilageblock"
453
 
454
+ #: contact_form.php:1522
455
  msgid "Users can attach the following file formats"
456
  msgstr "Användare kan bifoga filer av följande format"
457
 
458
+ #: contact_form.php:1540
459
  msgid "Add to the form"
460
  msgstr ""
461
 
462
+ #: contact_form.php:1545
463
  #, fuzzy
464
  msgid "Tips below the Attachment"
465
  msgstr "Visa förklaringar under bilageblocket"
466
 
467
+ #: contact_form.php:1554
468
  #, fuzzy
469
  msgid "'Send me a copy' block"
470
  msgstr "Skicka mig en kopia-block"
471
 
472
+ #: contact_form.php:1667
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
473
  msgid "Agreement checkbox"
474
  msgstr ""
475
 
476
+ #: contact_form.php:1667
477
  msgid "Required checkbox for submitting the form"
478
  msgstr ""
479
 
480
+ #: contact_form.php:1668
481
  msgid "Optional checkbox"
482
  msgstr ""
483
 
484
+ #: contact_form.php:1668
485
  msgid "Optional checkbox, the results of which will be displayed in email"
486
  msgstr ""
487
 
488
+ #: contact_form.php:1689
489
  msgid "Delete an attachment file from the server after the email is sent"
490
  msgstr ""
491
 
492
+ #: contact_form.php:1695
493
  msgid "Email in HTML format sending"
494
  msgstr ""
495
 
496
+ #: contact_form.php:1699
497
  msgid "Display additional info in the email"
498
  msgstr "Visa ytterligare information i meddelandet"
499
 
500
+ #: contact_form.php:1705
501
  #, fuzzy
502
  msgid "Sent from (IP address)"
503
  msgstr "Skickat från (ip-adress)"
504
 
505
+ #: contact_form.php:1705
506
  #, fuzzy
507
  msgid "Example: Sent from (IP address):\t127.0.0.1"
508
  msgstr "Skickat från (ip-adress)"
509
 
510
+ #: contact_form.php:1706 contact_form.php:3075 contact_form.php:3077
511
  msgid "Date/Time"
512
  msgstr "Datum/Tid"
513
 
514
+ #: contact_form.php:1706
515
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
516
  msgstr ""
517
 
518
+ #: contact_form.php:1707 contact_form.php:3081 contact_form.php:3083
519
  msgid "Sent from (referer)"
520
  msgstr "Skickat från (referer)"
521
 
522
+ #: contact_form.php:1707
523
  msgid ""
524
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
525
  msgstr ""
526
 
527
+ #: contact_form.php:1708 contact_form.php:3087 contact_form.php:3089
528
  msgid "Using (user agent)"
529
  msgstr "Använder (user agent)"
530
 
531
+ #: contact_form.php:1708
532
  msgid ""
533
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
534
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
535
  msgstr ""
536
 
537
+ #: contact_form.php:1713
538
  msgid "Language settings for the field names in the form"
539
  msgstr "Språkinställningar för etikettnamn in formuläret"
540
 
541
+ #: contact_form.php:1722
542
  msgid "Add a language"
543
  msgstr "Lägg till ett språk"
544
 
545
+ #: contact_form.php:1726
546
  msgid "Change the names of the contact form fields and error messages"
547
  msgstr "Ändra etikett för fälten i kontaktformuläret och felmeddelanden"
548
 
549
+ #: contact_form.php:1731 contact_form.php:1827 contact_form.php:2081
550
+ #: contact_form.php:2086 contact_form.php:2096 contact_form.php:2101
551
+ #: contact_form.php:2106 contact_form.php:2111 contact_form.php:2121
552
+ #: contact_form.php:2126 contact_form.php:2135 contact_form.php:2149
553
+ #: contact_form.php:2154 contact_form.php:2159
554
  msgid "Default"
555
  msgstr "Standard"
556
 
557
+ #: contact_form.php:1744 contact_form.php:1782
558
  msgid "click to expand/hide the list"
559
  msgstr ""
560
 
561
+ #: contact_form.php:1753 contact_form.php:1791
562
  #, fuzzy
563
  msgid "Tips below the Attachment block"
564
  msgstr "Visa förklaringar under bilageblocket"
565
 
566
+ #: contact_form.php:1756 contact_form.php:1794
567
  msgid "Error message for the Name field"
568
  msgstr "Felmeddelande för namnfältet"
569
 
570
+ #: contact_form.php:1757 contact_form.php:1795
571
  msgid "Error message for the Address field"
572
  msgstr "Felmeddelande för adressfältet"
573
 
574
+ #: contact_form.php:1758 contact_form.php:1796
575
  msgid "Error message for the Email field"
576
  msgstr "Felmeddelande för e-postadressfältet"
577
 
578
+ #: contact_form.php:1759 contact_form.php:1797
579
  msgid "Error message for the Phone field"
580
  msgstr "Felmeddelande för telefonfältet"
581
 
582
+ #: contact_form.php:1760 contact_form.php:1798
583
  msgid "Error message for the Subject field"
584
  msgstr "Felmeddelande for ämnesfältet"
585
 
586
+ #: contact_form.php:1761 contact_form.php:1799
587
  msgid "Error message for the Message field"
588
  msgstr "Felmeddelande för meddelandefältet"
589
 
590
+ #: contact_form.php:1762 contact_form.php:1800
591
  msgid "Error message about the file type for the Attachment field"
592
  msgstr "Felmeddelande för filformat i bilagefältet"
593
 
594
+ #: contact_form.php:1763 contact_form.php:1801
595
  msgid ""
596
  "Error message while uploading a file for the Attachment field to the server"
597
  msgstr "Felmeddelande för uppladdning av fil till bilagefältet på servern"
598
 
599
+ #: contact_form.php:1764 contact_form.php:1802
600
  msgid "Error message while moving the file for the Attachment field"
601
  msgstr "Felmeddelande för flytt av fil till bilagefältet"
602
 
603
+ #: contact_form.php:1765 contact_form.php:1803
604
  msgid "Error message when file size limit for the Attachment field is exceeded"
605
  msgstr "Felmeddelande för max filstorlek i bilagefältet "
606
 
607
+ #: contact_form.php:1766 contact_form.php:1804
608
  msgid "Error message for the Captcha field"
609
  msgstr "Felmeddelande för CAPTCHA"
610
 
611
+ #: contact_form.php:1767 contact_form.php:1805
612
  msgid "Error message for the whole form"
613
  msgstr "Felmeddelande för formuläret"
614
 
615
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
616
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
617
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
618
+ #: contact_form.php:3516
619
  msgid "Use shortcode"
620
  msgstr "Använd kortkod"
621
 
622
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
623
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
624
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
625
+ #: contact_form.php:3516
626
  msgid "for this language"
627
  msgstr "för detta språk"
628
 
629
+ #: contact_form.php:1818
630
  #, fuzzy
631
  msgid "Use the changed names of the contact form fields in the email"
632
  msgstr "Ändra etikett för fälten i kontaktformuläret och felmeddelanden"
633
 
634
+ #: contact_form.php:1824
635
  msgid "Action after email is sent"
636
  msgstr "Åtgärd efter meddelande skickats"
637
 
638
+ #: contact_form.php:1826
639
  msgid "Display text"
640
  msgstr "Visa text"
641
 
642
+ #: contact_form.php:1840 contact_form.php:1854
643
  msgid "Text"
644
  msgstr "Text"
645
 
646
+ #: contact_form.php:1865
647
  msgid "Redirect to the page"
648
  msgstr "Omdirigera till sida"
649
 
650
+ #: contact_form.php:1866
651
  msgid "Url"
652
  msgstr "Url"
653
 
654
+ #: contact_form.php:1877
655
  msgid "Add field 'Reply-To' to the email header"
656
  msgstr ""
657
 
658
+ #: contact_form.php:1879
659
  msgid "Field 'Reply-To' will be initialized by user email"
660
  msgstr ""
661
 
662
+ #: contact_form.php:1883
663
  msgid "Auto Response"
664
  msgstr ""
665
 
666
+ #: contact_form.php:1887
667
  #, php-format
668
  msgid ""
669
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
671
  "name."
672
  msgstr ""
673
 
674
+ #: contact_form.php:1912 contact_form.php:2398
675
  msgid "Save Changes"
676
  msgstr "Spara ändringar"
677
 
678
+ #: contact_form.php:1925
679
  #, php-format
680
  msgid ""
681
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
682
  msgstr ""
683
 
684
+ #: contact_form.php:1925 contact_form.php:1934
685
+ msgid "Form layout"
686
+ msgstr ""
687
+
688
+ #: contact_form.php:1925 contact_form.php:1946
689
+ #, fuzzy
690
+ msgid "Submit position"
691
+ msgstr "Skicka-knapp"
692
+
693
+ #: contact_form.php:1938
694
  msgid "One column"
695
  msgstr ""
696
 
697
+ #: contact_form.php:1941
698
  msgid "Two columns"
699
  msgstr ""
700
 
701
+ #: contact_form.php:1950 contact_form.php:1969 contact_form.php:1987
702
+ #: contact_form.php:2002
703
  msgid "Left"
704
  msgstr ""
705
 
706
+ #: contact_form.php:1953 contact_form.php:1975 contact_form.php:1990
707
+ #: contact_form.php:2008
708
  msgid "Right"
709
  msgstr ""
710
 
711
+ #: contact_form.php:1965
712
  msgid "Form align"
713
  msgstr ""
714
 
715
+ #: contact_form.php:1972 contact_form.php:2005
716
  msgid "Center"
717
  msgstr ""
718
 
719
+ #: contact_form.php:1980
720
  #, fuzzy
721
  msgid "Labels position"
722
  msgstr "Skicka-knapp"
723
 
724
+ #: contact_form.php:1984
725
  msgid "Top"
726
  msgstr ""
727
 
728
+ #: contact_form.php:1993
729
  msgid "Bottom"
730
  msgstr ""
731
 
732
+ #: contact_form.php:1998
733
  msgid "Labels align"
734
  msgstr ""
735
 
736
+ #: contact_form.php:2013
737
  msgid "Errors output"
738
  msgstr "Felutmatning"
739
 
740
+ #: contact_form.php:2016
741
  msgid "Display error messages"
742
  msgstr "Visa felmeddelanden"
743
 
744
+ #: contact_form.php:2017
745
  msgid "Color of the input field errors."
746
  msgstr "Färg på inmatningfältsfel."
747
 
748
+ #: contact_form.php:2018
749
  msgid "Display error messages & color of the input field errors"
750
  msgstr "Visa felmeddelanden & färg på inmatningfältsfel"
751
 
752
+ #: contact_form.php:2023
753
  msgid "Add placeholder to the input blocks"
754
  msgstr "Lägg till platshållare på inmatningsblocken"
755
 
756
+ #: contact_form.php:2029
757
  msgid "Add tooltips"
758
  msgstr "Visa verktygstips"
759
 
760
+ #: contact_form.php:2043
761
  msgid "Email address"
762
  msgstr "E-postadress"
763
 
764
+ #: contact_form.php:2048 contact_form.php:3142 contact_form.php:3183
765
  msgid "Phone Number"
766
  msgstr "Telefonnummer"
767
 
768
+ #: contact_form.php:2074
 
 
 
 
769
  msgid "Style options"
770
  msgstr "Stilalternativ"
771
 
772
+ #: contact_form.php:2078
773
  msgid "Text color"
774
  msgstr "Textfärg"
775
 
776
+ #: contact_form.php:2083
777
  msgid "Label text color"
778
  msgstr "Etikett-textfärg"
779
 
780
+ #: contact_form.php:2088
781
  msgid "Placeholder color"
782
  msgstr "Platshållarfärg"
783
 
784
+ #: contact_form.php:2093
785
  msgid "Errors color"
786
  msgstr "Felfärg"
787
 
788
+ #: contact_form.php:2098
789
  msgid "Error text color"
790
  msgstr "Feltextfärg"
791
 
792
+ #: contact_form.php:2103
793
  msgid "Background color of the input field errors"
794
  msgstr "Bakgrundsfärg på inmatningfältsfel"
795
 
796
+ #: contact_form.php:2108
797
  msgid "Border color of the input field errors"
798
  msgstr "Ramfärg på inmatningfältsfel"
799
 
800
+ #: contact_form.php:2113
801
  msgid "Placeholder color of the input field errors"
802
  msgstr "Platshållarfärg för inmatningfältsfel"
803
 
804
+ #: contact_form.php:2118
805
  msgid "Input fields"
806
  msgstr "Inmatningsfält"
807
 
808
+ #: contact_form.php:2123
809
  msgid "Input fields background color"
810
  msgstr "Inmatningfältsbakgrundsfärg"
811
 
812
+ #: contact_form.php:2128
813
  msgid "Text fields color"
814
  msgstr "Textfältfärg"
815
 
816
+ #: contact_form.php:2132
817
  msgid "Border width in px, numbers only"
818
  msgstr "Rambredd i px, endast siffror"
819
 
820
+ #: contact_form.php:2137 contact_form.php:2161
821
  msgid "Border color"
822
  msgstr "Ramfärg"
823
 
824
+ #: contact_form.php:2142
825
  msgid "Submit button"
826
  msgstr "Skicka-knapp"
827
 
828
+ #: contact_form.php:2146
829
  msgid "Width in px, numbers only"
830
  msgstr "Bredd i px, endast siffror"
831
 
832
+ #: contact_form.php:2151
833
  msgid "Button color"
834
  msgstr "Knappfärg"
835
 
836
+ #: contact_form.php:2156
837
  msgid "Button text color"
838
  msgstr "Knapptextfärg"
839
 
840
+ #: contact_form.php:2188
841
  #, fuzzy
842
  msgid "Contact Form | Preview"
843
  msgstr "Kontaktformulär Pro | Förhandsgranskning"
844
 
845
+ #: contact_form.php:2189
846
  msgid "Drag the necessary field to sort fields."
847
  msgstr ""
848
 
849
+ #: contact_form.php:2385
850
+ #, fuzzy
851
  msgid ""
852
  "If you would like to add the Contact Form to your website, just copy and "
853
+ "paste this shortcode to your post or page or widget"
854
  msgstr ""
855
  "Om du vill lägga till ett kontaktformulär på din webbplats, kopiera följande "
856
  "kortkod och klistra in den på rätt inlägg, sida eller widget:"
857
 
858
+ #: contact_form.php:2501
859
  msgid "Sorry, email message could not be delivered."
860
  msgstr "Tyvärr kunde ditt meddelande inte levereras."
861
 
862
+ #: contact_form.php:3069 contact_form.php:3071
863
  msgid "Sent from (ip address)"
864
  msgstr "Skickat från (ip-adress)"
865
 
866
+ #: contact_form.php:3099
867
  msgid "Contact from"
868
  msgstr "Kontaktformulär"
869
 
870
+ #: contact_form.php:3104 contact_form.php:3153
 
 
 
 
871
  msgid "Site"
872
  msgstr "Sajt"
873
 
874
+ #: contact_form.php:3283
875
  msgid ""
876
  "If you can see this MIME, it means that the MIME type is not supported by "
877
  "your email client!"
878
  msgstr ""
879
  "Om du kan se detta MIME, så accepterar inte din e-postklient denna MIME-typ!"
880
 
881
+ #: contact_form.php:3366
882
  msgid "FAQ"
883
  msgstr "FAQ"
884
 
885
+ #: contact_form.php:3367
886
  msgid "Support"
887
  msgstr "Support"
888
 
889
+ #: contact_form.php:3416
890
  msgid "Are you sure that you want to delete this language data?"
891
  msgstr "Är du säker på att du vill ta bort språkdatan?"
892
 
893
+ #: contact_form.php:3437
894
  #, fuzzy
895
  msgid "Add multiple forms"
896
  msgstr "Visa verktygstips"
897
 
898
+ #: contact_form.php:3437
899
  msgid ""
900
  "Install Contact Form Multi plugin to create unlimited number of contact "
901
  "forms."
902
  msgstr ""
903
 
904
+ #: contact_form.php:3442
905
  #, fuzzy
906
  msgid "Learn more"
907
  msgstr "Läs mer"
908
 
909
+ #: contact_form.php:3663
910
  msgid "Close notice"
911
  msgstr ""
912
 
913
+ #: contact_form.php:3668
914
  msgid "allows to store your messages to the database."
915
  msgstr ""
916
 
917
+ #: contact_form.php:3669
918
  msgid "Manage messages that have been sent from your website."
919
  msgstr ""
920
 
921
+ #: contact_form.php:3727
922
  #, fuzzy
923
  msgid "Contact form"
924
  msgstr "Kontaktformulär"
925
 
926
+ #: contact_form.php:3740 contact_form.php:3750
927
  #, fuzzy
928
  msgid "Language"
929
  msgstr "Lägg till ett språk"
930
 
931
+ #~ msgid "Name:"
932
+ #~ msgstr "Namn:"
933
+
934
+ #~ msgid "Address:"
935
+ #~ msgstr "Adress:"
936
+
937
+ #~ msgid "Email Address:"
938
+ #~ msgstr "E-postadress:"
939
+
940
+ #~ msgid "Phone number:"
941
+ #~ msgstr "Telefonnummer:"
942
+
943
+ #~ msgid "Subject:"
944
+ #~ msgstr "Ämne:"
945
+
946
+ #~ msgid "Message:"
947
+ #~ msgstr "Meddelande:"
948
+
949
+ #~ msgid "Attachment:"
950
+ #~ msgstr "Bifogad fil:"
951
+
952
+ #, fuzzy
953
+ #~ msgid ""
954
+ #~ "Please enable JavaScript to add language in the contact form, change the "
955
+ #~ "names of the contact form fields and error messages."
956
+ #~ msgstr "Ändra etikett för fälten i kontaktformuläret och felmeddelanden"
957
+
958
+ #~ msgid "What to use?"
959
+ #~ msgstr "Vad ska användas?"
960
+
961
+ #, fuzzy
962
+ #~ msgid "Using Contact Form to DB by BestWebSoft"
963
+ #~ msgstr "Kontaktformulär Pro"
964
+
965
+ #, fuzzy
966
+ #~ msgid "Activate Subscriber"
967
+ #~ msgstr "Aktiverade tillägg"
968
+
969
+ #, fuzzy
970
+ #~ msgid "Activate Captcha"
971
+ #~ msgstr "Aktivera captcha"
972
+
973
+ #, fuzzy
974
+ #~ msgid "Download Captcha"
975
+ #~ msgstr "Hämta captcha"
976
+
977
+ #~ msgid "Phone"
978
+ #~ msgstr "Telefon"
979
+
980
  #~ msgid "To send mail you can use the php mail function"
981
  #~ msgstr "Du kan använda php-funktionen för att skicka e-post"
982
 
1034
  #~ msgid "If there is something wrong about it, please contact us"
1035
  #~ msgstr "Om du har några frågor, kontakta oss via"
1036
 
 
 
 
 
1037
  #~ msgid "Extra settings"
1038
  #~ msgstr "Extra inställningar"
1039
 
languages/contact-form-plugin-tr.mo CHANGED
Binary file
languages/contact-form-plugin-tr.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: 2016-06-27 16:32+0300\n"
6
- "PO-Revision-Date: 2016-06-27 16:32+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Can Atasever <webmaster@canatasever.com>\n"
9
  "Language: ca_ES\n"
@@ -16,7 +16,7 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:37 contact_form.php:1030
20
  msgid "Contact Form Settings"
21
  msgstr "İletişim Formu Ayarları"
22
 
@@ -24,35 +24,46 @@ msgstr "İletişim Formu Ayarları"
24
  msgid "Contact Form"
25
  msgstr "İletişim Formu"
26
 
27
- #: contact_form.php:165 contact_form.php:1565 contact_form.php:1599
28
- msgid "Name:"
29
- msgstr "İsim:"
 
 
30
 
31
- #: contact_form.php:166 contact_form.php:1566 contact_form.php:1600
32
- msgid "Address:"
 
 
33
  msgstr "Adres:"
34
 
35
- #: contact_form.php:167 contact_form.php:1567 contact_form.php:1601
36
- msgid "Email Address:"
37
- msgstr "E-posta Adresi:"
 
38
 
39
- #: contact_form.php:168 contact_form.php:1568 contact_form.php:1602
40
- msgid "Phone number:"
41
- msgstr "Telefon Numarası:"
 
42
 
43
- #: contact_form.php:169 contact_form.php:1569 contact_form.php:1603
44
- msgid "Subject:"
45
- msgstr "Başlık:"
 
 
46
 
47
- #: contact_form.php:170 contact_form.php:1570 contact_form.php:1604
48
- msgid "Message:"
49
- msgstr "Mesaj:"
 
 
50
 
51
- #: contact_form.php:171 contact_form.php:1571 contact_form.php:1605
52
- msgid "Attachment:"
53
- msgstr "Eklenecek Dosya:"
 
54
 
55
- #: contact_form.php:172
56
  msgid ""
57
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
58
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -61,89 +72,89 @@ msgstr ""
61
  "BMP, AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, "
62
  "PPT."
63
 
64
- #: contact_form.php:173 contact_form.php:1573 contact_form.php:1607
65
  msgid "Send me a copy"
66
  msgstr "Bana bir kopyasını gönder"
67
 
68
- #: contact_form.php:174 contact_form.php:1574 contact_form.php:1608
69
  msgid "Submit"
70
  msgstr "Gönder"
71
 
72
- #: contact_form.php:175
73
  msgid "Your name is required."
74
  msgstr "İsminizi yazmanız gerekiyor."
75
 
76
- #: contact_form.php:176
77
  msgid "Address is required."
78
  msgstr "Adresinizi yazmanız gerekiyor."
79
 
80
- #: contact_form.php:177
81
  msgid "A valid email address is required."
82
  msgstr "Geçerli bir e-posta adresi yazmanız gerekiyor."
83
 
84
- #: contact_form.php:178
85
  msgid "Phone number is required."
86
  msgstr "Telefon numaranızı yazmanız gerekiyor."
87
 
88
- #: contact_form.php:179
89
  msgid "Subject is required."
90
  msgstr "Başlık kısmını doldurmanız gerekiyor."
91
 
92
- #: contact_form.php:180
93
  msgid "Message text is required."
94
  msgstr "Mesaj kısmını doldurmanız gerekiyor."
95
 
96
- #: contact_form.php:181
97
  msgid "File format is not valid."
98
  msgstr "Dosya uzantısı uygun değil."
99
 
100
- #: contact_form.php:182
101
  msgid "File upload error."
102
  msgstr "Dosya yükleme hatası."
103
 
104
- #: contact_form.php:183
105
  msgid "The file could not be uploaded."
106
  msgstr "Dosya yüklenemedi."
107
 
108
- #: contact_form.php:184
109
  msgid "This file is too large."
110
  msgstr "Dosyanın boyutu çok büyük."
111
 
112
- #: contact_form.php:185
113
  msgid "Please fill out the CAPTCHA."
114
  msgstr "Lütfen CAPTCHA kısmını doldurun."
115
 
116
- #: contact_form.php:186
117
  msgid "Please make corrections below and try again."
118
  msgstr "Lütfen aşağıdaki düzeltmeleri yapın ve yeniden deneyin."
119
 
120
- #: contact_form.php:188
121
  msgid "Thank you for contacting us."
122
  msgstr "İletişime geçtiğiniz için teşekkürler."
123
 
124
- #: contact_form.php:688 contact_form.php:998
125
  msgid "Settings saved."
126
  msgstr "Ayarlar kaydedildi."
127
 
128
- #: contact_form.php:940
129
  msgid ""
130
  "Email 'FROM' field option was changed, which may cause email messages being "
131
  "moved to the spam folder or email delivery failures."
132
  msgstr ""
133
 
134
- #: contact_form.php:950
135
  msgid ""
136
  "If the 'Redirect to page' option is selected then the URL field should be in "
137
  "the following format"
138
  msgstr ""
139
  "Eğer 'Sayfaya Yönlendir' seçeneği seçilmişse, URL alanı şu formatta olmalı:"
140
 
141
- #: contact_form.php:957
142
  #, fuzzy
143
  msgid "Such user does not exist."
144
  msgstr "Böyle bir kullanıcı adı bulunamadı. Ayarlar kaydedilmedi."
145
 
146
- #: contact_form.php:967
147
  #, fuzzy
148
  msgid ""
149
  "Please enter a valid email address in the 'Use this email address' field."
@@ -151,80 +162,63 @@ msgstr ""
151
  "Lütfen 'GÖNDERİCİ' alanına geçerli bir e-posta adresi girin. Ayarlar "
152
  "kaydedilmedi."
153
 
154
- #: contact_form.php:975
155
  #, fuzzy
156
  msgid "Please enter a valid email address in the 'FROM' field."
157
  msgstr ""
158
  "Lütfen 'GÖNDERİCİ' alanına geçerli bir e-posta adresi girin. Ayarlar "
159
  "kaydedilmedi."
160
 
161
- #: contact_form.php:1000
162
  #, fuzzy
163
  msgid "Settings are not saved."
164
  msgstr "Ayarlar kaydedildi."
165
 
166
- #: contact_form.php:1027
167
  msgid "All plugin settings were restored."
168
  msgstr ""
169
 
170
- #: contact_form.php:1032
171
  msgid "How to Use Step-by-step Instruction"
172
  msgstr ""
173
 
174
- #: contact_form.php:1035 contact_form.php:3024 contact_form.php:3038
175
  msgid "Settings"
176
  msgstr "Ayarlar"
177
 
178
- #: contact_form.php:1036
179
  #, fuzzy
180
  msgid "Additional settings"
181
  msgstr "Ek seçenekler"
182
 
183
- #: contact_form.php:1037
184
  msgid "Appearance"
185
  msgstr ""
186
 
187
- #: contact_form.php:1038
188
  msgid "Custom code"
189
  msgstr ""
190
 
191
- #: contact_form.php:1039
192
  msgid "Go PRO"
193
  msgstr ""
194
 
195
- #: contact_form.php:1045
196
  #, fuzzy
197
- msgid ""
198
- "Please enable JavaScript to add language in the contact form, change the "
199
- "names of the contact form fields and error messages."
200
- msgstr ""
201
- "Yukarıdan eklenen dile göre İletişim Formu alanlarının isimlerini ve hata "
202
- "mesajlarını değiştir"
203
-
204
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1740
205
- msgid "Form layout"
206
- msgstr ""
207
-
208
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1752
209
- #, fuzzy
210
- msgid "Submit position"
211
- msgstr "Gönderme butonu"
212
-
213
- #: contact_form.php:1057
214
- msgid "Notice:"
215
  msgstr "Bilgi Notu:"
216
 
217
- #: contact_form.php:1061
218
  msgid "NEW_FORM"
219
  msgstr ""
220
 
221
- #: contact_form.php:1062
222
  msgid ""
223
  "If you want to create multiple contact forms, please install the Contact "
224
  "Form Multi plugin."
225
  msgstr ""
226
 
227
- #: contact_form.php:1071
228
  #, fuzzy, php-format
229
  msgid ""
230
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -233,7 +227,7 @@ msgstr ""
233
  "Eğer sitenize iletişim formu eklemek istiyorsanız, şu kısa kodu yazınıza, "
234
  "sayfanıza ya da bileşen alanınıza eklemeniz yeterli."
235
 
236
- #: contact_form.php:1077
237
  #, php-format
238
  msgid ""
239
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -242,7 +236,7 @@ msgid ""
242
  "language."
243
  msgstr ""
244
 
245
- #: contact_form.php:1086
246
  msgid ""
247
  "If you leave the fields empty, the messages will be sent to the email "
248
  "address specified during registration."
@@ -250,315 +244,281 @@ msgstr ""
250
  "Eğer aşağıdaki alanları boş bırakırsanız, kullanıcının mesajı kayıt "
251
  "sırasında girilen e-posta adresine gönderilecek."
252
 
253
- #: contact_form.php:1089
254
- msgid "The user's email address:"
 
255
  msgstr "Kullanıcının e-posta adresine:"
256
 
257
- #: contact_form.php:1093
258
  #, fuzzy
259
  msgid "Select a username"
260
  msgstr "Kullanıcı oluştur"
261
 
262
- #: contact_form.php:1106
 
263
  msgid ""
264
- "Enter a username of the person who should get the messages from the contact "
265
  "form."
266
  msgstr ""
267
  "İletişim Formu ile gönderilen mesajı almasını istediğiniz kullanıcının adını "
268
  "girin."
269
 
270
- #: contact_form.php:1110
271
- msgid "Use this email address:"
 
272
  msgstr "Mesaj bu e-posta adresine gönderilsin:"
273
 
274
- #: contact_form.php:1114
275
- msgid "Enter the email address you want the messages forwarded to."
 
276
  msgstr "Mesajın gönderilmesini istediğiniz e-posta adresini girin."
277
 
278
- #: contact_form.php:1121 contact_form.php:1487 contact_form.php:1679
279
- #: contact_form.php:1767 contact_form.php:3119
280
  msgid "Close"
281
  msgstr ""
282
 
283
- #: contact_form.php:1125
284
- msgid "Add department selectbox to the contact form:"
 
285
  msgstr "İletişim Formu'na departman seçenekleri ekleyin"
286
 
287
- #: contact_form.php:1133 contact_form.php:1496 contact_form.php:1698
288
- #: contact_form.php:1973
289
  msgid "If you upgrade to Pro version all your settings will be saved."
290
  msgstr "Ücretli sürümü satın alırsanız tüm değişiklikler kaydedilecek."
291
 
292
- #: contact_form.php:1140 contact_form.php:1407 contact_form.php:1501
293
- #: contact_form.php:1705 contact_form.php:1980
294
  msgid "Unlock premium options by upgrading to Pro version"
295
  msgstr ""
296
 
297
- #: contact_form.php:1143 contact_form.php:1410 contact_form.php:1504
298
- #: contact_form.php:1708 contact_form.php:1983 contact_form.php:3329
299
  msgid "Learn More"
300
  msgstr ""
301
 
302
- #: contact_form.php:1151
303
  msgid "Save emails to the database"
304
  msgstr "E-postaları veritabanına kaydet"
305
 
306
- #: contact_form.php:1156
307
  msgid "Using"
308
  msgstr ""
309
 
310
- #: contact_form.php:1159 contact_form.php:1163
 
 
 
 
 
 
311
  #, fuzzy
312
- msgid "Using Contact Form to DB by BestWebSoft"
313
- msgstr "Contact Form to DB eklentisi ile,"
314
 
315
- #: contact_form.php:1159
 
316
  #, fuzzy
317
  msgid "Activate"
318
  msgstr "CAPTCHA'yı etkinleştir"
319
 
320
- #: contact_form.php:1163
 
321
  msgid "Download"
322
  msgstr "Descarregar"
323
 
324
- #: contact_form.php:1173
325
- msgid "What to use?"
326
- msgstr "Hangi yöntem?"
327
 
328
- #: contact_form.php:1178
329
  msgid "Wp-mail"
330
  msgstr "Wp-Mail"
331
 
332
- #: contact_form.php:1180
333
  #, fuzzy
334
  msgid "You can use the Wordpress wp_mail function for mailing"
335
  msgstr "E-postanın gönderimi için wp_mail fonksiyonunu kullanabilirsiniz."
336
 
337
- #: contact_form.php:1183
338
  msgid "Mail"
339
  msgstr "Mail"
340
 
341
- #: contact_form.php:1185
342
  #, fuzzy
343
  msgid "You can use the PHP mail function for mailing"
344
  msgstr "E-postanın gönderimi için wp_mail fonksiyonunu kullanabilirsiniz."
345
 
346
- #: contact_form.php:1190
347
  msgid "'FROM' field"
348
  msgstr ""
349
 
350
- #: contact_form.php:1192 contact_form.php:1251 contact_form.php:1839
351
- #: contact_form.php:2810 contact_form.php:2846
352
- msgid "Name"
353
- msgstr "İsim"
354
-
355
- #: contact_form.php:1195
356
  msgid "User name"
357
  msgstr "Kullanıcı adı"
358
 
359
- #: contact_form.php:1197
360
  msgid ""
361
  "The name of the user who fills the form will be used in the field 'From'."
362
  msgstr "'Gönderici' alanında formu dolduran ziyaretçinin adı kullanılacak."
363
 
364
- #: contact_form.php:1202 contact_form.php:2821 contact_form.php:2853
365
  msgid "Email"
366
  msgstr "E-Posta Adresi"
367
 
368
- #: contact_form.php:1205
369
  msgid "User email"
370
  msgstr "Kullanıcı e-postası"
371
 
372
- #: contact_form.php:1207
373
  msgid ""
374
  "The email address of the user who fills the form will be used in the field "
375
  "'From'."
376
  msgstr ""
377
  "'Gönderici' alanında formu dolduran kullanıcının e-posta adresi gösterilecek."
378
 
379
- #: contact_form.php:1210
380
  msgid ""
381
  "If this option is changed, email messages may be moved to the spam folder or "
382
  "email delivery failures may occur."
383
  msgstr ""
384
 
385
- #: contact_form.php:1216
386
  msgid "Required symbol"
387
  msgstr "Zorunlu işareti"
388
 
389
- #: contact_form.php:1226
390
  msgid "Fields"
391
  msgstr "Alanlar"
392
 
393
- #: contact_form.php:1227 contact_form.php:1254 contact_form.php:1281
394
- #: contact_form.php:1301 contact_form.php:1340 contact_form.php:1425
395
  msgid "Used"
396
  msgstr "Kullanılsın mı?"
397
 
398
- #: contact_form.php:1228 contact_form.php:1243 contact_form.php:1258
399
- #: contact_form.php:1285 contact_form.php:1305 contact_form.php:1318
400
- #: contact_form.php:1344 contact_form.php:1357 contact_form.php:1381
401
  msgid "Required"
402
  msgstr "Zorunlu"
403
 
404
- #: contact_form.php:1230 contact_form.php:1263 contact_form.php:1323
405
- #: contact_form.php:1362 contact_form.php:1386
406
  msgid "Visible"
407
  msgstr "Görünür"
408
 
409
- #: contact_form.php:1231 contact_form.php:1267 contact_form.php:1327
410
- #: contact_form.php:1366 contact_form.php:1390
411
  msgid "Disabled for editing"
412
  msgstr "Düzenlemeye kapatılmış"
413
 
414
- #: contact_form.php:1232 contact_form.php:1291 contact_form.php:1370
415
- #: contact_form.php:1394
416
  msgid "Field's default value"
417
  msgstr "Alanın varsayılan değeri"
418
 
419
- #: contact_form.php:1239
420
  msgid "Department selectbox"
421
  msgstr ""
422
 
423
- #: contact_form.php:1271
424
  msgid "Use User's name as a default value if the user is logged in."
425
  msgstr ""
426
 
427
- #: contact_form.php:1272 contact_form.php:1332
428
  msgid ""
429
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
430
  "in users."
431
  msgstr ""
432
 
433
- #: contact_form.php:1278
434
  msgid "Location selectbox"
435
  msgstr ""
436
 
437
- #: contact_form.php:1298 contact_form.php:1844 contact_form.php:2816
438
- #: contact_form.php:2850
439
- msgid "Address"
440
- msgstr "Adres:"
441
-
442
- #: contact_form.php:1314
443
- msgid "Email Address"
444
- msgstr "E-posta Adresi"
445
-
446
- #: contact_form.php:1331
447
  msgid "Use User's email as a default value if the user is logged in."
448
  msgstr ""
449
 
450
- #: contact_form.php:1337
451
- msgid "Phone number"
452
- msgstr "Telefon numarası"
453
-
454
- #: contact_form.php:1353 contact_form.php:1859 contact_form.php:2831
455
- #: contact_form.php:2859
456
- msgid "Subject"
457
- msgstr "Başlık"
458
-
459
- #: contact_form.php:1377 contact_form.php:1863 contact_form.php:2834
460
- #: contact_form.php:2861
461
- msgid "Message"
462
- msgstr "Mesaj"
463
-
464
- #: contact_form.php:1418
465
  msgid "Attachment block"
466
  msgstr "Dosya Yükleme"
467
 
468
- #: contact_form.php:1420
469
  msgid "Users can attach the following file formats"
470
  msgstr "Kullanıcılar şu uzantılardaki dosyaları yükleyebilirler"
471
 
472
- #: contact_form.php:1438
473
  msgid "Add to the form"
474
  msgstr "Forma ekle"
475
 
476
- #: contact_form.php:1443
477
  msgid "Tips below the Attachment"
478
  msgstr "Dosya yükleme alanı altında açıklama"
479
 
480
- #: contact_form.php:1452
481
  msgid "'Send me a copy' block"
482
  msgstr "'Mesajın bir kopyasını e-posta adresime gönder' seçeneği"
483
 
484
- #: contact_form.php:1464
485
- #, fuzzy
486
- msgid "Activate Subscriber"
487
- msgstr "Plugin activat"
488
-
489
- #: contact_form.php:1468
490
- msgid "Download Subscriber"
491
- msgstr ""
492
-
493
- #: contact_form.php:1477
494
- #, fuzzy
495
- msgid "Activate Captcha"
496
- msgstr "CAPTCHA'yı etkinleştir"
497
-
498
- #: contact_form.php:1481
499
- #, fuzzy
500
- msgid "Download Captcha"
501
- msgstr "CAPTCHA'yı yükle"
502
-
503
- #: contact_form.php:1491
504
  msgid "Agreement checkbox"
505
  msgstr "Onay kutusu"
506
 
507
- #: contact_form.php:1491
508
  msgid "Required checkbox for submitting the form"
509
  msgstr "Formu göndermek için işaretlenmesi gereken onay kutusu"
510
 
511
- #: contact_form.php:1492
512
  msgid "Optional checkbox"
513
  msgstr "İsteğe bağlı onay kutusu"
514
 
515
- #: contact_form.php:1492
516
  msgid "Optional checkbox, the results of which will be displayed in email"
517
  msgstr "E-posta'da gösterilecek, isteğe bağlı onay kutusu"
518
 
519
- #: contact_form.php:1513
520
  msgid "Delete an attachment file from the server after the email is sent"
521
  msgstr "E-posta gönderildikten sonra eklenen dosyayı sunucudan sil"
522
 
523
- #: contact_form.php:1519
524
  msgid "Email in HTML format sending"
525
  msgstr "E-postayı HTML formatında gönder"
526
 
527
- #: contact_form.php:1523
528
  msgid "Display additional info in the email"
529
  msgstr "E-postanın içerisinde ek bilgiler göster"
530
 
531
- #: contact_form.php:1529
532
  #, fuzzy
533
  msgid "Sent from (IP address)"
534
  msgstr "Gönderilen (IP Adresi)"
535
 
536
- #: contact_form.php:1529
537
  msgid "Example: Sent from (IP address):\t127.0.0.1"
538
  msgstr "Örnek: Şu IP adresinden gönderildi:\t127.0.0.1"
539
 
540
- #: contact_form.php:1530 contact_form.php:2783 contact_form.php:2785
541
  msgid "Date/Time"
542
  msgstr "Tarih/Zaman"
543
 
544
- #: contact_form.php:1530
545
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
546
  msgstr "Örnek: Tarih/Saat:\t19 Ağustos, 2013 - 8:50 ÖS"
547
 
548
- #: contact_form.php:1531 contact_form.php:2789 contact_form.php:2791
549
  msgid "Sent from (referer)"
550
  msgstr "Gönderilen (referer)"
551
 
552
- #: contact_form.php:1531
553
  msgid ""
554
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
555
  msgstr "Örnek: Gönderici:\thttp://bestwebsoft.com/contacts/contact-us/"
556
 
557
- #: contact_form.php:1532 contact_form.php:2795 contact_form.php:2797
558
  msgid "Using (user agent)"
559
  msgstr "Şununla: "
560
 
561
- #: contact_form.php:1532
562
  msgid ""
563
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
564
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -566,139 +526,139 @@ msgstr ""
566
  "Örnek: Şunu kullanarak:\tMozilla/5.0 (Windows NT 6.2; WOW64) "
567
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
568
 
569
- #: contact_form.php:1537
570
  msgid "Language settings for the field names in the form"
571
  msgstr "Formdaki alan adları için dil ayarları 8aşağıdaki iki seçenek için)"
572
 
573
- #: contact_form.php:1546
574
  msgid "Add a language"
575
  msgstr "Bir dil ekle"
576
 
577
- #: contact_form.php:1550
578
  msgid "Change the names of the contact form fields and error messages"
579
  msgstr ""
580
  "Yukarıdan eklenen dile göre İletişim Formu alanlarının isimlerini ve hata "
581
  "mesajlarını değiştir"
582
 
583
- #: contact_form.php:1555 contact_form.php:1642 contact_form.php:1887
584
- #: contact_form.php:1892 contact_form.php:1902 contact_form.php:1907
585
- #: contact_form.php:1912 contact_form.php:1917 contact_form.php:1927
586
- #: contact_form.php:1932 contact_form.php:1941 contact_form.php:1955
587
- #: contact_form.php:1960 contact_form.php:1965
588
  msgid "Default"
589
  msgstr "Varsayılan"
590
 
591
- #: contact_form.php:1563 contact_form.php:1597
592
  msgid "click to expand/hide the list"
593
  msgstr ""
594
 
595
- #: contact_form.php:1572 contact_form.php:1606
596
  msgid "Tips below the Attachment block"
597
  msgstr "Dosya yükleme alanı altında gösterilecek açıklamalar"
598
 
599
- #: contact_form.php:1575 contact_form.php:1609
600
  msgid "Error message for the Name field"
601
  msgstr "'İsim' alanı için hata mesajı"
602
 
603
- #: contact_form.php:1576 contact_form.php:1610
604
  msgid "Error message for the Address field"
605
  msgstr "'Adres' alanı için hata mesajı"
606
 
607
- #: contact_form.php:1577 contact_form.php:1611
608
  msgid "Error message for the Email field"
609
  msgstr "'E-posta adresş' alanı için hata mesajı"
610
 
611
- #: contact_form.php:1578 contact_form.php:1612
612
  msgid "Error message for the Phone field"
613
  msgstr "'Telefon numarası' alanı için hata mesajı"
614
 
615
- #: contact_form.php:1579 contact_form.php:1613
616
  msgid "Error message for the Subject field"
617
  msgstr "'Başlık' alanı için hata mesajı"
618
 
619
- #: contact_form.php:1580 contact_form.php:1614
620
  msgid "Error message for the Message field"
621
  msgstr "'Mesaj' alanı için hata mesajı"
622
 
623
- #: contact_form.php:1581 contact_form.php:1615
624
  msgid "Error message about the file type for the Attachment field"
625
  msgstr "Yüklenen dosyanın uzantısıyla ilgili hata mesajı"
626
 
627
- #: contact_form.php:1582 contact_form.php:1616
628
  msgid ""
629
  "Error message while uploading a file for the Attachment field to the server"
630
  msgstr "Dosya yüklenirken oluşan hata için hata mesajı"
631
 
632
- #: contact_form.php:1583 contact_form.php:1617
633
  msgid "Error message while moving the file for the Attachment field"
634
  msgstr "Yüklenecek dosya seçilirken oluşan hata için hata mesajı"
635
 
636
- #: contact_form.php:1584 contact_form.php:1618
637
  msgid "Error message when file size limit for the Attachment field is exceeded"
638
  msgstr "En fazla dosya yükleme boyutu sınırı açıldığında oluşan hata mesajı"
639
 
640
- #: contact_form.php:1585 contact_form.php:1619
641
  msgid "Error message for the Captcha field"
642
  msgstr "CAPTCHA alanı için hata mesajı"
643
 
644
- #: contact_form.php:1586 contact_form.php:1620
645
  msgid "Error message for the whole form"
646
  msgstr "Formun geneli için hata mesajı"
647
 
648
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
649
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
650
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
651
- #: contact_form.php:3179
652
  msgid "Use shortcode"
653
  msgstr "Kısa kodu kullan"
654
 
655
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
656
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
657
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
658
- #: contact_form.php:3179
659
  msgid "for this language"
660
  msgstr "bu dil için"
661
 
662
- #: contact_form.php:1633
663
  #, fuzzy
664
  msgid "Use the changed names of the contact form fields in the email"
665
  msgstr ""
666
  "Yukarıdan eklenen dile göre İletişim Formu alanlarının isimlerini ve hata "
667
  "mesajlarını değiştir"
668
 
669
- #: contact_form.php:1639
670
  msgid "Action after email is sent"
671
  msgstr "E-posta gönderildikten sonra ne yapılsın?"
672
 
673
- #: contact_form.php:1641
674
  msgid "Display text"
675
  msgstr "Metin göster"
676
 
677
- #: contact_form.php:1650 contact_form.php:1660
678
  msgid "Text"
679
  msgstr "Metin"
680
 
681
- #: contact_form.php:1671
682
  msgid "Redirect to the page"
683
  msgstr "Sayfaya yönlendir"
684
 
685
- #: contact_form.php:1672
686
  msgid "Url"
687
  msgstr "URL"
688
 
689
- #: contact_form.php:1683
690
  msgid "Add field 'Reply-To' to the email header"
691
  msgstr ""
692
 
693
- #: contact_form.php:1685
694
  msgid "Field 'Reply-To' will be initialized by user email"
695
  msgstr ""
696
 
697
- #: contact_form.php:1689
698
  msgid "Auto Response"
699
  msgstr ""
700
 
701
- #: contact_form.php:1693
702
  #, php-format
703
  msgid ""
704
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -706,206 +666,208 @@ msgid ""
706
  "name."
707
  msgstr ""
708
 
709
- #: contact_form.php:1718 contact_form.php:2213
710
  msgid "Save Changes"
711
  msgstr "Değişiklikleri Kaydet"
712
 
713
- #: contact_form.php:1731
714
  #, php-format
715
  msgid ""
716
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
717
  msgstr ""
718
 
719
- #: contact_form.php:1744
 
 
 
 
 
 
 
 
 
720
  msgid "One column"
721
  msgstr ""
722
 
723
- #: contact_form.php:1747
724
  msgid "Two columns"
725
  msgstr ""
726
 
727
- #: contact_form.php:1756 contact_form.php:1775 contact_form.php:1793
728
- #: contact_form.php:1808
729
  msgid "Left"
730
  msgstr ""
731
 
732
- #: contact_form.php:1759 contact_form.php:1781 contact_form.php:1796
733
- #: contact_form.php:1814
734
  msgid "Right"
735
  msgstr ""
736
 
737
- #: contact_form.php:1771
738
  msgid "Form align"
739
  msgstr ""
740
 
741
- #: contact_form.php:1778 contact_form.php:1811
742
  msgid "Center"
743
  msgstr ""
744
 
745
- #: contact_form.php:1786
746
  #, fuzzy
747
  msgid "Labels position"
748
  msgstr "Gönderme butonu"
749
 
750
- #: contact_form.php:1790
751
  msgid "Top"
752
  msgstr ""
753
 
754
- #: contact_form.php:1799
755
  msgid "Bottom"
756
  msgstr ""
757
 
758
- #: contact_form.php:1804
759
  msgid "Labels align"
760
  msgstr ""
761
 
762
- #: contact_form.php:1819
763
  msgid "Errors output"
764
  msgstr "Hata çıktısı"
765
 
766
- #: contact_form.php:1822
767
  msgid "Display error messages"
768
  msgstr "Hata mesajlarını göster"
769
 
770
- #: contact_form.php:1823
771
  msgid "Color of the input field errors."
772
  msgstr "Giriş alanlarının hata rengi"
773
 
774
- #: contact_form.php:1824
775
  msgid "Display error messages & color of the input field errors"
776
  msgstr "Hata mesajlarını ve giriş alanı hata rengini göster"
777
 
778
- #: contact_form.php:1829
779
  msgid "Add placeholder to the input blocks"
780
  msgstr "Giriş alanlarına bilgilendirme notu ekle"
781
 
782
- #: contact_form.php:1835
783
  msgid "Add tooltips"
784
  msgstr "Şunları ekle:"
785
 
786
- #: contact_form.php:1849
787
  msgid "Email address"
788
  msgstr "E-posta adresi"
789
 
790
- #: contact_form.php:1854
791
  msgid "Phone Number"
792
  msgstr "Telefon Numarası"
793
 
794
- #: contact_form.php:1868
795
- msgid "Attachment"
796
- msgstr "Dosya Yükleme"
797
-
798
- #: contact_form.php:1880
799
  msgid "Style options"
800
  msgstr "Tasarım ayarları"
801
 
802
- #: contact_form.php:1884
803
  msgid "Text color"
804
  msgstr "Metin rengi"
805
 
806
- #: contact_form.php:1889
807
  msgid "Label text color"
808
  msgstr "Etiket metninin rengi"
809
 
810
- #: contact_form.php:1894
811
  msgid "Placeholder color"
812
  msgstr "Bilgilendirme notu rengi"
813
 
814
- #: contact_form.php:1899
815
  msgid "Errors color"
816
  msgstr "Hataların renkleri"
817
 
818
- #: contact_form.php:1904
819
  msgid "Error text color"
820
  msgstr "Hata metni rengi"
821
 
822
- #: contact_form.php:1909
823
  msgid "Background color of the input field errors"
824
  msgstr "giriş alanı hataları için arka plan rengi"
825
 
826
- #: contact_form.php:1914
827
  msgid "Border color of the input field errors"
828
  msgstr "Giriş alanı hataları için border rengi"
829
 
830
- #: contact_form.php:1919
831
  msgid "Placeholder color of the input field errors"
832
  msgstr "Giriş alanı hataları için bilgilendirme notu rengi"
833
 
834
- #: contact_form.php:1924
835
  msgid "Input fields"
836
  msgstr "Giriş alanları"
837
 
838
- #: contact_form.php:1929
839
  msgid "Input fields background color"
840
  msgstr "Giriş alanları arka plan rengi"
841
 
842
- #: contact_form.php:1934
843
  msgid "Text fields color"
844
  msgstr "Metin alanlarının rengi"
845
 
846
- #: contact_form.php:1938
847
  msgid "Border width in px, numbers only"
848
  msgstr "Bırder genişliği, piksel cinsinden, sadece sayı"
849
 
850
- #: contact_form.php:1943 contact_form.php:1967
851
  msgid "Border color"
852
  msgstr "Border rengi"
853
 
854
- #: contact_form.php:1948
855
  msgid "Submit button"
856
  msgstr "Gönderme butonu"
857
 
858
  # #: contact_form.php:928
859
- #: contact_form.php:1952
860
  msgid "Width in px, numbers only"
861
  msgstr "Piksel cinsinden genişlik, sadece sayı"
862
 
863
- #: contact_form.php:1957
864
  msgid "Button color"
865
  msgstr "Buton rengi"
866
 
867
- #: contact_form.php:1962
868
  msgid "Button text color"
869
  msgstr "Buton yazı rengi"
870
 
871
- #: contact_form.php:1994
872
  #, fuzzy
873
  msgid "Contact Form | Preview"
874
  msgstr "İletişim Formu PRO | Ön İzleme"
875
 
876
- #: contact_form.php:1995
877
  msgid "Drag the necessary field to sort fields."
878
  msgstr ""
879
 
880
- #: contact_form.php:2200
 
881
  msgid ""
882
  "If you would like to add the Contact Form to your website, just copy and "
883
- "paste this shortcode to your post or page or widget:"
884
  msgstr ""
885
  "Eğer sitenize iletişim formu eklemek istiyorsanız, şu kısa kodu yazınıza, "
886
  "sayfanıza ya da bileşen alanınıza eklemeniz yeterli."
887
 
888
- #: contact_form.php:2297
889
  msgid "Sorry, email message could not be delivered."
890
  msgstr "Üzgünüz, e-posta mesajınız gönderilemedi."
891
 
892
- #: contact_form.php:2777 contact_form.php:2779
893
  msgid "Sent from (ip address)"
894
  msgstr "Gönderilen (IP Adresi)"
895
 
896
- #: contact_form.php:2804
897
  msgid "Contact from"
898
  msgstr "İletişim Formu"
899
 
900
- #: contact_form.php:2826 contact_form.php:2856
901
- msgid "Phone"
902
- msgstr "Telefon"
903
-
904
- #: contact_form.php:2837 contact_form.php:2863
905
  msgid "Site"
906
  msgstr "Website"
907
 
908
- #: contact_form.php:2956
909
  msgid ""
910
  "If you can see this MIME, it means that the MIME type is not supported by "
911
  "your email client!"
@@ -913,57 +875,108 @@ msgstr ""
913
  "Eğer bu MIME'ı görüyorsanız, bu e-posta sunucunuzun MIME'ı desteklemediği "
914
  "anlamına gelir!"
915
 
916
- #: contact_form.php:3039
917
  msgid "FAQ"
918
  msgstr "SSS"
919
 
920
- #: contact_form.php:3040
921
  msgid "Support"
922
  msgstr "Destek"
923
 
924
- #: contact_form.php:3089
925
  msgid "Are you sure that you want to delete this language data?"
926
  msgstr "Bu dile ait verileri silmek istediğinize emin misiniz?"
927
 
928
- #: contact_form.php:3110
929
  #, fuzzy
930
  msgid "Add multiple forms"
931
  msgstr "Forma ekle"
932
 
933
- #: contact_form.php:3110
934
  msgid ""
935
  "Install Contact Form Multi plugin to create unlimited number of contact "
936
  "forms."
937
  msgstr ""
938
 
939
- #: contact_form.php:3115
940
  #, fuzzy
941
  msgid "Learn more"
942
  msgstr "Llegir més"
943
 
944
- #: contact_form.php:3320
945
  msgid "Close notice"
946
  msgstr ""
947
 
948
- #: contact_form.php:3325
949
  #, fuzzy
950
  msgid "allows to store your messages to the database."
951
  msgstr "E-postaları veritabanına kaydet"
952
 
953
- #: contact_form.php:3326
954
  msgid "Manage messages that have been sent from your website."
955
  msgstr ""
956
 
957
- #: contact_form.php:3384
958
  #, fuzzy
959
  msgid "Contact form"
960
  msgstr "İletişim Formu"
961
 
962
- #: contact_form.php:3397 contact_form.php:3407
963
  #, fuzzy
964
  msgid "Language"
965
  msgstr "Bir dil ekle"
966
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
967
  #~ msgid "To send mail you can use the php mail function"
968
  #~ msgstr "E-postanın gönderimi için PHP Mail fonksiyonunu kullanabilirsiniz."
969
 
@@ -1067,10 +1080,6 @@ msgstr "Bir dil ekle"
1067
  #~ "Eğer eklenti hakkında problem tespit ederseniz lütfen bizimle iletişime "
1068
  #~ "geçin"
1069
 
1070
- #, fuzzy
1071
- #~ msgid "the setting page"
1072
- #~ msgstr "Ekstra ayarlar"
1073
-
1074
  #~ msgid "Extra settings"
1075
  #~ msgstr "Ekstra ayarlar"
1076
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-12 17:21+0300\n"
6
+ "PO-Revision-Date: 2016-07-12 17:21+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Can Atasever <webmaster@canatasever.com>\n"
9
  "Language: ca_ES\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: contact_form.php:37 contact_form.php:1118
20
  msgid "Contact Form Settings"
21
  msgstr "İletişim Formu Ayarları"
22
 
24
  msgid "Contact Form"
25
  msgstr "İletişim Formu"
26
 
27
+ #: contact_form.php:167 contact_form.php:1294 contact_form.php:1353
28
+ #: contact_form.php:1746 contact_form.php:1784 contact_form.php:2033
29
+ #: contact_form.php:3113 contact_form.php:3159
30
+ msgid "Name"
31
+ msgstr "İsim"
32
 
33
+ #: contact_form.php:168 contact_form.php:1400 contact_form.php:1747
34
+ #: contact_form.php:1785 contact_form.php:2038 contact_form.php:3120
35
+ #: contact_form.php:3165
36
+ msgid "Address"
37
  msgstr "Adres:"
38
 
39
+ #: contact_form.php:169 contact_form.php:1416 contact_form.php:1748
40
+ #: contact_form.php:1786
41
+ msgid "Email Address"
42
+ msgstr "E-posta Adresi"
43
 
44
+ #: contact_form.php:170 contact_form.php:1439 contact_form.php:1749
45
+ #: contact_form.php:1787
46
+ msgid "Phone number"
47
+ msgstr "Telefon numarası"
48
 
49
+ #: contact_form.php:171 contact_form.php:1455 contact_form.php:1750
50
+ #: contact_form.php:1788 contact_form.php:2053 contact_form.php:3131
51
+ #: contact_form.php:3174
52
+ msgid "Subject"
53
+ msgstr "Başlık"
54
 
55
+ #: contact_form.php:172 contact_form.php:1479 contact_form.php:1751
56
+ #: contact_form.php:1789 contact_form.php:2057 contact_form.php:3136
57
+ #: contact_form.php:3178
58
+ msgid "Message"
59
+ msgstr "Mesaj"
60
 
61
+ #: contact_form.php:173 contact_form.php:1752 contact_form.php:1790
62
+ #: contact_form.php:2062
63
+ msgid "Attachment"
64
+ msgstr "Dosya Yükleme"
65
 
66
+ #: contact_form.php:174
67
  msgid ""
68
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
69
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
72
  "BMP, AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, "
73
  "PPT."
74
 
75
+ #: contact_form.php:175 contact_form.php:1754 contact_form.php:1792
76
  msgid "Send me a copy"
77
  msgstr "Bana bir kopyasını gönder"
78
 
79
+ #: contact_form.php:176 contact_form.php:1755 contact_form.php:1793
80
  msgid "Submit"
81
  msgstr "Gönder"
82
 
83
+ #: contact_form.php:177
84
  msgid "Your name is required."
85
  msgstr "İsminizi yazmanız gerekiyor."
86
 
87
+ #: contact_form.php:178
88
  msgid "Address is required."
89
  msgstr "Adresinizi yazmanız gerekiyor."
90
 
91
+ #: contact_form.php:179
92
  msgid "A valid email address is required."
93
  msgstr "Geçerli bir e-posta adresi yazmanız gerekiyor."
94
 
95
+ #: contact_form.php:180
96
  msgid "Phone number is required."
97
  msgstr "Telefon numaranızı yazmanız gerekiyor."
98
 
99
+ #: contact_form.php:181
100
  msgid "Subject is required."
101
  msgstr "Başlık kısmını doldurmanız gerekiyor."
102
 
103
+ #: contact_form.php:182
104
  msgid "Message text is required."
105
  msgstr "Mesaj kısmını doldurmanız gerekiyor."
106
 
107
+ #: contact_form.php:183
108
  msgid "File format is not valid."
109
  msgstr "Dosya uzantısı uygun değil."
110
 
111
+ #: contact_form.php:184
112
  msgid "File upload error."
113
  msgstr "Dosya yükleme hatası."
114
 
115
+ #: contact_form.php:185
116
  msgid "The file could not be uploaded."
117
  msgstr "Dosya yüklenemedi."
118
 
119
+ #: contact_form.php:186
120
  msgid "This file is too large."
121
  msgstr "Dosyanın boyutu çok büyük."
122
 
123
+ #: contact_form.php:187
124
  msgid "Please fill out the CAPTCHA."
125
  msgstr "Lütfen CAPTCHA kısmını doldurun."
126
 
127
+ #: contact_form.php:188
128
  msgid "Please make corrections below and try again."
129
  msgstr "Lütfen aşağıdaki düzeltmeleri yapın ve yeniden deneyin."
130
 
131
+ #: contact_form.php:190
132
  msgid "Thank you for contacting us."
133
  msgstr "İletişime geçtiğiniz için teşekkürler."
134
 
135
+ #: contact_form.php:824 contact_form.php:1076
136
  msgid "Settings saved."
137
  msgstr "Ayarlar kaydedildi."
138
 
139
+ #: contact_form.php:1021
140
  msgid ""
141
  "Email 'FROM' field option was changed, which may cause email messages being "
142
  "moved to the spam folder or email delivery failures."
143
  msgstr ""
144
 
145
+ #: contact_form.php:1031
146
  msgid ""
147
  "If the 'Redirect to page' option is selected then the URL field should be in "
148
  "the following format"
149
  msgstr ""
150
  "Eğer 'Sayfaya Yönlendir' seçeneği seçilmişse, URL alanı şu formatta olmalı:"
151
 
152
+ #: contact_form.php:1038
153
  #, fuzzy
154
  msgid "Such user does not exist."
155
  msgstr "Böyle bir kullanıcı adı bulunamadı. Ayarlar kaydedilmedi."
156
 
157
+ #: contact_form.php:1048
158
  #, fuzzy
159
  msgid ""
160
  "Please enter a valid email address in the 'Use this email address' field."
162
  "Lütfen 'GÖNDERİCİ' alanına geçerli bir e-posta adresi girin. Ayarlar "
163
  "kaydedilmedi."
164
 
165
+ #: contact_form.php:1056
166
  #, fuzzy
167
  msgid "Please enter a valid email address in the 'FROM' field."
168
  msgstr ""
169
  "Lütfen 'GÖNDERİCİ' alanına geçerli bir e-posta adresi girin. Ayarlar "
170
  "kaydedilmedi."
171
 
172
+ #: contact_form.php:1078
173
  #, fuzzy
174
  msgid "Settings are not saved."
175
  msgstr "Ayarlar kaydedildi."
176
 
177
+ #: contact_form.php:1115
178
  msgid "All plugin settings were restored."
179
  msgstr ""
180
 
181
+ #: contact_form.php:1120
182
  msgid "How to Use Step-by-step Instruction"
183
  msgstr ""
184
 
185
+ #: contact_form.php:1123 contact_form.php:3351 contact_form.php:3365
186
  msgid "Settings"
187
  msgstr "Ayarlar"
188
 
189
+ #: contact_form.php:1124
190
  #, fuzzy
191
  msgid "Additional settings"
192
  msgstr "Ek seçenekler"
193
 
194
+ #: contact_form.php:1125
195
  msgid "Appearance"
196
  msgstr ""
197
 
198
+ #: contact_form.php:1126
199
  msgid "Custom code"
200
  msgstr ""
201
 
202
+ #: contact_form.php:1127
203
  msgid "Go PRO"
204
  msgstr ""
205
 
206
+ #: contact_form.php:1136
207
  #, fuzzy
208
+ msgid "Notice"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
209
  msgstr "Bilgi Notu:"
210
 
211
+ #: contact_form.php:1140
212
  msgid "NEW_FORM"
213
  msgstr ""
214
 
215
+ #: contact_form.php:1141
216
  msgid ""
217
  "If you want to create multiple contact forms, please install the Contact "
218
  "Form Multi plugin."
219
  msgstr ""
220
 
221
+ #: contact_form.php:1150
222
  #, fuzzy, php-format
223
  msgid ""
224
  "If you would like to add a Contact Form to your page or post, please use %s "
227
  "Eğer sitenize iletişim formu eklemek istiyorsanız, şu kısa kodu yazınıza, "
228
  "sayfanıza ya da bileşen alanınıza eklemeniz yeterli."
229
 
230
+ #: contact_form.php:1156
231
  #, php-format
232
  msgid ""
233
  "You can add the Contact Form to your page or post by clicking on %s button "
236
  "language."
237
  msgstr ""
238
 
239
+ #: contact_form.php:1165
240
  msgid ""
241
  "If you leave the fields empty, the messages will be sent to the email "
242
  "address specified during registration."
244
  "Eğer aşağıdaki alanları boş bırakırsanız, kullanıcının mesajı kayıt "
245
  "sırasında girilen e-posta adresine gönderilecek."
246
 
247
+ #: contact_form.php:1168
248
+ #, fuzzy
249
+ msgid "The user's email address"
250
  msgstr "Kullanıcının e-posta adresine:"
251
 
252
+ #: contact_form.php:1172
253
  #, fuzzy
254
  msgid "Select a username"
255
  msgstr "Kullanıcı oluştur"
256
 
257
+ #: contact_form.php:1185
258
+ #, fuzzy
259
  msgid ""
260
+ "Select a username of the person who should get the messages from the contact "
261
  "form."
262
  msgstr ""
263
  "İletişim Formu ile gönderilen mesajı almasını istediğiniz kullanıcının adını "
264
  "girin."
265
 
266
+ #: contact_form.php:1189
267
+ #, fuzzy
268
+ msgid "Use this email address"
269
  msgstr "Mesaj bu e-posta adresine gönderilsin:"
270
 
271
+ #: contact_form.php:1193
272
+ #, fuzzy
273
+ msgid "Enter the email address for receiving messages"
274
  msgstr "Mesajın gönderilmesini istediğiniz e-posta adresini girin."
275
 
276
+ #: contact_form.php:1200 contact_form.php:1663 contact_form.php:1873
277
+ #: contact_form.php:1961 contact_form.php:3446
278
  msgid "Close"
279
  msgstr ""
280
 
281
+ #: contact_form.php:1204
282
+ #, fuzzy
283
+ msgid "Add department selectbox to the contact form"
284
  msgstr "İletişim Formu'na departman seçenekleri ekleyin"
285
 
286
+ #: contact_form.php:1212 contact_form.php:1672 contact_form.php:1892
287
+ #: contact_form.php:2167
288
  msgid "If you upgrade to Pro version all your settings will be saved."
289
  msgstr "Ücretli sürümü satın alırsanız tüm değişiklikler kaydedilecek."
290
 
291
+ #: contact_form.php:1219 contact_form.php:1509 contact_form.php:1677
292
+ #: contact_form.php:1899 contact_form.php:2174
293
  msgid "Unlock premium options by upgrading to Pro version"
294
  msgstr ""
295
 
296
+ #: contact_form.php:1222 contact_form.php:1512 contact_form.php:1680
297
+ #: contact_form.php:1902 contact_form.php:2177 contact_form.php:3672
298
  msgid "Learn More"
299
  msgstr ""
300
 
301
+ #: contact_form.php:1230
302
  msgid "Save emails to the database"
303
  msgstr "E-postaları veritabanına kaydet"
304
 
305
+ #: contact_form.php:1241 contact_form.php:1255 contact_form.php:1262
306
  msgid "Using"
307
  msgstr ""
308
 
309
+ #: contact_form.php:1247 contact_form.php:1572 contact_form.php:1605
310
+ #: contact_form.php:1640
311
+ msgid "Please activate the appropriate option on"
312
+ msgstr ""
313
+
314
+ #: contact_form.php:1250 contact_form.php:1575 contact_form.php:1608
315
+ #: contact_form.php:1643
316
  #, fuzzy
317
+ msgid "settings page"
318
+ msgstr "Ekstra ayarlar"
319
 
320
+ #: contact_form.php:1256 contact_form.php:1581 contact_form.php:1615
321
+ #: contact_form.php:1651
322
  #, fuzzy
323
  msgid "Activate"
324
  msgstr "CAPTCHA'yı etkinleştir"
325
 
326
+ #: contact_form.php:1263 contact_form.php:1587 contact_form.php:1621
327
+ #: contact_form.php:1656
328
  msgid "Download"
329
  msgstr "Descarregar"
330
 
331
+ #: contact_form.php:1275
332
+ msgid "Sending method"
333
+ msgstr ""
334
 
335
+ #: contact_form.php:1280
336
  msgid "Wp-mail"
337
  msgstr "Wp-Mail"
338
 
339
+ #: contact_form.php:1282
340
  #, fuzzy
341
  msgid "You can use the Wordpress wp_mail function for mailing"
342
  msgstr "E-postanın gönderimi için wp_mail fonksiyonunu kullanabilirsiniz."
343
 
344
+ #: contact_form.php:1285
345
  msgid "Mail"
346
  msgstr "Mail"
347
 
348
+ #: contact_form.php:1287
349
  #, fuzzy
350
  msgid "You can use the PHP mail function for mailing"
351
  msgstr "E-postanın gönderimi için wp_mail fonksiyonunu kullanabilirsiniz."
352
 
353
+ #: contact_form.php:1292
354
  msgid "'FROM' field"
355
  msgstr ""
356
 
357
+ #: contact_form.php:1297
 
 
 
 
 
358
  msgid "User name"
359
  msgstr "Kullanıcı adı"
360
 
361
+ #: contact_form.php:1299
362
  msgid ""
363
  "The name of the user who fills the form will be used in the field 'From'."
364
  msgstr "'Gönderici' alanında formu dolduran ziyaretçinin adı kullanılacak."
365
 
366
+ #: contact_form.php:1304 contact_form.php:3126 contact_form.php:3170
367
  msgid "Email"
368
  msgstr "E-Posta Adresi"
369
 
370
+ #: contact_form.php:1307
371
  msgid "User email"
372
  msgstr "Kullanıcı e-postası"
373
 
374
+ #: contact_form.php:1309
375
  msgid ""
376
  "The email address of the user who fills the form will be used in the field "
377
  "'From'."
378
  msgstr ""
379
  "'Gönderici' alanında formu dolduran kullanıcının e-posta adresi gösterilecek."
380
 
381
+ #: contact_form.php:1312
382
  msgid ""
383
  "If this option is changed, email messages may be moved to the spam folder or "
384
  "email delivery failures may occur."
385
  msgstr ""
386
 
387
+ #: contact_form.php:1318
388
  msgid "Required symbol"
389
  msgstr "Zorunlu işareti"
390
 
391
+ #: contact_form.php:1328
392
  msgid "Fields"
393
  msgstr "Alanlar"
394
 
395
+ #: contact_form.php:1329 contact_form.php:1356 contact_form.php:1383
396
+ #: contact_form.php:1403 contact_form.php:1442 contact_form.php:1527
397
  msgid "Used"
398
  msgstr "Kullanılsın mı?"
399
 
400
+ #: contact_form.php:1330 contact_form.php:1345 contact_form.php:1360
401
+ #: contact_form.php:1387 contact_form.php:1407 contact_form.php:1420
402
+ #: contact_form.php:1446 contact_form.php:1459 contact_form.php:1483
403
  msgid "Required"
404
  msgstr "Zorunlu"
405
 
406
+ #: contact_form.php:1332 contact_form.php:1365 contact_form.php:1425
407
+ #: contact_form.php:1464 contact_form.php:1488
408
  msgid "Visible"
409
  msgstr "Görünür"
410
 
411
+ #: contact_form.php:1333 contact_form.php:1369 contact_form.php:1429
412
+ #: contact_form.php:1468 contact_form.php:1492
413
  msgid "Disabled for editing"
414
  msgstr "Düzenlemeye kapatılmış"
415
 
416
+ #: contact_form.php:1334 contact_form.php:1393 contact_form.php:1472
417
+ #: contact_form.php:1496
418
  msgid "Field's default value"
419
  msgstr "Alanın varsayılan değeri"
420
 
421
+ #: contact_form.php:1341
422
  msgid "Department selectbox"
423
  msgstr ""
424
 
425
+ #: contact_form.php:1373
426
  msgid "Use User's name as a default value if the user is logged in."
427
  msgstr ""
428
 
429
+ #: contact_form.php:1374 contact_form.php:1434
430
  msgid ""
431
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
432
  "in users."
433
  msgstr ""
434
 
435
+ #: contact_form.php:1380
436
  msgid "Location selectbox"
437
  msgstr ""
438
 
439
+ #: contact_form.php:1433
 
 
 
 
 
 
 
 
 
440
  msgid "Use User's email as a default value if the user is logged in."
441
  msgstr ""
442
 
443
+ #: contact_form.php:1520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
444
  msgid "Attachment block"
445
  msgstr "Dosya Yükleme"
446
 
447
+ #: contact_form.php:1522
448
  msgid "Users can attach the following file formats"
449
  msgstr "Kullanıcılar şu uzantılardaki dosyaları yükleyebilirler"
450
 
451
+ #: contact_form.php:1540
452
  msgid "Add to the form"
453
  msgstr "Forma ekle"
454
 
455
+ #: contact_form.php:1545
456
  msgid "Tips below the Attachment"
457
  msgstr "Dosya yükleme alanı altında açıklama"
458
 
459
+ #: contact_form.php:1554
460
  msgid "'Send me a copy' block"
461
  msgstr "'Mesajın bir kopyasını e-posta adresime gönder' seçeneği"
462
 
463
+ #: contact_form.php:1667
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
464
  msgid "Agreement checkbox"
465
  msgstr "Onay kutusu"
466
 
467
+ #: contact_form.php:1667
468
  msgid "Required checkbox for submitting the form"
469
  msgstr "Formu göndermek için işaretlenmesi gereken onay kutusu"
470
 
471
+ #: contact_form.php:1668
472
  msgid "Optional checkbox"
473
  msgstr "İsteğe bağlı onay kutusu"
474
 
475
+ #: contact_form.php:1668
476
  msgid "Optional checkbox, the results of which will be displayed in email"
477
  msgstr "E-posta'da gösterilecek, isteğe bağlı onay kutusu"
478
 
479
+ #: contact_form.php:1689
480
  msgid "Delete an attachment file from the server after the email is sent"
481
  msgstr "E-posta gönderildikten sonra eklenen dosyayı sunucudan sil"
482
 
483
+ #: contact_form.php:1695
484
  msgid "Email in HTML format sending"
485
  msgstr "E-postayı HTML formatında gönder"
486
 
487
+ #: contact_form.php:1699
488
  msgid "Display additional info in the email"
489
  msgstr "E-postanın içerisinde ek bilgiler göster"
490
 
491
+ #: contact_form.php:1705
492
  #, fuzzy
493
  msgid "Sent from (IP address)"
494
  msgstr "Gönderilen (IP Adresi)"
495
 
496
+ #: contact_form.php:1705
497
  msgid "Example: Sent from (IP address):\t127.0.0.1"
498
  msgstr "Örnek: Şu IP adresinden gönderildi:\t127.0.0.1"
499
 
500
+ #: contact_form.php:1706 contact_form.php:3075 contact_form.php:3077
501
  msgid "Date/Time"
502
  msgstr "Tarih/Zaman"
503
 
504
+ #: contact_form.php:1706
505
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
506
  msgstr "Örnek: Tarih/Saat:\t19 Ağustos, 2013 - 8:50 ÖS"
507
 
508
+ #: contact_form.php:1707 contact_form.php:3081 contact_form.php:3083
509
  msgid "Sent from (referer)"
510
  msgstr "Gönderilen (referer)"
511
 
512
+ #: contact_form.php:1707
513
  msgid ""
514
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
515
  msgstr "Örnek: Gönderici:\thttp://bestwebsoft.com/contacts/contact-us/"
516
 
517
+ #: contact_form.php:1708 contact_form.php:3087 contact_form.php:3089
518
  msgid "Using (user agent)"
519
  msgstr "Şununla: "
520
 
521
+ #: contact_form.php:1708
522
  msgid ""
523
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
524
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
526
  "Örnek: Şunu kullanarak:\tMozilla/5.0 (Windows NT 6.2; WOW64) "
527
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
528
 
529
+ #: contact_form.php:1713
530
  msgid "Language settings for the field names in the form"
531
  msgstr "Formdaki alan adları için dil ayarları 8aşağıdaki iki seçenek için)"
532
 
533
+ #: contact_form.php:1722
534
  msgid "Add a language"
535
  msgstr "Bir dil ekle"
536
 
537
+ #: contact_form.php:1726
538
  msgid "Change the names of the contact form fields and error messages"
539
  msgstr ""
540
  "Yukarıdan eklenen dile göre İletişim Formu alanlarının isimlerini ve hata "
541
  "mesajlarını değiştir"
542
 
543
+ #: contact_form.php:1731 contact_form.php:1827 contact_form.php:2081
544
+ #: contact_form.php:2086 contact_form.php:2096 contact_form.php:2101
545
+ #: contact_form.php:2106 contact_form.php:2111 contact_form.php:2121
546
+ #: contact_form.php:2126 contact_form.php:2135 contact_form.php:2149
547
+ #: contact_form.php:2154 contact_form.php:2159
548
  msgid "Default"
549
  msgstr "Varsayılan"
550
 
551
+ #: contact_form.php:1744 contact_form.php:1782
552
  msgid "click to expand/hide the list"
553
  msgstr ""
554
 
555
+ #: contact_form.php:1753 contact_form.php:1791
556
  msgid "Tips below the Attachment block"
557
  msgstr "Dosya yükleme alanı altında gösterilecek açıklamalar"
558
 
559
+ #: contact_form.php:1756 contact_form.php:1794
560
  msgid "Error message for the Name field"
561
  msgstr "'İsim' alanı için hata mesajı"
562
 
563
+ #: contact_form.php:1757 contact_form.php:1795
564
  msgid "Error message for the Address field"
565
  msgstr "'Adres' alanı için hata mesajı"
566
 
567
+ #: contact_form.php:1758 contact_form.php:1796
568
  msgid "Error message for the Email field"
569
  msgstr "'E-posta adresş' alanı için hata mesajı"
570
 
571
+ #: contact_form.php:1759 contact_form.php:1797
572
  msgid "Error message for the Phone field"
573
  msgstr "'Telefon numarası' alanı için hata mesajı"
574
 
575
+ #: contact_form.php:1760 contact_form.php:1798
576
  msgid "Error message for the Subject field"
577
  msgstr "'Başlık' alanı için hata mesajı"
578
 
579
+ #: contact_form.php:1761 contact_form.php:1799
580
  msgid "Error message for the Message field"
581
  msgstr "'Mesaj' alanı için hata mesajı"
582
 
583
+ #: contact_form.php:1762 contact_form.php:1800
584
  msgid "Error message about the file type for the Attachment field"
585
  msgstr "Yüklenen dosyanın uzantısıyla ilgili hata mesajı"
586
 
587
+ #: contact_form.php:1763 contact_form.php:1801
588
  msgid ""
589
  "Error message while uploading a file for the Attachment field to the server"
590
  msgstr "Dosya yüklenirken oluşan hata için hata mesajı"
591
 
592
+ #: contact_form.php:1764 contact_form.php:1802
593
  msgid "Error message while moving the file for the Attachment field"
594
  msgstr "Yüklenecek dosya seçilirken oluşan hata için hata mesajı"
595
 
596
+ #: contact_form.php:1765 contact_form.php:1803
597
  msgid "Error message when file size limit for the Attachment field is exceeded"
598
  msgstr "En fazla dosya yükleme boyutu sınırı açıldığında oluşan hata mesajı"
599
 
600
+ #: contact_form.php:1766 contact_form.php:1804
601
  msgid "Error message for the Captcha field"
602
  msgstr "CAPTCHA alanı için hata mesajı"
603
 
604
+ #: contact_form.php:1767 contact_form.php:1805
605
  msgid "Error message for the whole form"
606
  msgstr "Formun geneli için hata mesajı"
607
 
608
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
609
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
610
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
611
+ #: contact_form.php:3516
612
  msgid "Use shortcode"
613
  msgstr "Kısa kodu kullan"
614
 
615
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
616
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
617
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
618
+ #: contact_form.php:3516
619
  msgid "for this language"
620
  msgstr "bu dil için"
621
 
622
+ #: contact_form.php:1818
623
  #, fuzzy
624
  msgid "Use the changed names of the contact form fields in the email"
625
  msgstr ""
626
  "Yukarıdan eklenen dile göre İletişim Formu alanlarının isimlerini ve hata "
627
  "mesajlarını değiştir"
628
 
629
+ #: contact_form.php:1824
630
  msgid "Action after email is sent"
631
  msgstr "E-posta gönderildikten sonra ne yapılsın?"
632
 
633
+ #: contact_form.php:1826
634
  msgid "Display text"
635
  msgstr "Metin göster"
636
 
637
+ #: contact_form.php:1840 contact_form.php:1854
638
  msgid "Text"
639
  msgstr "Metin"
640
 
641
+ #: contact_form.php:1865
642
  msgid "Redirect to the page"
643
  msgstr "Sayfaya yönlendir"
644
 
645
+ #: contact_form.php:1866
646
  msgid "Url"
647
  msgstr "URL"
648
 
649
+ #: contact_form.php:1877
650
  msgid "Add field 'Reply-To' to the email header"
651
  msgstr ""
652
 
653
+ #: contact_form.php:1879
654
  msgid "Field 'Reply-To' will be initialized by user email"
655
  msgstr ""
656
 
657
+ #: contact_form.php:1883
658
  msgid "Auto Response"
659
  msgstr ""
660
 
661
+ #: contact_form.php:1887
662
  #, php-format
663
  msgid ""
664
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
666
  "name."
667
  msgstr ""
668
 
669
+ #: contact_form.php:1912 contact_form.php:2398
670
  msgid "Save Changes"
671
  msgstr "Değişiklikleri Kaydet"
672
 
673
+ #: contact_form.php:1925
674
  #, php-format
675
  msgid ""
676
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
677
  msgstr ""
678
 
679
+ #: contact_form.php:1925 contact_form.php:1934
680
+ msgid "Form layout"
681
+ msgstr ""
682
+
683
+ #: contact_form.php:1925 contact_form.php:1946
684
+ #, fuzzy
685
+ msgid "Submit position"
686
+ msgstr "Gönderme butonu"
687
+
688
+ #: contact_form.php:1938
689
  msgid "One column"
690
  msgstr ""
691
 
692
+ #: contact_form.php:1941
693
  msgid "Two columns"
694
  msgstr ""
695
 
696
+ #: contact_form.php:1950 contact_form.php:1969 contact_form.php:1987
697
+ #: contact_form.php:2002
698
  msgid "Left"
699
  msgstr ""
700
 
701
+ #: contact_form.php:1953 contact_form.php:1975 contact_form.php:1990
702
+ #: contact_form.php:2008
703
  msgid "Right"
704
  msgstr ""
705
 
706
+ #: contact_form.php:1965
707
  msgid "Form align"
708
  msgstr ""
709
 
710
+ #: contact_form.php:1972 contact_form.php:2005
711
  msgid "Center"
712
  msgstr ""
713
 
714
+ #: contact_form.php:1980
715
  #, fuzzy
716
  msgid "Labels position"
717
  msgstr "Gönderme butonu"
718
 
719
+ #: contact_form.php:1984
720
  msgid "Top"
721
  msgstr ""
722
 
723
+ #: contact_form.php:1993
724
  msgid "Bottom"
725
  msgstr ""
726
 
727
+ #: contact_form.php:1998
728
  msgid "Labels align"
729
  msgstr ""
730
 
731
+ #: contact_form.php:2013
732
  msgid "Errors output"
733
  msgstr "Hata çıktısı"
734
 
735
+ #: contact_form.php:2016
736
  msgid "Display error messages"
737
  msgstr "Hata mesajlarını göster"
738
 
739
+ #: contact_form.php:2017
740
  msgid "Color of the input field errors."
741
  msgstr "Giriş alanlarının hata rengi"
742
 
743
+ #: contact_form.php:2018
744
  msgid "Display error messages & color of the input field errors"
745
  msgstr "Hata mesajlarını ve giriş alanı hata rengini göster"
746
 
747
+ #: contact_form.php:2023
748
  msgid "Add placeholder to the input blocks"
749
  msgstr "Giriş alanlarına bilgilendirme notu ekle"
750
 
751
+ #: contact_form.php:2029
752
  msgid "Add tooltips"
753
  msgstr "Şunları ekle:"
754
 
755
+ #: contact_form.php:2043
756
  msgid "Email address"
757
  msgstr "E-posta adresi"
758
 
759
+ #: contact_form.php:2048 contact_form.php:3142 contact_form.php:3183
760
  msgid "Phone Number"
761
  msgstr "Telefon Numarası"
762
 
763
+ #: contact_form.php:2074
 
 
 
 
764
  msgid "Style options"
765
  msgstr "Tasarım ayarları"
766
 
767
+ #: contact_form.php:2078
768
  msgid "Text color"
769
  msgstr "Metin rengi"
770
 
771
+ #: contact_form.php:2083
772
  msgid "Label text color"
773
  msgstr "Etiket metninin rengi"
774
 
775
+ #: contact_form.php:2088
776
  msgid "Placeholder color"
777
  msgstr "Bilgilendirme notu rengi"
778
 
779
+ #: contact_form.php:2093
780
  msgid "Errors color"
781
  msgstr "Hataların renkleri"
782
 
783
+ #: contact_form.php:2098
784
  msgid "Error text color"
785
  msgstr "Hata metni rengi"
786
 
787
+ #: contact_form.php:2103
788
  msgid "Background color of the input field errors"
789
  msgstr "giriş alanı hataları için arka plan rengi"
790
 
791
+ #: contact_form.php:2108
792
  msgid "Border color of the input field errors"
793
  msgstr "Giriş alanı hataları için border rengi"
794
 
795
+ #: contact_form.php:2113
796
  msgid "Placeholder color of the input field errors"
797
  msgstr "Giriş alanı hataları için bilgilendirme notu rengi"
798
 
799
+ #: contact_form.php:2118
800
  msgid "Input fields"
801
  msgstr "Giriş alanları"
802
 
803
+ #: contact_form.php:2123
804
  msgid "Input fields background color"
805
  msgstr "Giriş alanları arka plan rengi"
806
 
807
+ #: contact_form.php:2128
808
  msgid "Text fields color"
809
  msgstr "Metin alanlarının rengi"
810
 
811
+ #: contact_form.php:2132
812
  msgid "Border width in px, numbers only"
813
  msgstr "Bırder genişliği, piksel cinsinden, sadece sayı"
814
 
815
+ #: contact_form.php:2137 contact_form.php:2161
816
  msgid "Border color"
817
  msgstr "Border rengi"
818
 
819
+ #: contact_form.php:2142
820
  msgid "Submit button"
821
  msgstr "Gönderme butonu"
822
 
823
  # #: contact_form.php:928
824
+ #: contact_form.php:2146
825
  msgid "Width in px, numbers only"
826
  msgstr "Piksel cinsinden genişlik, sadece sayı"
827
 
828
+ #: contact_form.php:2151
829
  msgid "Button color"
830
  msgstr "Buton rengi"
831
 
832
+ #: contact_form.php:2156
833
  msgid "Button text color"
834
  msgstr "Buton yazı rengi"
835
 
836
+ #: contact_form.php:2188
837
  #, fuzzy
838
  msgid "Contact Form | Preview"
839
  msgstr "İletişim Formu PRO | Ön İzleme"
840
 
841
+ #: contact_form.php:2189
842
  msgid "Drag the necessary field to sort fields."
843
  msgstr ""
844
 
845
+ #: contact_form.php:2385
846
+ #, fuzzy
847
  msgid ""
848
  "If you would like to add the Contact Form to your website, just copy and "
849
+ "paste this shortcode to your post or page or widget"
850
  msgstr ""
851
  "Eğer sitenize iletişim formu eklemek istiyorsanız, şu kısa kodu yazınıza, "
852
  "sayfanıza ya da bileşen alanınıza eklemeniz yeterli."
853
 
854
+ #: contact_form.php:2501
855
  msgid "Sorry, email message could not be delivered."
856
  msgstr "Üzgünüz, e-posta mesajınız gönderilemedi."
857
 
858
+ #: contact_form.php:3069 contact_form.php:3071
859
  msgid "Sent from (ip address)"
860
  msgstr "Gönderilen (IP Adresi)"
861
 
862
+ #: contact_form.php:3099
863
  msgid "Contact from"
864
  msgstr "İletişim Formu"
865
 
866
+ #: contact_form.php:3104 contact_form.php:3153
 
 
 
 
867
  msgid "Site"
868
  msgstr "Website"
869
 
870
+ #: contact_form.php:3283
871
  msgid ""
872
  "If you can see this MIME, it means that the MIME type is not supported by "
873
  "your email client!"
875
  "Eğer bu MIME'ı görüyorsanız, bu e-posta sunucunuzun MIME'ı desteklemediği "
876
  "anlamına gelir!"
877
 
878
+ #: contact_form.php:3366
879
  msgid "FAQ"
880
  msgstr "SSS"
881
 
882
+ #: contact_form.php:3367
883
  msgid "Support"
884
  msgstr "Destek"
885
 
886
+ #: contact_form.php:3416
887
  msgid "Are you sure that you want to delete this language data?"
888
  msgstr "Bu dile ait verileri silmek istediğinize emin misiniz?"
889
 
890
+ #: contact_form.php:3437
891
  #, fuzzy
892
  msgid "Add multiple forms"
893
  msgstr "Forma ekle"
894
 
895
+ #: contact_form.php:3437
896
  msgid ""
897
  "Install Contact Form Multi plugin to create unlimited number of contact "
898
  "forms."
899
  msgstr ""
900
 
901
+ #: contact_form.php:3442
902
  #, fuzzy
903
  msgid "Learn more"
904
  msgstr "Llegir més"
905
 
906
+ #: contact_form.php:3663
907
  msgid "Close notice"
908
  msgstr ""
909
 
910
+ #: contact_form.php:3668
911
  #, fuzzy
912
  msgid "allows to store your messages to the database."
913
  msgstr "E-postaları veritabanına kaydet"
914
 
915
+ #: contact_form.php:3669
916
  msgid "Manage messages that have been sent from your website."
917
  msgstr ""
918
 
919
+ #: contact_form.php:3727
920
  #, fuzzy
921
  msgid "Contact form"
922
  msgstr "İletişim Formu"
923
 
924
+ #: contact_form.php:3740 contact_form.php:3750
925
  #, fuzzy
926
  msgid "Language"
927
  msgstr "Bir dil ekle"
928
 
929
+ #~ msgid "Name:"
930
+ #~ msgstr "İsim:"
931
+
932
+ #~ msgid "Address:"
933
+ #~ msgstr "Adres:"
934
+
935
+ #~ msgid "Email Address:"
936
+ #~ msgstr "E-posta Adresi:"
937
+
938
+ #~ msgid "Phone number:"
939
+ #~ msgstr "Telefon Numarası:"
940
+
941
+ #~ msgid "Subject:"
942
+ #~ msgstr "Başlık:"
943
+
944
+ #~ msgid "Message:"
945
+ #~ msgstr "Mesaj:"
946
+
947
+ #~ msgid "Attachment:"
948
+ #~ msgstr "Eklenecek Dosya:"
949
+
950
+ #, fuzzy
951
+ #~ msgid ""
952
+ #~ "Please enable JavaScript to add language in the contact form, change the "
953
+ #~ "names of the contact form fields and error messages."
954
+ #~ msgstr ""
955
+ #~ "Yukarıdan eklenen dile göre İletişim Formu alanlarının isimlerini ve hata "
956
+ #~ "mesajlarını değiştir"
957
+
958
+ #~ msgid "What to use?"
959
+ #~ msgstr "Hangi yöntem?"
960
+
961
+ #, fuzzy
962
+ #~ msgid "Using Contact Form to DB by BestWebSoft"
963
+ #~ msgstr "Contact Form to DB eklentisi ile,"
964
+
965
+ #, fuzzy
966
+ #~ msgid "Activate Subscriber"
967
+ #~ msgstr "Plugin activat"
968
+
969
+ #, fuzzy
970
+ #~ msgid "Activate Captcha"
971
+ #~ msgstr "CAPTCHA'yı etkinleştir"
972
+
973
+ #, fuzzy
974
+ #~ msgid "Download Captcha"
975
+ #~ msgstr "CAPTCHA'yı yükle"
976
+
977
+ #~ msgid "Phone"
978
+ #~ msgstr "Telefon"
979
+
980
  #~ msgid "To send mail you can use the php mail function"
981
  #~ msgstr "E-postanın gönderimi için PHP Mail fonksiyonunu kullanabilirsiniz."
982
 
1080
  #~ "Eğer eklenti hakkında problem tespit ederseniz lütfen bizimle iletişime "
1081
  #~ "geçin"
1082
 
 
 
 
 
1083
  #~ msgid "Extra settings"
1084
  #~ msgstr "Ekstra ayarlar"
1085
 
languages/contact-form-plugin-uk.mo CHANGED
Binary file
languages/contact-form-plugin-uk.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: 2016-06-27 16:32+0300\n"
6
- "PO-Revision-Date: 2016-06-27 16:32+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: The BestWebSoft Team <plugin@bestwebsoft.com>\n"
9
  "Language: uk\n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  # @ contact_form
21
- #: contact_form.php:37 contact_form.php:1030
22
  msgid "Contact Form Settings"
23
  msgstr "Налаштування Contact Form"
24
 
@@ -28,42 +28,53 @@ msgid "Contact Form"
28
  msgstr "Contact Form"
29
 
30
  # @ contact_form
31
- #: contact_form.php:165 contact_form.php:1565 contact_form.php:1599
32
- msgid "Name:"
33
- msgstr "Ім'я:"
 
 
34
 
35
  # @ contact_form
36
- #: contact_form.php:166 contact_form.php:1566 contact_form.php:1600
37
- msgid "Address:"
38
- msgstr "Адреса:"
 
 
39
 
40
  # @ contact_form
41
- #: contact_form.php:167 contact_form.php:1567 contact_form.php:1601
42
- msgid "Email Address:"
43
- msgstr "Email:"
 
44
 
45
  # @ contact_form
46
- #: contact_form.php:168 contact_form.php:1568 contact_form.php:1602
47
- msgid "Phone number:"
48
- msgstr "Номер телефону:"
 
49
 
50
  # @ contact_form
51
- #: contact_form.php:169 contact_form.php:1569 contact_form.php:1603
52
- msgid "Subject:"
53
- msgstr "Тема:"
 
 
54
 
55
  # @ contact_form
56
- #: contact_form.php:170 contact_form.php:1570 contact_form.php:1604
57
- msgid "Message:"
58
- msgstr "Повідомлення:"
 
 
59
 
60
  # @ contact_form
61
- #: contact_form.php:171 contact_form.php:1571 contact_form.php:1605
62
- msgid "Attachment:"
63
- msgstr "Вкладений файл:"
 
64
 
65
  # @ contact_form
66
- #: contact_form.php:172
67
  msgid ""
68
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
69
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -73,86 +84,86 @@ msgstr ""
73
  "PPT."
74
 
75
  # @ contact_form
76
- #: contact_form.php:173 contact_form.php:1573 contact_form.php:1607
77
  msgid "Send me a copy"
78
  msgstr "Надіслати мені копію"
79
 
80
  # @ contact_form
81
- #: contact_form.php:174 contact_form.php:1574 contact_form.php:1608
82
  msgid "Submit"
83
  msgstr "Підтвердити"
84
 
85
  # @ contact_form
86
- #: contact_form.php:175
87
  msgid "Your name is required."
88
  msgstr "Необхідно вказати своє ім'я."
89
 
90
  # @ contact_form
91
- #: contact_form.php:176
92
  msgid "Address is required."
93
  msgstr "Необхідно вказати свою адресу"
94
 
95
  # @ contact_form
96
- #: contact_form.php:177
97
  msgid "A valid email address is required."
98
  msgstr "Необхідно вказати коректну email-адресу."
99
 
100
  # @ contact_form
101
- #: contact_form.php:178
102
  msgid "Phone number is required."
103
  msgstr "Необхідно вказати номер телефону."
104
 
105
  # @ contact_form
106
- #: contact_form.php:179
107
  msgid "Subject is required."
108
  msgstr "Необхідно вказати тему."
109
 
110
  # @ contact_form
111
- #: contact_form.php:180
112
  msgid "Message text is required."
113
  msgstr "Повідомлення не може бути порожнім."
114
 
115
  # @ contact_form
116
- #: contact_form.php:181
117
  msgid "File format is not valid."
118
  msgstr "Некоректний формат файлу."
119
 
120
  # @ contact_form
121
- #: contact_form.php:182
122
  msgid "File upload error."
123
  msgstr "Помилка завантаження файлу."
124
 
125
  # @ contact_form
126
- #: contact_form.php:183
127
  msgid "The file could not be uploaded."
128
  msgstr "Неможна завантажити файл."
129
 
130
  # @ contact_form
131
- #: contact_form.php:184
132
  msgid "This file is too large."
133
  msgstr "Файл занадто великий."
134
 
135
  # @ contact_form
136
- #: contact_form.php:185
137
  msgid "Please fill out the CAPTCHA."
138
  msgstr "Будь ласка, введіть CAPTCHA."
139
 
140
  # @ contact_form
141
- #: contact_form.php:186
142
  msgid "Please make corrections below and try again."
143
  msgstr "Будь ласка, внесіть поправки у виділені поля і спробуйте знову."
144
 
145
  # @ contact_form
146
- #: contact_form.php:188
147
  msgid "Thank you for contacting us."
148
  msgstr "Дякуємо, що зв'язалися з нами."
149
 
150
  # @ contact_form
151
- #: contact_form.php:688 contact_form.php:998
152
  msgid "Settings saved."
153
  msgstr "Налаштування збережено."
154
 
155
- #: contact_form.php:940
156
  msgid ""
157
  "Email 'FROM' field option was changed, which may cause email messages being "
158
  "moved to the spam folder or email delivery failures."
@@ -161,7 +172,7 @@ msgstr ""
161
  "повідомлення не будуть доставлені або потраплять до папки Спам."
162
 
163
  # @ contact_form
164
- #: contact_form.php:950
165
  msgid ""
166
  "If the 'Redirect to page' option is selected then the URL field should be in "
167
  "the following format"
@@ -170,87 +181,69 @@ msgstr ""
170
  "бути заповнене в наступному форматі"
171
 
172
  # @ contact_form
173
- #: contact_form.php:957
174
  msgid "Such user does not exist."
175
  msgstr "Такого користувача не існує."
176
 
177
  # @ contact_form
178
- #: contact_form.php:967
179
  msgid ""
180
  "Please enter a valid email address in the 'Use this email address' field."
181
  msgstr ""
182
  "Будь ласка, введіть коректну email-адресу у поле 'Використовувати цей email'."
183
 
184
  # @ contact_form
185
- #: contact_form.php:975
186
  msgid "Please enter a valid email address in the 'FROM' field."
187
- msgstr "Будь ласка, введіть коректну email-адресу у полі \"Відправник\"."
188
 
189
  # @ contact_form
190
- #: contact_form.php:1000
191
  msgid "Settings are not saved."
192
  msgstr "Налаштування не збережено."
193
 
194
- #: contact_form.php:1027
195
  msgid "All plugin settings were restored."
196
  msgstr "Всі налаштування плагіну було скинуто до стандартних."
197
 
198
- #: contact_form.php:1032
199
  msgid "How to Use Step-by-step Instruction"
200
  msgstr "Покрокова інструкція з використання плагіна"
201
 
202
  # @ contact_form
203
- #: contact_form.php:1035 contact_form.php:3024 contact_form.php:3038
204
  msgid "Settings"
205
  msgstr "Налаштування"
206
 
207
  # @ contact_form
208
- #: contact_form.php:1036
209
  msgid "Additional settings"
210
  msgstr "Додаткові налаштування"
211
 
212
- #: contact_form.php:1037
213
  msgid "Appearance"
214
  msgstr "Відображення"
215
 
216
- #: contact_form.php:1038
217
  msgid "Custom code"
218
  msgstr "Користувацький код"
219
 
220
  # @ contact_form
221
- #: contact_form.php:1039
222
  msgid "Go PRO"
223
  msgstr "Перейти на Pro версію"
224
 
225
  # @ contact_form
226
- #: contact_form.php:1045
227
- msgid ""
228
- "Please enable JavaScript to add language in the contact form, change the "
229
- "names of the contact form fields and error messages."
230
- msgstr ""
231
- "Будь ласка, включіть JavaScript, для додавання мови в контактну форму, зміни "
232
- "назв полів контактної форми і повідомлень про помилки."
233
-
234
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1740
235
- msgid "Form layout"
236
- msgstr "Шаблон форми"
237
 
238
- # @ contact_form
239
- #: contact_form.php:1045 contact_form.php:1731 contact_form.php:1752
240
- msgid "Submit position"
241
- msgstr "Позиція кнопки 'Відправити'"
242
-
243
- # @ contact_form
244
- #: contact_form.php:1057
245
- msgid "Notice:"
246
- msgstr "Зауважте:"
247
-
248
- #: contact_form.php:1061
249
  msgid "NEW_FORM"
250
  msgstr "НОВА_ФОРМА"
251
 
252
  # @ contact_form
253
- #: contact_form.php:1062
254
  msgid ""
255
  "If you want to create multiple contact forms, please install the Contact "
256
  "Form Multi plugin."
@@ -259,7 +252,7 @@ msgstr ""
259
  "встановіть плагін Contact Form Multi."
260
 
261
  # @ contact_form
262
- #: contact_form.php:1071
263
  #, php-format
264
  msgid ""
265
  "If you would like to add a Contact Form to your page or post, please use %s "
@@ -268,7 +261,7 @@ msgstr ""
268
  "Якщо ви хочете додати контактну форму на вашу сторінку або пост, то "
269
  "використовуйте кнопку %s"
270
 
271
- #: contact_form.php:1077
272
  #, php-format
273
  msgid ""
274
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -282,7 +275,7 @@ msgstr ""
282
  "мову контактної форми."
283
 
284
  # @ contact_form
285
- #: contact_form.php:1086
286
  msgid ""
287
  "If you leave the fields empty, the messages will be sent to the email "
288
  "address specified during registration."
@@ -291,157 +284,156 @@ msgstr ""
291
  "адресу, вказану під час реєстрації."
292
 
293
  # @ contact_form
294
- #: contact_form.php:1089
295
- msgid "The user's email address:"
296
- msgstr "Email-адреса користувача:"
297
 
298
  # @ contact_form
299
- #: contact_form.php:1093
300
  msgid "Select a username"
301
  msgstr "Виберіть ім'я користувача"
302
 
303
  # @ contact_form
304
- #: contact_form.php:1106
305
  msgid ""
306
- "Enter a username of the person who should get the messages from the contact "
307
  "form."
308
  msgstr ""
309
- "Введіть ім'я користувача, що має отримати повідомлення з контактної форми."
310
 
311
  # @ contact_form
312
- #: contact_form.php:1110
313
- msgid "Use this email address:"
314
- msgstr "Використовувати цей email:"
315
 
316
  # @ contact_form
317
- #: contact_form.php:1114
318
- msgid "Enter the email address you want the messages forwarded to."
319
- msgstr "Вкажіть email, на який ви бажаєте отримувати повідомлення."
320
 
321
- #: contact_form.php:1121 contact_form.php:1487 contact_form.php:1679
322
- #: contact_form.php:1767 contact_form.php:3119
323
  msgid "Close"
324
  msgstr "Закрити"
325
 
326
  # @ contact_form
327
- #: contact_form.php:1125
328
- msgid "Add department selectbox to the contact form:"
329
- msgstr "Додати поле для вибору департаменту до контактної форми:"
330
 
331
  # @ contact_form
332
- #: contact_form.php:1133 contact_form.php:1496 contact_form.php:1698
333
- #: contact_form.php:1973
334
  msgid "If you upgrade to Pro version all your settings will be saved."
335
  msgstr "Якщо ви перейдете на Pro версію, всі налаштування будуть збережені."
336
 
337
  # @ contact_form
338
- #: contact_form.php:1140 contact_form.php:1407 contact_form.php:1501
339
- #: contact_form.php:1705 contact_form.php:1980
340
  msgid "Unlock premium options by upgrading to Pro version"
341
  msgstr "Зробити доступними преміум-опції, перейшовши на Pro версію"
342
 
343
  # @ contact_form
344
- #: contact_form.php:1143 contact_form.php:1410 contact_form.php:1504
345
- #: contact_form.php:1708 contact_form.php:1983 contact_form.php:3329
346
  msgid "Learn More"
347
  msgstr "Дізнатись більше"
348
 
349
  # @ contact_form
350
- #: contact_form.php:1151
351
  msgid "Save emails to the database"
352
  msgstr "Зберігати email у базі даних"
353
 
354
  # @ contact_form
355
- #: contact_form.php:1156
356
  msgid "Using"
357
  msgstr "Використовуючи"
358
 
 
 
 
 
 
359
  # @ contact_form
360
- #: contact_form.php:1159 contact_form.php:1163
361
- msgid "Using Contact Form to DB by BestWebSoft"
362
- msgstr "Використовуючи Contact Form to DB by BestWebSoft"
 
363
 
364
  # @ contact_form
365
- #: contact_form.php:1159
 
366
  msgid "Activate"
367
  msgstr "Активувати"
368
 
369
  # @ contact_form
370
- #: contact_form.php:1163
 
371
  msgid "Download"
372
  msgstr "Завантажити"
373
 
374
- # @ contact_form
375
- #: contact_form.php:1173
376
- msgid "What to use?"
377
- msgstr "Що використовувати?"
378
 
379
  # @ contact_form
380
- #: contact_form.php:1178
381
  msgid "Wp-mail"
382
  msgstr "Wp-mail"
383
 
384
  # @ contact_form
385
- #: contact_form.php:1180
386
  msgid "You can use the Wordpress wp_mail function for mailing"
387
  msgstr ""
388
  "Для відправлення повідомлень ви можете використовувати Wordpress функцію "
389
  "wp_mail"
390
 
391
  # @ contact_form
392
- #: contact_form.php:1183
393
  msgid "Mail"
394
  msgstr "Mail"
395
 
396
  # @ contact_form
397
- #: contact_form.php:1185
398
  msgid "You can use the PHP mail function for mailing"
399
  msgstr ""
400
  "Для відправлення повідомлень ви можете використовувати PHP функцію mail"
401
 
402
- #: contact_form.php:1190
403
  msgid "'FROM' field"
404
- msgstr "Поле 'Від'"
405
-
406
- # @ contact_form
407
- #: contact_form.php:1192 contact_form.php:1251 contact_form.php:1839
408
- #: contact_form.php:2810 contact_form.php:2846
409
- msgid "Name"
410
- msgstr "Ім'я"
411
 
412
  # @ contact_form
413
- #: contact_form.php:1195
414
  msgid "User name"
415
  msgstr "Ім’я користувача"
416
 
417
  # @ contact_form
418
- #: contact_form.php:1197
419
  msgid ""
420
  "The name of the user who fills the form will be used in the field 'From'."
421
  msgstr ""
422
- "Ім’я користувача, який заповнює форму, буде використано у полі \"Відправник"
423
- "\"."
424
 
425
  # @ contact_form
426
- #: contact_form.php:1202 contact_form.php:2821 contact_form.php:2853
427
  msgid "Email"
428
  msgstr "Email"
429
 
430
  # @ contact_form
431
- #: contact_form.php:1205
432
  msgid "User email"
433
  msgstr "Email користувача"
434
 
435
  # @ contact_form
436
- #: contact_form.php:1207
437
  msgid ""
438
  "The email address of the user who fills the form will be used in the field "
439
  "'From'."
440
  msgstr ""
441
- "Email користувача, який заповнює форму, буде використано у полі \"Відправник"
442
- "\"."
443
 
444
- #: contact_form.php:1210
445
  msgid ""
446
  "If this option is changed, email messages may be moved to the spam folder or "
447
  "email delivery failures may occur."
@@ -450,58 +442,58 @@ msgstr ""
450
  "доставлені або потраплять до папки Спам."
451
 
452
  # @ contact_form
453
- #: contact_form.php:1216
454
  msgid "Required symbol"
455
  msgstr "Обов'язковий символ"
456
 
457
  # @ contact_form
458
- #: contact_form.php:1226
459
  msgid "Fields"
460
  msgstr "Поля"
461
 
462
  # @ contact_form
463
- #: contact_form.php:1227 contact_form.php:1254 contact_form.php:1281
464
- #: contact_form.php:1301 contact_form.php:1340 contact_form.php:1425
465
  msgid "Used"
466
- msgstr "Що використовуються"
467
 
468
  # @ contact_form
469
- #: contact_form.php:1228 contact_form.php:1243 contact_form.php:1258
470
- #: contact_form.php:1285 contact_form.php:1305 contact_form.php:1318
471
- #: contact_form.php:1344 contact_form.php:1357 contact_form.php:1381
472
  msgid "Required"
473
- msgstr "Обов’язковий"
474
 
475
  # @ contact_form
476
- #: contact_form.php:1230 contact_form.php:1263 contact_form.php:1323
477
- #: contact_form.php:1362 contact_form.php:1386
478
  msgid "Visible"
479
- msgstr "Видимі"
480
 
481
  # @ contact_form
482
- #: contact_form.php:1231 contact_form.php:1267 contact_form.php:1327
483
- #: contact_form.php:1366 contact_form.php:1390
484
  msgid "Disabled for editing"
485
- msgstr "Заборонено для редагування"
486
 
487
  # @ contact_form
488
- #: contact_form.php:1232 contact_form.php:1291 contact_form.php:1370
489
- #: contact_form.php:1394
490
  msgid "Field's default value"
491
  msgstr "Стандартне значення поля"
492
 
493
  # @ contact_form
494
- #: contact_form.php:1239
495
  msgid "Department selectbox"
496
  msgstr "Список відділень"
497
 
498
- #: contact_form.php:1271
499
  msgid "Use User's name as a default value if the user is logged in."
500
  msgstr ""
501
  "Після входу на сайт використовувати ім'я користувача, як значення за "
502
  "замовчуванням."
503
 
504
- #: contact_form.php:1272 contact_form.php:1332
505
  msgid ""
506
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
507
  "in users."
@@ -510,151 +502,105 @@ msgstr ""
510
  "тільки для авторизованих користувачів."
511
 
512
  # @ contact_form
513
- #: contact_form.php:1278
514
  msgid "Location selectbox"
515
  msgstr "Список розміщень"
516
 
517
- # @ contact_form
518
- #: contact_form.php:1298 contact_form.php:1844 contact_form.php:2816
519
- #: contact_form.php:2850
520
- msgid "Address"
521
- msgstr "Адреса"
522
-
523
- # @ contact_form
524
- #: contact_form.php:1314
525
- msgid "Email Address"
526
- msgstr "Email"
527
-
528
- #: contact_form.php:1331
529
  msgid "Use User's email as a default value if the user is logged in."
530
  msgstr ""
531
  "Після входу на сайт, використовувати еmail користувача, як значення за "
532
  "замовчуванням."
533
 
534
  # @ contact_form
535
- #: contact_form.php:1337
536
- msgid "Phone number"
537
- msgstr "Номер телефону"
538
-
539
- # @ contact_form
540
- #: contact_form.php:1353 contact_form.php:1859 contact_form.php:2831
541
- #: contact_form.php:2859
542
- msgid "Subject"
543
- msgstr "Тема"
544
-
545
- # @ contact_form
546
- #: contact_form.php:1377 contact_form.php:1863 contact_form.php:2834
547
- #: contact_form.php:2861
548
- msgid "Message"
549
- msgstr "Повідомлення"
550
-
551
- # @ contact_form
552
- #: contact_form.php:1418
553
  msgid "Attachment block"
554
  msgstr "Блок для прикріплення файлів"
555
 
556
  # @ contact_form
557
- #: contact_form.php:1420
558
  msgid "Users can attach the following file formats"
559
  msgstr "Користувачі можуть прикріплювати файли наступних форматів"
560
 
561
  # @ contact_form
562
- #: contact_form.php:1438
563
  msgid "Add to the form"
564
  msgstr "Додати до форми"
565
 
566
  # @ contact_form
567
- #: contact_form.php:1443
568
  msgid "Tips below the Attachment"
569
  msgstr "Показувати підказки під блоком прикріплених файлів"
570
 
571
  # @ contact_form
572
- #: contact_form.php:1452
573
  msgid "'Send me a copy' block"
574
- msgstr "Показати блок 'Надіслати мені копію'"
575
-
576
- #: contact_form.php:1464
577
- msgid "Activate Subscriber"
578
- msgstr "Активувати Subscriber"
579
-
580
- #: contact_form.php:1468
581
- msgid "Download Subscriber"
582
- msgstr "Завантажити Subscriber"
583
-
584
- # @ contact_form
585
- #: contact_form.php:1477
586
- msgid "Activate Captcha"
587
- msgstr "Активувати Captcha"
588
-
589
- # @ contact_form
590
- #: contact_form.php:1481
591
- msgid "Download Captcha"
592
- msgstr "Завантажити Captcha"
593
 
594
  # @ contact_form
595
- #: contact_form.php:1491
596
  msgid "Agreement checkbox"
597
  msgstr "Чекбокс для погодження"
598
 
599
  # @ contact_form
600
- #: contact_form.php:1491
601
  msgid "Required checkbox for submitting the form"
602
  msgstr "Необхідний чекбокс для відправки форми"
603
 
604
  # @ contact_form
605
- #: contact_form.php:1492
606
  msgid "Optional checkbox"
607
  msgstr "Додатковий чекбокс"
608
 
609
  # @ contact_form
610
- #: contact_form.php:1492
611
  msgid "Optional checkbox, the results of which will be displayed in email"
612
  msgstr ""
613
  "Додатковий чекбокс, результати якого буде відображено у еmail-повідомленні"
614
 
615
  # @ contact_form
616
- #: contact_form.php:1513
617
  msgid "Delete an attachment file from the server after the email is sent"
618
  msgstr ""
619
  "Видаляти прикріплений файл з серверу після того, як повідомлення відправлено"
620
 
621
  # @ contact_form
622
- #: contact_form.php:1519
623
  msgid "Email in HTML format sending"
624
  msgstr "Відправка повідомлення в форматі HTML"
625
 
626
  # @ contact_form
627
- #: contact_form.php:1523
628
  msgid "Display additional info in the email"
629
  msgstr "Відображати додаткову інформацію у повідомленні"
630
 
631
  # @ contact_form
632
- #: contact_form.php:1529
633
  msgid "Sent from (IP address)"
634
  msgstr "Надіслано від (IP адреса)"
635
 
636
  # @ contact_form
637
- #: contact_form.php:1529
638
  msgid "Example: Sent from (IP address):\t127.0.0.1"
639
  msgstr "Приклад: Надіслано від (IP адреса):\t127.0.0.1"
640
 
641
  # @ contact_form
642
- #: contact_form.php:1530 contact_form.php:2783 contact_form.php:2785
643
  msgid "Date/Time"
644
  msgstr "Дата/Час"
645
 
646
  # @ contact_form
647
- #: contact_form.php:1530
648
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
649
  msgstr "Приклад: Дата/Час:\tСерпень 19, 2013 8:50 pm"
650
 
651
  # @ contact_form
652
- #: contact_form.php:1531 contact_form.php:2789 contact_form.php:2791
653
  msgid "Sent from (referer)"
654
  msgstr "Надіслано від (referer)"
655
 
656
  # @ contact_form
657
- #: contact_form.php:1531
658
  msgid ""
659
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
660
  msgstr ""
@@ -662,12 +608,12 @@ msgstr ""
662
  "us/"
663
 
664
  # @ contact_form
665
- #: contact_form.php:1532 contact_form.php:2795 contact_form.php:2797
666
  msgid "Using (user agent)"
667
  msgstr "Використовується (user agent)"
668
 
669
  # @ contact_form
670
- #: contact_form.php:1532
671
  msgid ""
672
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
673
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -676,76 +622,76 @@ msgstr ""
676
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
677
 
678
  # @ contact_form
679
- #: contact_form.php:1537
680
  msgid "Language settings for the field names in the form"
681
- msgstr "Налаштування мови для назв полів форми"
682
 
683
  # @ contact_form
684
- #: contact_form.php:1546
685
  msgid "Add a language"
686
  msgstr "Додати мову"
687
 
688
  # @ contact_form
689
- #: contact_form.php:1550
690
  msgid "Change the names of the contact form fields and error messages"
691
- msgstr "Змінити назви полів контактної форми і повідомлення про помилку"
692
 
693
  # @ contact_form
694
- #: contact_form.php:1555 contact_form.php:1642 contact_form.php:1887
695
- #: contact_form.php:1892 contact_form.php:1902 contact_form.php:1907
696
- #: contact_form.php:1912 contact_form.php:1917 contact_form.php:1927
697
- #: contact_form.php:1932 contact_form.php:1941 contact_form.php:1955
698
- #: contact_form.php:1960 contact_form.php:1965
699
  msgid "Default"
700
  msgstr "Стандартно"
701
 
702
  # @ contact_form
703
- #: contact_form.php:1563 contact_form.php:1597
704
  msgid "click to expand/hide the list"
705
  msgstr "натиснути, щоб розгорнути/згорнути список"
706
 
707
  # @ contact_form
708
- #: contact_form.php:1572 contact_form.php:1606
709
  msgid "Tips below the Attachment block"
710
  msgstr "Підказки під блоком прикріплення файлів"
711
 
712
  # @ contact_form
713
- #: contact_form.php:1575 contact_form.php:1609
714
  msgid "Error message for the Name field"
715
  msgstr "Повідомлення про помилку для поля Ім'я"
716
 
717
  # @ contact_form
718
- #: contact_form.php:1576 contact_form.php:1610
719
  msgid "Error message for the Address field"
720
  msgstr "Повідомлення про помилку для поля Адреса"
721
 
722
  # @ contact_form
723
- #: contact_form.php:1577 contact_form.php:1611
724
  msgid "Error message for the Email field"
725
  msgstr "Повідомлення про помилку для поля Email"
726
 
727
  # @ contact_form
728
- #: contact_form.php:1578 contact_form.php:1612
729
  msgid "Error message for the Phone field"
730
  msgstr "Повідомлення про помилку для поля Номер телефону"
731
 
732
  # @ contact_form
733
- #: contact_form.php:1579 contact_form.php:1613
734
  msgid "Error message for the Subject field"
735
  msgstr "Повідомлення про помилку для поля Тема"
736
 
737
  # @ contact_form
738
- #: contact_form.php:1580 contact_form.php:1614
739
  msgid "Error message for the Message field"
740
  msgstr "Повідомлення про помилку для поля Повідомлення"
741
 
742
  # @ contact_form
743
- #: contact_form.php:1581 contact_form.php:1615
744
  msgid "Error message about the file type for the Attachment field"
745
  msgstr "Повідомлення про помилку для поля Прикріплені файли"
746
 
747
  # @ contact_form
748
- #: contact_form.php:1582 contact_form.php:1616
749
  msgid ""
750
  "Error message while uploading a file for the Attachment field to the server"
751
  msgstr ""
@@ -753,89 +699,89 @@ msgstr ""
753
  "Прикріплені файли"
754
 
755
  # @ contact_form
756
- #: contact_form.php:1583 contact_form.php:1617
757
  msgid "Error message while moving the file for the Attachment field"
758
  msgstr ""
759
  "Повідомлення про помилку під час переміщення файлу для поля Прикріплені файли"
760
 
761
  # @ contact_form
762
- #: contact_form.php:1584 contact_form.php:1618
763
  msgid "Error message when file size limit for the Attachment field is exceeded"
764
  msgstr ""
765
  "Повідомлення про помилку для поля Прикріплені файли, коли розмір файлу "
766
  "перевищує допустимий"
767
 
768
  # @ contact_form
769
- #: contact_form.php:1585 contact_form.php:1619
770
  msgid "Error message for the Captcha field"
771
  msgstr "Повідомлення про помилку для поля Captcha"
772
 
773
  # @ contact_form
774
- #: contact_form.php:1586 contact_form.php:1620
775
  msgid "Error message for the whole form"
776
  msgstr "Повідомлення про помилку для всієї форми"
777
 
778
  # @ contact_form
779
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
780
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
781
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
782
- #: contact_form.php:3179
783
  msgid "Use shortcode"
784
- msgstr "Використовувати шорткод"
785
 
786
  # @ contact_form
787
- #: contact_form.php:1589 contact_form.php:1591 contact_form.php:1623
788
- #: contact_form.php:1625 contact_form.php:1652 contact_form.php:1654
789
- #: contact_form.php:1662 contact_form.php:1664 contact_form.php:3177
790
- #: contact_form.php:3179
791
  msgid "for this language"
792
  msgstr "для цієї мови"
793
 
794
  # @ contact_form
795
- #: contact_form.php:1633
796
  msgid "Use the changed names of the contact form fields in the email"
797
- msgstr "Використовувати змінені назви полів контактної форми у повідомленні"
798
 
799
  # @ contact_form
800
- #: contact_form.php:1639
801
  msgid "Action after email is sent"
802
  msgstr "Дія після відправлення листа з контактної форми"
803
 
804
  # @ contact_form
805
- #: contact_form.php:1641
806
  msgid "Display text"
807
  msgstr "Показати текст"
808
 
809
  # @ contact_form
810
- #: contact_form.php:1650 contact_form.php:1660
811
  msgid "Text"
812
  msgstr "Текст"
813
 
814
  # @ contact_form
815
- #: contact_form.php:1671
816
  msgid "Redirect to the page"
817
  msgstr "Перенаправлення на сторінку"
818
 
819
  # @ contact_form
820
- #: contact_form.php:1672
821
  msgid "Url"
822
  msgstr "Посилання"
823
 
824
- #: contact_form.php:1683
825
  msgid "Add field 'Reply-To' to the email header"
826
- msgstr "Додати поле 'Reply-To' в заголовок еmail"
827
 
828
- #: contact_form.php:1685
829
  msgid "Field 'Reply-To' will be initialized by user email"
830
- msgstr "Поле 'Reply-To' буде проініціалізовано email користувача"
831
 
832
  # @ contact_form
833
- #: contact_form.php:1689
834
  msgid "Auto Response"
835
  msgstr "Автовідповідь"
836
 
837
  # @ contact_form
838
- #: contact_form.php:1693
839
  #, php-format
840
  msgid ""
841
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -847,11 +793,11 @@ msgstr ""
847
  "відображення назви блогу."
848
 
849
  # @ default
850
- #: contact_form.php:1718 contact_form.php:2213
851
  msgid "Save Changes"
852
  msgstr "Зберегти зміни"
853
 
854
- #: contact_form.php:1731
855
  #, php-format
856
  msgid ""
857
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
@@ -859,231 +805,230 @@ msgstr ""
859
  "Будь ласка, включіть JavaScript для зміни опцій '%s', '%s' і сортування "
860
  "полів."
861
 
862
- #: contact_form.php:1744
 
 
 
 
 
 
 
 
 
863
  msgid "One column"
864
  msgstr "Одна колонка"
865
 
866
- #: contact_form.php:1747
867
  msgid "Two columns"
868
  msgstr "Дві колонки"
869
 
870
- #: contact_form.php:1756 contact_form.php:1775 contact_form.php:1793
871
- #: contact_form.php:1808
872
  msgid "Left"
873
- msgstr "Зліва"
874
 
875
- #: contact_form.php:1759 contact_form.php:1781 contact_form.php:1796
876
- #: contact_form.php:1814
877
  msgid "Right"
878
  msgstr "Праворуч"
879
 
880
- #: contact_form.php:1771
881
  msgid "Form align"
882
  msgstr "Вирівнювання форми"
883
 
884
- #: contact_form.php:1778 contact_form.php:1811
885
  msgid "Center"
886
  msgstr "По центру"
887
 
888
  # @ contact_form
889
- #: contact_form.php:1786
890
  msgid "Labels position"
891
- msgstr "Позиція лейблів"
892
 
893
- #: contact_form.php:1790
894
  msgid "Top"
895
  msgstr "Зверху"
896
 
897
- #: contact_form.php:1799
898
  msgid "Bottom"
899
  msgstr "Знизу"
900
 
901
- #: contact_form.php:1804
902
  msgid "Labels align"
903
- msgstr "Вирівнювання лейблів"
904
 
905
  # @ contact_form
906
- #: contact_form.php:1819
907
  msgid "Errors output"
908
  msgstr "Відображення помилок"
909
 
910
  # @ contact_form
911
- #: contact_form.php:1822
912
  msgid "Display error messages"
913
  msgstr "Відображати повідомлення про помилки"
914
 
915
  # @ contact_form
916
- #: contact_form.php:1823
917
  msgid "Color of the input field errors."
918
  msgstr "Колір для помилок у полях введення."
919
 
920
  # @ contact_form
921
- #: contact_form.php:1824
922
  msgid "Display error messages & color of the input field errors"
923
  msgstr ""
924
  "Відображення повідомлень про помилку і колір для полів з помилками у полях "
925
  "введення"
926
 
927
  # @ contact_form
928
- #: contact_form.php:1829
929
  msgid "Add placeholder to the input blocks"
930
- msgstr "Додати текст заміщення для блоків введення"
931
 
932
  # @ contact_form
933
- #: contact_form.php:1835
934
  msgid "Add tooltips"
935
  msgstr "Додати підказки"
936
 
937
  # @ contact_form
938
- #: contact_form.php:1849
939
  msgid "Email address"
940
  msgstr "Email"
941
 
942
  # @ contact_form
943
- #: contact_form.php:1854
944
  msgid "Phone Number"
945
  msgstr "Номер телефону"
946
 
947
  # @ contact_form
948
- #: contact_form.php:1868
949
- msgid "Attachment"
950
- msgstr "Вкладений файл"
951
-
952
- # @ contact_form
953
- #: contact_form.php:1880
954
  msgid "Style options"
955
  msgstr "Опції стилю"
956
 
957
  # @ contact_form
958
- #: contact_form.php:1884
959
  msgid "Text color"
960
  msgstr "Колір тексту"
961
 
962
  # @ contact_form
963
- #: contact_form.php:1889
964
  msgid "Label text color"
965
  msgstr "Колір написів"
966
 
967
  # @ contact_form
968
- #: contact_form.php:1894
969
  msgid "Placeholder color"
970
- msgstr "Колір тексту заміщення"
971
 
972
  # @ contact_form
973
- #: contact_form.php:1899
974
  msgid "Errors color"
975
  msgstr "Колір помилок"
976
 
977
  # @ contact_form
978
- #: contact_form.php:1904
979
  msgid "Error text color"
980
  msgstr "Колір тексту помилок"
981
 
982
  # @ contact_form
983
- #: contact_form.php:1909
984
  msgid "Background color of the input field errors"
985
  msgstr "Колір заднього фону для полів введення з помилками"
986
 
987
  # @ contact_form
988
- #: contact_form.php:1914
989
  msgid "Border color of the input field errors"
990
  msgstr "Колір рамки для полів введення з помилками"
991
 
992
  # @ contact_form
993
- #: contact_form.php:1919
994
  msgid "Placeholder color of the input field errors"
995
- msgstr "Колір тексту заміщення для полів введення з помилками"
996
 
997
  # @ contact_form
998
- #: contact_form.php:1924
999
  msgid "Input fields"
1000
  msgstr "Поля введення тексту"
1001
 
1002
  # @ contact_form
1003
- #: contact_form.php:1929
1004
  msgid "Input fields background color"
1005
  msgstr "Колір фону полів введення"
1006
 
1007
  # @ contact_form
1008
- #: contact_form.php:1934
1009
  msgid "Text fields color"
1010
  msgstr "Колір текстових полів"
1011
 
1012
  # @ contact_form
1013
- #: contact_form.php:1938
1014
  msgid "Border width in px, numbers only"
1015
  msgstr "Ширина рамки в пікселях, тільки числа"
1016
 
1017
  # @ contact_form
1018
- #: contact_form.php:1943 contact_form.php:1967
1019
  msgid "Border color"
1020
  msgstr "Колір рамки"
1021
 
1022
  # @ contact_form
1023
- #: contact_form.php:1948
1024
  msgid "Submit button"
1025
  msgstr "Кнопка підтвердження"
1026
 
1027
  # @ contact_form
1028
- #: contact_form.php:1952
1029
  msgid "Width in px, numbers only"
1030
  msgstr "Ширина в пікселях, тільки числа"
1031
 
1032
  # @ contact_form
1033
- #: contact_form.php:1957
1034
  msgid "Button color"
1035
  msgstr "Колір кнопок"
1036
 
1037
  # @ contact_form
1038
- #: contact_form.ph
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-12 16:27+0300\n"
6
+ "PO-Revision-Date: 2016-07-12 17:17+0300\n"
7
  "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: The BestWebSoft Team <plugin@bestwebsoft.com>\n"
9
  "Language: uk\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  # @ contact_form
21
+ #: contact_form.php:37 contact_form.php:1118
22
  msgid "Contact Form Settings"
23
  msgstr "Налаштування Contact Form"
24
 
28
  msgstr "Contact Form"
29
 
30
  # @ contact_form
31
+ #: contact_form.php:167 contact_form.php:1294 contact_form.php:1353
32
+ #: contact_form.php:1746 contact_form.php:1784 contact_form.php:2033
33
+ #: contact_form.php:3113 contact_form.php:3159
34
+ msgid "Name"
35
+ msgstr "Ім'я"
36
 
37
  # @ contact_form
38
+ #: contact_form.php:168 contact_form.php:1400 contact_form.php:1747
39
+ #: contact_form.php:1785 contact_form.php:2038 contact_form.php:3120
40
+ #: contact_form.php:3165
41
+ msgid "Address"
42
+ msgstr "Адреса"
43
 
44
  # @ contact_form
45
+ #: contact_form.php:169 contact_form.php:1416 contact_form.php:1748
46
+ #: contact_form.php:1786
47
+ msgid "Email Address"
48
+ msgstr "Email"
49
 
50
  # @ contact_form
51
+ #: contact_form.php:170 contact_form.php:1439 contact_form.php:1749
52
+ #: contact_form.php:1787
53
+ msgid "Phone number"
54
+ msgstr "Номер телефону"
55
 
56
  # @ contact_form
57
+ #: contact_form.php:171 contact_form.php:1455 contact_form.php:1750
58
+ #: contact_form.php:1788 contact_form.php:2053 contact_form.php:3131
59
+ #: contact_form.php:3174
60
+ msgid "Subject"
61
+ msgstr "Тема"
62
 
63
  # @ contact_form
64
+ #: contact_form.php:172 contact_form.php:1479 contact_form.php:1751
65
+ #: contact_form.php:1789 contact_form.php:2057 contact_form.php:3136
66
+ #: contact_form.php:3178
67
+ msgid "Message"
68
+ msgstr "Повідомлення"
69
 
70
  # @ contact_form
71
+ #: contact_form.php:173 contact_form.php:1752 contact_form.php:1790
72
+ #: contact_form.php:2062
73
+ msgid "Attachment"
74
+ msgstr "Вкладений файл"
75
 
76
  # @ contact_form
77
+ #: contact_form.php:174
78
  msgid ""
79
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
80
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
84
  "PPT."
85
 
86
  # @ contact_form
87
+ #: contact_form.php:175 contact_form.php:1754 contact_form.php:1792
88
  msgid "Send me a copy"
89
  msgstr "Надіслати мені копію"
90
 
91
  # @ contact_form
92
+ #: contact_form.php:176 contact_form.php:1755 contact_form.php:1793
93
  msgid "Submit"
94
  msgstr "Підтвердити"
95
 
96
  # @ contact_form
97
+ #: contact_form.php:177
98
  msgid "Your name is required."
99
  msgstr "Необхідно вказати своє ім'я."
100
 
101
  # @ contact_form
102
+ #: contact_form.php:178
103
  msgid "Address is required."
104
  msgstr "Необхідно вказати свою адресу"
105
 
106
  # @ contact_form
107
+ #: contact_form.php:179
108
  msgid "A valid email address is required."
109
  msgstr "Необхідно вказати коректну email-адресу."
110
 
111
  # @ contact_form
112
+ #: contact_form.php:180
113
  msgid "Phone number is required."
114
  msgstr "Необхідно вказати номер телефону."
115
 
116
  # @ contact_form
117
+ #: contact_form.php:181
118
  msgid "Subject is required."
119
  msgstr "Необхідно вказати тему."
120
 
121
  # @ contact_form
122
+ #: contact_form.php:182
123
  msgid "Message text is required."
124
  msgstr "Повідомлення не може бути порожнім."
125
 
126
  # @ contact_form
127
+ #: contact_form.php:183
128
  msgid "File format is not valid."
129
  msgstr "Некоректний формат файлу."
130
 
131
  # @ contact_form
132
+ #: contact_form.php:184
133
  msgid "File upload error."
134
  msgstr "Помилка завантаження файлу."
135
 
136
  # @ contact_form
137
+ #: contact_form.php:185
138
  msgid "The file could not be uploaded."
139
  msgstr "Неможна завантажити файл."
140
 
141
  # @ contact_form
142
+ #: contact_form.php:186
143
  msgid "This file is too large."
144
  msgstr "Файл занадто великий."
145
 
146
  # @ contact_form
147
+ #: contact_form.php:187
148
  msgid "Please fill out the CAPTCHA."
149
  msgstr "Будь ласка, введіть CAPTCHA."
150
 
151
  # @ contact_form
152
+ #: contact_form.php:188
153
  msgid "Please make corrections below and try again."
154
  msgstr "Будь ласка, внесіть поправки у виділені поля і спробуйте знову."
155
 
156
  # @ contact_form
157
+ #: contact_form.php:190
158
  msgid "Thank you for contacting us."
159
  msgstr "Дякуємо, що зв'язалися з нами."
160
 
161
  # @ contact_form
162
+ #: contact_form.php:824 contact_form.php:1076
163
  msgid "Settings saved."
164
  msgstr "Налаштування збережено."
165
 
166
+ #: contact_form.php:1021
167
  msgid ""
168
  "Email 'FROM' field option was changed, which may cause email messages being "
169
  "moved to the spam folder or email delivery failures."
172
  "повідомлення не будуть доставлені або потраплять до папки Спам."
173
 
174
  # @ contact_form
175
+ #: contact_form.php:1031
176
  msgid ""
177
  "If the 'Redirect to page' option is selected then the URL field should be in "
178
  "the following format"
181
  "бути заповнене в наступному форматі"
182
 
183
  # @ contact_form
184
+ #: contact_form.php:1038
185
  msgid "Such user does not exist."
186
  msgstr "Такого користувача не існує."
187
 
188
  # @ contact_form
189
+ #: contact_form.php:1048
190
  msgid ""
191
  "Please enter a valid email address in the 'Use this email address' field."
192
  msgstr ""
193
  "Будь ласка, введіть коректну email-адресу у поле 'Використовувати цей email'."
194
 
195
  # @ contact_form
196
+ #: contact_form.php:1056
197
  msgid "Please enter a valid email address in the 'FROM' field."
198
+ msgstr "Будь ласка, введіть коректну email-адресу у полі \"Від\"."
199
 
200
  # @ contact_form
201
+ #: contact_form.php:1078
202
  msgid "Settings are not saved."
203
  msgstr "Налаштування не збережено."
204
 
205
+ #: contact_form.php:1115
206
  msgid "All plugin settings were restored."
207
  msgstr "Всі налаштування плагіну було скинуто до стандартних."
208
 
209
+ #: contact_form.php:1120
210
  msgid "How to Use Step-by-step Instruction"
211
  msgstr "Покрокова інструкція з використання плагіна"
212
 
213
  # @ contact_form
214
+ #: contact_form.php:1123 contact_form.php:3351 contact_form.php:3365
215
  msgid "Settings"
216
  msgstr "Налаштування"
217
 
218
  # @ contact_form
219
+ #: contact_form.php:1124
220
  msgid "Additional settings"
221
  msgstr "Додаткові налаштування"
222
 
223
+ #: contact_form.php:1125
224
  msgid "Appearance"
225
  msgstr "Відображення"
226
 
227
+ #: contact_form.php:1126
228
  msgid "Custom code"
229
  msgstr "Користувацький код"
230
 
231
  # @ contact_form
232
+ #: contact_form.php:1127
233
  msgid "Go PRO"
234
  msgstr "Перейти на Pro версію"
235
 
236
  # @ contact_form
237
+ #: contact_form.php:1136
238
+ msgid "Notice"
239
+ msgstr "Зауважте"
 
 
 
 
 
 
 
 
240
 
241
+ #: contact_form.php:1140
 
 
 
 
 
 
 
 
 
 
242
  msgid "NEW_FORM"
243
  msgstr "НОВА_ФОРМА"
244
 
245
  # @ contact_form
246
+ #: contact_form.php:1141
247
  msgid ""
248
  "If you want to create multiple contact forms, please install the Contact "
249
  "Form Multi plugin."
252
  "встановіть плагін Contact Form Multi."
253
 
254
  # @ contact_form
255
+ #: contact_form.php:1150
256
  #, php-format
257
  msgid ""
258
  "If you would like to add a Contact Form to your page or post, please use %s "
261
  "Якщо ви хочете додати контактну форму на вашу сторінку або пост, то "
262
  "використовуйте кнопку %s"
263
 
264
+ #: contact_form.php:1156
265
  #, php-format
266
  msgid ""
267
  "You can add the Contact Form to your page or post by clicking on %s button "
275
  "мову контактної форми."
276
 
277
  # @ contact_form
278
+ #: contact_form.php:1165
279
  msgid ""
280
  "If you leave the fields empty, the messages will be sent to the email "
281
  "address specified during registration."
284
  "адресу, вказану під час реєстрації."
285
 
286
  # @ contact_form
287
+ #: contact_form.php:1168
288
+ msgid "The user's email address"
289
+ msgstr "Email-адреса користувача"
290
 
291
  # @ contact_form
292
+ #: contact_form.php:1172
293
  msgid "Select a username"
294
  msgstr "Виберіть ім'я користувача"
295
 
296
  # @ contact_form
297
+ #: contact_form.php:1185
298
  msgid ""
299
+ "Select a username of the person who should get the messages from the contact "
300
  "form."
301
  msgstr ""
302
+ "Виберіть ім'я користувача, що має отримати повідомлення з контактної форми."
303
 
304
  # @ contact_form
305
+ #: contact_form.php:1189
306
+ msgid "Use this email address"
307
+ msgstr "Використовувати цей email"
308
 
309
  # @ contact_form
310
+ #: contact_form.php:1193
311
+ msgid "Enter the email address for receiving messages"
312
+ msgstr "Вкажіть email, на який ви бажаєте отримувати повідомлення"
313
 
314
+ #: contact_form.php:1200 contact_form.php:1663 contact_form.php:1873
315
+ #: contact_form.php:1961 contact_form.php:3446
316
  msgid "Close"
317
  msgstr "Закрити"
318
 
319
  # @ contact_form
320
+ #: contact_form.php:1204
321
+ msgid "Add department selectbox to the contact form"
322
+ msgstr "Додати поле для вибору департаменту до контактної форми"
323
 
324
  # @ contact_form
325
+ #: contact_form.php:1212 contact_form.php:1672 contact_form.php:1892
326
+ #: contact_form.php:2167
327
  msgid "If you upgrade to Pro version all your settings will be saved."
328
  msgstr "Якщо ви перейдете на Pro версію, всі налаштування будуть збережені."
329
 
330
  # @ contact_form
331
+ #: contact_form.php:1219 contact_form.php:1509 contact_form.php:1677
332
+ #: contact_form.php:1899 contact_form.php:2174
333
  msgid "Unlock premium options by upgrading to Pro version"
334
  msgstr "Зробити доступними преміум-опції, перейшовши на Pro версію"
335
 
336
  # @ contact_form
337
+ #: contact_form.php:1222 contact_form.php:1512 contact_form.php:1680
338
+ #: contact_form.php:1902 contact_form.php:2177 contact_form.php:3672
339
  msgid "Learn More"
340
  msgstr "Дізнатись більше"
341
 
342
  # @ contact_form
343
+ #: contact_form.php:1230
344
  msgid "Save emails to the database"
345
  msgstr "Зберігати email у базі даних"
346
 
347
  # @ contact_form
348
+ #: contact_form.php:1241 contact_form.php:1255 contact_form.php:1262
349
  msgid "Using"
350
  msgstr "Використовуючи"
351
 
352
+ #: contact_form.php:1247 contact_form.php:1572 contact_form.php:1605
353
+ #: contact_form.php:1640
354
+ msgid "Please activate the appropriate option on"
355
+ msgstr "Будь ласка, активуйте вiдповiдну опцiю на сторiнцi налаштувань"
356
+
357
  # @ contact_form
358
+ #: contact_form.php:1250 contact_form.php:1575 contact_form.php:1608
359
+ #: contact_form.php:1643
360
+ msgid "settings page"
361
+ msgstr " "
362
 
363
  # @ contact_form
364
+ #: contact_form.php:1256 contact_form.php:1581 contact_form.php:1615
365
+ #: contact_form.php:1651
366
  msgid "Activate"
367
  msgstr "Активувати"
368
 
369
  # @ contact_form
370
+ #: contact_form.php:1263 contact_form.php:1587 contact_form.php:1621
371
+ #: contact_form.php:1656
372
  msgid "Download"
373
  msgstr "Завантажити"
374
 
375
+ #: contact_form.php:1275
376
+ msgid "Sending method"
377
+ msgstr "Метод відправки"
 
378
 
379
  # @ contact_form
380
+ #: contact_form.php:1280
381
  msgid "Wp-mail"
382
  msgstr "Wp-mail"
383
 
384
  # @ contact_form
385
+ #: contact_form.php:1282
386
  msgid "You can use the Wordpress wp_mail function for mailing"
387
  msgstr ""
388
  "Для відправлення повідомлень ви можете використовувати Wordpress функцію "
389
  "wp_mail"
390
 
391
  # @ contact_form
392
+ #: contact_form.php:1285
393
  msgid "Mail"
394
  msgstr "Mail"
395
 
396
  # @ contact_form
397
+ #: contact_form.php:1287
398
  msgid "You can use the PHP mail function for mailing"
399
  msgstr ""
400
  "Для відправлення повідомлень ви можете використовувати PHP функцію mail"
401
 
402
+ #: contact_form.php:1292
403
  msgid "'FROM' field"
404
+ msgstr "Поле \"Від\""
 
 
 
 
 
 
405
 
406
  # @ contact_form
407
+ #: contact_form.php:1297
408
  msgid "User name"
409
  msgstr "Ім’я користувача"
410
 
411
  # @ contact_form
412
+ #: contact_form.php:1299
413
  msgid ""
414
  "The name of the user who fills the form will be used in the field 'From'."
415
  msgstr ""
416
+ "Ім’я користувача, який заповнює форму, буде використано у полі \"Від\"."
 
417
 
418
  # @ contact_form
419
+ #: contact_form.php:1304 contact_form.php:3126 contact_form.php:3170
420
  msgid "Email"
421
  msgstr "Email"
422
 
423
  # @ contact_form
424
+ #: contact_form.php:1307
425
  msgid "User email"
426
  msgstr "Email користувача"
427
 
428
  # @ contact_form
429
+ #: contact_form.php:1309
430
  msgid ""
431
  "The email address of the user who fills the form will be used in the field "
432
  "'From'."
433
  msgstr ""
434
+ "Email користувача, який заповнює форму, буде використано у полі \"Від\"."
 
435
 
436
+ #: contact_form.php:1312
437
  msgid ""
438
  "If this option is changed, email messages may be moved to the spam folder or "
439
  "email delivery failures may occur."
442
  "доставлені або потраплять до папки Спам."
443
 
444
  # @ contact_form
445
+ #: contact_form.php:1318
446
  msgid "Required symbol"
447
  msgstr "Обов'язковий символ"
448
 
449
  # @ contact_form
450
+ #: contact_form.php:1328
451
  msgid "Fields"
452
  msgstr "Поля"
453
 
454
  # @ contact_form
455
+ #: contact_form.php:1329 contact_form.php:1356 contact_form.php:1383
456
+ #: contact_form.php:1403 contact_form.php:1442 contact_form.php:1527
457
  msgid "Used"
458
+ msgstr "Використовується"
459
 
460
  # @ contact_form
461
+ #: contact_form.php:1330 contact_form.php:1345 contact_form.php:1360
462
+ #: contact_form.php:1387 contact_form.php:1407 contact_form.php:1420
463
+ #: contact_form.php:1446 contact_form.php:1459 contact_form.php:1483
464
  msgid "Required"
465
+ msgstr "Обов'язковий"
466
 
467
  # @ contact_form
468
+ #: contact_form.php:1332 contact_form.php:1365 contact_form.php:1425
469
+ #: contact_form.php:1464 contact_form.php:1488
470
  msgid "Visible"
471
+ msgstr "Видимий"
472
 
473
  # @ contact_form
474
+ #: contact_form.php:1333 contact_form.php:1369 contact_form.php:1429
475
+ #: contact_form.php:1468 contact_form.php:1492
476
  msgid "Disabled for editing"
477
+ msgstr "Заборонити для редагування"
478
 
479
  # @ contact_form
480
+ #: contact_form.php:1334 contact_form.php:1393 contact_form.php:1472
481
+ #: contact_form.php:1496
482
  msgid "Field's default value"
483
  msgstr "Стандартне значення поля"
484
 
485
  # @ contact_form
486
+ #: contact_form.php:1341
487
  msgid "Department selectbox"
488
  msgstr "Список відділень"
489
 
490
+ #: contact_form.php:1373
491
  msgid "Use User's name as a default value if the user is logged in."
492
  msgstr ""
493
  "Після входу на сайт використовувати ім'я користувача, як значення за "
494
  "замовчуванням."
495
 
496
+ #: contact_form.php:1374 contact_form.php:1434
497
  msgid ""
498
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
499
  "in users."
502
  "тільки для авторизованих користувачів."
503
 
504
  # @ contact_form
505
+ #: contact_form.php:1380
506
  msgid "Location selectbox"
507
  msgstr "Список розміщень"
508
 
509
+ #: contact_form.php:1433
 
 
 
 
 
 
 
 
 
 
 
510
  msgid "Use User's email as a default value if the user is logged in."
511
  msgstr ""
512
  "Після входу на сайт, використовувати еmail користувача, як значення за "
513
  "замовчуванням."
514
 
515
  # @ contact_form
516
+ #: contact_form.php:1520
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
517
  msgid "Attachment block"
518
  msgstr "Блок для прикріплення файлів"
519
 
520
  # @ contact_form
521
+ #: contact_form.php:1522
522
  msgid "Users can attach the following file formats"
523
  msgstr "Користувачі можуть прикріплювати файли наступних форматів"
524
 
525
  # @ contact_form
526
+ #: contact_form.php:1540
527
  msgid "Add to the form"
528
  msgstr "Додати до форми"
529
 
530
  # @ contact_form
531
+ #: contact_form.php:1545
532
  msgid "Tips below the Attachment"
533
  msgstr "Показувати підказки під блоком прикріплених файлів"
534
 
535
  # @ contact_form
536
+ #: contact_form.php:1554
537
  msgid "'Send me a copy' block"
538
+ msgstr "Блок \"Надіслати мені копію\""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
539
 
540
  # @ contact_form
541
+ #: contact_form.php:1667
542
  msgid "Agreement checkbox"
543
  msgstr "Чекбокс для погодження"
544
 
545
  # @ contact_form
546
+ #: contact_form.php:1667
547
  msgid "Required checkbox for submitting the form"
548
  msgstr "Необхідний чекбокс для відправки форми"
549
 
550
  # @ contact_form
551
+ #: contact_form.php:1668
552
  msgid "Optional checkbox"
553
  msgstr "Додатковий чекбокс"
554
 
555
  # @ contact_form
556
+ #: contact_form.php:1668
557
  msgid "Optional checkbox, the results of which will be displayed in email"
558
  msgstr ""
559
  "Додатковий чекбокс, результати якого буде відображено у еmail-повідомленні"
560
 
561
  # @ contact_form
562
+ #: contact_form.php:1689
563
  msgid "Delete an attachment file from the server after the email is sent"
564
  msgstr ""
565
  "Видаляти прикріплений файл з серверу після того, як повідомлення відправлено"
566
 
567
  # @ contact_form
568
+ #: contact_form.php:1695
569
  msgid "Email in HTML format sending"
570
  msgstr "Відправка повідомлення в форматі HTML"
571
 
572
  # @ contact_form
573
+ #: contact_form.php:1699
574
  msgid "Display additional info in the email"
575
  msgstr "Відображати додаткову інформацію у повідомленні"
576
 
577
  # @ contact_form
578
+ #: contact_form.php:1705
579
  msgid "Sent from (IP address)"
580
  msgstr "Надіслано від (IP адреса)"
581
 
582
  # @ contact_form
583
+ #: contact_form.php:1705
584
  msgid "Example: Sent from (IP address):\t127.0.0.1"
585
  msgstr "Приклад: Надіслано від (IP адреса):\t127.0.0.1"
586
 
587
  # @ contact_form
588
+ #: contact_form.php:1706 contact_form.php:3075 contact_form.php:3077
589
  msgid "Date/Time"
590
  msgstr "Дата/Час"
591
 
592
  # @ contact_form
593
+ #: contact_form.php:1706
594
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
595
  msgstr "Приклад: Дата/Час:\tСерпень 19, 2013 8:50 pm"
596
 
597
  # @ contact_form
598
+ #: contact_form.php:1707 contact_form.php:3081 contact_form.php:3083
599
  msgid "Sent from (referer)"
600
  msgstr "Надіслано від (referer)"
601
 
602
  # @ contact_form
603
+ #: contact_form.php:1707
604
  msgid ""
605
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
606
  msgstr ""
608
  "us/"
609
 
610
  # @ contact_form
611
+ #: contact_form.php:1708 contact_form.php:3087 contact_form.php:3089
612
  msgid "Using (user agent)"
613
  msgstr "Використовується (user agent)"
614
 
615
  # @ contact_form
616
+ #: contact_form.php:1708
617
  msgid ""
618
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
619
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
622
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
623
 
624
  # @ contact_form
625
+ #: contact_form.php:1713
626
  msgid "Language settings for the field names in the form"
627
+ msgstr "Налаштування мови для імен полів форми"
628
 
629
  # @ contact_form
630
+ #: contact_form.php:1722
631
  msgid "Add a language"
632
  msgstr "Додати мову"
633
 
634
  # @ contact_form
635
+ #: contact_form.php:1726
636
  msgid "Change the names of the contact form fields and error messages"
637
+ msgstr "Змінити імена полів контактної форми і повідомлення про помилку"
638
 
639
  # @ contact_form
640
+ #: contact_form.php:1731 contact_form.php:1827 contact_form.php:2081
641
+ #: contact_form.php:2086 contact_form.php:2096 contact_form.php:2101
642
+ #: contact_form.php:2106 contact_form.php:2111 contact_form.php:2121
643
+ #: contact_form.php:2126 contact_form.php:2135 contact_form.php:2149
644
+ #: contact_form.php:2154 contact_form.php:2159
645
  msgid "Default"
646
  msgstr "Стандартно"
647
 
648
  # @ contact_form
649
+ #: contact_form.php:1744 contact_form.php:1782
650
  msgid "click to expand/hide the list"
651
  msgstr "натиснути, щоб розгорнути/згорнути список"
652
 
653
  # @ contact_form
654
+ #: contact_form.php:1753 contact_form.php:1791
655
  msgid "Tips below the Attachment block"
656
  msgstr "Підказки під блоком прикріплення файлів"
657
 
658
  # @ contact_form
659
+ #: contact_form.php:1756 contact_form.php:1794
660
  msgid "Error message for the Name field"
661
  msgstr "Повідомлення про помилку для поля Ім'я"
662
 
663
  # @ contact_form
664
+ #: contact_form.php:1757 contact_form.php:1795
665
  msgid "Error message for the Address field"
666
  msgstr "Повідомлення про помилку для поля Адреса"
667
 
668
  # @ contact_form
669
+ #: contact_form.php:1758 contact_form.php:1796
670
  msgid "Error message for the Email field"
671
  msgstr "Повідомлення про помилку для поля Email"
672
 
673
  # @ contact_form
674
+ #: contact_form.php:1759 contact_form.php:1797
675
  msgid "Error message for the Phone field"
676
  msgstr "Повідомлення про помилку для поля Номер телефону"
677
 
678
  # @ contact_form
679
+ #: contact_form.php:1760 contact_form.php:1798
680
  msgid "Error message for the Subject field"
681
  msgstr "Повідомлення про помилку для поля Тема"
682
 
683
  # @ contact_form
684
+ #: contact_form.php:1761 contact_form.php:1799
685
  msgid "Error message for the Message field"
686
  msgstr "Повідомлення про помилку для поля Повідомлення"
687
 
688
  # @ contact_form
689
+ #: contact_form.php:1762 contact_form.php:1800
690
  msgid "Error message about the file type for the Attachment field"
691
  msgstr "Повідомлення про помилку для поля Прикріплені файли"
692
 
693
  # @ contact_form
694
+ #: contact_form.php:1763 contact_form.php:1801
695
  msgid ""
696
  "Error message while uploading a file for the Attachment field to the server"
697
  msgstr ""
699
  "Прикріплені файли"
700
 
701
  # @ contact_form
702
+ #: contact_form.php:1764 contact_form.php:1802
703
  msgid "Error message while moving the file for the Attachment field"
704
  msgstr ""
705
  "Повідомлення про помилку під час переміщення файлу для поля Прикріплені файли"
706
 
707
  # @ contact_form
708
+ #: contact_form.php:1765 contact_form.php:1803
709
  msgid "Error message when file size limit for the Attachment field is exceeded"
710
  msgstr ""
711
  "Повідомлення про помилку для поля Прикріплені файли, коли розмір файлу "
712
  "перевищує допустимий"
713
 
714
  # @ contact_form
715
+ #: contact_form.php:1766 contact_form.php:1804
716
  msgid "Error message for the Captcha field"
717
  msgstr "Повідомлення про помилку для поля Captcha"
718
 
719
  # @ contact_form
720
+ #: contact_form.php:1767 contact_form.php:1805
721
  msgid "Error message for the whole form"
722
  msgstr "Повідомлення про помилку для всієї форми"
723
 
724
  # @ contact_form
725
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
726
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
727
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
728
+ #: contact_form.php:3516
729
  msgid "Use shortcode"
730
+ msgstr "Використовуйте шорткод"
731
 
732
  # @ contact_form
733
+ #: contact_form.php:1770 contact_form.php:1772 contact_form.php:1808
734
+ #: contact_form.php:1810 contact_form.php:1842 contact_form.php:1844
735
+ #: contact_form.php:1856 contact_form.php:1858 contact_form.php:3514
736
+ #: contact_form.php:3516
737
  msgid "for this language"
738
  msgstr "для цієї мови"
739
 
740
  # @ contact_form
741
+ #: contact_form.php:1818
742
  msgid "Use the changed names of the contact form fields in the email"
743
+ msgstr "Використовувати змінені імена полів контактної форми у повідомленні"
744
 
745
  # @ contact_form
746
+ #: contact_form.php:1824
747
  msgid "Action after email is sent"
748
  msgstr "Дія після відправлення листа з контактної форми"
749
 
750
  # @ contact_form
751
+ #: contact_form.php:1826
752
  msgid "Display text"
753
  msgstr "Показати текст"
754
 
755
  # @ contact_form
756
+ #: contact_form.php:1840 contact_form.php:1854
757
  msgid "Text"
758
  msgstr "Текст"
759
 
760
  # @ contact_form
761
+ #: contact_form.php:1865
762
  msgid "Redirect to the page"
763
  msgstr "Перенаправлення на сторінку"
764
 
765
  # @ contact_form
766
+ #: contact_form.php:1866
767
  msgid "Url"
768
  msgstr "Посилання"
769
 
770
+ #: contact_form.php:1877
771
  msgid "Add field 'Reply-To' to the email header"
772
+ msgstr "Додати поле 'Reply-To' до заголовку еmail"
773
 
774
+ #: contact_form.php:1879
775
  msgid "Field 'Reply-To' will be initialized by user email"
776
+ msgstr "Поле 'Reply-To' буде проініціалізовано електронною поштою користувача"
777
 
778
  # @ contact_form
779
+ #: contact_form.php:1883
780
  msgid "Auto Response"
781
  msgstr "Автовідповідь"
782
 
783
  # @ contact_form
784
+ #: contact_form.php:1887
785
  #, php-format
786
  msgid ""
787
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
793
  "відображення назви блогу."
794
 
795
  # @ default
796
+ #: contact_form.php:1912 contact_form.php:2398
797
  msgid "Save Changes"
798
  msgstr "Зберегти зміни"
799
 
800
+ #: contact_form.php:1925
801
  #, php-format
802
  msgid ""
803
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
805
  "Будь ласка, включіть JavaScript для зміни опцій '%s', '%s' і сортування "
806
  "полів."
807
 
808
+ #: contact_form.php:1925 contact_form.php:1934
809
+ msgid "Form layout"
810
+ msgstr "Шаблон форми"
811
+
812
+ # @ contact_form
813
+ #: contact_form.php:1925 contact_form.php:1946
814
+ msgid "Submit position"
815
+ msgstr "Позиція кнопки 'Відправити'"
816
+
817
+ #: contact_form.php:1938
818
  msgid "One column"
819
  msgstr "Одна колонка"
820
 
821
+ #: contact_form.php:1941
822
  msgid "Two columns"
823
  msgstr "Дві колонки"
824
 
825
+ #: contact_form.php:1950 contact_form.php:1969 contact_form.php:1987
826
+ #: contact_form.php:2002
827
  msgid "Left"
828
+ msgstr "Ліворуч"
829
 
830
+ #: contact_form.php:1953 contact_form.php:1975 contact_form.php:1990
831
+ #: contact_form.php:2008
832
  msgid "Right"
833
  msgstr "Праворуч"
834
 
835
+ #: contact_form.php:1965
836
  msgid "Form align"
837
  msgstr "Вирівнювання форми"
838
 
839
+ #: contact_form.php:1972 contact_form.php:2005
840
  msgid "Center"
841
  msgstr "По центру"
842
 
843
  # @ contact_form
844
+ #: contact_form.php:1980
845
  msgid "Labels position"
846
+ msgstr "Розташування імен полів"
847
 
848
+ #: contact_form.php:1984
849
  msgid "Top"
850
  msgstr "Зверху"
851
 
852
+ #: contact_form.php:1993
853
  msgid "Bottom"
854
  msgstr "Знизу"
855
 
856
+ #: contact_form.php:1998
857
  msgid "Labels align"
858
+ msgstr "Вирівнювання імен полів"
859
 
860
  # @ contact_form
861
+ #: contact_form.php:2013
862
  msgid "Errors output"
863
  msgstr "Відображення помилок"
864
 
865
  # @ contact_form
866
+ #: contact_form.php:2016
867
  msgid "Display error messages"
868
  msgstr "Відображати повідомлення про помилки"
869
 
870
  # @ contact_form
871
+ #: contact_form.php:2017
872
  msgid "Color of the input field errors."
873
  msgstr "Колір для помилок у полях введення."
874
 
875
  # @ contact_form
876
+ #: contact_form.php:2018
877
  msgid "Display error messages & color of the input field errors"
878
  msgstr ""
879
  "Відображення повідомлень про помилку і колір для полів з помилками у полях "
880
  "введення"
881
 
882
  # @ contact_form
883
+ #: contact_form.php:2023
884
  msgid "Add placeholder to the input blocks"
885
+ msgstr "Додати текст заповнювача для блоків введення"
886
 
887
  # @ contact_form
888
+ #: contact_form.php:2029
889
  msgid "Add tooltips"
890
  msgstr "Додати підказки"
891
 
892
  # @ contact_form
893
+ #: contact_form.php:2043
894
  msgid "Email address"
895
  msgstr "Email"
896
 
897
  # @ contact_form
898
+ #: contact_form.php:2048 contact_form.php:3142 contact_form.php:3183
899
  msgid "Phone Number"
900
  msgstr "Номер телефону"
901
 
902
  # @ contact_form
903
+ #: contact_form.php:2074
 
 
 
 
 
904
  msgid "Style options"
905
  msgstr "Опції стилю"
906
 
907
  # @ contact_form
908
+ #: contact_form.php:2078
909
  msgid "Text color"
910
  msgstr "Колір тексту"
911
 
912
  # @ contact_form
913
+ #: contact_form.php:2083
914
  msgid "Label text color"
915
  msgstr "Колір написів"
916
 
917
  # @ contact_form
918
+ #: contact_form.php:2088
919
  msgid "Placeholder color"
920
+ msgstr "Колір тексту заповнювача"
921
 
922
  # @ contact_form
923
+ #: contact_form.php:2093
924
  msgid "Errors color"
925
  msgstr "Колір помилок"
926
 
927
  # @ contact_form
928
+ #: contact_form.php:2098
929
  msgid "Error text color"
930
  msgstr "Колір тексту помилок"
931
 
932
  # @ contact_form
933
+ #: contact_form.php:2103
934
  msgid "Background color of the input field errors"
935
  msgstr "Колір заднього фону для полів введення з помилками"
936
 
937
  # @ contact_form
938
+ #: contact_form.php:2108
939
  msgid "Border color of the input field errors"
940
  msgstr "Колір рамки для полів введення з помилками"
941
 
942
  # @ contact_form
943
+ #: contact_form.php:2113
944
  msgid "Placeholder color of the input field errors"
945
+ msgstr "Колір тексту заповнювача для полів введення з помилками"
946
 
947
  # @ contact_form
948
+ #: contact_form.php:2118
949
  msgid "Input fields"
950
  msgstr "Поля введення тексту"
951
 
952
  # @ contact_form
953
+ #: contact_form.php:2123
954
  msgid "Input fields background color"
955
  msgstr "Колір фону полів введення"
956
 
957
  # @ contact_form
958
+ #: contact_form.php:2128
959
  msgid "Text fields color"
960
  msgstr "Колір текстових полів"
961
 
962
  # @ contact_form
963
+ #: contact_form.php:2132
964
  msgid "Border width in px, numbers only"
965
  msgstr "Ширина рамки в пікселях, тільки числа"
966
 
967
  # @ contact_form
968
+ #: contact_form.php:2137 contact_form.php:2161
969
  msgid "Border color"
970
  msgstr "Колір рамки"
971
 
972
  # @ contact_form
973
+ #: contact_form.php:2142
974
  msgid "Submit button"
975
  msgstr "Кнопка підтвердження"
976
 
977
  # @ contact_form
978
+ #: contact_form.php:2146
979
  msgid "Width in px, numbers only"
980
  msgstr "Ширина в пікселях, тільки числа"
981
 
982
  # @ contact_form
983
+ #: contact_form.php:2151
984
  msgid "Button color"
985
  msgstr "Колір кнопок"
986
 
987
  # @ contact_form