Contact Form by BestWebSoft - Version 4.2.3

Version Description

  • 24.05.2021 =
  • Update : All functionality was updated for WordPress 5.7.2.
  • Bugfix : Bug with a session_start() function call has been fixed.
Download this release

Release Info

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

Code changes from version 4.2.2 to 4.2.3

contact_form.php CHANGED
@@ -6,7 +6,7 @@ Description: Simple contact form plugin any WordPress website must have.
6
  Author: BestWebSoft
7
  Text Domain: contact-form-plugin
8
  Domain Path: /languages
9
- Version: 4.2.2
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
@@ -34,9 +34,9 @@ License: GPLv2 or later
34
  if ( ! function_exists( 'cntctfrm_admin_menu' ) ) {
35
  function cntctfrm_admin_menu() {
36
  global $submenu, $cntctfrm_plugin_info, $wp_version;
37
- if ( ! is_plugin_active( 'contact-form-pro/contact_form_pro.php') ) {
38
  $cntctfrm_settings = add_menu_page(
39
- __( 'Contact Form Settings', 'contact-form-plugin' ), /* $page_title */
40
  'Contact Form', /* $menu_title */
41
  'manage_options', /* $capability */
42
  'contact_form.php', /* $menu_slug */
@@ -45,8 +45,8 @@ if ( ! function_exists( 'cntctfrm_admin_menu' ) ) {
45
  );
46
  add_submenu_page(
47
  'contact_form.php',
48
- __( 'Contact Form Settings', 'contact-form-plugin' ),
49
- __( 'Settings', 'contact-form-plugin' ),
50
  'manage_options',
51
  'contact_form.php',
52
  'cntctfrm_settings_page'
@@ -66,11 +66,13 @@ if ( ! function_exists( 'cntctfrm_admin_menu' ) ) {
66
  'cntctfrm-bws-panel',
67
  'bws_add_menu_render'
68
  );
 
69
  if ( isset( $submenu['contact_form.php'] ) )
70
  $submenu['contact_form.php'][] = array(
71
- '<span style="color:#d86463"> ' . __( 'Upgrade to Pro', 'contact-form-plugin' ) . '</span>',
72
  'manage_options',
73
  'https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=' . $cntctfrm_plugin_info["Version"] . '&wp_v=' . $wp_version );
 
74
 
75
  add_action( "load-{$cntctfrm_settings}", 'cntctfrm_add_tabs' );
76
  }
@@ -79,11 +81,15 @@ if ( ! function_exists( 'cntctfrm_admin_menu' ) ) {
79
 
80
  if ( ! function_exists ( 'cntctfrm_init' ) ) {
81
  function cntctfrm_init() {
82
- global $bws_plugin_info, $cntctfrm_plugin_info;
83
-
84
- if ( ! session_id() )
85
- @session_start();
86
 
 
 
 
 
 
 
 
87
  require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
88
  bws_include_init( plugin_basename( __FILE__ ) );
89
 
@@ -107,6 +113,8 @@ if ( ! function_exists ( 'cntctfrm_admin_init' ) ) {
107
  if ( empty( $bws_plugin_info ) )
108
  $bws_plugin_info = array( 'id' => '77', 'version' => $cntctfrm_plugin_info["Version"] );
109
 
 
 
110
  /* Display form on the setting page */
111
  $cntctfrm_lang_codes = array(
112
  'ab' => 'Abkhazian',
@@ -299,7 +307,7 @@ if ( ! function_exists ( 'cntctfrm_admin_init' ) ) {
299
  /* Call register settings function */
300
  if ( isset( $_REQUEST['page'] ) && 'contact_form.php' == $_REQUEST['page'] )
301
  cntctfrm_settings();
302
-
303
  if ( 'plugins.php' == $pagenow ) {
304
  /* Install the option defaults */
305
  if ( function_exists( 'bws_plugin_banner_go_pro' ) ) {
@@ -307,6 +315,7 @@ if ( ! function_exists ( 'cntctfrm_admin_init' ) ) {
307
  bws_plugin_banner_go_pro( $cntctfrm_options, $cntctfrm_plugin_info, 'cntctfrm', 'contact-form-plugin', 'f575dc39cba54a9de88df346eed52101', '77', 'contact-form-plugin' );
308
  }
309
  }
 
310
  /* add contact form to global $bws_shortcode_list */
311
  $bws_shortcode_list['cntctfrm'] = array( 'name' => 'Contact Form', 'js_function' => 'cntctfrm_shortcode_init' );
312
  }
@@ -366,8 +375,8 @@ if ( ! function_exists( 'cntctfrm_settings' ) ) {
366
  }
367
 
368
  /* Get options from the database */
369
- if ( isset( $_SESSION['cntctfrmmlt_id_form'] ) || $form_id ) {
370
- $id = ( $form_id ) ? $form_id : $_SESSION['cntctfrmmlt_id_form'];
371
  if ( $cntctfrm_options = get_option( 'cntctfrmmlt_options_' . $id ) ) {
372
  $cntctfrm_options = get_option( 'cntctfrmmlt_options_' . $id );
373
  } else {
@@ -413,8 +422,8 @@ if ( ! function_exists( 'cntctfrm_settings' ) ) {
413
  $cntctfrm_options['hide_premium_options'] = array();
414
 
415
  if ( $contact_form_multi_active ) {
416
- if ( isset( $_SESSION['cntctfrmmlt_id_form'] ) || $form_id ) {
417
- $id = ( $form_id ) ? $form_id : $_SESSION['cntctfrmmlt_id_form'];
418
  if ( get_option( 'cntctfrmmlt_options_' . $id ) ) {
419
  update_option( 'cntctfrmmlt_options_' . $id , $cntctfrm_options );
420
  } else {
@@ -441,8 +450,8 @@ if ( ! function_exists( 'cntctfrm_settings' ) ) {
441
  cntctfrm_db_create();
442
  $cntctfrm_options['plugin_db_version'] = $db_version;
443
  if ( $contact_form_multi_active ) {
444
- if ( isset( $_SESSION['cntctfrmmlt_id_form'] ) || $form_id ) {
445
- $id = ( $form_id ) ? $form_id : $_SESSION['cntctfrmmlt_id_form'];
446
  if ( get_option( 'cntctfrmmlt_options_' . $id ) ) {
447
  update_option( 'cntctfrmmlt_options_' . $id , $cntctfrm_options );
448
  } else {
@@ -521,32 +530,32 @@ if ( ! function_exists( 'cntctfrm_get_option_defaults' ) ) {
521
  'language' => array(),
522
  'change_label' => 0,
523
  'gdpr_link' => '',
524
- 'name_label' => array( 'default' => __( "Name", 'contact-form-plugin' ) . ':' ),
525
- 'address_label' => array( 'default' => __( "Address", 'contact-form-plugin' ) . ':' ),
526
- 'email_label' => array( 'default' => __( "Email Address", 'contact-form-plugin' ) . ':' ),
527
- 'phone_label' => array( 'default' => __( "Phone number", 'contact-form-plugin' ) . ':' ),
528
- 'subject_label' => array( 'default' => __( "Subject", 'contact-form-plugin' ) . ':' ),
529
- 'message_label' => array( 'default' => __( "Message", 'contact-form-plugin' ) . ':' ),
530
- 'attachment_label' => array( 'default' => __( "Attachment", 'contact-form-plugin' ) . ':' ),
531
- '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' ) ),
532
- 'send_copy_label' => array( 'default' => __( "Send me a copy", 'contact-form-plugin' ) ),
533
- 'gdpr_label' => array( 'default' => __( "I consent to having this site collect my personal data.", 'contact-form-plugin' ) ),
534
- 'gdpr_text_button' => array( 'default' => __( "Learn more", 'contact-form-plugin' ) ),
535
- 'submit_label' => array( 'default' => __( "Submit", 'contact-form-plugin' ) ),
536
- 'name_error' => array( 'default' => __( "Your name is required.", 'contact-form-plugin' ) ),
537
- 'address_error' => array( 'default' => __( "Address is required.", 'contact-form-plugin' ) ),
538
- 'email_error' => array( 'default' => __( "A valid email address is required.", 'contact-form-plugin' ) ),
539
- 'phone_error' => array( 'default' => __( "Phone number is required.", 'contact-form-plugin' ) ),
540
- 'subject_error' => array( 'default' => __( "Subject is required.", 'contact-form-plugin' ) ),
541
- 'message_error' => array( 'default' => __( "Message text is required.", 'contact-form-plugin' ) ),
542
- 'attachment_error' => array( 'default' => __( "File format is not valid.", 'contact-form-plugin' ) ),
543
- 'attachment_upload_error' => array( 'default' => __( "File upload error.", 'contact-form-plugin' ) ),
544
- 'attachment_move_error' => array( 'default' => __( "The file could not be uploaded.", 'contact-form-plugin' ) ),
545
- 'attachment_size_error' => array( 'default' => __( "This file is too large.", 'contact-form-plugin' ) ),
546
- 'captcha_error' => array( 'default' => __( "Please fill out the CAPTCHA.", 'contact-form-plugin' ) ),
547
- 'form_error' => array( 'default' => __( "Please make corrections below and try again.", 'contact-form-plugin' ) ),
548
  'action_after_send' => 1,
549
- 'thank_text' => array( 'default' => __( "Thank you for contacting us.", 'contact-form-plugin' ) ),
550
  'redirect_url' => '',
551
  'delete_attached_file' => '0',
552
  'html_email' => 1,
@@ -576,6 +585,7 @@ if ( ! function_exists( 'cntctfrm_get_option_defaults' ) ) {
576
  ),
577
  'active_multi_attachment' => 0
578
  );
 
579
 
580
  return $option_defaults;
581
  }
@@ -765,8 +775,8 @@ if ( ! function_exists( 'cntctfrm_get_ordered_fields' ) ) {
765
  if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) )
766
  $display_subscriber = ! empty( $cntctfrm_related_plugins['subscriber']['options']['contact_form'] );
767
  } else {
768
- if ( empty( $id ) && isset( $_SESSION['cntctfrmmlt_id_form'] ) ) {
769
- $id = $_SESSION['cntctfrmmlt_id_form'];
770
  }
771
  if ( ! empty( $id ) ) {
772
  if ( get_option( 'cntctfrmmlt_options_' . $id ) ) {
@@ -820,19 +830,21 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
820
  if ( ! class_exists( 'Bws_Settings_Tabs' ) )
821
  require_once( dirname( __FILE__ ) . '/bws_menu/class-bws-settings.php' );
822
  require_once( dirname( __FILE__ ) . '/includes/class-cntctfrm-settings.php' );
823
- $page = new Cntctfrm_Settings_Tabs( plugin_basename( __FILE__ ) ); ?>
 
 
824
  <div class="wrap">
825
- <h1 class="cntctfrm-title"><?php _e( 'Contact Form Settings', 'contact-form-plugin' ); ?></h1>
826
  <?php $contact_form_multi_active = cntctfrm_check_cf_multi_active();
827
  if ( ! $contact_form_multi_active ) { ?>
828
  <h3 class="nav-tab-wrapper cntctfrm_noborder">
829
- <span class="nav-tab nav-tab-active"><?php _e( 'NEW_FORM', 'contact-form-plugin' ); ?></span>
830
- <a id="cntctfrm_show_multi_notice" class="nav-tab" target="_new" href="https://bestwebsoft.com/products/wordpress/plugins/contact-form-multi/?k=57d8351b1c6b67d3e0600bd9a680c283&amp;pn=3&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>
831
  </h3>
832
  <?php } else { ?>
833
  <h3 class="nav-tab-wrapper cntctfrm_noborder"></h3>
834
  <?php if ( version_compare( $cntctfrmmlt_plugin_info['Version'] , '1.2.6', '<') ) { ?>
835
- <div class="error below-h2"><p><strong><?php _e( "Contact Form plugin doesn't support your current version of Contact Form Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or higher.", 'contact-form-plugin' ); ?></strong></p></div>
836
  <?php } ?>
837
  <?php }
838
  $page->display_content(); ?>
@@ -910,14 +922,13 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
910
  $page_url = esc_url( add_query_arg( array() ) . '#cntctfrm_contact_form' );
911
 
912
  /* If contact form submited */
913
-
914
  $form_submited = isset( $_POST['cntctfrm_form_submited'] ) ? $_POST['cntctfrm_form_submited'] : 0;
915
-
916
- $name = ( isset( $_POST['cntctfrm_contact_name'] ) && $cntctfrm_form_count == $form_submited ) ? stripcslashes( htmlspecialchars( $_POST['cntctfrm_contact_name'] ) ) : "";
917
  $address = ( isset( $_POST['cntctfrm_contact_address'] ) && $cntctfrm_form_count == $form_submited ) ? stripcslashes( htmlspecialchars( $_POST['cntctfrm_contact_address'] ) ) : "";
918
- $email = ( isset( $_POST['cntctfrm_contact_email'] ) && $cntctfrm_form_count == $form_submited ) ? stripcslashes( htmlspecialchars( $_POST['cntctfrm_contact_email'] ) ) : "";
919
- $subject = ( isset( $_POST['cntctfrm_contact_subject'] ) && $cntctfrm_form_count == $form_submited ) ? stripcslashes( htmlspecialchars( $_POST['cntctfrm_contact_subject'] ) ) : "";
920
- $message = ( isset( $_POST['cntctfrm_contact_message'] ) && $cntctfrm_form_count == $form_submited ) ? stripcslashes( htmlspecialchars( $_POST['cntctfrm_contact_message'] ) ) : "";
921
  $phone = ( isset( $_POST['cntctfrm_contact_phone'] ) && $cntctfrm_form_count == $form_submited ) ? stripcslashes( htmlspecialchars( $_POST['cntctfrm_contact_phone'] ) ) : "";
922
 
923
  $send_copy = ( isset( $_POST['cntctfrm_contact_send_copy'] ) && $cntctfrm_form_count == $form_submited ) ? $_POST['cntctfrm_contact_send_copy'] : "";
@@ -925,20 +936,19 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
925
  /* If it is good */
926
 
927
  if ( true === $cntctfrm_result && $cntctfrm_form_count == $form_submited ) {
928
- $_SESSION['cntctfrm_send_mail'] = true;
929
 
930
  if ( 1 == $cntctfrm_options['action_after_send'] ) {
931
  $content .= '<div id="cntctfrm_contact_form' . $form_countid . '"><div id="cntctfrm_thanks">' . $cntctfrm_options['thank_text'][$lang] . '</div></div>';
932
  } else {
933
  $content .= "<script type='text/javascript'>window.location.href = '" . $cntctfrm_options['redirect_url'] . "';</script>";
 
934
  }
935
  } elseif ( false === $cntctfrm_result && $cntctfrm_form_count == $form_submited ) {
936
  /* If email not be delivered */
937
- $cntctfrm_error_message['error_form'] = __( "Sorry, email message could not be delivered.", 'contact-form-plugin' );
938
  }
939
 
940
  if ( true !== $cntctfrm_result || $cntctfrm_form_count != $form_submited ) {
941
- $_SESSION['cntctfrm_send_mail'] = false;
942
 
943
  $classes = ( $cntctfrm_options['layout'] === 1 ) ? ' cntctfrm_one_column' : ' cntctfrm_two_columns';
944
  $classes .= is_rtl() ? ' cntctfrm_rtl' : ' cntctfrm_ltr';
@@ -960,12 +970,12 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
960
 
961
  $column = ( $i == 1 ) ? 'first_column' : 'second_column';
962
  $content .= '<div id="cntctfrm_' . $column . '" class="cntctfrm_column">';
963
-
964
  foreach ( $cntctfrm_ordered_fields[ $column ] as $cntctfrm_field ) {
965
  switch( $cntctfrm_field ) {
966
  case 'cntctfrm_contact_name':
967
  if ( 1 == $cntctfrm_options['display_name_field'] ) {
968
- $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_name_wrap">';
969
  $content .= '<div class="cntctfrm_label cntctfrm_label_name">
970
  <label for="cntctfrm_contact_name' . $form_countid . '">' . $cntctfrm_options['name_label'][ $lang ] . ( $cntctfrm_options['required_name_field'] == 1 ? ' <span class="required">' . $cntctfrm_options['required_symbol'] . '</span></label>' : '</label>' );
971
  $content .= '</div>';
@@ -973,7 +983,7 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
973
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_name'] . '</div>';
974
  }
975
  $content .= '<div class="cntctfrm_input cntctfrm_input_name">
976
- <input class="text" type="text" size="40" value="' . $name . '" name="cntctfrm_contact_name" id="cntctfrm_contact_name' . $form_countid . '" />';
977
  $content .= '</div>';
978
  $content .= '</div>';
979
  }
@@ -993,7 +1003,7 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
993
  }
994
  break;
995
  case 'cntctfrm_contact_email':
996
- $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_email_wrap">';
997
  $content .= '<div class="cntctfrm_label cntctfrm_label_email">
998
  <label for="cntctfrm_contact_email' . $form_countid . '">' . $cntctfrm_options['email_label'][ $lang ] . ( $cntctfrm_options['required_email_field'] == 1 ? ' <span class="required">' . $cntctfrm_options['required_symbol'] . '</span></label>' : '</label>' ) . '
999
  </div>';
@@ -1001,7 +1011,7 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
1001
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_email'] . '</div>';
1002
  }
1003
  $content .= '<div class="cntctfrm_input cntctfrm_input_email">
1004
- <input class="text" type="text" size="40" value="' . $email . '" name="cntctfrm_contact_email" id="cntctfrm_contact_email' . $form_countid . '" />';
1005
  $content .= '</div>';
1006
  $content .= '</div>';
1007
  break;
@@ -1021,7 +1031,7 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
1021
  }
1022
  break;
1023
  case 'cntctfrm_contact_subject':
1024
- $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_subject_wrap">';
1025
  $content .= '<div class="cntctfrm_label cntctfrm_label_subject">
1026
  <label for="cntctfrm_contact_subject' . $form_countid . '">' . $cntctfrm_options['subject_label'][ $lang ] . ( $cntctfrm_options['required_subject_field'] == 1 ? ' <span class="required">' . $cntctfrm_options['required_symbol'] . '</span></label>' : '</label>' ) . '
1027
  </div>';
@@ -1029,12 +1039,12 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
1029
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_subject'] . '</div>';
1030
  }
1031
  $content .= '<div class="cntctfrm_input cntctfrm_input_subject">
1032
- <input class="text" type="text" size="40" value="' . $subject . '" name="cntctfrm_contact_subject" id="cntctfrm_contact_subject' . $form_countid . '" />';
1033
  $content .= '</div>';
1034
  $content .= '</div>';
1035
  break;
1036
  case 'cntctfrm_contact_message':
1037
- $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_message_wrap">';
1038
  $content .= '<div class="cntctfrm_label cntctfrm_label_message">
1039
  <label for="cntctfrm_contact_message' . $form_countid . '">' . $cntctfrm_options['message_label'][ $lang ] . ( $cntctfrm_options['required_message_field'] == 1 ? ' <span class="required">' . $cntctfrm_options['required_symbol'] . '</span></label>' : '</label>' ) . '
1040
  </div>';
@@ -1042,7 +1052,7 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
1042
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_message'] . '</div>';
1043
  }
1044
  $content .= '<div class="cntctfrm_input cntctfrm_input_message">
1045
- <textarea rows="5" cols="30" name="cntctfrm_contact_message" id="cntctfrm_contact_message' . $form_countid . '">' . $message . '</textarea>';
1046
  $content .= '</div>';
1047
  $content .= '</div>';
1048
  break;
@@ -1152,6 +1162,9 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
1152
  break;
1153
  }
1154
  }
 
 
 
1155
  $content .= '</div>';
1156
  }
1157
 
@@ -1273,7 +1286,7 @@ if ( ! function_exists( 'cntctfrm_check_and_send' ) ) {
1273
  }
1274
  /* If it is good */
1275
  if ( true === $cntctfrm_result ) {
1276
- $_SESSION['cntctfrm_send_mail'] = true;
1277
  if ( 0 == $cntctfrm_options['action_after_send'] ) {
1278
  wp_redirect( $cntctfrm_options['redirect_url'] );
1279
  exit;
@@ -1314,7 +1327,6 @@ if ( ! function_exists( 'cntctfrm_check_form' ) ) {
1314
  }
1315
  }
1316
  }
1317
-
1318
  if ( 1 == $cntctfrm_options['required_name_field'] && 1 == $cntctfrm_options['display_name_field'] )
1319
  $cntctfrm_error_message['error_name'] = $cntctfrm_options['name_error'][ $language ];
1320
  if ( 1 == $cntctfrm_options['required_address_field'] && 1 == $cntctfrm_options['display_address_field'] )
@@ -1492,6 +1504,7 @@ if ( ! function_exists( 'cntctfrm_check_form' ) ) {
1492
  } else {
1493
  unset( $cntctfrm_error_message['error_attachment'] );
1494
  }
 
1495
  if ( 1 == count( $cntctfrm_error_message ) ) {
1496
  if ( has_filter( 'sbscrbr_cntctfrm_checkbox_check' ) ) {
1497
  $cntctfrm_sbscrbr_check = apply_filters( 'sbscrbr_cntctfrm_checkbox_check', array(
@@ -1545,8 +1558,7 @@ if ( ! function_exists( 'cntctfrm_send_mail' ) ) {
1545
  $message = isset( $_POST['cntctfrm_contact_message'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_message'] ) : "";
1546
  $phone = isset( $_POST['cntctfrm_contact_phone'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_phone'] ) : "";
1547
  $user_agent = cntctfrm_clean_input( $_SERVER['HTTP_USER_AGENT'] );
1548
-
1549
- if ( isset( $_SESSION['cntctfrm_send_mail'] ) && true == $_SESSION['cntctfrm_send_mail'] )
1550
  return true;
1551
 
1552
  if ( 'user' == $cntctfrm_options['select_email'] ) {
@@ -1582,27 +1594,27 @@ if ( ! function_exists( 'cntctfrm_send_mail' ) ) {
1582
  }
1583
  if ( 1 == $cntctfrm_options['display_sent_from'] ) {
1584
  if ( 1 == $cntctfrm_options['html_email'] )
1585
- $user_info_string .= '<tr><td>' . __( 'Sent from (ip address)', 'contact-form-plugin' ) . ':</td><td>' . $cntctfrm_remote_addr . " ( " . $userdomain . " )" . '</td></tr>';
1586
  else
1587
- $user_info_string .= __( 'Sent from (ip address)', 'contact-form-plugin' ) . ': ' . $cntctfrm_remote_addr . " ( " . $userdomain . " )" . "\n";
1588
  }
1589
  if ( 1 == $cntctfrm_options['display_date_time'] ) {
1590
  if ( 1 == $cntctfrm_options['html_email'] )
1591
- $user_info_string .= '<tr><td>' . __('Date/Time', 'contact-form-plugin') . ':</td><td>' . date_i18n( get_option( 'date_format' ) . ' ' . get_option( 'time_format' ), strtotime( current_time( 'mysql' ) ) ) . '</td></tr>';
1592
  else
1593
- $user_info_string .= __( 'Date/Time', 'contact-form-plugin' ) . ': ' . date_i18n( get_option( 'date_format' ) . ' ' . get_option( 'time_format' ), strtotime( current_time( 'mysql' ) ) ) . "\n";
1594
  }
1595
  if ( 1 == $cntctfrm_options['display_coming_from'] ) {
1596
  if ( 1 == $cntctfrm_options['html_email'] )
1597
- $user_info_string .= '<tr><td>' . __( 'Sent from (referer)', 'contact-form-plugin' ) . ':</td><td>' . $form_action_url . '</td></tr>';
1598
  else
1599
- $user_info_string .= __( 'Sent from (referer)', 'contact-form-plugin' ) . ': ' . $form_action_url . "\n";
1600
  }
1601
  if ( 1 == $cntctfrm_options['display_user_agent'] ) {
1602
  if ( 1 == $cntctfrm_options['html_email'] )
1603
- $user_info_string .= '<tr><td>' . __( 'Using (user agent)', 'contact-form-plugin' ) . ':</td><td>' . $user_agent . '</td></tr>';
1604
  else
1605
- $user_info_string .= __( 'Using (user agent)', 'contact-form-plugin' ) . ': ' . $user_agent . "\n";
1606
  }
1607
  }
1608
 
@@ -1612,12 +1624,12 @@ if ( ! function_exists( 'cntctfrm_send_mail' ) ) {
1612
  if ( 1 == $cntctfrm_options['html_email'] ) {
1613
  $message_text = '<html>
1614
  <head>
1615
- <title>'. __( "Contact from", 'contact-form-plugin' ) . ' ' . get_bloginfo( 'name' ) . '</title>
1616
  </head>
1617
  <body>
1618
  <table>
1619
  <tr>
1620
- <td>' . __( "Site", 'contact-form-plugin' ) . '</td>
1621
  <td>' . get_bloginfo( "url" ) . '</td>
1622
  </tr>';
1623
  foreach ( $message_order_fields as $field ){
@@ -1626,82 +1638,84 @@ if ( ! function_exists( 'cntctfrm_send_mail' ) ) {
1626
  case "name":
1627
  if ( 1 == $cntctfrm_options['display_name_field'] ) {
1628
  $message_text .= '<tr><td width="160">';
1629
- $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['name_label'][ $lang ] : __( "Name", 'contact-form-plugin' );
1630
  $message_text .= '</td><td>'. $name .'</td></tr>';
1631
  }
1632
  break;
1633
  case "address":
1634
  if ( 1 == $cntctfrm_options['display_address_field'] ) {
1635
  $message_text .= '<tr><td>';
1636
- $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['address_label'][ $lang ] : __( "Address", 'contact-form-plugin' );
1637
  $message_text .= '</td><td>'. $address .'</td></tr>';
1638
  }
1639
  break;
1640
  case "email":
1641
  $message_text .= '<tr><td>';
1642
- $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['email_label'][ $lang ] : __( "Email", 'contact-form-plugin' );
1643
  $message_text .= '</td><td>'. $email .'</td></tr>';
1644
  break;
1645
  case "subject":
1646
  $message_text .= '<tr><td>';
1647
- $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['subject_label'][ $lang ] : __( "Subject", 'contact-form-plugin' );
1648
  $message_text .= '</td><td>' . $subject .'</td></tr>';
1649
  break;
1650
  case "message":
1651
  $message_text .= '<tr><td>';
1652
- $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['message_label'][ $lang ] : __( "Message", 'contact-form-plugin' );
1653
  $message_text .= '</td><td>' . $message .'</td></tr>';
1654
  break;
1655
  case "phone":
1656
  if ( 1 == $cntctfrm_options['display_phone_field'] ) {
1657
  $message_text .= '<tr><td>';
1658
- $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['phone_label'][ $lang ] : __( "Phone Number", 'contact-form-plugin' );
1659
  $message_text .= '</td><td>'. $phone .'</td></tr>';
1660
  }
1661
  break;
1662
  }
1663
  }
 
1664
  $message_text .= '<tr><td><br /></td><td><br /></td></tr>';
1665
 
1666
  $message_text_for_user = $message_text . '</table></body></html>';
1667
  $message_text .= $user_info_string . '</table></body></html>';
1668
  } else {
1669
- $message_text = __( "Site", 'contact-form-plugin' ) . ': ' . get_bloginfo("url") . "\n";;
1670
  foreach ( $message_order_fields as $field ) {
1671
  $field = str_replace( 'cntctfrm_contact_', '', $field );
1672
  switch ( $field ) {
1673
  case "name":
1674
  if ( 1 == $cntctfrm_options['display_name_field'] ) {
1675
- $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['name_label'][ $lang ] : __( "Name", 'contact-form-plugin' );
1676
  $message_text .= ': '. $name . "\n";
1677
  }
1678
  break;
1679
  case "address":
1680
  if ( 1 == $cntctfrm_options['display_address_field'] ) {
1681
- $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['address_label'][ $lang ] : __( "Address", 'contact-form-plugin' );
1682
  $message_text .= ': '. $address . "\n";
1683
  }
1684
  break;
1685
  case "email":
1686
- $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['email_label'][ $lang ] : __( "Email", 'contact-form-plugin' );
1687
  $message_text .= ': ' . $email . "\n";
1688
  break;
1689
  case "subject":
1690
- $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['subject_label'][ $lang ] : __( "Subject", 'contact-form-plugin' );
1691
  $message_text .= ': ' . $subject . "\n";
1692
  break;
1693
  case "message":
1694
- $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['message_label'][ $lang ] : __( "Message", 'contact-form-plugin' );
1695
  $message_text .= ': ' . $message ."\n";
1696
  break;
1697
  case "phone":
1698
  if ( 1 == $cntctfrm_options['display_phone_field'] ) {
1699
- $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['phone_label'][ $lang ] : __( "Phone Number", 'contact-form-plugin' );
1700
  $message_text .= ': '. $phone . "\n";
1701
  }
1702
  break;
1703
  }
1704
  }
 
1705
  $message_text .= "\n";
1706
 
1707
  $message_text_for_user = $message_text;
@@ -1794,7 +1808,7 @@ if ( ! function_exists( 'cntctfrm_send_mail' ) ) {
1794
 
1795
  $headers .= "Content-Type: multipart/mixed; boundary=\"$bound_text\"";
1796
 
1797
- $message_text = $message_text_for_user = __( "If you can see this MIME, it means that the MIME type is not supported by your email client!", 'contact-form-plugin' ) . "\n";
1798
 
1799
  if ( 1 == $cntctfrm_options['html_email'] ) {
1800
  $message_text .= $bound . "\n" . "Content-Type: text/html; charset=\"utf-8\"\n" . "Content-Transfer-Encoding: 7bit\n\n" . $message_block . "\n\n";
@@ -1851,7 +1865,7 @@ if ( ! function_exists ( 'cntctfrm_plugin_action_links' ) ) {
1851
  if ( ! $this_plugin ) $this_plugin = plugin_basename(__FILE__);
1852
 
1853
  if ( $file == $this_plugin ) {
1854
- $settings_link = '<a href="admin.php?page=contact_form.php">' . __( 'Settings', 'contact-form-plugin' ) . '</a>';
1855
  array_unshift( $links, $settings_link );
1856
  }
1857
  }
@@ -1865,9 +1879,9 @@ if ( ! function_exists ( 'cntctfrm_register_plugin_links' ) ) {
1865
  $base = plugin_basename(__FILE__);
1866
  if ( $file == $base ) {
1867
  if ( ! is_network_admin() )
1868
- $links[] = '<a href="admin.php?page=contact_form.php">' . __( 'Settings','contact-form-plugin' ) . '</a>';
1869
- $links[] = '<a href="http://wordpress.org/plugins/contact-form-plugin/faq/" target="_blank">' . __( 'FAQ','contact-form-plugin' ) . '</a>';
1870
- $links[] = '<a href="https://support.bestwebsoft.com">' . __( 'Support','contact-form-plugin' ) . '</a>';
1871
  }
1872
  return $links;
1873
  }
@@ -1911,12 +1925,13 @@ if ( ! function_exists ( 'cntctfrm_admin_head' ) ) {
1911
  global $wp_version, $cntctfrm_plugin_info;
1912
 
1913
  wp_enqueue_style( 'cntctfrm_stylesheet', plugins_url( 'css/style.css', __FILE__ ), false, $cntctfrm_plugin_info["Version"] );
 
1914
 
1915
  wp_enqueue_style( 'cntctfrm_form_style', plugins_url( 'css/form_style.css', __FILE__ ), false, $cntctfrm_plugin_info["Version"] );
1916
 
1917
  $script_vars = array(
1918
  'cntctfrm_nonce' => wp_create_nonce( plugin_basename( __FILE__ ), 'cntctfrm_ajax_nonce_field' ),
1919
- 'cntctfrm_confirm_text' => __( 'Are you sure that you want to delete this language data?', 'contact-form-plugin' )
1920
  );
1921
 
1922
  if ( wp_is_mobile() )
@@ -1924,6 +1939,7 @@ if ( ! function_exists ( 'cntctfrm_admin_head' ) ) {
1924
 
1925
  wp_enqueue_script( 'cntctfrm_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery', 'jquery-ui-sortable' ), $cntctfrm_plugin_info["Version"] );
1926
  wp_localize_script( 'cntctfrm_script', 'cntctfrm_ajax', $script_vars );
 
1927
 
1928
  bws_enqueue_settings_scripts();
1929
 
@@ -1938,16 +1954,16 @@ if ( ! function_exists ( 'cntctfrm_admin_head' ) ) {
1938
  'click' => true,
1939
  'onload' => true,
1940
  ),
1941
- 'content' => '<h3>' . __( 'Add multiple forms', 'contact-form-plugin' ) . '</h3>' .'<p>' . __( 'Install Contact Form Multi plugin to create unlimited number of contact forms.', 'contact-form-plugin' ) . '</p>',
1942
  'buttons' => array(
1943
  array(
1944
  'type' => 'link',
1945
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/contact-form-multi/?k=747ca825fb44711e2d24e40697747bc6&pn=77&v=' . $cntctfrm_plugin_info["Version"] . '&wp_v=' . $wp_version,
1946
- 'text' => __( 'Learn more', 'contact-form-plugin' ),
1947
  ),
1948
  'close' => array(
1949
  'type' => 'dismiss',
1950
- 'text' => __( 'Close', 'contact-form-plugin' ),
1951
  ),
1952
  ),
1953
  'position' => array(
@@ -2001,9 +2017,9 @@ if ( ! function_exists ( 'cntctfrm_add_language' ) ) {
2001
  $lang = $is_ajax ? $_REQUEST['lang'] : $_REQUEST['cntctfrm_languages'];
2002
 
2003
  if ( ! array_key_exists( $lang, $cntctfrm_lang_codes ) ) {
2004
- $message = sprintf( '<strong>%s</strong>:&nbsp%s.', __( 'Error', 'contact-form-plugin' ), __( 'Illegal language code', 'contact-form-plugin' ) );
2005
  if ( $is_ajax ) {
2006
- throw new Exception( __( 'Illegal language code', 'contact-form-plugin' ) );
2007
  die();
2008
  } else {
2009
  wp_die( $message );
@@ -2013,7 +2029,7 @@ if ( ! function_exists ( 'cntctfrm_add_language' ) ) {
2013
  $contact_form_multi_active = cntctfrm_check_cf_multi_active();
2014
 
2015
  if ( $contact_form_multi_active ) {
2016
- if ( isset( $_SESSION['cntctfrmmlt_id_form'] ) && $cntctfrm_options = get_option( 'cntctfrmmlt_options_' . $_SESSION['cntctfrmmlt_id_form'] ) ) {
2017
  /**/
2018
  } else {
2019
  $cntctfrm_options = get_option( 'cntctfrmmlt_options' );
@@ -2037,9 +2053,9 @@ if ( ! function_exists ( 'cntctfrm_add_language' ) ) {
2037
  }
2038
 
2039
  if ( ! $contact_form_multi_active ) {
2040
- $result = __( "Use shortcode", 'contact-form-plugin' ) . ' <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=' . $lang . ']</span> ' . __( "for this language", 'contact-form-plugin' );
2041
  } else {
2042
- $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' );
2043
  }
2044
 
2045
  if ( $is_ajax ) {
@@ -2060,7 +2076,7 @@ if ( ! function_exists ( 'cntctfrm_remove_language' ) ) {
2060
  $contact_form_multi_active = cntctfrm_check_cf_multi_active();
2061
 
2062
  if ( $contact_form_multi_active ) {
2063
- if ( isset( $_SESSION['cntctfrmmlt_id_form'] ) && $cntctfrm_options = get_option( 'cntctfrmmlt_options_' . $_SESSION['cntctfrmmlt_id_form'] ) ) {
2064
  /**/
2065
  } else {
2066
  $cntctfrm_options = get_option( 'cntctfrmmlt_options' );
@@ -2163,7 +2179,7 @@ if ( ! function_exists ( 'cntctfrm_plugin_banner' ) ) {
2163
  if ( ! isset( $bstwbsftwppdtplgns_cookie_add ) ) {
2164
  wp_enqueue_script( 'bstwbsftwppdtplgns_cookie_add', plugins_url( 'bws_menu/js/c_o_o_k_i_e.js', __FILE__ ) );
2165
  }
2166
- $cntctfrm_script_banner = "
2167
  (function($) {
2168
  $(document).ready( function() {
2169
  var hide_message = $.cookie( '" . $this_banner_prefix . " _hide_banner_on_plugin_page' );
@@ -2177,23 +2193,25 @@ if ( ! function_exists ( 'cntctfrm_plugin_banner' ) ) {
2177
  $.cookie( '" . $this_banner_prefix . " _hide_banner_on_plugin_page', \"true\", { expires: 32 } );
2178
  });
2179
  } ) ( jQuery );
2180
- }";
 
2181
  wp_register_script( 'cntctfrm_bws_script_banner', '//' );
2182
  wp_enqueue_script( 'cntctfrm_bws_script_banner' );
2183
  wp_add_inline_script( 'cntctfrm_bws_script_banner', sprintf( $cntctfrm_script_banner ) );
2184
- 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 ) ) { ?>
 
2185
  <div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
2186
  <div class="cntctfrm_for_ctfrmtdb_message bws_banner_on_plugin_page" style="display: none;">
2187
- <button class="<?php echo $this_banner_prefix; ?>_close_icon close_icon notice-dismiss bws_hide_settings_notice" title="<?php _e( 'Close notice', 'contact-form-plugin' ); ?>"></button>
2188
  <div class="icon">
2189
  <img title="" src="//ps.w.org/contact-form-to-db/assets/icon-128x128.png" alt="" />
2190
  </div>
2191
  <div class="text">
2192
- <strong>Contact Form to DB</strong> <?php _e( "allows to store your messages to the database.", 'contact-form-plugin' ); ?><br />
2193
- <span><?php _e( "Manage messages that have been sent from your website.", 'contact-form-plugin' ); ?></span>
2194
  </div>
2195
  <div class="button_div">
2196
- <a class="button" target="_blank" href="https://bestwebsoft.com/products/wordpress/plugins/contact-form-to-db/?k=6ebf0743736411607343ad391dc3b436&amp;pn=77&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>"><?php _e( 'Learn More', 'contact-form-plugin' ); ?></a>
2197
  </div>
2198
  </div>
2199
  </div>
@@ -2253,7 +2271,7 @@ if ( ! function_exists( 'cntctfrm_shortcode_button_content' ) ) {
2253
  printf( '<option value="%1$s">%2$s</option>', $id, $title );
2254
  } ?>
2255
  </select>
2256
- <span class="title"><?php _e( 'Contact form', 'contact-form-plugin' ); ?></span>
2257
  </label>
2258
  <br>
2259
  <label>
@@ -2266,7 +2284,7 @@ if ( ! function_exists( 'cntctfrm_shortcode_button_content' ) ) {
2266
  $i++;
2267
  } ?>
2268
  </select>
2269
- <span class="title"><?php _e( 'Language', 'contact-form-plugin' ); ?></span>
2270
  </label>
2271
  <input class="bws_default_shortcode" type="hidden" name="default" value="[bestwebsoft_contact_form id=<?php echo array_shift( $multi_ids ); ?>]" />
2272
  <?php } else { ?>
@@ -2276,7 +2294,7 @@ if ( ! function_exists( 'cntctfrm_shortcode_button_content' ) ) {
2276
  printf( '<option value="%1$s">%2$s</option>', strtolower( $language ), ( $language == 'default' ) ? $lang_default : $cntctfrm_lang_codes[ $language ] );
2277
  } ?>
2278
  </select>
2279
- <span class="title"><?php _e( 'Language', 'contact-form-plugin' ); ?></span>
2280
  </label>
2281
  <input class="bws_default_shortcode" type="hidden" name="default" value="[bestwebsoft_contact_form]" />
2282
  <?php } ?>
@@ -2341,7 +2359,7 @@ if ( ! function_exists ( 'cntctfrm_delete_options' ) ) {
2341
  global $wpdb;
2342
  $all_plugins = get_plugins();
2343
 
2344
- if ( ! array_key_exists( 'contact-form-pro/contact_form_pro.php', $all_plugins ) ) {
2345
  if ( function_exists( 'is_multisite' ) && is_multisite() ) {
2346
  $old_blog = $wpdb->blogid;
2347
  /* Get all blog ids */
6
  Author: BestWebSoft
7
  Text Domain: contact-form-plugin
8
  Domain Path: /languages
9
+ Version: 4.2.3
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
34
  if ( ! function_exists( 'cntctfrm_admin_menu' ) ) {
35
  function cntctfrm_admin_menu() {
36
  global $submenu, $cntctfrm_plugin_info, $wp_version;
37
+ if ( ! is_plugin_active( 'contact-form-pro/contact_form_pro.php')/*pls */ && ! is_plugin_active( 'contact-form-plus/contact-form-plus.php' )/* pls*/ ) {
38
  $cntctfrm_settings = add_menu_page(
39
+ esc_html__( 'Contact Form Settings', 'contact-form-plugin' ), /* $page_title */
40
  'Contact Form', /* $menu_title */
41
  'manage_options', /* $capability */
42
  'contact_form.php', /* $menu_slug */
45
  );
46
  add_submenu_page(
47
  'contact_form.php',
48
+ esc_html__( 'Contact Form Settings', 'contact-form-plugin' ),
49
+ esc_html__( 'Settings', 'contact-form-plugin' ),
50
  'manage_options',
51
  'contact_form.php',
52
  'cntctfrm_settings_page'
66
  'cntctfrm-bws-panel',
67
  'bws_add_menu_render'
68
  );
69
+ /*pls */
70
  if ( isset( $submenu['contact_form.php'] ) )
71
  $submenu['contact_form.php'][] = array(
72
+ '<span style="color:#d86463"> ' . esc_html__( 'Upgrade to Pro', 'contact-form-plugin' ) . '</span>',
73
  'manage_options',
74
  'https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=697c5e74f39779ce77850e11dbe21962&pn=77&v=' . $cntctfrm_plugin_info["Version"] . '&wp_v=' . $wp_version );
75
+ /* pls*/
76
 
77
  add_action( "load-{$cntctfrm_settings}", 'cntctfrm_add_tabs' );
78
  }
81
 
82
  if ( ! function_exists ( 'cntctfrm_init' ) ) {
83
  function cntctfrm_init() {
84
+ global $cntctfrm_plugin_info, $cntctfrm_result, $cntctfrm_form_count;
 
 
 
85
 
86
+ $form_submited = isset( $_POST['cntctfrm_form_submited'] ) ? $_POST['cntctfrm_form_submited'] : 0;
87
+ if ( true === $cntctfrm_result && $cntctfrm_form_count == $form_submited ) {
88
+ setcookie('cntctfrm_send_mail', true);
89
+ }
90
+ if ( true !== $cntctfrm_result || $cntctfrm_form_count != $form_submited ) {
91
+ setcookie('cntctfrm_send_mail', false);
92
+ }
93
  require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
94
  bws_include_init( plugin_basename( __FILE__ ) );
95
 
113
  if ( empty( $bws_plugin_info ) )
114
  $bws_plugin_info = array( 'id' => '77', 'version' => $cntctfrm_plugin_info["Version"] );
115
 
116
+ do_action( 'cntctfrm_new_object_custom_field');
117
+
118
  /* Display form on the setting page */
119
  $cntctfrm_lang_codes = array(
120
  'ab' => 'Abkhazian',
307
  /* Call register settings function */
308
  if ( isset( $_REQUEST['page'] ) && 'contact_form.php' == $_REQUEST['page'] )
309
  cntctfrm_settings();
310
+ /*pls */
311
  if ( 'plugins.php' == $pagenow ) {
312
  /* Install the option defaults */
313
  if ( function_exists( 'bws_plugin_banner_go_pro' ) ) {
315
  bws_plugin_banner_go_pro( $cntctfrm_options, $cntctfrm_plugin_info, 'cntctfrm', 'contact-form-plugin', 'f575dc39cba54a9de88df346eed52101', '77', 'contact-form-plugin' );
316
  }
317
  }
318
+ /* pls*/
319
  /* add contact form to global $bws_shortcode_list */
320
  $bws_shortcode_list['cntctfrm'] = array( 'name' => 'Contact Form', 'js_function' => 'cntctfrm_shortcode_init' );
321
  }
375
  }
376
 
377
  /* Get options from the database */
378
+ if ( isset( $GLOBALS['cntctfrmmlt_id_form'] ) || $form_id ) {
379
+ $id = ( $form_id ) ? $form_id : $GLOBALS['cntctfrmmlt_id_form'];
380
  if ( $cntctfrm_options = get_option( 'cntctfrmmlt_options_' . $id ) ) {
381
  $cntctfrm_options = get_option( 'cntctfrmmlt_options_' . $id );
382
  } else {
422
  $cntctfrm_options['hide_premium_options'] = array();
423
 
424
  if ( $contact_form_multi_active ) {
425
+ if ( isset( $GLOBALS['cntctfrmmlt_id_form'] ) || $form_id ) {
426
+ $id = ( $form_id ) ? $form_id : $GLOBALS['cntctfrmmlt_id_form'];
427
  if ( get_option( 'cntctfrmmlt_options_' . $id ) ) {
428
  update_option( 'cntctfrmmlt_options_' . $id , $cntctfrm_options );
429
  } else {
450
  cntctfrm_db_create();
451
  $cntctfrm_options['plugin_db_version'] = $db_version;
452
  if ( $contact_form_multi_active ) {
453
+ if ( isset( $GLOBALS['cntctfrmmlt_id_form'] ) || $form_id ) {
454
+ $id = ( $form_id ) ? $form_id : $GLOBALS['cntctfrmmlt_id_form'];
455
  if ( get_option( 'cntctfrmmlt_options_' . $id ) ) {
456
  update_option( 'cntctfrmmlt_options_' . $id , $cntctfrm_options );
457
  } else {
530
  'language' => array(),
531
  'change_label' => 0,
532
  'gdpr_link' => '',
533
+ 'name_label' => array( 'default' => esc_html__( "Name", 'contact-form-plugin' ) . ':' ),
534
+ 'address_label' => array( 'default' => esc_html__( "Address", 'contact-form-plugin' ) . ':' ),
535
+ 'email_label' => array( 'default' => esc_html__( "Email Address", 'contact-form-plugin' ) . ':' ),
536
+ 'phone_label' => array( 'default' => esc_html__( "Phone number", 'contact-form-plugin' ) . ':' ),
537
+ 'subject_label' => array( 'default' => esc_html__( "Subject", 'contact-form-plugin' ) . ':' ),
538
+ 'message_label' => array( 'default' => esc_html__( "Message", 'contact-form-plugin' ) . ':' ),
539
+ 'attachment_label' => array( 'default' => esc_html__( "Attachment", 'contact-form-plugin' ) . ':' ),
540
+ 'attachment_tooltip' => array( 'default' => esc_html__( "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' ) ),
541
+ 'send_copy_label' => array( 'default' => esc_html__( "Send me a copy", 'contact-form-plugin' ) ),
542
+ 'gdpr_label' => array( 'default' => esc_html__( "I consent to having this site collect my personal data.", 'contact-form-plugin' ) ),
543
+ 'gdpr_text_button' => array( 'default' => esc_html__( "Learn more", 'contact-form-plugin' ) ),
544
+ 'submit_label' => array( 'default' => esc_html__( "Submit", 'contact-form-plugin' ) ),
545
+ 'name_error' => array( 'default' => esc_html__( "Your name is required.", 'contact-form-plugin' ) ),
546
+ 'address_error' => array( 'default' => esc_html__( "Address is required.", 'contact-form-plugin' ) ),
547
+ 'email_error' => array( 'default' => esc_html__( "A valid email address is required.", 'contact-form-plugin' ) ),
548
+ 'phone_error' => array( 'default' => esc_html__( "Phone number is required.", 'contact-form-plugin' ) ),
549
+ 'subject_error' => array( 'default' => esc_html__( "Subject is required.", 'contact-form-plugin' ) ),
550
+ 'message_error' => array( 'default' => esc_html__( "Message text is required.", 'contact-form-plugin' ) ),
551
+ 'attachment_error' => array( 'default' => esc_html__( "File format is not valid.", 'contact-form-plugin' ) ),
552
+ 'attachment_upload_error' => array( 'default' => esc_html__( "File upload error.", 'contact-form-plugin' ) ),
553
+ 'attachment_move_error' => array( 'default' => esc_html__( "The file could not be uploaded.", 'contact-form-plugin' ) ),
554
+ 'attachment_size_error' => array( 'default' => esc_html__( "This file is too large.", 'contact-form-plugin' ) ),
555
+ 'captcha_error' => array( 'default' => esc_html__( "Please fill out the CAPTCHA.", 'contact-form-plugin' ) ),
556
+ 'form_error' => array( 'default' => esc_html__( "Please make corrections below and try again.", 'contact-form-plugin' ) ),
557
  'action_after_send' => 1,
558
+ 'thank_text' => array( 'default' => esc_html__( "Thank you for contacting us.", 'contact-form-plugin' ) ),
559
  'redirect_url' => '',
560
  'delete_attached_file' => '0',
561
  'html_email' => 1,
585
  ),
586
  'active_multi_attachment' => 0
587
  );
588
+ $option_defaults = apply_filters( 'cntctfrm_get_additional_options_default', $option_defaults );
589
 
590
  return $option_defaults;
591
  }
775
  if ( array_key_exists( 'subscriber', $cntctfrm_related_plugins ) )
776
  $display_subscriber = ! empty( $cntctfrm_related_plugins['subscriber']['options']['contact_form'] );
777
  } else {
778
+ if ( empty( $id ) && isset( $GLOBALS['cntctfrmmlt_id_form'] ) ) {
779
+ $id = $GLOBALS['cntctfrmmlt_id_form'];
780
  }
781
  if ( ! empty( $id ) ) {
782
  if ( get_option( 'cntctfrmmlt_options_' . $id ) ) {
830
  if ( ! class_exists( 'Bws_Settings_Tabs' ) )
831
  require_once( dirname( __FILE__ ) . '/bws_menu/class-bws-settings.php' );
832
  require_once( dirname( __FILE__ ) . '/includes/class-cntctfrm-settings.php' );
833
+ $page = new Cntctfrm_Settings_Tabs( plugin_basename( __FILE__ ) );
834
+ if ( method_exists( $page, 'add_request_feature' ) )
835
+ $page->add_request_feature(); ?>
836
  <div class="wrap">
837
+ <h1 class="cntctfrm-title"><?php esc_html_e( 'Contact Form Settings', 'contact-form-plugin' ); ?></h1>
838
  <?php $contact_form_multi_active = cntctfrm_check_cf_multi_active();
839
  if ( ! $contact_form_multi_active ) { ?>
840
  <h3 class="nav-tab-wrapper cntctfrm_noborder">
841
+ <span class="nav-tab nav-tab-active"><?php esc_html_e( 'NEW_FORM', 'contact-form-plugin' ); ?></span>
842
+ <a id="cntctfrm_show_multi_notice" class="nav-tab" target="_new" href="https://bestwebsoft.com/products/wordpress/plugins/contact-form-multi/?k=57d8351b1c6b67d3e0600bd9a680c283&amp;pn=3&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" title="<?php esc_html_e( "If you want to create multiple contact forms, please install the Contact Form Multi plugin.", 'contact-form-plugin' ); ?>">+</a>
843
  </h3>
844
  <?php } else { ?>
845
  <h3 class="nav-tab-wrapper cntctfrm_noborder"></h3>
846
  <?php if ( version_compare( $cntctfrmmlt_plugin_info['Version'] , '1.2.6', '<') ) { ?>
847
+ <div class="error below-h2"><p><strong><?php esc_html_e( "Contact Form plugin doesn't support your current version of Contact Form Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or higher.", 'contact-form-plugin' ); ?></strong></p></div>
848
  <?php } ?>
849
  <?php }
850
  $page->display_content(); ?>
922
  $page_url = esc_url( add_query_arg( array() ) . '#cntctfrm_contact_form' );
923
 
924
  /* If contact form submited */
925
+ $default_value = '';
926
  $form_submited = isset( $_POST['cntctfrm_form_submited'] ) ? $_POST['cntctfrm_form_submited'] : 0;
927
+ $name = ( isset( $_POST['cntctfrm_contact_name'] ) && $cntctfrm_form_count == $form_submited ) ? stripcslashes( htmlspecialchars( $_POST['cntctfrm_contact_name'] ) ) : apply_filters( 'cntctfrm_default_name_check', $default_value );
 
928
  $address = ( isset( $_POST['cntctfrm_contact_address'] ) && $cntctfrm_form_count == $form_submited ) ? stripcslashes( htmlspecialchars( $_POST['cntctfrm_contact_address'] ) ) : "";
929
+ $email = ( isset( $_POST['cntctfrm_contact_email'] ) && $cntctfrm_form_count == $form_submited ) ? stripcslashes( htmlspecialchars( $_POST['cntctfrm_contact_email'] ) ) : apply_filters( 'cntctfrm_default_email_check', $default_value );
930
+ $subject = ( isset( $_POST['cntctfrm_contact_subject'] ) && $cntctfrm_form_count == $form_submited ) ? stripcslashes( htmlspecialchars( $_POST['cntctfrm_contact_subject'] ) ) : apply_filters( 'cntctfrm_default_subject_check', $default_value );
931
+ $message = ( isset( $_POST['cntctfrm_contact_message'] ) && $cntctfrm_form_count == $form_submited ) ? stripcslashes( htmlspecialchars( $_POST['cntctfrm_contact_message'] ) ) : apply_filters( 'cntctfrm_default_message_check', $default_value );
932
  $phone = ( isset( $_POST['cntctfrm_contact_phone'] ) && $cntctfrm_form_count == $form_submited ) ? stripcslashes( htmlspecialchars( $_POST['cntctfrm_contact_phone'] ) ) : "";
933
 
934
  $send_copy = ( isset( $_POST['cntctfrm_contact_send_copy'] ) && $cntctfrm_form_count == $form_submited ) ? $_POST['cntctfrm_contact_send_copy'] : "";
936
  /* If it is good */
937
 
938
  if ( true === $cntctfrm_result && $cntctfrm_form_count == $form_submited ) {
 
939
 
940
  if ( 1 == $cntctfrm_options['action_after_send'] ) {
941
  $content .= '<div id="cntctfrm_contact_form' . $form_countid . '"><div id="cntctfrm_thanks">' . $cntctfrm_options['thank_text'][$lang] . '</div></div>';
942
  } else {
943
  $content .= "<script type='text/javascript'>window.location.href = '" . $cntctfrm_options['redirect_url'] . "';</script>";
944
+
945
  }
946
  } elseif ( false === $cntctfrm_result && $cntctfrm_form_count == $form_submited ) {
947
  /* If email not be delivered */
948
+ $cntctfrm_error_message['error_form'] = esc_html__( "Sorry, email message could not be delivered.", 'contact-form-plugin' );
949
  }
950
 
951
  if ( true !== $cntctfrm_result || $cntctfrm_form_count != $form_submited ) {
 
952
 
953
  $classes = ( $cntctfrm_options['layout'] === 1 ) ? ' cntctfrm_one_column' : ' cntctfrm_two_columns';
954
  $classes .= is_rtl() ? ' cntctfrm_rtl' : ' cntctfrm_ltr';
970
 
971
  $column = ( $i == 1 ) ? 'first_column' : 'second_column';
972
  $content .= '<div id="cntctfrm_' . $column . '" class="cntctfrm_column">';
973
+ $custom_fields = apply_filters( 'cntctfrm_custom_fields', $atts );
974
  foreach ( $cntctfrm_ordered_fields[ $column ] as $cntctfrm_field ) {
975
  switch( $cntctfrm_field ) {
976
  case 'cntctfrm_contact_name':
977
  if ( 1 == $cntctfrm_options['display_name_field'] ) {
978
+ $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_name_wrap"' . apply_filters( 'cntctfrm_visibility', 'namecontact' ) . '>';
979
  $content .= '<div class="cntctfrm_label cntctfrm_label_name">
980
  <label for="cntctfrm_contact_name' . $form_countid . '">' . $cntctfrm_options['name_label'][ $lang ] . ( $cntctfrm_options['required_name_field'] == 1 ? ' <span class="required">' . $cntctfrm_options['required_symbol'] . '</span></label>' : '</label>' );
981
  $content .= '</div>';
983
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_name'] . '</div>';
984
  }
985
  $content .= '<div class="cntctfrm_input cntctfrm_input_name">
986
+ <input ' . apply_filters( 'cntctfrm_readonly', 'namecontact' ) . ' class="text" type="text" size="40" value="' . $name . '" name="cntctfrm_contact_name" id="cntctfrm_contact_name' . $form_countid . '" />';
987
  $content .= '</div>';
988
  $content .= '</div>';
989
  }
1003
  }
1004
  break;
1005
  case 'cntctfrm_contact_email':
1006
+ $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_email_wrap"' . apply_filters( 'cntctfrm_visibility', 'email' ) . '>';
1007
  $content .= '<div class="cntctfrm_label cntctfrm_label_email">
1008
  <label for="cntctfrm_contact_email' . $form_countid . '">' . $cntctfrm_options['email_label'][ $lang ] . ( $cntctfrm_options['required_email_field'] == 1 ? ' <span class="required">' . $cntctfrm_options['required_symbol'] . '</span></label>' : '</label>' ) . '
1009
  </div>';
1011
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_email'] . '</div>';
1012
  }
1013
  $content .= '<div class="cntctfrm_input cntctfrm_input_email">
1014
+ <input ' . apply_filters( 'cntctfrm_readonly', 'email' ) . ' class="text" type="text" size="40" value="' . $email . '" name="cntctfrm_contact_email" id="cntctfrm_contact_email' . $form_countid . '" />';
1015
  $content .= '</div>';
1016
  $content .= '</div>';
1017
  break;
1031
  }
1032
  break;
1033
  case 'cntctfrm_contact_subject':
1034
+ $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_subject_wrap"' . apply_filters( 'cntctfrm_visibility', 'subject' ) . '>';
1035
  $content .= '<div class="cntctfrm_label cntctfrm_label_subject">
1036
  <label for="cntctfrm_contact_subject' . $form_countid . '">' . $cntctfrm_options['subject_label'][ $lang ] . ( $cntctfrm_options['required_subject_field'] == 1 ? ' <span class="required">' . $cntctfrm_options['required_symbol'] . '</span></label>' : '</label>' ) . '
1037
  </div>';
1039
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_subject'] . '</div>';
1040
  }
1041
  $content .= '<div class="cntctfrm_input cntctfrm_input_subject">
1042
+ <input ' . apply_filters( 'cntctfrm_readonly', 'subject' ) . 'class="text" type="text" size="40" value="' . $subject . '" name="cntctfrm_contact_subject" id="cntctfrm_contact_subject' . $form_countid . '" />';
1043
  $content .= '</div>';
1044
  $content .= '</div>';
1045
  break;
1046
  case 'cntctfrm_contact_message':
1047
+ $content .= '<div class="cntctfrm_field_wrap cntctfrm_field_message_wrap"' . apply_filters( 'cntctfrm_visibility', 'message' ) . '>';
1048
  $content .= '<div class="cntctfrm_label cntctfrm_label_message">
1049
  <label for="cntctfrm_contact_message' . $form_countid . '">' . $cntctfrm_options['message_label'][ $lang ] . ( $cntctfrm_options['required_message_field'] == 1 ? ' <span class="required">' . $cntctfrm_options['required_symbol'] . '</span></label>' : '</label>' ) . '
1050
  </div>';
1052
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_message'] . '</div>';
1053
  }
1054
  $content .= '<div class="cntctfrm_input cntctfrm_input_message">
1055
+ <textarea ' . apply_filters( 'cntctfrm_readonly', 'message' ) . ' rows="5" cols="30" name="cntctfrm_contact_message" id="cntctfrm_contact_message' . $form_countid . '">' . $message . '</textarea>';
1056
  $content .= '</div>';
1057
  $content .= '</div>';
1058
  break;
1162
  break;
1163
  }
1164
  }
1165
+ if ( has_filter( 'cntctfrm_foreach_custom_fields' ) )
1166
+ $content = apply_filters('cntctfrm_foreach_custom_fields', $custom_fields, $i, $form_submited, $form_countid, $lang, $content );
1167
+
1168
  $content .= '</div>';
1169
  }
1170
 
1286
  }
1287
  /* If it is good */
1288
  if ( true === $cntctfrm_result ) {
1289
+ setcookie( 'cntctfrm_send_mail', true );
1290
  if ( 0 == $cntctfrm_options['action_after_send'] ) {
1291
  wp_redirect( $cntctfrm_options['redirect_url'] );
1292
  exit;
1327
  }
1328
  }
1329
  }
 
1330
  if ( 1 == $cntctfrm_options['required_name_field'] && 1 == $cntctfrm_options['display_name_field'] )
1331
  $cntctfrm_error_message['error_name'] = $cntctfrm_options['name_error'][ $language ];
1332
  if ( 1 == $cntctfrm_options['required_address_field'] && 1 == $cntctfrm_options['display_address_field'] )
1504
  } else {
1505
  unset( $cntctfrm_error_message['error_attachment'] );
1506
  }
1507
+ $cntctfrm_error_message = apply_filters('cntctfrm_check_fields', $cntctfrm_error_message );
1508
  if ( 1 == count( $cntctfrm_error_message ) ) {
1509
  if ( has_filter( 'sbscrbr_cntctfrm_checkbox_check' ) ) {
1510
  $cntctfrm_sbscrbr_check = apply_filters( 'sbscrbr_cntctfrm_checkbox_check', array(
1558
  $message = isset( $_POST['cntctfrm_contact_message'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_message'] ) : "";
1559
  $phone = isset( $_POST['cntctfrm_contact_phone'] ) ? htmlspecialchars( $_POST['cntctfrm_contact_phone'] ) : "";
1560
  $user_agent = cntctfrm_clean_input( $_SERVER['HTTP_USER_AGENT'] );
1561
+ if ( isset( $_COOKIE['cntctfrm_send_mail'] ) && true == $_COOKIE['cntctfrm_send_mail'] )
 
1562
  return true;
1563
 
1564
  if ( 'user' == $cntctfrm_options['select_email'] ) {
1594
  }
1595
  if ( 1 == $cntctfrm_options['display_sent_from'] ) {
1596
  if ( 1 == $cntctfrm_options['html_email'] )
1597
+ $user_info_string .= '<tr><td>' . esc_html__( 'Sent from (ip address)', 'contact-form-plugin' ) . ':</td><td>' . $cntctfrm_remote_addr . " ( " . $userdomain . " )" . '</td></tr>';
1598
  else
1599
+ $user_info_string .= esc_html__( 'Sent from (ip address)', 'contact-form-plugin' ) . ': ' . $cntctfrm_remote_addr . " ( " . $userdomain . " )" . "\n";
1600
  }
1601
  if ( 1 == $cntctfrm_options['display_date_time'] ) {
1602
  if ( 1 == $cntctfrm_options['html_email'] )
1603
+ $user_info_string .= '<tr><td>' . esc_html__('Date/Time', 'contact-form-plugin') . ':</td><td>' . date_i18n( get_option( 'date_format' ) . ' ' . get_option( 'time_format' ), strtotime( current_time( 'mysql' ) ) ) . '</td></tr>';
1604
  else
1605
+ $user_info_string .= esc_html__( 'Date/Time', 'contact-form-plugin' ) . ': ' . date_i18n( get_option( 'date_format' ) . ' ' . get_option( 'time_format' ), strtotime( current_time( 'mysql' ) ) ) . "\n";
1606
  }
1607
  if ( 1 == $cntctfrm_options['display_coming_from'] ) {
1608
  if ( 1 == $cntctfrm_options['html_email'] )
1609
+ $user_info_string .= '<tr><td>' . esc_html__( 'Sent from (referer)', 'contact-form-plugin' ) . ':</td><td>' . $form_action_url . '</td></tr>';
1610
  else
1611
+ $user_info_string .= esc_html__( 'Sent from (referer)', 'contact-form-plugin' ) . ': ' . $form_action_url . "\n";
1612
  }
1613
  if ( 1 == $cntctfrm_options['display_user_agent'] ) {
1614
  if ( 1 == $cntctfrm_options['html_email'] )
1615
+ $user_info_string .= '<tr><td>' . esc_html__( 'Using (user agent)', 'contact-form-plugin' ) . ':</td><td>' . $user_agent . '</td></tr>';
1616
  else
1617
+ $user_info_string .= esc_html__( 'Using (user agent)', 'contact-form-plugin' ) . ': ' . $user_agent . "\n";
1618
  }
1619
  }
1620
 
1624
  if ( 1 == $cntctfrm_options['html_email'] ) {
1625
  $message_text = '<html>
1626
  <head>
1627
+ <title>'. esc_html__( "Contact from", 'contact-form-plugin' ) . ' ' . get_bloginfo( 'name' ) . '</title>
1628
  </head>
1629
  <body>
1630
  <table>
1631
  <tr>
1632
+ <td>' . esc_html__( "Site", 'contact-form-plugin' ) . '</td>
1633
  <td>' . get_bloginfo( "url" ) . '</td>
1634
  </tr>';
1635
  foreach ( $message_order_fields as $field ){
1638
  case "name":
1639
  if ( 1 == $cntctfrm_options['display_name_field'] ) {
1640
  $message_text .= '<tr><td width="160">';
1641
+ $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['name_label'][ $lang ] : esc_html__( "Name", 'contact-form-plugin' );
1642
  $message_text .= '</td><td>'. $name .'</td></tr>';
1643
  }
1644
  break;
1645
  case "address":
1646
  if ( 1 == $cntctfrm_options['display_address_field'] ) {
1647
  $message_text .= '<tr><td>';
1648
+ $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['address_label'][ $lang ] : esc_html__( "Address", 'contact-form-plugin' );
1649
  $message_text .= '</td><td>'. $address .'</td></tr>';
1650
  }
1651
  break;
1652
  case "email":
1653
  $message_text .= '<tr><td>';
1654
+ $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['email_label'][ $lang ] : esc_html__( "Email", 'contact-form-plugin' );
1655
  $message_text .= '</td><td>'. $email .'</td></tr>';
1656
  break;
1657
  case "subject":
1658
  $message_text .= '<tr><td>';
1659
+ $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['subject_label'][ $lang ] : esc_html__( "Subject", 'contact-form-plugin' );
1660
  $message_text .= '</td><td>' . $subject .'</td></tr>';
1661
  break;
1662
  case "message":
1663
  $message_text .= '<tr><td>';
1664
+ $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['message_label'][ $lang ] : esc_html__( "Message", 'contact-form-plugin' );
1665
  $message_text .= '</td><td>' . $message .'</td></tr>';
1666
  break;
1667
  case "phone":
1668
  if ( 1 == $cntctfrm_options['display_phone_field'] ) {
1669
  $message_text .= '<tr><td>';
1670
+ $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['phone_label'][ $lang ] : esc_html__( "Phone Number", 'contact-form-plugin' );
1671
  $message_text .= '</td><td>'. $phone .'</td></tr>';
1672
  }
1673
  break;
1674
  }
1675
  }
1676
+ $message_text = apply_filters( 'cntctfrm_cf_id_message_text', $message_text );
1677
  $message_text .= '<tr><td><br /></td><td><br /></td></tr>';
1678
 
1679
  $message_text_for_user = $message_text . '</table></body></html>';
1680
  $message_text .= $user_info_string . '</table></body></html>';
1681
  } else {
1682
+ $message_text = esc_html__( "Site", 'contact-form-plugin' ) . ': ' . get_bloginfo("url") . "\n";;
1683
  foreach ( $message_order_fields as $field ) {
1684
  $field = str_replace( 'cntctfrm_contact_', '', $field );
1685
  switch ( $field ) {
1686
  case "name":
1687
  if ( 1 == $cntctfrm_options['display_name_field'] ) {
1688
+ $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['name_label'][ $lang ] : esc_html__( "Name", 'contact-form-plugin' );
1689
  $message_text .= ': '. $name . "\n";
1690
  }
1691
  break;
1692
  case "address":
1693
  if ( 1 == $cntctfrm_options['display_address_field'] ) {
1694
+ $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['address_label'][ $lang ] : esc_html__( "Address", 'contact-form-plugin' );
1695
  $message_text .= ': '. $address . "\n";
1696
  }
1697
  break;
1698
  case "email":
1699
+ $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['email_label'][ $lang ] : esc_html__( "Email", 'contact-form-plugin' );
1700
  $message_text .= ': ' . $email . "\n";
1701
  break;
1702
  case "subject":
1703
+ $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['subject_label'][ $lang ] : esc_html__( "Subject", 'contact-form-plugin' );
1704
  $message_text .= ': ' . $subject . "\n";
1705
  break;
1706
  case "message":
1707
+ $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['message_label'][ $lang ] : esc_html__( "Message", 'contact-form-plugin' );
1708
  $message_text .= ': ' . $message ."\n";
1709
  break;
1710
  case "phone":
1711
  if ( 1 == $cntctfrm_options['display_phone_field'] ) {
1712
+ $message_text .= ( 1 == $cntctfrm_options['change_label_in_email'] ) ? $cntctfrm_options['phone_label'][ $lang ] : esc_html__( "Phone Number", 'contact-form-plugin' );
1713
  $message_text .= ': '. $phone . "\n";
1714
  }
1715
  break;
1716
  }
1717
  }
1718
+ $message_text = apply_filters( 'cntctfrm_cf_id_message_text_field', $message_text );
1719
  $message_text .= "\n";
1720
 
1721
  $message_text_for_user = $message_text;
1808
 
1809
  $headers .= "Content-Type: multipart/mixed; boundary=\"$bound_text\"";
1810
 
1811
+ $message_text = $message_text_for_user = esc_html__( "If you can see this MIME, it means that the MIME type is not supported by your email client!", 'contact-form-plugin' ) . "\n";
1812
 
1813
  if ( 1 == $cntctfrm_options['html_email'] ) {
1814
  $message_text .= $bound . "\n" . "Content-Type: text/html; charset=\"utf-8\"\n" . "Content-Transfer-Encoding: 7bit\n\n" . $message_block . "\n\n";
1865
  if ( ! $this_plugin ) $this_plugin = plugin_basename(__FILE__);
1866
 
1867
  if ( $file == $this_plugin ) {
1868
+ $settings_link = '<a href="admin.php?page=contact_form.php">' . esc_html__( 'Settings', 'contact-form-plugin' ) . '</a>';
1869
  array_unshift( $links, $settings_link );
1870
  }
1871
  }
1879
  $base = plugin_basename(__FILE__);
1880
  if ( $file == $base ) {
1881
  if ( ! is_network_admin() )
1882
+ $links[] = '<a href="admin.php?page=contact_form.php">' . esc_html__( 'Settings','contact-form-plugin' ) . '</a>';
1883
+ $links[] = '<a href="http://wordpress.org/plugins/contact-form-plugin/faq/" target="_blank">' . esc_html__( 'FAQ','contact-form-plugin' ) . '</a>';
1884
+ $links[] = '<a href="https://support.bestwebsoft.com">' . esc_html__( 'Support','contact-form-plugin' ) . '</a>';
1885
  }
1886
  return $links;
1887
  }
1925
  global $wp_version, $cntctfrm_plugin_info;
1926
 
1927
  wp_enqueue_style( 'cntctfrm_stylesheet', plugins_url( 'css/style.css', __FILE__ ), false, $cntctfrm_plugin_info["Version"] );
1928
+ do_action( 'cntctfrm_include_plus_style' );
1929
 
1930
  wp_enqueue_style( 'cntctfrm_form_style', plugins_url( 'css/form_style.css', __FILE__ ), false, $cntctfrm_plugin_info["Version"] );
1931
 
1932
  $script_vars = array(
1933
  'cntctfrm_nonce' => wp_create_nonce( plugin_basename( __FILE__ ), 'cntctfrm_ajax_nonce_field' ),
1934
+ 'cntctfrm_confirm_text' => esc_html__( 'Are you sure that you want to delete this language data?', 'contact-form-plugin' )
1935
  );
1936
 
1937
  if ( wp_is_mobile() )
1939
 
1940
  wp_enqueue_script( 'cntctfrm_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery', 'jquery-ui-sortable' ), $cntctfrm_plugin_info["Version"] );
1941
  wp_localize_script( 'cntctfrm_script', 'cntctfrm_ajax', $script_vars );
1942
+ do_action('cntctfrm_custom_enqueue_script');
1943
 
1944
  bws_enqueue_settings_scripts();
1945
 
1954
  'click' => true,
1955
  'onload' => true,
1956
  ),
1957
+ 'content' => '<h3>' . esc_html__( 'Add multiple forms', 'contact-form-plugin' ) . '</h3>' .'<p>' . esc_html__( 'Install Contact Form Multi plugin to create unlimited number of contact forms.', 'contact-form-plugin' ) . '</p>',
1958
  'buttons' => array(
1959
  array(
1960
  'type' => 'link',
1961
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/contact-form-multi/?k=747ca825fb44711e2d24e40697747bc6&pn=77&v=' . $cntctfrm_plugin_info["Version"] . '&wp_v=' . $wp_version,
1962
+ 'text' => esc_html__( 'Learn more', 'contact-form-plugin' ),
1963
  ),
1964
  'close' => array(
1965
  'type' => 'dismiss',
1966
+ 'text' => esc_html__( 'Close', 'contact-form-plugin' ),
1967
  ),
1968
  ),
1969
  'position' => array(
2017
  $lang = $is_ajax ? $_REQUEST['lang'] : $_REQUEST['cntctfrm_languages'];
2018
 
2019
  if ( ! array_key_exists( $lang, $cntctfrm_lang_codes ) ) {
2020
+ $message = sprintf( '<strong>%s</strong>:&nbsp%s.', esc_html__( 'Error', 'contact-form-plugin' ), esc_html__( 'Illegal language code', 'contact-form-plugin' ) );
2021
  if ( $is_ajax ) {
2022
+ throw new Exception( esc_html__( 'Illegal language code', 'contact-form-plugin' ) );
2023
  die();
2024
  } else {
2025
  wp_die( $message );
2029
  $contact_form_multi_active = cntctfrm_check_cf_multi_active();
2030
 
2031
  if ( $contact_form_multi_active ) {
2032
+ if ( isset( $GLOBALS['cntctfrmmlt_id_form'] ) && $cntctfrm_options = get_option( 'cntctfrmmlt_options_' . $GLOBALS['cntctfrmmlt_id_form'] ) ) {
2033
  /**/
2034
  } else {
2035
  $cntctfrm_options = get_option( 'cntctfrmmlt_options' );
2053
  }
2054
 
2055
  if ( ! $contact_form_multi_active ) {
2056
+ $result = esc_html__( "Use shortcode", 'contact-form-plugin' ) . ' <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=' . $lang . ']</span> ' . esc_html__( "for this language", 'contact-form-plugin' );
2057
  } else {
2058
+ $result = esc_html__( "Use shortcode", 'contact-form-plugin' ) . ' <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=' . $lang . ' id=' . $GLOBALS['cntctfrmmlt_id_form'] . ']</span> ' . esc_html__( "for this language", 'contact-form-plugin' );
2059
  }
2060
 
2061
  if ( $is_ajax ) {
2076
  $contact_form_multi_active = cntctfrm_check_cf_multi_active();
2077
 
2078
  if ( $contact_form_multi_active ) {
2079
+ if ( isset( $GLOBALS['cntctfrmmlt_id_form'] ) && $cntctfrm_options = get_option( 'cntctfrmmlt_options_' . $GLOBALS['cntctfrmmlt_id_form'] ) ) {
2080
  /**/
2081
  } else {
2082
  $cntctfrm_options = get_option( 'cntctfrmmlt_options' );
2179
  if ( ! isset( $bstwbsftwppdtplgns_cookie_add ) ) {
2180
  wp_enqueue_script( 'bstwbsftwppdtplgns_cookie_add', plugins_url( 'bws_menu/js/c_o_o_k_i_e.js', __FILE__ ) );
2181
  }
2182
+ $cntctfrm_script_banner = "
2183
  (function($) {
2184
  $(document).ready( function() {
2185
  var hide_message = $.cookie( '" . $this_banner_prefix . " _hide_banner_on_plugin_page' );
2193
  $.cookie( '" . $this_banner_prefix . " _hide_banner_on_plugin_page', \"true\", { expires: 32 } );
2194
  });
2195
  } ) ( jQuery );
2196
+ } )";
2197
+
2198
  wp_register_script( 'cntctfrm_bws_script_banner', '//' );
2199
  wp_enqueue_script( 'cntctfrm_bws_script_banner' );
2200
  wp_add_inline_script( 'cntctfrm_bws_script_banner', sprintf( $cntctfrm_script_banner ) );
2201
+
2202
+ 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 ) ) { ?>
2203
  <div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
2204
  <div class="cntctfrm_for_ctfrmtdb_message bws_banner_on_plugin_page" style="display: none;">
2205
+ <button class="<?php echo $this_banner_prefix; ?>_close_icon close_icon notice-dismiss bws_hide_settings_notice" title="<?php esc_html_e( 'Close notice', 'contact-form-plugin' ); ?>"></button>
2206
  <div class="icon">
2207
  <img title="" src="//ps.w.org/contact-form-to-db/assets/icon-128x128.png" alt="" />
2208
  </div>
2209
  <div class="text">
2210
+ <strong>Contact Form to DB</strong> <?php esc_html_e( "allows to store your messages to the database.", 'contact-form-plugin' ); ?><br />
2211
+ <span><?php esc_html_e( "Manage messages that have been sent from your website.", 'contact-form-plugin' ); ?></span>
2212
  </div>
2213
  <div class="button_div">
2214
+ <a class="button" target="_blank" href="https://bestwebsoft.com/products/wordpress/plugins/contact-form-to-db/?k=6ebf0743736411607343ad391dc3b436&amp;pn=77&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>"><?php esc_html_e( 'Learn More', 'contact-form-plugin' ); ?></a>
2215
  </div>
2216
  </div>
2217
  </div>
2271
  printf( '<option value="%1$s">%2$s</option>', $id, $title );
2272
  } ?>
2273
  </select>
2274
+ <span class="title"><?php esc_html_e( 'Contact form', 'contact-form-plugin' ); ?></span>
2275
  </label>
2276
  <br>
2277
  <label>
2284
  $i++;
2285
  } ?>
2286
  </select>
2287
+ <span class="title"><?php esc_html_e( 'Language', 'contact-form-plugin' ); ?></span>
2288
  </label>
2289
  <input class="bws_default_shortcode" type="hidden" name="default" value="[bestwebsoft_contact_form id=<?php echo array_shift( $multi_ids ); ?>]" />
2290
  <?php } else { ?>
2294
  printf( '<option value="%1$s">%2$s</option>', strtolower( $language ), ( $language == 'default' ) ? $lang_default : $cntctfrm_lang_codes[ $language ] );
2295
  } ?>
2296
  </select>
2297
+ <span class="title"><?php esc_html_e( 'Language', 'contact-form-plugin' ); ?></span>
2298
  </label>
2299
  <input class="bws_default_shortcode" type="hidden" name="default" value="[bestwebsoft_contact_form]" />
2300
  <?php } ?>
2359
  global $wpdb;
2360
  $all_plugins = get_plugins();
2361
 
2362
+ if ( ! array_key_exists( 'contact-form-pro/contact_form_pro.php', $all_plugins ) /*pls */ && ! array_key_exists( 'contact-form-plus/contact-form-plus.php', $all_plugins )/* pls*/ ) {
2363
  if ( function_exists( 'is_multisite' ) && is_multisite() ) {
2364
  $old_blog = $wpdb->blogid;
2365
  /* Get all blog ids */
includes/class-cntctfrm-settings.php CHANGED
@@ -1,14 +1,12 @@
1
  <?php
2
  /**
3
- * Appearances the content on the plugin settings page
4
  */
5
 
6
  if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
7
  class Cntctfrm_Settings_Tabs extends Bws_Settings_Tabs {
8
- private $cfmlt_is_active;
9
- private $first_form_id;
10
  private $is_cfmltpr_pro = false;
11
- private $multi_options_main;
12
  /**
13
  * Constructor.
14
  *
@@ -22,12 +20,14 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
22
  global $cntctfrm_options, $cntctfrm_plugin_info, $contact_form_multi_active;
23
 
24
  $tabs = array(
25
- 'settings' => array( 'label' => __( 'Settings', 'contact-form-plugin' ) ),
26
- 'additional_settings' => array( 'label' => __( 'Additional Settings', 'contact-form-plugin' ) ),
27
- 'appearance' => array( 'label' => __( 'Appearance', 'contact-form-plugin' ) ),
28
- 'misc' => array( 'label' => __( 'Misc', 'contact-form-plugin' ) ),
29
- 'custom_code' => array( 'label' => __( 'Custom Code', 'contact-form-plugin' ) ),
30
- 'license' => array( 'label' => __( 'License Key', 'contact-form-plugin' ) ),
 
 
31
  );
32
 
33
  $addons_check = array();
@@ -40,7 +40,7 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
40
  'slug' => 'contact-form-multi-pro',
41
  'basename' => 'contact-form-multi-pro/contact-form-multi-pro.php'
42
  );
43
- } else if( 'free' == cntctfrm_check_cf_multi_active() ) {
44
  $addons_check['contact-form-multi'] =
45
  array(
46
  'name' => 'Contact Form Multi',
@@ -58,12 +58,19 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
58
  'default_options' => cntctfrm_get_option_defaults(),
59
  'options' => $cntctfrm_options,
60
  'is_network_options' => is_network_admin(),
61
- 'tabs' => $tabs,
62
- 'wp_slug' => 'contact-form',
63
- 'licenses' => $addons_check,
64
- 'doc_link' => 'https://docs.google.com/document/d/1qZYPJhkSdVyyM6XO5WfiBcTS2Sa9_9UMn4vS2g48JRY/'
 
 
65
  ) );
66
 
 
 
 
 
 
67
  add_action( get_parent_class( $this ) . '_appearance_custom_messages', array( $this, 'appearance_custom_messages' ) );
68
  add_action( get_parent_class( $this ) . '_display_metabox', array( $this, 'display_metabox' ) );
69
  $this->cfmlt_is_active = cntctfrm_check_cf_multi_active();
@@ -80,7 +87,6 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
80
  } else {
81
  $this->upload_dir = wp_upload_dir();
82
  }
83
- $bws_hide_premium_options_check = bws_hide_premium_options_check( get_option( 'cntctfrm_options' ) );
84
  $contact_form_multi_active = cntctfrm_check_cf_multi_active();
85
  }
86
 
@@ -93,9 +99,9 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
93
  public function appearance_custom_messages( $save_results ) {
94
  global $cntctfrm_is_old_php;
95
  $message = $error = ""; ?>
96
- <noscript><div class="error below-h2"><p><strong><?php _e( "Please enable JavaScript in your browser.", 'contact-form-plugin' ); ?></strong></p></div></noscript>
97
  <?php if ( $cntctfrm_is_old_php ) { ?>
98
- <div class="error below-h2"><p><strong><?php printf( __( "Contact Form plugin requires PHP %s or higher. Please contact your hosting provider to upgrade PHP version.", 'contact-form-plugin' ), '5.4.0' ); ?></strong></p></div>
99
  <?php } ?>
100
 
101
  <div class="updated below-h2" <?php if ( empty( $message ) || "" != $error ) echo "style=\"appearance:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
@@ -121,7 +127,7 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
121
  $hide_result = bws_hide_premium_options( $this->options );
122
  $this->options = $hide_result['options'];
123
  }
124
-
125
  if ( isset( $_POST['cntctfrm_width_type'] ) && in_array( $_POST['cntctfrm_width_type'], array( 'default', 'custom' ) ) ) {
126
  $this->options['width']['type'] = $_POST['cntctfrm_width_type'];
127
  if ( 'custom' == $_POST['cntctfrm_width_type'] ) {
@@ -345,7 +351,7 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
345
  /* if 'FROM' field was changed */
346
  if ( ( 'custom' == $this->options['from_email'] && 'custom' != $this->options['from_email'] ) ||
347
  ( 'custom' == $this->options['from_email'] && $this->options['custom_from_email'] != $this->options['custom_from_email'] ) ) {
348
- $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' );
349
  }
350
 
351
  $this->options['action_after_send'] = ( isset( $_POST['cntctfrm_action_after_send'] ) && in_array( $_POST['cntctfrm_action_after_send'], array( '1', '0') ) ?( $_POST['cntctfrm_action_after_send'] ) : '1' );
@@ -355,14 +361,14 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
355
  if ( 0 == $this->options['action_after_send']
356
  && ( "" == trim( $this->options['redirect_url'] )
357
  || ! filter_var( $this->options['redirect_url'], FILTER_VALIDATE_URL) ) ) {
358
- $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>";
359
  $this->options['action_after_send'] = 1;
360
  }
361
  if ( 'user' == $this->options['select_email'] ) {
362
  if ( false !== get_user_by( 'login', $this->options['user_email'] ) ) {
363
  /**/
364
  } else {
365
- $error .= __( "Such user does not exist.", 'contact-form-plugin' );
366
  }
367
  } else {
368
  if ( preg_match( '|,|', $this->options['custom_email'] ) ) {
@@ -372,7 +378,7 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
372
  }
373
  foreach ( $cntctfrm_custom_emails as $cntctfrm_custom_email ) {
374
  if ( $cntctfrm_custom_email == "" || ! is_email( trim( $cntctfrm_custom_email ) ) ) {
375
- $error .= __( "Please enter a valid email address in the 'Use this email address' field.", 'contact-form-plugin' );
376
  break;
377
  }
378
  }
@@ -380,40 +386,37 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
380
  if ( 'custom' == $this->options['from_email'] ) {
381
  if ( "" == $this->options['custom_from_email']
382
  || ! is_email( trim( $this->options['custom_from_email'] ) ) ) {
383
- $error .= __( "Please enter a valid email address in the 'FROM' field.", 'contact-form-plugin' );
384
  }
385
  }
386
 
387
  if ( '' == $error ) {
388
  if ( 'pro' == $contact_form_multi_active && $options_main = get_option( 'cntctfrmmltpr_options_main' ) ) {
389
- if ( $options_main['id_form'] !== $_SESSION['cntctfrmmlt_id_form'] )
390
  add_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $this->options );
391
- else if ( $options_main['id_form'] == $_SESSION['cntctfrmmlt_id_form'] )
392
  update_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $this->options );
393
  } elseif ( $contact_form_multi_active ) {
394
  $options_main = get_option( 'cntctfrmmlt_options_main' );
395
 
396
- if ( $options_main['id_form'] !== $_SESSION['cntctfrmmlt_id_form'] )
397
  add_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $this->options );
398
- else if ( $options_main['id_form'] == $_SESSION['cntctfrmmlt_id_form'] )
399
  update_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $this->options );
400
  } else {
401
  update_option( 'cntctfrm_options', $this->options );
402
  }
403
- $message = __( "Settings saved.", 'contact-form-plugin' );
404
  } else {
405
- $error .= ' ' . __( "Settings are not saved.", 'contact-form-plugin' );
406
  }
407
 
408
  return compact( 'message', 'notice', 'error' );
409
  }
410
 
411
  public function tab_settings() {
412
- global $wpdb, $wp_version, $cntctfrm_plugin_info, $bstwbsftwppdtplgns_options, $cntctfrm_countries, $cntctfrm_lang_codes, $cntctfrm_related_plugins, $bws_hide_premium_options_check, $contact_form_multi_active;
413
- $display_pro_options = false;
414
- if ( 'pro' == $this->cfmlt_is_active ) {
415
- $display_pro_options = true;
416
- }
417
  if ( empty( $cntctfrm_related_plugins ) ) {
418
  cntctfrm_related_plugins();
419
  }
@@ -423,19 +426,19 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
423
  }
424
 
425
  $all_plugins = get_plugins();?>
426
- <h3 class="bws_tab_label"><?php _e( 'Contact Form Settings', 'contact-form-plugin' ); ?></h3>
427
  <?php $this->help_phrase(); ?>
428
  <hr>
429
  <div>
430
- <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>
431
  <table class="form-table" style="width:auto;">
432
  <tr valign="top">
433
- <th scope="row"><?php _e( "The user's email address", 'contact-form-plugin' ); ?> </th>
434
  <td colspan="2">
435
  <label>
436
  <input type="radio" id="cntctfrm_select_email_user" name="cntctfrm_select_email" value="user" <?php checked( 'user', $this->options['select_email'] ); ?> />
437
  <select name="cntctfrm_user_email">
438
- <option disabled><?php _e( "Select a username", 'contact-form-plugin' ); ?></option>
439
  <?php foreach ( $userslogin as $key => $value ) {
440
  if ( isset( $value->data ) ) {
441
  if ( $value->data->user_email != '' ) { ?>
@@ -448,49 +451,44 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
448
  }
449
  } ?>
450
  </select>
451
- <div 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' ); ?></div>
452
  </label>
453
  </td>
454
  </tr>
455
  <tr valign="top">
456
- <th scope="row" style="width:200px;"><?php _e( "Use this email address", 'contact-form-plugin' ); ?></th>
457
  <td colspan="2">
458
  <label>
459
  <input type="radio" id="cntctfrm_select_email_custom" name="cntctfrm_select_email" value="custom" <?php checked( 'custom', $this->options['select_email'] ); ?>/>
460
  <input type="text" maxlength="500" name="cntctfrm_custom_email" value="<?php echo $this->options['custom_email']; ?>" />
461
- <div class="bws_info cntctfrm_info"><?php _e( 'Enter the email address for receiving messages', 'contact-form-plugin' ); ?>.</div>
462
  </label>
463
  </td>
464
  </tr>
465
  </table>
466
- <!--PRO baner-->
467
  <?php if ( ! $this->hide_pro_tabs ) { ?>
468
- <div class="bws_pro_version_bloc">
469
- <div class="bws_pro_version_table_bloc">
470
- <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'contact-form-plugin' ); ?>"></button>
471
- <div class="bws_table_bg"></div>
472
- <table class="form-table bws_pro_version">
473
- <tr valign="top">
474
- <th scope="row"><?php _e( "Add department selectbox to the contact form", 'contact-form-plugin' ); ?></th>
475
- <td colspan="2">
476
- <input type="radio" name="cntctfrm_select_email" value="departments" disabled="disabled" />
477
- <div><img src="<?php echo plugins_url( '../images/pro_screen_1.png', __FILE__ ); ?>" alt="" /></div>
478
- </td>
479
- </tr>
480
- </table>
481
- </div>
482
- <div class="bws_pro_version_tooltip">
483
- <a class="bws_button" href="https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=697c5e74f39779ce77850e11dbe21962&amp;pn=77&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro">
484
- <?php _e( 'Upgrade to Pro', 'contact-form-plugin' ); ?>
485
- </a>
486
- <div class="clear"></div>
487
- </div>
488
  </div>
489
- <?php } ?>
490
- <!--PRO banner-->
 
 
491
  <table class="form-table" style="width:auto;">
492
  <tr valign="top">
493
- <th scope="row" style="width:200px;"><?php _e( "Save emails to the database", 'contact-form-plugin' ); ?> </th>
494
  <td colspan="2">
495
  <?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 ) ) {
496
  if ( array_key_exists( 'contact-form-to-db', $cntctfrm_related_plugins ) ) {
@@ -501,29 +499,29 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
501
  }
502
  if ( false == $this->cfmlt_is_active || ! empty( $cntctfrm_related_plugins['contact-form-to-db']['options']['save_messages_to_db'] ) ) { ?>
503
  <label><input type="checkbox" name="cntctfrm_save_email_to_db" value="1" <?php checked( $save_emails ); ?> />
504
- <span class="bws_info"> <?php _e( 'Using', 'contact-form-plugin' ); ?>
505
  <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>
506
  </span>
507
  </label>
508
  <?php } else { ?>
509
  <label><input type="checkbox" name="cntctfrm_save_email_to_db" value="1" disabled="disabled" /></label>
510
- <span class="bws_info">&nbsp;<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
511
  <?php printf( '<a href="%s" target="_blank"> Contact Form to DB %s</a>&nbsp;',
512
  self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['contact-form-to-db']['settings_page'] ),
513
- __( 'settings page', 'contact-form-plugin' ) ); ?>
514
  </span>
515
  <?php }
516
  } else { ?>
517
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_save_email_to_db" value="1" />
518
- <span class="bws_info"><?php _e( 'Using', 'contact-form-plugin' ); ?> Contact Form to DB by BestWebSoft
519
- <?php printf( '<a href="%s" target="_blank">%s Contact Form to DB</a>', self_admin_url( 'plugins.php' ), __( 'Activate', 'contact-form-plugin' ) ); ?>
520
  </span>
521
  </label>
522
  <?php }
523
  } else { ?>
524
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_save_email_to_db" value="1" />
525
- <span class="bws_info"><?php _e( 'Using', 'contact-form-plugin' ); ?> Contact Form to DB by BestWebSoft
526
- <?php printf( '<a href="https://bestwebsoft.com/products/wordpress/plugins/contact-form-to-db/?k=b3bfaac63a55128a35e3f6d0a20dd43d&amp;pn=3&amp;v=%s&amp;wp_v=%s"> %s Contact Form to DB</a>', $cntctfrm_plugin_info["Version"], $wp_version, __( 'Download', 'contact-form-plugin' ) ); ?>
527
  </span>
528
  </label>
529
  <?php } ?>
@@ -534,44 +532,40 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
534
  <?php }
535
 
536
  public function tab_additional_settings() {
537
- global $cntctfrm_related_plugins, $cntctfrm_lang_codes, $cntctfrm_plugin_info, $wp_version, $bws_hide_premium_options_check, $contact_form_multi_active;
538
- $display_pro_options = false;
539
- if ( 'pro' == $this->cfmlt_is_active ) {
540
- $display_pro_options = true;
541
- }
542
  if ( empty( $cntctfrm_related_plugins ) ) {
543
  cntctfrm_related_plugins();
544
  }
545
  $all_plugins = get_plugins();?>
546
- <h3 class="bws_tab_label"><?php _e( 'Additional Settings', 'contact-form-plugin' ); ?></h3>
547
  <?php $this->help_phrase(); ?>
548
  <hr>
549
  <table class="form-table" style="width:auto;">
550
  <tr>
551
- <th scope="row"><?php _e( 'Sending method', 'contact-form-plugin' ); ?></th>
552
  <td colspan="2">
553
  <fieldset>
554
  <label>
555
  <input type='radio' name='cntctfrm_mail_method' value='wp-mail' <?php checked( 'wp-mail', $this->options['mail_method'] ); ?> />
556
- <?php _e( 'Wp-mail', 'contact-form-plugin' ); ?>
557
- <div class="bws_info" style="padding-left: 20px;"><?php _e( 'You can use the Wordpress wp_mail function for mailing', 'contact-form-plugin' ); ?></div>
558
  </label>
559
  <br />
560
  <label>
561
  <input type='radio' name='cntctfrm_mail_method' value='mail' <?php checked( 'mail', $this->options['mail_method'] ); ?> />
562
- <?php _e( 'Mail', 'contact-form-plugin' ); ?>
563
- <div class="bws_info" style="padding-left: 20px;"><?php _e( 'You can use the PHP mail function for mailing', 'contact-form-plugin' ); ?></div>
564
  </label>
565
  </fieldset>
566
  </td>
567
  </tr>
568
  <tr valign="top">
569
- <th scope="row"><?php _e( "'FROM' field", 'contact-form-plugin' ); ?></th>
570
  <td class="cntctfrm_td_name" style="vertical-align: top;">
571
  <table id="cntctfrm_table_from_name">
572
  <tbody>
573
  <tr>
574
- <td colspan="2"><?php _e( "Name", 'contact-form-plugin' ); ?></td>
575
  </tr>
576
  <tr>
577
  <td class="cntctfrm_radio_from_name"><input type="radio" id="cntctfrm_select_from_custom_field" name="cntctfrm_select_from_field" value="custom" <?php checked( 'custom', $this->options['select_from_field'] ); ?> /></td>
@@ -582,9 +576,9 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
582
  <input type="radio" id="cntctfrm_select_from_field" name="cntctfrm_select_from_field" value="user_name" <?php checked( 'user_name', $this->options['select_from_field'] ); ?>/>
583
  </td>
584
  <td>
585
- <label for="cntctfrm_select_from_field"><?php _e( "User name", 'contact-form-plugin' ); ?></label>
586
  <div class="bws_help_box dashicons dashicons-editor-help">
587
- <div class="bws_hidden_help_text" style="min-width: 200px;"><?php echo __( "The name of the user who fills the form will be used in the field 'From'.", 'contact-form-plugin' ); ?></div>
588
  </div>
589
  </td>
590
  </tr>
@@ -595,7 +589,7 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
595
  <table id="cntctfrm_table_from_email">
596
  <tbody>
597
  <tr>
598
- <td colspan="2"><?php _e( "Email", 'contact-form-plugin' ); ?></td>
599
  </tr>
600
  <tr>
601
  <td class="cntctfrm_radio_from_email"><input type="radio" id="cntctfrm_from_custom_email" name="cntctfrm_from_email" value="custom" <?php checked( 'custom', $this->options['from_email'] ); ?> /></td>
@@ -606,9 +600,9 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
606
  <input type="radio" id="cntctfrm_from_email" name="cntctfrm_from_email" value="user" <?php checked( 'user', $this->options['from_email'] ); ?> />
607
  </td>
608
  <td>
609
- <label for="cntctfrm_from_email"><?php _e( "User email", 'contact-form-plugin' ); ?></label>
610
  <div class="bws_help_box dashicons dashicons-editor-help">
611
- <div class="bws_hidden_help_text" style="min-width: 200px;"><?php echo __( "The email address of the user who fills the form will be used in the field 'From'.", 'contact-form-plugin' ); ?></div>
612
  </div>
613
  </td>
614
  </tr>
@@ -617,7 +611,7 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
617
  </td>
618
  <td>
619
  <div>
620
- <span class="bws_info"><?php _e( "If this option is changed, email messages may be moved to the spam folder or email delivery failures may occur.", 'contact-form-plugin' ); ?></span>
621
  </div>
622
  </td>
623
  </tr>
@@ -626,7 +620,7 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
626
  </td>
627
  </tr>
628
  <tr valign="top">
629
- <th scope="row"><?php _e( "Required symbol", 'contact-form-plugin' ); ?></th>
630
  <td colspan="2">
631
  <input type="text" id="cntctfrm_required_symbol" name="cntctfrm_required_symbol" value="<?php echo $this->options['required_symbol']; ?>" maxlength="100" />
632
  </td>
@@ -635,261 +629,302 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
635
  <br />
636
  <table class="cntctfrm_settings_table" style="width: auto;">
637
  <thead>
638
- <tr valign="top">
639
- <th scope="row"><?php _e( "Fields", 'contact-form-plugin' ); ?></th>
640
- <th><?php _e( "Used", 'contact-form-plugin' ); ?></th>
641
- <th><?php _e( "Required", 'contact-form-plugin' ); ?></th>
 
642
  <?php if ( ! $this->hide_pro_tabs ) { ?>
643
- <th><?php _e( "Visible", 'contact-form-plugin' ); ?></th>
644
- <th><?php _e( "Disabled for editing", 'contact-form-plugin' ); ?></th>
645
- <th scope="row" ><?php _e( "Field's default value", 'contact-form-plugin' ); ?></th>
646
  <?php } ?>
 
 
647
  </tr>
648
  </thead>
649
  <tbody>
 
650
  <?php if ( ! $this->hide_pro_tabs ) { ?>
651
  <tr valign="top" >
652
- <td><?php _e( "Department selectbox", 'contact-form-plugin' ); ?></td>
653
  <td class="bws_pro_version">
654
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_selectbox" value="1" />
655
- <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
656
  </td>
657
  <td class="bws_pro_version">
658
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_required_department_field" value="1" />
659
- <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
660
  </td>
661
  <td class="bws_pro_version"></td>
662
  <td class="bws_pro_version"></td>
663
  <td class="bws_pro_version"></td>
664
  </tr>
665
  <?php } ?>
 
666
  <tr valign="top">
667
- <td><?php _e( "Name", 'contact-form-plugin' ); ?></td>
668
  <td>
669
- <label><input type="checkbox" name="cntctfrm_display_name_field" value="1" <?php checked( '1', $this->options['display_name_field'] ); ?> />
670
- <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
671
  </td>
672
  <td>
673
  <label><input type="checkbox" id="cntctfrm_required_name_field" name="cntctfrm_required_name_field" value="1" <?php checked( '1', $this->options['required_name_field'] ); ?> />
674
- <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
675
  </td>
 
676
  <?php if ( ! $this->hide_pro_tabs ) { ?>
677
  <td class="bws_pro_version">
678
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_visible_name" value="1" checked="checked" />
679
- <span class="cntctfrm_mobile_title"><?php _e( "Visible", 'contact-form-plugin' ); ?></span></label>
680
  </td>
681
  <td class="bws_pro_version">
682
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_disabled_name" value="1" />
683
- <span class="cntctfrm_mobile_title"><?php _e( "Disabled for editing", 'contact-form-plugin' ); ?></span></label>
684
  </td>
685
  <td class="bws_pro_version">
686
  <input disabled="disabled" type="checkbox" name="cntctfrm_default_name" value="1" />
687
- <?php _e( "Use User's name as a default value if the user is logged in.", 'contact-form-plugin' ); ?><br />
688
- <span class="bws_info" style="padding-left: 20px;"><?php _e( "'Visible' and 'Disabled for editing' options will be applied only to logged-in users.", 'contact-form-plugin' ); ?></span>
689
  </td>
690
  <?php } ?>
 
 
691
  </tr>
 
692
  <?php if ( ! $this->hide_pro_tabs ) { ?>
693
  <tr valign="top">
694
- <td><?php _e( "Location selectbox", 'contact-form-plugin' ); ?></td>
695
  <td class="bws_pro_version">
696
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_selectbox" value="1" />
697
- <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
698
  </td>
699
  <td class="bws_pro_version">
700
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_required_selectbox" value="1" />
701
- <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
702
  </td>
703
  <td class="bws_pro_version"></td>
704
  <td class="bws_pro_version"></td>
705
  <td class="bws_pro_version">
706
  <label>
707
- <span><?php _e( "Field's default value", 'contact-form-plugin' ); ?></span>
708
  <input disabled="disabled" type="file" name="cntctfrm_default_location" />
709
  </label>
710
  </td>
711
  </tr>
712
  <?php } ?>
713
- <tr valign="top">
714
- <td><?php _e( "Address", 'contact-form-plugin' ); ?></td>
 
715
  <td>
716
- <label><input type="checkbox" id="cntctfrm_display_address_field" name="cntctfrm_display_address_field" value="1" <?php checked( '1', $this->options['display_address_field'] ); ?> />
717
- <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
718
  </td>
719
  <td>
720
  <label><input type="checkbox" id="cntctfrm_required_address_field" name="cntctfrm_required_address_field" value="1" <?php checked( '1', $this->options['required_address_field'] ); ?> />
721
- <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
722
  </td>
 
 
723
  <?php if ( ! $this->hide_pro_tabs ) { ?>
724
  <td class="bws_pro_version"></td>
725
  <td class="bws_pro_version"></td>
726
  <td class="bws_pro_version"></td>
727
  <?php } ?>
 
728
  </tr>
 
 
729
  <?php if ( ! $this->hide_pro_tabs ) { ?>
730
  <tr valign="top">
731
- <td><?php _e( "Email Address", 'contact-form-plugin' ); ?></td>
732
  <td class="bws_pro_version">
733
  <label><input disabled="disabled" checked="checked" type="checkbox" name="cntctfrm_display_email" value="1" />
734
- <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
735
  </td>
736
  <td class="bws_pro_version">
737
  <label><input disabled="disabled" checked="checked" type="checkbox" name="cntctfrm_required_email" value="1" />
738
- <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
739
  </td>
740
  <td class="bws_pro_version">
741
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_visible_email" value="1" checked="checked" />
742
- <span class="cntctfrm_mobile_title"><?php _e( "Visible", 'contact-form-plugin' ); ?></span></label>
743
  </td>
744
  <td class="bws_pro_version">
745
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_disabled_email" value="1" />
746
- <span class="cntctfrm_mobile_title"><?php _e( "Disabled for editing", 'contact-form-plugin' ); ?></span></label>
747
  </td>
748
  <td class="bws_pro_version">
749
  <input disabled="disabled" type="checkbox" name="cntctfrm_default_email" value="1" />
750
- <?php _e( "Use User's email as a default value if the user is logged in.", 'contact-form-plugin' ); ?><br />
751
- <span class="bws_info" style="padding-left: 20px;"><?php _e( "'Visible' and 'Disabled for editing' options will be applied only to logged-in users.", 'contact-form-plugin' ); ?></span>
752
  </td>
753
  </tr>
754
  <?php } ?>
755
- <tr valign="top">
756
- <td><?php _e( "Phone number", 'contact-form-plugin' ); ?></td>
 
757
  <td>
758
- <label><input type="checkbox" id="cntctfrm_display_phone_field" name="cntctfrm_display_phone_field" value="1" <?php checked( '1', $this->options['display_phone_field'] ); ?> />
759
- <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
760
  </td>
761
  <td>
762
  <label><input type="checkbox" id="cntctfrm_required_phone_field" name="cntctfrm_required_phone_field" value="1" <?php checked( '1', $this->options['required_phone_field'] ); ?> />
763
- <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
764
  </td>
 
765
  <?php if ( ! $this->hide_pro_tabs ) { ?>
766
  <td class="bws_pro_version"></td>
767
  <td class="bws_pro_version"></td>
768
  <td class="bws_pro_version">
769
  <input disabled="disabled" type="text" name="cntctfrm_phone_mask" value="" />
770
- <div class="bws_info" style="word-break: break-word;"><?php printf( __( 'Specify a mask which will be used for the phone validation, where * is a number. Use only the following symbols: %s', 'contact-form-plugin' ), '* - ( ) +' ); ?></div>
771
  </td>
772
  <?php } ?>
 
 
773
  </tr>
774
- <tr valign="top">
775
- <td><?php _e( "Subject", 'contact-form-plugin' ); ?></td>
 
 
776
  <?php if ( ! $this->hide_pro_tabs ) { ?>
777
  <td class="bws_pro_version">
778
  <label><input disabled="disabled" checked="checked" type="checkbox" name="cntctfrm_display_subject" value="1" />
779
- <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
780
  </td>
781
- <?php } else { ?>
782
- <td></td>
783
  <?php } ?>
 
784
  <td>
785
  <label><input type="checkbox" id="cntctfrm_required_subject_field" name="cntctfrm_required_subject_field" value="1" <?php checked( '1', $this->options['required_subject_field'] ); ?> />
786
- <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
787
  </td>
 
 
788
  <?php if ( ! $this->hide_pro_tabs ) { ?>
789
  <td class="bws_pro_version">
790
  <label><input class="subject" disabled="disabled" type="checkbox" name="cntctfrm_visible_subject" value="1" checked="checked" />
791
- <span class="cntctfrm_mobile_title"><?php _e( "Visible", 'contact-form-plugin' ); ?></span></label>
792
  </td>
793
  <td class="bws_pro_version">
794
  <label><input class="subject" disabled="disabled" type="checkbox" name="cntctfrm_disabled_subject" value="1" />
795
- <span class="cntctfrm_mobile_title"><?php _e( "Disabled for editing", 'contact-form-plugin' ); ?></span></label>
796
  </td>
797
  <td class="bws_pro_version">
798
  <label>
799
- <span><?php _e( "Field's default value", 'contact-form-plugin' ); ?></span>
800
  <input class="subject" disabled="disabled" type="text" name="cntctfrm_default_subject" value="" />
801
  </label>
802
  </td>
803
  <?php } ?>
 
804
  </tr>
805
- <tr valign="top">
806
- <td><?php _e( "Message", 'contact-form-plugin' ); ?></td>
 
 
807
  <?php if ( ! $this->hide_pro_tabs ) { ?>
808
  <td class="bws_pro_version">
809
  <label><input disabled="disabled" checked="checked" type="checkbox" name="cntctfrm_display_message" value="1" />
810
- <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
811
  </td>
812
- <?php } else { ?>
813
- <td></td>
814
  <?php } ?>
 
815
  <td>
816
  <label><input type="checkbox" id="cntctfrm_required_message_field" name="cntctfrm_required_message_field" value="1" <?php checked( '1', $this->options['required_message_field'] ); ?> />
817
- <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
818
  </td>
 
819
  <?php if ( ! $this->hide_pro_tabs ) { ?>
820
  <td class="bws_pro_version">
821
  <label><input class="message" disabled="disabled" type="checkbox" name="cntctfrm_visible_message" value="1" checked="checked" />
822
- <span class="cntctfrm_mobile_title"><?php _e( "Visible", 'contact-form-plugin' ); ?></span></label>
823
  </td>
824
  <td class="bws_pro_version">
825
  <label><input class="message" disabled="disabled" type="checkbox" name="cntctfrm_disabled_message" value="1" />
826
- <span class="cntctfrm_mobile_title"><?php _e( "Disabled for editing", 'contact-form-plugin' ); ?></span></label>
827
  </td>
828
  <td class="bws_pro_version">
829
  <label>
830
- <span><?php _e( "Field's default value", 'contact-form-plugin' ); ?></span>
831
  <input class="message" disabled="disabled" type="text" name="cntctfrm_default_message" value="" />
832
  </label>
833
  </td>
834
  <?php } ?>
 
 
835
  </tr>
836
- <tr valign="top">
837
  <td>
838
- <?php _e( "Attachment block", 'contact-form-plugin' ); ?>
839
  <div class="bws_help_box dashicons dashicons-editor-help">
840
- <div class="bws_hidden_help_text" style="min-width: 200px;"><?php echo __( "Users can attach the following file formats", 'contact-form-plugin' ) . ": html, txt, css, gif, png, jpeg, jpg, tiff, bmp, ai, eps, ps, csv, rtf, pdf, doc, docx, xls, xlsx, zip, rar, wav, mp3, ppt, aar, sce"; ?></div>
841
  </div>
842
  </td>
843
  <td>
844
- <label><input type="checkbox" id="cntctfrm_attachment" name="cntctfrm_attachment" value="1" <?php checked( '1', $this->options['attachment'] ); ?> />
845
- <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
846
  </td>
 
847
  <?php if ( ! $this->hide_pro_tabs ) { ?>
848
  <td class="bws_pro_version"></td>
849
  <td class="bws_pro_version"></td>
850
  <td class="bws_pro_version"></td>
851
  <td class="bws_pro_version"></td>
852
  <?php } else { ?>
 
853
  <td></td>
 
854
  <?php } ?>
 
 
855
  </tr>
856
  <tr valign="top" class="cntctfrm-multi-attachment" <?php if ( ! $this->options['attachment'] ) echo 'style="display:none";' ?> >
857
  <td>
858
- <?php _e( 'Multi-attachment', 'contact-form-plugin' ); ?>
859
  <div class="bws_help_box dashicons dashicons-editor-help">
860
- <div class="bws_hidden_help_text" style="min-width: 200px;"><?php _e( "Enable to multiple file selection", 'contact-form-plugin' ); ?></div>
861
  </div>
862
  </td>
863
  <td>
864
  <label class="bws_info"><input type="checkbox" name="cntctfrm_active_multi_attachment" value="1" <?php checked( '1', $this->options['active_multi_attachment'] ); ?> /></label>
865
  </td>
 
866
  <?php if ( ! $this->hide_pro_tabs ) { ?>
867
  <td class="bws_pro_version"></td>
868
  <td class="bws_pro_version"></td>
869
  <td class="bws_pro_version"></td>
870
  <td class="bws_pro_version"></td>
871
  <?php } else { ?>
 
872
  <td></td>
 
873
  <?php } ?>
 
 
874
  </tr>
 
875
  </tbody>
876
  </table>
 
 
 
877
  <?php if( ! $this->hide_pro_tabs ) { ?>
878
  <div class="bws_pro_version_bloc">
879
  <div class="bws_pro_version_table_bloc">
880
- <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'contact-form-plugin' ); ?>"></button>
881
  <div class="bws_table_bg"></div>
882
  <div class="bws_pro_version">
883
  <table id="cstmfld_hidden_field_table" class="cntctfrm_settings_table" style="width: 100%;">
884
  <thead>
885
  <tr valign="top">
886
- <th scope="row"><?php _e( 'Title', 'contact-form-plugin' ); ?></th>
887
- <th><?php _e( 'Field Type', 'contact-form-plugin' ); ?></th>
888
- <th><?php _e( 'Used', 'contact-form-plugin' ); ?></th>
889
- <th><?php _e( 'Required', 'contact-form-plugin' ); ?></th>
890
- <th><?php _e( 'Visible', 'contact-form-plugin' ); ?></th>
891
- <th><?php _e( 'Disabled for editing', 'contact-form-plugin' ); ?></th>
892
- <th scope="row"><?php _e( 'Field\'s default/available value', 'contact-form-plugin' ); ?></th>
893
  <!--<th scope="row"></th>-->
894
  </tr>
895
  </thead>
@@ -915,63 +950,56 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
915
  </tr>
916
  </tbody>
917
  </table>
918
- <button disabled="disabled" class="button button-primary cstmfld_create_new_field" style="width: 100%;" name="cstmfld_create_new_field"><?php _e( 'Create Field', 'contact-form-plugin' ); ?></button>
919
  <table class="form-table" style="width:auto;">
920
  <tbody>
921
  <tr>
922
  <th scope="row">
923
- <?php _e( 'Google Analytics Measurement ID', 'contact-form-plugin' ); ?>
924
  </th>
925
  <td>
926
  <input disabled="disabled" type="text" name="cntctfrm_tracking_id" value="" />
927
  <div class="bws_info">
928
- <?php printf( __( 'Enter your %sMeasurement ID%s to track contact form submissions in Google Analytics.', 'contact-form-plugin' ), '<a href="https://support.google.com/analytics/answer/9304153?hl=en&ref_topic=9303319">', '</a>' ); ?><br />
929
- <?php _e( 'Google Analytics version 4 is required.', 'contact-form-plugin' ) ?>
930
  </div>
931
  </td>
932
  </tr>
933
  </tbody>
934
  </table>
935
  </div>
936
- <div style="padding: 10px; ">
937
- * <?php _e( 'If you upgrade to Pro version all your settings will be saved.', 'contact-form-plugin' ); ?>
938
- </div>
939
- </div>
940
- <div class="bws_pro_version_tooltip">
941
- <a class="bws_button" href="https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=697c5e74f39779ce77850e11dbe21962&amp;pn=77&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro">
942
- <?php _e( 'Upgrade to Pro', 'contact-form-plugin' ); ?>
943
- </a>
944
- <div class="clear"></div>
945
  </div>
 
946
  </div>
947
  <?php } ?>
 
948
  <table class="form-table" style="width:auto;">
949
  <tr valign="top">
950
- <th scope="row"><?php _e( "Add to the form", 'contact-form-plugin' ); ?></th>
951
  <td colspan="3"><fieldset>
952
  <div id="cntctfrm-attachment-explanations" style="clear: both;<?php if ( ! $this->options['attachment'] ) echo ' display:none;' ?>">
953
  <label>
954
  <input type="checkbox" id="cntctfrm_attachment_explanations" name="cntctfrm_attachment_explanations" value="1" <?php checked( '1' == $this->options['attachment_explanations'] && '1' == $this->options['attachment'] ); ?> />
955
- <?php _e( "Tips below the Attachment", 'contact-form-plugin' ); ?>
956
  </label>
957
  <?php echo bws_add_help_box( '<img src="' . plugins_url( '../images/tooltip_attachment_tips.png', __FILE__ ) . '" />', 'bws-hide-for-mobile bws-auto-width' ); ?>
958
  </div>
959
  <div>
960
  <label>
961
  <input type="checkbox" id="cntctfrm_send_copy" name="cntctfrm_send_copy" value="1" <?php checked( '1', $this->options['send_copy'] ); ?> />
962
- <?php _e( "'Send me a copy' block", 'contact-form-plugin' ); ?>
963
  </label>
964
  <?php echo bws_add_help_box( '<img src="' . plugins_url( '../images/tooltip_sendme_block.png', __FILE__ ) . '" />', 'bws-hide-for-mobile bws-auto-width' ); ?>
965
  </div>
966
  <div>
967
  <label>
968
  <input type="checkbox" id="cntctfrm_gdpr" name="cntctfrm_gdpr" value="1" <?php checked( '1', $this->options['gdpr'] ); ?> />
969
- <?php _e( "GDPR Compliance", 'contact-form-plugin' ); ?>
970
  </label>
971
  </div>
972
  <div id="cntctfrm_gdpr_link_options" >
973
  <label class="cntctfrm_privacy_policy_text" >
974
- <?php _e( "Link to Privacy Policy Page", 'contact-form-plugin' ); ?>
975
  <input type="url" id="cntctfrm_gdpr_link" name="cntctfrm_gdpr_link" value="<?php echo $this->options['gdpr_link']; ?>" />
976
  </label>
977
  </div>
@@ -987,26 +1015,26 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
987
  <label><input type="checkbox" name="cntctfrm_display_subscriber" value="1" <?php checked( $display_subscriber ); ?> /> Subscriber by BestWebSoft</label>
988
  <?php } else { ?>
989
  <label><input type="checkbox" name="cntctfrm_display_subscriber" value="1" disabled="disabled" <?php checked( $display_subscriber ); ?> /> Subscriber by BestWebSoft</label>
990
- <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
991
  <?php printf( '<a href="%s" target="_blank"> Subscriber %s</a>&nbsp;)',
992
  network_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['subscriber']['settings_page'] ),
993
- __( 'settings page', 'contact-form-plugin' ) ); ?>
994
  </span>
995
  <?php }
996
  } else { ?>
997
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_subscriber" value="1" <?php checked( isset( $this->options['display_subscribe'] ) && 1 == $this->options['display_subscribe'] ); ?> /> Subscriber by BestWebSoft</label>
998
  <span class="bws_info">
999
  <?php if ( ! is_multisite() ) {
1000
- printf( '<a href="%s" target="_blank"> %s Subscriber</a>', admin_url( 'plugins.php' ), __( 'Activate', 'contact-form-plugin' ) );
1001
  } else {
1002
- printf( '<a href="%s" target="_blank"> %s Subscriber</a>', network_admin_url( 'plugins.php' ), __( 'Activate for network', 'contact-form-plugin' ) );
1003
  } ?>
1004
  </span>
1005
  <?php }
1006
  } else { ?>
1007
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_subscriber" value="1" /> Subscriber by BestWebSoft</label>
1008
  <span class="bws_info">
1009
- <?php printf( '<a href="https://bestwebsoft.com/products/wordpress/plugins/subscriber/?k=a9dfd3fa8513784c36622993b350b19e&amp;pn=77&amp;v=%s&amp;wp_v=%s" target="_blank">%s Subscriber</a>', $cntctfrm_plugin_info["Version"], $wp_version, __( 'Download', 'contact-form-plugin' ) ); ?>
1010
  </span>
1011
  <?php } ?>
1012
  </div>
@@ -1028,10 +1056,10 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
1028
  <?php } else { ?>
1029
  <label>
1030
  <input type="checkbox" name="cntctfrm_display_captcha" value="1" disabled="disabled" <?php checked( $display_captcha ); ?> /> Captcha by BestWebSoft
1031
- <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
1032
  <?php printf( '<a href="%s" target="_blank"> Captcha %s</a>&nbsp;)',
1033
  self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['captcha']['settings_page'] ),
1034
- __( 'settings page', 'contact-form-plugin' ) ); ?>
1035
  </span>
1036
  </label>
1037
  <?php }
@@ -1039,13 +1067,13 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
1039
  } else { ?>
1040
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_captcha" value="1" /> Captcha by BestWebSoft</label>
1041
  <span class="bws_info">
1042
- <?php printf( '<a href="%s" target="_blank">%s Captcha</a>', self_admin_url( 'plugins.php' ), __( 'Activate', 'contact-form-plugin' ) ); ?>
1043
  </span>
1044
  <?php }
1045
  } else { ?>
1046
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_captcha" value="1" /> Captcha by BestWebSoft</label>
1047
  <span class="bws_info">
1048
- <?php printf( '<a href="https://bestwebsoft.com/products/wordpress/plugins/captcha/?k=19ac1e9b23bea947cfc4a9b8e3326c03&amp;pn=77&amp;v=%s&amp;wp_v=%s" target="_blank">%s Captcha</a>', $cntctfrm_plugin_info["Version"], $wp_version, __( 'Download', 'contact-form-plugin' ) ) ?>
1049
  </span>
1050
  <?php } ?>
1051
  </div>
@@ -1063,75 +1091,72 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
1063
  <?php } else { ?>
1064
  <label>
1065
  <input type="checkbox" name="cntctfrm_display_google_captcha" value="1" disabled="disabled" <?php checked( $display_google_captcha ); ?> /> reCaptcha by BestWebSoft
1066
- <span class="bws_info">&nbsp;(<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
1067
  <?php printf( '<a href="%s" target="_blank"> reCaptcha by BestWebSoft %s</a>&nbsp;)',
1068
  self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['google-captcha']['settings_page'] ),
1069
- __( 'settings page', 'contact-form-plugin' ) ); ?>
1070
  </span>
1071
  </label>
1072
  <?php }
1073
  } else { ?>
1074
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_google_captcha" value="1" /> reCaptcha by BestWebSoft</label>
1075
  <span class="bws_info">
1076
- <?php printf( '<a href="%s" target="_blank">%s reCaptcha</a>', self_admin_url( 'plugins.php' ), __( 'Activate', 'contact-form-plugin' ) ); ?>
1077
  </span>
1078
  <?php }
1079
  } else { ?>
1080
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_google_captcha" value="1" /> reCaptcha by BestWebSoft</label> <span class="bws_info">
1081
- <?php printf( '<a href="https://bestwebsoft.com/products/wordpress/plugins/google-captcha/?k=7d74e61dd1cea23d0e9bf2fa88b5b117&amp;pn=77&amp;v=%s&amp;wp_v=%s" target="_blank">%s reCaptcha</a>', $cntctfrm_plugin_info["Version"], $wp_version, __( 'Download', 'contact-form-plugin' ) ) ?>
1082
  </span>
1083
  <?php } ?>
1084
  </div>
 
1085
  <?php if ( ! $this->hide_pro_tabs ) { ?>
1086
  <div class="bws_pro_version_bloc">
1087
  <div class="bws_pro_version_table_bloc">
1088
- <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'contact-form-plugin' ); ?>"></button>
1089
  <div class="bws_table_bg"></div>
1090
  <div class="bws_pro_version">
1091
  <fieldset>
1092
- <label><input disabled="disabled" type="checkbox" value="1" name="cntctfrm_display_privacy_check"> <?php _e( 'Agreement checkbox', 'contact-form-plugin' ); ?> <span class="bws_info"><?php _e( 'Required checkbox for submitting the form', 'contact-form-plugin' ); ?></span></label><br />
1093
- <label><input disabled="disabled" type="checkbox" value="1" name="cntctfrm_display_optional_check"> <?php _e( 'Optional checkbox', 'contact-form-plugin' ); ?> <span class="bws_info"><?php _e( 'Optional checkbox, the results of which will be displayed in email', 'contact-form-plugin' ); ?></span></label>
1094
  </fieldset>
1095
  </div>
1096
  </div>
1097
- <div class="bws_pro_version_tooltip">
1098
- <a class="bws_button" href="https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=697c5e74f39779ce77850e11dbe21962&amp;pn=77&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro">
1099
- <?php _e( 'Upgrade to Pro', 'contact-form-plugin' ); ?>
1100
- </a>
1101
- <div class="clear"></div>
1102
- </div>
1103
  </div>
1104
  <?php } ?>
 
1105
  </fieldset></td>
1106
  </tr>
1107
  <tr valign="top">
1108
- <th scope="row" style="width:200px;"><?php _e( "Delete an attachment file from the server after the email is sent", 'contact-form-plugin' ); ?> </th>
1109
  <td colspan="3">
1110
  <input type="checkbox" id="cntctfrm_delete_attached_file" name="cntctfrm_delete_attached_file" value="1" <?php checked( '1', $this->options['delete_attached_file'] ); ?> />
1111
  </td>
1112
  </tr>
1113
  <tr valign="top">
1114
- <th scope="row"><?php _e( "Email in HTML format sending", 'contact-form-plugin' ); ?></th>
1115
  <td colspan="2"><input type="checkbox" name="cntctfrm_html_email" value="1" <?php checked( '1', $this->options['html_email'] ); ?> /></td>
1116
  </tr>
1117
  <tr valign="top">
1118
- <th scope="row"><?php _e( "Display additional info in the email", 'contact-form-plugin' ); ?></th>
1119
  <td colspan="2">
1120
  <input type="checkbox" id="cntctfrm_display_add_info" name="cntctfrm_display_add_info" value="1" <?php checked( '1', $this->options['display_add_info'] ); ?> />
1121
  <br />
1122
  <br />
1123
  <div class="cntctfrm_display_add_info_block" <?php if ( '0' == $this->options['display_add_info'] ) echo 'style="display:none"'; ?>>
1124
  <fieldset>
1125
- <label><input type="checkbox" id="cntctfrm_display_sent_from" name="cntctfrm_display_sent_from" value="1" <?php checked( '1', $this->options['display_sent_from'] ); ?> /> <?php _e( "Sent from (IP address)", 'contact-form-plugin' ); ?></label><br /> <span class="bws_info"><?php _e( "Example: Sent from (IP address): 127.0.0.1", 'contact-form-plugin' ); ?></span><br />
1126
- <label><input type="checkbox" id="cntctfrm_display_date_time" name="cntctfrm_display_date_time" value="1" <?php checked( '1', $this->options['display_date_time'] ); ?> /> <?php _e( "Date/Time", 'contact-form-plugin' ); ?></label><br /> <span class="bws_info"><?php _e( "Example: Date/Time: August 19, 2013 8:50 pm", 'contact-form-plugin' ); ?></span><br />
1127
- <label><input type="checkbox" id="cntctfrm_display_coming_from" name="cntctfrm_display_coming_from" value="1" <?php checked( '1', $this->options['display_coming_from'] ); ?> /> <?php _e( "Sent from (referer)", 'contact-form-plugin' ); ?></label><br /> <span class="bws_info"><?php _e( "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/", 'contact-form-plugin' ); ?></span><br />
1128
- <label><input type="checkbox" id="cntctfrm_display_user_agent" name="cntctfrm_display_user_agent" value="1" <?php checked( '1', $this->options['display_user_agent'] ); ?> /> <?php _e( "Using (user agent)", 'contact-form-plugin' ); ?></label> <br /><span class="bws_info"><?php _e( "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36", 'contact-form-plugin' ); ?></span>
1129
  </fieldset>
1130
  </div>
1131
  </td>
1132
  </tr>
1133
  <tr valign="top">
1134
- <th scope="row"><?php _e( "Language Settings", 'contact-form-plugin' ); ?></th>
1135
  <td colspan="2">
1136
  <select name="cntctfrm_languages" id="cntctfrm_languages" style="max-width: 300px;">
1137
  <option value="0"></option>
@@ -1141,17 +1166,17 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
1141
  echo '<option value="' . esc_attr( $key ) . '"> ' . esc_html( $val ) . '</option>';
1142
  } ?>
1143
  </select>
1144
- <input type="submit" class="button-secondary" name="cntctfrm_add_language_button" id="cntctfrm_add_language_button" value="<?php _e( 'Add a language', 'contact-form-plugin' ); ?>" />
1145
  </td>
1146
  </tr>
1147
  <tr valign="top">
1148
- <th scope="row"><?php _e( "Change the names of the contact form fields and error messages", 'contact-form-plugin' ); ?></th>
1149
  <td>
1150
  <input type="checkbox" id="cntctfrm_change_label" name="cntctfrm_change_label" class="bws_option_affect" data-affect-show=".cntctfrm_change_label_block" value="1" <?php checked( '1', $this->options['change_label'] ); ?> />
1151
  <br />
1152
  <br />
1153
  <div class="cntctfrm_change_label_block" <?php if ( '0' == $this->options['change_label'] ) echo 'style="display:none"'; ?>>
1154
- <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' ); ?>
1155
  <noscript>
1156
  <input type="submit" class="cntctfrm_change_tab" value="default" name="cntctfrm_change_tab">
1157
  </noscript>
@@ -1164,37 +1189,37 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
1164
  } ?>
1165
  <div class="clear"></div>
1166
  <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;">
1167
- <div class="cntctfrm_language_tab_block_mini" style="display:none;"><?php _e( "click to expand/hide the list", 'contact-form-plugin' ); ?></div>
1168
  <div class="cntctfrm_language_tab_block">
1169
- <input type="text" maxlength="250" name="cntctfrm_name_label[default]" value="<?php echo $this->options['name_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Name", 'contact-form-plugin' ); ?>:</span><br />
1170
- <input type="text" maxlength="250" name="cntctfrm_address_label[default]" value="<?php echo $this->options['address_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Address", 'contact-form-plugin' ); ?>:</span><br />
1171
- <input type="text" maxlength="250" name="cntctfrm_email_label[default]" value="<?php echo $this->options['email_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Email Address", 'contact-form-plugin' ); ?>:</span><br />
1172
- <input type="text" maxlength="250" name="cntctfrm_phone_label[default]" value="<?php echo $this->options['phone_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Phone number", 'contact-form-plugin' ); ?>:</span><br />
1173
- <input type="text" maxlength="250" name="cntctfrm_subject_label[default]" value="<?php echo $this->options['subject_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Subject", 'contact-form-plugin' ); ?>:</span><br />
1174
- <input type="text" maxlength="250" name="cntctfrm_message_label[default]" value="<?php echo $this->options['message_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Message", 'contact-form-plugin' ); ?>:</span><br />
1175
- <input type="text" maxlength="250" name="cntctfrm_attachment_label[default]" value="<?php echo $this->options['attachment_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Attachment", 'contact-form-plugin' ); ?>:</span><br />
1176
- <input type="text" maxlength="250" name="cntctfrm_attachment_tooltip[default]" value="<?php echo $this->options['attachment_tooltip']['default']; ?>" /> <span class="bws_info"><?php _e( "Tips below the Attachment block", 'contact-form-plugin' ); ?></span><br />
1177
- <input type="text" maxlength="250" name="cntctfrm_send_copy_label[default]" value="<?php echo $this->options['send_copy_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Send me a copy", 'contact-form-plugin' ); ?></span><br />
1178
- <input type="text" maxlength="250" name="cntctfrm_gdpr_label[default]" value="<?php echo $this->options['gdpr_label']['default']; ?>" /> <span class="bws_info"><?php _e( "I consent to having this site collect my personal data.", 'contact-form-plugin' ); ?></span><br />
1179
- <input type="text" maxlength="250" name="cntctfrm_gdpr_text_button[default]" value="<?php echo $this->options['gdpr_text_button']['default']; ?>" /> <span class="bws_info"><?php _e( "Learn more", 'contact-form-plugin' ); ?></span><br />
1180
- <input type="text" maxlength="250" name="cntctfrm_submit_label[default]" value="<?php echo $this->options['submit_label']['default']; ?>" /> <span class="bws_info"><?php _e( "Submit", 'contact-form-plugin' ); ?></span><br />
1181
- <input type="text" maxlength="250" name="cntctfrm_name_error[default]" value="<?php echo $this->options['name_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Name field", 'contact-form-plugin' ); ?></span><br />
1182
- <input type="text" maxlength="250" name="cntctfrm_address_error[default]" value="<?php echo $this->options['address_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Address field", 'contact-form-plugin' ); ?></span><br />
1183
- <input type="text" maxlength="250" name="cntctfrm_email_error[default]" value="<?php echo $this->options['email_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Email field", 'contact-form-plugin' ); ?></span><br />
1184
- <input type="text" maxlength="250" name="cntctfrm_phone_error[default]" value="<?php echo $this->options['phone_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Phone field", 'contact-form-plugin' ); ?></span><br />
1185
- <input type="text" maxlength="250" name="cntctfrm_subject_error[default]" value="<?php echo $this->options['subject_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Subject field", 'contact-form-plugin' ); ?></span><br />
1186
- <input type="text" maxlength="250" name="cntctfrm_message_error[default]" value="<?php echo $this->options['message_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Message field", 'contact-form-plugin' ); ?></span><br />
1187
- <input type="text" maxlength="250" name="cntctfrm_attachment_error[default]" value="<?php echo $this->options['attachment_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message about the file type for the Attachment field", 'contact-form-plugin' ); ?></span><br />
1188
- <input type="text" maxlength="250" name="cntctfrm_attachment_upload_error[default]" value="<?php echo $this->options['attachment_upload_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message while uploading a file for the Attachment field to the server", 'contact-form-plugin' ); ?></span><br />
1189
- <input type="text" maxlength="250" name="cntctfrm_attachment_move_error[default]" value="<?php echo $this->options['attachment_move_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message while moving the file for the Attachment field", 'contact-form-plugin' ); ?></span><br />
1190
- <input type="text" maxlength="250" name="cntctfrm_attachment_size_error[default]" value="<?php echo $this->options['attachment_size_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message when file size limit for the Attachment field is exceeded", 'contact-form-plugin' ); ?></span><br />
1191
- <input type="text" maxlength="250" name="cntctfrm_captcha_error[default]" value="<?php echo $this->options['captcha_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the Captcha field", 'contact-form-plugin' ); ?></span><br />
1192
- <input type="text" maxlength="250" name="cntctfrm_form_error[default]" value="<?php echo $this->options['form_error']['default']; ?>" /> <span class="bws_info"><?php _e( "Error message for the whole form", 'contact-form-plugin' ); ?></span><br />
1193
  </div>
1194
  <?php if ( ! $contact_form_multi_active ) { ?>
1195
- <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>
1196
  <?php } else { ?>
1197
- <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>
1198
  <?php } ?>
1199
  </div>
1200
  <?php if ( ! empty( $this->options['language'] ) ) {
@@ -1204,37 +1229,37 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
1204
  else
1205
  $labels_table_class = ''; ?>
1206
  <div class="cntctfrm_language_tab <?php echo $labels_table_class; ?> cntctfrm_tab_<?php echo $val; ?>">
1207
- <div class="cntctfrm_language_tab_block_mini" style="display:none;"><?php _e( "click to expand/hide the list", 'contact-form-plugin' ); ?></div>
1208
  <div class="cntctfrm_language_tab_block">
1209
- <input type="text" maxlength="250" name="cntctfrm_name_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['name_label'][ $val ] ) ) echo $this->options['name_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Name", 'contact-form-plugin' ); ?>:</span><br />
1210
- <input type="text" maxlength="250" name="cntctfrm_address_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['address_label'][ $val ] ) ) echo $this->options['address_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Address", 'contact-form-plugin' ); ?>:</span><br />
1211
- <input type="text" maxlength="250" name="cntctfrm_email_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['email_label'][ $val ] ) ) echo $this->options['email_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Email Address", 'contact-form-plugin' ); ?>:</span><br />
1212
- <input type="text" maxlength="250" name="cntctfrm_phone_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['phone_label'][ $val ] ) ) echo $this->options['phone_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Phone number", 'contact-form-plugin' ); ?>:</span><br />
1213
- <input type="text" maxlength="250" name="cntctfrm_subject_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['subject_label'][ $val ] ) ) echo $this->options['subject_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Subject", 'contact-form-plugin' ); ?>:</span><br />
1214
- <input type="text" maxlength="250" name="cntctfrm_message_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['message_label'][ $val ] ) ) echo $this->options['message_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Message", 'contact-form-plugin' ); ?>:</span><br />
1215
- <input type="text" maxlength="250" name="cntctfrm_attachment_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['attachment_label'][ $val ] ) ) echo $this->options['attachment_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Attachment", 'contact-form-plugin' ); ?>:</span><br />
1216
- <input type="text" maxlength="250" name="cntctfrm_attachment_tooltip[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['attachment_tooltip'][ $val ] ) ) echo $this->options['attachment_tooltip'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Tips below the Attachment block", 'contact-form-plugin' ); ?></span><br />
1217
- <input type="text" maxlength="250" name="cntctfrm_send_copy_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['send_copy_label'][ $val ] ) ) echo $this->options['send_copy_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Send me a copy", 'contact-form-plugin' ); ?></span><br />
1218
- <input type="text" maxlength="250" name="cntctfrm_gdpr_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['gdpr_label'][ $val ] ) ) echo $this->options['gdpr_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "I consent to having this site collect my personal data.", 'contact-form-plugin' ); ?></span><br />
1219
- <input type="text" maxlength="250" name="cntctfrm_gdpr_text_button[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['gdpr_text_button'][ $val ] ) ) echo $this->options['gdpr_text_button'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Learn more", 'contact-form-plugin' ); ?></span><br />
1220
- <input type="text" maxlength="250" name="cntctfrm_submit_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['submit_label'][ $val ] ) ) echo $this->options['submit_label'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Submit", 'contact-form-plugin' ); ?></span><br />
1221
- <input type="text" maxlength="250" name="cntctfrm_name_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['name_error'][ $val ] ) ) echo $this->options['name_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Name field", 'contact-form-plugin' ); ?></span><br />
1222
- <input type="text" maxlength="250" name="cntctfrm_address_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['address_error'][ $val ] ) ) echo $this->options['address_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Address field", 'contact-form-plugin' ); ?></span><br />
1223
- <input type="text" maxlength="250" name="cntctfrm_email_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['email_error'][ $val ] ) ) echo $this->options['email_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Email field", 'contact-form-plugin' ); ?></span><br />
1224
- <input type="text" maxlength="250" name="cntctfrm_phone_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['phone_error'][ $val ] ) ) echo $this->options['phone_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Phone field", 'contact-form-plugin' ); ?></span><br />
1225
- <input type="text" maxlength="250" name="cntctfrm_subject_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['subject_error'][ $val ] ) ) echo $this->options['subject_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Subject field", 'contact-form-plugin' ); ?></span><br />
1226
- <input type="text" maxlength="250" name="cntctfrm_message_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['message_error'][ $val ] ) ) echo $this->options['message_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Message field", 'contact-form-plugin' ); ?></span><br />
1227
- <input type="text" maxlength="250" name="cntctfrm_attachment_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['attachment_error'][ $val ] ) ) echo $this->options['attachment_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message about the file type for the Attachment field", 'contact-form-plugin' ); ?></span><br />
1228
- <input type="text" maxlength="250" name="cntctfrm_attachment_upload_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['attachment_upload_error'][ $val ] ) ) echo $this->options['attachment_upload_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message while uploading a file for the Attachment field to the server", 'contact-form-plugin' ); ?></span><br />
1229
- <input type="text" maxlength="250" name="cntctfrm_attachment_move_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['attachment_move_error'][ $val ] ) ) echo $this->options['attachment_move_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message while moving the file for the Attachment field", 'contact-form-plugin' ); ?></span><br />
1230
- <input type="text" maxlength="250" name="cntctfrm_attachment_size_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['attachment_size_error'][ $val ] ) ) echo $this->options['attachment_size_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message when file size limit for the Attachment field is exceeded", 'contact-form-plugin' ); ?></span><br />
1231
- <input type="text" maxlength="250" name="cntctfrm_captcha_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['captcha_error'][ $val ] ) ) echo $this->options['captcha_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the Captcha field", 'contact-form-plugin' ); ?></span><br />
1232
- <input type="text" maxlength="250" name="cntctfrm_form_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['form_error'][ $val ] ) ) echo $this->options['form_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the whole form", 'contact-form-plugin' ); ?></span><br />
1233
  </div>
1234
  <?php if ( ! $contact_form_multi_active ) { ?>
1235
- <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>
1236
  <?php } else { ?>
1237
- <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 . ' id=' . $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1238
  <?php } ?>
1239
  </div>
1240
  <?php }
@@ -1243,17 +1268,17 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
1243
  </td>
1244
  </tr>
1245
  <tr valign="top">
1246
- <th scope="row"><?php _e( 'Use the changed names of the contact form fields in the email', 'contact-form-plugin' ); ?></th>
1247
  <td colspan="2">
1248
  <input type="checkbox" name="cntctfrm_change_label_in_email" value="1" <?php checked( '1', $this->options['change_label_in_email'] ); ?> />
1249
  </td>
1250
  </tr>
1251
  <tr valign="top">
1252
- <th scope="row"><?php _e( "Action after email is sent", 'contact-form-plugin' ); ?></th>
1253
  <td colspan="2" class="cntctfrm_action_after_send_block">
1254
- <label><input type="radio" id="cntctfrm_action_after_send" name="cntctfrm_action_after_send" class="bws_option_affect" data-affect-show=".cntctfrm_label_lang_tab" data-affect-hide=".cntctfrm_redirect_url_input" value="1" <?php checked( '1', $this->options['action_after_send'] ); ?> /> <?php _e( "Display text", 'contact-form-plugin' ); ?></label><br />
1255
  <div class="cntctfrm_label_lang_tab">
1256
- <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' ); ?>
1257
  <noscript>
1258
  <input type="submit" class="cntctfrm_change_tab" value="default" name="cntctfrm_change_tab">
1259
  </noscript>
@@ -1266,11 +1291,11 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
1266
  } ?>
1267
  <div class="clear"></div>
1268
  <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;">
1269
- <input type="text" maxlength="250" name="cntctfrm_thank_text[default]" value="<?php echo $this->options['thank_text']['default']; ?>" /> <span class="bws_info"><?php _e( "Text", 'contact-form-plugin' ); ?></span><br />
1270
  <?php if ( ! $contact_form_multi_active ) { ?>
1271
- <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>
1272
  <?php } else { ?>
1273
- <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>
1274
  <?php } ?>
1275
  </div>
1276
  <?php if ( ! empty( $this->options['language'] ) ) {
@@ -1280,11 +1305,11 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
1280
  else
1281
  $labels_table_class = ''; ?>
1282
  <div class="cntctfrm_language_tab <?php echo $labels_table_class; ?> cntctfrm_tab_<?php echo $val; ?>" style="padding: 5px 10px 5px 5px;">
1283
- <label><input type="text" maxlength="250" name="cntctfrm_thank_text[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['thank_text'][ $val ] ) ) echo $this->options['thank_text'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Text", 'contact-form-plugin' ); ?></span></label><br />
1284
  <?php if ( ! $contact_form_multi_active ) { ?>
1285
- <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>
1286
  <?php } else { ?>
1287
- <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>
1288
  <?php } ?>
1289
  </div>
1290
  <?php }
@@ -1292,9 +1317,9 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
1292
  </div>
1293
  <div id="cntctfrm_before"></div>
1294
  <br />
1295
- <label><input type="radio" id="cntctfrm_action_after_send_url" name="cntctfrm_action_after_send" class="bws_option_affect" data-affect-hide=".cntctfrm_label_lang_tab" data-affect-show=".cntctfrm_redirect_url_input" value="0" <?php checked( '0', $this->options['action_after_send'] ); ?> /> <?php _e( "Redirect to the page", 'contact-form-plugin' ); ?></label><br />
1296
  <div class="cntctfrm_redirect_url_input">
1297
- <label><input type="text" maxlength="250" name="cntctfrm_redirect_url" value="<?php echo $this->options['redirect_url']; ?>" /> <span class="bws_info"><?php _e( "Url", 'contact-form-plugin' ); ?></span></label>
1298
  </div>
1299
  </td>
1300
  </tr>
@@ -1302,12 +1327,8 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
1302
  <?php }
1303
 
1304
  public function tab_appearance() {
1305
- global $cntctfrm_related_plugins, $cntctfrm_plugin_info, $wp_version, $bws_hide_premium_options_check, $contact_form_multi_active;
1306
- $display_pro_options = false;
1307
- if ( 'pro' == $this->cfmlt_is_active ) {
1308
- $display_pro_options = true;
1309
- }?>
1310
- <h3 class="bws_tab_label"><?php _e( 'Appearance', 'contact-form-plugin' ); ?></h3>
1311
  <?php $this->help_phrase(); ?>
1312
  <hr>
1313
  <noscript>
@@ -1315,13 +1336,13 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
1315
  <p>
1316
  <strong>
1317
  <?php printf(
1318
- __( "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for fields sorting.", 'contact-form-plugin' ),
1319
- __( "Form layout", 'contact-form-plugin' ),
1320
- __( "Labels position", 'contact-form-plugin' ),
1321
- __( "Labels align", 'contact-form-plugin' ),
1322
- __( "Submit position", 'contact-form-plugin' ),
1323
- __( "Add tooltips", 'contact-form-plugin' ),
1324
- __( "Style options", 'contact-form-plugin' ) ); ?>
1325
  </strong>
1326
  </p>
1327
  </div>
@@ -1333,156 +1354,157 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
1333
  <div id="<?php echo is_rtl() ? 'cntctfrm_right_table' : 'cntctfrm_left_table'; ?>">
1334
  <table class="form-table" style="width:auto;">
1335
  <tr valign="top">
1336
- <th scope="row"><?php _e( "Form layout", 'contact-form-plugin' ); ?></th>
1337
  <td colspan="2">
1338
  <fieldset>
1339
  <input id="cntctfrm_layout_one_column" name="cntctfrm_layout" type="radio" value="1" <?php checked( (int) $this->options['layout'] === 1 ); ?> />
1340
- <label for="cntctfrm_layout_one_column"><?php _e( 'One column', 'contact-form-plugin' ); ?></label>
1341
  <br/>
1342
  <input id="cntctfrm_layout_two_columns" name="cntctfrm_layout" type="radio" value="2" <?php checked( (int) $this->options['layout'] === 2 ); ?> />
1343
- <label for="cntctfrm_layout_two_columns"><?php _e( 'Two columns', 'contact-form-plugin' ); ?></label>
1344
  </fieldset>
1345
  </td>
1346
  </tr>
1347
  <tr valign="top">
1348
- <th scope="row"><?php _e( "Submit position", 'contact-form-plugin' ); ?></th>
1349
  <td colspan="2">
1350
  <fieldset>
1351
  <input id="cntctfrm_submit_position_left" name="cntctfrm_submit_position" type="radio" value="left" <?php checked( 'left', $this->options['submit_position'] ); ?> />
1352
- <label for="cntctfrm_submit_position_left"><?php _e( 'Left', 'contact-form-plugin' ); ?></label>
1353
  <br/>
1354
  <input id="cntctfrm_submit_position_right" name="cntctfrm_submit_position" type="radio" value="right" <?php checked( 'right', $this->options['submit_position'] ); ?> />
1355
- <label for="cntctfrm_submit_position_right"><?php _e( 'Right', 'contact-form-plugin' ); ?></label>
1356
  </fieldset>
1357
  </td>
1358
  </tr>
1359
  <tr valign="top" id="cntctfrm_width">
1360
- <th scope="row"><?php _e( 'Width', 'contact-form-plugin' ); ?></th>
1361
  <td colspan="2">
1362
  <fieldset>
1363
  <label>
1364
- <input type="radio" name="cntctfrm_width_type" value="default" <?php checked( 'default', $this->options['width']['type'] ); ?> /> <?php _e( 'Default', 'contact-form-plugin' ); ?>
1365
  </label>
1366
  <br />
1367
  <label>
1368
- <input type="radio" name="cntctfrm_width_type" value="custom" <?php checked( 'custom', $this->options['width']['type'] ); ?> /> <?php _e( 'Custom', 'contact-form-plugin' ); ?>
1369
  </label>
1370
  </fieldset>
1371
  <div class="cntctfrm_width_params" <?php if ( 'custom' != $this->options['width']['type'] ) echo 'style="display: none;"'; ?>>
1372
  <input type="number" name="cntctfrm_input_width_value" value="<?php echo $this->options['width']['input_value']; ?>" min="1" max="9999" step="1">
1373
  <select name="cntctfrm_input_width_unit">
1374
  <option value="%" <?php selected( '%', $this->options['width']['input_unit'] ); ?>>%</option>
1375
- <option value="px" <?php selected( 'px', $this->options['width']['input_unit'] ); ?>><?php _e( 'px', 'contact-form-plugin' ) ?></option>
1376
  </select>
1377
  </div>
1378
  </td>
1379
  </tr>
1380
  </table>
 
1381
  <?php if ( ! $this->hide_pro_tabs ) { ?>
1382
  <div class="bws_pro_version_bloc">
1383
  <div class="bws_pro_version_table_bloc">
1384
- <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'contact-form-plugin' ); ?>"></button>
1385
  <div class="bws_table_bg"></div>
1386
  <table class="form-table bws_pro_version">
1387
  <tr valign="top">
1388
- <th scope="row"><?php _e( "Form align", 'contact-form-plugin' ); ?></th>
1389
  <td colspan="2">
1390
  <fieldset>
1391
  <input disabled="disabled" name="cntctfrm_form_align" type="radio" value="left" checked="checked">
1392
- <label for="cntctfrm_form_align_left"><?php _e( 'Left', 'contact-form-plugin' ); ?></label>
1393
  <br/>
1394
  <input disabled="disabled" name="cntctfrm_form_align" type="radio" value="center">
1395
- <label for="cntctfrm_form_align_center"><?php _e( 'Center', 'contact-form-plugin' ); ?></label>
1396
  <br/>
1397
  <input disabled="disabled" name="cntctfrm_form_align" type="radio" value="right">
1398
- <label for="cntctfrm_form_align_right"><?php _e( 'Right', 'contact-form-plugin' ); ?></label>
1399
  </fieldset>
1400
  </td>
1401
  </tr>
1402
  <tr valign="top">
1403
- <th scope="row"><?php _e( "Labels position", 'contact-form-plugin' ); ?></th>
1404
  <td colspan="2">
1405
  <fieldset>
1406
  <input disabled="disabled" name="cntctfrm_labels_position" type="radio" value="top" checked="checked">
1407
- <label for="cntctfrm_labels_position_top"><?php _e( 'Top', 'contact-form-plugin' ); ?></label>
1408
  <br/>
1409
  <input disabled="disabled" name="cntctfrm_labels_position" type="radio" value="left">
1410
- <label for="cntctfrm_labels_position_left"><?php _e( 'Left', 'contact-form-plugin' ); ?></label>
1411
  <br/>
1412
  <input disabled="disabled" name="cntctfrm_labels_position" type="radio" value="right">
1413
- <label for="cntctfrm_labels_position_right"><?php _e( 'Right', 'contact-form-plugin' ); ?></label>
1414
  <br/>
1415
  <input disabled="disabled" name="cntctfrm_labels_position" type="radio" value="bottom">
1416
- <label for="cntctfrm_labels_position_bottom"><?php _e( 'Bottom', 'contact-form-plugin' ); ?></label>
1417
  </fieldset>
1418
  </td>
1419
  </tr>
1420
  <tr valign="top" id="cntctfrm_labels_align" class="cntctfrm_labels_align_show">
1421
- <th scope="row"><?php _e( "Labels align", 'contact-form-plugin' ); ?></th>
1422
  <td colspan="2">
1423
  <fieldset>
1424
  <input disabled="disabled" name="cntctfrm_labels_align" type="radio" value="left" checked="checked">
1425
- <label for="cntctfrm_labels_align_left"><?php _e( 'Left', 'contact-form-plugin' ); ?></label>
1426
  <br/>
1427
  <input disabled="disabled" name="cntctfrm_labels_align" type="radio" value="center">
1428
- <label for="cntctfrm_labels_align_center"><?php _e( 'Center', 'contact-form-plugin' ); ?></label>
1429
  <br/>
1430
  <input disabled="disabled" name="cntctfrm_labels_align" type="radio" value="right">
1431
- <label for="cntctfrm_labels_align_right"><?php _e( 'Right', 'contact-form-plugin' ); ?></label>
1432
  </fieldset>
1433
  </td>
1434
  </tr>
1435
  <tr valign="top">
1436
- <th scope="row"><?php _e( "Errors output", 'contact-form-plugin' ); ?></th>
1437
  <td colspan="2">
1438
  <select name="cntctfrm_error_displaying" disabled='disabled' style="max-width:400px; width:100%;">
1439
- <option value="labels"><?php _e( "Display error messages", 'contact-form-plugin' ); ?></option>
1440
- <option value="input_colors"><?php _e( "Color of the input field errors.", 'contact-form-plugin' ); ?></option>
1441
- <option value="both" selected="selected"><?php _e( "Display error messages & color of the input field errors", 'contact-form-plugin' ); ?></option>
1442
  </select>
1443
  </td>
1444
  </tr>
1445
  <tr valign="top">
1446
- <th scope="row"><?php _e( "Add placeholder to the input blocks", 'contact-form-plugin' ); ?></th>
1447
  <td colspan="2">
1448
  <input disabled='disabled' type="checkbox" name="cntctfrm_placeholder" value="1" />
1449
  </td>
1450
  </tr>
1451
  <tr valign="top">
1452
- <th scope="row"><?php _e( "Add tooltips", 'contact-form-plugin' ); ?></th>
1453
  <td colspan="2">
1454
  <div>
1455
  <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_name" value="1" />
1456
- <label for="cntctfrm_tooltip_display_name"><?php _e( "Name", 'contact-form-plugin' ); ?></label>
1457
  </div>
1458
  <?php if ( '1' == $this->options['display_address_field'] ) { ?>
1459
  <div>
1460
  <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_address" value="1" />
1461
- <label for="cntctfrm_tooltip_display_address"><?php _e( "Address", 'contact-form-plugin' ); ?></label>
1462
  </div>
1463
  <?php } ?>
1464
  <div>
1465
  <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_email" value="1" />
1466
- <label for="cntctfrm_tooltip_display_email"><?php _e( "Email address", 'contact-form-plugin' ); ?></label>
1467
  </div>
1468
  <?php if ( '1' == $this->options['display_phone_field'] ) { ?>
1469
  <div>
1470
  <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_phone" value="1" />
1471
- <label for="cntctfrm_tooltip_display_phone"><?php _e( "Phone Number", 'contact-form-plugin' ); ?></label>
1472
  </div>
1473
  <?php } ?>
1474
  <div>
1475
  <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_subject" value="1" />
1476
- <label for="cntctfrm_tooltip_display_subject"><?php _e( "Subject", 'contact-form-plugin' ); ?></label>
1477
  </div>
1478
  <div>
1479
  <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_message" value="1" />
1480
- <label for="cntctfrm_tooltip_display_message"><?php _e( "Message", 'contact-form-plugin' ); ?></label>
1481
  </div>
1482
  <?php if ( '1' == $this->options['attachment_explanations'] ) { ?>
1483
  <div>
1484
  <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_attachment" value="1" />
1485
- <label for="cntctfrm_tooltip_display_attachment"><?php _e( "Attachment", 'contact-form-plugin' ); ?></label>
1486
  </div>
1487
  <?php } ?>
1488
  </td>
@@ -1490,151 +1512,149 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
1490
  <tr valign="top">
1491
  <th colspan="3" scope="row">
1492
  <input disabled='disabled' type="checkbox" name="cntctfrm_style_options" value="1" checked="checked" />
1493
- <?php _e( "Style options", 'contact-form-plugin' ); ?>
1494
  </th>
1495
  </tr>
1496
  <tr valign="top" class="cntctfrm_style_block">
1497
- <th scope="row"><?php _e( "Text color", 'contact-form-plugin' ); ?></th>
1498
  <td colspan="2">
1499
  <div>
1500
  <div class="wp-picker-container">
1501
  <button type="button" class="button wp-color-result" disabled="disabled">
1502
- <span class="wp-color-result-text"><?php _e( "Select Color", 'contact-form-plugin' ); ?></span>
1503
  </button>
1504
  </div>
1505
- <div class="cntctfrm_label_block"><?php _e( 'Label text color', 'contact-form-plugin' ); ?></div>
1506
 
1507
  </div>
1508
  <div>
1509
  <div class="wp-picker-container">
1510
  <button type="button" class="button wp-color-result" disabled="disabled">
1511
- <span class="wp-color-result-text"><?php _e( "Select Color", 'contact-form-plugin' ); ?></span>
1512
  </button>
1513
  </div>
1514
- <div class="cntctfrm_label_block"><?php _e( "Placeholder color", 'contact-form-plugin' ); ?></div>
1515
  </div>
1516
  </td>
1517
  </tr>
1518
  <tr valign="top" class="cntctfrm_style_block">
1519
- <th scope="row"><?php _e( "Errors color", 'contact-form-plugin' ); ?></th>
1520
  <td colspan="2">
1521
  <div>
1522
  <div class="wp-picker-container">
1523
  <button type="button" class="button wp-color-result" disabled="disabled">
1524
- <span class="wp-color-result-text"><?php _e( "Select Color", 'contact-form-plugin' ); ?></span>
1525
  </button>
1526
  </div>
1527
- <div class="cntctfrm_label_block"><?php _e( 'Error text color', 'contact-form-plugin' ); ?></div>
1528
  </div>
1529
  <div>
1530
  <div class="wp-picker-container">
1531
  <button type="button" class="button wp-color-result" disabled="disabled">
1532
- <span class="wp-color-result-text"><?php _e( "Select Color", 'contact-form-plugin' ); ?></span>
1533
  </button>
1534
  </div>
1535
- <div class="cntctfrm_label_block"><?php _e( 'Background color of the input field errors', 'contact-form-plugin' ); ?></div>
1536
  </div>
1537
  <div>
1538
  <div class="wp-picker-container">
1539
  <button type="button" class="button wp-color-result" disabled="disabled">
1540
- <span class="wp-color-result-text"><?php _e( "Select Color", 'contact-form-plugin' ); ?></span>
1541
  </button>
1542
  </div>
1543
- <div class="cntctfrm_label_block"><?php _e( 'Border color of the input field errors', 'contact-form-plugin' ); ?></div>
1544
  </div>
1545
  <div>
1546
  <div class="wp-picker-container">
1547
  <button type="button" class="button wp-color-result" disabled="disabled">
1548
- <span class="wp-color-result-text"><?php _e( "Select Color", 'contact-form-plugin' ); ?></span>
1549
  </button>
1550
  </div>
1551
- <div class="cntctfrm_label_block"><?php _e( "Placeholder color of the input field errors", 'contact-form-plugin' ); ?></div>
1552
  </div>
1553
  </td>
1554
  </tr>
1555
  <tr valign="top" class="cntctfrm_style_block">
1556
- <th scope="row"><?php _e( "Input fields", 'contact-form-plugin' ); ?></th>
1557
  <td colspan="2">
1558
  <div>
1559
  <div class="wp-picker-container">
1560
  <button type="button" class="button wp-color-result" disabled="disabled">
1561
- <span class="wp-color-result-text"><?php _e( "Select Color", 'contact-form-plugin' ); ?></span>
1562
  </button>
1563
  </div>
1564
- <div class="cntctfrm_label_block"><?php _e( "Input fields background color", 'contact-form-plugin' ); ?></div>
1565
  </div>
1566
  <div>
1567
  <div class="wp-picker-container">
1568
  <button type="button" class="button wp-color-result" disabled="disabled">
1569
- <span class="wp-color-result-text"><?php _e( "Select Color", 'contact-form-plugin' ); ?></span>
1570
  </button>
1571
  </div>
1572
- <div class="cntctfrm_label_block"><?php _e( "Text fields color", 'contact-form-plugin' ); ?></div>
1573
  </div>
1574
  <div>
1575
  <input disabled='disabled' size="8" type="text" value="" name="cntctfrm_border_input_width" /><br />
1576
- <div class="cntctfrm_label_block"><?php _e( 'Border width in px, numbers only', 'contact-form-plugin' ); ?></div>
1577
  </div>
1578
  <div>
1579
  <div class="wp-picker-container">
1580
  <button type="button" class="button wp-color-result" disabled="disabled">
1581
- <span class="wp-color-result-text"><?php _e( "Select Color", 'contact-form-plugin' ); ?></span>
1582
  </button>
1583
  </div>
1584
- <div class="cntctfrm_label_block"><?php _e( 'Border color', 'contact-form-plugin' ); ?></div>
1585
  </div>
1586
  </td>
1587
  </tr>
1588
  <tr valign="top" class="cntctfrm_style_block">
1589
- <th scope="row"><?php _e( "Submit button", 'contact-form-plugin' ); ?></th>
1590
  <td colspan="2">
1591
  <div>
1592
  <input disabled='disabled' size="8" type="text" value="" name="cntctfrm_button_width" /><br />
1593
- <div class="cntctfrm_label_block"><?php _e( 'Width in px, numbers only', 'contact-form-plugin' ); ?></div>
1594
  </div>
1595
  <div>
1596
  <div class="wp-picker-container">
1597
  <button type="button" class="button wp-color-result" disabled="disabled">
1598
- <span class="wp-color-result-text"><?php _e( "Select Color", 'contact-form-plugin' ); ?></span>
1599
  </button>
1600
  </div>
1601
- <div class="cntctfrm_label_block"><?php _e( 'Button color', 'contact-form-plugin' ); ?></div>
1602
  </div>
1603
  <div>
1604
  <div class="wp-picker-container">
1605
  <button type="button" class="button wp-color-result" disabled="disabled">
1606
- <span class="wp-color-result-text"><?php _e( "Select Color", 'contact-form-plugin' ); ?></span>
1607
  </button>
1608
  </div>
1609
- <div class="cntctfrm_label_block"><?php _e( "Button text color", 'contact-form-plugin' ); ?></div>
1610
  </div>
1611
  <div>
1612
  <div class="wp-picker-container">
1613
  <button type="button" class="button wp-color-result" disabled="disabled">
1614
- <span class="wp-color-result-text"><?php _e( "Select Color", 'contact-form-plugin' ); ?></span>
1615
  </button>
1616
  </div>
1617
- <div class="cntctfrm_label_block"><?php _e( 'Border color', 'contact-form-plugin' ); ?></div>
1618
  </div>
1619
  </td>
1620
  </tr>
1621
  </table>
1622
  </div>
1623
- <div class="bws_pro_version_tooltip">
1624
- <a class="bws_button" href="https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=697c5e74f39779ce77850e11dbe21962&amp;pn=77&amp;v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&amp;wp_v=<?php echo $wp_version; ?>" target="_blank" title="Contact Form Pro">
1625
- <?php _e( 'Upgrade to Pro', 'contact-form-plugin' ); ?>
1626
- </a>
1627
- <div class="clear"></div>
1628
- </div>
1629
  </div>
1630
  <?php } ?>
 
1631
  </div>
1632
- <?php if ( $bws_hide_premium_options_check ) { ?>
 
1633
  <div class="clear"></div>
1634
  <?php } ?>
 
1635
  <div id="<?php echo is_rtl() ? 'cntctfrm_left_table' : 'cntctfrm_right_table' ?>">
1636
- <h3><?php _e( 'Contact Form | Preview', 'contact-form-plugin' ); ?></h3>
1637
- <span class="bws_info"><?php _e( 'Drag the necessary field to sort fields.', 'contact-form-plugin' ); ?></span>
1638
  <?php $classes = ( $this->options['layout'] === 1 ) ? ' cntctfrm_one_column' : ' cntctfrm_two_columns';
1639
  $classes .= is_rtl() ? ' cntctfrm_rtl' : ' cntctfrm_ltr';
1640
  $classes .= ( 'custom' != $this->options['width']['type'] ) ? ' cntctfrm_width_default' : ' cntctfrm_width_custom';
@@ -1653,7 +1673,7 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
1653
  $column = ( $i == 1 ) ? 'first_column' : 'second_column'; ?>
1654
  <ul id="cntctfrm_<?php echo $column; ?>" class="cntctfrm_column" <?php if ( $i == 2 && $this->options['layout'] === 1 ) echo 'style="display: none;"'; ?>>
1655
  <?php foreach ( $cntctfrm_ordered_fields[ $column ] as $cntctfrm_field ) {
1656
- switch( $cntctfrm_field ) {
1657
  case 'cntctfrm_contact_name':
1658
  if ( 1 == $this->options['display_name_field'] ) { ?>
1659
  <li class="cntctfrm_field_wrap">
@@ -1710,20 +1730,22 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
1710
  </li>
1711
  <?php }
1712
  break;
1713
- case 'cntctfrm_contact_subject': ?>
1714
- <li class="cntctfrm_field_wrap">
1715
- <div class="cntctfrm_label cntctfrm_label_subject">
1716
- <label for="cntctfrm_contact_subject"><?php echo $this->options['subject_label']['default']; if ( 1 == $this->options['required_subject_field'] ) echo '<span class="required"> ' . $this->options['required_symbol'] . '</span>'; ?></label>
1717
- </div>
1718
- <div class="cntctfrm_error_text hidden"><?php echo $this->options['subject_error']['default']; ?></div>
1719
- <div class="cntctfrm_input cntctfrm_input_subject">
1720
- <div class="cntctfrm_drag_wrap"></div>
1721
- <input class="text bws_no_bind_notice" type="text" size="40" value="" name="cntctfrm_contact_subject" id="cntctfrm_contact_subject" />
1722
- </div>
1723
- </li>
1724
- <?php break;
1725
- case 'cntctfrm_contact_message': ?>
1726
- <li class="cntctfrm_field_wrap">
 
 
1727
  <div class="cntctfrm_label cntctfrm_label_message">
1728
  <label for="cntctfrm_contact_message"><?php echo $this->options['message_label']['default']; if ( 1 == $this->options['required_message_field'] ) echo '<span class="required"> ' . $this->options['required_symbol'] . '</span>'; ?></label>
1729
  </div>
@@ -1732,8 +1754,8 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
1732
  <div class="cntctfrm_drag_wrap"></div>
1733
  <textarea class="bws_no_bind_notice" rows="5" cols="30" name="cntctfrm_contact_message" id="cntctfrm_contact_message"></textarea>
1734
  </div>
1735
- </li>
1736
- <?php break;
1737
  case 'cntctfrm_contact_attachment':
1738
  if ( 1 == $this->options['attachment'] ) { ?>
1739
  <li class="cntctfrm_field_wrap">
@@ -1881,14 +1903,14 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
1881
  public function display_metabox() { ?>
1882
  <div class="postbox">
1883
  <h3 class="hndle">
1884
- <?php _e( 'Contact Form Shortcode', 'contact-form-plugin' ); ?>
1885
  </h3>
1886
  <div class="inside">
1887
- <?php _e( "Add Contact Form to your page or post using the following shortcode:", 'contact-form-plugin' );
1888
- $id_form = $this->cfmlt_is_active ? ' id='. $_SESSION['cntctfrmmlt_id_form'] : '';
1889
  bws_shortcode_output( "[bestwebsoft_contact_form". $id_form . "]");?>
1890
  </div>
1891
  </div>
1892
  <?php }
1893
  }
1894
- }
1
  <?php
2
  /**
3
+ * plugin settings page
4
  */
5
 
6
  if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
7
  class Cntctfrm_Settings_Tabs extends Bws_Settings_Tabs {
8
+ private $cfmlt_is_active, $first_form_id, $multi_options_main, $cf_class;
 
9
  private $is_cfmltpr_pro = false;
 
10
  /**
11
  * Constructor.
12
  *
20
  global $cntctfrm_options, $cntctfrm_plugin_info, $contact_form_multi_active;
21
 
22
  $tabs = array(
23
+ 'settings' => array( 'label' => esc_html__( 'Settings', 'contact-form-plugin' ) ),
24
+ 'additional_settings' => array( 'label' => esc_html__( 'Additional Settings', 'contact-form-plugin' ) ),
25
+ 'appearance' => array( 'label' => esc_html__( 'Appearance', 'contact-form-plugin' ) ),
26
+ 'misc' => array( 'label' => esc_html__( 'Misc', 'contact-form-plugin' ) ),
27
+ 'custom_code' => array( 'label' => esc_html__( 'Custom Code', 'contact-form-plugin' ) ),
28
+ /*pls */
29
+ 'license' => array( 'label' => esc_html__( 'License Key', 'contact-form-plugin' ) ),
30
+ /* pls*/
31
  );
32
 
33
  $addons_check = array();
40
  'slug' => 'contact-form-multi-pro',
41
  'basename' => 'contact-form-multi-pro/contact-form-multi-pro.php'
42
  );
43
+ } else if ( 'free' == cntctfrm_check_cf_multi_active() ) {
44
  $addons_check['contact-form-multi'] =
45
  array(
46
  'name' => 'Contact Form Multi',
58
  'default_options' => cntctfrm_get_option_defaults(),
59
  'options' => $cntctfrm_options,
60
  'is_network_options' => is_network_admin(),
61
+ 'tabs' => $tabs,
62
+ 'licenses' => $addons_check,
63
+ 'doc_link' => 'https://docs.google.com/document/d/1qZYPJhkSdVyyM6XO5WfiBcTS2Sa9_9UMn4vS2g48JRY/',
64
+ /*pls */
65
+ 'wp_slug' => 'contact-form-plugin',
66
+ /* pls*/
67
  ) );
68
 
69
+ if ( file_exists( dirname( __FILE__ ) . '/class-custom-field.php' ) ) {
70
+ require_once( dirname(__FILE__) . '/class-custom-field.php' );
71
+ $this->cf_class = new CustomFieldPlus( $args = array( 'prefix' => 'cntctfrm' ) );
72
+ }
73
+
74
  add_action( get_parent_class( $this ) . '_appearance_custom_messages', array( $this, 'appearance_custom_messages' ) );
75
  add_action( get_parent_class( $this ) . '_display_metabox', array( $this, 'display_metabox' ) );
76
  $this->cfmlt_is_active = cntctfrm_check_cf_multi_active();
87
  } else {
88
  $this->upload_dir = wp_upload_dir();
89
  }
 
90
  $contact_form_multi_active = cntctfrm_check_cf_multi_active();
91
  }
92
 
99
  public function appearance_custom_messages( $save_results ) {
100
  global $cntctfrm_is_old_php;
101
  $message = $error = ""; ?>
102
+ <noscript><div class="error below-h2"><p><strong><?php esc_html_e( "Please enable JavaScript in your browser.", 'contact-form-plugin' ); ?></strong></p></div></noscript>
103
  <?php if ( $cntctfrm_is_old_php ) { ?>
104
+ <div class="error below-h2"><p><strong><?php printf( esc_html__( "Contact Form plugin requires PHP %s or higher. Please contact your hosting provider to upgrade PHP version.", 'contact-form-plugin' ), '5.4.0' ); ?></strong></p></div>
105
  <?php } ?>
106
 
107
  <div class="updated below-h2" <?php if ( empty( $message ) || "" != $error ) echo "style=\"appearance:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
127
  $hide_result = bws_hide_premium_options( $this->options );
128
  $this->options = $hide_result['options'];
129
  }
130
+ $this->options = apply_filters ( 'cntctfrm_save_additional_options', $this->options );
131
  if ( isset( $_POST['cntctfrm_width_type'] ) && in_array( $_POST['cntctfrm_width_type'], array( 'default', 'custom' ) ) ) {
132
  $this->options['width']['type'] = $_POST['cntctfrm_width_type'];
133
  if ( 'custom' == $_POST['cntctfrm_width_type'] ) {
351
  /* if 'FROM' field was changed */
352
  if ( ( 'custom' == $this->options['from_email'] && 'custom' != $this->options['from_email'] ) ||
353
  ( 'custom' == $this->options['from_email'] && $this->options['custom_from_email'] != $this->options['custom_from_email'] ) ) {
354
+ $notice = esc_html__( "Email 'FROM' field option was changed, which may cause email messages being moved to the spam folder or email delivery failures.", 'contact-form-plugin' );
355
  }
356
 
357
  $this->options['action_after_send'] = ( isset( $_POST['cntctfrm_action_after_send'] ) && in_array( $_POST['cntctfrm_action_after_send'], array( '1', '0') ) ?( $_POST['cntctfrm_action_after_send'] ) : '1' );
361
  if ( 0 == $this->options['action_after_send']
362
  && ( "" == trim( $this->options['redirect_url'] )
363
  || ! filter_var( $this->options['redirect_url'], FILTER_VALIDATE_URL) ) ) {
364
+ $error .= esc_html__( "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>";
365
  $this->options['action_after_send'] = 1;
366
  }
367
  if ( 'user' == $this->options['select_email'] ) {
368
  if ( false !== get_user_by( 'login', $this->options['user_email'] ) ) {
369
  /**/
370
  } else {
371
+ $error .= esc_html__( "Such user does not exist.", 'contact-form-plugin' );
372
  }
373
  } else {
374
  if ( preg_match( '|,|', $this->options['custom_email'] ) ) {
378
  }
379
  foreach ( $cntctfrm_custom_emails as $cntctfrm_custom_email ) {
380
  if ( $cntctfrm_custom_email == "" || ! is_email( trim( $cntctfrm_custom_email ) ) ) {
381
+ $error .= esc_html__( "Please enter a valid email address in the 'Use this email address' field.", 'contact-form-plugin' );
382
  break;
383
  }
384
  }
386
  if ( 'custom' == $this->options['from_email'] ) {
387
  if ( "" == $this->options['custom_from_email']
388
  || ! is_email( trim( $this->options['custom_from_email'] ) ) ) {
389
+ $error .= esc_html__( "Please enter a valid email address in the 'FROM' field.", 'contact-form-plugin' );
390
  }
391
  }
392
 
393
  if ( '' == $error ) {
394
  if ( 'pro' == $contact_form_multi_active && $options_main = get_option( 'cntctfrmmltpr_options_main' ) ) {
395
+ if ( $options_main['id_form'] !== $GLOBALS['cntctfrmmlt_id_form'] )
396
  add_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $this->options );
397
+ else if ( $options_main['id_form'] == $GLOBALS['cntctfrmmlt_id_form'] )
398
  update_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $this->options );
399
  } elseif ( $contact_form_multi_active ) {
400
  $options_main = get_option( 'cntctfrmmlt_options_main' );
401
 
402
+ if ( $options_main['id_form'] !== $GLOBALS['cntctfrmmlt_id_form'] )
403
  add_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $this->options );
404
+ else if ( $options_main['id_form'] == $GLOBALS['cntctfrmmlt_id_form'] )
405
  update_option( 'cntctfrmmlt_options_' . $options_main['id_form'], $this->options );
406
  } else {
407
  update_option( 'cntctfrm_options', $this->options );
408
  }
409
+ $message = esc_html__( "Settings saved.", 'contact-form-plugin' );
410
  } else {
411
+ $error .= ' ' . esc_html__( "Settings are not saved.", 'contact-form-plugin' );
412
  }
413
 
414
  return compact( 'message', 'notice', 'error' );
415
  }
416
 
417
  public function tab_settings() {
418
+ global $wpdb, $wp_version, $cntctfrm_plugin_info, $bstwbsftwppdtplgns_options, $cntctfrm_countries, $cntctfrm_lang_codes, $cntctfrm_related_plugins, $contact_form_multi_active;
419
+
 
 
 
420
  if ( empty( $cntctfrm_related_plugins ) ) {
421
  cntctfrm_related_plugins();
422
  }
426
  }
427
 
428
  $all_plugins = get_plugins();?>
429
+ <h3 class="bws_tab_label"><?php esc_html_e( 'Contact Form Settings', 'contact-form-plugin' ); ?></h3>
430
  <?php $this->help_phrase(); ?>
431
  <hr>
432
  <div>
433
+ <p><?php esc_html_e( "If you leave the fields empty, the messages will be sent to the email address specified during registration.", 'contact-form-plugin' ); ?></p>
434
  <table class="form-table" style="width:auto;">
435
  <tr valign="top">
436
+ <th scope="row"><?php esc_html_e( "The user's email address", 'contact-form-plugin' ); ?> </th>
437
  <td colspan="2">
438
  <label>
439
  <input type="radio" id="cntctfrm_select_email_user" name="cntctfrm_select_email" value="user" <?php checked( 'user', $this->options['select_email'] ); ?> />
440
  <select name="cntctfrm_user_email">
441
+ <option disabled><?php esc_html_e( "Select a username", 'contact-form-plugin' ); ?></option>
442
  <?php foreach ( $userslogin as $key => $value ) {
443
  if ( isset( $value->data ) ) {
444
  if ( $value->data->user_email != '' ) { ?>
451
  }
452
  } ?>
453
  </select>
454
+ <div class="bws_info cntctfrm_info"><?php esc_html_e( 'Select a username of the person who should get the messages from the contact form.', 'contact-form-plugin' ); ?></div>
455
  </label>
456
  </td>
457
  </tr>
458
  <tr valign="top">
459
+ <th scope="row" style="width:200px;"><?php esc_html_e( "Use this email address", 'contact-form-plugin' ); ?></th>
460
  <td colspan="2">
461
  <label>
462
  <input type="radio" id="cntctfrm_select_email_custom" name="cntctfrm_select_email" value="custom" <?php checked( 'custom', $this->options['select_email'] ); ?>/>
463
  <input type="text" maxlength="500" name="cntctfrm_custom_email" value="<?php echo $this->options['custom_email']; ?>" />
464
+ <div class="bws_info cntctfrm_info"><?php esc_html_e( 'Enter the email address for receiving messages', 'contact-form-plugin' ); ?>.</div>
465
  </label>
466
  </td>
467
  </tr>
468
  </table>
469
+ <!-- pls -->
470
  <?php if ( ! $this->hide_pro_tabs ) { ?>
471
+ <div class="bws_pro_version_bloc">
472
+ <div class="bws_pro_version_table_bloc">
473
+ <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php esc_html_e( 'Close', 'contact-form-plugin' ); ?>"></button>
474
+ <div class="bws_table_bg"></div>
475
+ <table class="form-table bws_pro_version">
476
+ <tr valign="top">
477
+ <th scope="row"><?php esc_html_e( "Add department selectbox to the contact form", 'contact-form-plugin' ); ?></th>
478
+ <td colspan="2">
479
+ <input type="radio" name="cntctfrm_select_email" value="departments" disabled="disabled" />
480
+ <div><img src="<?php echo plugins_url( '../images/pro_screen_1.png', __FILE__ ); ?>" alt="" /></div>
481
+ </td>
482
+ </tr>
483
+ </table>
 
 
 
 
 
 
 
484
  </div>
485
+ <?php $this->bws_pro_block_links(); ?>
486
+ </div>
487
+ <?php } ?>
488
+ <!-- end pls -->
489
  <table class="form-table" style="width:auto;">
490
  <tr valign="top">
491
+ <th scope="row" style="width:200px;"><?php esc_html_e( "Save emails to the database", 'contact-form-plugin' ); ?> </th>
492
  <td colspan="2">
493
  <?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 ) ) {
494
  if ( array_key_exists( 'contact-form-to-db', $cntctfrm_related_plugins ) ) {
499
  }
500
  if ( false == $this->cfmlt_is_active || ! empty( $cntctfrm_related_plugins['contact-form-to-db']['options']['save_messages_to_db'] ) ) { ?>
501
  <label><input type="checkbox" name="cntctfrm_save_email_to_db" value="1" <?php checked( $save_emails ); ?> />
502
+ <span class="bws_info"> <?php esc_html_e( 'Using', 'contact-form-plugin' ); ?>
503
  <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>
504
  </span>
505
  </label>
506
  <?php } else { ?>
507
  <label><input type="checkbox" name="cntctfrm_save_email_to_db" value="1" disabled="disabled" /></label>
508
+ <span class="bws_info">&nbsp;<?php esc_html_e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
509
  <?php printf( '<a href="%s" target="_blank"> Contact Form to DB %s</a>&nbsp;',
510
  self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['contact-form-to-db']['settings_page'] ),
511
+ esc_html__( 'settings page', 'contact-form-plugin' ) ); ?>
512
  </span>
513
  <?php }
514
  } else { ?>
515
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_save_email_to_db" value="1" />
516
+ <span class="bws_info"><?php esc_html_e( 'Using', 'contact-form-plugin' ); ?> Contact Form to DB by BestWebSoft
517
+ <?php printf( '<a href="%s" target="_blank">%s Contact Form to DB</a>', self_admin_url( 'plugins.php' ), esc_html__( 'Activate', 'contact-form-plugin' ) ); ?>
518
  </span>
519
  </label>
520
  <?php }
521
  } else { ?>
522
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_save_email_to_db" value="1" />
523
+ <span class="bws_info"><?php esc_html_e( 'Using', 'contact-form-plugin' ); ?> Contact Form to DB by BestWebSoft
524
+ <?php printf( '<a href="https://bestwebsoft.com/products/wordpress/plugins/contact-form-to-db/?k=b3bfaac63a55128a35e3f6d0a20dd43d&amp;pn=3&amp;v=%s&amp;wp_v=%s"> %s Contact Form to DB</a>', $cntctfrm_plugin_info["Version"], $wp_version, esc_html__( 'Download', 'contact-form-plugin' ) ); ?>
525
  </span>
526
  </label>
527
  <?php } ?>
532
  <?php }
533
 
534
  public function tab_additional_settings() {
535
+ global $cntctfrm_related_plugins, $cntctfrm_lang_codes, $cntctfrm_plugin_info, $wp_version, $contact_form_multi_active;
 
 
 
 
536
  if ( empty( $cntctfrm_related_plugins ) ) {
537
  cntctfrm_related_plugins();
538
  }
539
  $all_plugins = get_plugins();?>
540
+ <h3 class="bws_tab_label"><?php esc_html_e( 'Additional Settings', 'contact-form-plugin' ); ?></h3>
541
  <?php $this->help_phrase(); ?>
542
  <hr>
543
  <table class="form-table" style="width:auto;">
544
  <tr>
545
+ <th scope="row"><?php esc_html_e( 'Sending method', 'contact-form-plugin' ); ?></th>
546
  <td colspan="2">
547
  <fieldset>
548
  <label>
549
  <input type='radio' name='cntctfrm_mail_method' value='wp-mail' <?php checked( 'wp-mail', $this->options['mail_method'] ); ?> />
550
+ <?php esc_html_e( 'Wp-mail', 'contact-form-plugin' ); ?>
551
+ <div class="bws_info" style="padding-left: 20px;"><?php esc_html_e( 'You can use the Wordpress wp_mail function for mailing', 'contact-form-plugin' ); ?></div>
552
  </label>
553
  <br />
554
  <label>
555
  <input type='radio' name='cntctfrm_mail_method' value='mail' <?php checked( 'mail', $this->options['mail_method'] ); ?> />
556
+ <?php esc_html_e( 'Mail', 'contact-form-plugin' ); ?>
557
+ <div class="bws_info" style="padding-left: 20px;"><?php esc_html_e( 'You can use the PHP mail function for mailing', 'contact-form-plugin' ); ?></div>
558
  </label>
559
  </fieldset>
560
  </td>
561
  </tr>
562
  <tr valign="top">
563
+ <th scope="row"><?php esc_html_e( "'FROM' field", 'contact-form-plugin' ); ?></th>
564
  <td class="cntctfrm_td_name" style="vertical-align: top;">
565
  <table id="cntctfrm_table_from_name">
566
  <tbody>
567
  <tr>
568
+ <td colspan="2"><?php esc_html_e( "Name", 'contact-form-plugin' ); ?></td>
569
  </tr>
570
  <tr>
571
  <td class="cntctfrm_radio_from_name"><input type="radio" id="cntctfrm_select_from_custom_field" name="cntctfrm_select_from_field" value="custom" <?php checked( 'custom', $this->options['select_from_field'] ); ?> /></td>
576
  <input type="radio" id="cntctfrm_select_from_field" name="cntctfrm_select_from_field" value="user_name" <?php checked( 'user_name', $this->options['select_from_field'] ); ?>/>
577
  </td>
578
  <td>
579
+ <label for="cntctfrm_select_from_field"><?php esc_html_e( "User name", 'contact-form-plugin' ); ?></label>
580
  <div class="bws_help_box dashicons dashicons-editor-help">
581
+ <div class="bws_hidden_help_text" style="min-width: 200px;"><?php echo esc_html__( "The name of the user who fills the form will be used in the field 'From'.", 'contact-form-plugin' ); ?></div>
582
  </div>
583
  </td>
584
  </tr>
589
  <table id="cntctfrm_table_from_email">
590
  <tbody>
591
  <tr>
592
+ <td colspan="2"><?php esc_html_e( "Email", 'contact-form-plugin' ); ?></td>
593
  </tr>
594
  <tr>
595
  <td class="cntctfrm_radio_from_email"><input type="radio" id="cntctfrm_from_custom_email" name="cntctfrm_from_email" value="custom" <?php checked( 'custom', $this->options['from_email'] ); ?> /></td>
600
  <input type="radio" id="cntctfrm_from_email" name="cntctfrm_from_email" value="user" <?php checked( 'user', $this->options['from_email'] ); ?> />
601
  </td>
602
  <td>
603
+ <label for="cntctfrm_from_email"><?php esc_html_e( "User email", 'contact-form-plugin' ); ?></label>
604
  <div class="bws_help_box dashicons dashicons-editor-help">
605
+ <div class="bws_hidden_help_text" style="min-width: 200px;"><?php echo esc_html__( "The email address of the user who fills the form will be used in the field 'From'.", 'contact-form-plugin' ); ?></div>
606
  </div>
607
  </td>
608
  </tr>
611
  </td>
612
  <td>
613
  <div>
614
+ <span class="bws_info"><?php esc_html_e( "If this option is changed, email messages may be moved to the spam folder or email delivery failures may occur.", 'contact-form-plugin' ); ?></span>
615
  </div>
616
  </td>
617
  </tr>
620
  </td>
621
  </tr>
622
  <tr valign="top">
623
+ <th scope="row"><?php esc_html_e( "Required symbol", 'contact-form-plugin' ); ?></th>
624
  <td colspan="2">
625
  <input type="text" id="cntctfrm_required_symbol" name="cntctfrm_required_symbol" value="<?php echo $this->options['required_symbol']; ?>" maxlength="100" />
626
  </td>
629
  <br />
630
  <table class="cntctfrm_settings_table" style="width: auto;">
631
  <thead>
632
+ <tr valign="top" <?php do_action( 'cntctfrm_disabled_row', $this->options ) ?>>
633
+ <th scope="row"><?php esc_html_e( "Fields", 'contact-form-plugin' ); ?></th>
634
+ <th><?php esc_html_e( "Used", 'contact-form-plugin' ); ?></th>
635
+ <th><?php esc_html_e( "Required", 'contact-form-plugin' ); ?></th>
636
+ <!-- pls -->
637
  <?php if ( ! $this->hide_pro_tabs ) { ?>
638
+ <th><?php esc_html_e( "Visible", 'contact-form-plugin' ); ?></th>
639
+ <th><?php esc_html_e( "Disabled for editing", 'contact-form-plugin' ); ?></th>
640
+ <th scope="row" ><?php esc_html_e( "Field's default value", 'contact-form-plugin' ); ?></th>
641
  <?php } ?>
642
+ <!-- end pls -->
643
+ <?php do_action( 'cntctfrm_display_settings_table_header' ) ?>
644
  </tr>
645
  </thead>
646
  <tbody>
647
+ <!-- pls -->
648
  <?php if ( ! $this->hide_pro_tabs ) { ?>
649
  <tr valign="top" >
650
+ <td><?php esc_html_e( "Department selectbox", 'contact-form-plugin' ); ?></td>
651
  <td class="bws_pro_version">
652
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_selectbox" value="1" />
653
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Used", 'contact-form-plugin' ); ?></span></label>
654
  </td>
655
  <td class="bws_pro_version">
656
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_required_department_field" value="1" />
657
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Required", 'contact-form-plugin' ); ?></span></label>
658
  </td>
659
  <td class="bws_pro_version"></td>
660
  <td class="bws_pro_version"></td>
661
  <td class="bws_pro_version"></td>
662
  </tr>
663
  <?php } ?>
664
+ <!-- end pls -->
665
  <tr valign="top">
666
+ <td><?php esc_html_e( "Name", 'contact-form-plugin' ); ?></td>
667
  <td>
668
+ <label><input <?php do_action( 'cntctfrm_add_class_checkbox_disabled_row') ?> type="checkbox" name="cntctfrm_display_name_field" value="1" <?php checked( '1', $this->options['display_name_field'] ); ?> />
669
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Used", 'contact-form-plugin' ); ?></span></label>
670
  </td>
671
  <td>
672
  <label><input type="checkbox" id="cntctfrm_required_name_field" name="cntctfrm_required_name_field" value="1" <?php checked( '1', $this->options['required_name_field'] ); ?> />
673
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Required", 'contact-form-plugin' ); ?></span></label>
674
  </td>
675
+ <!-- pls -->
676
  <?php if ( ! $this->hide_pro_tabs ) { ?>
677
  <td class="bws_pro_version">
678
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_visible_name" value="1" checked="checked" />
679
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Visible", 'contact-form-plugin' ); ?></span></label>
680
  </td>
681
  <td class="bws_pro_version">
682
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_disabled_name" value="1" />
683
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Disabled for editing", 'contact-form-plugin' ); ?></span></label>
684
  </td>
685
  <td class="bws_pro_version">
686
  <input disabled="disabled" type="checkbox" name="cntctfrm_default_name" value="1" />
687
+ <?php esc_html_e( "Use User's name as a default value if the user is logged in.", 'contact-form-plugin' ); ?><br />
688
+ <span class="bws_info" style="padding-left: 20px;"><?php esc_html_e( "'Visible' and 'Disabled for editing' options will be applied only to logged-in users.", 'contact-form-plugin' ); ?></span>
689
  </td>
690
  <?php } ?>
691
+ <!-- end pls -->
692
+ <?php do_action( 'cntctfrm_display_settings_table_name', $this->options ) ?>
693
  </tr>
694
+ <!-- pls -->
695
  <?php if ( ! $this->hide_pro_tabs ) { ?>
696
  <tr valign="top">
697
+ <td><?php esc_html_e( "Location selectbox", 'contact-form-plugin' ); ?></td>
698
  <td class="bws_pro_version">
699
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_selectbox" value="1" />
700
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Used", 'contact-form-plugin' ); ?></span></label>
701
  </td>
702
  <td class="bws_pro_version">
703
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_required_selectbox" value="1" />
704
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Required", 'contact-form-plugin' ); ?></span></label>
705
  </td>
706
  <td class="bws_pro_version"></td>
707
  <td class="bws_pro_version"></td>
708
  <td class="bws_pro_version">
709
  <label>
710
+ <span><?php esc_html_e( "Field's default value", 'contact-form-plugin' ); ?></span>
711
  <input disabled="disabled" type="file" name="cntctfrm_default_location" />
712
  </label>
713
  </td>
714
  </tr>
715
  <?php } ?>
716
+ <!-- end pls -->
717
+ <tr valign="top" <?php do_action( 'cntctfrm_disabled_row_address', $this->options ) ?>>
718
+ <td><?php esc_html_e( "Address", 'contact-form-plugin' ); ?></td>
719
  <td>
720
+ <label><input <?php do_action( 'cntctfrm_add_class_checkbox_disabled_row') ?> type="checkbox" id="cntctfrm_display_address_field" name="cntctfrm_display_address_field" value="1" <?php checked( '1', $this->options['display_address_field'] ); ?> />
721
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Used", 'contact-form-plus' ); ?></span></label>
722
  </td>
723
  <td>
724
  <label><input type="checkbox" id="cntctfrm_required_address_field" name="cntctfrm_required_address_field" value="1" <?php checked( '1', $this->options['required_address_field'] ); ?> />
725
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Required", 'contact-form-plugin' ); ?></span></label>
726
  </td>
727
+ <?php do_action( 'cntctfrm_display_settings_table_emptiness' ) ?>
728
+ <!-- pls -->
729
  <?php if ( ! $this->hide_pro_tabs ) { ?>
730
  <td class="bws_pro_version"></td>
731
  <td class="bws_pro_version"></td>
732
  <td class="bws_pro_version"></td>
733
  <?php } ?>
734
+ <!-- end pls -->
735
  </tr>
736
+ <?php do_action( 'cntctfrm_display_settings_table_email', $this->options ) ?>
737
+ <!-- pls -->
738
  <?php if ( ! $this->hide_pro_tabs ) { ?>
739
  <tr valign="top">
740
+ <td><?php esc_html_e( "Email Address", 'contact-form-plugin' ); ?></td>
741
  <td class="bws_pro_version">
742
  <label><input disabled="disabled" checked="checked" type="checkbox" name="cntctfrm_display_email" value="1" />
743
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Used", 'contact-form-plugin' ); ?></span></label>
744
  </td>
745
  <td class="bws_pro_version">
746
  <label><input disabled="disabled" checked="checked" type="checkbox" name="cntctfrm_required_email" value="1" />
747
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Required", 'contact-form-plugin' ); ?></span></label>
748
  </td>
749
  <td class="bws_pro_version">
750
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_visible_email" value="1" checked="checked" />
751
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Visible", 'contact-form-plugin' ); ?></span></label>
752
  </td>
753
  <td class="bws_pro_version">
754
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_disabled_email" value="1" />
755
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Disabled for editing", 'contact-form-plugin' ); ?></span></label>
756
  </td>
757
  <td class="bws_pro_version">
758
  <input disabled="disabled" type="checkbox" name="cntctfrm_default_email" value="1" />
759
+ <?php esc_html_e( "Use User's email as a default value if the user is logged in.", 'contact-form-plugin' ); ?><br />
760
+ <span class="bws_info" style="padding-left: 20px;"><?php esc_html_e( "'Visible' and 'Disabled for editing' options will be applied only to logged-in users.", 'contact-form-plugin' ); ?></span>
761
  </td>
762
  </tr>
763
  <?php } ?>
764
+ <!-- end pls -->
765
+ <tr valign="top" <?php do_action( 'cntctfrm_disabled_row_phone', $this->options ) ?>>
766
+ <td><?php esc_html_e( "Phone number", 'contact-form-plugin' ); ?></td>
767
  <td>
768
+ <label><input <?php do_action( 'cntctfrm_add_class_checkbox_disabled_row') ?> type="checkbox" id="cntctfrm_display_phone_field" name="cntctfrm_display_phone_field" value="1" <?php checked( '1', $this->options['display_phone_field'] ); ?> />
769
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Used", 'contact-form-plugin' ); ?></span></label>
770
  </td>
771
  <td>
772
  <label><input type="checkbox" id="cntctfrm_required_phone_field" name="cntctfrm_required_phone_field" value="1" <?php checked( '1', $this->options['required_phone_field'] ); ?> />
773
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Required", 'contact-form-plugin' ); ?></span></label>
774
  </td>
775
+ <!-- pls -->
776
  <?php if ( ! $this->hide_pro_tabs ) { ?>
777
  <td class="bws_pro_version"></td>
778
  <td class="bws_pro_version"></td>
779
  <td class="bws_pro_version">
780
  <input disabled="disabled" type="text" name="cntctfrm_phone_mask" value="" />
781
+ <div class="bws_info" style="word-break: break-word;"><?php printf( esc_html__( 'Specify a mask which will be used for the phone validation, where * is a number. Use only the following symbols: %s', 'contact-form-plugin' ), '* - ( ) +' ); ?></div>
782
  </td>
783
  <?php } ?>
784
+ <!-- end pls -->
785
+ <?php do_action( 'cntctfrm_display_settings_table_emptiness' ) ?>
786
  </tr>
787
+ <tr valign="top" <?php do_action( 'cntctfrm_disabled_row_subject', $this->options ) ?>>
788
+ <td><?php esc_html_e( "Subject", 'contact-form-plugin' ); ?></td>
789
+ <?php do_action( 'cntctfrm_display_settings_table_subject_used', $this->options ) ?>
790
+ <!-- pls -->
791
  <?php if ( ! $this->hide_pro_tabs ) { ?>
792
  <td class="bws_pro_version">
793
  <label><input disabled="disabled" checked="checked" type="checkbox" name="cntctfrm_display_subject" value="1" />
794
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Used", 'contact-form-plugin' ); ?></span></label>
795
  </td>
 
 
796
  <?php } ?>
797
+ <!-- end pls -->
798
  <td>
799
  <label><input type="checkbox" id="cntctfrm_required_subject_field" name="cntctfrm_required_subject_field" value="1" <?php checked( '1', $this->options['required_subject_field'] ); ?> />
800
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Required", 'contact-form-plugin' ); ?></span></label>
801
  </td>
802
+ <?php do_action( 'cntctfrm_display_settings_table_subject', $this->options ) ?>
803
+ <!-- pls -->
804
  <?php if ( ! $this->hide_pro_tabs ) { ?>
805
  <td class="bws_pro_version">
806
  <label><input class="subject" disabled="disabled" type="checkbox" name="cntctfrm_visible_subject" value="1" checked="checked" />
807
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Visible", 'contact-form-plugin' ); ?></span></label>
808
  </td>
809
  <td class="bws_pro_version">
810
  <label><input class="subject" disabled="disabled" type="checkbox" name="cntctfrm_disabled_subject" value="1" />
811
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Disabled for editing", 'contact-form-plugin' ); ?></span></label>
812
  </td>
813
  <td class="bws_pro_version">
814
  <label>
815
+ <span><?php esc_html_e( "Field's default value", 'contact-form-plugin' ); ?></span>
816
  <input class="subject" disabled="disabled" type="text" name="cntctfrm_default_subject" value="" />
817
  </label>
818
  </td>
819
  <?php } ?>
820
+ <!-- end pls -->
821
  </tr>
822
+ <tr valign="top" <?php do_action( 'cntctfrm_disabled_row_message', $this->options ) ?>>
823
+ <td><?php esc_html_e( "Message", 'contact-form-plugin' ); ?></td>
824
+ <?php do_action( 'cntctfrm_display_settings_table_message_used', $this->options ) ?>
825
+ <!-- pls -->
826
  <?php if ( ! $this->hide_pro_tabs ) { ?>
827
  <td class="bws_pro_version">
828
  <label><input disabled="disabled" checked="checked" type="checkbox" name="cntctfrm_display_message" value="1" />
829
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Used", 'contact-form-plugin' ); ?></span></label>
830
  </td>
 
 
831
  <?php } ?>
832
+ <!-- end pls -->
833
  <td>
834
  <label><input type="checkbox" id="cntctfrm_required_message_field" name="cntctfrm_required_message_field" value="1" <?php checked( '1', $this->options['required_message_field'] ); ?> />
835
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Required", 'contact-form-plugin' ); ?></span></label>
836
  </td>
837
+ <!-- pls -->
838
  <?php if ( ! $this->hide_pro_tabs ) { ?>
839
  <td class="bws_pro_version">
840
  <label><input class="message" disabled="disabled" type="checkbox" name="cntctfrm_visible_message" value="1" checked="checked" />
841
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Visible", 'contact-form-plugin' ); ?></span></label>
842
  </td>
843
  <td class="bws_pro_version">
844
  <label><input class="message" disabled="disabled" type="checkbox" name="cntctfrm_disabled_message" value="1" />
845
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Disabled for editing", 'contact-form-plugin' ); ?></span></label>
846
  </td>
847
  <td class="bws_pro_version">
848
  <label>
849
+ <span><?php esc_html_e( "Field's default value", 'contact-form-plugin' ); ?></span>
850
  <input class="message" disabled="disabled" type="text" name="cntctfrm_default_message" value="" />
851
  </label>
852
  </td>
853
  <?php } ?>
854
+ <!-- end pls -->
855
+ <?php do_action( 'cntctfrm_display_settings_table_message', $this->options ) ?>
856
  </tr>
857
+ <tr valign="top" <?php do_action( 'cntctfrm_disabled_row_attachment', $this->options ) ?>>
858
  <td>
859
+ <?php esc_html_e( "Attachment block", 'contact-form-plugin' ); ?>
860
  <div class="bws_help_box dashicons dashicons-editor-help">
861
+ <div class="bws_hidden_help_text" style="min-width: 200px;"><?php echo esc_html__( "Users can attach the following file formats", 'contact-form-plugin' ) . ": html, txt, css, gif, png, jpeg, jpg, tiff, bmp, ai, eps, ps, csv, rtf, pdf, doc, docx, xls, xlsx, zip, rar, wav, mp3, ppt, aar, sce"; ?></div>
862
  </div>
863
  </td>
864
  <td>
865
+ <label><input <?php do_action( 'cntctfrm_add_class_checkbox_disabled_row') ?> type="checkbox" id="cntctfrm_attachment" name="cntctfrm_attachment" value="1" <?php checked( '1', $this->options['attachment'] ); ?> />
866
+ <span class="cntctfrm_mobile_title"><?php esc_html_e( "Used", 'contact-form-plugin' ); ?></span></label>
867
  </td>
868
+ <!-- pls -->
869
  <?php if ( ! $this->hide_pro_tabs ) { ?>
870
  <td class="bws_pro_version"></td>
871
  <td class="bws_pro_version"></td>
872
  <td class="bws_pro_version"></td>
873
  <td class="bws_pro_version"></td>
874
  <?php } else { ?>
875
+ <!-- end pls -->
876
  <td></td>
877
+ <!-- pls -->
878
  <?php } ?>
879
+ <!-- end pls -->
880
+ <?php do_action( 'cntctfrm_display_settings_table_emptiness' ) ?>
881
  </tr>
882
  <tr valign="top" class="cntctfrm-multi-attachment" <?php if ( ! $this->options['attachment'] ) echo 'style="display:none";' ?> >
883
  <td>
884
+ <?php esc_html_e( 'Multi-attachment', 'contact-form-plugin' ); ?>
885
  <div class="bws_help_box dashicons dashicons-editor-help">
886
+ <div class="bws_hidden_help_text" style="min-width: 200px;"><?php esc_html_e( "Enable to multiple file selection", 'contact-form-plugin' ); ?></div>
887
  </div>
888
  </td>
889
  <td>
890
  <label class="bws_info"><input type="checkbox" name="cntctfrm_active_multi_attachment" value="1" <?php checked( '1', $this->options['active_multi_attachment'] ); ?> /></label>
891
  </td>
892
+ <!-- pls -->
893
  <?php if ( ! $this->hide_pro_tabs ) { ?>
894
  <td class="bws_pro_version"></td>
895
  <td class="bws_pro_version"></td>
896
  <td class="bws_pro_version"></td>
897
  <td class="bws_pro_version"></td>
898
  <?php } else { ?>
899
+ <!-- end pls -->
900
  <td></td>
901
+ <!-- pls -->
902
  <?php } ?>
903
+ <!-- end pls -->
904
+ <?php do_action( 'cntctfrm_display_settings_table_emptiness' ) ?>
905
  </tr>
906
+ <?php do_action( 'cntctfrm_get_these_custom_fields', $this->cf_class ); ?>
907
  </tbody>
908
  </table>
909
+ <br />
910
+ <?php do_action( 'cntctfrm_get_create_new_button', $this->cf_class ); ?>
911
+ <!-- pls -->
912
  <?php if( ! $this->hide_pro_tabs ) { ?>
913
  <div class="bws_pro_version_bloc">
914
  <div class="bws_pro_version_table_bloc">
915
+ <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php esc_html_e( 'Close', 'contact-form-plugin' ); ?>"></button>
916
  <div class="bws_table_bg"></div>
917
  <div class="bws_pro_version">
918
  <table id="cstmfld_hidden_field_table" class="cntctfrm_settings_table" style="width: 100%;">
919
  <thead>
920
  <tr valign="top">
921
+ <th scope="row"><?php esc_html_e( 'Title', 'contact-form-plugin' ); ?></th>
922
+ <th><?php esc_html_e( 'Field Type', 'contact-form-plugin' ); ?></th>
923
+ <th><?php esc_html_e( 'Used', 'contact-form-plugin' ); ?></th>
924
+ <th><?php esc_html_e( 'Required', 'contact-form-plugin' ); ?></th>
925
+ <th><?php esc_html_e( 'Visible', 'contact-form-plugin' ); ?></th>
926
+ <th><?php esc_html_e( 'Disabled for editing', 'contact-form-plugin' ); ?></th>
927
+ <th scope="row"><?php esc_html_e( 'Field\'s default/available value', 'contact-form-plugin' ); ?></th>
928
  <!--<th scope="row"></th>-->
929
  </tr>
930
  </thead>
950
  </tr>
951
  </tbody>
952
  </table>
953
+ <button disabled="disabled" class="button button-primary cstmfld_create_new_field" style="width: 100%;" name="cstmfld_create_new_field"><?php esc_html_e( 'Create Field', 'contact-form-plugin' ); ?></button>
954
  <table class="form-table" style="width:auto;">
955
  <tbody>
956
  <tr>
957
  <th scope="row">
958
+ <?php esc_html_e( 'Google Analytics Measurement ID', 'contact-form-plugin' ); ?>
959
  </th>
960
  <td>
961
  <input disabled="disabled" type="text" name="cntctfrm_tracking_id" value="" />
962
  <div class="bws_info">
963
+ <?php printf( esc_html__( 'Enter your %sMeasurement ID%s to track contact form submissions in Google Analytics.', 'contact-form-plugin' ), '<a href="https://support.google.com/analytics/answer/9304153?hl=en&ref_topic=9303319">', '</a>' ); ?><br />
964
+ <?php esc_html_e( 'Google Analytics version 4 is required.', 'contact-form-plugin' ) ?>
965
  </div>
966
  </td>
967
  </tr>
968
  </tbody>
969
  </table>
970
  </div>
 
 
 
 
 
 
 
 
 
971
  </div>
972
+ <?php $this->bws_pro_block_links(); ?>
973
  </div>
974
  <?php } ?>
975
+ <!-- end pls -->
976
  <table class="form-table" style="width:auto;">
977
  <tr valign="top">
978
+ <th scope="row"><?php esc_html_e( "Add to the form", 'contact-form-plugin' ); ?></th>
979
  <td colspan="3"><fieldset>
980
  <div id="cntctfrm-attachment-explanations" style="clear: both;<?php if ( ! $this->options['attachment'] ) echo ' display:none;' ?>">
981
  <label>
982
  <input type="checkbox" id="cntctfrm_attachment_explanations" name="cntctfrm_attachment_explanations" value="1" <?php checked( '1' == $this->options['attachment_explanations'] && '1' == $this->options['attachment'] ); ?> />
983
+ <?php esc_html_e( "Tips below the Attachment", 'contact-form-plugin' ); ?>
984
  </label>
985
  <?php echo bws_add_help_box( '<img src="' . plugins_url( '../images/tooltip_attachment_tips.png', __FILE__ ) . '" />', 'bws-hide-for-mobile bws-auto-width' ); ?>
986
  </div>
987
  <div>
988
  <label>
989
  <input type="checkbox" id="cntctfrm_send_copy" name="cntctfrm_send_copy" value="1" <?php checked( '1', $this->options['send_copy'] ); ?> />
990
+ <?php esc_html_e( "'Send me a copy' block", 'contact-form-plugin' ); ?>
991
  </label>
992
  <?php echo bws_add_help_box( '<img src="' . plugins_url( '../images/tooltip_sendme_block.png', __FILE__ ) . '" />', 'bws-hide-for-mobile bws-auto-width' ); ?>
993
  </div>
994
  <div>
995
  <label>
996
  <input type="checkbox" id="cntctfrm_gdpr" name="cntctfrm_gdpr" value="1" <?php checked( '1', $this->options['gdpr'] ); ?> />
997
+ <?php esc_html_e( "GDPR Compliance", 'contact-form-plugin' ); ?>
998
  </label>
999
  </div>
1000
  <div id="cntctfrm_gdpr_link_options" >
1001
  <label class="cntctfrm_privacy_policy_text" >
1002
+ <?php esc_html_e( "Link to Privacy Policy Page", 'contact-form-plugin' ); ?>
1003
  <input type="url" id="cntctfrm_gdpr_link" name="cntctfrm_gdpr_link" value="<?php echo $this->options['gdpr_link']; ?>" />
1004
  </label>
1005
  </div>
1015
  <label><input type="checkbox" name="cntctfrm_display_subscriber" value="1" <?php checked( $display_subscriber ); ?> /> Subscriber by BestWebSoft</label>
1016
  <?php } else { ?>
1017
  <label><input type="checkbox" name="cntctfrm_display_subscriber" value="1" disabled="disabled" <?php checked( $display_subscriber ); ?> /> Subscriber by BestWebSoft</label>
1018
+ <span class="bws_info">&nbsp;(<?php esc_html_e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
1019
  <?php printf( '<a href="%s" target="_blank"> Subscriber %s</a>&nbsp;)',
1020
  network_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['subscriber']['settings_page'] ),
1021
+ esc_html__( 'settings page', 'contact-form-plugin' ) ); ?>
1022
  </span>
1023
  <?php }
1024
  } else { ?>
1025
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_subscriber" value="1" <?php checked( isset( $this->options['display_subscribe'] ) && 1 == $this->options['display_subscribe'] ); ?> /> Subscriber by BestWebSoft</label>
1026
  <span class="bws_info">
1027
  <?php if ( ! is_multisite() ) {
1028
+ printf( '<a href="%s" target="_blank"> %s Subscriber</a>', admin_url( 'plugins.php' ), esc_html__( 'Activate', 'contact-form-plugin' ) );
1029
  } else {
1030
+ printf( '<a href="%s" target="_blank"> %s Subscriber</a>', network_admin_url( 'plugins.php' ), esc_html__( 'Activate for network', 'contact-form-plugin' ) );
1031
  } ?>
1032
  </span>
1033
  <?php }
1034
  } else { ?>
1035
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_subscriber" value="1" /> Subscriber by BestWebSoft</label>
1036
  <span class="bws_info">
1037
+ <?php printf( '<a href="https://bestwebsoft.com/products/wordpress/plugins/subscriber/?k=a9dfd3fa8513784c36622993b350b19e&amp;pn=77&amp;v=%s&amp;wp_v=%s" target="_blank">%s Subscriber</a>', $cntctfrm_plugin_info["Version"], $wp_version, esc_html__( 'Download', 'contact-form-plugin' ) ); ?>
1038
  </span>
1039
  <?php } ?>
1040
  </div>
1056
  <?php } else { ?>
1057
  <label>
1058
  <input type="checkbox" name="cntctfrm_display_captcha" value="1" disabled="disabled" <?php checked( $display_captcha ); ?> /> Captcha by BestWebSoft
1059
+ <span class="bws_info">&nbsp;(<?php esc_html_e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
1060
  <?php printf( '<a href="%s" target="_blank"> Captcha %s</a>&nbsp;)',
1061
  self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['captcha']['settings_page'] ),
1062
+ esc_html__( 'settings page', 'contact-form-plugin' ) ); ?>
1063
  </span>
1064
  </label>
1065
  <?php }
1067
  } else { ?>
1068
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_captcha" value="1" /> Captcha by BestWebSoft</label>
1069
  <span class="bws_info">
1070
+ <?php printf( '<a href="%s" target="_blank">%s Captcha</a>', self_admin_url( 'plugins.php' ), esc_html__( 'Activate', 'contact-form-plugin' ) ); ?>
1071
  </span>
1072
  <?php }
1073
  } else { ?>
1074
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_captcha" value="1" /> Captcha by BestWebSoft</label>
1075
  <span class="bws_info">
1076
+ <?php printf( '<a href="https://bestwebsoft.com/products/wordpress/plugins/captcha/?k=19ac1e9b23bea947cfc4a9b8e3326c03&amp;pn=77&amp;v=%s&amp;wp_v=%s" target="_blank">%s Captcha</a>', $cntctfrm_plugin_info["Version"], $wp_version, esc_html__( 'Download', 'contact-form-plugin' ) ) ?>
1077
  </span>
1078
  <?php } ?>
1079
  </div>
1091
  <?php } else { ?>
1092
  <label>
1093
  <input type="checkbox" name="cntctfrm_display_google_captcha" value="1" disabled="disabled" <?php checked( $display_google_captcha ); ?> /> reCaptcha by BestWebSoft
1094
+ <span class="bws_info">&nbsp;(<?php esc_html_e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>&nbsp;
1095
  <?php printf( '<a href="%s" target="_blank"> reCaptcha by BestWebSoft %s</a>&nbsp;)',
1096
  self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['google-captcha']['settings_page'] ),
1097
+ esc_html__( 'settings page', 'contact-form-plugin' ) ); ?>
1098
  </span>
1099
  </label>
1100
  <?php }
1101
  } else { ?>
1102
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_google_captcha" value="1" /> reCaptcha by BestWebSoft</label>
1103
  <span class="bws_info">
1104
+ <?php printf( '<a href="%s" target="_blank">%s reCaptcha</a>', self_admin_url( 'plugins.php' ), esc_html__( 'Activate', 'contact-form-plugin' ) ); ?>
1105
  </span>
1106
  <?php }
1107
  } else { ?>
1108
  <label><input disabled="disabled" type="checkbox" name="cntctfrm_display_google_captcha" value="1" /> reCaptcha by BestWebSoft</label> <span class="bws_info">
1109
+ <?php printf( '<a href="https://bestwebsoft.com/products/wordpress/plugins/google-captcha/?k=7d74e61dd1cea23d0e9bf2fa88b5b117&amp;pn=77&amp;v=%s&amp;wp_v=%s" target="_blank">%s reCaptcha</a>', $cntctfrm_plugin_info["Version"], $wp_version, esc_html__( 'Download', 'contact-form-plugin' ) ) ?>
1110
  </span>
1111
  <?php } ?>
1112
  </div>
1113
+ <!-- pls -->
1114
  <?php if ( ! $this->hide_pro_tabs ) { ?>
1115
  <div class="bws_pro_version_bloc">
1116
  <div class="bws_pro_version_table_bloc">
1117
+ <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php esc_html_e( 'Close', 'contact-form-plugin' ); ?>"></button>
1118
  <div class="bws_table_bg"></div>
1119
  <div class="bws_pro_version">
1120
  <fieldset>
1121
+ <label><input disabled="disabled" type="checkbox" value="1" name="cntctfrm_display_privacy_check"> <?php esc_html_e( 'Agreement checkbox', 'contact-form-plugin' ); ?> <span class="bws_info"><?php esc_html_e( 'Required checkbox for submitting the form', 'contact-form-plugin' ); ?></span></label><br />
1122
+ <label><input disabled="disabled" type="checkbox" value="1" name="cntctfrm_display_optional_check"> <?php esc_html_e( 'Optional checkbox', 'contact-form-plugin' ); ?> <span class="bws_info"><?php esc_html_e( 'Optional checkbox, the results of which will be displayed in email', 'contact-form-plugin' ); ?></span></label>
1123
  </fieldset>
1124
  </div>
1125
  </div>
1126
+ <?php $this->bws_pro_block_links(); ?>
 
 
 
 
 
1127
  </div>
1128
  <?php } ?>
1129
+ <!-- end pls -->
1130
  </fieldset></td>
1131
  </tr>
1132
  <tr valign="top">
1133
+ <th scope="row" style="width:200px;"><?php esc_html_e( "Delete an attachment file from the server after the email is sent", 'contact-form-plugin' ); ?> </th>
1134
  <td colspan="3">
1135
  <input type="checkbox" id="cntctfrm_delete_attached_file" name="cntctfrm_delete_attached_file" value="1" <?php checked( '1', $this->options['delete_attached_file'] ); ?> />
1136
  </td>
1137
  </tr>
1138
  <tr valign="top">
1139
+ <th scope="row"><?php esc_html_e( "Email in HTML format sending", 'contact-form-plugin' ); ?></th>
1140
  <td colspan="2"><input type="checkbox" name="cntctfrm_html_email" value="1" <?php checked( '1', $this->options['html_email'] ); ?> /></td>
1141
  </tr>
1142
  <tr valign="top">
1143
+ <th scope="row"><?php esc_html_e( "Display additional info in the email", 'contact-form-plugin' ); ?></th>
1144
  <td colspan="2">
1145
  <input type="checkbox" id="cntctfrm_display_add_info" name="cntctfrm_display_add_info" value="1" <?php checked( '1', $this->options['display_add_info'] ); ?> />
1146
  <br />
1147
  <br />
1148
  <div class="cntctfrm_display_add_info_block" <?php if ( '0' == $this->options['display_add_info'] ) echo 'style="display:none"'; ?>>
1149
  <fieldset>
1150
+ <label><input type="checkbox" id="cntctfrm_display_sent_from" name="cntctfrm_display_sent_from" value="1" <?php checked( '1', $this->options['display_sent_from'] ); ?> /> <?php esc_html_e( "Sent from (IP address)", 'contact-form-plugin' ); ?></label><br /> <span class="bws_info"><?php esc_html_e( "Example: Sent from (IP address): 127.0.0.1", 'contact-form-plugin' ); ?></span><br />
1151
+ <label><input type="checkbox" id="cntctfrm_display_date_time" name="cntctfrm_display_date_time" value="1" <?php checked( '1', $this->options['display_date_time'] ); ?> /> <?php esc_html_e( "Date/Time", 'contact-form-plugin' ); ?></label><br /> <span class="bws_info"><?php esc_html_e( "Example: Date/Time: August 19, 2013 8:50 pm", 'contact-form-plugin' ); ?></span><br />
1152
+ <label><input type="checkbox" id="cntctfrm_display_coming_from" name="cntctfrm_display_coming_from" value="1" <?php checked( '1', $this->options['display_coming_from'] ); ?> /> <?php esc_html_e( "Sent from (referer)", 'contact-form-plugin' ); ?></label><br /> <span class="bws_info"><?php esc_html_e( "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/", 'contact-form-plugin' ); ?></span><br />
1153
+ <label><input type="checkbox" id="cntctfrm_display_user_agent" name="cntctfrm_display_user_agent" value="1" <?php checked( '1', $this->options['display_user_agent'] ); ?> /> <?php esc_html_e( "Using (user agent)", 'contact-form-plugin' ); ?></label> <br /><span class="bws_info"><?php esc_html_e( "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36", 'contact-form-plugin' ); ?></span>
1154
  </fieldset>
1155
  </div>
1156
  </td>
1157
  </tr>
1158
  <tr valign="top">
1159
+ <th scope="row"><?php esc_html_e( "Language Settings", 'contact-form-plugin' ); ?></th>
1160
  <td colspan="2">
1161
  <select name="cntctfrm_languages" id="cntctfrm_languages" style="max-width: 300px;">
1162
  <option value="0"></option>
1166
  echo '<option value="' . esc_attr( $key ) . '"> ' . esc_html( $val ) . '</option>';
1167
  } ?>
1168
  </select>
1169
+ <input type="submit" class="button-secondary" name="cntctfrm_add_language_button" id="cntctfrm_add_language_button" value="<?php esc_html_e( 'Add a language', 'contact-form-plugin' ); ?>" />
1170
  </td>
1171
  </tr>
1172
  <tr valign="top">
1173
+ <th scope="row"><?php esc_html_e( "Change the names of the contact form fields and error messages", 'contact-form-plugin' ); ?></th>
1174
  <td>
1175
  <input type="checkbox" id="cntctfrm_change_label" name="cntctfrm_change_label" class="bws_option_affect" data-affect-show=".cntctfrm_change_label_block" value="1" <?php checked( '1', $this->options['change_label'] ); ?> />
1176
  <br />
1177
  <br />
1178
  <div class="cntctfrm_change_label_block" <?php if ( '0' == $this->options['change_label'] ) echo 'style="display:none"'; ?>>
1179
+ <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 esc_html_e( 'Default', 'contact-form-plugin' ); ?>
1180
  <noscript>
1181
  <input type="submit" class="cntctfrm_change_tab" value="default" name="cntctfrm_change_tab">
1182
  </noscript>
1189
  } ?>
1190
  <div class="clear"></div>
1191
  <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;">
1192
+ <div class="cntctfrm_language_tab_block_mini" style="display:none;"><?php esc_html_e( "click to expand/hide the list", 'contact-form-plugin' ); ?></div>
1193
  <div class="cntctfrm_language_tab_block">
1194
+ <input type="text" maxlength="250" name="cntctfrm_name_label[default]" value="<?php echo $this->options['name_label']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Name", 'contact-form-plugin' ); ?>:</span><br />
1195
+ <input type="text" maxlength="250" name="cntctfrm_address_label[default]" value="<?php echo $this->options['address_label']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Address", 'contact-form-plugin' ); ?>:</span><br />
1196
+ <input type="text" maxlength="250" name="cntctfrm_email_label[default]" value="<?php echo $this->options['email_label']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Email Address", 'contact-form-plugin' ); ?>:</span><br />
1197
+ <input type="text" maxlength="250" name="cntctfrm_phone_label[default]" value="<?php echo $this->options['phone_label']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Phone number", 'contact-form-plugin' ); ?>:</span><br />
1198
+ <input type="text" maxlength="250" name="cntctfrm_subject_label[default]" value="<?php echo $this->options['subject_label']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Subject", 'contact-form-plugin' ); ?>:</span><br />
1199
+ <input type="text" maxlength="250" name="cntctfrm_message_label[default]" value="<?php echo $this->options['message_label']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Message", 'contact-form-plugin' ); ?>:</span><br />
1200
+ <input type="text" maxlength="250" name="cntctfrm_attachment_label[default]" value="<?php echo $this->options['attachment_label']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Attachment", 'contact-form-plugin' ); ?>:</span><br />
1201
+ <input type="text" maxlength="250" name="cntctfrm_attachment_tooltip[default]" value="<?php echo $this->options['attachment_tooltip']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Tips below the Attachment block", 'contact-form-plugin' ); ?></span><br />
1202
+ <input type="text" maxlength="250" name="cntctfrm_send_copy_label[default]" value="<?php echo $this->options['send_copy_label']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Send me a copy", 'contact-form-plugin' ); ?></span><br />
1203
+ <input type="text" maxlength="250" name="cntctfrm_gdpr_label[default]" value="<?php echo $this->options['gdpr_label']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "I consent to having this site collect my personal data.", 'contact-form-plugin' ); ?></span><br />
1204
+ <input type="text" maxlength="250" name="cntctfrm_gdpr_text_button[default]" value="<?php echo $this->options['gdpr_text_button']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Learn more", 'contact-form-plugin' ); ?></span><br />
1205
+ <input type="text" maxlength="250" name="cntctfrm_submit_label[default]" value="<?php echo $this->options['submit_label']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Submit", 'contact-form-plugin' ); ?></span><br />
1206
+ <input type="text" maxlength="250" name="cntctfrm_name_error[default]" value="<?php echo $this->options['name_error']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message for the Name field", 'contact-form-plugin' ); ?></span><br />
1207
+ <input type="text" maxlength="250" name="cntctfrm_address_error[default]" value="<?php echo $this->options['address_error']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message for the Address field", 'contact-form-plugin' ); ?></span><br />
1208
+ <input type="text" maxlength="250" name="cntctfrm_email_error[default]" value="<?php echo $this->options['email_error']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message for the Email field", 'contact-form-plugin' ); ?></span><br />
1209
+ <input type="text" maxlength="250" name="cntctfrm_phone_error[default]" value="<?php echo $this->options['phone_error']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message for the Phone field", 'contact-form-plugin' ); ?></span><br />
1210
+ <input type="text" maxlength="250" name="cntctfrm_subject_error[default]" value="<?php echo $this->options['subject_error']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message for the Subject field", 'contact-form-plugin' ); ?></span><br />
1211
+ <input type="text" maxlength="250" name="cntctfrm_message_error[default]" value="<?php echo $this->options['message_error']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message for the Message field", 'contact-form-plugin' ); ?></span><br />
1212
+ <input type="text" maxlength="250" name="cntctfrm_attachment_error[default]" value="<?php echo $this->options['attachment_error']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message about the file type for the Attachment field", 'contact-form-plugin' ); ?></span><br />
1213
+ <input type="text" maxlength="250" name="cntctfrm_attachment_upload_error[default]" value="<?php echo $this->options['attachment_upload_error']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message while uploading a file for the Attachment field to the server", 'contact-form-plugin' ); ?></span><br />
1214
+ <input type="text" maxlength="250" name="cntctfrm_attachment_move_error[default]" value="<?php echo $this->options['attachment_move_error']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message while moving the file for the Attachment field", 'contact-form-plugin' ); ?></span><br />
1215
+ <input type="text" maxlength="250" name="cntctfrm_attachment_size_error[default]" value="<?php echo $this->options['attachment_size_error']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message when file size limit for the Attachment field is exceeded", 'contact-form-plugin' ); ?></span><br />
1216
+ <input type="text" maxlength="250" name="cntctfrm_captcha_error[default]" value="<?php echo $this->options['captcha_error']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message for the Captcha field", 'contact-form-plugin' ); ?></span><br />
1217
+ <input type="text" maxlength="250" name="cntctfrm_form_error[default]" value="<?php echo $this->options['form_error']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message for the whole form", 'contact-form-plugin' ); ?></span><br />
1218
  </div>
1219
  <?php if ( ! $contact_form_multi_active ) { ?>
1220
+ <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php esc_html_e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form]</span> <?php esc_html_e( "for this language", 'contact-form-plugin' ); ?></span>
1221
  <?php } else { ?>
1222
+ <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php esc_html_e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form id=<?php echo $GLOBALS['cntctfrmmlt_id_form']; ?>]</span> <?php esc_html_e( "for this language", 'contact-form-plugin' ); ?></span>
1223
  <?php } ?>
1224
  </div>
1225
  <?php if ( ! empty( $this->options['language'] ) ) {
1229
  else
1230
  $labels_table_class = ''; ?>
1231
  <div class="cntctfrm_language_tab <?php echo $labels_table_class; ?> cntctfrm_tab_<?php echo $val; ?>">
1232
+ <div class="cntctfrm_language_tab_block_mini" style="display:none;"><?php esc_html_e( "click to expand/hide the list", 'contact-form-plugin' ); ?></div>
1233
  <div class="cntctfrm_language_tab_block">
1234
+ <input type="text" maxlength="250" name="cntctfrm_name_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['name_label'][ $val ] ) ) echo $this->options['name_label'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Name", 'contact-form-plugin' ); ?>:</span><br />
1235
+ <input type="text" maxlength="250" name="cntctfrm_address_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['address_label'][ $val ] ) ) echo $this->options['address_label'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Address", 'contact-form-plugin' ); ?>:</span><br />
1236
+ <input type="text" maxlength="250" name="cntctfrm_email_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['email_label'][ $val ] ) ) echo $this->options['email_label'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Email Address", 'contact-form-plugin' ); ?>:</span><br />
1237
+ <input type="text" maxlength="250" name="cntctfrm_phone_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['phone_label'][ $val ] ) ) echo $this->options['phone_label'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Phone number", 'contact-form-plugin' ); ?>:</span><br />
1238
+ <input type="text" maxlength="250" name="cntctfrm_subject_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['subject_label'][ $val ] ) ) echo $this->options['subject_label'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Subject", 'contact-form-plugin' ); ?>:</span><br />
1239
+ <input type="text" maxlength="250" name="cntctfrm_message_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['message_label'][ $val ] ) ) echo $this->options['message_label'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Message", 'contact-form-plugin' ); ?>:</span><br />
1240
+ <input type="text" maxlength="250" name="cntctfrm_attachment_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['attachment_label'][ $val ] ) ) echo $this->options['attachment_label'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Attachment", 'contact-form-plugin' ); ?>:</span><br />
1241
+ <input type="text" maxlength="250" name="cntctfrm_attachment_tooltip[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['attachment_tooltip'][ $val ] ) ) echo $this->options['attachment_tooltip'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Tips below the Attachment block", 'contact-form-plugin' ); ?></span><br />
1242
+ <input type="text" maxlength="250" name="cntctfrm_send_copy_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['send_copy_label'][ $val ] ) ) echo $this->options['send_copy_label'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Send me a copy", 'contact-form-plugin' ); ?></span><br />
1243
+ <input type="text" maxlength="250" name="cntctfrm_gdpr_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['gdpr_label'][ $val ] ) ) echo $this->options['gdpr_label'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "I consent to having this site collect my personal data.", 'contact-form-plugin' ); ?></span><br />
1244
+ <input type="text" maxlength="250" name="cntctfrm_gdpr_text_button[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['gdpr_text_button'][ $val ] ) ) echo $this->options['gdpr_text_button'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Learn more", 'contact-form-plugin' ); ?></span><br />
1245
+ <input type="text" maxlength="250" name="cntctfrm_submit_label[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['submit_label'][ $val ] ) ) echo $this->options['submit_label'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Submit", 'contact-form-plugin' ); ?></span><br />
1246
+ <input type="text" maxlength="250" name="cntctfrm_name_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['name_error'][ $val ] ) ) echo $this->options['name_error'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message for the Name field", 'contact-form-plugin' ); ?></span><br />
1247
+ <input type="text" maxlength="250" name="cntctfrm_address_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['address_error'][ $val ] ) ) echo $this->options['address_error'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message for the Address field", 'contact-form-plugin' ); ?></span><br />
1248
+ <input type="text" maxlength="250" name="cntctfrm_email_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['email_error'][ $val ] ) ) echo $this->options['email_error'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message for the Email field", 'contact-form-plugin' ); ?></span><br />
1249
+ <input type="text" maxlength="250" name="cntctfrm_phone_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['phone_error'][ $val ] ) ) echo $this->options['phone_error'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message for the Phone field", 'contact-form-plugin' ); ?></span><br />
1250
+ <input type="text" maxlength="250" name="cntctfrm_subject_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['subject_error'][ $val ] ) ) echo $this->options['subject_error'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message for the Subject field", 'contact-form-plugin' ); ?></span><br />
1251
+ <input type="text" maxlength="250" name="cntctfrm_message_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['message_error'][ $val ] ) ) echo $this->options['message_error'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message for the Message field", 'contact-form-plugin' ); ?></span><br />
1252
+ <input type="text" maxlength="250" name="cntctfrm_attachment_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['attachment_error'][ $val ] ) ) echo $this->options['attachment_error'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message about the file type for the Attachment field", 'contact-form-plugin' ); ?></span><br />
1253
+ <input type="text" maxlength="250" name="cntctfrm_attachment_upload_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['attachment_upload_error'][ $val ] ) ) echo $this->options['attachment_upload_error'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message while uploading a file for the Attachment field to the server", 'contact-form-plugin' ); ?></span><br />
1254
+ <input type="text" maxlength="250" name="cntctfrm_attachment_move_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['attachment_move_error'][ $val ] ) ) echo $this->options['attachment_move_error'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message while moving the file for the Attachment field", 'contact-form-plugin' ); ?></span><br />
1255
+ <input type="text" maxlength="250" name="cntctfrm_attachment_size_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['attachment_size_error'][ $val ] ) ) echo $this->options['attachment_size_error'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message when file size limit for the Attachment field is exceeded", 'contact-form-plugin' ); ?></span><br />
1256
+ <input type="text" maxlength="250" name="cntctfrm_captcha_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['captcha_error'][ $val ] ) ) echo $this->options['captcha_error'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message for the Captcha field", 'contact-form-plugin' ); ?></span><br />
1257
+ <input type="text" maxlength="250" name="cntctfrm_form_error[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['form_error'][ $val ] ) ) echo $this->options['form_error'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Error message for the whole form", 'contact-form-plugin' ); ?></span><br />
1258
  </div>
1259
  <?php if ( ! $contact_form_multi_active ) { ?>
1260
+ <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php esc_html_e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val; ?>]</span> <?php esc_html_e( "for this language", 'contact-form-plugin' ); ?></span>
1261
  <?php } else { ?>
1262
+ <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php esc_html_e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val . ' id=' . $GLOBALS['cntctfrmmlt_id_form']; ?>]</span> <?php esc_html_e( "for this language", 'contact-form-plugin' ); ?></span>
1263
  <?php } ?>
1264
  </div>
1265
  <?php }
1268
  </td>
1269
  </tr>
1270
  <tr valign="top">
1271
+ <th scope="row"><?php esc_html_e( 'Use the changed names of the contact form fields in the email', 'contact-form-plugin' ); ?></th>
1272
  <td colspan="2">
1273
  <input type="checkbox" name="cntctfrm_change_label_in_email" value="1" <?php checked( '1', $this->options['change_label_in_email'] ); ?> />
1274
  </td>
1275
  </tr>
1276
  <tr valign="top">
1277
+ <th scope="row"><?php esc_html_e( "Action after email is sent", 'contact-form-plugin' ); ?></th>
1278
  <td colspan="2" class="cntctfrm_action_after_send_block">
1279
+ <label><input type="radio" id="cntctfrm_action_after_send" name="cntctfrm_action_after_send" class="bws_option_affect" data-affect-show=".cntctfrm_label_lang_tab" data-affect-hide=".cntctfrm_redirect_url_input" value="1" <?php checked( '1', $this->options['action_after_send'] ); ?> /> <?php esc_html_e( "Display text", 'contact-form-plugin' ); ?></label><br />
1280
  <div class="cntctfrm_label_lang_tab">
1281
+ <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 esc_html_e( 'Default', 'contact-form-plugin' ); ?>
1282
  <noscript>
1283
  <input type="submit" class="cntctfrm_change_tab" value="default" name="cntctfrm_change_tab">
1284
  </noscript>
1291
  } ?>
1292
  <div class="clear"></div>
1293
  <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;">
1294
+ <input type="text" maxlength="250" name="cntctfrm_thank_text[default]" value="<?php echo $this->options['thank_text']['default']; ?>" /> <span class="bws_info"><?php esc_html_e( "Text", 'contact-form-plugin' ); ?></span><br />
1295
  <?php if ( ! $contact_form_multi_active ) { ?>
1296
+ <span class="bws_info cntctfrm_shortcode_for_language"><?php esc_html_e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form]</span> <?php esc_html_e( "for this language", 'contact-form-plugin' ); ?></span>
1297
  <?php } else { ?>
1298
+ <span class="bws_info cntctfrm_shortcode_for_language"><?php esc_html_e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form id=<?php echo $GLOBALS['cntctfrmmlt_id_form']; ?>]</span> <?php esc_html_e( "for this language", 'contact-form-plugin' ); ?></span>
1299
  <?php } ?>
1300
  </div>
1301
  <?php if ( ! empty( $this->options['language'] ) ) {
1305
  else
1306
  $labels_table_class = ''; ?>
1307
  <div class="cntctfrm_language_tab <?php echo $labels_table_class; ?> cntctfrm_tab_<?php echo $val; ?>" style="padding: 5px 10px 5px 5px;">
1308
+ <label><input type="text" maxlength="250" name="cntctfrm_thank_text[<?php echo $val; ?>]" value="<?php if ( isset( $this->options['thank_text'][ $val ] ) ) echo $this->options['thank_text'][ $val ]; ?>" /> <span class="bws_info"><?php esc_html_e( "Text", 'contact-form-plugin' ); ?></span></label><br />
1309
  <?php if ( ! $contact_form_multi_active ) { ?>
1310
+ <span class="bws_info cntctfrm_shortcode_for_language"><?php esc_html_e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val; ?>]</span> <?php esc_html_e( "for this language", 'contact-form-plugin' ); ?></span>
1311
  <?php } else { ?>
1312
+ <span class="bws_info cntctfrm_shortcode_for_language"><?php esc_html_e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val . ' id=' . $GLOBALS['cntctfrmmlt_id_form']; ?>]</span> <?php esc_html_e( "for this language", 'contact-form-plugin' ); ?></span>
1313
  <?php } ?>
1314
  </div>
1315
  <?php }
1317
  </div>
1318
  <div id="cntctfrm_before"></div>
1319
  <br />
1320
+ <label><input type="radio" id="cntctfrm_action_after_send_url" name="cntctfrm_action_after_send" class="bws_option_affect" data-affect-hide=".cntctfrm_label_lang_tab" data-affect-show=".cntctfrm_redirect_url_input" value="0" <?php checked( '0', $this->options['action_after_send'] ); ?> /> <?php esc_html_e( "Redirect to the page", 'contact-form-plugin' ); ?></label><br />
1321
  <div class="cntctfrm_redirect_url_input">
1322
+ <label><input type="text" maxlength="250" name="cntctfrm_redirect_url" value="<?php echo $this->options['redirect_url']; ?>" /> <span class="bws_info"><?php esc_html_e( "Url", 'contact-form-plugin' ); ?></span></label>
1323
  </div>
1324
  </td>
1325
  </tr>
1327
  <?php }
1328
 
1329
  public function tab_appearance() {
1330
+ global $cntctfrm_related_plugins, $contact_form_multi_active; ?>
1331
+ <h3 class="bws_tab_label"><?php esc_html_e( 'Appearance', 'contact-form-plugin' ); ?></h3>
 
 
 
 
1332
  <?php $this->help_phrase(); ?>
1333
  <hr>
1334
  <noscript>
1336
  <p>
1337
  <strong>
1338
  <?php printf(
1339
+ esc_html__( "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for fields sorting.", 'contact-form-plugin' ),
1340
+ esc_html__( "Form layout", 'contact-form-plugin' ),
1341
+ esc_html__( "Labels position", 'contact-form-plugin' ),
1342
+ esc_html__( "Labels align", 'contact-form-plugin' ),
1343
+ esc_html__( "Submit position", 'contact-form-plugin' ),
1344
+ esc_html__( "Add tooltips", 'contact-form-plugin' ),
1345
+ esc_html__( "Style options", 'contact-form-plugin' ) ); ?>
1346
  </strong>
1347
  </p>
1348
  </div>
1354
  <div id="<?php echo is_rtl() ? 'cntctfrm_right_table' : 'cntctfrm_left_table'; ?>">
1355
  <table class="form-table" style="width:auto;">
1356
  <tr valign="top">
1357
+ <th scope="row"><?php esc_html_e( "Form layout", 'contact-form-plugin' ); ?></th>
1358
  <td colspan="2">
1359
  <fieldset>
1360
  <input id="cntctfrm_layout_one_column" name="cntctfrm_layout" type="radio" value="1" <?php checked( (int) $this->options['layout'] === 1 ); ?> />
1361
+ <label for="cntctfrm_layout_one_column"><?php esc_html_e( 'One column', 'contact-form-plugin' ); ?></label>
1362
  <br/>
1363
  <input id="cntctfrm_layout_two_columns" name="cntctfrm_layout" type="radio" value="2" <?php checked( (int) $this->options['layout'] === 2 ); ?> />
1364
+ <label for="cntctfrm_layout_two_columns"><?php esc_html_e( 'Two columns', 'contact-form-plugin' ); ?></label>
1365
  </fieldset>
1366
  </td>
1367
  </tr>
1368
  <tr valign="top">
1369
+ <th scope="row"><?php esc_html_e( "Submit position", 'contact-form-plugin' ); ?></th>
1370
  <td colspan="2">
1371
  <fieldset>
1372
  <input id="cntctfrm_submit_position_left" name="cntctfrm_submit_position" type="radio" value="left" <?php checked( 'left', $this->options['submit_position'] ); ?> />
1373
+ <label for="cntctfrm_submit_position_left"><?php esc_html_e( 'Left', 'contact-form-plugin' ); ?></label>
1374
  <br/>
1375
  <input id="cntctfrm_submit_position_right" name="cntctfrm_submit_position" type="radio" value="right" <?php checked( 'right', $this->options['submit_position'] ); ?> />
1376
+ <label for="cntctfrm_submit_position_right"><?php esc_html_e( 'Right', 'contact-form-plugin' ); ?></label>
1377
  </fieldset>
1378
  </td>
1379
  </tr>
1380
  <tr valign="top" id="cntctfrm_width">
1381
+ <th scope="row"><?php esc_html_e( 'Width', 'contact-form-plugin' ); ?></th>
1382
  <td colspan="2">
1383
  <fieldset>
1384
  <label>
1385
+ <input type="radio" name="cntctfrm_width_type" value="default" <?php checked( 'default', $this->options['width']['type'] ); ?> /> <?php esc_html_e( 'Default', 'contact-form-plugin' ); ?>
1386
  </label>
1387
  <br />
1388
  <label>
1389
+ <input type="radio" name="cntctfrm_width_type" value="custom" <?php checked( 'custom', $this->options['width']['type'] ); ?> /> <?php esc_html_e( 'Custom', 'contact-form-plugin' ); ?>
1390
  </label>
1391
  </fieldset>
1392
  <div class="cntctfrm_width_params" <?php if ( 'custom' != $this->options['width']['type'] ) echo 'style="display: none;"'; ?>>
1393
  <input type="number" name="cntctfrm_input_width_value" value="<?php echo $this->options['width']['input_value']; ?>" min="1" max="9999" step="1">
1394
  <select name="cntctfrm_input_width_unit">
1395
  <option value="%" <?php selected( '%', $this->options['width']['input_unit'] ); ?>>%</option>
1396
+ <option value="px" <?php selected( 'px', $this->options['width']['input_unit'] ); ?>><?php esc_html_e( 'px', 'contact-form-plugin' ) ?></option>
1397
  </select>
1398
  </div>
1399
  </td>
1400
  </tr>
1401
  </table>
1402
+ <!-- pls -->
1403
  <?php if ( ! $this->hide_pro_tabs ) { ?>
1404
  <div class="bws_pro_version_bloc">
1405
  <div class="bws_pro_version_table_bloc">
1406
+ <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php esc_html_e( 'Close', 'contact-form-plugin' ); ?>"></button>
1407
  <div class="bws_table_bg"></div>
1408
  <table class="form-table bws_pro_version">
1409
  <tr valign="top">
1410
+ <th scope="row"><?php esc_html_e( "Form align", 'contact-form-plugin' ); ?></th>
1411
  <td colspan="2">
1412
  <fieldset>
1413
  <input disabled="disabled" name="cntctfrm_form_align" type="radio" value="left" checked="checked">
1414
+ <label for="cntctfrm_form_align_left"><?php esc_html_e( 'Left', 'contact-form-plugin' ); ?></label>
1415
  <br/>
1416
  <input disabled="disabled" name="cntctfrm_form_align" type="radio" value="center">
1417
+ <label for="cntctfrm_form_align_center"><?php esc_html_e( 'Center', 'contact-form-plugin' ); ?></label>
1418
  <br/>
1419
  <input disabled="disabled" name="cntctfrm_form_align" type="radio" value="right">
1420
+ <label for="cntctfrm_form_align_right"><?php esc_html_e( 'Right', 'contact-form-plugin' ); ?></label>
1421
  </fieldset>
1422
  </td>
1423
  </tr>
1424
  <tr valign="top">
1425
+ <th scope="row"><?php esc_html_e( "Labels position", 'contact-form-plugin' ); ?></th>
1426
  <td colspan="2">
1427
  <fieldset>
1428
  <input disabled="disabled" name="cntctfrm_labels_position" type="radio" value="top" checked="checked">
1429
+ <label for="cntctfrm_labels_position_top"><?php esc_html_e( 'Top', 'contact-form-plugin' ); ?></label>
1430
  <br/>
1431
  <input disabled="disabled" name="cntctfrm_labels_position" type="radio" value="left">
1432
+ <label for="cntctfrm_labels_position_left"><?php esc_html_e( 'Left', 'contact-form-plugin' ); ?></label>
1433
  <br/>
1434
  <input disabled="disabled" name="cntctfrm_labels_position" type="radio" value="right">
1435
+ <label for="cntctfrm_labels_position_right"><?php esc_html_e( 'Right', 'contact-form-plugin' ); ?></label>
1436
  <br/>
1437
  <input disabled="disabled" name="cntctfrm_labels_position" type="radio" value="bottom">
1438
+ <label for="cntctfrm_labels_position_bottom"><?php esc_html_e( 'Bottom', 'contact-form-plugin' ); ?></label>
1439
  </fieldset>
1440
  </td>
1441
  </tr>
1442
  <tr valign="top" id="cntctfrm_labels_align" class="cntctfrm_labels_align_show">
1443
+ <th scope="row"><?php esc_html_e( "Labels align", 'contact-form-plugin' ); ?></th>
1444
  <td colspan="2">
1445
  <fieldset>
1446
  <input disabled="disabled" name="cntctfrm_labels_align" type="radio" value="left" checked="checked">
1447
+ <label for="cntctfrm_labels_align_left"><?php esc_html_e( 'Left', 'contact-form-plugin' ); ?></label>
1448
  <br/>
1449
  <input disabled="disabled" name="cntctfrm_labels_align" type="radio" value="center">
1450
+ <label for="cntctfrm_labels_align_center"><?php esc_html_e( 'Center', 'contact-form-plugin' ); ?></label>
1451
  <br/>
1452
  <input disabled="disabled" name="cntctfrm_labels_align" type="radio" value="right">
1453
+ <label for="cntctfrm_labels_align_right"><?php esc_html_e( 'Right', 'contact-form-plugin' ); ?></label>
1454
  </fieldset>
1455
  </td>
1456
  </tr>
1457
  <tr valign="top">
1458
+ <th scope="row"><?php esc_html_e( "Errors output", 'contact-form-plugin' ); ?></th>
1459
  <td colspan="2">
1460
  <select name="cntctfrm_error_displaying" disabled='disabled' style="max-width:400px; width:100%;">
1461
+ <option value="labels"><?php esc_html_e( "Display error messages", 'contact-form-plugin' ); ?></option>
1462
+ <option value="input_colors"><?php esc_html_e( "Color of the input field errors.", 'contact-form-plugin' ); ?></option>
1463
+ <option value="both" selected="selected"><?php esc_html_e( "Display error messages & color of the input field errors", 'contact-form-plugin' ); ?></option>
1464
  </select>
1465
  </td>
1466
  </tr>
1467
  <tr valign="top">
1468
+ <th scope="row"><?php esc_html_e( "Add placeholder to the input blocks", 'contact-form-plugin' ); ?></th>
1469
  <td colspan="2">
1470
  <input disabled='disabled' type="checkbox" name="cntctfrm_placeholder" value="1" />
1471
  </td>
1472
  </tr>
1473
  <tr valign="top">
1474
+ <th scope="row"><?php esc_html_e( "Add tooltips", 'contact-form-plugin' ); ?></th>
1475
  <td colspan="2">
1476
  <div>
1477
  <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_name" value="1" />
1478
+ <label for="cntctfrm_tooltip_display_name"><?php esc_html_e( "Name", 'contact-form-plugin' ); ?></label>
1479
  </div>
1480
  <?php if ( '1' == $this->options['display_address_field'] ) { ?>
1481
  <div>
1482
  <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_address" value="1" />
1483
+ <label for="cntctfrm_tooltip_display_address"><?php esc_html_e( "Address", 'contact-form-plugin' ); ?></label>
1484
  </div>
1485
  <?php } ?>
1486
  <div>
1487
  <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_email" value="1" />
1488
+ <label for="cntctfrm_tooltip_display_email"><?php esc_html_e( "Email address", 'contact-form-plugin' ); ?></label>
1489
  </div>
1490
  <?php if ( '1' == $this->options['display_phone_field'] ) { ?>
1491
  <div>
1492
  <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_phone" value="1" />
1493
+ <label for="cntctfrm_tooltip_display_phone"><?php esc_html_e( "Phone Number", 'contact-form-plugin' ); ?></label>
1494
  </div>
1495
  <?php } ?>
1496
  <div>
1497
  <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_subject" value="1" />
1498
+ <label for="cntctfrm_tooltip_display_subject"><?php esc_html_e( "Subject", 'contact-form-plugin' ); ?></label>
1499
  </div>
1500
  <div>
1501
  <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_message" value="1" />
1502
+ <label for="cntctfrm_tooltip_display_message"><?php esc_html_e( "Message", 'contact-form-plugin' ); ?></label>
1503
  </div>
1504
  <?php if ( '1' == $this->options['attachment_explanations'] ) { ?>
1505
  <div>
1506
  <input disabled='disabled' type="checkbox" name="cntctfrm_tooltip_display_attachment" value="1" />
1507
+ <label for="cntctfrm_tooltip_display_attachment"><?php esc_html_e( "Attachment", 'contact-form-plugin' ); ?></label>
1508
  </div>
1509
  <?php } ?>
1510
  </td>
1512
  <tr valign="top">
1513
  <th colspan="3" scope="row">
1514
  <input disabled='disabled' type="checkbox" name="cntctfrm_style_options" value="1" checked="checked" />
1515
+ <?php esc_html_e( "Style options", 'contact-form-plugin' ); ?>
1516
  </th>
1517
  </tr>
1518
  <tr valign="top" class="cntctfrm_style_block">
1519
+ <th scope="row"><?php esc_html_e( "Text color", 'contact-form-plugin' ); ?></th>
1520
  <td colspan="2">
1521
  <div>
1522
  <div class="wp-picker-container">
1523
  <button type="button" class="button wp-color-result" disabled="disabled">
1524
+ <span class="wp-color-result-text"><?php esc_html_e( "Select Color", 'contact-form-plugin' ); ?></span>
1525
  </button>
1526
  </div>
1527
+ <div class="cntctfrm_label_block"><?php esc_html_e( 'Label text color', 'contact-form-plugin' ); ?></div>
1528
 
1529
  </div>
1530
  <div>
1531
  <div class="wp-picker-container">
1532
  <button type="button" class="button wp-color-result" disabled="disabled">
1533
+ <span class="wp-color-result-text"><?php esc_html_e( "Select Color", 'contact-form-plugin' ); ?></span>
1534
  </button>
1535
  </div>
1536
+ <div class="cntctfrm_label_block"><?php esc_html_e( "Placeholder color", 'contact-form-plugin' ); ?></div>
1537
  </div>
1538
  </td>
1539
  </tr>
1540
  <tr valign="top" class="cntctfrm_style_block">
1541
+ <th scope="row"><?php esc_html_e( "Errors color", 'contact-form-plugin' ); ?></th>
1542
  <td colspan="2">
1543
  <div>
1544
  <div class="wp-picker-container">
1545
  <button type="button" class="button wp-color-result" disabled="disabled">
1546
+ <span class="wp-color-result-text"><?php esc_html_e( "Select Color", 'contact-form-plugin' ); ?></span>
1547
  </button>
1548
  </div>
1549
+ <div class="cntctfrm_label_block"><?php esc_html_e( 'Error text color', 'contact-form-plugin' ); ?></div>
1550
  </div>
1551
  <div>
1552
  <div class="wp-picker-container">
1553
  <button type="button" class="button wp-color-result" disabled="disabled">
1554
+ <span class="wp-color-result-text"><?php esc_html_e( "Select Color", 'contact-form-plugin' ); ?></span>
1555
  </button>
1556
  </div>
1557
+ <div class="cntctfrm_label_block"><?php esc_html_e( 'Background color of the input field errors', 'contact-form-plugin' ); ?></div>
1558
  </div>
1559
  <div>
1560
  <div class="wp-picker-container">
1561
  <button type="button" class="button wp-color-result" disabled="disabled">
1562
+ <span class="wp-color-result-text"><?php esc_html_e( "Select Color", 'contact-form-plugin' ); ?></span>
1563
  </button>
1564
  </div>
1565
+ <div class="cntctfrm_label_block"><?php esc_html_e( 'Border color of the input field errors', 'contact-form-plugin' ); ?></div>
1566
  </div>
1567
  <div>
1568
  <div class="wp-picker-container">
1569
  <button type="button" class="button wp-color-result" disabled="disabled">
1570
+ <span class="wp-color-result-text"><?php esc_html_e( "Select Color", 'contact-form-plugin' ); ?></span>
1571
  </button>
1572
  </div>
1573
+ <div class="cntctfrm_label_block"><?php esc_html_e( "Placeholder color of the input field errors", 'contact-form-plugin' ); ?></div>
1574
  </div>
1575
  </td>
1576
  </tr>
1577
  <tr valign="top" class="cntctfrm_style_block">
1578
+ <th scope="row"><?php esc_html_e( "Input fields", 'contact-form-plugin' ); ?></th>
1579
  <td colspan="2">
1580
  <div>
1581
  <div class="wp-picker-container">
1582
  <button type="button" class="button wp-color-result" disabled="disabled">
1583
+ <span class="wp-color-result-text"><?php esc_html_e( "Select Color", 'contact-form-plugin' ); ?></span>
1584
  </button>
1585
  </div>
1586
+ <div class="cntctfrm_label_block"><?php esc_html_e( "Input fields background color", 'contact-form-plugin' ); ?></div>
1587
  </div>
1588
  <div>
1589
  <div class="wp-picker-container">
1590
  <button type="button" class="button wp-color-result" disabled="disabled">
1591
+ <span class="wp-color-result-text"><?php esc_html_e( "Select Color", 'contact-form-plugin' ); ?></span>
1592
  </button>
1593
  </div>
1594
+ <div class="cntctfrm_label_block"><?php esc_html_e( "Text fields color", 'contact-form-plugin' ); ?></div>
1595
  </div>
1596
  <div>
1597
  <input disabled='disabled' size="8" type="text" value="" name="cntctfrm_border_input_width" /><br />
1598
+ <div class="cntctfrm_label_block"><?php esc_html_e( 'Border width in px, numbers only', 'contact-form-plugin' ); ?></div>
1599
  </div>
1600
  <div>
1601
  <div class="wp-picker-container">
1602
  <button type="button" class="button wp-color-result" disabled="disabled">
1603
+ <span class="wp-color-result-text"><?php esc_html_e( "Select Color", 'contact-form-plugin' ); ?></span>
1604
  </button>
1605
  </div>
1606
+ <div class="cntctfrm_label_block"><?php esc_html_e( 'Border color', 'contact-form-plugin' ); ?></div>
1607
  </div>
1608
  </td>
1609
  </tr>
1610
  <tr valign="top" class="cntctfrm_style_block">
1611
+ <th scope="row"><?php esc_html_e( "Submit button", 'contact-form-plugin' ); ?></th>
1612
  <td colspan="2">
1613
  <div>
1614
  <input disabled='disabled' size="8" type="text" value="" name="cntctfrm_button_width" /><br />
1615
+ <div class="cntctfrm_label_block"><?php esc_html_e( 'Width in px, numbers only', 'contact-form-plugin' ); ?></div>
1616
  </div>
1617
  <div>
1618
  <div class="wp-picker-container">
1619
  <button type="button" class="button wp-color-result" disabled="disabled">
1620
+ <span class="wp-color-result-text"><?php esc_html_e( "Select Color", 'contact-form-plugin' ); ?></span>
1621
  </button>
1622
  </div>
1623
+ <div class="cntctfrm_label_block"><?php esc_html_e( 'Button color', 'contact-form-plugin' ); ?></div>
1624
  </div>
1625
  <div>
1626
  <div class="wp-picker-container">
1627
  <button type="button" class="button wp-color-result" disabled="disabled">
1628
+ <span class="wp-color-result-text"><?php esc_html_e( "Select Color", 'contact-form-plugin' ); ?></span>
1629
  </button>
1630
  </div>
1631
+ <div class="cntctfrm_label_block"><?php esc_html_e( "Button text color", 'contact-form-plugin' ); ?></div>
1632
  </div>
1633
  <div>
1634
  <div class="wp-picker-container">
1635
  <button type="button" class="button wp-color-result" disabled="disabled">
1636
+ <span class="wp-color-result-text"><?php esc_html_e( "Select Color", 'contact-form-plugin' ); ?></span>
1637
  </button>
1638
  </div>
1639
+ <div class="cntctfrm_label_block"><?php esc_html_e( 'Border color', 'contact-form-plugin' ); ?></div>
1640
  </div>
1641
  </td>
1642
  </tr>
1643
  </table>
1644
  </div>
1645
+ <?php $this->bws_pro_block_links(); ?>
 
 
 
 
 
1646
  </div>
1647
  <?php } ?>
1648
+ <!-- end pls -->
1649
  </div>
1650
+ <!-- pls -->
1651
+ <?php if ( $this->hide_pro_tabs ) { ?>
1652
  <div class="clear"></div>
1653
  <?php } ?>
1654
+ <!-- end pls -->
1655
  <div id="<?php echo is_rtl() ? 'cntctfrm_left_table' : 'cntctfrm_right_table' ?>">
1656
+ <h3><?php esc_html_e( 'Contact Form | Preview', 'contact-form-plugin' ); ?></h3>
1657
+ <span class="bws_info"><?php esc_html_e( 'Drag the necessary field to sort fields.', 'contact-form-plugin' ); ?></span>
1658
  <?php $classes = ( $this->options['layout'] === 1 ) ? ' cntctfrm_one_column' : ' cntctfrm_two_columns';
1659
  $classes .= is_rtl() ? ' cntctfrm_rtl' : ' cntctfrm_ltr';
1660
  $classes .= ( 'custom' != $this->options['width']['type'] ) ? ' cntctfrm_width_default' : ' cntctfrm_width_custom';
1673
  $column = ( $i == 1 ) ? 'first_column' : 'second_column'; ?>
1674
  <ul id="cntctfrm_<?php echo $column; ?>" class="cntctfrm_column" <?php if ( $i == 2 && $this->options['layout'] === 1 ) echo 'style="display: none;"'; ?>>
1675
  <?php foreach ( $cntctfrm_ordered_fields[ $column ] as $cntctfrm_field ) {
1676
+ switch ( $cntctfrm_field ) {
1677
  case 'cntctfrm_contact_name':
1678
  if ( 1 == $this->options['display_name_field'] ) { ?>
1679
  <li class="cntctfrm_field_wrap">
1730
  </li>
1731
  <?php }
1732
  break;
1733
+ case 'cntctfrm_contact_subject':
1734
+ if ( isset( $this->options['visible_subject'] ) && 1 == $this->options['visible_subject'] ) { ?>
1735
+ <li class="cntctfrm_field_wrap">
1736
+ <div class="cntctfrm_label cntctfrm_label_subject">
1737
+ <label for="cntctfrm_contact_subject"><?php echo $this->options['subject_label']['default']; if ( 1 == $this->options['required_subject_field'] ) echo '<span class="required"> ' . $this->options['required_symbol'] . '</span>'; ?></label>
1738
+ </div>
1739
+ <div class="cntctfrm_error_text hidden"><?php echo $this->options['subject_error']['default']; ?></div>
1740
+ <div class="cntctfrm_input cntctfrm_input_subject">
1741
+ <div class="cntctfrm_drag_wrap"></div>
1742
+ <input class="text bws_no_bind_notice" type="text" size="40" value="" name="cntctfrm_contact_subject" id="cntctfrm_contact_subject" />
1743
+ </div>
1744
+ </li>
1745
+ <?php } break;
1746
+ case 'cntctfrm_contact_message':
1747
+ if ( isset( $this->options['visible_message'] ) && 1 == $this->options['visible_message'] ) { ?>
1748
+ <li class="cntctfrm_field_wrap">
1749
  <div class="cntctfrm_label cntctfrm_label_message">
1750
  <label for="cntctfrm_contact_message"><?php echo $this->options['message_label']['default']; if ( 1 == $this->options['required_message_field'] ) echo '<span class="required"> ' . $this->options['required_symbol'] . '</span>'; ?></label>
1751
  </div>
1754
  <div class="cntctfrm_drag_wrap"></div>
1755
  <textarea class="bws_no_bind_notice" rows="5" cols="30" name="cntctfrm_contact_message" id="cntctfrm_contact_message"></textarea>
1756
  </div>
1757
+ </li>
1758
+ <?php } break;
1759
  case 'cntctfrm_contact_attachment':
1760
  if ( 1 == $this->options['attachment'] ) { ?>
1761
  <li class="cntctfrm_field_wrap">
1903
  public function display_metabox() { ?>
1904
  <div class="postbox">
1905
  <h3 class="hndle">
1906
+ <?php esc_html_e( 'Contact Form Shortcode', 'contact-form-plugin' ); ?>
1907
  </h3>
1908
  <div class="inside">
1909
+ <?php esc_html_e( "Add Contact Form to your page or post using the following shortcode:", 'contact-form-plugin' );
1910
+ $id_form = $this->cfmlt_is_active ? ' id='. $GLOBALS['cntctfrmmlt_id_form'] : '';
1911
  bws_shortcode_output( "[bestwebsoft_contact_form". $id_form . "]");?>
1912
  </div>
1913
  </div>
1914
  <?php }
1915
  }
1916
+ } ?>
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: 2021-01-21 15:44+0200\n"
6
- "PO-Revision-Date: 2021-01-21 15:44+0200\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"
@@ -12,93 +12,90 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
14
  "%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
15
- "X-Generator: Poedit 2.4.2\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-KeywordsList: __;_e\n"
18
  "X-Poedit-Basepath: ..\n"
19
  "X-Textdomain-Support: yes\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: bws_menu\n"
22
 
23
  # @ contact_form
24
- #: contact_form.php:39 contact_form.php:48 contact_form.php:825
25
- #: includes/class-cntctfrm-settings.php:426
26
  msgid "Contact Form Settings"
27
  msgstr "Настройки Contact Form"
28
 
29
  # @ contact_form
30
- #: contact_form.php:49 contact_form.php:1854 contact_form.php:1868
31
- #: includes/class-cntctfrm-settings.php:25
32
  msgid "Settings"
33
  msgstr "Настройки"
34
 
35
- #: contact_form.php:71 includes/class-cntctfrm-settings.php:484
36
- #: includes/class-cntctfrm-settings.php:938
37
- #: includes/class-cntctfrm-settings.php:1095
38
- #: includes/class-cntctfrm-settings.php:1621
39
  msgid "Upgrade to Pro"
40
  msgstr "Обновиться до Pro"
41
 
42
  # @ contact_form
43
- #: contact_form.php:524 contact_form.php:1629 contact_form.php:1675
44
- #: includes/class-cntctfrm-settings.php:574
45
- #: includes/class-cntctfrm-settings.php:667
46
- #: includes/class-cntctfrm-settings.php:1165
47
- #: includes/class-cntctfrm-settings.php:1205
48
- #: includes/class-cntctfrm-settings.php:1452
49
  msgid "Name"
50
  msgstr "Имя"
51
 
52
  # @ contact_form
53
- #: contact_form.php:525 contact_form.php:1636 contact_form.php:1681
54
- #: includes/class-cntctfrm-settings.php:714
55
- #: includes/class-cntctfrm-settings.php:1166
56
- #: includes/class-cntctfrm-settings.php:1206
57
- #: includes/class-cntctfrm-settings.php:1457
58
  msgid "Address"
59
  msgstr "Адрес"
60
 
61
  # @ contact_form
62
- #: contact_form.php:526 includes/class-cntctfrm-settings.php:731
63
- #: includes/class-cntctfrm-settings.php:1167
64
- #: includes/class-cntctfrm-settings.php:1207
65
  msgid "Email Address"
66
  msgstr "Email адрес"
67
 
68
  # @ contact_form
69
- #: contact_form.php:527 includes/class-cntctfrm-settings.php:756
70
- #: includes/class-cntctfrm-settings.php:1168
71
- #: includes/class-cntctfrm-settings.php:1208
72
  msgid "Phone number"
73
  msgstr "Телефон"
74
 
75
  # @ contact_form
76
- #: contact_form.php:528 contact_form.php:1647 contact_form.php:1690
77
- #: includes/class-cntctfrm-settings.php:775
78
- #: includes/class-cntctfrm-settings.php:1169
79
- #: includes/class-cntctfrm-settings.php:1209
80
- #: includes/class-cntctfrm-settings.php:1472
81
  msgid "Subject"
82
  msgstr "Тема"
83
 
84
  # @ contact_form
85
- #: contact_form.php:529 contact_form.php:1652 contact_form.php:1694
86
- #: includes/class-cntctfrm-settings.php:806
87
- #: includes/class-cntctfrm-settings.php:1170
88
- #: includes/class-cntctfrm-settings.php:1210
89
- #: includes/class-cntctfrm-settings.php:1476
90
  msgid "Message"
91
  msgstr "Сообщение"
92
 
93
  # @ contact_form
94
- #: contact_form.php:530 includes/class-cntctfrm-settings.php:1171
95
- #: includes/class-cntctfrm-settings.php:1211
96
- #: includes/class-cntctfrm-settings.php:1481
97
  msgid "Attachment"
98
  msgstr "Прикрепить файл"
99
 
100
  # @ contact_form
101
- #: contact_form.php:531
102
  msgid ""
103
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
104
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -107,101 +104,101 @@ msgstr ""
107
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
108
 
109
  # @ contact_form
110
- #: contact_form.php:532 includes/class-cntctfrm-settings.php:1173
111
- #: includes/class-cntctfrm-settings.php:1213
112
  msgid "Send me a copy"
113
  msgstr "Отправить мне копию"
114
 
115
- #: contact_form.php:533 includes/class-cntctfrm-settings.php:1174
116
- #: includes/class-cntctfrm-settings.php:1214
117
  msgid "I consent to having this site collect my personal data."
118
  msgstr "Я разрешаю этому сайту собирать мои личные данные."
119
 
120
  # @ contact_form
121
- #: contact_form.php:534 contact_form.php:1946
122
- #: includes/class-cntctfrm-settings.php:1175
123
- #: includes/class-cntctfrm-settings.php:1215
124
  msgid "Learn more"
125
  msgstr "Подробнее"
126
 
127
  # @ contact_form
128
- #: contact_form.php:535 includes/class-cntctfrm-settings.php:1176
129
- #: includes/class-cntctfrm-settings.php:1216
130
  msgid "Submit"
131
  msgstr "Отправить"
132
 
133
  # @ contact_form
134
- #: contact_form.php:536
135
  msgid "Your name is required."
136
  msgstr "Поле Имя - это обязательное поле для заполнения."
137
 
138
  # @ contact_form
139
- #: contact_form.php:537
140
  msgid "Address is required."
141
  msgstr "Поле Адрес - это обязательное поле для заполнения."
142
 
143
  # @ contact_form
144
- #: contact_form.php:538
145
  msgid "A valid email address is required."
146
  msgstr "Укажите корректный email - адрес."
147
 
148
  # @ contact_form
149
- #: contact_form.php:539
150
  msgid "Phone number is required."
151
  msgstr "Поле Телефон - это обязательное поле для заполнения."
152
 
153
  # @ contact_form
154
- #: contact_form.php:540
155
  msgid "Subject is required."
156
  msgstr "Поле Тема - это обязательное поле для заполнения."
157
 
158
  # @ contact_form
159
- #: contact_form.php:541
160
  msgid "Message text is required."
161
  msgstr "Поле Сообщение - это обязательное поле для заполнения."
162
 
163
  # @ contact_form
164
- #: contact_form.php:542
165
  msgid "File format is not valid."
166
  msgstr "Прикрепленный тип файла не поддерживается."
167
 
168
  # @ contact_form
169
- #: contact_form.php:543
170
  msgid "File upload error."
171
  msgstr "Ошибка при загрузке файла."
172
 
173
  # @ contact_form
174
- #: contact_form.php:544
175
  msgid "The file could not be uploaded."
176
  msgstr "Невозможно загрузить файл."
177
 
178
  # @ contact_form
179
- #: contact_form.php:545
180
  msgid "This file is too large."
181
  msgstr "Размер файла слишком большой."
182
 
183
  # @ contact_form
184
- #: contact_form.php:546
185
  msgid "Please fill out the CAPTCHA."
186
  msgstr "Пожалуйста, заполните CAPTCHA."
187
 
188
  # @ contact_form
189
- #: contact_form.php:547
190
  msgid "Please make corrections below and try again."
191
  msgstr ""
192
  "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
193
 
194
  # @ contact_form
195
- #: contact_form.php:549
196
  msgid "Thank you for contacting us."
197
  msgstr "Спасибо, что связались с нами."
198
 
199
- #: contact_form.php:829
200
  msgid "NEW_FORM"
201
  msgstr "НОВАЯ_ФОРМА"
202
 
203
  # @ contact_form
204
- #: contact_form.php:830
205
  msgid ""
206
  "If you want to create multiple contact forms, please install the Contact "
207
  "Form Multi plugin."
@@ -209,7 +206,7 @@ msgstr ""
209
  "Если вы хотите создать несколько разных контактных форм, пожалуйста, "
210
  "установите плагин Contact Form Multi."
211
 
212
- #: contact_form.php:835
213
  msgid ""
214
  "Contact Form plugin doesn't support your current version of Contact Form "
215
  "Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
@@ -220,57 +217,57 @@ msgstr ""
220
  "выше."
221
 
222
  # @ contact_form
223
- #: contact_form.php:937
224
  msgid "Sorry, email message could not be delivered."
225
  msgstr "Извините, ваш email не может быть отправлен."
226
 
227
  # @ contact_form
228
- #: contact_form.php:1585 contact_form.php:1587
229
  msgid "Sent from (ip address)"
230
  msgstr "Отправлено от (IP адрес)"
231
 
232
  # @ contact_form
233
- #: contact_form.php:1591 contact_form.php:1593
234
- #: includes/class-cntctfrm-settings.php:1122
235
  msgid "Date/Time"
236
  msgstr "Дата/Время"
237
 
238
  # @ contact_form
239
- #: contact_form.php:1597 contact_form.php:1599
240
- #: includes/class-cntctfrm-settings.php:1123
241
  msgid "Sent from (referer)"
242
  msgstr "Отправлено от (referer)"
243
 
244
  # @ contact_form
245
- #: contact_form.php:1603 contact_form.php:1605
246
- #: includes/class-cntctfrm-settings.php:1124
247
  msgid "Using (user agent)"
248
  msgstr "Используя (user agent)"
249
 
250
  # @ contact_form
251
- #: contact_form.php:1615
252
  msgid "Contact from"
253
  msgstr "Контакт из"
254
 
255
  # @ contact_form
256
- #: contact_form.php:1620 contact_form.php:1669
257
  msgid "Site"
258
  msgstr "Сайт"
259
 
260
  # @ contact_form
261
- #: contact_form.php:1642 contact_form.php:1686
262
- #: includes/class-cntctfrm-settings.php:598
263
  msgid "Email"
264
  msgstr "Email"
265
 
266
  # @ contact_form
267
- #: contact_form.php:1658 contact_form.php:1699
268
- #: includes/class-cntctfrm-settings.php:1467
269
  msgid "Phone Number"
270
  msgstr "Телефон"
271
 
272
  # @ contact_form
273
- #: contact_form.php:1797
274
  msgid ""
275
  "If you can see this MIME, it means that the MIME type is not supported by "
276
  "your email client!"
@@ -279,26 +276,26 @@ msgstr ""
279
  "MIME тип!"
280
 
281
  # @ contact_form
282
- #: contact_form.php:1869
283
  msgid "FAQ"
284
  msgstr "FAQ"
285
 
286
  # @ contact_form
287
- #: contact_form.php:1870
288
  msgid "Support"
289
  msgstr "Поддержка"
290
 
291
  # @ contact_form
292
- #: contact_form.php:1919
293
  msgid "Are you sure that you want to delete this language data?"
294
  msgstr "Вы действительно хотите удалить данные для этого языка?"
295
 
296
  # @ contact_form
297
- #: contact_form.php:1941
298
  msgid "Add multiple forms"
299
  msgstr "Добавить несколько форм"
300
 
301
- #: contact_form.php:1941
302
  msgid ""
303
  "Install Contact Form Multi plugin to create unlimited number of contact "
304
  "forms."
@@ -306,103 +303,103 @@ msgstr ""
306
  "Установить плагин Contact Form Multi для создания неограниченного количества "
307
  "контактных форм."
308
 
309
- #: contact_form.php:1950 includes/class-cntctfrm-settings.php:470
310
- #: includes/class-cntctfrm-settings.php:876
311
- #: includes/class-cntctfrm-settings.php:1084
312
- #: includes/class-cntctfrm-settings.php:1380
313
  msgid "Close"
314
  msgstr "Закрыть"
315
 
316
- #: contact_form.php:2004
317
  msgid "Error"
318
  msgstr "Ошибка"
319
 
320
- #: contact_form.php:2004 contact_form.php:2006
321
  msgid "Illegal language code"
322
  msgstr "Нелегальный языковой код"
323
 
324
  # @ contact_form
325
- #: contact_form.php:2040 contact_form.php:2042
326
- #: includes/class-cntctfrm-settings.php:1191
327
- #: includes/class-cntctfrm-settings.php:1193
328
- #: includes/class-cntctfrm-settings.php:1231
329
- #: includes/class-cntctfrm-settings.php:1233
330
- #: includes/class-cntctfrm-settings.php:1267
331
- #: includes/class-cntctfrm-settings.php:1269
332
- #: includes/class-cntctfrm-settings.php:1281
333
- #: includes/class-cntctfrm-settings.php:1283
334
  msgid "Use shortcode"
335
  msgstr "Используйте шорткод"
336
 
337
  # @ contact_form
338
- #: contact_form.php:2040 contact_form.php:2042
339
- #: includes/class-cntctfrm-settings.php:1191
340
- #: includes/class-cntctfrm-settings.php:1193
341
- #: includes/class-cntctfrm-settings.php:1231
342
- #: includes/class-cntctfrm-settings.php:1233
343
- #: includes/class-cntctfrm-settings.php:1267
344
- #: includes/class-cntctfrm-settings.php:1269
345
- #: includes/class-cntctfrm-settings.php:1281
346
- #: includes/class-cntctfrm-settings.php:1283
347
  msgid "for this language"
348
  msgstr "для данного языка"
349
 
350
- #: contact_form.php:2187
351
  msgid "Close notice"
352
  msgstr "Закрыть"
353
 
354
  # @ contact_form
355
- #: contact_form.php:2192
356
  msgid "allows to store your messages to the database."
357
  msgstr "позволяет хранить ваши сообщения в базе данных."
358
 
359
  # @ contact_form
360
- #: contact_form.php:2193
361
  msgid "Manage messages that have been sent from your website."
362
  msgstr "Управление сообщениями, которые были отправлены с вашего сайта."
363
 
364
  # @ contact_form
365
- #: contact_form.php:2196
366
  msgid "Learn More"
367
  msgstr "Подробнее"
368
 
369
  # @ contact_form
370
- #: contact_form.php:2256
371
  msgid "Contact form"
372
  msgstr "Контактная форма"
373
 
374
  # @ contact_form
375
- #: contact_form.php:2269 contact_form.php:2279
376
  msgid "Language"
377
  msgstr "Язык"
378
 
379
- #: includes/class-cntctfrm-settings.php:26
380
- #: includes/class-cntctfrm-settings.php:546
381
  msgid "Additional Settings"
382
  msgstr "Дополнительные настройки"
383
 
384
- #: includes/class-cntctfrm-settings.php:27
385
- #: includes/class-cntctfrm-settings.php:1306
386
  msgid "Appearance"
387
  msgstr "Отображение"
388
 
389
- #: includes/class-cntctfrm-settings.php:28
390
  msgid "Misc"
391
  msgstr "Разное"
392
 
393
- #: includes/class-cntctfrm-settings.php:29
394
  msgid "Custom Code"
395
  msgstr "Пользовательский код"
396
 
397
- #: includes/class-cntctfrm-settings.php:30
398
  msgid "License Key"
399
  msgstr "Лицензионный ключ"
400
 
401
- #: includes/class-cntctfrm-settings.php:96
402
  msgid "Please enable JavaScript in your browser."
403
  msgstr "Пожалуйста, включите JavaScript в вашем браузере."
404
 
405
- #: includes/class-cntctfrm-settings.php:98
406
  #, php-format
407
  msgid ""
408
  "Contact Form plugin requires PHP %s or higher. Please contact your hosting "
@@ -411,7 +408,7 @@ msgstr ""
411
  "Для плагина Contact Form требуется PHP % s или выше. Пожалуйста, свяжитесь с "
412
  "вашим хостинг-провайдером, чтобы обновить версию PHP."
413
 
414
- #: includes/class-cntctfrm-settings.php:348
415
  msgid ""
416
  "Email 'FROM' field option was changed, which may cause email messages being "
417
  "moved to the spam folder or email delivery failures."
@@ -420,7 +417,7 @@ msgstr ""
420
  "что письма будут попадать в спам или не будут доставлены."
421
 
422
  # @ contact_form
423
- #: includes/class-cntctfrm-settings.php:358
424
  msgid ""
425
  "If the 'Redirect to page' option is selected then the URL field should be in "
426
  "the following format"
@@ -429,33 +426,33 @@ msgstr ""
429
  "в следующем формате"
430
 
431
  # @ contact_form
432
- #: includes/class-cntctfrm-settings.php:365
433
  msgid "Such user does not exist."
434
  msgstr "Данный пользователь не найден."
435
 
436
  # @ contact_form
437
- #: includes/class-cntctfrm-settings.php:375
438
  msgid ""
439
  "Please enter a valid email address in the 'Use this email address' field."
440
  msgstr "Пожалуйста, введите корректный email в поле 'Использовать этот email'."
441
 
442
  # @ contact_form
443
- #: includes/class-cntctfrm-settings.php:383
444
  msgid "Please enter a valid email address in the 'FROM' field."
445
  msgstr "Пожалуйста, введите корректный email для поля \"От\"."
446
 
447
  # @ contact_form
448
- #: includes/class-cntctfrm-settings.php:403
449
  msgid "Settings saved."
450
  msgstr "Настройки сохранены."
451
 
452
  # @ contact_form
453
- #: includes/class-cntctfrm-settings.php:405
454
  msgid "Settings are not saved."
455
  msgstr "Настройки не сохранены."
456
 
457
  # @ contact_form
458
- #: includes/class-cntctfrm-settings.php:430
459
  msgid ""
460
  "If you leave the fields empty, the messages will be sent to the email "
461
  "address specified during registration."
@@ -464,17 +461,17 @@ msgstr ""
464
  "email, который был указан при регистрации сайта."
465
 
466
  # @ contact_form
467
- #: includes/class-cntctfrm-settings.php:433
468
  msgid "The user's email address"
469
  msgstr "Email пользователя сайта"
470
 
471
  # @ contact_form
472
- #: includes/class-cntctfrm-settings.php:438
473
  msgid "Select a username"
474
  msgstr "Выберите имя пользователя"
475
 
476
  # @ contact_form
477
- #: includes/class-cntctfrm-settings.php:451
478
  msgid ""
479
  "Select a username of the person who should get the messages from the contact "
480
  "form."
@@ -483,98 +480,98 @@ msgstr ""
483
  "формы."
484
 
485
  # @ contact_form
486
- #: includes/class-cntctfrm-settings.php:456
487
  msgid "Use this email address"
488
  msgstr "Использовать этот email"
489
 
490
  # @ contact_form
491
- #: includes/class-cntctfrm-settings.php:461
492
  msgid "Enter the email address for receiving messages"
493
  msgstr "Укажите email, на который будут отправляться сообщения"
494
 
495
  # @ contact_form
496
- #: includes/class-cntctfrm-settings.php:474
497
  msgid "Add department selectbox to the contact form"
498
  msgstr "Добавить выбор отдела в контактную форму"
499
 
500
  # @ contact_form
501
- #: includes/class-cntctfrm-settings.php:493
502
  msgid "Save emails to the database"
503
  msgstr "Сохранять email в базу данных"
504
 
505
  # @ contact_form
506
- #: includes/class-cntctfrm-settings.php:504
507
- #: includes/class-cntctfrm-settings.php:518
508
- #: includes/class-cntctfrm-settings.php:525
509
  msgid "Using"
510
  msgstr "Используя"
511
 
512
- #: includes/class-cntctfrm-settings.php:510
513
- #: includes/class-cntctfrm-settings.php:986
514
- #: includes/class-cntctfrm-settings.php:1027
515
- #: includes/class-cntctfrm-settings.php:1062
516
  msgid "Please activate the appropriate option on"
517
  msgstr "Пожалуйста, активируйте соответствующую опцию на странице настроек"
518
 
519
  # @ contact_form
520
- #: includes/class-cntctfrm-settings.php:513
521
- #: includes/class-cntctfrm-settings.php:989
522
- #: includes/class-cntctfrm-settings.php:1030
523
- #: includes/class-cntctfrm-settings.php:1065
524
  msgid "settings page"
525
  msgstr "страница настройки"
526
 
527
  # @ contact_form
528
- #: includes/class-cntctfrm-settings.php:519
529
- #: includes/class-cntctfrm-settings.php:996
530
- #: includes/class-cntctfrm-settings.php:1038
531
- #: includes/class-cntctfrm-settings.php:1072
532
  msgid "Activate"
533
  msgstr "Активировать"
534
 
535
  # @ contact_form
536
- #: includes/class-cntctfrm-settings.php:526
537
- #: includes/class-cntctfrm-settings.php:1005
538
- #: includes/class-cntctfrm-settings.php:1044
539
- #: includes/class-cntctfrm-settings.php:1077
540
  msgid "Download"
541
  msgstr "Скачать"
542
 
543
- #: includes/class-cntctfrm-settings.php:551
544
  msgid "Sending method"
545
  msgstr "Метод отправки"
546
 
547
  # @ contact_form
548
- #: includes/class-cntctfrm-settings.php:556
549
  msgid "Wp-mail"
550
  msgstr "Wp-mail"
551
 
552
  # @ contact_form
553
- #: includes/class-cntctfrm-settings.php:557
554
  msgid "You can use the Wordpress wp_mail function for mailing"
555
  msgstr "Для отправки почты вы можете использовать Wordpress функцию wp_mail"
556
 
557
  # @ contact_form
558
- #: includes/class-cntctfrm-settings.php:562
559
  msgid "Mail"
560
  msgstr "Mail"
561
 
562
  # @ contact_form
563
- #: includes/class-cntctfrm-settings.php:563
564
  msgid "You can use the PHP mail function for mailing"
565
  msgstr "Для отправки почты вы можете использовать PHP функцию mail"
566
 
567
- #: includes/class-cntctfrm-settings.php:569
568
  msgid "'FROM' field"
569
  msgstr "Поле \"От\""
570
 
571
  # @ contact_form
572
- #: includes/class-cntctfrm-settings.php:585
573
  msgid "User name"
574
  msgstr "Имя пользователя"
575
 
576
  # @ contact_form
577
- #: includes/class-cntctfrm-settings.php:587
578
  msgid ""
579
  "The name of the user who fills the form will be used in the field 'From'."
580
  msgstr ""
@@ -582,12 +579,12 @@ msgstr ""
582
  "заполняет форму."
583
 
584
  # @ contact_form
585
- #: includes/class-cntctfrm-settings.php:609
586
  msgid "User email"
587
  msgstr "Email пользователя"
588
 
589
  # @ contact_form
590
- #: includes/class-cntctfrm-settings.php:611
591
  msgid ""
592
  "The email address of the user who fills the form will be used in the field "
593
  "'From'."
@@ -595,7 +592,7 @@ msgstr ""
595
  "В поле \"От\" в письме будет использоваться email того пользователя, который "
596
  "заполняет форму."
597
 
598
- #: includes/class-cntctfrm-settings.php:620
599
  msgid ""
600
  "If this option is changed, email messages may be moved to the spam folder or "
601
  "email delivery failures may occur."
@@ -604,85 +601,85 @@ msgstr ""
604
  "будут попадать в спам или не будут доставлены."
605
 
606
  # @ contact_form
607
- #: includes/class-cntctfrm-settings.php:629
608
  msgid "Required symbol"
609
  msgstr "Символ, отображающий обязательное поле"
610
 
611
  # @ contact_form
612
- #: includes/class-cntctfrm-settings.php:639
613
  msgid "Fields"
614
  msgstr "Поля"
615
 
616
  # @ contact_form
617
- #: includes/class-cntctfrm-settings.php:640
618
- #: includes/class-cntctfrm-settings.php:655
619
- #: includes/class-cntctfrm-settings.php:670
620
- #: includes/class-cntctfrm-settings.php:697
621
- #: includes/class-cntctfrm-settings.php:717
622
- #: includes/class-cntctfrm-settings.php:734
623
- #: includes/class-cntctfrm-settings.php:759
624
- #: includes/class-cntctfrm-settings.php:779
625
- #: includes/class-cntctfrm-settings.php:810
626
- #: includes/class-cntctfrm-settings.php:845
627
- #: includes/class-cntctfrm-settings.php:884
628
  msgid "Used"
629
  msgstr "Используется"
630
 
631
  # @ contact_form
632
- #: includes/class-cntctfrm-settings.php:641
633
- #: includes/class-cntctfrm-settings.php:659
634
- #: includes/class-cntctfrm-settings.php:674
635
- #: includes/class-cntctfrm-settings.php:701
636
- #: includes/class-cntctfrm-settings.php:721
637
- #: includes/class-cntctfrm-settings.php:738
638
- #: includes/class-cntctfrm-settings.php:763
639
- #: includes/class-cntctfrm-settings.php:786
640
- #: includes/class-cntctfrm-settings.php:817
641
- #: includes/class-cntctfrm-settings.php:885
642
  msgid "Required"
643
  msgstr "Обязательное"
644
 
645
  # @ contact_form
646
- #: includes/class-cntctfrm-settings.php:643
647
- #: includes/class-cntctfrm-settings.php:679
648
- #: includes/class-cntctfrm-settings.php:742
649
- #: includes/class-cntctfrm-settings.php:791
650
- #: includes/class-cntctfrm-settings.php:822
651
- #: includes/class-cntctfrm-settings.php:886
652
  msgid "Visible"
653
  msgstr "Видимое"
654
 
655
  # @ contact_form
656
- #: includes/class-cntctfrm-settings.php:644
657
- #: includes/class-cntctfrm-settings.php:683
658
- #: includes/class-cntctfrm-settings.php:746
659
- #: includes/class-cntctfrm-settings.php:795
660
- #: includes/class-cntctfrm-settings.php:826
661
- #: includes/class-cntctfrm-settings.php:887
662
  msgid "Disabled for editing"
663
  msgstr "Нет возможности редактировать"
664
 
665
  # @ contact_form
666
- #: includes/class-cntctfrm-settings.php:645
667
- #: includes/class-cntctfrm-settings.php:707
668
- #: includes/class-cntctfrm-settings.php:799
669
- #: includes/class-cntctfrm-settings.php:830
670
  msgid "Field's default value"
671
  msgstr "Значение полей по умолчанию"
672
 
673
  # @ contact_form
674
- #: includes/class-cntctfrm-settings.php:652
675
  msgid "Department selectbox"
676
  msgstr "Список отделов"
677
 
678
- #: includes/class-cntctfrm-settings.php:687
679
  msgid "Use User's name as a default value if the user is logged in."
680
  msgstr ""
681
  "Использовать имя Пользователя как значение по умолчанию, если пользователь "
682
  "залогинен."
683
 
684
- #: includes/class-cntctfrm-settings.php:688
685
- #: includes/class-cntctfrm-settings.php:751
686
  msgid ""
687
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
688
  "in users."
@@ -691,17 +688,17 @@ msgstr ""
691
  "к залогиненным пользователям."
692
 
693
  # @ contact_form
694
- #: includes/class-cntctfrm-settings.php:694
695
  msgid "Location selectbox"
696
  msgstr "Список местоположений"
697
 
698
- #: includes/class-cntctfrm-settings.php:750
699
  msgid "Use User's email as a default value if the user is logged in."
700
  msgstr ""
701
  "Использовать Email Пользователя как значение по умолчанию, если пользователь "
702
  "залогинен."
703
 
704
- #: includes/class-cntctfrm-settings.php:770
705
  #, php-format
706
  msgid ""
707
  "Specify a mask which will be used for the phone validation, where * is a "
@@ -711,46 +708,50 @@ msgstr ""
711
  "это число. Используйте только следующие символы: %s"
712
 
713
  # @ contact_form
714
- #: includes/class-cntctfrm-settings.php:838
715
  msgid "Attachment block"
716
  msgstr "Прикрепить файл"
717
 
718
  # @ contact_form
719
- #: includes/class-cntctfrm-settings.php:840
720
  msgid "Users can attach the following file formats"
721
  msgstr "Пользователи могут прикрепить файлы таких типов"
722
 
723
- #: includes/class-cntctfrm-settings.php:856
724
  msgid "Multi-attachment"
725
  msgstr "Прикрепить несколько файлов"
726
 
727
- #: includes/class-cntctfrm-settings.php:858
728
  msgid "Enable to multiple file selection"
729
  msgstr "Включите, чтобы позволить прикреплять несколько файлов"
730
 
731
- #: includes/class-cntctfrm-settings.php:882
 
 
 
 
732
  msgid "Title"
733
  msgstr "Название"
734
 
735
  # @ contact_form
736
- #: includes/class-cntctfrm-settings.php:883
737
  msgid "Field Type"
738
  msgstr "Тип поля"
739
 
740
  # @ contact_form
741
- #: includes/class-cntctfrm-settings.php:888
742
  msgid "Field's default/available value"
743
  msgstr "Значение полей по умолчанию"
744
 
745
- #: includes/class-cntctfrm-settings.php:914
746
  msgid "Create Field"
747
  msgstr "Создать поле"
748
 
749
- #: includes/class-cntctfrm-settings.php:919
750
  msgid "Google Analytics Measurement ID"
751
  msgstr "Google Analytics Идентификатор потока данных"
752
 
753
- #: includes/class-cntctfrm-settings.php:924
754
  #, php-format
755
  msgid ""
756
  "Enter your %sMeasurement ID%s to track contact form submissions in Google "
@@ -759,98 +760,93 @@ msgstr ""
759
  "Введите свой %sMeasurement ID%s, чтобы отслеживать отправку контактной формы "
760
  "в Google Analytics."
761
 
762
- #: includes/class-cntctfrm-settings.php:925
763
  msgid "Google Analytics version 4 is required."
764
  msgstr "Требуется Google Analytics версии 4."
765
 
766
  # @ contact_form
767
- #: includes/class-cntctfrm-settings.php:933
768
- msgid "If you upgrade to Pro version all your settings will be saved."
769
- msgstr "При установке Pro версии все ваши настройки сохраняются."
770
-
771
- # @ contact_form
772
- #: includes/class-cntctfrm-settings.php:946
773
  msgid "Add to the form"
774
  msgstr "Добавить в форму"
775
 
776
  # @ contact_form
777
- #: includes/class-cntctfrm-settings.php:951
778
  msgid "Tips below the Attachment"
779
  msgstr "Пояснения после блока \"Прикрепить файл\""
780
 
781
  # @ contact_form
782
- #: includes/class-cntctfrm-settings.php:958
783
  msgid "'Send me a copy' block"
784
  msgstr "Блок \"Отправить мне копию\""
785
 
786
- #: includes/class-cntctfrm-settings.php:965
787
  msgid "GDPR Compliance"
788
  msgstr "Согласие с GDPR"
789
 
790
- #: includes/class-cntctfrm-settings.php:970
791
  msgid "Link to Privacy Policy Page"
792
  msgstr "Ссылка на страницу политики конфиденциальности"
793
 
794
- #: includes/class-cntctfrm-settings.php:998
795
  msgid "Activate for network"
796
  msgstr "Активировать для сети"
797
 
798
  # @ contact_form
799
- #: includes/class-cntctfrm-settings.php:1088
800
  msgid "Agreement checkbox"
801
  msgstr "Чекбокс согласия с условиями"
802
 
803
  # @ contact_form
804
- #: includes/class-cntctfrm-settings.php:1088
805
  msgid "Required checkbox for submitting the form"
806
  msgstr "Обязательный чекбокс для отправки формы"
807
 
808
  # @ contact_form
809
- #: includes/class-cntctfrm-settings.php:1089
810
  msgid "Optional checkbox"
811
  msgstr "Дополнительный чекбокс"
812
 
813
  # @ contact_form
814
- #: includes/class-cntctfrm-settings.php:1089
815
  msgid "Optional checkbox, the results of which will be displayed in email"
816
  msgstr "Дополнительный чекбокс, результаты которого будут отображены в email"
817
 
818
  # @ contact_form
819
- #: includes/class-cntctfrm-settings.php:1104
820
  msgid "Delete an attachment file from the server after the email is sent"
821
  msgstr "Удалить прикрепленный файл с сервера после отправки email"
822
 
823
  # @ contact_form
824
- #: includes/class-cntctfrm-settings.php:1110
825
  msgid "Email in HTML format sending"
826
  msgstr "Отправка еmail в формате HTML"
827
 
828
  # @ contact_form
829
- #: includes/class-cntctfrm-settings.php:1114
830
  msgid "Display additional info in the email"
831
  msgstr "Отображение дополнительной информации в письме"
832
 
833
  # @ contact_form
834
- #: includes/class-cntctfrm-settings.php:1121
835
  msgid "Sent from (IP address)"
836
  msgstr "Отправлено от (IP адрес)"
837
 
838
- #: includes/class-cntctfrm-settings.php:1121
839
  msgid "Example: Sent from (IP address): 127.0.0.1"
840
  msgstr "Пример: Отправлено от (IP адрес): 127.0.0.1"
841
 
842
- #: includes/class-cntctfrm-settings.php:1122
843
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
844
  msgstr "Пример: Дата/Время: 19 Августа, 2013 20:50"
845
 
846
- #: includes/class-cntctfrm-settings.php:1123
847
  msgid ""
848
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
849
  msgstr ""
850
  "Пример: Отправлено от (referer): https://bestwebsoft.com/contacts/contact-"
851
  "us/"
852
 
853
- #: includes/class-cntctfrm-settings.php:1124
854
  msgid ""
855
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
856
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -859,147 +855,147 @@ msgstr ""
859
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
860
 
861
  # @ contact_form
862
- #: includes/class-cntctfrm-settings.php:1130
863
  msgid "Language Settings"
864
  msgstr "Языковые настройки"
865
 
866
  # @ contact_form
867
- #: includes/class-cntctfrm-settings.php:1140
868
  msgid "Add a language"
869
  msgstr "Добавить язык"
870
 
871
  # @ contact_form
872
- #: includes/class-cntctfrm-settings.php:1144
873
  msgid "Change the names of the contact form fields and error messages"
874
  msgstr "Изменить имена полей контактной формы и сообщений об ошибках"
875
 
876
  # @ contact_form
877
- #: includes/class-cntctfrm-settings.php:1150
878
- #: includes/class-cntctfrm-settings.php:1252
879
- #: includes/class-cntctfrm-settings.php:1360
880
  msgid "Default"
881
  msgstr "По умолчанию"
882
 
883
  # @ contact_form
884
- #: includes/class-cntctfrm-settings.php:1163
885
- #: includes/class-cntctfrm-settings.php:1203
886
  msgid "click to expand/hide the list"
887
  msgstr "нажмите чтобы развернуть/свернуть список"
888
 
889
  # @ contact_form
890
- #: includes/class-cntctfrm-settings.php:1172
891
- #: includes/class-cntctfrm-settings.php:1212
892
  msgid "Tips below the Attachment block"
893
  msgstr "Пояснения после блока \"Прикрепить файл\""
894
 
895
  # @ contact_form
896
- #: includes/class-cntctfrm-settings.php:1177
897
- #: includes/class-cntctfrm-settings.php:1217
898
  msgid "Error message for the Name field"
899
  msgstr "Сообщение об ошибке для поля Имя"
900
 
901
  # @ contact_form
902
- #: includes/class-cntctfrm-settings.php:1178
903
- #: includes/class-cntctfrm-settings.php:1218
904
  msgid "Error message for the Address field"
905
  msgstr "Сообщение об ошибке для поля Адрес"
906
 
907
  # @ contact_form
908
- #: includes/class-cntctfrm-settings.php:1179
909
- #: includes/class-cntctfrm-settings.php:1219
910
  msgid "Error message for the Email field"
911
  msgstr "Сообщение об ошибке для поля Email"
912
 
913
  # @ contact_form
914
- #: includes/class-cntctfrm-settings.php:1180
915
- #: includes/class-cntctfrm-settings.php:1220
916
  msgid "Error message for the Phone field"
917
  msgstr "Сообщение об ошибке для поля Телефон"
918
 
919
  # @ contact_form
920
- #: includes/class-cntctfrm-settings.php:1181
921
- #: includes/class-cntctfrm-settings.php:1221
922
  msgid "Error message for the Subject field"
923
  msgstr "Сообщение об ошибке для поля Тема"
924
 
925
  # @ contact_form
926
- #: includes/class-cntctfrm-settings.php:1182
927
- #: includes/class-cntctfrm-settings.php:1222
928
  msgid "Error message for the Message field"
929
  msgstr "Сообщение об ошибке для поля Сообщение"
930
 
931
  # @ contact_form
932
- #: includes/class-cntctfrm-settings.php:1183
933
- #: includes/class-cntctfrm-settings.php:1223
934
  msgid "Error message about the file type for the Attachment field"
935
  msgstr "Сообщение об ошибке о типе файла для поля \"Прикрепить файл\""
936
 
937
  # @ contact_form
938
- #: includes/class-cntctfrm-settings.php:1184
939
- #: includes/class-cntctfrm-settings.php:1224
940
  msgid ""
941
  "Error message while uploading a file for the Attachment field to the server"
942
  msgstr ""
943
  "Сообщение об ошибке при загрузке файла на сервер для поля \"Прикрепить файл\""
944
 
945
  # @ contact_form
946
- #: includes/class-cntctfrm-settings.php:1185
947
- #: includes/class-cntctfrm-settings.php:1225
948
  msgid "Error message while moving the file for the Attachment field"
949
  msgstr "Сообщение об ошибке при перемещении файла для поля \"Прикрепить файл\""
950
 
951
  # @ contact_form
952
- #: includes/class-cntctfrm-settings.php:1186
953
- #: includes/class-cntctfrm-settings.php:1226
954
  msgid "Error message when file size limit for the Attachment field is exceeded"
955
  msgstr ""
956
  "Сообщение об ошибке, когда размер файла превышает размер разрешенного "
957
  "сервером для поля \"Прикрепить файл\""
958
 
959
  # @ contact_form
960
- #: includes/class-cntctfrm-settings.php:1187
961
- #: includes/class-cntctfrm-settings.php:1227
962
  msgid "Error message for the Captcha field"
963
  msgstr "Сообщение об ошибке для поля Captcha"
964
 
965
  # @ contact_form
966
- #: includes/class-cntctfrm-settings.php:1188
967
- #: includes/class-cntctfrm-settings.php:1228
968
  msgid "Error message for the whole form"
969
  msgstr "Сообщение об ошибке для всей формы"
970
 
971
  # @ contact_form
972
- #: includes/class-cntctfrm-settings.php:1242
973
  msgid "Use the changed names of the contact form fields in the email"
974
  msgstr "Использовать измененные имена полей контактной формы в email"
975
 
976
  # @ contact_form
977
- #: includes/class-cntctfrm-settings.php:1248
978
  msgid "Action after email is sent"
979
  msgstr "Действие после отправки письма"
980
 
981
  # @ contact_form
982
- #: includes/class-cntctfrm-settings.php:1250
983
  msgid "Display text"
984
  msgstr "Отобразить текст"
985
 
986
  # @ contact_form
987
- #: includes/class-cntctfrm-settings.php:1265
988
- #: includes/class-cntctfrm-settings.php:1279
989
  msgid "Text"
990
  msgstr "Текст"
991
 
992
  # @ contact_form
993
- #: includes/class-cntctfrm-settings.php:1291
994
  msgid "Redirect to the page"
995
  msgstr "Перенаправление на страницу"
996
 
997
  # @ contact_form
998
- #: includes/class-cntctfrm-settings.php:1293
999
  msgid "Url"
1000
  msgstr "Ссылка"
1001
 
1002
- #: includes/class-cntctfrm-settings.php:1314
1003
  #, php-format
1004
  msgid ""
1005
  "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
@@ -1008,242 +1004,246 @@ msgstr ""
1008
  "Пожалуйста включите JavaScript, чтобы изменить опции '%s', '%s', '%s', '%s' "
1009
  "и для сортировки полей."
1010
 
1011
- #: includes/class-cntctfrm-settings.php:1315
1012
- #: includes/class-cntctfrm-settings.php:1332
1013
  msgid "Form layout"
1014
  msgstr "Шаблон формы"
1015
 
1016
  # @ contact_form
1017
- #: includes/class-cntctfrm-settings.php:1316
1018
- #: includes/class-cntctfrm-settings.php:1399
1019
  msgid "Labels position"
1020
  msgstr "Расположение имен полей"
1021
 
1022
- #: includes/class-cntctfrm-settings.php:1317
1023
- #: includes/class-cntctfrm-settings.php:1417
1024
  msgid "Labels align"
1025
  msgstr "Выравнивание имен полей"
1026
 
1027
  # @ contact_form
1028
- #: includes/class-cntctfrm-settings.php:1318
1029
- #: includes/class-cntctfrm-settings.php:1344
1030
  msgid "Submit position"
1031
  msgstr "Позиция кнопки 'Отправить'"
1032
 
1033
  # @ contact_form
1034
- #: includes/class-cntctfrm-settings.php:1319
1035
- #: includes/class-cntctfrm-settings.php:1448
1036
  msgid "Add tooltips"
1037
  msgstr "Добавить подсказки"
1038
 
1039
  # @ contact_form
1040
- #: includes/class-cntctfrm-settings.php:1320
1041
- #: includes/class-cntctfrm-settings.php:1489
1042
  msgid "Style options"
1043
  msgstr "Настройки стиля"
1044
 
1045
- #: includes/class-cntctfrm-settings.php:1336
1046
  msgid "One column"
1047
  msgstr "Одна колонка"
1048
 
1049
- #: includes/class-cntctfrm-settings.php:1339
1050
  msgid "Two columns"
1051
  msgstr "Две колонки"
1052
 
1053
- #: includes/class-cntctfrm-settings.php:1348
1054
- #: includes/class-cntctfrm-settings.php:1388
1055
- #: includes/class-cntctfrm-settings.php:1406
1056
- #: includes/class-cntctfrm-settings.php:1421
1057
  msgid "Left"
1058
  msgstr "Слева"
1059
 
1060
- #: includes/class-cntctfrm-settings.php:1351
1061
- #: includes/class-cntctfrm-settings.php:1394
1062
- #: includes/class-cntctfrm-settings.php:1409
1063
- #: includes/class-cntctfrm-settings.php:1427
1064
  msgid "Right"
1065
  msgstr "Справа"
1066
 
1067
- #: includes/class-cntctfrm-settings.php:1356
1068
  msgid "Width"
1069
  msgstr "Ширина"
1070
 
1071
- #: includes/class-cntctfrm-settings.php:1364
1072
  msgid "Custom"
1073
  msgstr "Пользовательская"
1074
 
1075
- #: includes/class-cntctfrm-settings.php:1371
1076
  msgid "px"
1077
  msgstr "пикс"
1078
 
1079
- #: includes/class-cntctfrm-settings.php:1384
1080
  msgid "Form align"
1081
  msgstr "Выравнивание формы"
1082
 
1083
- #: includes/class-cntctfrm-settings.php:1391
1084
- #: includes/class-cntctfrm-settings.php:1424
1085
  msgid "Center"
1086
  msgstr "По центру"
1087
 
1088
- #: includes/class-cntctfrm-settings.php:1403
1089
  msgid "Top"
1090
  msgstr "Сверху"
1091
 
1092
- #: includes/class-cntctfrm-settings.php:1412
1093
  msgid "Bottom"
1094
  msgstr "Снизу"
1095
 
1096
  # @ contact_form
1097
- #: includes/class-cntctfrm-settings.php:1432
1098
  msgid "Errors output"
1099
  msgstr "Отображение ошибок"
1100
 
1101
  # @ contact_form
1102
- #: includes/class-cntctfrm-settings.php:1435
1103
  msgid "Display error messages"
1104
  msgstr "Отображать сообщения об ошибках"
1105
 
1106
  # @ contact_form
1107
- #: includes/class-cntctfrm-settings.php:1436
1108
  msgid "Color of the input field errors."
1109
  msgstr "Отображать ошибки цветом для полей ввода."
1110
 
1111
  # @ contact_form
1112
- #: includes/class-cntctfrm-settings.php:1437
1113
  msgid "Display error messages & color of the input field errors"
1114
  msgstr "Отображать сообщения об ошибках и цвет полей ввода с ошибками"
1115
 
1116
  # @ contact_form
1117
- #: includes/class-cntctfrm-settings.php:1442
1118
  msgid "Add placeholder to the input blocks"
1119
  msgstr "Добавить вспомогательный текст в поля ввода"
1120
 
1121
  # @ contact_form
1122
- #: includes/class-cntctfrm-settings.php:1462
1123
  msgid "Email address"
1124
  msgstr "Email"
1125
 
1126
  # @ contact_form
1127
- #: includes/class-cntctfrm-settings.php:1493
1128
  msgid "Text color"
1129
  msgstr "Цвет текста"
1130
 
1131
  # @ contact_form
1132
- #: includes/class-cntctfrm-settings.php:1498
1133
- #: includes/class-cntctfrm-settings.php:1507
1134
- #: includes/class-cntctfrm-settings.php:1520
1135
- #: includes/class-cntctfrm-settings.php:1528
1136
- #: includes/class-cntctfrm-settings.php:1536
1137
- #: includes/class-cntctfrm-settings.php:1544
1138
- #: includes/class-cntctfrm-settings.php:1557
1139
- #: includes/class-cntctfrm-settings.php:1565
1140
- #: includes/class-cntctfrm-settings.php:1577
1141
- #: includes/class-cntctfrm-settings.php:1594
1142
- #: includes/class-cntctfrm-settings.php:1602
1143
- #: includes/class-cntctfrm-settings.php:1610
1144
  msgid "Select Color"
1145
  msgstr "Выбрать цвет"
1146
 
1147
  # @ contact_form
1148
- #: includes/class-cntctfrm-settings.php:1501
1149
  msgid "Label text color"
1150
  msgstr "Цвет текста"
1151
 
1152
  # @ contact_form
1153
- #: includes/class-cntctfrm-settings.php:1510
1154
  msgid "Placeholder color"
1155
  msgstr "Цвет вспомогательного текста"
1156
 
1157
  # @ contact_form
1158
- #: includes/class-cntctfrm-settings.php:1515
1159
  msgid "Errors color"
1160
  msgstr "Цвет ошибок"
1161
 
1162
  # @ contact_form
1163
- #: includes/class-cntctfrm-settings.php:1523
1164
  msgid "Error text color"
1165
  msgstr "Цвет текста для ошибок"
1166
 
1167
  # @ contact_form
1168
- #: includes/class-cntctfrm-settings.php:1531
1169
  msgid "Background color of the input field errors"
1170
  msgstr "Цвет фона для полей ввода с ошибками"
1171
 
1172
  # @ contact_form
1173
- #: includes/class-cntctfrm-settings.php:1539
1174
  msgid "Border color of the input field errors"
1175
  msgstr "Цвет рамки для полей ввода с ошибками"
1176
 
1177
  # @ contact_form
1178
- #: includes/class-cntctfrm-settings.php:1547
1179
  msgid "Placeholder color of the input field errors"
1180
  msgstr "Цвет вспомогательного текста для полей ввода с ошибками"
1181
 
1182
  # @ contact_form
1183
- #: includes/class-cntctfrm-settings.php:1552
1184
  msgid "Input fields"
1185
  msgstr "Поля ввода"
1186
 
1187
  # @ contact_form
1188
- #: includes/class-cntctfrm-settings.php:1560
1189
  msgid "Input fields background color"
1190
  msgstr "Цвет фона для полей ввода"
1191
 
1192
  # @ contact_form
1193
- #: includes/class-cntctfrm-settings.php:1568
1194
  msgid "Text fields color"
1195
  msgstr "Цвет текста для полей ввода"
1196
 
1197
  # @ contact_form
1198
- #: includes/class-cntctfrm-settings.php:1572
1199
  msgid "Border width in px, numbers only"
1200
  msgstr "Ширина рамки в пикселях, только цифры"
1201
 
1202
  # @ contact_form
1203
- #: includes/class-cntctfrm-settings.php:1580
1204
- #: includes/class-cntctfrm-settings.php:1613
1205
  msgid "Border color"
1206
  msgstr "Цвет рамки"
1207
 
1208
  # @ contact_form
1209
- #: includes/class-cntctfrm-settings.php:1585
1210
  msgid "Submit button"
1211
  msgstr "Кнопка Отправить"
1212
 
1213
  # @ contact_form
1214
- #: includes/class-cntctfrm-settings.php:1589
1215
  msgid "Width in px, numbers only"
1216
  msgstr "Ширина в пикселях, только цифры"
1217
 
1218
  # @ contact_form
1219
- #: includes/class-cntctfrm-settings.php:1597
1220
  msgid "Button color"
1221
  msgstr "Цвет кнопки"
1222
 
1223
  # @ contact_form
1224
- #: includes/class-cntctfrm-settings.php:1605
1225
  msgid "Button text color"
1226
  msgstr "Цвет текста для кнопки"
1227
 
1228
  # @ contact_form
1229
- #: includes/class-cntctfrm-settings.php:1632
1230
  msgid "Contact Form | Preview"
1231
  msgstr "Contact Form | Предпросмотр"
1232
 
1233
- #: includes/class-cntctfrm-settings.php:1633
1234
  msgid "Drag the necessary field to sort fields."
1235
  msgstr "Перетащите необходимое поле для сортировки полей."
1236
 
1237
- #: includes/class-cntctfrm-settings.php:1880
1238
  msgid "Contact Form Shortcode"
1239
  msgstr "Шорткод Contact Form"
1240
 
1241
- #: includes/class-cntctfrm-settings.php:1883
1242
  msgid "Add Contact Form to your page or post using the following shortcode:"
1243
  msgstr ""
1244
  "Добавьте Contact Form в свои записи или страницы, используя следующий "
1245
  "шорткод:"
1246
 
 
 
 
 
1247
  #~ msgid "Measurement ID"
1248
  #~ msgstr "Идентификатор потока данных"
1249
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-04-05 16:05+0300\n"
6
+ "PO-Revision-Date: 2021-04-05 16:05+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"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
14
  "%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
15
+ "X-Generator: Poedit 2.3\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e\n"
18
  "X-Poedit-Basepath: ..\n"
19
  "X-Textdomain-Support: yes\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: bws_menu\n"
22
 
23
  # @ contact_form
24
+ #: contact_form.php:39 contact_form.php:48 contact_form.php:831
25
+ #: includes/class-cntctfrm-settings.php:433
26
  msgid "Contact Form Settings"
27
  msgstr "Настройки Contact Form"
28
 
29
  # @ contact_form
30
+ #: contact_form.php:49 contact_form.php:1864 contact_form.php:1878
31
+ #: includes/class-cntctfrm-settings.php:23
32
  msgid "Settings"
33
  msgstr "Настройки"
34
 
35
+ #: contact_form.php:72
 
 
 
36
  msgid "Upgrade to Pro"
37
  msgstr "Обновиться до Pro"
38
 
39
  # @ contact_form
40
+ #: contact_form.php:529 contact_form.php:1637 contact_form.php:1684
41
+ #: includes/class-cntctfrm-settings.php:572
42
+ #: includes/class-cntctfrm-settings.php:670
43
+ #: includes/class-cntctfrm-settings.php:1202
44
+ #: includes/class-cntctfrm-settings.php:1242
45
+ #: includes/class-cntctfrm-settings.php:1486
46
  msgid "Name"
47
  msgstr "Имя"
48
 
49
  # @ contact_form
50
+ #: contact_form.php:530 contact_form.php:1644 contact_form.php:1690
51
+ #: includes/class-cntctfrm-settings.php:722
52
+ #: includes/class-cntctfrm-settings.php:1203
53
+ #: includes/class-cntctfrm-settings.php:1243
54
+ #: includes/class-cntctfrm-settings.php:1491
55
  msgid "Address"
56
  msgstr "Адрес"
57
 
58
  # @ contact_form
59
+ #: contact_form.php:531 includes/class-cntctfrm-settings.php:744
60
+ #: includes/class-cntctfrm-settings.php:1204
61
+ #: includes/class-cntctfrm-settings.php:1244
62
  msgid "Email Address"
63
  msgstr "Email адрес"
64
 
65
  # @ contact_form
66
+ #: contact_form.php:532 includes/class-cntctfrm-settings.php:770
67
+ #: includes/class-cntctfrm-settings.php:1205
68
+ #: includes/class-cntctfrm-settings.php:1245
69
  msgid "Phone number"
70
  msgstr "Телефон"
71
 
72
  # @ contact_form
73
+ #: contact_form.php:533 contact_form.php:1655 contact_form.php:1699
74
+ #: includes/class-cntctfrm-settings.php:792
75
+ #: includes/class-cntctfrm-settings.php:1206
76
+ #: includes/class-cntctfrm-settings.php:1246
77
+ #: includes/class-cntctfrm-settings.php:1506
78
  msgid "Subject"
79
  msgstr "Тема"
80
 
81
  # @ contact_form
82
+ #: contact_form.php:534 contact_form.php:1660 contact_form.php:1703
83
+ #: includes/class-cntctfrm-settings.php:827
84
+ #: includes/class-cntctfrm-settings.php:1207
85
+ #: includes/class-cntctfrm-settings.php:1247
86
+ #: includes/class-cntctfrm-settings.php:1510
87
  msgid "Message"
88
  msgstr "Сообщение"
89
 
90
  # @ contact_form
91
+ #: contact_form.php:535 includes/class-cntctfrm-settings.php:1208
92
+ #: includes/class-cntctfrm-settings.php:1248
93
+ #: includes/class-cntctfrm-settings.php:1515
94
  msgid "Attachment"
95
  msgstr "Прикрепить файл"
96
 
97
  # @ contact_form
98
+ #: contact_form.php:536
99
  msgid ""
100
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
101
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
104
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
105
 
106
  # @ contact_form
107
+ #: contact_form.php:537 includes/class-cntctfrm-settings.php:1210
108
+ #: includes/class-cntctfrm-settings.php:1250
109
  msgid "Send me a copy"
110
  msgstr "Отправить мне копию"
111
 
112
+ #: contact_form.php:538 includes/class-cntctfrm-settings.php:1211
113
+ #: includes/class-cntctfrm-settings.php:1251
114
  msgid "I consent to having this site collect my personal data."
115
  msgstr "Я разрешаю этому сайту собирать мои личные данные."
116
 
117
  # @ contact_form
118
+ #: contact_form.php:539 contact_form.php:1958
119
+ #: includes/class-cntctfrm-settings.php:1212
120
+ #: includes/class-cntctfrm-settings.php:1252
121
  msgid "Learn more"
122
  msgstr "Подробнее"
123
 
124
  # @ contact_form
125
+ #: contact_form.php:540 includes/class-cntctfrm-settings.php:1213
126
+ #: includes/class-cntctfrm-settings.php:1253
127
  msgid "Submit"
128
  msgstr "Отправить"
129
 
130
  # @ contact_form
131
+ #: contact_form.php:541
132
  msgid "Your name is required."
133
  msgstr "Поле Имя - это обязательное поле для заполнения."
134
 
135
  # @ contact_form
136
+ #: contact_form.php:542
137
  msgid "Address is required."
138
  msgstr "Поле Адрес - это обязательное поле для заполнения."
139
 
140
  # @ contact_form
141
+ #: contact_form.php:543
142
  msgid "A valid email address is required."
143
  msgstr "Укажите корректный email - адрес."
144
 
145
  # @ contact_form
146
+ #: contact_form.php:544
147
  msgid "Phone number is required."
148
  msgstr "Поле Телефон - это обязательное поле для заполнения."
149
 
150
  # @ contact_form
151
+ #: contact_form.php:545
152
  msgid "Subject is required."
153
  msgstr "Поле Тема - это обязательное поле для заполнения."
154
 
155
  # @ contact_form
156
+ #: contact_form.php:546
157
  msgid "Message text is required."
158
  msgstr "Поле Сообщение - это обязательное поле для заполнения."
159
 
160
  # @ contact_form
161
+ #: contact_form.php:547
162
  msgid "File format is not valid."
163
  msgstr "Прикрепленный тип файла не поддерживается."
164
 
165
  # @ contact_form
166
+ #: contact_form.php:548
167
  msgid "File upload error."
168
  msgstr "Ошибка при загрузке файла."
169
 
170
  # @ contact_form
171
+ #: contact_form.php:549
172
  msgid "The file could not be uploaded."
173
  msgstr "Невозможно загрузить файл."
174
 
175
  # @ contact_form
176
+ #: contact_form.php:550
177
  msgid "This file is too large."
178
  msgstr "Размер файла слишком большой."
179
 
180
  # @ contact_form
181
+ #: contact_form.php:551
182
  msgid "Please fill out the CAPTCHA."
183
  msgstr "Пожалуйста, заполните CAPTCHA."
184
 
185
  # @ contact_form
186
+ #: contact_form.php:552
187
  msgid "Please make corrections below and try again."
188
  msgstr ""
189
  "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
190
 
191
  # @ contact_form
192
+ #: contact_form.php:554
193
  msgid "Thank you for contacting us."
194
  msgstr "Спасибо, что связались с нами."
195
 
196
+ #: contact_form.php:835
197
  msgid "NEW_FORM"
198
  msgstr "НОВАЯ_ФОРМА"
199
 
200
  # @ contact_form
201
+ #: contact_form.php:836
202
  msgid ""
203
  "If you want to create multiple contact forms, please install the Contact "
204
  "Form Multi plugin."
206
  "Если вы хотите создать несколько разных контактных форм, пожалуйста, "
207
  "установите плагин Contact Form Multi."
208
 
209
+ #: contact_form.php:841
210
  msgid ""
211
  "Contact Form plugin doesn't support your current version of Contact Form "
212
  "Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
217
  "выше."
218
 
219
  # @ contact_form
220
+ #: contact_form.php:943
221
  msgid "Sorry, email message could not be delivered."
222
  msgstr "Извините, ваш email не может быть отправлен."
223
 
224
  # @ contact_form
225
+ #: contact_form.php:1593 contact_form.php:1595
226
  msgid "Sent from (ip address)"
227
  msgstr "Отправлено от (IP адрес)"
228
 
229
  # @ contact_form
230
+ #: contact_form.php:1599 contact_form.php:1601
231
+ #: includes/class-cntctfrm-settings.php:1159
232
  msgid "Date/Time"
233
  msgstr "Дата/Время"
234
 
235
  # @ contact_form
236
+ #: contact_form.php:1605 contact_form.php:1607
237
+ #: includes/class-cntctfrm-settings.php:1160
238
  msgid "Sent from (referer)"
239
  msgstr "Отправлено от (referer)"
240
 
241
  # @ contact_form
242
+ #: contact_form.php:1611 contact_form.php:1613
243
+ #: includes/class-cntctfrm-settings.php:1161
244
  msgid "Using (user agent)"
245
  msgstr "Используя (user agent)"
246
 
247
  # @ contact_form
248
+ #: contact_form.php:1623
249
  msgid "Contact from"
250
  msgstr "Контакт из"
251
 
252
  # @ contact_form
253
+ #: contact_form.php:1628 contact_form.php:1678
254
  msgid "Site"
255
  msgstr "Сайт"
256
 
257
  # @ contact_form
258
+ #: contact_form.php:1650 contact_form.php:1695
259
+ #: includes/class-cntctfrm-settings.php:596
260
  msgid "Email"
261
  msgstr "Email"
262
 
263
  # @ contact_form
264
+ #: contact_form.php:1666 contact_form.php:1708
265
+ #: includes/class-cntctfrm-settings.php:1501
266
  msgid "Phone Number"
267
  msgstr "Телефон"
268
 
269
  # @ contact_form
270
+ #: contact_form.php:1807
271
  msgid ""
272
  "If you can see this MIME, it means that the MIME type is not supported by "
273
  "your email client!"
276
  "MIME тип!"
277
 
278
  # @ contact_form
279
+ #: contact_form.php:1879
280
  msgid "FAQ"
281
  msgstr "FAQ"
282
 
283
  # @ contact_form
284
+ #: contact_form.php:1880
285
  msgid "Support"
286
  msgstr "Поддержка"
287
 
288
  # @ contact_form
289
+ #: contact_form.php:1930
290
  msgid "Are you sure that you want to delete this language data?"
291
  msgstr "Вы действительно хотите удалить данные для этого языка?"
292
 
293
  # @ contact_form
294
+ #: contact_form.php:1953
295
  msgid "Add multiple forms"
296
  msgstr "Добавить несколько форм"
297
 
298
+ #: contact_form.php:1953
299
  msgid ""
300
  "Install Contact Form Multi plugin to create unlimited number of contact "
301
  "forms."
303
  "Установить плагин Contact Form Multi для создания неограниченного количества "
304
  "контактных форм."
305
 
306
+ #: contact_form.php:1962 includes/class-cntctfrm-settings.php:477
307
+ #: includes/class-cntctfrm-settings.php:923
308
+ #: includes/class-cntctfrm-settings.php:1125
309
+ #: includes/class-cntctfrm-settings.php:1414
310
  msgid "Close"
311
  msgstr "Закрыть"
312
 
313
+ #: contact_form.php:2016
314
  msgid "Error"
315
  msgstr "Ошибка"
316
 
317
+ #: contact_form.php:2016 contact_form.php:2018
318
  msgid "Illegal language code"
319
  msgstr "Нелегальный языковой код"
320
 
321
  # @ contact_form
322
+ #: contact_form.php:2052 contact_form.php:2054
323
+ #: includes/class-cntctfrm-settings.php:1228
324
+ #: includes/class-cntctfrm-settings.php:1230
325
+ #: includes/class-cntctfrm-settings.php:1268
326
+ #: includes/class-cntctfrm-settings.php:1270
327
+ #: includes/class-cntctfrm-settings.php:1304
328
+ #: includes/class-cntctfrm-settings.php:1306
329
+ #: includes/class-cntctfrm-settings.php:1318
330
+ #: includes/class-cntctfrm-settings.php:1320
331
  msgid "Use shortcode"
332
  msgstr "Используйте шорткод"
333
 
334
  # @ contact_form
335
+ #: contact_form.php:2052 contact_form.php:2054
336
+ #: includes/class-cntctfrm-settings.php:1228
337
+ #: includes/class-cntctfrm-settings.php:1230
338
+ #: includes/class-cntctfrm-settings.php:1268
339
+ #: includes/class-cntctfrm-settings.php:1270
340
+ #: includes/class-cntctfrm-settings.php:1304
341
+ #: includes/class-cntctfrm-settings.php:1306
342
+ #: includes/class-cntctfrm-settings.php:1318
343
+ #: includes/class-cntctfrm-settings.php:1320
344
  msgid "for this language"
345
  msgstr "для данного языка"
346
 
347
+ #: contact_form.php:2202
348
  msgid "Close notice"
349
  msgstr "Закрыть"
350
 
351
  # @ contact_form
352
+ #: contact_form.php:2207
353
  msgid "allows to store your messages to the database."
354
  msgstr "позволяет хранить ваши сообщения в базе данных."
355
 
356
  # @ contact_form
357
+ #: contact_form.php:2208
358
  msgid "Manage messages that have been sent from your website."
359
  msgstr "Управление сообщениями, которые были отправлены с вашего сайта."
360
 
361
  # @ contact_form
362
+ #: contact_form.php:2211
363
  msgid "Learn More"
364
  msgstr "Подробнее"
365
 
366
  # @ contact_form
367
+ #: contact_form.php:2271
368
  msgid "Contact form"
369
  msgstr "Контактная форма"
370
 
371
  # @ contact_form
372
+ #: contact_form.php:2284 contact_form.php:2294
373
  msgid "Language"
374
  msgstr "Язык"
375
 
376
+ #: includes/class-cntctfrm-settings.php:24
377
+ #: includes/class-cntctfrm-settings.php:544
378
  msgid "Additional Settings"
379
  msgstr "Дополнительные настройки"
380
 
381
+ #: includes/class-cntctfrm-settings.php:25
382
+ #: includes/class-cntctfrm-settings.php:1339
383
  msgid "Appearance"
384
  msgstr "Отображение"
385
 
386
+ #: includes/class-cntctfrm-settings.php:26
387
  msgid "Misc"
388
  msgstr "Разное"
389
 
390
+ #: includes/class-cntctfrm-settings.php:27
391
  msgid "Custom Code"
392
  msgstr "Пользовательский код"
393
 
394
+ #: includes/class-cntctfrm-settings.php:29
395
  msgid "License Key"
396
  msgstr "Лицензионный ключ"
397
 
398
+ #: includes/class-cntctfrm-settings.php:103
399
  msgid "Please enable JavaScript in your browser."
400
  msgstr "Пожалуйста, включите JavaScript в вашем браузере."
401
 
402
+ #: includes/class-cntctfrm-settings.php:105
403
  #, php-format
404
  msgid ""
405
  "Contact Form plugin requires PHP %s or higher. Please contact your hosting "
408
  "Для плагина Contact Form требуется PHP % s или выше. Пожалуйста, свяжитесь с "
409
  "вашим хостинг-провайдером, чтобы обновить версию PHP."
410
 
411
+ #: includes/class-cntctfrm-settings.php:355
412
  msgid ""
413
  "Email 'FROM' field option was changed, which may cause email messages being "
414
  "moved to the spam folder or email delivery failures."
417
  "что письма будут попадать в спам или не будут доставлены."
418
 
419
  # @ contact_form
420
+ #: includes/class-cntctfrm-settings.php:365
421
  msgid ""
422
  "If the 'Redirect to page' option is selected then the URL field should be in "
423
  "the following format"
426
  "в следующем формате"
427
 
428
  # @ contact_form
429
+ #: includes/class-cntctfrm-settings.php:372
430
  msgid "Such user does not exist."
431
  msgstr "Данный пользователь не найден."
432
 
433
  # @ contact_form
434
+ #: includes/class-cntctfrm-settings.php:382
435
  msgid ""
436
  "Please enter a valid email address in the 'Use this email address' field."
437
  msgstr "Пожалуйста, введите корректный email в поле 'Использовать этот email'."
438
 
439
  # @ contact_form
440
+ #: includes/class-cntctfrm-settings.php:390
441
  msgid "Please enter a valid email address in the 'FROM' field."
442
  msgstr "Пожалуйста, введите корректный email для поля \"От\"."
443
 
444
  # @ contact_form
445
+ #: includes/class-cntctfrm-settings.php:410
446
  msgid "Settings saved."
447
  msgstr "Настройки сохранены."
448
 
449
  # @ contact_form
450
+ #: includes/class-cntctfrm-settings.php:412
451
  msgid "Settings are not saved."
452
  msgstr "Настройки не сохранены."
453
 
454
  # @ contact_form
455
+ #: includes/class-cntctfrm-settings.php:437
456
  msgid ""
457
  "If you leave the fields empty, the messages will be sent to the email "
458
  "address specified during registration."
461
  "email, который был указан при регистрации сайта."
462
 
463
  # @ contact_form
464
+ #: includes/class-cntctfrm-settings.php:440
465
  msgid "The user's email address"
466
  msgstr "Email пользователя сайта"
467
 
468
  # @ contact_form
469
+ #: includes/class-cntctfrm-settings.php:445
470
  msgid "Select a username"
471
  msgstr "Выберите имя пользователя"
472
 
473
  # @ contact_form
474
+ #: includes/class-cntctfrm-settings.php:458
475
  msgid ""
476
  "Select a username of the person who should get the messages from the contact "
477
  "form."
480
  "формы."
481
 
482
  # @ contact_form
483
+ #: includes/class-cntctfrm-settings.php:463
484
  msgid "Use this email address"
485
  msgstr "Использовать этот email"
486
 
487
  # @ contact_form
488
+ #: includes/class-cntctfrm-settings.php:468
489
  msgid "Enter the email address for receiving messages"
490
  msgstr "Укажите email, на который будут отправляться сообщения"
491
 
492
  # @ contact_form
493
+ #: includes/class-cntctfrm-settings.php:481
494
  msgid "Add department selectbox to the contact form"
495
  msgstr "Добавить выбор отдела в контактную форму"
496
 
497
  # @ contact_form
498
+ #: includes/class-cntctfrm-settings.php:495
499
  msgid "Save emails to the database"
500
  msgstr "Сохранять email в базу данных"
501
 
502
  # @ contact_form
503
+ #: includes/class-cntctfrm-settings.php:506
504
+ #: includes/class-cntctfrm-settings.php:520
505
+ #: includes/class-cntctfrm-settings.php:527
506
  msgid "Using"
507
  msgstr "Используя"
508
 
509
+ #: includes/class-cntctfrm-settings.php:512
510
+ #: includes/class-cntctfrm-settings.php:1026
511
+ #: includes/class-cntctfrm-settings.php:1067
512
+ #: includes/class-cntctfrm-settings.php:1102
513
  msgid "Please activate the appropriate option on"
514
  msgstr "Пожалуйста, активируйте соответствующую опцию на странице настроек"
515
 
516
  # @ contact_form
517
+ #: includes/class-cntctfrm-settings.php:515
518
+ #: includes/class-cntctfrm-settings.php:1029
519
+ #: includes/class-cntctfrm-settings.php:1070
520
+ #: includes/class-cntctfrm-settings.php:1105
521
  msgid "settings page"
522
  msgstr "страница настройки"
523
 
524
  # @ contact_form
525
+ #: includes/class-cntctfrm-settings.php:521
526
+ #: includes/class-cntctfrm-settings.php:1036
527
+ #: includes/class-cntctfrm-settings.php:1078
528
+ #: includes/class-cntctfrm-settings.php:1112
529
  msgid "Activate"
530
  msgstr "Активировать"
531
 
532
  # @ contact_form
533
+ #: includes/class-cntctfrm-settings.php:528
534
+ #: includes/class-cntctfrm-settings.php:1045
535
+ #: includes/class-cntctfrm-settings.php:1084
536
+ #: includes/class-cntctfrm-settings.php:1117
537
  msgid "Download"
538
  msgstr "Скачать"
539
 
540
+ #: includes/class-cntctfrm-settings.php:549
541
  msgid "Sending method"
542
  msgstr "Метод отправки"
543
 
544
  # @ contact_form
545
+ #: includes/class-cntctfrm-settings.php:554
546
  msgid "Wp-mail"
547
  msgstr "Wp-mail"
548
 
549
  # @ contact_form
550
+ #: includes/class-cntctfrm-settings.php:555
551
  msgid "You can use the Wordpress wp_mail function for mailing"
552
  msgstr "Для отправки почты вы можете использовать Wordpress функцию wp_mail"
553
 
554
  # @ contact_form
555
+ #: includes/class-cntctfrm-settings.php:560
556
  msgid "Mail"
557
  msgstr "Mail"
558
 
559
  # @ contact_form
560
+ #: includes/class-cntctfrm-settings.php:561
561
  msgid "You can use the PHP mail function for mailing"
562
  msgstr "Для отправки почты вы можете использовать PHP функцию mail"
563
 
564
+ #: includes/class-cntctfrm-settings.php:567
565
  msgid "'FROM' field"
566
  msgstr "Поле \"От\""
567
 
568
  # @ contact_form
569
+ #: includes/class-cntctfrm-settings.php:583
570
  msgid "User name"
571
  msgstr "Имя пользователя"
572
 
573
  # @ contact_form
574
+ #: includes/class-cntctfrm-settings.php:585
575
  msgid ""
576
  "The name of the user who fills the form will be used in the field 'From'."
577
  msgstr ""
579
  "заполняет форму."
580
 
581
  # @ contact_form
582
+ #: includes/class-cntctfrm-settings.php:607
583
  msgid "User email"
584
  msgstr "Email пользователя"
585
 
586
  # @ contact_form
587
+ #: includes/class-cntctfrm-settings.php:609
588
  msgid ""
589
  "The email address of the user who fills the form will be used in the field "
590
  "'From'."
592
  "В поле \"От\" в письме будет использоваться email того пользователя, который "
593
  "заполняет форму."
594
 
595
+ #: includes/class-cntctfrm-settings.php:618
596
  msgid ""
597
  "If this option is changed, email messages may be moved to the spam folder or "
598
  "email delivery failures may occur."
601
  "будут попадать в спам или не будут доставлены."
602
 
603
  # @ contact_form
604
+ #: includes/class-cntctfrm-settings.php:627
605
  msgid "Required symbol"
606
  msgstr "Символ, отображающий обязательное поле"
607
 
608
  # @ contact_form
609
+ #: includes/class-cntctfrm-settings.php:637
610
  msgid "Fields"
611
  msgstr "Поля"
612
 
613
  # @ contact_form
614
+ #: includes/class-cntctfrm-settings.php:638
615
+ #: includes/class-cntctfrm-settings.php:657
616
+ #: includes/class-cntctfrm-settings.php:673
617
+ #: includes/class-cntctfrm-settings.php:704
618
+ #: includes/class-cntctfrm-settings.php:725
619
+ #: includes/class-cntctfrm-settings.php:747
620
+ #: includes/class-cntctfrm-settings.php:773
621
+ #: includes/class-cntctfrm-settings.php:798
622
+ #: includes/class-cntctfrm-settings.php:833
623
+ #: includes/class-cntctfrm-settings.php:870
624
+ #: includes/class-cntctfrm-settings.php:931
625
  msgid "Used"
626
  msgstr "Используется"
627
 
628
  # @ contact_form
629
+ #: includes/class-cntctfrm-settings.php:639
630
+ #: includes/class-cntctfrm-settings.php:661
631
+ #: includes/class-cntctfrm-settings.php:677
632
+ #: includes/class-cntctfrm-settings.php:708
633
+ #: includes/class-cntctfrm-settings.php:729
634
+ #: includes/class-cntctfrm-settings.php:751
635
+ #: includes/class-cntctfrm-settings.php:777
636
+ #: includes/class-cntctfrm-settings.php:804
637
+ #: includes/class-cntctfrm-settings.php:839
638
+ #: includes/class-cntctfrm-settings.php:932
639
  msgid "Required"
640
  msgstr "Обязательное"
641
 
642
  # @ contact_form
643
+ #: includes/class-cntctfrm-settings.php:642
644
+ #: includes/class-cntctfrm-settings.php:683
645
+ #: includes/class-cntctfrm-settings.php:755
646
+ #: includes/class-cntctfrm-settings.php:811
647
+ #: includes/class-cntctfrm-settings.php:845
648
+ #: includes/class-cntctfrm-settings.php:933
649
  msgid "Visible"
650
  msgstr "Видимое"
651
 
652
  # @ contact_form
653
+ #: includes/class-cntctfrm-settings.php:643
654
+ #: includes/class-cntctfrm-settings.php:687
655
+ #: includes/class-cntctfrm-settings.php:759
656
+ #: includes/class-cntctfrm-settings.php:815
657
+ #: includes/class-cntctfrm-settings.php:849
658
+ #: includes/class-cntctfrm-settings.php:934
659
  msgid "Disabled for editing"
660
  msgstr "Нет возможности редактировать"
661
 
662
  # @ contact_form
663
+ #: includes/class-cntctfrm-settings.php:644
664
+ #: includes/class-cntctfrm-settings.php:714
665
+ #: includes/class-cntctfrm-settings.php:819
666
+ #: includes/class-cntctfrm-settings.php:853
667
  msgid "Field's default value"
668
  msgstr "Значение полей по умолчанию"
669
 
670
  # @ contact_form
671
+ #: includes/class-cntctfrm-settings.php:654
672
  msgid "Department selectbox"
673
  msgstr "Список отделов"
674
 
675
+ #: includes/class-cntctfrm-settings.php:691
676
  msgid "Use User's name as a default value if the user is logged in."
677
  msgstr ""
678
  "Использовать имя Пользователя как значение по умолчанию, если пользователь "
679
  "залогинен."
680
 
681
+ #: includes/class-cntctfrm-settings.php:692
682
+ #: includes/class-cntctfrm-settings.php:764
683
  msgid ""
684
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
685
  "in users."
688
  "к залогиненным пользователям."
689
 
690
  # @ contact_form
691
+ #: includes/class-cntctfrm-settings.php:701
692
  msgid "Location selectbox"
693
  msgstr "Список местоположений"
694
 
695
+ #: includes/class-cntctfrm-settings.php:763
696
  msgid "Use User's email as a default value if the user is logged in."
697
  msgstr ""
698
  "Использовать Email Пользователя как значение по умолчанию, если пользователь "
699
  "залогинен."
700
 
701
+ #: includes/class-cntctfrm-settings.php:785
702
  #, php-format
703
  msgid ""
704
  "Specify a mask which will be used for the phone validation, where * is a "
708
  "это число. Используйте только следующие символы: %s"
709
 
710
  # @ contact_form
711
+ #: includes/class-cntctfrm-settings.php:863
712
  msgid "Attachment block"
713
  msgstr "Прикрепить файл"
714
 
715
  # @ contact_form
716
+ #: includes/class-cntctfrm-settings.php:865
717
  msgid "Users can attach the following file formats"
718
  msgstr "Пользователи могут прикрепить файлы таких типов"
719
 
720
+ #: includes/class-cntctfrm-settings.php:888
721
  msgid "Multi-attachment"
722
  msgstr "Прикрепить несколько файлов"
723
 
724
+ #: includes/class-cntctfrm-settings.php:890
725
  msgid "Enable to multiple file selection"
726
  msgstr "Включите, чтобы позволить прикреплять несколько файлов"
727
 
728
+ #: includes/class-cntctfrm-settings.php:917
729
+ msgid "Saving..."
730
+ msgstr ""
731
+
732
+ #: includes/class-cntctfrm-settings.php:929
733
  msgid "Title"
734
  msgstr "Название"
735
 
736
  # @ contact_form
737
+ #: includes/class-cntctfrm-settings.php:930
738
  msgid "Field Type"
739
  msgstr "Тип поля"
740
 
741
  # @ contact_form
742
+ #: includes/class-cntctfrm-settings.php:935
743
  msgid "Field's default/available value"
744
  msgstr "Значение полей по умолчанию"
745
 
746
+ #: includes/class-cntctfrm-settings.php:961
747
  msgid "Create Field"
748
  msgstr "Создать поле"
749
 
750
+ #: includes/class-cntctfrm-settings.php:966
751
  msgid "Google Analytics Measurement ID"
752
  msgstr "Google Analytics Идентификатор потока данных"
753
 
754
+ #: includes/class-cntctfrm-settings.php:971
755
  #, php-format
756
  msgid ""
757
  "Enter your %sMeasurement ID%s to track contact form submissions in Google "
760
  "Введите свой %sMeasurement ID%s, чтобы отслеживать отправку контактной формы "
761
  "в Google Analytics."
762
 
763
+ #: includes/class-cntctfrm-settings.php:972
764
  msgid "Google Analytics version 4 is required."
765
  msgstr "Требуется Google Analytics версии 4."
766
 
767
  # @ contact_form
768
+ #: includes/class-cntctfrm-settings.php:986
 
 
 
 
 
769
  msgid "Add to the form"
770
  msgstr "Добавить в форму"
771
 
772
  # @ contact_form
773
+ #: includes/class-cntctfrm-settings.php:991
774
  msgid "Tips below the Attachment"
775
  msgstr "Пояснения после блока \"Прикрепить файл\""
776
 
777
  # @ contact_form
778
+ #: includes/class-cntctfrm-settings.php:998
779
  msgid "'Send me a copy' block"
780
  msgstr "Блок \"Отправить мне копию\""
781
 
782
+ #: includes/class-cntctfrm-settings.php:1005
783
  msgid "GDPR Compliance"
784
  msgstr "Согласие с GDPR"
785
 
786
+ #: includes/class-cntctfrm-settings.php:1010
787
  msgid "Link to Privacy Policy Page"
788
  msgstr "Ссылка на страницу политики конфиденциальности"
789
 
790
+ #: includes/class-cntctfrm-settings.php:1038
791
  msgid "Activate for network"
792
  msgstr "Активировать для сети"
793
 
794
  # @ contact_form
795
+ #: includes/class-cntctfrm-settings.php:1129
796
  msgid "Agreement checkbox"
797
  msgstr "Чекбокс согласия с условиями"
798
 
799
  # @ contact_form
800
+ #: includes/class-cntctfrm-settings.php:1129
801
  msgid "Required checkbox for submitting the form"
802
  msgstr "Обязательный чекбокс для отправки формы"
803
 
804
  # @ contact_form
805
+ #: includes/class-cntctfrm-settings.php:1130
806
  msgid "Optional checkbox"
807
  msgstr "Дополнительный чекбокс"
808
 
809
  # @ contact_form
810
+ #: includes/class-cntctfrm-settings.php:1130
811
  msgid "Optional checkbox, the results of which will be displayed in email"
812
  msgstr "Дополнительный чекбокс, результаты которого будут отображены в email"
813
 
814
  # @ contact_form
815
+ #: includes/class-cntctfrm-settings.php:1141
816
  msgid "Delete an attachment file from the server after the email is sent"
817
  msgstr "Удалить прикрепленный файл с сервера после отправки email"
818
 
819
  # @ contact_form
820
+ #: includes/class-cntctfrm-settings.php:1147
821
  msgid "Email in HTML format sending"
822
  msgstr "Отправка еmail в формате HTML"
823
 
824
  # @ contact_form
825
+ #: includes/class-cntctfrm-settings.php:1151
826
  msgid "Display additional info in the email"
827
  msgstr "Отображение дополнительной информации в письме"
828
 
829
  # @ contact_form
830
+ #: includes/class-cntctfrm-settings.php:1158
831
  msgid "Sent from (IP address)"
832
  msgstr "Отправлено от (IP адрес)"
833
 
834
+ #: includes/class-cntctfrm-settings.php:1158
835
  msgid "Example: Sent from (IP address): 127.0.0.1"
836
  msgstr "Пример: Отправлено от (IP адрес): 127.0.0.1"
837
 
838
+ #: includes/class-cntctfrm-settings.php:1159
839
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
840
  msgstr "Пример: Дата/Время: 19 Августа, 2013 20:50"
841
 
842
+ #: includes/class-cntctfrm-settings.php:1160
843
  msgid ""
844
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
845
  msgstr ""
846
  "Пример: Отправлено от (referer): https://bestwebsoft.com/contacts/contact-"
847
  "us/"
848
 
849
+ #: includes/class-cntctfrm-settings.php:1161
850
  msgid ""
851
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
852
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
855
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
856
 
857
  # @ contact_form
858
+ #: includes/class-cntctfrm-settings.php:1167
859
  msgid "Language Settings"
860
  msgstr "Языковые настройки"
861
 
862
  # @ contact_form
863
+ #: includes/class-cntctfrm-settings.php:1177
864
  msgid "Add a language"
865
  msgstr "Добавить язык"
866
 
867
  # @ contact_form
868
+ #: includes/class-cntctfrm-settings.php:1181
869
  msgid "Change the names of the contact form fields and error messages"
870
  msgstr "Изменить имена полей контактной формы и сообщений об ошибках"
871
 
872
  # @ contact_form
873
+ #: includes/class-cntctfrm-settings.php:1187
874
+ #: includes/class-cntctfrm-settings.php:1289
875
+ #: includes/class-cntctfrm-settings.php:1393
876
  msgid "Default"
877
  msgstr "По умолчанию"
878
 
879
  # @ contact_form
880
+ #: includes/class-cntctfrm-settings.php:1200
881
+ #: includes/class-cntctfrm-settings.php:1240
882
  msgid "click to expand/hide the list"
883
  msgstr "нажмите чтобы развернуть/свернуть список"
884
 
885
  # @ contact_form
886
+ #: includes/class-cntctfrm-settings.php:1209
887
+ #: includes/class-cntctfrm-settings.php:1249
888
  msgid "Tips below the Attachment block"
889
  msgstr "Пояснения после блока \"Прикрепить файл\""
890
 
891
  # @ contact_form
892
+ #: includes/class-cntctfrm-settings.php:1214
893
+ #: includes/class-cntctfrm-settings.php:1254
894
  msgid "Error message for the Name field"
895
  msgstr "Сообщение об ошибке для поля Имя"
896
 
897
  # @ contact_form
898
+ #: includes/class-cntctfrm-settings.php:1215
899
+ #: includes/class-cntctfrm-settings.php:1255
900
  msgid "Error message for the Address field"
901
  msgstr "Сообщение об ошибке для поля Адрес"
902
 
903
  # @ contact_form
904
+ #: includes/class-cntctfrm-settings.php:1216
905
+ #: includes/class-cntctfrm-settings.php:1256
906
  msgid "Error message for the Email field"
907
  msgstr "Сообщение об ошибке для поля Email"
908
 
909
  # @ contact_form
910
+ #: includes/class-cntctfrm-settings.php:1217
911
+ #: includes/class-cntctfrm-settings.php:1257
912
  msgid "Error message for the Phone field"
913
  msgstr "Сообщение об ошибке для поля Телефон"
914
 
915
  # @ contact_form
916
+ #: includes/class-cntctfrm-settings.php:1218
917
+ #: includes/class-cntctfrm-settings.php:1258
918
  msgid "Error message for the Subject field"
919
  msgstr "Сообщение об ошибке для поля Тема"
920
 
921
  # @ contact_form
922
+ #: includes/class-cntctfrm-settings.php:1219
923
+ #: includes/class-cntctfrm-settings.php:1259
924
  msgid "Error message for the Message field"
925
  msgstr "Сообщение об ошибке для поля Сообщение"
926
 
927
  # @ contact_form
928
+ #: includes/class-cntctfrm-settings.php:1220
929
+ #: includes/class-cntctfrm-settings.php:1260
930
  msgid "Error message about the file type for the Attachment field"
931
  msgstr "Сообщение об ошибке о типе файла для поля \"Прикрепить файл\""
932
 
933
  # @ contact_form
934
+ #: includes/class-cntctfrm-settings.php:1221
935
+ #: includes/class-cntctfrm-settings.php:1261
936
  msgid ""
937
  "Error message while uploading a file for the Attachment field to the server"
938
  msgstr ""
939
  "Сообщение об ошибке при загрузке файла на сервер для поля \"Прикрепить файл\""
940
 
941
  # @ contact_form
942
+ #: includes/class-cntctfrm-settings.php:1222
943
+ #: includes/class-cntctfrm-settings.php:1262
944
  msgid "Error message while moving the file for the Attachment field"
945
  msgstr "Сообщение об ошибке при перемещении файла для поля \"Прикрепить файл\""
946
 
947
  # @ contact_form
948
+ #: includes/class-cntctfrm-settings.php:1223
949
+ #: includes/class-cntctfrm-settings.php:1263
950
  msgid "Error message when file size limit for the Attachment field is exceeded"
951
  msgstr ""
952
  "Сообщение об ошибке, когда размер файла превышает размер разрешенного "
953
  "сервером для поля \"Прикрепить файл\""
954
 
955
  # @ contact_form
956
+ #: includes/class-cntctfrm-settings.php:1224
957
+ #: includes/class-cntctfrm-settings.php:1264
958
  msgid "Error message for the Captcha field"
959
  msgstr "Сообщение об ошибке для поля Captcha"
960
 
961
  # @ contact_form
962
+ #: includes/class-cntctfrm-settings.php:1225
963
+ #: includes/class-cntctfrm-settings.php:1265
964
  msgid "Error message for the whole form"
965
  msgstr "Сообщение об ошибке для всей формы"
966
 
967
  # @ contact_form
968
+ #: includes/class-cntctfrm-settings.php:1279
969
  msgid "Use the changed names of the contact form fields in the email"
970
  msgstr "Использовать измененные имена полей контактной формы в email"
971
 
972
  # @ contact_form
973
+ #: includes/class-cntctfrm-settings.php:1285
974
  msgid "Action after email is sent"
975
  msgstr "Действие после отправки письма"
976
 
977
  # @ contact_form
978
+ #: includes/class-cntctfrm-settings.php:1287
979
  msgid "Display text"
980
  msgstr "Отобразить текст"
981
 
982
  # @ contact_form
983
+ #: includes/class-cntctfrm-settings.php:1302
984
+ #: includes/class-cntctfrm-settings.php:1316
985
  msgid "Text"
986
  msgstr "Текст"
987
 
988
  # @ contact_form
989
+ #: includes/class-cntctfrm-settings.php:1328
990
  msgid "Redirect to the page"
991
  msgstr "Перенаправление на страницу"
992
 
993
  # @ contact_form
994
+ #: includes/class-cntctfrm-settings.php:1330
995
  msgid "Url"
996
  msgstr "Ссылка"
997
 
998
+ #: includes/class-cntctfrm-settings.php:1347
999
  #, php-format
1000
  msgid ""
1001
  "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
1004
  "Пожалуйста включите JavaScript, чтобы изменить опции '%s', '%s', '%s', '%s' "
1005
  "и для сортировки полей."
1006
 
1007
+ #: includes/class-cntctfrm-settings.php:1348
1008
+ #: includes/class-cntctfrm-settings.php:1365
1009
  msgid "Form layout"
1010
  msgstr "Шаблон формы"
1011
 
1012
  # @ contact_form
1013
+ #: includes/class-cntctfrm-settings.php:1349
1014
+ #: includes/class-cntctfrm-settings.php:1433
1015
  msgid "Labels position"
1016
  msgstr "Расположение имен полей"
1017
 
1018
+ #: includes/class-cntctfrm-settings.php:1350
1019
+ #: includes/class-cntctfrm-settings.php:1451
1020
  msgid "Labels align"
1021
  msgstr "Выравнивание имен полей"
1022
 
1023
  # @ contact_form
1024
+ #: includes/class-cntctfrm-settings.php:1351
1025
+ #: includes/class-cntctfrm-settings.php:1377
1026
  msgid "Submit position"
1027
  msgstr "Позиция кнопки 'Отправить'"
1028
 
1029
  # @ contact_form
1030
+ #: includes/class-cntctfrm-settings.php:1352
1031
+ #: includes/class-cntctfrm-settings.php:1482
1032
  msgid "Add tooltips"
1033
  msgstr "Добавить подсказки"
1034
 
1035
  # @ contact_form
1036
+ #: includes/class-cntctfrm-settings.php:1353
1037
+ #: includes/class-cntctfrm-settings.php:1523
1038
  msgid "Style options"
1039
  msgstr "Настройки стиля"
1040
 
1041
+ #: includes/class-cntctfrm-settings.php:1369
1042
  msgid "One column"
1043
  msgstr "Одна колонка"
1044
 
1045
+ #: includes/class-cntctfrm-settings.php:1372
1046
  msgid "Two columns"
1047
  msgstr "Две колонки"
1048
 
1049
+ #: includes/class-cntctfrm-settings.php:1381
1050
+ #: includes/class-cntctfrm-settings.php:1422
1051
+ #: includes/class-cntctfrm-settings.php:1440
1052
+ #: includes/class-cntctfrm-settings.php:1455
1053
  msgid "Left"
1054
  msgstr "Слева"
1055
 
1056
+ #: includes/class-cntctfrm-settings.php:1384
1057
+ #: includes/class-cntctfrm-settings.php:1428
1058
+ #: includes/class-cntctfrm-settings.php:1443
1059
+ #: includes/class-cntctfrm-settings.php:1461
1060
  msgid "Right"
1061
  msgstr "Справа"
1062
 
1063
+ #: includes/class-cntctfrm-settings.php:1389
1064
  msgid "Width"
1065
  msgstr "Ширина"
1066
 
1067
+ #: includes/class-cntctfrm-settings.php:1397
1068
  msgid "Custom"
1069
  msgstr "Пользовательская"
1070
 
1071
+ #: includes/class-cntctfrm-settings.php:1404
1072
  msgid "px"
1073
  msgstr "пикс"
1074
 
1075
+ #: includes/class-cntctfrm-settings.php:1418
1076
  msgid "Form align"
1077
  msgstr "Выравнивание формы"
1078
 
1079
+ #: includes/class-cntctfrm-settings.php:1425
1080
+ #: includes/class-cntctfrm-settings.php:1458
1081
  msgid "Center"
1082
  msgstr "По центру"
1083
 
1084
+ #: includes/class-cntctfrm-settings.php:1437
1085
  msgid "Top"
1086
  msgstr "Сверху"
1087
 
1088
+ #: includes/class-cntctfrm-settings.php:1446
1089
  msgid "Bottom"
1090
  msgstr "Снизу"
1091
 
1092
  # @ contact_form
1093
+ #: includes/class-cntctfrm-settings.php:1466
1094
  msgid "Errors output"
1095
  msgstr "Отображение ошибок"
1096
 
1097
  # @ contact_form
1098
+ #: includes/class-cntctfrm-settings.php:1469
1099
  msgid "Display error messages"
1100
  msgstr "Отображать сообщения об ошибках"
1101
 
1102
  # @ contact_form
1103
+ #: includes/class-cntctfrm-settings.php:1470
1104
  msgid "Color of the input field errors."
1105
  msgstr "Отображать ошибки цветом для полей ввода."
1106
 
1107
  # @ contact_form
1108
+ #: includes/class-cntctfrm-settings.php:1471
1109
  msgid "Display error messages & color of the input field errors"
1110
  msgstr "Отображать сообщения об ошибках и цвет полей ввода с ошибками"
1111
 
1112
  # @ contact_form
1113
+ #: includes/class-cntctfrm-settings.php:1476
1114
  msgid "Add placeholder to the input blocks"
1115
  msgstr "Добавить вспомогательный текст в поля ввода"
1116
 
1117
  # @ contact_form
1118
+ #: includes/class-cntctfrm-settings.php:1496
1119
  msgid "Email address"
1120
  msgstr "Email"
1121
 
1122
  # @ contact_form
1123
+ #: includes/class-cntctfrm-settings.php:1527
1124
  msgid "Text color"
1125
  msgstr "Цвет текста"
1126
 
1127
  # @ contact_form
1128
+ #: includes/class-cntctfrm-settings.php:1532
1129
+ #: includes/class-cntctfrm-settings.php:1541
1130
+ #: includes/class-cntctfrm-settings.php:1554
1131
+ #: includes/class-cntctfrm-settings.php:1562
1132
+ #: includes/class-cntctfrm-settings.php:1570
1133
+ #: includes/class-cntctfrm-settings.php:1578
1134
+ #: includes/class-cntctfrm-settings.php:1591
1135
+ #: includes/class-cntctfrm-settings.php:1599
1136
+ #: includes/class-cntctfrm-settings.php:1611
1137
+ #: includes/class-cntctfrm-settings.php:1628
1138
+ #: includes/class-cntctfrm-settings.php:1636
1139
+ #: includes/class-cntctfrm-settings.php:1644
1140
  msgid "Select Color"
1141
  msgstr "Выбрать цвет"
1142
 
1143
  # @ contact_form
1144
+ #: includes/class-cntctfrm-settings.php:1535
1145
  msgid "Label text color"
1146
  msgstr "Цвет текста"
1147
 
1148
  # @ contact_form
1149
+ #: includes/class-cntctfrm-settings.php:1544
1150
  msgid "Placeholder color"
1151
  msgstr "Цвет вспомогательного текста"
1152
 
1153
  # @ contact_form
1154
+ #: includes/class-cntctfrm-settings.php:1549
1155
  msgid "Errors color"
1156
  msgstr "Цвет ошибок"
1157
 
1158
  # @ contact_form
1159
+ #: includes/class-cntctfrm-settings.php:1557
1160
  msgid "Error text color"
1161
  msgstr "Цвет текста для ошибок"
1162
 
1163
  # @ contact_form
1164
+ #: includes/class-cntctfrm-settings.php:1565
1165
  msgid "Background color of the input field errors"
1166
  msgstr "Цвет фона для полей ввода с ошибками"
1167
 
1168
  # @ contact_form
1169
+ #: includes/class-cntctfrm-settings.php:1573
1170
  msgid "Border color of the input field errors"
1171
  msgstr "Цвет рамки для полей ввода с ошибками"
1172
 
1173
  # @ contact_form
1174
+ #: includes/class-cntctfrm-settings.php:1581
1175
  msgid "Placeholder color of the input field errors"
1176
  msgstr "Цвет вспомогательного текста для полей ввода с ошибками"
1177
 
1178
  # @ contact_form
1179
+ #: includes/class-cntctfrm-settings.php:1586
1180
  msgid "Input fields"
1181
  msgstr "Поля ввода"
1182
 
1183
  # @ contact_form
1184
+ #: includes/class-cntctfrm-settings.php:1594
1185
  msgid "Input fields background color"
1186
  msgstr "Цвет фона для полей ввода"
1187
 
1188
  # @ contact_form
1189
+ #: includes/class-cntctfrm-settings.php:1602
1190
  msgid "Text fields color"
1191
  msgstr "Цвет текста для полей ввода"
1192
 
1193
  # @ contact_form
1194
+ #: includes/class-cntctfrm-settings.php:1606
1195
  msgid "Border width in px, numbers only"
1196
  msgstr "Ширина рамки в пикселях, только цифры"
1197
 
1198
  # @ contact_form
1199
+ #: includes/class-cntctfrm-settings.php:1614
1200
+ #: includes/class-cntctfrm-settings.php:1647
1201
  msgid "Border color"
1202
  msgstr "Цвет рамки"
1203
 
1204
  # @ contact_form
1205
+ #: includes/class-cntctfrm-settings.php:1619
1206
  msgid "Submit button"
1207
  msgstr "Кнопка Отправить"
1208
 
1209
  # @ contact_form
1210
+ #: includes/class-cntctfrm-settings.php:1623
1211
  msgid "Width in px, numbers only"
1212
  msgstr "Ширина в пикселях, только цифры"
1213
 
1214
  # @ contact_form
1215
+ #: includes/class-cntctfrm-settings.php:1631
1216
  msgid "Button color"
1217
  msgstr "Цвет кнопки"
1218
 
1219
  # @ contact_form
1220
+ #: includes/class-cntctfrm-settings.php:1639
1221
  msgid "Button text color"
1222
  msgstr "Цвет текста для кнопки"
1223
 
1224
  # @ contact_form
1225
+ #: includes/class-cntctfrm-settings.php:1664
1226
  msgid "Contact Form | Preview"
1227
  msgstr "Contact Form | Предпросмотр"
1228
 
1229
+ #: includes/class-cntctfrm-settings.php:1665
1230
  msgid "Drag the necessary field to sort fields."
1231
  msgstr "Перетащите необходимое поле для сортировки полей."
1232
 
1233
+ #: includes/class-cntctfrm-settings.php:1914
1234
  msgid "Contact Form Shortcode"
1235
  msgstr "Шорткод Contact Form"
1236
 
1237
+ #: includes/class-cntctfrm-settings.php:1917
1238
  msgid "Add Contact Form to your page or post using the following shortcode:"
1239
  msgstr ""
1240
  "Добавьте Contact Form в свои записи или страницы, используя следующий "
1241
  "шорткод:"
1242
 
1243
+ # @ contact_form
1244
+ #~ msgid "If you upgrade to Pro version all your settings will be saved."
1245
+ #~ msgstr "При установке Pro версии все ваши настройки сохраняются."
1246
+
1247
  #~ msgid "Measurement ID"
1248
  #~ msgstr "Идентификатор потока данных"
1249
 
languages/contact-form-plugin-uk.mo CHANGED
Binary file
languages/contact-form-plugin-uk.po CHANGED
@@ -2,101 +2,98 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-01-21 15:44+0200\n"
6
- "PO-Revision-Date: 2021-01-21 15:44+0200\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"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 2.4.2\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Textdomain-Support: yes\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
  "X-Poedit-SearchPathExcluded-0: bws_menu\n"
20
 
21
  # @ contact_form
22
- #: contact_form.php:39 contact_form.php:48 contact_form.php:825
23
- #: includes/class-cntctfrm-settings.php:426
24
  msgid "Contact Form Settings"
25
  msgstr "Налаштування Contact Form"
26
 
27
  # @ contact_form
28
- #: contact_form.php:49 contact_form.php:1854 contact_form.php:1868
29
- #: includes/class-cntctfrm-settings.php:25
30
  msgid "Settings"
31
  msgstr "Налаштування"
32
 
33
- #: contact_form.php:71 includes/class-cntctfrm-settings.php:484
34
- #: includes/class-cntctfrm-settings.php:938
35
- #: includes/class-cntctfrm-settings.php:1095
36
- #: includes/class-cntctfrm-settings.php:1621
37
  msgid "Upgrade to Pro"
38
  msgstr "Оновитися до Pro"
39
 
40
  # @ contact_form
41
- #: contact_form.php:524 contact_form.php:1629 contact_form.php:1675
42
- #: includes/class-cntctfrm-settings.php:574
43
- #: includes/class-cntctfrm-settings.php:667
44
- #: includes/class-cntctfrm-settings.php:1165
45
- #: includes/class-cntctfrm-settings.php:1205
46
- #: includes/class-cntctfrm-settings.php:1452
47
  msgid "Name"
48
  msgstr "Ім'я"
49
 
50
  # @ contact_form
51
- #: contact_form.php:525 contact_form.php:1636 contact_form.php:1681
52
- #: includes/class-cntctfrm-settings.php:714
53
- #: includes/class-cntctfrm-settings.php:1166
54
- #: includes/class-cntctfrm-settings.php:1206
55
- #: includes/class-cntctfrm-settings.php:1457
56
  msgid "Address"
57
  msgstr "Адреса"
58
 
59
  # @ contact_form
60
- #: contact_form.php:526 includes/class-cntctfrm-settings.php:731
61
- #: includes/class-cntctfrm-settings.php:1167
62
- #: includes/class-cntctfrm-settings.php:1207
63
  msgid "Email Address"
64
  msgstr "Email"
65
 
66
  # @ contact_form
67
- #: contact_form.php:527 includes/class-cntctfrm-settings.php:756
68
- #: includes/class-cntctfrm-settings.php:1168
69
- #: includes/class-cntctfrm-settings.php:1208
70
  msgid "Phone number"
71
  msgstr "Номер телефону"
72
 
73
  # @ contact_form
74
- #: contact_form.php:528 contact_form.php:1647 contact_form.php:1690
75
- #: includes/class-cntctfrm-settings.php:775
76
- #: includes/class-cntctfrm-settings.php:1169
77
- #: includes/class-cntctfrm-settings.php:1209
78
- #: includes/class-cntctfrm-settings.php:1472
79
  msgid "Subject"
80
  msgstr "Тема"
81
 
82
  # @ contact_form
83
- #: contact_form.php:529 contact_form.php:1652 contact_form.php:1694
84
- #: includes/class-cntctfrm-settings.php:806
85
- #: includes/class-cntctfrm-settings.php:1170
86
- #: includes/class-cntctfrm-settings.php:1210
87
- #: includes/class-cntctfrm-settings.php:1476
88
  msgid "Message"
89
  msgstr "Повідомлення"
90
 
91
  # @ contact_form
92
- #: contact_form.php:530 includes/class-cntctfrm-settings.php:1171
93
- #: includes/class-cntctfrm-settings.php:1211
94
- #: includes/class-cntctfrm-settings.php:1481
95
  msgid "Attachment"
96
  msgstr "Вкладений файл"
97
 
98
  # @ contact_form
99
- #: contact_form.php:531
100
  msgid ""
101
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
102
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
@@ -106,100 +103,100 @@ msgstr ""
106
  "PPT."
107
 
108
  # @ contact_form
109
- #: contact_form.php:532 includes/class-cntctfrm-settings.php:1173
110
- #: includes/class-cntctfrm-settings.php:1213
111
  msgid "Send me a copy"
112
  msgstr "Надіслати мені копію"
113
 
114
- #: contact_form.php:533 includes/class-cntctfrm-settings.php:1174
115
- #: includes/class-cntctfrm-settings.php:1214
116
  msgid "I consent to having this site collect my personal data."
117
  msgstr "Я дозволяю цьому сайту збирати мої особисті дані."
118
 
119
  # @ contact_form
120
- #: contact_form.php:534 contact_form.php:1946
121
- #: includes/class-cntctfrm-settings.php:1175
122
- #: includes/class-cntctfrm-settings.php:1215
123
  msgid "Learn more"
124
  msgstr "Дізнатись більше"
125
 
126
  # @ contact_form
127
- #: contact_form.php:535 includes/class-cntctfrm-settings.php:1176
128
- #: includes/class-cntctfrm-settings.php:1216
129
  msgid "Submit"
130
  msgstr "Підтвердити"
131
 
132
  # @ contact_form
133
- #: contact_form.php:536
134
  msgid "Your name is required."
135
  msgstr "Необхідно вказати своє ім'я."
136
 
137
  # @ contact_form
138
- #: contact_form.php:537
139
  msgid "Address is required."
140
  msgstr "Необхідно вказати свою адресу."
141
 
142
  # @ contact_form
143
- #: contact_form.php:538
144
  msgid "A valid email address is required."
145
  msgstr "Необхідно вказати коректну email-адресу."
146
 
147
  # @ contact_form
148
- #: contact_form.php:539
149
  msgid "Phone number is required."
150
  msgstr "Необхідно вказати номер телефону."
151
 
152
  # @ contact_form
153
- #: contact_form.php:540
154
  msgid "Subject is required."
155
  msgstr "Необхідно вказати тему."
156
 
157
  # @ contact_form
158
- #: contact_form.php:541
159
  msgid "Message text is required."
160
  msgstr "Повідомлення не може бути порожнім."
161
 
162
  # @ contact_form
163
- #: contact_form.php:542
164
  msgid "File format is not valid."
165
  msgstr "Некоректний формат файлу."
166
 
167
  # @ contact_form
168
- #: contact_form.php:543
169
  msgid "File upload error."
170
  msgstr "Помилка завантаження файлу."
171
 
172
  # @ contact_form
173
- #: contact_form.php:544
174
  msgid "The file could not be uploaded."
175
  msgstr "Неможна завантажити файл."
176
 
177
  # @ contact_form
178
- #: contact_form.php:545
179
  msgid "This file is too large."
180
  msgstr "Файл занадто великий."
181
 
182
  # @ contact_form
183
- #: contact_form.php:546
184
  msgid "Please fill out the CAPTCHA."
185
  msgstr "Будь ласка, введіть CAPTCHA."
186
 
187
  # @ contact_form
188
- #: contact_form.php:547
189
  msgid "Please make corrections below and try again."
190
  msgstr "Будь ласка, внесіть поправки у виділені поля і спробуйте знову."
191
 
192
  # @ contact_form
193
- #: contact_form.php:549
194
  msgid "Thank you for contacting us."
195
  msgstr "Дякуємо, що зв'язалися з нами."
196
 
197
- #: contact_form.php:829
198
  msgid "NEW_FORM"
199
  msgstr "НОВА_ФОРМА"
200
 
201
  # @ contact_form
202
- #: contact_form.php:830
203
  msgid ""
204
  "If you want to create multiple contact forms, please install the Contact "
205
  "Form Multi plugin."
@@ -207,7 +204,7 @@ msgstr ""
207
  "Якщо ви хочете створити декілька різних контактних форм, будь ласка, "
208
  "встановіть плагін Contact Form Multi."
209
 
210
- #: contact_form.php:835
211
  msgid ""
212
  "Contact Form plugin doesn't support your current version of Contact Form "
213
  "Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
@@ -217,57 +214,57 @@ msgstr ""
217
  "Будь ласка, оновіть плагін Contact Form Multi до версії 1.2.6 або вище."
218
 
219
  # @ contact_form
220
- #: contact_form.php:937
221
  msgid "Sorry, email message could not be delivered."
222
  msgstr "Вибачте, ваше повідомлення не може бути доставлено."
223
 
224
  # @ contact_form
225
- #: contact_form.php:1585 contact_form.php:1587
226
  msgid "Sent from (ip address)"
227
  msgstr "Надіслано від (IP адреса)"
228
 
229
  # @ contact_form
230
- #: contact_form.php:1591 contact_form.php:1593
231
- #: includes/class-cntctfrm-settings.php:1122
232
  msgid "Date/Time"
233
  msgstr "Дата/Час"
234
 
235
  # @ contact_form
236
- #: contact_form.php:1597 contact_form.php:1599
237
- #: includes/class-cntctfrm-settings.php:1123
238
  msgid "Sent from (referer)"
239
  msgstr "Надіслано від (referer)"
240
 
241
  # @ contact_form
242
- #: contact_form.php:1603 contact_form.php:1605
243
- #: includes/class-cntctfrm-settings.php:1124
244
  msgid "Using (user agent)"
245
  msgstr "Використовується (user agent)"
246
 
247
  # @ contact_form
248
- #: contact_form.php:1615
249
  msgid "Contact from"
250
  msgstr "Контакт із"
251
 
252
  # @ contact_form
253
- #: contact_form.php:1620 contact_form.php:1669
254
  msgid "Site"
255
  msgstr "Сайт"
256
 
257
  # @ contact_form
258
- #: contact_form.php:1642 contact_form.php:1686
259
- #: includes/class-cntctfrm-settings.php:598
260
  msgid "Email"
261
  msgstr "Email"
262
 
263
  # @ contact_form
264
- #: contact_form.php:1658 contact_form.php:1699
265
- #: includes/class-cntctfrm-settings.php:1467
266
  msgid "Phone Number"
267
  msgstr "Номер телефону"
268
 
269
  # @ contact_form
270
- #: contact_form.php:1797
271
  msgid ""
272
  "If you can see this MIME, it means that the MIME type is not supported by "
273
  "your email client!"
@@ -276,26 +273,26 @@ msgstr ""
276
  "поштовим клієнтом!"
277
 
278
  # @ contact_form
279
- #: contact_form.php:1869
280
  msgid "FAQ"
281
  msgstr "FAQ"
282
 
283
  # @ contact_form
284
- #: contact_form.php:1870
285
  msgid "Support"
286
  msgstr "Підтримка"
287
 
288
  # @ contact_form
289
- #: contact_form.php:1919
290
  msgid "Are you sure that you want to delete this language data?"
291
  msgstr "Ви справді хочете видалити дані для цієї мови?"
292
 
293
  # @ contact_form
294
- #: contact_form.php:1941
295
  msgid "Add multiple forms"
296
  msgstr "Додати декілька форм"
297
 
298
- #: contact_form.php:1941
299
  msgid ""
300
  "Install Contact Form Multi plugin to create unlimited number of contact "
301
  "forms."
@@ -303,103 +300,103 @@ msgstr ""
303
  "Встановити плагін Contact Form Multi, щоб мати можливість створювати "
304
  "необмежену кількість контактних форм."
305
 
306
- #: contact_form.php:1950 includes/class-cntctfrm-settings.php:470
307
- #: includes/class-cntctfrm-settings.php:876
308
- #: includes/class-cntctfrm-settings.php:1084
309
- #: includes/class-cntctfrm-settings.php:1380
310
  msgid "Close"
311
  msgstr "Закрити"
312
 
313
- #: contact_form.php:2004
314
  msgid "Error"
315
  msgstr "Помилка"
316
 
317
- #: contact_form.php:2004 contact_form.php:2006
318
  msgid "Illegal language code"
319
  msgstr "Нелегальний язиковий код"
320
 
321
  # @ contact_form
322
- #: contact_form.php:2040 contact_form.php:2042
323
- #: includes/class-cntctfrm-settings.php:1191
324
- #: includes/class-cntctfrm-settings.php:1193
325
- #: includes/class-cntctfrm-settings.php:1231
326
- #: includes/class-cntctfrm-settings.php:1233
327
- #: includes/class-cntctfrm-settings.php:1267
328
- #: includes/class-cntctfrm-settings.php:1269
329
- #: includes/class-cntctfrm-settings.php:1281
330
- #: includes/class-cntctfrm-settings.php:1283
331
  msgid "Use shortcode"
332
  msgstr "Використовуйте шорткод"
333
 
334
  # @ contact_form
335
- #: contact_form.php:2040 contact_form.php:2042
336
- #: includes/class-cntctfrm-settings.php:1191
337
- #: includes/class-cntctfrm-settings.php:1193
338
- #: includes/class-cntctfrm-settings.php:1231
339
- #: includes/class-cntctfrm-settings.php:1233
340
- #: includes/class-cntctfrm-settings.php:1267
341
- #: includes/class-cntctfrm-settings.php:1269
342
- #: includes/class-cntctfrm-settings.php:1281
343
- #: includes/class-cntctfrm-settings.php:1283
344
  msgid "for this language"
345
  msgstr "для цієї мови"
346
 
347
- #: contact_form.php:2187
348
  msgid "Close notice"
349
  msgstr "Закрити"
350
 
351
  # @ contact_form
352
- #: contact_form.php:2192
353
  msgid "allows to store your messages to the database."
354
  msgstr "дозволяє зберігати ваші повідомлення у базі даних."
355
 
356
  # @ contact_form
357
- #: contact_form.php:2193
358
  msgid "Manage messages that have been sent from your website."
359
  msgstr "Контролювати повідомлення, які було відправлено з Вашого сайту."
360
 
361
  # @ contact_form
362
- #: contact_form.php:2196
363
  msgid "Learn More"
364
  msgstr "Дізнатись більше"
365
 
366
  # @ contact_form
367
- #: contact_form.php:2256
368
  msgid "Contact form"
369
  msgstr "Контактна форма"
370
 
371
  # @ contact_form
372
- #: contact_form.php:2269 contact_form.php:2279
373
  msgid "Language"
374
  msgstr "Мова"
375
 
376
- #: includes/class-cntctfrm-settings.php:26
377
- #: includes/class-cntctfrm-settings.php:546
378
  msgid "Additional Settings"
379
  msgstr "Додаткові Налаштування"
380
 
381
- #: includes/class-cntctfrm-settings.php:27
382
- #: includes/class-cntctfrm-settings.php:1306
383
  msgid "Appearance"
384
  msgstr "Відображення"
385
 
386
- #: includes/class-cntctfrm-settings.php:28
387
  msgid "Misc"
388
  msgstr "Різне"
389
 
390
- #: includes/class-cntctfrm-settings.php:29
391
  msgid "Custom Code"
392
  msgstr "Користувацький код"
393
 
394
- #: includes/class-cntctfrm-settings.php:30
395
  msgid "License Key"
396
  msgstr "Ліцензійний ключ"
397
 
398
- #: includes/class-cntctfrm-settings.php:96
399
  msgid "Please enable JavaScript in your browser."
400
  msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
401
 
402
- #: includes/class-cntctfrm-settings.php:98
403
  #, php-format
404
  msgid ""
405
  "Contact Form plugin requires PHP %s or higher. Please contact your hosting "
@@ -408,7 +405,7 @@ msgstr ""
408
  "Для плагіна Contact Form необхідний PHP %s або вище. Будь ласка зверніться "
409
  "до свого хостинг-провайдера для оновлення версії PHP."
410
 
411
- #: includes/class-cntctfrm-settings.php:348
412
  msgid ""
413
  "Email 'FROM' field option was changed, which may cause email messages being "
414
  "moved to the spam folder or email delivery failures."
@@ -417,7 +414,7 @@ msgstr ""
417
  "повідомлення не будуть доставлені або потраплять до папки Спам."
418
 
419
  # @ contact_form
420
- #: includes/class-cntctfrm-settings.php:358
421
  msgid ""
422
  "If the 'Redirect to page' option is selected then the URL field should be in "
423
  "the following format"
@@ -426,34 +423,34 @@ msgstr ""
426
  "бути заповнене в наступному форматі"
427
 
428
  # @ contact_form
429
- #: includes/class-cntctfrm-settings.php:365
430
  msgid "Such user does not exist."
431
  msgstr "Такого користувача не існує."
432
 
433
  # @ contact_form
434
- #: includes/class-cntctfrm-settings.php:375
435
  msgid ""
436
  "Please enter a valid email address in the 'Use this email address' field."
437
  msgstr ""
438
  "Будь ласка, введіть коректну email-адресу у поле 'Використовувати цей email'."
439
 
440
  # @ contact_form
441
- #: includes/class-cntctfrm-settings.php:383
442
  msgid "Please enter a valid email address in the 'FROM' field."
443
  msgstr "Будь ласка, введіть коректну email-адресу у полі \"Від\"."
444
 
445
  # @ contact_form
446
- #: includes/class-cntctfrm-settings.php:403
447
  msgid "Settings saved."
448
  msgstr "Налаштування збережено."
449
 
450
  # @ contact_form
451
- #: includes/class-cntctfrm-settings.php:405
452
  msgid "Settings are not saved."
453
  msgstr "Налаштування не збережено."
454
 
455
  # @ contact_form
456
- #: includes/class-cntctfrm-settings.php:430
457
  msgid ""
458
  "If you leave the fields empty, the messages will be sent to the email "
459
  "address specified during registration."
@@ -462,17 +459,17 @@ msgstr ""
462
  "адресу, вказану під час реєстрації."
463
 
464
  # @ contact_form
465
- #: includes/class-cntctfrm-settings.php:433
466
  msgid "The user's email address"
467
  msgstr "Email-адреса користувача"
468
 
469
  # @ contact_form
470
- #: includes/class-cntctfrm-settings.php:438
471
  msgid "Select a username"
472
  msgstr "Виберіть ім'я користувача"
473
 
474
  # @ contact_form
475
- #: includes/class-cntctfrm-settings.php:451
476
  msgid ""
477
  "Select a username of the person who should get the messages from the contact "
478
  "form."
@@ -480,120 +477,120 @@ msgstr ""
480
  "Виберіть ім'я користувача, що має отримати повідомлення з контактної форми."
481
 
482
  # @ contact_form
483
- #: includes/class-cntctfrm-settings.php:456
484
  msgid "Use this email address"
485
  msgstr "Використовувати цей email"
486
 
487
  # @ contact_form
488
- #: includes/class-cntctfrm-settings.php:461
489
  msgid "Enter the email address for receiving messages"
490
  msgstr "Вкажіть email, на який ви бажаєте отримувати повідомлення"
491
 
492
  # @ contact_form
493
- #: includes/class-cntctfrm-settings.php:474
494
  msgid "Add department selectbox to the contact form"
495
  msgstr "Додати поле для вибору департаменту до контактної форми"
496
 
497
  # @ contact_form
498
- #: includes/class-cntctfrm-settings.php:493
499
  msgid "Save emails to the database"
500
  msgstr "Зберігати email у базі даних"
501
 
502
  # @ contact_form
503
- #: includes/class-cntctfrm-settings.php:504
504
- #: includes/class-cntctfrm-settings.php:518
505
- #: includes/class-cntctfrm-settings.php:525
506
  msgid "Using"
507
  msgstr "Використовуючи"
508
 
509
- #: includes/class-cntctfrm-settings.php:510
510
- #: includes/class-cntctfrm-settings.php:986
511
- #: includes/class-cntctfrm-settings.php:1027
512
- #: includes/class-cntctfrm-settings.php:1062
513
  msgid "Please activate the appropriate option on"
514
  msgstr "Будь ласка, активуйте вiдповiдну опцiю на сторiнцi налаштувань"
515
 
516
  # @ contact_form
517
- #: includes/class-cntctfrm-settings.php:513
518
- #: includes/class-cntctfrm-settings.php:989
519
- #: includes/class-cntctfrm-settings.php:1030
520
- #: includes/class-cntctfrm-settings.php:1065
521
  msgid "settings page"
522
  msgstr "налаштування сторінки"
523
 
524
  # @ contact_form
525
- #: includes/class-cntctfrm-settings.php:519
526
- #: includes/class-cntctfrm-settings.php:996
527
- #: includes/class-cntctfrm-settings.php:1038
528
- #: includes/class-cntctfrm-settings.php:1072
529
  msgid "Activate"
530
  msgstr "Активувати"
531
 
532
  # @ contact_form
533
- #: includes/class-cntctfrm-settings.php:526
534
- #: includes/class-cntctfrm-settings.php:1005
535
- #: includes/class-cntctfrm-settings.php:1044
536
- #: includes/class-cntctfrm-settings.php:1077
537
  msgid "Download"
538
  msgstr "Завантажити"
539
 
540
- #: includes/class-cntctfrm-settings.php:551
541
  msgid "Sending method"
542
  msgstr "Метод відправки"
543
 
544
  # @ contact_form
545
- #: includes/class-cntctfrm-settings.php:556
546
  msgid "Wp-mail"
547
  msgstr "Wp-mail"
548
 
549
  # @ contact_form
550
- #: includes/class-cntctfrm-settings.php:557
551
  msgid "You can use the Wordpress wp_mail function for mailing"
552
  msgstr ""
553
  "Для відправлення повідомлень ви можете використовувати Wordpress функцію "
554
  "wp_mail"
555
 
556
  # @ contact_form
557
- #: includes/class-cntctfrm-settings.php:562
558
  msgid "Mail"
559
  msgstr "Mail"
560
 
561
  # @ contact_form
562
- #: includes/class-cntctfrm-settings.php:563
563
  msgid "You can use the PHP mail function for mailing"
564
  msgstr ""
565
  "Для відправлення повідомлень ви можете використовувати PHP функцію mail"
566
 
567
- #: includes/class-cntctfrm-settings.php:569
568
  msgid "'FROM' field"
569
  msgstr "Поле \"Від\""
570
 
571
  # @ contact_form
572
- #: includes/class-cntctfrm-settings.php:585
573
  msgid "User name"
574
  msgstr "Ім’я користувача"
575
 
576
  # @ contact_form
577
- #: includes/class-cntctfrm-settings.php:587
578
  msgid ""
579
  "The name of the user who fills the form will be used in the field 'From'."
580
  msgstr ""
581
  "Ім’я користувача, який заповнює форму, буде використано у полі \"Від\"."
582
 
583
  # @ contact_form
584
- #: includes/class-cntctfrm-settings.php:609
585
  msgid "User email"
586
  msgstr "Email користувача"
587
 
588
  # @ contact_form
589
- #: includes/class-cntctfrm-settings.php:611
590
  msgid ""
591
  "The email address of the user who fills the form will be used in the field "
592
  "'From'."
593
  msgstr ""
594
  "Email користувача, який заповнює форму, буде використано у полі \"Від\"."
595
 
596
- #: includes/class-cntctfrm-settings.php:620
597
  msgid ""
598
  "If this option is changed, email messages may be moved to the spam folder or "
599
  "email delivery failures may occur."
@@ -602,85 +599,85 @@ msgstr ""
602
  "доставлені або потраплять до папки Спам."
603
 
604
  # @ contact_form
605
- #: includes/class-cntctfrm-settings.php:629
606
  msgid "Required symbol"
607
  msgstr "Обов'язковий символ"
608
 
609
  # @ contact_form
610
- #: includes/class-cntctfrm-settings.php:639
611
  msgid "Fields"
612
  msgstr "Поля"
613
 
614
  # @ contact_form
615
- #: includes/class-cntctfrm-settings.php:640
616
- #: includes/class-cntctfrm-settings.php:655
617
- #: includes/class-cntctfrm-settings.php:670
618
- #: includes/class-cntctfrm-settings.php:697
619
- #: includes/class-cntctfrm-settings.php:717
620
- #: includes/class-cntctfrm-settings.php:734
621
- #: includes/class-cntctfrm-settings.php:759
622
- #: includes/class-cntctfrm-settings.php:779
623
- #: includes/class-cntctfrm-settings.php:810
624
- #: includes/class-cntctfrm-settings.php:845
625
- #: includes/class-cntctfrm-settings.php:884
626
  msgid "Used"
627
  msgstr "Використовується"
628
 
629
  # @ contact_form
630
- #: includes/class-cntctfrm-settings.php:641
631
- #: includes/class-cntctfrm-settings.php:659
632
- #: includes/class-cntctfrm-settings.php:674
633
- #: includes/class-cntctfrm-settings.php:701
634
- #: includes/class-cntctfrm-settings.php:721
635
- #: includes/class-cntctfrm-settings.php:738
636
- #: includes/class-cntctfrm-settings.php:763
637
- #: includes/class-cntctfrm-settings.php:786
638
- #: includes/class-cntctfrm-settings.php:817
639
- #: includes/class-cntctfrm-settings.php:885
640
  msgid "Required"
641
  msgstr "Обов'язковий"
642
 
643
  # @ contact_form
644
- #: includes/class-cntctfrm-settings.php:643
645
- #: includes/class-cntctfrm-settings.php:679
646
- #: includes/class-cntctfrm-settings.php:742
647
- #: includes/class-cntctfrm-settings.php:791
648
- #: includes/class-cntctfrm-settings.php:822
649
- #: includes/class-cntctfrm-settings.php:886
650
  msgid "Visible"
651
  msgstr "Видимий"
652
 
653
  # @ contact_form
654
- #: includes/class-cntctfrm-settings.php:644
655
- #: includes/class-cntctfrm-settings.php:683
656
- #: includes/class-cntctfrm-settings.php:746
657
- #: includes/class-cntctfrm-settings.php:795
658
- #: includes/class-cntctfrm-settings.php:826
659
- #: includes/class-cntctfrm-settings.php:887
660
  msgid "Disabled for editing"
661
  msgstr "Заборонити для редагування"
662
 
663
  # @ contact_form
664
- #: includes/class-cntctfrm-settings.php:645
665
- #: includes/class-cntctfrm-settings.php:707
666
- #: includes/class-cntctfrm-settings.php:799
667
- #: includes/class-cntctfrm-settings.php:830
668
  msgid "Field's default value"
669
  msgstr "Стандартне значення поля"
670
 
671
  # @ contact_form
672
- #: includes/class-cntctfrm-settings.php:652
673
  msgid "Department selectbox"
674
  msgstr "Список відділень"
675
 
676
- #: includes/class-cntctfrm-settings.php:687
677
  msgid "Use User's name as a default value if the user is logged in."
678
  msgstr ""
679
  "Після входу на сайт використовувати ім'я користувача, як значення за "
680
  "замовчуванням."
681
 
682
- #: includes/class-cntctfrm-settings.php:688
683
- #: includes/class-cntctfrm-settings.php:751
684
  msgid ""
685
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
686
  "in users."
@@ -689,17 +686,17 @@ msgstr ""
689
  "тільки для авторизованих користувачів."
690
 
691
  # @ contact_form
692
- #: includes/class-cntctfrm-settings.php:694
693
  msgid "Location selectbox"
694
  msgstr "Список розміщень"
695
 
696
- #: includes/class-cntctfrm-settings.php:750
697
  msgid "Use User's email as a default value if the user is logged in."
698
  msgstr ""
699
  "Після входу на сайт, використовувати еmail користувача, як значення за "
700
  "замовчуванням."
701
 
702
- #: includes/class-cntctfrm-settings.php:770
703
  #, php-format
704
  msgid ""
705
  "Specify a mask which will be used for the phone validation, where * is a "
@@ -709,46 +706,50 @@ msgstr ""
709
  "число. Використовуйте лише такі символи: %s"
710
 
711
  # @ contact_form
712
- #: includes/class-cntctfrm-settings.php:838
713
  msgid "Attachment block"
714
  msgstr "Прикріпити файл"
715
 
716
  # @ contact_form
717
- #: includes/class-cntctfrm-settings.php:840
718
  msgid "Users can attach the following file formats"
719
  msgstr "Користувачі можуть прикріплювати файли наступних форматів"
720
 
721
- #: includes/class-cntctfrm-settings.php:856
722
  msgid "Multi-attachment"
723
  msgstr "Прикріпити декілька файлів"
724
 
725
- #: includes/class-cntctfrm-settings.php:858
726
  msgid "Enable to multiple file selection"
727
  msgstr "Активуйте, щоб дозволити прикріпляти декілька файлів"
728
 
729
- #: includes/class-cntctfrm-settings.php:882
 
 
 
 
730
  msgid "Title"
731
  msgstr "Назва"
732
 
733
  # @ contact_form
734
- #: includes/class-cntctfrm-settings.php:883
735
  msgid "Field Type"
736
  msgstr "Тип поля"
737
 
738
  # @ contact_form
739
- #: includes/class-cntctfrm-settings.php:888
740
  msgid "Field's default/available value"
741
  msgstr "Стандартне значення поля"
742
 
743
- #: includes/class-cntctfrm-settings.php:914
744
  msgid "Create Field"
745
  msgstr "Створити поле"
746
 
747
- #: includes/class-cntctfrm-settings.php:919
748
  msgid "Google Analytics Measurement ID"
749
  msgstr "Google Analytics Ідентифікатор показника"
750
 
751
- #: includes/class-cntctfrm-settings.php:924
752
  #, php-format
753
  msgid ""
754
  "Enter your %sMeasurement ID%s to track contact form submissions in Google "
@@ -757,100 +758,95 @@ msgstr ""
757
  "Введіть свій %sMeasurement ID%s для відстеження поданих контактних форм у "
758
  "Google Analytics."
759
 
760
- #: includes/class-cntctfrm-settings.php:925
761
  msgid "Google Analytics version 4 is required."
762
  msgstr "Потрібна версія Google Analytics 4."
763
 
764
  # @ contact_form
765
- #: includes/class-cntctfrm-settings.php:933
766
- msgid "If you upgrade to Pro version all your settings will be saved."
767
- msgstr "Якщо ви перейдете на Pro версію, всі налаштування будуть збережені."
768
-
769
- # @ contact_form
770
- #: includes/class-cntctfrm-settings.php:946
771
  msgid "Add to the form"
772
  msgstr "Додати до форми"
773
 
774
  # @ contact_form
775
- #: includes/class-cntctfrm-settings.php:951
776
  msgid "Tips below the Attachment"
777
  msgstr "Показувати підказки під блоком прикріплених файлів"
778
 
779
  # @ contact_form
780
- #: includes/class-cntctfrm-settings.php:958
781
  msgid "'Send me a copy' block"
782
  msgstr "Блок \"Надіслати мені копію\""
783
 
784
- #: includes/class-cntctfrm-settings.php:965
785
  msgid "GDPR Compliance"
786
  msgstr "Згода з GDPR"
787
 
788
- #: includes/class-cntctfrm-settings.php:970
789
  msgid "Link to Privacy Policy Page"
790
  msgstr "Посилання на сторінку політики конфіденційності"
791
 
792
- #: includes/class-cntctfrm-settings.php:998
793
  msgid "Activate for network"
794
  msgstr "Активувати для мережі"
795
 
796
  # @ contact_form
797
- #: includes/class-cntctfrm-settings.php:1088
798
  msgid "Agreement checkbox"
799
  msgstr "Чекбокс для погодження"
800
 
801
  # @ contact_form
802
- #: includes/class-cntctfrm-settings.php:1088
803
  msgid "Required checkbox for submitting the form"
804
  msgstr "Необхідний чекбокс для відправки форми"
805
 
806
  # @ contact_form
807
- #: includes/class-cntctfrm-settings.php:1089
808
  msgid "Optional checkbox"
809
  msgstr "Додатковий чекбокс"
810
 
811
  # @ contact_form
812
- #: includes/class-cntctfrm-settings.php:1089
813
  msgid "Optional checkbox, the results of which will be displayed in email"
814
  msgstr ""
815
  "Додатковий чекбокс, результати якого буде відображено у еmail-повідомленні"
816
 
817
  # @ contact_form
818
- #: includes/class-cntctfrm-settings.php:1104
819
  msgid "Delete an attachment file from the server after the email is sent"
820
  msgstr ""
821
  "Видаляти прикріплений файл з серверу після того, як повідомлення відправлено"
822
 
823
  # @ contact_form
824
- #: includes/class-cntctfrm-settings.php:1110
825
  msgid "Email in HTML format sending"
826
  msgstr "Відправка повідомлення в форматі HTML"
827
 
828
  # @ contact_form
829
- #: includes/class-cntctfrm-settings.php:1114
830
  msgid "Display additional info in the email"
831
  msgstr "Відображати додаткову інформацію у повідомленні"
832
 
833
  # @ contact_form
834
- #: includes/class-cntctfrm-settings.php:1121
835
  msgid "Sent from (IP address)"
836
  msgstr "Надіслано від (IP адреса)"
837
 
838
- #: includes/class-cntctfrm-settings.php:1121
839
  msgid "Example: Sent from (IP address): 127.0.0.1"
840
  msgstr "Приклад: відправлено з (IP адреси): 127.0.0.1"
841
 
842
- #: includes/class-cntctfrm-settings.php:1122
843
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
844
  msgstr "Приклад: Дата/Час: 19 Серпня, 2013 20:50"
845
 
846
- #: includes/class-cntctfrm-settings.php:1123
847
  msgid ""
848
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
849
  msgstr ""
850
  "Приклад: відправлено з (referer): https://bestwebsoft.com/contacts/contact-"
851
  "us/"
852
 
853
- #: includes/class-cntctfrm-settings.php:1124
854
  msgid ""
855
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
856
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -859,84 +855,84 @@ msgstr ""
859
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
860
 
861
  # @ contact_form
862
- #: includes/class-cntctfrm-settings.php:1130
863
  msgid "Language Settings"
864
  msgstr "Налаштування мови"
865
 
866
  # @ contact_form
867
- #: includes/class-cntctfrm-settings.php:1140
868
  msgid "Add a language"
869
  msgstr "Додати мову"
870
 
871
  # @ contact_form
872
- #: includes/class-cntctfrm-settings.php:1144
873
  msgid "Change the names of the contact form fields and error messages"
874
  msgstr "Змінити імена полів контактної форми і повідомлення про помилку"
875
 
876
  # @ contact_form
877
- #: includes/class-cntctfrm-settings.php:1150
878
- #: includes/class-cntctfrm-settings.php:1252
879
- #: includes/class-cntctfrm-settings.php:1360
880
  msgid "Default"
881
  msgstr "Стандартно"
882
 
883
  # @ contact_form
884
- #: includes/class-cntctfrm-settings.php:1163
885
- #: includes/class-cntctfrm-settings.php:1203
886
  msgid "click to expand/hide the list"
887
  msgstr "натиснути, щоб розгорнути/згорнути список"
888
 
889
  # @ contact_form
890
- #: includes/class-cntctfrm-settings.php:1172
891
- #: includes/class-cntctfrm-settings.php:1212
892
  msgid "Tips below the Attachment block"
893
  msgstr "Підказки під блоком прикріплення файлів"
894
 
895
  # @ contact_form
896
- #: includes/class-cntctfrm-settings.php:1177
897
- #: includes/class-cntctfrm-settings.php:1217
898
  msgid "Error message for the Name field"
899
  msgstr "Повідомлення про помилку для поля Ім'я"
900
 
901
  # @ contact_form
902
- #: includes/class-cntctfrm-settings.php:1178
903
- #: includes/class-cntctfrm-settings.php:1218
904
  msgid "Error message for the Address field"
905
  msgstr "Повідомлення про помилку для поля Адреса"
906
 
907
  # @ contact_form
908
- #: includes/class-cntctfrm-settings.php:1179
909
- #: includes/class-cntctfrm-settings.php:1219
910
  msgid "Error message for the Email field"
911
  msgstr "Повідомлення про помилку для поля Email"
912
 
913
  # @ contact_form
914
- #: includes/class-cntctfrm-settings.php:1180
915
- #: includes/class-cntctfrm-settings.php:1220
916
  msgid "Error message for the Phone field"
917
  msgstr "Повідомлення про помилку для поля Номер телефону"
918
 
919
  # @ contact_form
920
- #: includes/class-cntctfrm-settings.php:1181
921
- #: includes/class-cntctfrm-settings.php:1221
922
  msgid "Error message for the Subject field"
923
  msgstr "Повідомлення про помилку для поля Тема"
924
 
925
  # @ contact_form
926
- #: includes/class-cntctfrm-settings.php:1182
927
- #: includes/class-cntctfrm-settings.php:1222
928
  msgid "Error message for the Message field"
929
  msgstr "Повідомлення про помилку для поля Повідомлення"
930
 
931
  # @ contact_form
932
- #: includes/class-cntctfrm-settings.php:1183
933
- #: includes/class-cntctfrm-settings.php:1223
934
  msgid "Error message about the file type for the Attachment field"
935
  msgstr "Повідомлення про помилку для поля Прикріплені файли"
936
 
937
  # @ contact_form
938
- #: includes/class-cntctfrm-settings.php:1184
939
- #: includes/class-cntctfrm-settings.php:1224
940
  msgid ""
941
  "Error message while uploading a file for the Attachment field to the server"
942
  msgstr ""
@@ -944,64 +940,64 @@ msgstr ""
944
  "Прикріплені файли"
945
 
946
  # @ contact_form
947
- #: includes/class-cntctfrm-settings.php:1185
948
- #: includes/class-cntctfrm-settings.php:1225
949
  msgid "Error message while moving the file for the Attachment field"
950
  msgstr ""
951
  "Повідомлення про помилку під час переміщення файлу для поля Прикріплені файли"
952
 
953
  # @ contact_form
954
- #: includes/class-cntctfrm-settings.php:1186
955
- #: includes/class-cntctfrm-settings.php:1226
956
  msgid "Error message when file size limit for the Attachment field is exceeded"
957
  msgstr ""
958
  "Повідомлення про помилку для поля Прикріплені файли, коли розмір файлу "
959
  "перевищує допустимий"
960
 
961
  # @ contact_form
962
- #: includes/class-cntctfrm-settings.php:1187
963
- #: includes/class-cntctfrm-settings.php:1227
964
  msgid "Error message for the Captcha field"
965
  msgstr "Повідомлення про помилку для поля Captcha"
966
 
967
  # @ contact_form
968
- #: includes/class-cntctfrm-settings.php:1188
969
- #: includes/class-cntctfrm-settings.php:1228
970
  msgid "Error message for the whole form"
971
  msgstr "Повідомлення про помилку для всієї форми"
972
 
973
  # @ contact_form
974
- #: includes/class-cntctfrm-settings.php:1242
975
  msgid "Use the changed names of the contact form fields in the email"
976
  msgstr "Використовувати змінені імена полів контактної форми у повідомленні"
977
 
978
  # @ contact_form
979
- #: includes/class-cntctfrm-settings.php:1248
980
  msgid "Action after email is sent"
981
  msgstr "Дія після відправлення листа з контактної форми"
982
 
983
  # @ contact_form
984
- #: includes/class-cntctfrm-settings.php:1250
985
  msgid "Display text"
986
  msgstr "Показати текст"
987
 
988
  # @ contact_form
989
- #: includes/class-cntctfrm-settings.php:1265
990
- #: includes/class-cntctfrm-settings.php:1279
991
  msgid "Text"
992
  msgstr "Текст"
993
 
994
  # @ contact_form
995
- #: includes/class-cntctfrm-settings.php:1291
996
  msgid "Redirect to the page"
997
  msgstr "Перенаправлення на сторінку"
998
 
999
  # @ contact_form
1000
- #: includes/class-cntctfrm-settings.php:1293
1001
  msgid "Url"
1002
  msgstr "Посилання"
1003
 
1004
- #: includes/class-cntctfrm-settings.php:1314
1005
  #, php-format
1006
  msgid ""
1007
  "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
@@ -1010,244 +1006,248 @@ msgstr ""
1010
  "Будь ласка, увімкніть JavaScript щоб змінити опції '%s', '%s', '%s', '%s' та "
1011
  "для сортування полів."
1012
 
1013
- #: includes/class-cntctfrm-settings.php:1315
1014
- #: includes/class-cntctfrm-settings.php:1332
1015
  msgid "Form layout"
1016
  msgstr "Шаблон форми"
1017
 
1018
  # @ contact_form
1019
- #: includes/class-cntctfrm-settings.php:1316
1020
- #: includes/class-cntctfrm-settings.php:1399
1021
  msgid "Labels position"
1022
  msgstr "Розташування імен полів"
1023
 
1024
- #: includes/class-cntctfrm-settings.php:1317
1025
- #: includes/class-cntctfrm-settings.php:1417
1026
  msgid "Labels align"
1027
  msgstr "Вирівнювання імен полів"
1028
 
1029
  # @ contact_form
1030
- #: includes/class-cntctfrm-settings.php:1318
1031
- #: includes/class-cntctfrm-settings.php:1344
1032
  msgid "Submit position"
1033
  msgstr "Позиція кнопки 'Відправити'"
1034
 
1035
  # @ contact_form
1036
- #: includes/class-cntctfrm-settings.php:1319
1037
- #: includes/class-cntctfrm-settings.php:1448
1038
  msgid "Add tooltips"
1039
  msgstr "Додати підказки"
1040
 
1041
  # @ contact_form
1042
- #: includes/class-cntctfrm-settings.php:1320
1043
- #: includes/class-cntctfrm-settings.php:1489
1044
  msgid "Style options"
1045
  msgstr "Опції стилю"
1046
 
1047
- #: includes/class-cntctfrm-settings.php:1336
1048
  msgid "One column"
1049
  msgstr "Одна колонка"
1050
 
1051
- #: includes/class-cntctfrm-settings.php:1339
1052
  msgid "Two columns"
1053
  msgstr "Дві колонки"
1054
 
1055
- #: includes/class-cntctfrm-settings.php:1348
1056
- #: includes/class-cntctfrm-settings.php:1388
1057
- #: includes/class-cntctfrm-settings.php:1406
1058
- #: includes/class-cntctfrm-settings.php:1421
1059
  msgid "Left"
1060
  msgstr "Ліворуч"
1061
 
1062
- #: includes/class-cntctfrm-settings.php:1351
1063
- #: includes/class-cntctfrm-settings.php:1394
1064
- #: includes/class-cntctfrm-settings.php:1409
1065
- #: includes/class-cntctfrm-settings.php:1427
1066
  msgid "Right"
1067
  msgstr "Праворуч"
1068
 
1069
- #: includes/class-cntctfrm-settings.php:1356
1070
  msgid "Width"
1071
  msgstr "Ширина"
1072
 
1073
- #: includes/class-cntctfrm-settings.php:1364
1074
  msgid "Custom"
1075
  msgstr "Користувацька"
1076
 
1077
- #: includes/class-cntctfrm-settings.php:1371
1078
  msgid "px"
1079
  msgstr "пікс"
1080
 
1081
- #: includes/class-cntctfrm-settings.php:1384
1082
  msgid "Form align"
1083
  msgstr "Вирівнювання форми"
1084
 
1085
- #: includes/class-cntctfrm-settings.php:1391
1086
- #: includes/class-cntctfrm-settings.php:1424
1087
  msgid "Center"
1088
  msgstr "По центру"
1089
 
1090
- #: includes/class-cntctfrm-settings.php:1403
1091
  msgid "Top"
1092
  msgstr "Зверху"
1093
 
1094
- #: includes/class-cntctfrm-settings.php:1412
1095
  msgid "Bottom"
1096
  msgstr "Знизу"
1097
 
1098
  # @ contact_form
1099
- #: includes/class-cntctfrm-settings.php:1432
1100
  msgid "Errors output"
1101
  msgstr "Відображення помилок"
1102
 
1103
  # @ contact_form
1104
- #: includes/class-cntctfrm-settings.php:1435
1105
  msgid "Display error messages"
1106
  msgstr "Відображати повідомлення про помилки"
1107
 
1108
  # @ contact_form
1109
- #: includes/class-cntctfrm-settings.php:1436
1110
  msgid "Color of the input field errors."
1111
  msgstr "Колір для помилок у полях введення."
1112
 
1113
  # @ contact_form
1114
- #: includes/class-cntctfrm-settings.php:1437
1115
  msgid "Display error messages & color of the input field errors"
1116
  msgstr ""
1117
  "Відображення повідомлень про помилку і колір для полів з помилками у полях "
1118
  "введення"
1119
 
1120
  # @ contact_form
1121
- #: includes/class-cntctfrm-settings.php:1442
1122
  msgid "Add placeholder to the input blocks"
1123
  msgstr "Додати текст заповнювача для блоків введення"
1124
 
1125
  # @ contact_form
1126
- #: includes/class-cntctfrm-settings.php:1462
1127
  msgid "Email address"
1128
  msgstr "Email"
1129
 
1130
  # @ contact_form
1131
- #: includes/class-cntctfrm-settings.php:1493
1132
  msgid "Text color"
1133
  msgstr "Колір тексту"
1134
 
1135
  # @ contact_form
1136
- #: includes/class-cntctfrm-settings.php:1498
1137
- #: includes/class-cntctfrm-settings.php:1507
1138
- #: includes/class-cntctfrm-settings.php:1520
1139
- #: includes/class-cntctfrm-settings.php:1528
1140
- #: includes/class-cntctfrm-settings.php:1536
1141
- #: includes/class-cntctfrm-settings.php:1544
1142
- #: includes/class-cntctfrm-settings.php:1557
1143
- #: includes/class-cntctfrm-settings.php:1565
1144
- #: includes/class-cntctfrm-settings.php:1577
1145
- #: includes/class-cntctfrm-settings.php:1594
1146
- #: includes/class-cntctfrm-settings.php:1602
1147
- #: includes/class-cntctfrm-settings.php:1610
1148
  msgid "Select Color"
1149
  msgstr "Вибрати колір"
1150
 
1151
  # @ contact_form
1152
- #: includes/class-cntctfrm-settings.php:1501
1153
  msgid "Label text color"
1154
  msgstr "Колір написів"
1155
 
1156
  # @ contact_form
1157
- #: includes/class-cntctfrm-settings.php:1510
1158
  msgid "Placeholder color"
1159
  msgstr "Колір тексту заповнювача"
1160
 
1161
  # @ contact_form
1162
- #: includes/class-cntctfrm-settings.php:1515
1163
  msgid "Errors color"
1164
  msgstr "Колір помилок"
1165
 
1166
  # @ contact_form
1167
- #: includes/class-cntctfrm-settings.php:1523
1168
  msgid "Error text color"
1169
  msgstr "Колір тексту помилок"
1170
 
1171
  # @ contact_form
1172
- #: includes/class-cntctfrm-settings.php:1531
1173
  msgid "Background color of the input field errors"
1174
  msgstr "Колір заднього фону для полів введення з помилками"
1175
 
1176
  # @ contact_form
1177
- #: includes/class-cntctfrm-settings.php:1539
1178
  msgid "Border color of the input field errors"
1179
  msgstr "Колір рамки для полів введення з помилками"
1180
 
1181
  # @ contact_form
1182
- #: includes/class-cntctfrm-settings.php:1547
1183
  msgid "Placeholder color of the input field errors"
1184
  msgstr "Колір тексту заповнювача для полів введення з помилками"
1185
 
1186
  # @ contact_form
1187
- #: includes/class-cntctfrm-settings.php:1552
1188
  msgid "Input fields"
1189
  msgstr "Поля введення тексту"
1190
 
1191
  # @ contact_form
1192
- #: includes/class-cntctfrm-settings.php:1560
1193
  msgid "Input fields background color"
1194
  msgstr "Колір фону полів введення"
1195
 
1196
  # @ contact_form
1197
- #: includes/class-cntctfrm-settings.php:1568
1198
  msgid "Text fields color"
1199
  msgstr "Колір текстових полів"
1200
 
1201
  # @ contact_form
1202
- #: includes/class-cntctfrm-settings.php:1572
1203
  msgid "Border width in px, numbers only"
1204
  msgstr "Ширина рамки в пікселях, тільки числа"
1205
 
1206
  # @ contact_form
1207
- #: includes/class-cntctfrm-settings.php:1580
1208
- #: includes/class-cntctfrm-settings.php:1613
1209
  msgid "Border color"
1210
  msgstr "Колір рамки"
1211
 
1212
  # @ contact_form
1213
- #: includes/class-cntctfrm-settings.php:1585
1214
  msgid "Submit button"
1215
  msgstr "Кнопка підтвердження"
1216
 
1217
  # @ contact_form
1218
- #: includes/class-cntctfrm-settings.php:1589
1219
  msgid "Width in px, numbers only"
1220
  msgstr "Ширина в пікселях, тільки числа"
1221
 
1222
  # @ contact_form
1223
- #: includes/class-cntctfrm-settings.php:1597
1224
  msgid "Button color"
1225
  msgstr "Колір кнопок"
1226
 
1227
  # @ contact_form
1228
- #: includes/class-cntctfrm-settings.php:1605
1229
  msgid "Button text color"
1230
  msgstr "Колір тексту кнопок"
1231
 
1232
  # @ contact_form
1233
- #: includes/class-cntctfrm-settings.php:1632
1234
  msgid "Contact Form | Preview"
1235
  msgstr "Contact Form | Попередній перегляд"
1236
 
1237
- #: includes/class-cntctfrm-settings.php:1633
1238
  msgid "Drag the necessary field to sort fields."
1239
  msgstr "Перетягніть необхідне поле для сортування полів."
1240
 
1241
- #: includes/class-cntctfrm-settings.php:1880
1242
  msgid "Contact Form Shortcode"
1243
  msgstr "Шорткод Contact Form"
1244
 
1245
- #: includes/class-cntctfrm-settings.php:1883
1246
  msgid "Add Contact Form to your page or post using the following shortcode:"
1247
  msgstr ""
1248
  "Додайте Contact Form на свою сторінку або пост, використовуючи такий "
1249
  "шорткод:"
1250
 
 
 
 
 
1251
  #~ msgid "Measurement ID"
1252
  #~ msgstr "Ідентифікатор показника"
1253
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-04-05 16:06+0300\n"
6
+ "PO-Revision-Date: 2021-04-05 16:06+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"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 2.3\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Textdomain-Support: yes\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
  "X-Poedit-SearchPathExcluded-0: bws_menu\n"
20
 
21
  # @ contact_form
22
+ #: contact_form.php:39 contact_form.php:48 contact_form.php:831
23
+ #: includes/class-cntctfrm-settings.php:433
24
  msgid "Contact Form Settings"
25
  msgstr "Налаштування Contact Form"
26
 
27
  # @ contact_form
28
+ #: contact_form.php:49 contact_form.php:1864 contact_form.php:1878
29
+ #: includes/class-cntctfrm-settings.php:23
30
  msgid "Settings"
31
  msgstr "Налаштування"
32
 
33
+ #: contact_form.php:72
 
 
 
34
  msgid "Upgrade to Pro"
35
  msgstr "Оновитися до Pro"
36
 
37
  # @ contact_form
38
+ #: contact_form.php:529 contact_form.php:1637 contact_form.php:1684
39
+ #: includes/class-cntctfrm-settings.php:572
40
+ #: includes/class-cntctfrm-settings.php:670
41
+ #: includes/class-cntctfrm-settings.php:1202
42
+ #: includes/class-cntctfrm-settings.php:1242
43
+ #: includes/class-cntctfrm-settings.php:1486
44
  msgid "Name"
45
  msgstr "Ім'я"
46
 
47
  # @ contact_form
48
+ #: contact_form.php:530 contact_form.php:1644 contact_form.php:1690
49
+ #: includes/class-cntctfrm-settings.php:722
50
+ #: includes/class-cntctfrm-settings.php:1203
51
+ #: includes/class-cntctfrm-settings.php:1243
52
+ #: includes/class-cntctfrm-settings.php:1491
53
  msgid "Address"
54
  msgstr "Адреса"
55
 
56
  # @ contact_form
57
+ #: contact_form.php:531 includes/class-cntctfrm-settings.php:744
58
+ #: includes/class-cntctfrm-settings.php:1204
59
+ #: includes/class-cntctfrm-settings.php:1244
60
  msgid "Email Address"
61
  msgstr "Email"
62
 
63
  # @ contact_form
64
+ #: contact_form.php:532 includes/class-cntctfrm-settings.php:770
65
+ #: includes/class-cntctfrm-settings.php:1205
66
+ #: includes/class-cntctfrm-settings.php:1245
67
  msgid "Phone number"
68
  msgstr "Номер телефону"
69
 
70
  # @ contact_form
71
+ #: contact_form.php:533 contact_form.php:1655 contact_form.php:1699
72
+ #: includes/class-cntctfrm-settings.php:792
73
+ #: includes/class-cntctfrm-settings.php:1206
74
+ #: includes/class-cntctfrm-settings.php:1246
75
+ #: includes/class-cntctfrm-settings.php:1506
76
  msgid "Subject"
77
  msgstr "Тема"
78
 
79
  # @ contact_form
80
+ #: contact_form.php:534 contact_form.php:1660 contact_form.php:1703
81
+ #: includes/class-cntctfrm-settings.php:827
82
+ #: includes/class-cntctfrm-settings.php:1207
83
+ #: includes/class-cntctfrm-settings.php:1247
84
+ #: includes/class-cntctfrm-settings.php:1510
85
  msgid "Message"
86
  msgstr "Повідомлення"
87
 
88
  # @ contact_form
89
+ #: contact_form.php:535 includes/class-cntctfrm-settings.php:1208
90
+ #: includes/class-cntctfrm-settings.php:1248
91
+ #: includes/class-cntctfrm-settings.php:1515
92
  msgid "Attachment"
93
  msgstr "Вкладений файл"
94
 
95
  # @ contact_form
96
+ #: contact_form.php:536
97
  msgid ""
98
  "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
99
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
103
  "PPT."
104
 
105
  # @ contact_form
106
+ #: contact_form.php:537 includes/class-cntctfrm-settings.php:1210
107
+ #: includes/class-cntctfrm-settings.php:1250
108
  msgid "Send me a copy"
109
  msgstr "Надіслати мені копію"
110
 
111
+ #: contact_form.php:538 includes/class-cntctfrm-settings.php:1211
112
+ #: includes/class-cntctfrm-settings.php:1251
113
  msgid "I consent to having this site collect my personal data."
114
  msgstr "Я дозволяю цьому сайту збирати мої особисті дані."
115
 
116
  # @ contact_form
117
+ #: contact_form.php:539 contact_form.php:1958
118
+ #: includes/class-cntctfrm-settings.php:1212
119
+ #: includes/class-cntctfrm-settings.php:1252
120
  msgid "Learn more"
121
  msgstr "Дізнатись більше"
122
 
123
  # @ contact_form
124
+ #: contact_form.php:540 includes/class-cntctfrm-settings.php:1213
125
+ #: includes/class-cntctfrm-settings.php:1253
126
  msgid "Submit"
127
  msgstr "Підтвердити"
128
 
129
  # @ contact_form
130
+ #: contact_form.php:541
131
  msgid "Your name is required."
132
  msgstr "Необхідно вказати своє ім'я."
133
 
134
  # @ contact_form
135
+ #: contact_form.php:542
136
  msgid "Address is required."
137
  msgstr "Необхідно вказати свою адресу."
138
 
139
  # @ contact_form
140
+ #: contact_form.php:543
141
  msgid "A valid email address is required."
142
  msgstr "Необхідно вказати коректну email-адресу."
143
 
144
  # @ contact_form
145
+ #: contact_form.php:544
146
  msgid "Phone number is required."
147
  msgstr "Необхідно вказати номер телефону."
148
 
149
  # @ contact_form
150
+ #: contact_form.php:545
151
  msgid "Subject is required."
152
  msgstr "Необхідно вказати тему."
153
 
154
  # @ contact_form
155
+ #: contact_form.php:546
156
  msgid "Message text is required."
157
  msgstr "Повідомлення не може бути порожнім."
158
 
159
  # @ contact_form
160
+ #: contact_form.php:547
161
  msgid "File format is not valid."
162
  msgstr "Некоректний формат файлу."
163
 
164
  # @ contact_form
165
+ #: contact_form.php:548
166
  msgid "File upload error."
167
  msgstr "Помилка завантаження файлу."
168
 
169
  # @ contact_form
170
+ #: contact_form.php:549
171
  msgid "The file could not be uploaded."
172
  msgstr "Неможна завантажити файл."
173
 
174
  # @ contact_form
175
+ #: contact_form.php:550
176
  msgid "This file is too large."
177
  msgstr "Файл занадто великий."
178
 
179
  # @ contact_form
180
+ #: contact_form.php:551
181
  msgid "Please fill out the CAPTCHA."
182
  msgstr "Будь ласка, введіть CAPTCHA."
183
 
184
  # @ contact_form
185
+ #: contact_form.php:552
186
  msgid "Please make corrections below and try again."
187
  msgstr "Будь ласка, внесіть поправки у виділені поля і спробуйте знову."
188
 
189
  # @ contact_form
190
+ #: contact_form.php:554
191
  msgid "Thank you for contacting us."
192
  msgstr "Дякуємо, що зв'язалися з нами."
193
 
194
+ #: contact_form.php:835
195
  msgid "NEW_FORM"
196
  msgstr "НОВА_ФОРМА"
197
 
198
  # @ contact_form
199
+ #: contact_form.php:836
200
  msgid ""
201
  "If you want to create multiple contact forms, please install the Contact "
202
  "Form Multi plugin."
204
  "Якщо ви хочете створити декілька різних контактних форм, будь ласка, "
205
  "встановіть плагін Contact Form Multi."
206
 
207
+ #: contact_form.php:841
208
  msgid ""
209
  "Contact Form plugin doesn't support your current version of Contact Form "
210
  "Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
214
  "Будь ласка, оновіть плагін Contact Form Multi до версії 1.2.6 або вище."
215
 
216
  # @ contact_form
217
+ #: contact_form.php:943
218
  msgid "Sorry, email message could not be delivered."
219
  msgstr "Вибачте, ваше повідомлення не може бути доставлено."
220
 
221
  # @ contact_form
222
+ #: contact_form.php:1593 contact_form.php:1595
223
  msgid "Sent from (ip address)"
224
  msgstr "Надіслано від (IP адреса)"
225
 
226
  # @ contact_form
227
+ #: contact_form.php:1599 contact_form.php:1601
228
+ #: includes/class-cntctfrm-settings.php:1159
229
  msgid "Date/Time"
230
  msgstr "Дата/Час"
231
 
232
  # @ contact_form
233
+ #: contact_form.php:1605 contact_form.php:1607
234
+ #: includes/class-cntctfrm-settings.php:1160
235
  msgid "Sent from (referer)"
236
  msgstr "Надіслано від (referer)"
237
 
238
  # @ contact_form
239
+ #: contact_form.php:1611 contact_form.php:1613
240
+ #: includes/class-cntctfrm-settings.php:1161
241
  msgid "Using (user agent)"
242
  msgstr "Використовується (user agent)"
243
 
244
  # @ contact_form
245
+ #: contact_form.php:1623
246
  msgid "Contact from"
247
  msgstr "Контакт із"
248
 
249
  # @ contact_form
250
+ #: contact_form.php:1628 contact_form.php:1678
251
  msgid "Site"
252
  msgstr "Сайт"
253
 
254
  # @ contact_form
255
+ #: contact_form.php:1650 contact_form.php:1695
256
+ #: includes/class-cntctfrm-settings.php:596
257
  msgid "Email"
258
  msgstr "Email"
259
 
260
  # @ contact_form
261
+ #: contact_form.php:1666 contact_form.php:1708
262
+ #: includes/class-cntctfrm-settings.php:1501
263
  msgid "Phone Number"
264
  msgstr "Номер телефону"
265
 
266
  # @ contact_form
267
+ #: contact_form.php:1807
268
  msgid ""
269
  "If you can see this MIME, it means that the MIME type is not supported by "
270
  "your email client!"
273
  "поштовим клієнтом!"
274
 
275
  # @ contact_form
276
+ #: contact_form.php:1879
277
  msgid "FAQ"
278
  msgstr "FAQ"
279
 
280
  # @ contact_form
281
+ #: contact_form.php:1880
282
  msgid "Support"
283
  msgstr "Підтримка"
284
 
285
  # @ contact_form
286
+ #: contact_form.php:1930
287
  msgid "Are you sure that you want to delete this language data?"
288
  msgstr "Ви справді хочете видалити дані для цієї мови?"
289
 
290
  # @ contact_form
291
+ #: contact_form.php:1953
292
  msgid "Add multiple forms"
293
  msgstr "Додати декілька форм"
294
 
295
+ #: contact_form.php:1953
296
  msgid ""
297
  "Install Contact Form Multi plugin to create unlimited number of contact "
298
  "forms."
300
  "Встановити плагін Contact Form Multi, щоб мати можливість створювати "
301
  "необмежену кількість контактних форм."
302
 
303
+ #: contact_form.php:1962 includes/class-cntctfrm-settings.php:477
304
+ #: includes/class-cntctfrm-settings.php:923
305
+ #: includes/class-cntctfrm-settings.php:1125
306
+ #: includes/class-cntctfrm-settings.php:1414
307
  msgid "Close"
308
  msgstr "Закрити"
309
 
310
+ #: contact_form.php:2016
311
  msgid "Error"
312
  msgstr "Помилка"
313
 
314
+ #: contact_form.php:2016 contact_form.php:2018
315
  msgid "Illegal language code"
316
  msgstr "Нелегальний язиковий код"
317
 
318
  # @ contact_form
319
+ #: contact_form.php:2052 contact_form.php:2054
320
+ #: includes/class-cntctfrm-settings.php:1228
321
+ #: includes/class-cntctfrm-settings.php:1230
322
+ #: includes/class-cntctfrm-settings.php:1268
323
+ #: includes/class-cntctfrm-settings.php:1270
324
+ #: includes/class-cntctfrm-settings.php:1304
325
+ #: includes/class-cntctfrm-settings.php:1306
326
+ #: includes/class-cntctfrm-settings.php:1318
327
+ #: includes/class-cntctfrm-settings.php:1320
328
  msgid "Use shortcode"
329
  msgstr "Використовуйте шорткод"
330
 
331
  # @ contact_form
332
+ #: contact_form.php:2052 contact_form.php:2054
333
+ #: includes/class-cntctfrm-settings.php:1228
334
+ #: includes/class-cntctfrm-settings.php:1230
335
+ #: includes/class-cntctfrm-settings.php:1268
336
+ #: includes/class-cntctfrm-settings.php:1270
337
+ #: includes/class-cntctfrm-settings.php:1304
338
+ #: includes/class-cntctfrm-settings.php:1306
339
+ #: includes/class-cntctfrm-settings.php:1318
340
+ #: includes/class-cntctfrm-settings.php:1320
341
  msgid "for this language"
342
  msgstr "для цієї мови"
343
 
344
+ #: contact_form.php:2202
345
  msgid "Close notice"
346
  msgstr "Закрити"
347
 
348
  # @ contact_form
349
+ #: contact_form.php:2207
350
  msgid "allows to store your messages to the database."
351
  msgstr "дозволяє зберігати ваші повідомлення у базі даних."
352
 
353
  # @ contact_form
354
+ #: contact_form.php:2208
355
  msgid "Manage messages that have been sent from your website."
356
  msgstr "Контролювати повідомлення, які було відправлено з Вашого сайту."
357
 
358
  # @ contact_form
359
+ #: contact_form.php:2211
360
  msgid "Learn More"
361
  msgstr "Дізнатись більше"
362
 
363
  # @ contact_form
364
+ #: contact_form.php:2271
365
  msgid "Contact form"
366
  msgstr "Контактна форма"
367
 
368
  # @ contact_form
369
+ #: contact_form.php:2284 contact_form.php:2294
370
  msgid "Language"
371
  msgstr "Мова"
372
 
373
+ #: includes/class-cntctfrm-settings.php:24
374
+ #: includes/class-cntctfrm-settings.php:544
375
  msgid "Additional Settings"
376
  msgstr "Додаткові Налаштування"
377
 
378
+ #: includes/class-cntctfrm-settings.php:25
379
+ #: includes/class-cntctfrm-settings.php:1339
380
  msgid "Appearance"
381
  msgstr "Відображення"
382
 
383
+ #: includes/class-cntctfrm-settings.php:26
384
  msgid "Misc"
385
  msgstr "Різне"
386
 
387
+ #: includes/class-cntctfrm-settings.php:27
388
  msgid "Custom Code"
389
  msgstr "Користувацький код"
390
 
391
+ #: includes/class-cntctfrm-settings.php:29
392
  msgid "License Key"
393
  msgstr "Ліцензійний ключ"
394
 
395
+ #: includes/class-cntctfrm-settings.php:103
396
  msgid "Please enable JavaScript in your browser."
397
  msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
398
 
399
+ #: includes/class-cntctfrm-settings.php:105
400
  #, php-format
401
  msgid ""
402
  "Contact Form plugin requires PHP %s or higher. Please contact your hosting "
405
  "Для плагіна Contact Form необхідний PHP %s або вище. Будь ласка зверніться "
406
  "до свого хостинг-провайдера для оновлення версії PHP."
407
 
408
+ #: includes/class-cntctfrm-settings.php:355
409
  msgid ""
410
  "Email 'FROM' field option was changed, which may cause email messages being "
411
  "moved to the spam folder or email delivery failures."
414
  "повідомлення не будуть доставлені або потраплять до папки Спам."
415
 
416
  # @ contact_form
417
+ #: includes/class-cntctfrm-settings.php:365
418
  msgid ""
419
  "If the 'Redirect to page' option is selected then the URL field should be in "
420
  "the following format"
423
  "бути заповнене в наступному форматі"
424
 
425
  # @ contact_form
426
+ #: includes/class-cntctfrm-settings.php:372
427
  msgid "Such user does not exist."
428
  msgstr "Такого користувача не існує."
429
 
430
  # @ contact_form
431
+ #: includes/class-cntctfrm-settings.php:382
432
  msgid ""
433
  "Please enter a valid email address in the 'Use this email address' field."
434
  msgstr ""
435
  "Будь ласка, введіть коректну email-адресу у поле 'Використовувати цей email'."
436
 
437
  # @ contact_form
438
+ #: includes/class-cntctfrm-settings.php:390
439
  msgid "Please enter a valid email address in the 'FROM' field."
440
  msgstr "Будь ласка, введіть коректну email-адресу у полі \"Від\"."
441
 
442
  # @ contact_form
443
+ #: includes/class-cntctfrm-settings.php:410
444
  msgid "Settings saved."
445
  msgstr "Налаштування збережено."
446
 
447
  # @ contact_form
448
+ #: includes/class-cntctfrm-settings.php:412
449
  msgid "Settings are not saved."
450
  msgstr "Налаштування не збережено."
451
 
452
  # @ contact_form
453
+ #: includes/class-cntctfrm-settings.php:437
454
  msgid ""
455
  "If you leave the fields empty, the messages will be sent to the email "
456
  "address specified during registration."
459
  "адресу, вказану під час реєстрації."
460
 
461
  # @ contact_form
462
+ #: includes/class-cntctfrm-settings.php:440
463
  msgid "The user's email address"
464
  msgstr "Email-адреса користувача"
465
 
466
  # @ contact_form
467
+ #: includes/class-cntctfrm-settings.php:445
468
  msgid "Select a username"
469
  msgstr "Виберіть ім'я користувача"
470
 
471
  # @ contact_form
472
+ #: includes/class-cntctfrm-settings.php:458
473
  msgid ""
474
  "Select a username of the person who should get the messages from the contact "
475
  "form."
477
  "Виберіть ім'я користувача, що має отримати повідомлення з контактної форми."
478
 
479
  # @ contact_form
480
+ #: includes/class-cntctfrm-settings.php:463
481
  msgid "Use this email address"
482
  msgstr "Використовувати цей email"
483
 
484
  # @ contact_form
485
+ #: includes/class-cntctfrm-settings.php:468
486
  msgid "Enter the email address for receiving messages"
487
  msgstr "Вкажіть email, на який ви бажаєте отримувати повідомлення"
488
 
489
  # @ contact_form
490
+ #: includes/class-cntctfrm-settings.php:481
491
  msgid "Add department selectbox to the contact form"
492
  msgstr "Додати поле для вибору департаменту до контактної форми"
493
 
494
  # @ contact_form
495
+ #: includes/class-cntctfrm-settings.php:495
496
  msgid "Save emails to the database"
497
  msgstr "Зберігати email у базі даних"
498
 
499
  # @ contact_form
500
+ #: includes/class-cntctfrm-settings.php:506
501
+ #: includes/class-cntctfrm-settings.php:520
502
+ #: includes/class-cntctfrm-settings.php:527
503
  msgid "Using"
504
  msgstr "Використовуючи"
505
 
506
+ #: includes/class-cntctfrm-settings.php:512
507
+ #: includes/class-cntctfrm-settings.php:1026
508
+ #: includes/class-cntctfrm-settings.php:1067
509
+ #: includes/class-cntctfrm-settings.php:1102
510
  msgid "Please activate the appropriate option on"
511
  msgstr "Будь ласка, активуйте вiдповiдну опцiю на сторiнцi налаштувань"
512
 
513
  # @ contact_form
514
+ #: includes/class-cntctfrm-settings.php:515
515
+ #: includes/class-cntctfrm-settings.php:1029
516
+ #: includes/class-cntctfrm-settings.php:1070
517
+ #: includes/class-cntctfrm-settings.php:1105
518
  msgid "settings page"
519
  msgstr "налаштування сторінки"
520
 
521
  # @ contact_form
522
+ #: includes/class-cntctfrm-settings.php:521
523
+ #: includes/class-cntctfrm-settings.php:1036
524
+ #: includes/class-cntctfrm-settings.php:1078
525
+ #: includes/class-cntctfrm-settings.php:1112
526
  msgid "Activate"
527
  msgstr "Активувати"
528
 
529
  # @ contact_form
530
+ #: includes/class-cntctfrm-settings.php:528
531
+ #: includes/class-cntctfrm-settings.php:1045
532
+ #: includes/class-cntctfrm-settings.php:1084
533
+ #: includes/class-cntctfrm-settings.php:1117
534
  msgid "Download"
535
  msgstr "Завантажити"
536
 
537
+ #: includes/class-cntctfrm-settings.php:549
538
  msgid "Sending method"
539
  msgstr "Метод відправки"
540
 
541
  # @ contact_form
542
+ #: includes/class-cntctfrm-settings.php:554
543
  msgid "Wp-mail"
544
  msgstr "Wp-mail"
545
 
546
  # @ contact_form
547
+ #: includes/class-cntctfrm-settings.php:555
548
  msgid "You can use the Wordpress wp_mail function for mailing"
549
  msgstr ""
550
  "Для відправлення повідомлень ви можете використовувати Wordpress функцію "
551
  "wp_mail"
552
 
553
  # @ contact_form
554
+ #: includes/class-cntctfrm-settings.php:560
555
  msgid "Mail"
556
  msgstr "Mail"
557
 
558
  # @ contact_form
559
+ #: includes/class-cntctfrm-settings.php:561
560
  msgid "You can use the PHP mail function for mailing"
561
  msgstr ""
562
  "Для відправлення повідомлень ви можете використовувати PHP функцію mail"
563
 
564
+ #: includes/class-cntctfrm-settings.php:567
565
  msgid "'FROM' field"
566
  msgstr "Поле \"Від\""
567
 
568
  # @ contact_form
569
+ #: includes/class-cntctfrm-settings.php:583
570
  msgid "User name"
571
  msgstr "Ім’я користувача"
572
 
573
  # @ contact_form
574
+ #: includes/class-cntctfrm-settings.php:585
575
  msgid ""
576
  "The name of the user who fills the form will be used in the field 'From'."
577
  msgstr ""
578
  "Ім’я користувача, який заповнює форму, буде використано у полі \"Від\"."
579
 
580
  # @ contact_form
581
+ #: includes/class-cntctfrm-settings.php:607
582
  msgid "User email"
583
  msgstr "Email користувача"
584
 
585
  # @ contact_form
586
+ #: includes/class-cntctfrm-settings.php:609
587
  msgid ""
588
  "The email address of the user who fills the form will be used in the field "
589
  "'From'."
590
  msgstr ""
591
  "Email користувача, який заповнює форму, буде використано у полі \"Від\"."
592
 
593
+ #: includes/class-cntctfrm-settings.php:618
594
  msgid ""
595
  "If this option is changed, email messages may be moved to the spam folder or "
596
  "email delivery failures may occur."
599
  "доставлені або потраплять до папки Спам."
600
 
601
  # @ contact_form
602
+ #: includes/class-cntctfrm-settings.php:627
603
  msgid "Required symbol"
604
  msgstr "Обов'язковий символ"
605
 
606
  # @ contact_form
607
+ #: includes/class-cntctfrm-settings.php:637
608
  msgid "Fields"
609
  msgstr "Поля"
610
 
611
  # @ contact_form
612
+ #: includes/class-cntctfrm-settings.php:638
613
+ #: includes/class-cntctfrm-settings.php:657
614
+ #: includes/class-cntctfrm-settings.php:673
615
+ #: includes/class-cntctfrm-settings.php:704
616
+ #: includes/class-cntctfrm-settings.php:725
617
+ #: includes/class-cntctfrm-settings.php:747
618
+ #: includes/class-cntctfrm-settings.php:773
619
+ #: includes/class-cntctfrm-settings.php:798
620
+ #: includes/class-cntctfrm-settings.php:833
621
+ #: includes/class-cntctfrm-settings.php:870
622
+ #: includes/class-cntctfrm-settings.php:931
623
  msgid "Used"
624
  msgstr "Використовується"
625
 
626
  # @ contact_form
627
+ #: includes/class-cntctfrm-settings.php:639
628
+ #: includes/class-cntctfrm-settings.php:661
629
+ #: includes/class-cntctfrm-settings.php:677
630
+ #: includes/class-cntctfrm-settings.php:708
631
+ #: includes/class-cntctfrm-settings.php:729
632
+ #: includes/class-cntctfrm-settings.php:751
633
+ #: includes/class-cntctfrm-settings.php:777
634
+ #: includes/class-cntctfrm-settings.php:804
635
+ #: includes/class-cntctfrm-settings.php:839
636
+ #: includes/class-cntctfrm-settings.php:932
637
  msgid "Required"
638
  msgstr "Обов'язковий"
639
 
640
  # @ contact_form
641
+ #: includes/class-cntctfrm-settings.php:642
642
+ #: includes/class-cntctfrm-settings.php:683
643
+ #: includes/class-cntctfrm-settings.php:755
644
+ #: includes/class-cntctfrm-settings.php:811
645
+ #: includes/class-cntctfrm-settings.php:845
646
+ #: includes/class-cntctfrm-settings.php:933
647
  msgid "Visible"
648
  msgstr "Видимий"
649
 
650
  # @ contact_form
651
+ #: includes/class-cntctfrm-settings.php:643
652
+ #: includes/class-cntctfrm-settings.php:687
653
+ #: includes/class-cntctfrm-settings.php:759
654
+ #: includes/class-cntctfrm-settings.php:815
655
+ #: includes/class-cntctfrm-settings.php:849
656
+ #: includes/class-cntctfrm-settings.php:934
657
  msgid "Disabled for editing"
658
  msgstr "Заборонити для редагування"
659
 
660
  # @ contact_form
661
+ #: includes/class-cntctfrm-settings.php:644
662
+ #: includes/class-cntctfrm-settings.php:714
663
+ #: includes/class-cntctfrm-settings.php:819
664
+ #: includes/class-cntctfrm-settings.php:853
665
  msgid "Field's default value"
666
  msgstr "Стандартне значення поля"
667
 
668
  # @ contact_form
669
+ #: includes/class-cntctfrm-settings.php:654
670
  msgid "Department selectbox"
671
  msgstr "Список відділень"
672
 
673
+ #: includes/class-cntctfrm-settings.php:691
674
  msgid "Use User's name as a default value if the user is logged in."
675
  msgstr ""
676
  "Після входу на сайт використовувати ім'я користувача, як значення за "
677
  "замовчуванням."
678
 
679
+ #: includes/class-cntctfrm-settings.php:692
680
+ #: includes/class-cntctfrm-settings.php:764
681
  msgid ""
682
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
683
  "in users."
686
  "тільки для авторизованих користувачів."
687
 
688
  # @ contact_form
689
+ #: includes/class-cntctfrm-settings.php:701
690
  msgid "Location selectbox"
691
  msgstr "Список розміщень"
692
 
693
+ #: includes/class-cntctfrm-settings.php:763
694
  msgid "Use User's email as a default value if the user is logged in."
695
  msgstr ""
696
  "Після входу на сайт, використовувати еmail користувача, як значення за "
697
  "замовчуванням."
698
 
699
+ #: includes/class-cntctfrm-settings.php:785
700
  #, php-format
701
  msgid ""
702
  "Specify a mask which will be used for the phone validation, where * is a "
706
  "число. Використовуйте лише такі символи: %s"
707
 
708
  # @ contact_form
709
+ #: includes/class-cntctfrm-settings.php:863
710
  msgid "Attachment block"
711
  msgstr "Прикріпити файл"
712
 
713
  # @ contact_form
714
+ #: includes/class-cntctfrm-settings.php:865
715
  msgid "Users can attach the following file formats"
716
  msgstr "Користувачі можуть прикріплювати файли наступних форматів"
717
 
718
+ #: includes/class-cntctfrm-settings.php:888
719
  msgid "Multi-attachment"
720
  msgstr "Прикріпити декілька файлів"
721
 
722
+ #: includes/class-cntctfrm-settings.php:890
723
  msgid "Enable to multiple file selection"
724
  msgstr "Активуйте, щоб дозволити прикріпляти декілька файлів"
725
 
726
+ #: includes/class-cntctfrm-settings.php:917
727
+ msgid "Saving..."
728
+ msgstr ""
729
+
730
+ #: includes/class-cntctfrm-settings.php:929
731
  msgid "Title"
732
  msgstr "Назва"
733
 
734
  # @ contact_form
735
+ #: includes/class-cntctfrm-settings.php:930
736
  msgid "Field Type"
737
  msgstr "Тип поля"
738
 
739
  # @ contact_form
740
+ #: includes/class-cntctfrm-settings.php:935
741
  msgid "Field's default/available value"
742
  msgstr "Стандартне значення поля"
743
 
744
+ #: includes/class-cntctfrm-settings.php:961
745
  msgid "Create Field"
746
  msgstr "Створити поле"
747
 
748
+ #: includes/class-cntctfrm-settings.php:966
749
  msgid "Google Analytics Measurement ID"
750
  msgstr "Google Analytics Ідентифікатор показника"
751
 
752
+ #: includes/class-cntctfrm-settings.php:971
753
  #, php-format
754
  msgid ""
755
  "Enter your %sMeasurement ID%s to track contact form submissions in Google "
758
  "Введіть свій %sMeasurement ID%s для відстеження поданих контактних форм у "
759
  "Google Analytics."
760
 
761
+ #: includes/class-cntctfrm-settings.php:972
762
  msgid "Google Analytics version 4 is required."
763
  msgstr "Потрібна версія Google Analytics 4."
764
 
765
  # @ contact_form
766
+ #: includes/class-cntctfrm-settings.php:986
 
 
 
 
 
767
  msgid "Add to the form"
768
  msgstr "Додати до форми"
769
 
770
  # @ contact_form
771
+ #: includes/class-cntctfrm-settings.php:991
772
  msgid "Tips below the Attachment"
773
  msgstr "Показувати підказки під блоком прикріплених файлів"
774
 
775
  # @ contact_form
776
+ #: includes/class-cntctfrm-settings.php:998
777
  msgid "'Send me a copy' block"
778
  msgstr "Блок \"Надіслати мені копію\""
779
 
780
+ #: includes/class-cntctfrm-settings.php:1005
781
  msgid "GDPR Compliance"
782
  msgstr "Згода з GDPR"
783
 
784
+ #: includes/class-cntctfrm-settings.php:1010
785
  msgid "Link to Privacy Policy Page"
786
  msgstr "Посилання на сторінку політики конфіденційності"
787
 
788
+ #: includes/class-cntctfrm-settings.php:1038
789
  msgid "Activate for network"
790
  msgstr "Активувати для мережі"
791
 
792
  # @ contact_form
793
+ #: includes/class-cntctfrm-settings.php:1129
794
  msgid "Agreement checkbox"
795
  msgstr "Чекбокс для погодження"
796
 
797
  # @ contact_form
798
+ #: includes/class-cntctfrm-settings.php:1129
799
  msgid "Required checkbox for submitting the form"
800
  msgstr "Необхідний чекбокс для відправки форми"
801
 
802
  # @ contact_form
803
+ #: includes/class-cntctfrm-settings.php:1130
804
  msgid "Optional checkbox"
805
  msgstr "Додатковий чекбокс"
806
 
807
  # @ contact_form
808
+ #: includes/class-cntctfrm-settings.php:1130
809
  msgid "Optional checkbox, the results of which will be displayed in email"
810
  msgstr ""
811
  "Додатковий чекбокс, результати якого буде відображено у еmail-повідомленні"
812
 
813
  # @ contact_form
814
+ #: includes/class-cntctfrm-settings.php:1141
815
  msgid "Delete an attachment file from the server after the email is sent"
816
  msgstr ""
817
  "Видаляти прикріплений файл з серверу після того, як повідомлення відправлено"
818
 
819
  # @ contact_form
820
+ #: includes/class-cntctfrm-settings.php:1147
821
  msgid "Email in HTML format sending"
822
  msgstr "Відправка повідомлення в форматі HTML"
823
 
824
  # @ contact_form
825
+ #: includes/class-cntctfrm-settings.php:1151
826
  msgid "Display additional info in the email"
827
  msgstr "Відображати додаткову інформацію у повідомленні"
828
 
829
  # @ contact_form
830
+ #: includes/class-cntctfrm-settings.php:1158
831
  msgid "Sent from (IP address)"
832
  msgstr "Надіслано від (IP адреса)"
833
 
834
+ #: includes/class-cntctfrm-settings.php:1158
835
  msgid "Example: Sent from (IP address): 127.0.0.1"
836
  msgstr "Приклад: відправлено з (IP адреси): 127.0.0.1"
837
 
838
+ #: includes/class-cntctfrm-settings.php:1159
839
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
840
  msgstr "Приклад: Дата/Час: 19 Серпня, 2013 20:50"
841
 
842
+ #: includes/class-cntctfrm-settings.php:1160
843
  msgid ""
844
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
845
  msgstr ""
846
  "Приклад: відправлено з (referer): https://bestwebsoft.com/contacts/contact-"
847
  "us/"
848
 
849
+ #: includes/class-cntctfrm-settings.php:1161
850
  msgid ""
851
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
852
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
855
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
856
 
857
  # @ contact_form
858
+ #: includes/class-cntctfrm-settings.php:1167
859
  msgid "Language Settings"
860
  msgstr "Налаштування мови"
861
 
862
  # @ contact_form
863
+ #: includes/class-cntctfrm-settings.php:1177
864
  msgid "Add a language"
865
  msgstr "Додати мову"
866
 
867
  # @ contact_form
868
+ #: includes/class-cntctfrm-settings.php:1181
869
  msgid "Change the names of the contact form fields and error messages"
870
  msgstr "Змінити імена полів контактної форми і повідомлення про помилку"
871
 
872
  # @ contact_form
873
+ #: includes/class-cntctfrm-settings.php:1187
874
+ #: includes/class-cntctfrm-settings.php:1289
875
+ #: includes/class-cntctfrm-settings.php:1393
876
  msgid "Default"
877
  msgstr "Стандартно"
878
 
879
  # @ contact_form
880
+ #: includes/class-cntctfrm-settings.php:1200
881
+ #: includes/class-cntctfrm-settings.php:1240
882
  msgid "click to expand/hide the list"
883
  msgstr "натиснути, щоб розгорнути/згорнути список"
884
 
885
  # @ contact_form
886
+ #: includes/class-cntctfrm-settings.php:1209
887
+ #: includes/class-cntctfrm-settings.php:1249
888
  msgid "Tips below the Attachment block"
889
  msgstr "Підказки під блоком прикріплення файлів"
890
 
891
  # @ contact_form
892
+ #: includes/class-cntctfrm-settings.php:1214
893
+ #: includes/class-cntctfrm-settings.php:1254
894
  msgid "Error message for the Name field"
895
  msgstr "Повідомлення про помилку для поля Ім'я"
896
 
897
  # @ contact_form
898
+ #: includes/class-cntctfrm-settings.php:1215
899
+ #: includes/class-cntctfrm-settings.php:1255
900
  msgid "Error message for the Address field"
901
  msgstr "Повідомлення про помилку для поля Адреса"
902
 
903
  # @ contact_form
904
+ #: includes/class-cntctfrm-settings.php:1216
905
+ #: includes/class-cntctfrm-settings.php:1256
906
  msgid "Error message for the Email field"
907
  msgstr "Повідомлення про помилку для поля Email"
908
 
909
  # @ contact_form
910
+ #: includes/class-cntctfrm-settings.php:1217
911
+ #: includes/class-cntctfrm-settings.php:1257
912
  msgid "Error message for the Phone field"
913
  msgstr "Повідомлення про помилку для поля Номер телефону"
914
 
915
  # @ contact_form
916
+ #: includes/class-cntctfrm-settings.php:1218
917
+ #: includes/class-cntctfrm-settings.php:1258
918
  msgid "Error message for the Subject field"
919
  msgstr "Повідомлення про помилку для поля Тема"
920
 
921
  # @ contact_form
922
+ #: includes/class-cntctfrm-settings.php:1219
923
+ #: includes/class-cntctfrm-settings.php:1259
924
  msgid "Error message for the Message field"
925
  msgstr "Повідомлення про помилку для поля Повідомлення"
926
 
927
  # @ contact_form
928
+ #: includes/class-cntctfrm-settings.php:1220
929
+ #: includes/class-cntctfrm-settings.php:1260
930
  msgid "Error message about the file type for the Attachment field"
931
  msgstr "Повідомлення про помилку для поля Прикріплені файли"
932
 
933
  # @ contact_form
934
+ #: includes/class-cntctfrm-settings.php:1221
935
+ #: includes/class-cntctfrm-settings.php:1261
936
  msgid ""
937
  "Error message while uploading a file for the Attachment field to the server"
938
  msgstr ""
940
  "Прикріплені файли"
941
 
942
  # @ contact_form
943
+ #: includes/class-cntctfrm-settings.php:1222
944
+ #: includes/class-cntctfrm-settings.php:1262
945
  msgid "Error message while moving the file for the Attachment field"
946
  msgstr ""
947
  "Повідомлення про помилку під час переміщення файлу для поля Прикріплені файли"
948
 
949
  # @ contact_form
950
+ #: includes/class-cntctfrm-settings.php:1223
951
+ #: includes/class-cntctfrm-settings.php:1263
952
  msgid "Error message when file size limit for the Attachment field is exceeded"
953
  msgstr ""
954
  "Повідомлення про помилку для поля Прикріплені файли, коли розмір файлу "
955
  "перевищує допустимий"
956
 
957
  # @ contact_form
958
+ #: includes/class-cntctfrm-settings.php:1224
959
+ #: includes/class-cntctfrm-settings.php:1264
960
  msgid "Error message for the Captcha field"
961
  msgstr "Повідомлення про помилку для поля Captcha"
962
 
963
  # @ contact_form
964
+ #: includes/class-cntctfrm-settings.php:1225
965
+ #: includes/class-cntctfrm-settings.php:1265
966
  msgid "Error message for the whole form"
967
  msgstr "Повідомлення про помилку для всієї форми"
968
 
969
  # @ contact_form
970
+ #: includes/class-cntctfrm-settings.php:1279
971
  msgid "Use the changed names of the contact form fields in the email"
972
  msgstr "Використовувати змінені імена полів контактної форми у повідомленні"
973
 
974
  # @ contact_form
975
+ #: includes/class-cntctfrm-settings.php:1285
976
  msgid "Action after email is sent"
977
  msgstr "Дія після відправлення листа з контактної форми"
978
 
979
  # @ contact_form
980
+ #: includes/class-cntctfrm-settings.php:1287
981
  msgid "Display text"
982
  msgstr "Показати текст"
983
 
984
  # @ contact_form
985
+ #: includes/class-cntctfrm-settings.php:1302
986
+ #: includes/class-cntctfrm-settings.php:1316
987
  msgid "Text"
988
  msgstr "Текст"
989
 
990
  # @ contact_form
991
+ #: includes/class-cntctfrm-settings.php:1328
992
  msgid "Redirect to the page"
993
  msgstr "Перенаправлення на сторінку"
994
 
995
  # @ contact_form
996
+ #: includes/class-cntctfrm-settings.php:1330
997
  msgid "Url"
998
  msgstr "Посилання"
999
 
1000
+ #: includes/class-cntctfrm-settings.php:1347
1001
  #, php-format
1002
  msgid ""
1003
  "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
1006
  "Будь ласка, увімкніть JavaScript щоб змінити опції '%s', '%s', '%s', '%s' та "
1007
  "для сортування полів."
1008
 
1009
+ #: includes/class-cntctfrm-settings.php:1348
1010
+ #: includes/class-cntctfrm-settings.php:1365
1011
  msgid "Form layout"
1012
  msgstr "Шаблон форми"
1013
 
1014
  # @ contact_form
1015
+ #: includes/class-cntctfrm-settings.php:1349
1016
+ #: includes/class-cntctfrm-settings.php:1433
1017
  msgid "Labels position"
1018
  msgstr "Розташування імен полів"
1019
 
1020
+ #: includes/class-cntctfrm-settings.php:1350
1021
+ #: includes/class-cntctfrm-settings.php:1451
1022
  msgid "Labels align"
1023
  msgstr "Вирівнювання імен полів"
1024
 
1025
  # @ contact_form
1026
+ #: includes/class-cntctfrm-settings.php:1351
1027
+ #: includes/class-cntctfrm-settings.php:1377
1028
  msgid "Submit position"
1029
  msgstr "Позиція кнопки 'Відправити'"
1030
 
1031
  # @ contact_form
1032
+ #: includes/class-cntctfrm-settings.php:1352
1033
+ #: includes/class-cntctfrm-settings.php:1482
1034
  msgid "Add tooltips"
1035
  msgstr "Додати підказки"
1036
 
1037
  # @ contact_form
1038
+ #: includes/class-cntctfrm-settings.php:1353
1039
+ #: includes/class-cntctfrm-settings.php:1523
1040
  msgid "Style options"
1041
  msgstr "Опції стилю"
1042
 
1043
+ #: includes/class-cntctfrm-settings.php:1369
1044
  msgid "One column"
1045
  msgstr "Одна колонка"
1046
 
1047
+ #: includes/class-cntctfrm-settings.php:1372
1048
  msgid "Two columns"
1049
  msgstr "Дві колонки"
1050
 
1051
+ #: includes/class-cntctfrm-settings.php:1381
1052
+ #: includes/class-cntctfrm-settings.php:1422
1053
+ #: includes/class-cntctfrm-settings.php:1440
1054
+ #: includes/class-cntctfrm-settings.php:1455
1055
  msgid "Left"
1056
  msgstr "Ліворуч"
1057
 
1058
+ #: includes/class-cntctfrm-settings.php:1384
1059
+ #: includes/class-cntctfrm-settings.php:1428
1060
+ #: includes/class-cntctfrm-settings.php:1443
1061
+ #: includes/class-cntctfrm-settings.php:1461
1062
  msgid "Right"
1063
  msgstr "Праворуч"
1064
 
1065
+ #: includes/class-cntctfrm-settings.php:1389
1066
  msgid "Width"
1067
  msgstr "Ширина"
1068
 
1069
+ #: includes/class-cntctfrm-settings.php:1397
1070
  msgid "Custom"
1071
  msgstr "Користувацька"
1072
 
1073
+ #: includes/class-cntctfrm-settings.php:1404
1074
  msgid "px"
1075
  msgstr "пікс"
1076
 
1077
+ #: includes/class-cntctfrm-settings.php:1418
1078
  msgid "Form align"
1079
  msgstr "Вирівнювання форми"
1080
 
1081
+ #: includes/class-cntctfrm-settings.php:1425
1082
+ #: includes/class-cntctfrm-settings.php:1458
1083
  msgid "Center"
1084
  msgstr "По центру"
1085
 
1086
+ #: includes/class-cntctfrm-settings.php:1437
1087
  msgid "Top"
1088
  msgstr "Зверху"
1089
 
1090
+ #: includes/class-cntctfrm-settings.php:1446
1091
  msgid "Bottom"
1092
  msgstr "Знизу"
1093
 
1094
  # @ contact_form
1095
+ #: includes/class-cntctfrm-settings.php:1466
1096
  msgid "Errors output"
1097
  msgstr "Відображення помилок"
1098
 
1099
  # @ contact_form
1100
+ #: includes/class-cntctfrm-settings.php:1469
1101
  msgid "Display error messages"
1102
  msgstr "Відображати повідомлення про помилки"
1103
 
1104
  # @ contact_form
1105
+ #: includes/class-cntctfrm-settings.php:1470
1106
  msgid "Color of the input field errors."
1107
  msgstr "Колір для помилок у полях введення."
1108
 
1109
  # @ contact_form
1110
+ #: includes/class-cntctfrm-settings.php:1471
1111
  msgid "Display error messages & color of the input field errors"
1112
  msgstr ""
1113
  "Відображення повідомлень про помилку і колір для полів з помилками у полях "
1114
  "введення"
1115
 
1116
  # @ contact_form
1117
+ #: includes/class-cntctfrm-settings.php:1476
1118
  msgid "Add placeholder to the input blocks"
1119
  msgstr "Додати текст заповнювача для блоків введення"
1120
 
1121
  # @ contact_form
1122
+ #: includes/class-cntctfrm-settings.php:1496
1123
  msgid "Email address"
1124
  msgstr "Email"
1125
 
1126
  # @ contact_form
1127
+ #: includes/class-cntctfrm-settings.php:1527
1128
  msgid "Text color"
1129
  msgstr "Колір тексту"
1130
 
1131
  # @ contact_form
1132
+ #: includes/class-cntctfrm-settings.php:1532
1133
+ #: includes/class-cntctfrm-settings.php:1541
1134
+ #: includes/class-cntctfrm-settings.php:1554
1135
+ #: includes/class-cntctfrm-settings.php:1562
1136
+ #: includes/class-cntctfrm-settings.php:1570
1137
+ #: includes/class-cntctfrm-settings.php:1578
1138
+ #: includes/class-cntctfrm-settings.php:1591
1139
+ #: includes/class-cntctfrm-settings.php:1599
1140
+ #: includes/class-cntctfrm-settings.php:1611
1141
+ #: includes/class-cntctfrm-settings.php:1628
1142
+ #: includes/class-cntctfrm-settings.php:1636
1143
+ #: includes/class-cntctfrm-settings.php:1644
1144
  msgid "Select Color"
1145
  msgstr "Вибрати колір"
1146
 
1147
  # @ contact_form
1148
+ #: includes/class-cntctfrm-settings.php:1535
1149
  msgid "Label text color"
1150
  msgstr "Колір написів"
1151
 
1152
  # @ contact_form
1153
+ #: includes/class-cntctfrm-settings.php:1544
1154
  msgid "Placeholder color"
1155
  msgstr "Колір тексту заповнювача"
1156
 
1157
  # @ contact_form
1158
+ #: includes/class-cntctfrm-settings.php:1549
1159
  msgid "Errors color"
1160
  msgstr "Колір помилок"
1161
 
1162
  # @ contact_form
1163
+ #: includes/class-cntctfrm-settings.php:1557
1164
  msgid "Error text color"
1165
  msgstr "Колір тексту помилок"
1166
 
1167
  # @ contact_form
1168
+ #: includes/class-cntctfrm-settings.php:1565
1169
  msgid "Background color of the input field errors"
1170
  msgstr "Колір заднього фону для полів введення з помилками"
1171
 
1172
  # @ contact_form
1173
+ #: includes/class-cntctfrm-settings.php:1573
1174
  msgid "Border color of the input field errors"
1175
  msgstr "Колір рамки для полів введення з помилками"
1176
 
1177
  # @ contact_form
1178
+ #: includes/class-cntctfrm-settings.php:1581
1179
  msgid "Placeholder color of the input field errors"
1180
  msgstr "Колір тексту заповнювача для полів введення з помилками"
1181
 
1182
  # @ contact_form
1183
+ #: includes/class-cntctfrm-settings.php:1586
1184
  msgid "Input fields"
1185
  msgstr "Поля введення тексту"
1186
 
1187
  # @ contact_form
1188
+ #: includes/class-cntctfrm-settings.php:1594
1189
  msgid "Input fields background color"
1190
  msgstr "Колір фону полів введення"
1191
 
1192
  # @ contact_form
1193
+ #: includes/class-cntctfrm-settings.php:1602
1194
  msgid "Text fields color"
1195
  msgstr "Колір текстових полів"
1196
 
1197
  # @ contact_form
1198
+ #: includes/class-cntctfrm-settings.php:1606
1199
  msgid "Border width in px, numbers only"
1200
  msgstr "Ширина рамки в пікселях, тільки числа"
1201
 
1202
  # @ contact_form
1203
+ #: includes/class-cntctfrm-settings.php:1614
1204
+ #: includes/class-cntctfrm-settings.php:1647
1205
  msgid "Border color"
1206
  msgstr "Колір рамки"
1207
 
1208
  # @ contact_form
1209
+ #: includes/class-cntctfrm-settings.php:1619
1210
  msgid "Submit button"
1211
  msgstr "Кнопка підтвердження"
1212
 
1213
  # @ contact_form
1214
+ #: includes/class-cntctfrm-settings.php:1623
1215
  msgid "Width in px, numbers only"
1216
  msgstr "Ширина в пікселях, тільки числа"
1217
 
1218
  # @ contact_form
1219
+ #: includes/class-cntctfrm-settings.php:1631
1220
  msgid "Button color"
1221
  msgstr "Колір кнопок"
1222
 
1223
  # @ contact_form
1224
+ #: includes/class-cntctfrm-settings.php:1639
1225
  msgid "Button text color"
1226
  msgstr "Колір тексту кнопок"
1227
 
1228
  # @ contact_form
1229
+ #: includes/class-cntctfrm-settings.php:1664
1230
  msgid "Contact Form | Preview"
1231
  msgstr "Contact Form | Попередній перегляд"
1232
 
1233
+ #: includes/class-cntctfrm-settings.php:1665
1234
  msgid "Drag the necessary field to sort fields."
1235
  msgstr "Перетягніть необхідне поле для сортування полів."
1236
 
1237
+ #: includes/class-cntctfrm-settings.php:1914
1238
  msgid "Contact Form Shortcode"
1239
  msgstr "Шорткод Contact Form"
1240
 
1241
+ #: includes/class-cntctfrm-settings.php:1917
1242
  msgid "Add Contact Form to your page or post using the following shortcode:"
1243
  msgstr ""
1244
  "Додайте Contact Form на свою сторінку або пост, використовуючи такий "
1245
  "шорткод:"
1246
 
1247
+ # @ contact_form
1248
+ #~ msgid "If you upgrade to Pro version all your settings will be saved."
1249
+ #~ msgstr "Якщо ви перейдете на Pro версію, всі налаштування будуть збережені."
1250
+
1251
  #~ msgid "Measurement ID"
1252
  #~ msgstr "Ідентифікатор показника"
1253
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
3
  Donate link: https://bestwebsoft.com/donate/
4
  Tags: contact, contact form, feedback form, contact us form, contact button, email form, contac, form, web-page feedback, cf, cf plugin, contact form plugin
5
  Requires at least: 4.5
6
- Tested up to: 5.6
7
- Stable tag: 4.2.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -228,6 +228,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
228
 
229
  == Changelog ==
230
 
 
 
 
 
231
  = V4.2.2 - 28.01.2021 =
232
  * Update : All functionality was updated for WordPress 5.6.
233
  * Update : The plugin settings page has been updated.
@@ -588,6 +592,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
588
 
589
  == Upgrade Notice ==
590
 
 
 
 
 
591
  = V4.2.2 =
592
  * The compatibility with new WordPress version updated.
593
  * New features added.
3
  Donate link: https://bestwebsoft.com/donate/
4
  Tags: contact, contact form, feedback form, contact us form, contact button, email form, contac, form, web-page feedback, cf, cf plugin, contact form plugin
5
  Requires at least: 4.5
6
+ Tested up to: 5.7.2
7
+ Stable tag: 4.2.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
228
 
229
  == Changelog ==
230
 
231
+ = V4.2.3 - 24.05.2021 =
232
+ * Update : All functionality was updated for WordPress 5.7.2.
233
+ * Bugfix : Bug with a session_start() function call has been fixed.
234
+
235
  = V4.2.2 - 28.01.2021 =
236
  * Update : All functionality was updated for WordPress 5.6.
237
  * Update : The plugin settings page has been updated.
592
 
593
  == Upgrade Notice ==
594
 
595
+ = V4.2.3 =
596
+ * The compatibility with new WordPress version updated.
597
+ * Bugs fixed.
598
+
599
  = V4.2.2 =
600
  * The compatibility with new WordPress version updated.
601
  * New features added.