Contact Form by BestWebSoft - Version 4.1.4

Version Description

  • 26.03.2019 =
  • NEW : The ability to attach multiple files has been added.
Download this release

Release Info

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

Code changes from version 4.1.3 to 4.1.4

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.1.3
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
@@ -34,7 +34,7 @@ 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
-
38
  $cntctfrm_settings = add_menu_page(
39
  __( 'Contact Form Settings', 'contact-form-plugin' ), /* $page_title */
40
  'Contact Form', /* $menu_title */
@@ -398,7 +398,8 @@ if ( ! function_exists( 'cntctfrm_get_option_defaults' ) ) {
398
  'type' => 'default',
399
  'input_value' => '100',
400
  'input_unit' => '%'
401
- )
 
402
  );
403
 
404
  return $option_defaults;
@@ -877,8 +878,17 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
877
  if ( isset( $cntctfrm_error_message['error_attachment'] ) && $cntctfrm_form_count == $form_submited ) {
878
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_attachment'] . '</div>';
879
  }
880
- $content .= '<div class="cntctfrm_input cntctfrm_input_attachment">
 
 
 
 
 
881
  <input type="file" name="cntctfrm_contact_attachment" id="cntctfrm_contact_attachment' . $form_countid . '"' . ( isset( $cntctfrm_error_message['error_attachment'] ) ? "class='error'": "" ) . ' />';
 
 
 
 
882
  if ( 1 == $cntctfrm_options['attachment_explanations'] ) {
883
  $content .= '<label class="cntctfrm_contact_attachment_extensions"><br />' . $cntctfrm_options['attachment_tooltip'][ $lang ] . '</label>';
884
  }
@@ -1142,7 +1152,7 @@ if ( ! function_exists( 'cntctfrm_check_form' ) ) {
1142
  $cntctfrm_error_message['error_phone'] = $cntctfrm_options['phone_error'][ $language ];
1143
  $cntctfrm_error_message['error_form'] = $cntctfrm_options['form_error'][ $language ];
1144
  if ( 1 == $cntctfrm_options['attachment'] ) {
1145
- global $cntctfrm_path_of_uploaded_file, $cntctfrm_mime_type;
1146
  $cntctfrm_mime_type= array(
1147
  'html'=>'text/html',
1148
  'htm'=>'text/html',
@@ -1216,19 +1226,34 @@ if ( ! function_exists( 'cntctfrm_check_form' ) ) {
1216
 
1217
  if ( isset( $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) && "" != $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) {
1218
 
1219
- $new_filename = 'cntctfrm_' . md5( sanitize_file_name( $_FILES["cntctfrm_contact_attachment"]["name"] ) . time() . $email . mt_rand() ) . '_' . sanitize_file_name( $_FILES["cntctfrm_contact_attachment"]["name"] );
 
1220
 
1221
- if ( is_multisite() ) {
1222
- if ( defined('UPLOADS') ) {
1223
- if ( ! is_dir( ABSPATH . UPLOADS ) ) {
1224
- wp_mkdir_p( ABSPATH . UPLOADS );
1225
- }
1226
- $cntctfrm_path_of_uploaded_file = ABSPATH . UPLOADS . $new_filename;
1227
- } else if ( defined( 'BLOGUPLOADDIR' ) ) {
1228
- if ( ! is_dir( BLOGUPLOADDIR ) ) {
1229
- wp_mkdir_p( BLOGUPLOADDIR );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1230
  }
1231
- $cntctfrm_path_of_uploaded_file = BLOGUPLOADDIR . $new_filename;
1232
  } else {
1233
  $uploads = wp_upload_dir();
1234
  if ( ! isset( $uploads['path'] ) && isset( $uploads['error'] ) )
@@ -1236,47 +1261,55 @@ if ( ! function_exists( 'cntctfrm_check_form' ) ) {
1236
  else
1237
  $cntctfrm_path_of_uploaded_file = $uploads['path'] . "/" . $new_filename;
1238
  }
1239
- } else {
1240
- $uploads = wp_upload_dir();
1241
- if ( ! isset( $uploads['path'] ) && isset( $uploads['error'] ) )
1242
- $cntctfrm_error_message['error_attachment'] = $uploads['error'];
1243
- else
1244
- $cntctfrm_path_of_uploaded_file = $uploads['path'] . "/" . $new_filename;
1245
- }
1246
 
1247
- $tmp_path = $_FILES["cntctfrm_contact_attachment"]["tmp_name"];
1248
- $path_info = pathinfo( $cntctfrm_path_of_uploaded_file );
 
 
 
 
 
1249
 
1250
- if ( array_key_exists( strtolower( $path_info['extension'] ), $cntctfrm_mime_type ) ) {
1251
- if ( is_uploaded_file( $tmp_path ) ) {
1252
- if ( move_uploaded_file( $tmp_path, $cntctfrm_path_of_uploaded_file ) ) {
1253
- do_action( 'cntctfrm_get_attachment_data', $cntctfrm_path_of_uploaded_file );
1254
- unset( $cntctfrm_error_message['error_attachment'] );
1255
- } else {
1256
- $letter_upload_max_size = substr( ini_get( 'upload_max_filesize' ), -1 );
1257
- /* $upload_max_size = substr( ini_get('upload_max_filesize'), 0, -1 ); */
1258
- $upload_max_size = '1';
1259
- switch( strtoupper( $letter_upload_max_size ) ) {
1260
- case 'P':
1261
- $upload_max_size *= 1024;
1262
- case 'T':
1263
- $upload_max_size *= 1024;
1264
- case 'G':
1265
- $upload_max_size *= 1024;
1266
- case 'M':
1267
- $upload_max_size *= 1024;
1268
- case 'K':
1269
- $upload_max_size *= 1024;
1270
- break;
1271
- }
1272
- if ( isset( $_FILES["cntctfrm_contact_attachment"]["size"] ) && $_FILES["cntctfrm_contact_attachment"]["size"] <= $upload_max_size ) {
1273
- $cntctfrm_error_message['error_attachment'] = $cntctfrm_options['attachment_move_error'][ $language ];
1274
  } else {
1275
- $cntctfrm_error_message['error_attachment'] = $cntctfrm_options['attachment_size_error'][ $language ];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1276
  }
 
 
1277
  }
1278
- } else {
1279
- $cntctfrm_error_message['error_attachment'] = $cntctfrm_options['attachment_upload_error'][ $language ];
1280
  }
1281
  }
1282
  } else {
@@ -1314,7 +1347,7 @@ if ( ! function_exists( 'cntctfrm_check_form' ) ) {
1314
  /* Send mail function */
1315
  if ( ! function_exists( 'cntctfrm_send_mail' ) ) {
1316
  function cntctfrm_send_mail() {
1317
- global $cntctfrm_options, $cntctfrm_path_of_uploaded_file, $wp_version, $wpdb;
1318
  $to = $headers = "";
1319
 
1320
  $lang = isset( $_POST['cntctfrm_language'] ) ? $_POST['cntctfrm_language'] : 'default';
@@ -1517,13 +1550,28 @@ if ( ! function_exists( 'cntctfrm_send_mail' ) ) {
1517
  $headers .= 'From: ' . $from_field_name . ' <' . $from_email . '>';
1518
 
1519
  if ( 1 == $cntctfrm_options['attachment'] && isset( $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) && "" != $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) {
1520
- $path_parts = pathinfo( $cntctfrm_path_of_uploaded_file );
1521
- $cntctfrm_path_of_uploaded_file_changed = $path_parts['dirname'] . '/' . preg_replace( '/^cntctfrm_[A-Z,a-z,0-9]{32}_/i', '', $path_parts['basename'] );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1522
 
1523
- if ( ! @copy( $cntctfrm_path_of_uploaded_file, $cntctfrm_path_of_uploaded_file_changed ) )
1524
- $cntctfrm_path_of_uploaded_file_changed = $cntctfrm_path_of_uploaded_file;
 
1525
 
1526
- $attachments = array( $cntctfrm_path_of_uploaded_file_changed );
1527
  }
1528
 
1529
  if ( isset( $_POST['cntctfrm_contact_send_copy'] ) && 1 == $_POST['cntctfrm_contact_send_copy'] )
@@ -1538,6 +1586,7 @@ if ( ! function_exists( 'cntctfrm_send_mail' ) ) {
1538
  }
1539
  if ( 1 == $cntctfrm_options['attachment'] && isset( $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) && "" != $_FILES["cntctfrm_contact_attachment"]["tmp_name"] && '1' == $cntctfrm_options['delete_attached_file'] ) {
1540
  @unlink( $cntctfrm_path_of_uploaded_file );
 
1541
  }
1542
  return $mail_result;
1543
  } else {
@@ -1684,7 +1733,7 @@ if ( ! function_exists ( 'cntctfrm_admin_head' ) ) {
1684
  'cntctfrm_confirm_text' => __( 'Are you sure that you want to delete this language data?', 'contact-form-plugin' )
1685
  );
1686
 
1687
- if ( wp_is_mobile() )
1688
  wp_enqueue_script( 'jquery-touch-punch' );
1689
 
1690
  wp_enqueue_script( 'cntctfrm_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery', 'jquery-ui-sortable' ), $cntctfrm_plugin_info["Version"] );
@@ -2156,4 +2205,4 @@ add_filter( 'bws_shortcode_button_content', 'cntctfrm_shortcode_button_content'
2156
  add_action( 'wp_ajax_cntctfrm_add_language', 'cntctfrm_add_language' );
2157
  add_action( 'wp_ajax_cntctfrm_remove_language', 'cntctfrm_remove_language' );
2158
 
2159
- add_action( 'admin_notices', 'cntctfrm_plugin_banner');
6
  Author: BestWebSoft
7
  Text Domain: contact-form-plugin
8
  Domain Path: /languages
9
+ Version: 4.1.4
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
+
38
  $cntctfrm_settings = add_menu_page(
39
  __( 'Contact Form Settings', 'contact-form-plugin' ), /* $page_title */
40
  'Contact Form', /* $menu_title */
398
  'type' => 'default',
399
  'input_value' => '100',
400
  'input_unit' => '%'
401
+ ),
402
+ 'active_multi_attachment' => 0
403
  );
404
 
405
  return $option_defaults;
878
  if ( isset( $cntctfrm_error_message['error_attachment'] ) && $cntctfrm_form_count == $form_submited ) {
879
  $content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_attachment'] . '</div>';
880
  }
881
+
882
+ if ( 1 == $cntctfrm_options['active_multi_attachment'] ) {
883
+ $content .= '<div class="cntctfrm_input cntctfrm_input_attachment">
884
+ <input type="file" multiple name="cntctfrm_contact_attachment[]" id="cntctfrm_contact_attachment' . $form_countid . '"' . ( isset( $cntctfrm_error_message['error_attachment'] ) ? "class='error'": "" ) . ' />';
885
+ } else {
886
+ $content .= '<div class="cntctfrm_input cntctfrm_input_attachment">
887
  <input type="file" name="cntctfrm_contact_attachment" id="cntctfrm_contact_attachment' . $form_countid . '"' . ( isset( $cntctfrm_error_message['error_attachment'] ) ? "class='error'": "" ) . ' />';
888
+ }
889
+
890
+
891
+ $content .= '</div>';
892
  if ( 1 == $cntctfrm_options['attachment_explanations'] ) {
893
  $content .= '<label class="cntctfrm_contact_attachment_extensions"><br />' . $cntctfrm_options['attachment_tooltip'][ $lang ] . '</label>';
894
  }
1152
  $cntctfrm_error_message['error_phone'] = $cntctfrm_options['phone_error'][ $language ];
1153
  $cntctfrm_error_message['error_form'] = $cntctfrm_options['form_error'][ $language ];
1154
  if ( 1 == $cntctfrm_options['attachment'] ) {
1155
+ global $cntctfrm_path_of_uploaded_file, $cntctfrm_path_of_uploaded_files, $cntctfrm_mime_type;
1156
  $cntctfrm_mime_type= array(
1157
  'html'=>'text/html',
1158
  'htm'=>'text/html',
1226
 
1227
  if ( isset( $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) && "" != $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) {
1228
 
1229
+ // Number of uploaded files
1230
+ $num_files = count( (array)$_FILES['cntctfrm_contact_attachment']['tmp_name']);
1231
 
1232
+ for($i=0; $i < $num_files;$i++) {
1233
+
1234
+ if ( $cntctfrm_options['active_multi_attachment'] ) {
1235
+ $new_filename = 'cntctfrm_' . md5( sanitize_file_name( $_FILES["cntctfrm_contact_attachment"]["name"][$i] ) . time() . $email . mt_rand() ) . '_' . sanitize_file_name( $_FILES["cntctfrm_contact_attachment"]["name"][$i] );
1236
+ } else {
1237
+ $new_filename = 'cntctfrm_' . md5( sanitize_file_name( $_FILES["cntctfrm_contact_attachment"]["name"] ) . time() . $email . mt_rand() ) . '_' . sanitize_file_name( $_FILES["cntctfrm_contact_attachment"]["name"] );
1238
+ }
1239
+ if ( is_multisite() ) {
1240
+ if ( defined('UPLOADS') ) {
1241
+ if ( ! is_dir( ABSPATH . UPLOADS ) ) {
1242
+ wp_mkdir_p( ABSPATH . UPLOADS );
1243
+ }
1244
+ $cntctfrm_path_of_uploaded_file = ABSPATH . UPLOADS . $new_filename;
1245
+ } else if ( defined( 'BLOGUPLOADDIR' ) ) {
1246
+ if ( ! is_dir( BLOGUPLOADDIR ) ) {
1247
+ wp_mkdir_p( BLOGUPLOADDIR );
1248
+ }
1249
+ $cntctfrm_path_of_uploaded_file = BLOGUPLOADDIR . $new_filename;
1250
+ } else {
1251
+ $uploads = wp_upload_dir();
1252
+ if ( ! isset( $uploads['path'] ) && isset( $uploads['error'] ) )
1253
+ $cntctfrm_error_message['error_attachment'] = $uploads['error'];
1254
+ else
1255
+ $cntctfrm_path_of_uploaded_file = $uploads['path'] . "/" . $new_filename;
1256
  }
 
1257
  } else {
1258
  $uploads = wp_upload_dir();
1259
  if ( ! isset( $uploads['path'] ) && isset( $uploads['error'] ) )
1261
  else
1262
  $cntctfrm_path_of_uploaded_file = $uploads['path'] . "/" . $new_filename;
1263
  }
 
 
 
 
 
 
 
1264
 
1265
+ if ( $cntctfrm_options['active_multi_attachment'] ) {
1266
+ $tmp_path = $_FILES["cntctfrm_contact_attachment"]["tmp_name"][$i];
1267
+ } else {
1268
+ $tmp_path = $_FILES["cntctfrm_contact_attachment"]["tmp_name"];
1269
+ }
1270
+
1271
+ $path_info = pathinfo( $cntctfrm_path_of_uploaded_file );
1272
 
1273
+ if ( array_key_exists( strtolower( $path_info['extension'] ), $cntctfrm_mime_type ) ) {
1274
+ if ( is_uploaded_file( $tmp_path ) ) {
1275
+ if ( move_uploaded_file( $tmp_path, $cntctfrm_path_of_uploaded_file ) ) {
1276
+ do_action( 'cntctfrm_get_attachment_data', $cntctfrm_path_of_uploaded_file );
1277
+ //adding to array
1278
+ $cntctfrm_path_of_uploaded_files[] = $cntctfrm_path_of_uploaded_file;
1279
+ unset( $cntctfrm_error_message['error_attachment'] );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1280
  } else {
1281
+ $letter_upload_max_size = substr( ini_get( 'upload_max_filesize' ), -1 );
1282
+ /* $upload_max_size = substr( ini_get('upload_max_filesize'), 0, -1 ); */
1283
+ $upload_max_size = '1';
1284
+ switch( strtoupper( $letter_upload_max_size ) ) {
1285
+ case 'P':
1286
+ $upload_max_size *= 1024;
1287
+ case 'T':
1288
+ $upload_max_size *= 1024;
1289
+ case 'G':
1290
+ $upload_max_size *= 1024;
1291
+ case 'M':
1292
+ $upload_max_size *= 1024;
1293
+ case 'K':
1294
+ $upload_max_size *= 1024;
1295
+ break;
1296
+ }
1297
+
1298
+ if ( $cntctfrm_options['active_multi_attachment'] ) {
1299
+ $cntctfrm_contact_attachment_size = $_FILES["cntctfrm_contact_attachment"]["size"][$i];
1300
+ } else {
1301
+ $cntctfrm_contact_attachment_size = $_FILES["cntctfrm_contact_attachment"]["size"];
1302
+ }
1303
+
1304
+ if ( isset( $cntctfrm_contact_attachment_size ) && $cntctfrm_contact_attachment_size <= $upload_max_size ) {
1305
+ $cntctfrm_error_message['error_attachment'] = $cntctfrm_options['attachment_move_error'][ $language ];
1306
+ } else {
1307
+ $cntctfrm_error_message['error_attachment'] = $cntctfrm_options['attachment_size_error'][ $language ];
1308
+ }
1309
  }
1310
+ } else {
1311
+ $cntctfrm_error_message['error_attachment'] = $cntctfrm_options['attachment_upload_error'][ $language ];
1312
  }
 
 
1313
  }
1314
  }
1315
  } else {
1347
  /* Send mail function */
1348
  if ( ! function_exists( 'cntctfrm_send_mail' ) ) {
1349
  function cntctfrm_send_mail() {
1350
+ global $cntctfrm_options, $cntctfrm_path_of_uploaded_file, $cntctfrm_path_of_uploaded_files, $wp_version, $wpdb;
1351
  $to = $headers = "";
1352
 
1353
  $lang = isset( $_POST['cntctfrm_language'] ) ? $_POST['cntctfrm_language'] : 'default';
1550
  $headers .= 'From: ' . $from_field_name . ' <' . $from_email . '>';
1551
 
1552
  if ( 1 == $cntctfrm_options['attachment'] && isset( $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) && "" != $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) {
1553
+ if( empty( $cntctfrm_path_of_uploaded_files ) || ! is_array( $cntctfrm_path_of_uploaded_files ) || sizeof( $cntctfrm_path_of_uploaded_files ) <= 1 ) {
1554
+ $path_parts = pathinfo( $cntctfrm_path_of_uploaded_file );
1555
+ $cntctfrm_path_of_uploaded_file_changed = $path_parts['dirname'] . '/' . preg_replace( '/^cntctfrm_[A-Z,a-z,0-9]{32}_/i', '', $path_parts['basename'] );
1556
+
1557
+ if ( ! @copy( $cntctfrm_path_of_uploaded_file, $cntctfrm_path_of_uploaded_file_changed ) )
1558
+ $cntctfrm_path_of_uploaded_file_changed = $cntctfrm_path_of_uploaded_file;
1559
+
1560
+ $attachments = array( $cntctfrm_path_of_uploaded_file_changed );
1561
+ } else {
1562
+ //multiple files
1563
+ $attachments = array();
1564
+ foreach( $cntctfrm_path_of_uploaded_files as $cntctfrm_path_of_uploaded_file ) {
1565
+ $path_parts = pathinfo( $cntctfrm_path_of_uploaded_file );
1566
+ $cntctfrm_path_of_uploaded_file_changed = $path_parts['dirname'] . '/' . preg_replace( '/^cntctfrm_[A-Z,a-z,0-9]{32}_/i', '', $path_parts['basename'] );
1567
+
1568
+ if ( ! @copy( $cntctfrm_path_of_uploaded_file, $cntctfrm_path_of_uploaded_file_changed ) )
1569
+ $cntctfrm_path_of_uploaded_file_changed = $cntctfrm_path_of_uploaded_file;
1570
 
1571
+ $attachments[] = $cntctfrm_path_of_uploaded_file_changed;
1572
+ }
1573
+ }
1574
 
 
1575
  }
1576
 
1577
  if ( isset( $_POST['cntctfrm_contact_send_copy'] ) && 1 == $_POST['cntctfrm_contact_send_copy'] )
1586
  }
1587
  if ( 1 == $cntctfrm_options['attachment'] && isset( $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) && "" != $_FILES["cntctfrm_contact_attachment"]["tmp_name"] && '1' == $cntctfrm_options['delete_attached_file'] ) {
1588
  @unlink( $cntctfrm_path_of_uploaded_file );
1589
+ @unlink( $cntctfrm_path_of_uploaded_files );
1590
  }
1591
  return $mail_result;
1592
  } else {
1733
  'cntctfrm_confirm_text' => __( 'Are you sure that you want to delete this language data?', 'contact-form-plugin' )
1734
  );
1735
 
1736
+ if ( wp_is_mobile() )
1737
  wp_enqueue_script( 'jquery-touch-punch' );
1738
 
1739
  wp_enqueue_script( 'cntctfrm_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery', 'jquery-ui-sortable' ), $cntctfrm_plugin_info["Version"] );
2205
  add_action( 'wp_ajax_cntctfrm_add_language', 'cntctfrm_add_language' );
2206
  add_action( 'wp_ajax_cntctfrm_remove_language', 'cntctfrm_remove_language' );
2207
 
2208
+ add_action( 'admin_notices', 'cntctfrm_plugin_banner');
includes/class-cntctfrm-settings.php CHANGED
@@ -52,7 +52,7 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
52
  'pro_basename' => 'contact-form-multi-pro/contact-form-multi-pro.php'
53
  );
54
  }
55
-
56
  parent::__construct( array(
57
  'plugin_basename' => $plugin_basename,
58
  'plugins_info' => $cntctfrm_plugin_info,
@@ -252,6 +252,7 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
252
 
253
  $this->options['change_label'] = isset( $_POST['cntctfrm_change_label'] ) ? 1 : 0;
254
  $this->options['change_label_in_email'] = isset( $_POST['cntctfrm_change_label_in_email'] ) ? 1 : 0;
 
255
 
256
  if ( 1 == $this->options['change_label'] ) {
257
  foreach ( $_POST['cntctfrm_name_label'] as $key => $val ) {
@@ -411,12 +412,12 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
411
  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;
412
  $display_pro_options = false;
413
  if ( 'pro' == $this->cfmlt_is_active ) {
414
- $display_pro_options = true;
415
  }
416
  if ( empty( $cntctfrm_related_plugins ) ) {
417
  cntctfrm_related_plugins();
418
- }
419
- $userslogin = get_users( 'blog_id=' . $GLOBALS['blog_id'] . '&role=administrator' );
420
  if ( ! function_exists( 'get_plugins' ) ) {
421
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
422
  }
@@ -533,15 +534,15 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
533
  </div>
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(); ?>
@@ -838,6 +839,23 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
838
  <td></td>
839
  <?php } ?>
840
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
841
  </tbody>
842
  </table>
843
  <table class="form-table" style="width:auto;">
@@ -1189,11 +1207,11 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
1189
  </table>
1190
  <?php }
1191
 
1192
- public function tab_appearance() {
1193
  global $cntctfrm_related_plugins, $cntctfrm_plugin_info, $wp_version, $bws_hide_premium_options_check, $contact_form_multi_active;
1194
  $display_pro_options = false;
1195
  if ( 'pro' == $this->cfmlt_is_active ) {
1196
- $display_pro_options = true;
1197
  }?>
1198
  <h3 class="bws_tab_label"><?php _e( 'Appearance', 'contact-form-plugin' ); ?></h3>
1199
  <?php $this->help_phrase(); ?>
@@ -1202,8 +1220,8 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
1202
  <div class="error">
1203
  <p>
1204
  <strong>
1205
- <?php printf(
1206
- __( "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for fields sorting.", 'contact-form-plugin' ),
1207
  __( "Form layout", 'contact-form-plugin' ),
1208
  __( "Labels position", 'contact-form-plugin' ),
1209
  __( "Labels align", 'contact-form-plugin' ),
@@ -1779,4 +1797,4 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
1779
  </div>
1780
  <?php }
1781
  }
1782
- }
52
  'pro_basename' => 'contact-form-multi-pro/contact-form-multi-pro.php'
53
  );
54
  }
55
+
56
  parent::__construct( array(
57
  'plugin_basename' => $plugin_basename,
58
  'plugins_info' => $cntctfrm_plugin_info,
252
 
253
  $this->options['change_label'] = isset( $_POST['cntctfrm_change_label'] ) ? 1 : 0;
254
  $this->options['change_label_in_email'] = isset( $_POST['cntctfrm_change_label_in_email'] ) ? 1 : 0;
255
+ $this->options['active_multi_attachment'] = isset( $_POST['cntctfrm_active_multi_attachment'] ) ? 1 : 0;
256
 
257
  if ( 1 == $this->options['change_label'] ) {
258
  foreach ( $_POST['cntctfrm_name_label'] as $key => $val ) {
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
+ }
420
+ $userslogin = get_users( 'blog_id=' . $GLOBALS['blog_id'] . '&role=administrator' );
421
  if ( ! function_exists( 'get_plugins' ) ) {
422
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
423
  }
534
  </div>
535
  <?php }
536
 
537
+ public function tab_additional_settings() {
538
  global $cntctfrm_related_plugins, $cntctfrm_lang_codes, $cntctfrm_plugin_info, $wp_version, $bws_hide_premium_options_check, $contact_form_multi_active;
539
  $display_pro_options = false;
540
  if ( 'pro' == $this->cfmlt_is_active ) {
541
+ $display_pro_options = true;
542
  }
543
  if ( empty( $cntctfrm_related_plugins ) ) {
544
  cntctfrm_related_plugins();
545
+ }
546
  $all_plugins = get_plugins();?>
547
  <h3 class="bws_tab_label"><?php _e( 'Additional Settings', 'contact-form-plugin' ); ?></h3>
548
  <?php $this->help_phrase(); ?>
839
  <td></td>
840
  <?php } ?>
841
  </tr>
842
+ <tr valign="top" class="cntctfrm-multi-attachment" <?php if ( ! $this->options['attachment'] ) echo 'style="display:none";' ?> >
843
+ <td>
844
+ <?php _e( 'Multi-attachment', 'contact-form-plugin' ); ?>
845
+ <div class="bws_help_box dashicons dashicons-editor-help">
846
+ <div class="bws_hidden_help_text" style="min-width: 200px;"><?php _e( "Enable to multiple file selection", 'contact-form-plugin' ); ?></div>
847
+ </div>
848
+ </td>
849
+ <td>
850
+ <label class="bws_info"><input type="checkbox" name="cntctfrm_active_multi_attachment" value="1" <?php checked( '1', $this->options['active_multi_attachment'] ); ?> /></label>
851
+ </td>
852
+ <td></td>
853
+ <?php if ( ! $this->hide_pro_tabs ) { ?>
854
+ <td></td>
855
+ <td></td>
856
+ <td></td>
857
+ <?php } ?>
858
+ </tr>
859
  </tbody>
860
  </table>
861
  <table class="form-table" style="width:auto;">
1207
  </table>
1208
  <?php }
1209
 
1210
+ public function tab_appearance() {
1211
  global $cntctfrm_related_plugins, $cntctfrm_plugin_info, $wp_version, $bws_hide_premium_options_check, $contact_form_multi_active;
1212
  $display_pro_options = false;
1213
  if ( 'pro' == $this->cfmlt_is_active ) {
1214
+ $display_pro_options = true;
1215
  }?>
1216
  <h3 class="bws_tab_label"><?php _e( 'Appearance', 'contact-form-plugin' ); ?></h3>
1217
  <?php $this->help_phrase(); ?>
1220
  <div class="error">
1221
  <p>
1222
  <strong>
1223
+ <?php printf(
1224
+ __( "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for fields sorting.", 'contact-form-plugin' ),
1225
  __( "Form layout", 'contact-form-plugin' ),
1226
  __( "Labels position", 'contact-form-plugin' ),
1227
  __( "Labels align", 'contact-form-plugin' ),
1797
  </div>
1798
  <?php }
1799
  }
1800
+ }
js/script.js CHANGED
@@ -47,6 +47,13 @@
47
  $( '.cntctfrm_display_add_info_block' ).hide();
48
  }
49
  });
 
 
 
 
 
 
 
50
  $( '#cntctfrm_add_language_button' ).click( function( event ) {
51
  event = event || window.event;
52
  event.preventDefault();
@@ -121,8 +128,8 @@
121
  $( 'input[name="cntctfrm_layout"]' ).change( function() {
122
  var form_layout = $( this ).val();
123
  if ( form_layout == 1 ) {
124
- $( '#cntctfrm_contact_form' ).removeClass( 'cntctfrm_two_columns' );
125
- $( '#cntctfrm_contact_form' ).addClass( 'cntctfrm_one_column' );
126
  if( $( '#cntctfrm_second_column li' ).length > 0 ) {
127
  $( '#cntctfrm_first_column' ).append( $( '#cntctfrm_second_column' ).html() );
128
  }
@@ -130,8 +137,8 @@
130
  $( '#cntctfrm_second_column' ).hide();
131
  }
132
  if ( form_layout == 2 ) {
133
- $( '#cntctfrm_contact_form' ).removeClass( 'cntctfrm_one_column' );
134
- $( '#cntctfrm_contact_form' ).addClass( 'cntctfrm_two_columns' );
135
  $( '#cntctfrm_second_column' ).show();
136
  }
137
 
47
  $( '.cntctfrm_display_add_info_block' ).hide();
48
  }
49
  });
50
+ $( '#cntctfrm_attachment' ).change( function() {
51
+ if ( $( this ).is( ':checked' ) ) {
52
+ $( '.cntctfrm-multi-attachment' ).show();
53
+ } else {
54
+ $( '.cntctfrm-multi-attachment' ).hide();
55
+ }
56
+ });
57
  $( '#cntctfrm_add_language_button' ).click( function( event ) {
58
  event = event || window.event;
59
  event.preventDefault();
128
  $( 'input[name="cntctfrm_layout"]' ).change( function() {
129
  var form_layout = $( this ).val();
130
  if ( form_layout == 1 ) {
131
+ $( '#cntctfrm_settings_form #cntctfrm_contact_form' ).removeClass( 'cntctfrm_two_columns' );
132
+ $( '#cntctfrm_settings_form #cntctfrm_contact_form' ).addClass( 'cntctfrm_one_column' );
133
  if( $( '#cntctfrm_second_column li' ).length > 0 ) {
134
  $( '#cntctfrm_first_column' ).append( $( '#cntctfrm_second_column' ).html() );
135
  }
137
  $( '#cntctfrm_second_column' ).hide();
138
  }
139
  if ( form_layout == 2 ) {
140
+ $( '#cntctfrm_settings_form #cntctfrm_contact_form' ).removeClass( 'cntctfrm_one_column' );
141
+ $( '#cntctfrm_settings_form #cntctfrm_contact_form' ).addClass( 'cntctfrm_two_columns' );
142
  $( '#cntctfrm_second_column' ).show();
143
  }
144
 
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: 2019-02-25 16:29+0200\n"
6
- "PO-Revision-Date: 2019-02-25 17:17+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"
@@ -20,79 +20,79 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ contact_form
23
- #: contact_form.php:39 contact_form.php:47 contact_form.php:647
24
- #: includes/class-cntctfrm-settings.php:425
25
  msgid "Contact Form Settings"
26
  msgstr "Настройки Contact Form"
27
 
28
  # @ contact_form
29
- #: contact_form.php:48 contact_form.php:1619 contact_form.php:1633
30
  #: includes/class-cntctfrm-settings.php:27
31
  msgid "Settings"
32
  msgstr "Настройки"
33
 
34
- #: contact_form.php:63 includes/class-cntctfrm-settings.php:483
35
- #: includes/class-cntctfrm-settings.php:817
36
- #: includes/class-cntctfrm-settings.php:998
37
- #: includes/class-cntctfrm-settings.php:1513
38
  msgid "Upgrade to Pro"
39
  msgstr "Обновиться до Pro"
40
 
41
  # @ contact_form
42
- #: contact_form.php:350 contact_form.php:1410 contact_form.php:1456
43
- #: includes/class-cntctfrm-settings.php:574
44
- #: includes/class-cntctfrm-settings.php:664
45
- #: includes/class-cntctfrm-settings.php:1064
46
- #: includes/class-cntctfrm-settings.php:1103
47
- #: includes/class-cntctfrm-settings.php:1344
48
  msgid "Name"
49
  msgstr "Имя"
50
 
51
  # @ contact_form
52
- #: contact_form.php:351 contact_form.php:1417 contact_form.php:1462
53
- #: includes/class-cntctfrm-settings.php:711
54
- #: includes/class-cntctfrm-settings.php:1065
55
- #: includes/class-cntctfrm-settings.php:1104
56
- #: includes/class-cntctfrm-settings.php:1349
57
  msgid "Address"
58
  msgstr "Адрес"
59
 
60
  # @ contact_form
61
- #: contact_form.php:352 includes/class-cntctfrm-settings.php:727
62
- #: includes/class-cntctfrm-settings.php:1066
63
- #: includes/class-cntctfrm-settings.php:1105
64
  msgid "Email Address"
65
  msgstr "Email адрес"
66
 
67
  # @ contact_form
68
- #: contact_form.php:353 includes/class-cntctfrm-settings.php:747
69
- #: includes/class-cntctfrm-settings.php:1067
70
- #: includes/class-cntctfrm-settings.php:1106
71
  msgid "Phone number"
72
  msgstr "Телефон"
73
 
74
  # @ contact_form
75
- #: contact_form.php:354 contact_form.php:1428 contact_form.php:1471
76
- #: includes/class-cntctfrm-settings.php:763
77
- #: includes/class-cntctfrm-settings.php:1068
78
- #: includes/class-cntctfrm-settings.php:1107
79
- #: includes/class-cntctfrm-settings.php:1364
80
  msgid "Subject"
81
  msgstr "Тема"
82
 
83
  # @ contact_form
84
- #: contact_form.php:355 contact_form.php:1433 contact_form.php:1475
85
- #: includes/class-cntctfrm-settings.php:787
86
- #: includes/class-cntctfrm-settings.php:1069
87
- #: includes/class-cntctfrm-settings.php:1108
88
- #: includes/class-cntctfrm-settings.php:1368
89
  msgid "Message"
90
  msgstr "Сообщение"
91
 
92
  # @ contact_form
93
- #: contact_form.php:356 includes/class-cntctfrm-settings.php:1070
94
- #: includes/class-cntctfrm-settings.php:1109
95
- #: includes/class-cntctfrm-settings.php:1373
96
  msgid "Attachment"
97
  msgstr "Прикрепить файл"
98
 
@@ -106,19 +106,19 @@ msgstr ""
106
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
107
 
108
  # @ contact_form
109
- #: contact_form.php:358 includes/class-cntctfrm-settings.php:1072
110
- #: includes/class-cntctfrm-settings.php:1111
111
  msgid "Send me a copy"
112
  msgstr "Отправить мне копию"
113
 
114
- #: contact_form.php:359 includes/class-cntctfrm-settings.php:1073
115
- #: includes/class-cntctfrm-settings.php:1112
116
  msgid "I consent to having this site collect my personal data."
117
  msgstr "Я разрешаю этому сайту собирать мои личные данные."
118
 
119
  # @ contact_form
120
- #: contact_form.php:360 includes/class-cntctfrm-settings.php:1074
121
- #: includes/class-cntctfrm-settings.php:1113
122
  msgid "Submit"
123
  msgstr "Отправить"
124
 
@@ -188,12 +188,12 @@ msgstr ""
188
  msgid "Thank you for contacting us."
189
  msgstr "Спасибо, что связались с нами."
190
 
191
- #: contact_form.php:651
192
  msgid "NEW_FORM"
193
  msgstr "НОВАЯ_ФОРМА"
194
 
195
  # @ contact_form
196
- #: contact_form.php:652
197
  msgid ""
198
  "If you want to create multiple contact forms, please install the Contact "
199
  "Form Multi plugin."
@@ -201,7 +201,7 @@ msgstr ""
201
  "Если вы хотите создать несколько разных контактных форм, пожалуйста, "
202
  "установите плагин Contact Form Multi."
203
 
204
- #: contact_form.php:657
205
  msgid ""
206
  "Contact Form plugin doesn't support your current version of Contact Form "
207
  "Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
@@ -212,57 +212,57 @@ msgstr ""
212
  "выше."
213
 
214
  # @ contact_form
215
- #: contact_form.php:759
216
  msgid "Sorry, email message could not be delivered."
217
  msgstr "Извините, ваш email не может быть отправлен."
218
 
219
  # @ contact_form
220
- #: contact_form.php:1366 contact_form.php:1368
221
  msgid "Sent from (ip address)"
222
  msgstr "Отправлено от (IP адрес)"
223
 
224
  # @ contact_form
225
- #: contact_form.php:1372 contact_form.php:1374
226
- #: includes/class-cntctfrm-settings.php:1024
227
  msgid "Date/Time"
228
  msgstr "Дата/Время"
229
 
230
  # @ contact_form
231
- #: contact_form.php:1378 contact_form.php:1380
232
- #: includes/class-cntctfrm-settings.php:1025
233
  msgid "Sent from (referer)"
234
  msgstr "Отправлено от (referer)"
235
 
236
  # @ contact_form
237
- #: contact_form.php:1384 contact_form.php:1386
238
- #: includes/class-cntctfrm-settings.php:1026
239
  msgid "Using (user agent)"
240
  msgstr "Используя (user agent)"
241
 
242
  # @ contact_form
243
- #: contact_form.php:1396
244
  msgid "Contact from"
245
  msgstr "Контакт из"
246
 
247
  # @ contact_form
248
- #: contact_form.php:1401 contact_form.php:1450
249
  msgid "Site"
250
  msgstr "Сайт"
251
 
252
  # @ contact_form
253
- #: contact_form.php:1423 contact_form.php:1467
254
- #: includes/class-cntctfrm-settings.php:598
255
  msgid "Email"
256
  msgstr "Email"
257
 
258
  # @ contact_form
259
- #: contact_form.php:1439 contact_form.php:1480
260
- #: includes/class-cntctfrm-settings.php:1359
261
  msgid "Phone Number"
262
  msgstr "Телефон"
263
 
264
  # @ contact_form
265
- #: contact_form.php:1562
266
  msgid ""
267
  "If you can see this MIME, it means that the MIME type is not supported by "
268
  "your email client!"
@@ -271,26 +271,26 @@ msgstr ""
271
  "MIME тип!"
272
 
273
  # @ contact_form
274
- #: contact_form.php:1634
275
  msgid "FAQ"
276
  msgstr "FAQ"
277
 
278
  # @ contact_form
279
- #: contact_form.php:1635
280
  msgid "Support"
281
  msgstr "Поддержка"
282
 
283
  # @ contact_form
284
- #: contact_form.php:1684
285
  msgid "Are you sure that you want to delete this language data?"
286
  msgstr "Вы действительно хотите удалить данные для этого языка?"
287
 
288
  # @ contact_form
289
- #: contact_form.php:1706
290
  msgid "Add multiple forms"
291
  msgstr "Добавить несколько форм"
292
 
293
- #: contact_form.php:1706
294
  msgid ""
295
  "Install Contact Form Multi plugin to create unlimited number of contact "
296
  "forms."
@@ -299,86 +299,86 @@ msgstr ""
299
  "контактных форм."
300
 
301
  # @ contact_form
302
- #: contact_form.php:1711
303
  msgid "Learn more"
304
  msgstr "Подробнее"
305
 
306
- #: contact_form.php:1715 includes/class-cntctfrm-settings.php:469
307
- #: includes/class-cntctfrm-settings.php:987
308
- #: includes/class-cntctfrm-settings.php:1272
309
  msgid "Close"
310
  msgstr "Закрыть"
311
 
312
- #: contact_form.php:1769
313
  msgid "Error"
314
  msgstr "Ошибка"
315
 
316
- #: contact_form.php:1769 contact_form.php:1771
317
  msgid "Illegal language code"
318
  msgstr "Нелегальный языковой код"
319
 
320
  # @ contact_form
321
- #: contact_form.php:1805 contact_form.php:1807
322
- #: includes/class-cntctfrm-settings.php:1089
323
- #: includes/class-cntctfrm-settings.php:1091
324
- #: includes/class-cntctfrm-settings.php:1128
325
- #: includes/class-cntctfrm-settings.php:1130
326
- #: includes/class-cntctfrm-settings.php:1162
327
- #: includes/class-cntctfrm-settings.php:1164
328
- #: includes/class-cntctfrm-settings.php:1176
329
- #: includes/class-cntctfrm-settings.php:1178
330
  msgid "Use shortcode"
331
  msgstr "Используйте шорткод"
332
 
333
  # @ contact_form
334
- #: contact_form.php:1805 contact_form.php:1807
335
- #: includes/class-cntctfrm-settings.php:1089
336
- #: includes/class-cntctfrm-settings.php:1091
337
- #: includes/class-cntctfrm-settings.php:1128
338
- #: includes/class-cntctfrm-settings.php:1130
339
- #: includes/class-cntctfrm-settings.php:1162
340
- #: includes/class-cntctfrm-settings.php:1164
341
- #: includes/class-cntctfrm-settings.php:1176
342
- #: includes/class-cntctfrm-settings.php:1178
343
  msgid "for this language"
344
  msgstr "для данного языка"
345
 
346
- #: contact_form.php:1955
347
  msgid "Close notice"
348
  msgstr "Закрыть"
349
 
350
  # @ contact_form
351
- #: contact_form.php:1960
352
  msgid "allows to store your messages to the database."
353
  msgstr "позволяет хранить ваши сообщения в базе данных."
354
 
355
  # @ contact_form
356
- #: contact_form.php:1961
357
  msgid "Manage messages that have been sent from your website."
358
  msgstr "Управление сообщениями, которые были отправлены с вашего сайта."
359
 
360
  # @ contact_form
361
- #: contact_form.php:1964
362
  msgid "Learn More"
363
  msgstr "Подробнее"
364
 
365
  # @ contact_form
366
- #: contact_form.php:2024
367
  msgid "Contact form"
368
  msgstr "Контактная форма"
369
 
370
  # @ contact_form
371
- #: contact_form.php:2037 contact_form.php:2047
372
  msgid "Language"
373
  msgstr "Язык"
374
 
375
  #: includes/class-cntctfrm-settings.php:28
376
- #: includes/class-cntctfrm-settings.php:546
377
  msgid "Additional Settings"
378
  msgstr "Дополнительные настройки"
379
 
380
  #: includes/class-cntctfrm-settings.php:29
381
- #: includes/class-cntctfrm-settings.php:1198
382
  msgid "Appearance"
383
  msgstr "Отображение"
384
 
@@ -407,7 +407,7 @@ msgstr ""
407
  "Для плагина Contact Form требуется PHP % s или выше. Пожалуйста, свяжитесь с "
408
  "вашим хостинг-провайдером, чтобы обновить версию PHP."
409
 
410
- #: includes/class-cntctfrm-settings.php:347
411
  msgid ""
412
  "Email 'FROM' field option was changed, which may cause email messages being "
413
  "moved to the spam folder or email delivery failures."
@@ -416,7 +416,7 @@ msgstr ""
416
  "что письма будут попадать в спам или не будут доставлены"
417
 
418
  # @ contact_form
419
- #: includes/class-cntctfrm-settings.php:357
420
  msgid ""
421
  "If the 'Redirect to page' option is selected then the URL field should be in "
422
  "the following format"
@@ -425,33 +425,33 @@ msgstr ""
425
  "в следующем формате"
426
 
427
  # @ contact_form
428
- #: includes/class-cntctfrm-settings.php:364
429
  msgid "Such user does not exist."
430
  msgstr "Данный пользователь не найден."
431
 
432
  # @ contact_form
433
- #: includes/class-cntctfrm-settings.php:374
434
  msgid ""
435
  "Please enter a valid email address in the 'Use this email address' field."
436
  msgstr "Пожалуйста, введите корректный email в поле 'Использовать этот email'."
437
 
438
  # @ contact_form
439
- #: includes/class-cntctfrm-settings.php:382
440
  msgid "Please enter a valid email address in the 'FROM' field."
441
  msgstr "Пожалуйста, введите корректный email для поля \"От\"."
442
 
443
  # @ contact_form
444
- #: includes/class-cntctfrm-settings.php:402
445
  msgid "Settings saved."
446
  msgstr "Настройки сохранены"
447
 
448
  # @ contact_form
449
- #: includes/class-cntctfrm-settings.php:404
450
  msgid "Settings are not saved."
451
  msgstr "Настройки не сохранены."
452
 
453
  # @ contact_form
454
- #: includes/class-cntctfrm-settings.php:429
455
  msgid ""
456
  "If you leave the fields empty, the messages will be sent to the email "
457
  "address specified during registration."
@@ -460,17 +460,17 @@ msgstr ""
460
  "email, который был указан при регистрации сайта."
461
 
462
  # @ contact_form
463
- #: includes/class-cntctfrm-settings.php:432
464
  msgid "The user's email address"
465
  msgstr "Email пользователя сайта"
466
 
467
  # @ contact_form
468
- #: includes/class-cntctfrm-settings.php:437
469
  msgid "Select a username"
470
  msgstr "Выберите имя пользователя"
471
 
472
  # @ contact_form
473
- #: includes/class-cntctfrm-settings.php:450
474
  msgid ""
475
  "Select a username of the person who should get the messages from the contact "
476
  "form."
@@ -479,98 +479,98 @@ msgstr ""
479
  "формы."
480
 
481
  # @ contact_form
482
- #: includes/class-cntctfrm-settings.php:455
483
  msgid "Use this email address"
484
  msgstr "Использовать этот email"
485
 
486
  # @ contact_form
487
- #: includes/class-cntctfrm-settings.php:460
488
  msgid "Enter the email address for receiving messages"
489
  msgstr "Укажите email, на который будут отправляться сообщения"
490
 
491
  # @ contact_form
492
- #: includes/class-cntctfrm-settings.php:473
493
  msgid "Add department selectbox to the contact form"
494
  msgstr "Добавить выбор отдела в контактную форму"
495
 
496
  # @ contact_form
497
- #: includes/class-cntctfrm-settings.php:492
498
  msgid "Save emails to the database"
499
  msgstr "Сохранять email в базу данных"
500
 
501
  # @ contact_form
502
- #: includes/class-cntctfrm-settings.php:504
503
- #: includes/class-cntctfrm-settings.php:518
504
- #: includes/class-cntctfrm-settings.php:525
505
  msgid "Using"
506
  msgstr "Используя"
507
 
508
- #: includes/class-cntctfrm-settings.php:510
509
- #: includes/class-cntctfrm-settings.php:889
510
- #: includes/class-cntctfrm-settings.php:930
511
- #: includes/class-cntctfrm-settings.php:965
512
  msgid "Please activate the appropriate option on"
513
  msgstr "Пожалуйста, активируйте соответствующую опцию на странице настроек"
514
 
515
  # @ contact_form
516
- #: includes/class-cntctfrm-settings.php:513
517
- #: includes/class-cntctfrm-settings.php:892
518
- #: includes/class-cntctfrm-settings.php:933
519
- #: includes/class-cntctfrm-settings.php:968
520
  msgid "settings page"
521
  msgstr " "
522
 
523
  # @ contact_form
524
- #: includes/class-cntctfrm-settings.php:519
525
- #: includes/class-cntctfrm-settings.php:899
526
- #: includes/class-cntctfrm-settings.php:941
527
- #: includes/class-cntctfrm-settings.php:975
528
  msgid "Activate"
529
  msgstr "Активировать"
530
 
531
  # @ contact_form
532
- #: includes/class-cntctfrm-settings.php:526
533
- #: includes/class-cntctfrm-settings.php:908
534
- #: includes/class-cntctfrm-settings.php:947
535
- #: includes/class-cntctfrm-settings.php:980
536
  msgid "Download"
537
  msgstr "Скачать"
538
 
539
- #: includes/class-cntctfrm-settings.php:551
540
  msgid "Sending method"
541
  msgstr "Метод отправки"
542
 
543
  # @ contact_form
544
- #: includes/class-cntctfrm-settings.php:556
545
  msgid "Wp-mail"
546
  msgstr "Wp-mail"
547
 
548
  # @ contact_form
549
- #: includes/class-cntctfrm-settings.php:557
550
  msgid "You can use the Wordpress wp_mail function for mailing"
551
  msgstr "Для отправки почты вы можете использовать Wordpress функцию wp_mail"
552
 
553
  # @ contact_form
554
- #: includes/class-cntctfrm-settings.php:562
555
  msgid "Mail"
556
  msgstr "Mail"
557
 
558
  # @ contact_form
559
- #: includes/class-cntctfrm-settings.php:563
560
  msgid "You can use the PHP mail function for mailing"
561
  msgstr "Для отправки почты вы можете использовать PHP функцию mail"
562
 
563
- #: includes/class-cntctfrm-settings.php:569
564
  msgid "'FROM' field"
565
  msgstr "Поле \"От\""
566
 
567
  # @ contact_form
568
- #: includes/class-cntctfrm-settings.php:585
569
  msgid "User name"
570
  msgstr "Имя пользователя"
571
 
572
  # @ contact_form
573
- #: includes/class-cntctfrm-settings.php:587
574
  msgid ""
575
  "The name of the user who fills the form will be used in the field 'From'."
576
  msgstr ""
@@ -578,12 +578,12 @@ msgstr ""
578
  "заполняет форму."
579
 
580
  # @ contact_form
581
- #: includes/class-cntctfrm-settings.php:609
582
  msgid "User email"
583
  msgstr "Email пользователя"
584
 
585
  # @ contact_form
586
- #: includes/class-cntctfrm-settings.php:611
587
  msgid ""
588
  "The email address of the user who fills the form will be used in the field "
589
  "'From'."
@@ -591,7 +591,7 @@ msgstr ""
591
  "В поле \"От\" в письме будет использоваться email того пользователя, который "
592
  "заполняет форму."
593
 
594
- #: includes/class-cntctfrm-settings.php:620
595
  msgid ""
596
  "If this option is changed, email messages may be moved to the spam folder or "
597
  "email delivery failures may occur."
@@ -600,76 +600,76 @@ msgstr ""
600
  "будут попадать в спам или не будут доставлены."
601
 
602
  # @ contact_form
603
- #: includes/class-cntctfrm-settings.php:629
604
  msgid "Required symbol"
605
  msgstr "Символ, отображающий обязательное поле"
606
 
607
  # @ contact_form
608
- #: includes/class-cntctfrm-settings.php:639
609
  msgid "Fields"
610
  msgstr "Поля"
611
 
612
  # @ contact_form
613
- #: includes/class-cntctfrm-settings.php:640
614
- #: includes/class-cntctfrm-settings.php:667
615
- #: includes/class-cntctfrm-settings.php:694
616
- #: includes/class-cntctfrm-settings.php:714
617
- #: includes/class-cntctfrm-settings.php:750
618
- #: includes/class-cntctfrm-settings.php:832
619
  msgid "Used"
620
  msgstr "Используется"
621
 
622
  # @ contact_form
623
- #: includes/class-cntctfrm-settings.php:641
624
- #: includes/class-cntctfrm-settings.php:656
625
- #: includes/class-cntctfrm-settings.php:671
626
- #: includes/class-cntctfrm-settings.php:698
627
- #: includes/class-cntctfrm-settings.php:718
628
- #: includes/class-cntctfrm-settings.php:754
629
- #: includes/class-cntctfrm-settings.php:767
630
- #: includes/class-cntctfrm-settings.php:791
631
  msgid "Required"
632
  msgstr "Обязательное"
633
 
634
  # @ contact_form
635
- #: includes/class-cntctfrm-settings.php:643
636
- #: includes/class-cntctfrm-settings.php:676
637
- #: includes/class-cntctfrm-settings.php:733
638
- #: includes/class-cntctfrm-settings.php:772
639
- #: includes/class-cntctfrm-settings.php:796
640
  msgid "Visible"
641
  msgstr "Видимое"
642
 
643
  # @ contact_form
644
- #: includes/class-cntctfrm-settings.php:644
645
- #: includes/class-cntctfrm-settings.php:680
646
- #: includes/class-cntctfrm-settings.php:737
647
- #: includes/class-cntctfrm-settings.php:776
648
- #: includes/class-cntctfrm-settings.php:800
649
  msgid "Disabled for editing"
650
  msgstr "Нет возможности редактировать"
651
 
652
  # @ contact_form
653
- #: includes/class-cntctfrm-settings.php:645
654
- #: includes/class-cntctfrm-settings.php:704
655
- #: includes/class-cntctfrm-settings.php:780
656
- #: includes/class-cntctfrm-settings.php:804
657
  msgid "Field's default value"
658
  msgstr "Значение полей по умолчанию"
659
 
660
  # @ contact_form
661
- #: includes/class-cntctfrm-settings.php:652
662
  msgid "Department selectbox"
663
  msgstr "Список отделов"
664
 
665
- #: includes/class-cntctfrm-settings.php:684
666
  msgid "Use User's name as a default value if the user is logged in."
667
  msgstr ""
668
  "Использовать имя Пользователя как значение по умолчанию, если пользователь "
669
  "залогинен."
670
 
671
- #: includes/class-cntctfrm-settings.php:685
672
- #: includes/class-cntctfrm-settings.php:742
673
  msgid ""
674
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
675
  "in users."
@@ -678,113 +678,121 @@ msgstr ""
678
  "к залогиненным пользователям."
679
 
680
  # @ contact_form
681
- #: includes/class-cntctfrm-settings.php:691
682
  msgid "Location selectbox"
683
  msgstr "Список местоположений"
684
 
685
- #: includes/class-cntctfrm-settings.php:741
686
  msgid "Use User's email as a default value if the user is logged in."
687
  msgstr ""
688
  "Использовать Email Пользователя как значение по умолчанию, если пользователь "
689
  "залогинен."
690
 
691
  # @ contact_form
692
- #: includes/class-cntctfrm-settings.php:825
693
  msgid "Attachment block"
694
- msgstr "Блок \"Прикрепить файл\""
695
 
696
  # @ contact_form
697
- #: includes/class-cntctfrm-settings.php:827
698
  msgid "Users can attach the following file formats"
699
  msgstr "Пользователи могут прикрепить файлы таких типов"
700
 
 
 
 
 
 
 
 
 
701
  # @ contact_form
702
- #: includes/class-cntctfrm-settings.php:845
703
  msgid "Add to the form"
704
  msgstr "Добавить в форму"
705
 
706
  # @ contact_form
707
- #: includes/class-cntctfrm-settings.php:850
708
  msgid "Tips below the Attachment"
709
  msgstr "Пояснения после блока \"Прикрепить файл\""
710
 
711
  # @ contact_form
712
- #: includes/class-cntctfrm-settings.php:857
713
  msgid "'Send me a copy' block"
714
  msgstr "Блок \"Отправить мне копию\""
715
 
716
- #: includes/class-cntctfrm-settings.php:864
717
  msgid "GDPR Compliance"
718
  msgstr "Согласие с GDPR"
719
 
720
- #: includes/class-cntctfrm-settings.php:869
721
  msgid "Link to Privacy Policy Page"
722
  msgstr "Ссылка на страницу политики конфиденциальности"
723
 
724
- #: includes/class-cntctfrm-settings.php:873
725
  msgid "Text for Privacy Policy Link"
726
  msgstr "Текст для ссылки политики конфиденциальности"
727
 
728
- #: includes/class-cntctfrm-settings.php:901
729
  msgid "Activate for network"
730
  msgstr "Активировать для сети"
731
 
732
  # @ contact_form
733
- #: includes/class-cntctfrm-settings.php:991
734
  msgid "Agreement checkbox"
735
  msgstr "Чекбокс согласия с условиями"
736
 
737
  # @ contact_form
738
- #: includes/class-cntctfrm-settings.php:991
739
  msgid "Required checkbox for submitting the form"
740
  msgstr "Обязательный чекбокс для отправки формы"
741
 
742
  # @ contact_form
743
- #: includes/class-cntctfrm-settings.php:992
744
  msgid "Optional checkbox"
745
  msgstr "Дополнительный чекбокс"
746
 
747
  # @ contact_form
748
- #: includes/class-cntctfrm-settings.php:992
749
  msgid "Optional checkbox, the results of which will be displayed in email"
750
  msgstr "Дополнительный чекбокс, результаты которого будут отображены в email"
751
 
752
  # @ contact_form
753
- #: includes/class-cntctfrm-settings.php:1007
754
  msgid "Delete an attachment file from the server after the email is sent"
755
  msgstr "Удалить прикрепленный файл с сервера после отправки email"
756
 
757
  # @ contact_form
758
- #: includes/class-cntctfrm-settings.php:1013
759
  msgid "Email in HTML format sending"
760
  msgstr "Отправка еmail в формате HTML"
761
 
762
  # @ contact_form
763
- #: includes/class-cntctfrm-settings.php:1017
764
  msgid "Display additional info in the email"
765
  msgstr "Отображение дополнительной информации в письме"
766
 
767
  # @ contact_form
768
- #: includes/class-cntctfrm-settings.php:1023
769
  msgid "Sent from (IP address)"
770
  msgstr "Отправлено от (IP адрес)"
771
 
772
- #: includes/class-cntctfrm-settings.php:1023
773
  msgid "Example: Sent from (IP address): 127.0.0.1"
774
  msgstr "Пример: Отправлено от (IP адрес): 127.0.0.1"
775
 
776
- #: includes/class-cntctfrm-settings.php:1024
777
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
778
  msgstr "Пример: Дата/Время: 19 Августа, 2013 20:50"
779
 
780
- #: includes/class-cntctfrm-settings.php:1025
781
  msgid ""
782
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
783
  msgstr ""
784
  "Пример: Отправлено от (referer): https://bestwebsoft.com/contacts/contact-"
785
  "us/"
786
 
787
- #: includes/class-cntctfrm-settings.php:1026
788
  msgid ""
789
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
790
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -793,147 +801,147 @@ msgstr ""
793
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
794
 
795
  # @ contact_form
796
- #: includes/class-cntctfrm-settings.php:1031
797
  msgid "Language settings for the field names in the form"
798
  msgstr "Языковые настройки для имён полей в форме"
799
 
800
  # @ contact_form
801
- #: includes/class-cntctfrm-settings.php:1040
802
  msgid "Add a language"
803
  msgstr "Добавить язык"
804
 
805
  # @ contact_form
806
- #: includes/class-cntctfrm-settings.php:1044
807
  msgid "Change the names of the contact form fields and error messages"
808
  msgstr "Изменить имена полей контактной формы и сообщений об ошибках"
809
 
810
  # @ contact_form
811
- #: includes/class-cntctfrm-settings.php:1049
812
- #: includes/class-cntctfrm-settings.php:1147
813
- #: includes/class-cntctfrm-settings.php:1252
814
  msgid "Default"
815
  msgstr "По умолчанию"
816
 
817
  # @ contact_form
818
- #: includes/class-cntctfrm-settings.php:1062
819
- #: includes/class-cntctfrm-settings.php:1101
820
  msgid "click to expand/hide the list"
821
  msgstr "нажмите чтобы развернуть/свернуть список"
822
 
823
  # @ contact_form
824
- #: includes/class-cntctfrm-settings.php:1071
825
- #: includes/class-cntctfrm-settings.php:1110
826
  msgid "Tips below the Attachment block"
827
  msgstr "Пояснения после блока \"Прикрепить файл\""
828
 
829
  # @ contact_form
830
- #: includes/class-cntctfrm-settings.php:1075
831
- #: includes/class-cntctfrm-settings.php:1114
832
  msgid "Error message for the Name field"
833
  msgstr "Сообщение об ошибке для поля Имя"
834
 
835
  # @ contact_form
836
- #: includes/class-cntctfrm-settings.php:1076
837
- #: includes/class-cntctfrm-settings.php:1115
838
  msgid "Error message for the Address field"
839
  msgstr "Сообщение об ошибке для поля Адрес"
840
 
841
  # @ contact_form
842
- #: includes/class-cntctfrm-settings.php:1077
843
- #: includes/class-cntctfrm-settings.php:1116
844
  msgid "Error message for the Email field"
845
  msgstr "Сообщение об ошибке для поля Email"
846
 
847
  # @ contact_form
848
- #: includes/class-cntctfrm-settings.php:1078
849
- #: includes/class-cntctfrm-settings.php:1117
850
  msgid "Error message for the Phone field"
851
  msgstr "Сообщение об ошибке для поля Телефон"
852
 
853
  # @ contact_form
854
- #: includes/class-cntctfrm-settings.php:1079
855
- #: includes/class-cntctfrm-settings.php:1118
856
  msgid "Error message for the Subject field"
857
  msgstr "Сообщение об ошибке для поля Тема"
858
 
859
  # @ contact_form
860
- #: includes/class-cntctfrm-settings.php:1080
861
- #: includes/class-cntctfrm-settings.php:1119
862
  msgid "Error message for the Message field"
863
  msgstr "Сообщение об ошибке для поля Сообщение"
864
 
865
  # @ contact_form
866
- #: includes/class-cntctfrm-settings.php:1081
867
- #: includes/class-cntctfrm-settings.php:1120
868
  msgid "Error message about the file type for the Attachment field"
869
  msgstr "Сообщение об ошибке о типе файла для поля \"Прикрепить файл\""
870
 
871
  # @ contact_form
872
- #: includes/class-cntctfrm-settings.php:1082
873
- #: includes/class-cntctfrm-settings.php:1121
874
  msgid ""
875
  "Error message while uploading a file for the Attachment field to the server"
876
  msgstr ""
877
  "Сообщение об ошибке при загрузке файла на сервер для поля \"Прикрепить файл\""
878
 
879
  # @ contact_form
880
- #: includes/class-cntctfrm-settings.php:1083
881
- #: includes/class-cntctfrm-settings.php:1122
882
  msgid "Error message while moving the file for the Attachment field"
883
  msgstr "Сообщение об ошибке при перемещении файла для поля \"Прикрепить файл\""
884
 
885
  # @ contact_form
886
- #: includes/class-cntctfrm-settings.php:1084
887
- #: includes/class-cntctfrm-settings.php:1123
888
  msgid "Error message when file size limit for the Attachment field is exceeded"
889
  msgstr ""
890
  "Сообщение об ошибке, когда размер файла превышает размер разрешенного "
891
  "сервером для поля \"Прикрепить файл\""
892
 
893
  # @ contact_form
894
- #: includes/class-cntctfrm-settings.php:1085
895
- #: includes/class-cntctfrm-settings.php:1124
896
  msgid "Error message for the Captcha field"
897
  msgstr "Сообщение об ошибке для поля Captcha"
898
 
899
  # @ contact_form
900
- #: includes/class-cntctfrm-settings.php:1086
901
- #: includes/class-cntctfrm-settings.php:1125
902
  msgid "Error message for the whole form"
903
  msgstr "Сообщение об ошибке для всей формы"
904
 
905
  # @ contact_form
906
- #: includes/class-cntctfrm-settings.php:1138
907
  msgid "Use the changed names of the contact form fields in the email"
908
  msgstr "Использовать измененные имена полей контактной формы в email"
909
 
910
  # @ contact_form
911
- #: includes/class-cntctfrm-settings.php:1144
912
  msgid "Action after email is sent"
913
  msgstr "Действие после отправки письма"
914
 
915
  # @ contact_form
916
- #: includes/class-cntctfrm-settings.php:1146
917
  msgid "Display text"
918
  msgstr "Отобразить текст"
919
 
920
  # @ contact_form
921
- #: includes/class-cntctfrm-settings.php:1160
922
- #: includes/class-cntctfrm-settings.php:1174
923
  msgid "Text"
924
  msgstr "Текст"
925
 
926
  # @ contact_form
927
- #: includes/class-cntctfrm-settings.php:1185
928
  msgid "Redirect to the page"
929
  msgstr "Перенаправление на страницу"
930
 
931
  # @ contact_form
932
- #: includes/class-cntctfrm-settings.php:1186
933
  msgid "Url"
934
  msgstr "Ссылка"
935
 
936
- #: includes/class-cntctfrm-settings.php:1206
937
  #, php-format
938
  msgid ""
939
  "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
@@ -942,221 +950,221 @@ msgstr ""
942
  "Пожалуйста включите JavaScript, чтобы изменить опции '%s', '%s', '%s', '%s' "
943
  "и для сортировки полей."
944
 
945
- #: includes/class-cntctfrm-settings.php:1207
946
- #: includes/class-cntctfrm-settings.php:1224
947
  msgid "Form layout"
948
  msgstr "Шаблон формы"
949
 
950
  # @ contact_form
951
- #: includes/class-cntctfrm-settings.php:1208
952
- #: includes/class-cntctfrm-settings.php:1291
953
  msgid "Labels position"
954
  msgstr "Расположение имен полей"
955
 
956
- #: includes/class-cntctfrm-settings.php:1209
957
- #: includes/class-cntctfrm-settings.php:1309
958
  msgid "Labels align"
959
  msgstr "Выравнивание имен полей"
960
 
961
  # @ contact_form
962
- #: includes/class-cntctfrm-settings.php:1210
963
- #: includes/class-cntctfrm-settings.php:1236
964
  msgid "Submit position"
965
  msgstr "Позиция кнопки 'Отправить'"
966
 
967
  # @ contact_form
968
- #: includes/class-cntctfrm-settings.php:1211
969
- #: includes/class-cntctfrm-settings.php:1340
970
  msgid "Add tooltips"
971
  msgstr "Добавить подсказки"
972
 
973
  # @ contact_form
974
- #: includes/class-cntctfrm-settings.php:1212
975
- #: includes/class-cntctfrm-settings.php:1381
976
  msgid "Style options"
977
  msgstr "Настройки стиля"
978
 
979
- #: includes/class-cntctfrm-settings.php:1228
980
  msgid "One column"
981
  msgstr "Одна колонка"
982
 
983
- #: includes/class-cntctfrm-settings.php:1231
984
  msgid "Two columns"
985
  msgstr "Две колонки"
986
 
987
- #: includes/class-cntctfrm-settings.php:1240
988
- #: includes/class-cntctfrm-settings.php:1280
989
  #: includes/class-cntctfrm-settings.php:1298
990
- #: includes/class-cntctfrm-settings.php:1313
 
991
  msgid "Left"
992
  msgstr "Слева"
993
 
994
- #: includes/class-cntctfrm-settings.php:1243
995
- #: includes/class-cntctfrm-settings.php:1286
996
- #: includes/class-cntctfrm-settings.php:1301
997
  #: includes/class-cntctfrm-settings.php:1319
 
998
  msgid "Right"
999
  msgstr "Справа"
1000
 
1001
- #: includes/class-cntctfrm-settings.php:1248
1002
  msgid "Width"
1003
  msgstr "Ширина"
1004
 
1005
- #: includes/class-cntctfrm-settings.php:1256
1006
  msgid "Custom"
1007
  msgstr "Пользовательская"
1008
 
1009
- #: includes/class-cntctfrm-settings.php:1263
1010
  msgid "px"
1011
  msgstr "пикс"
1012
 
1013
- #: includes/class-cntctfrm-settings.php:1276
1014
  msgid "Form align"
1015
  msgstr "Выравнивание формы"
1016
 
1017
- #: includes/class-cntctfrm-settings.php:1283
1018
- #: includes/class-cntctfrm-settings.php:1316
1019
  msgid "Center"
1020
  msgstr "По центру"
1021
 
1022
- #: includes/class-cntctfrm-settings.php:1295
1023
  msgid "Top"
1024
  msgstr "Сверху"
1025
 
1026
- #: includes/class-cntctfrm-settings.php:1304
1027
  msgid "Bottom"
1028
  msgstr "Снизу"
1029
 
1030
  # @ contact_form
1031
- #: includes/class-cntctfrm-settings.php:1324
1032
  msgid "Errors output"
1033
  msgstr "Отображение ошибок"
1034
 
1035
  # @ contact_form
1036
- #: includes/class-cntctfrm-settings.php:1327
1037
  msgid "Display error messages"
1038
  msgstr "Отображать сообщения об ошибках"
1039
 
1040
  # @ contact_form
1041
- #: includes/class-cntctfrm-settings.php:1328
1042
  msgid "Color of the input field errors."
1043
  msgstr "Отображать ошибки цветом для полей ввода."
1044
 
1045
  # @ contact_form
1046
- #: includes/class-cntctfrm-settings.php:1329
1047
  msgid "Display error messages & color of the input field errors"
1048
  msgstr "Отображать сообщения об ошибках и цвет полей ввода с ошибками"
1049
 
1050
  # @ contact_form
1051
- #: includes/class-cntctfrm-settings.php:1334
1052
  msgid "Add placeholder to the input blocks"
1053
  msgstr "Добавить вспомогательный текст в поля ввода"
1054
 
1055
  # @ contact_form
1056
- #: includes/class-cntctfrm-settings.php:1354
1057
  msgid "Email address"
1058
  msgstr "Email"
1059
 
1060
  # @ contact_form
1061
- #: includes/class-cntctfrm-settings.php:1385
1062
  msgid "Text color"
1063
  msgstr "Цвет текста"
1064
 
1065
  # @ contact_form
1066
- #: includes/class-cntctfrm-settings.php:1393
1067
  msgid "Label text color"
1068
  msgstr "Цвет текста"
1069
 
1070
  # @ contact_form
1071
- #: includes/class-cntctfrm-settings.php:1402
1072
  msgid "Placeholder color"
1073
  msgstr "Цвет вспомогательного текста"
1074
 
1075
  # @ contact_form
1076
- #: includes/class-cntctfrm-settings.php:1407
1077
  msgid "Errors color"
1078
  msgstr "Цвет ошибок"
1079
 
1080
  # @ contact_form
1081
- #: includes/class-cntctfrm-settings.php:1415
1082
  msgid "Error text color"
1083
  msgstr "Цвет текста для ошибок"
1084
 
1085
  # @ contact_form
1086
- #: includes/class-cntctfrm-settings.php:1423
1087
  msgid "Background color of the input field errors"
1088
  msgstr "Цвет фона для полей ввода с ошибками"
1089
 
1090
  # @ contact_form
1091
- #: includes/class-cntctfrm-settings.php:1431
1092
  msgid "Border color of the input field errors"
1093
  msgstr "Цвет рамки для полей ввода с ошибками"
1094
 
1095
  # @ contact_form
1096
- #: includes/class-cntctfrm-settings.php:1439
1097
  msgid "Placeholder color of the input field errors"
1098
  msgstr "Цвет вспомогательного текста для полей ввода с ошибками"
1099
 
1100
  # @ contact_form
1101
- #: includes/class-cntctfrm-settings.php:1444
1102
  msgid "Input fields"
1103
  msgstr "Поля ввода"
1104
 
1105
  # @ contact_form
1106
- #: includes/class-cntctfrm-settings.php:1452
1107
  msgid "Input fields background color"
1108
  msgstr "Цвет фона для полей ввода"
1109
 
1110
  # @ contact_form
1111
- #: includes/class-cntctfrm-settings.php:1460
1112
  msgid "Text fields color"
1113
  msgstr "Цвет текста для полей ввода"
1114
 
1115
  # @ contact_form
1116
- #: includes/class-cntctfrm-settings.php:1464
1117
  msgid "Border width in px, numbers only"
1118
  msgstr "Ширина рамки в пикселях, только цифры"
1119
 
1120
  # @ contact_form
1121
- #: includes/class-cntctfrm-settings.php:1472
1122
- #: includes/class-cntctfrm-settings.php:1505
1123
  msgid "Border color"
1124
  msgstr "Цвет рамки"
1125
 
1126
  # @ contact_form
1127
- #: includes/class-cntctfrm-settings.php:1477
1128
  msgid "Submit button"
1129
  msgstr "Кнопка Отправить"
1130
 
1131
  # @ contact_form
1132
- #: includes/class-cntctfrm-settings.php:1481
1133
  msgid "Width in px, numbers only"
1134
  msgstr "Ширина в пикселях, только цифры"
1135
 
1136
  # @ contact_form
1137
- #: includes/class-cntctfrm-settings.php:1489
1138
  msgid "Button color"
1139
  msgstr "Цвет кнопки"
1140
 
1141
  # @ contact_form
1142
- #: includes/class-cntctfrm-settings.php:1497
1143
  msgid "Button text color"
1144
  msgstr "Цвет текста для кнопки"
1145
 
1146
  # @ contact_form
1147
- #: includes/class-cntctfrm-settings.php:1524
1148
  msgid "Contact Form | Preview"
1149
  msgstr "Contact Form | Предпросмотр"
1150
 
1151
- #: includes/class-cntctfrm-settings.php:1525
1152
  msgid "Drag the necessary field to sort fields."
1153
  msgstr "Перетащите необходимое поле для сортировки полей."
1154
 
1155
- #: includes/class-cntctfrm-settings.php:1772
1156
  msgid "Contact Form Shortcode"
1157
  msgstr "Шорткод Contact Form"
1158
 
1159
- #: includes/class-cntctfrm-settings.php:1775
1160
  msgid "Add Contact Form to your page or post using the following shortcode:"
1161
  msgstr ""
1162
  "Добавьте Contact Form в свои записи или страницы, используя следующий "
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-03-21 11:13+0200\n"
6
+ "PO-Revision-Date: 2019-03-21 11:15+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"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ contact_form
23
+ #: contact_form.php:39 contact_form.php:47 contact_form.php:648
24
+ #: includes/class-cntctfrm-settings.php:426
25
  msgid "Contact Form Settings"
26
  msgstr "Настройки Contact Form"
27
 
28
  # @ contact_form
29
+ #: contact_form.php:48 contact_form.php:1668 contact_form.php:1682
30
  #: includes/class-cntctfrm-settings.php:27
31
  msgid "Settings"
32
  msgstr "Настройки"
33
 
34
+ #: contact_form.php:63 includes/class-cntctfrm-settings.php:484
35
+ #: includes/class-cntctfrm-settings.php:818
36
+ #: includes/class-cntctfrm-settings.php:1016
37
+ #: includes/class-cntctfrm-settings.php:1531
38
  msgid "Upgrade to Pro"
39
  msgstr "Обновиться до Pro"
40
 
41
  # @ contact_form
42
+ #: contact_form.php:350 contact_form.php:1443 contact_form.php:1489
43
+ #: includes/class-cntctfrm-settings.php:575
44
+ #: includes/class-cntctfrm-settings.php:665
45
+ #: includes/class-cntctfrm-settings.php:1082
46
+ #: includes/class-cntctfrm-settings.php:1121
47
+ #: includes/class-cntctfrm-settings.php:1362
48
  msgid "Name"
49
  msgstr "Имя"
50
 
51
  # @ contact_form
52
+ #: contact_form.php:351 contact_form.php:1450 contact_form.php:1495
53
+ #: includes/class-cntctfrm-settings.php:712
54
+ #: includes/class-cntctfrm-settings.php:1083
55
+ #: includes/class-cntctfrm-settings.php:1122
56
+ #: includes/class-cntctfrm-settings.php:1367
57
  msgid "Address"
58
  msgstr "Адрес"
59
 
60
  # @ contact_form
61
+ #: contact_form.php:352 includes/class-cntctfrm-settings.php:728
62
+ #: includes/class-cntctfrm-settings.php:1084
63
+ #: includes/class-cntctfrm-settings.php:1123
64
  msgid "Email Address"
65
  msgstr "Email адрес"
66
 
67
  # @ contact_form
68
+ #: contact_form.php:353 includes/class-cntctfrm-settings.php:748
69
+ #: includes/class-cntctfrm-settings.php:1085
70
+ #: includes/class-cntctfrm-settings.php:1124
71
  msgid "Phone number"
72
  msgstr "Телефон"
73
 
74
  # @ contact_form
75
+ #: contact_form.php:354 contact_form.php:1461 contact_form.php:1504
76
+ #: includes/class-cntctfrm-settings.php:764
77
+ #: includes/class-cntctfrm-settings.php:1086
78
+ #: includes/class-cntctfrm-settings.php:1125
79
+ #: includes/class-cntctfrm-settings.php:1382
80
  msgid "Subject"
81
  msgstr "Тема"
82
 
83
  # @ contact_form
84
+ #: contact_form.php:355 contact_form.php:1466 contact_form.php:1508
85
+ #: includes/class-cntctfrm-settings.php:788
86
+ #: includes/class-cntctfrm-settings.php:1087
87
+ #: includes/class-cntctfrm-settings.php:1126
88
+ #: includes/class-cntctfrm-settings.php:1386
89
  msgid "Message"
90
  msgstr "Сообщение"
91
 
92
  # @ contact_form
93
+ #: contact_form.php:356 includes/class-cntctfrm-settings.php:1088
94
+ #: includes/class-cntctfrm-settings.php:1127
95
+ #: includes/class-cntctfrm-settings.php:1391
96
  msgid "Attachment"
97
  msgstr "Прикрепить файл"
98
 
106
  "AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
107
 
108
  # @ contact_form
109
+ #: contact_form.php:358 includes/class-cntctfrm-settings.php:1090
110
+ #: includes/class-cntctfrm-settings.php:1129
111
  msgid "Send me a copy"
112
  msgstr "Отправить мне копию"
113
 
114
+ #: contact_form.php:359 includes/class-cntctfrm-settings.php:1091
115
+ #: includes/class-cntctfrm-settings.php:1130
116
  msgid "I consent to having this site collect my personal data."
117
  msgstr "Я разрешаю этому сайту собирать мои личные данные."
118
 
119
  # @ contact_form
120
+ #: contact_form.php:360 includes/class-cntctfrm-settings.php:1092
121
+ #: includes/class-cntctfrm-settings.php:1131
122
  msgid "Submit"
123
  msgstr "Отправить"
124
 
188
  msgid "Thank you for contacting us."
189
  msgstr "Спасибо, что связались с нами."
190
 
191
+ #: contact_form.php:652
192
  msgid "NEW_FORM"
193
  msgstr "НОВАЯ_ФОРМА"
194
 
195
  # @ contact_form
196
+ #: contact_form.php:653
197
  msgid ""
198
  "If you want to create multiple contact forms, please install the Contact "
199
  "Form Multi plugin."
201
  "Если вы хотите создать несколько разных контактных форм, пожалуйста, "
202
  "установите плагин Contact Form Multi."
203
 
204
+ #: contact_form.php:658
205
  msgid ""
206
  "Contact Form plugin doesn't support your current version of Contact Form "
207
  "Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
212
  "выше."
213
 
214
  # @ contact_form
215
+ #: contact_form.php:760
216
  msgid "Sorry, email message could not be delivered."
217
  msgstr "Извините, ваш email не может быть отправлен."
218
 
219
  # @ contact_form
220
+ #: contact_form.php:1399 contact_form.php:1401
221
  msgid "Sent from (ip address)"
222
  msgstr "Отправлено от (IP адрес)"
223
 
224
  # @ contact_form
225
+ #: contact_form.php:1405 contact_form.php:1407
226
+ #: includes/class-cntctfrm-settings.php:1042
227
  msgid "Date/Time"
228
  msgstr "Дата/Время"
229
 
230
  # @ contact_form
231
+ #: contact_form.php:1411 contact_form.php:1413
232
+ #: includes/class-cntctfrm-settings.php:1043
233
  msgid "Sent from (referer)"
234
  msgstr "Отправлено от (referer)"
235
 
236
  # @ contact_form
237
+ #: contact_form.php:1417 contact_form.php:1419
238
+ #: includes/class-cntctfrm-settings.php:1044
239
  msgid "Using (user agent)"
240
  msgstr "Используя (user agent)"
241
 
242
  # @ contact_form
243
+ #: contact_form.php:1429
244
  msgid "Contact from"
245
  msgstr "Контакт из"
246
 
247
  # @ contact_form
248
+ #: contact_form.php:1434 contact_form.php:1483
249
  msgid "Site"
250
  msgstr "Сайт"
251
 
252
  # @ contact_form
253
+ #: contact_form.php:1456 contact_form.php:1500
254
+ #: includes/class-cntctfrm-settings.php:599
255
  msgid "Email"
256
  msgstr "Email"
257
 
258
  # @ contact_form
259
+ #: contact_form.php:1472 contact_form.php:1513
260
+ #: includes/class-cntctfrm-settings.php:1377
261
  msgid "Phone Number"
262
  msgstr "Телефон"
263
 
264
  # @ contact_form
265
+ #: contact_form.php:1611
266
  msgid ""
267
  "If you can see this MIME, it means that the MIME type is not supported by "
268
  "your email client!"
271
  "MIME тип!"
272
 
273
  # @ contact_form
274
+ #: contact_form.php:1683
275
  msgid "FAQ"
276
  msgstr "FAQ"
277
 
278
  # @ contact_form
279
+ #: contact_form.php:1684
280
  msgid "Support"
281
  msgstr "Поддержка"
282
 
283
  # @ contact_form
284
+ #: contact_form.php:1733
285
  msgid "Are you sure that you want to delete this language data?"
286
  msgstr "Вы действительно хотите удалить данные для этого языка?"
287
 
288
  # @ contact_form
289
+ #: contact_form.php:1755
290
  msgid "Add multiple forms"
291
  msgstr "Добавить несколько форм"
292
 
293
+ #: contact_form.php:1755
294
  msgid ""
295
  "Install Contact Form Multi plugin to create unlimited number of contact "
296
  "forms."
299
  "контактных форм."
300
 
301
  # @ contact_form
302
+ #: contact_form.php:1760
303
  msgid "Learn more"
304
  msgstr "Подробнее"
305
 
306
+ #: contact_form.php:1764 includes/class-cntctfrm-settings.php:470
307
+ #: includes/class-cntctfrm-settings.php:1005
308
+ #: includes/class-cntctfrm-settings.php:1290
309
  msgid "Close"
310
  msgstr "Закрыть"
311
 
312
+ #: contact_form.php:1818
313
  msgid "Error"
314
  msgstr "Ошибка"
315
 
316
+ #: contact_form.php:1818 contact_form.php:1820
317
  msgid "Illegal language code"
318
  msgstr "Нелегальный языковой код"
319
 
320
  # @ contact_form
321
+ #: contact_form.php:1854 contact_form.php:1856
322
+ #: includes/class-cntctfrm-settings.php:1107
323
+ #: includes/class-cntctfrm-settings.php:1109
324
+ #: includes/class-cntctfrm-settings.php:1146
325
+ #: includes/class-cntctfrm-settings.php:1148
326
+ #: includes/class-cntctfrm-settings.php:1180
327
+ #: includes/class-cntctfrm-settings.php:1182
328
+ #: includes/class-cntctfrm-settings.php:1194
329
+ #: includes/class-cntctfrm-settings.php:1196
330
  msgid "Use shortcode"
331
  msgstr "Используйте шорткод"
332
 
333
  # @ contact_form
334
+ #: contact_form.php:1854 contact_form.php:1856
335
+ #: includes/class-cntctfrm-settings.php:1107
336
+ #: includes/class-cntctfrm-settings.php:1109
337
+ #: includes/class-cntctfrm-settings.php:1146
338
+ #: includes/class-cntctfrm-settings.php:1148
339
+ #: includes/class-cntctfrm-settings.php:1180
340
+ #: includes/class-cntctfrm-settings.php:1182
341
+ #: includes/class-cntctfrm-settings.php:1194
342
+ #: includes/class-cntctfrm-settings.php:1196
343
  msgid "for this language"
344
  msgstr "для данного языка"
345
 
346
+ #: contact_form.php:2004
347
  msgid "Close notice"
348
  msgstr "Закрыть"
349
 
350
  # @ contact_form
351
+ #: contact_form.php:2009
352
  msgid "allows to store your messages to the database."
353
  msgstr "позволяет хранить ваши сообщения в базе данных."
354
 
355
  # @ contact_form
356
+ #: contact_form.php:2010
357
  msgid "Manage messages that have been sent from your website."
358
  msgstr "Управление сообщениями, которые были отправлены с вашего сайта."
359
 
360
  # @ contact_form
361
+ #: contact_form.php:2013
362
  msgid "Learn More"
363
  msgstr "Подробнее"
364
 
365
  # @ contact_form
366
+ #: contact_form.php:2073
367
  msgid "Contact form"
368
  msgstr "Контактная форма"
369
 
370
  # @ contact_form
371
+ #: contact_form.php:2086 contact_form.php:2096
372
  msgid "Language"
373
  msgstr "Язык"
374
 
375
  #: includes/class-cntctfrm-settings.php:28
376
+ #: includes/class-cntctfrm-settings.php:547
377
  msgid "Additional Settings"
378
  msgstr "Дополнительные настройки"
379
 
380
  #: includes/class-cntctfrm-settings.php:29
381
+ #: includes/class-cntctfrm-settings.php:1216
382
  msgid "Appearance"
383
  msgstr "Отображение"
384
 
407
  "Для плагина Contact Form требуется PHP % s или выше. Пожалуйста, свяжитесь с "
408
  "вашим хостинг-провайдером, чтобы обновить версию PHP."
409
 
410
+ #: includes/class-cntctfrm-settings.php:348
411
  msgid ""
412
  "Email 'FROM' field option was changed, which may cause email messages being "
413
  "moved to the spam folder or email delivery failures."
416
  "что письма будут попадать в спам или не будут доставлены"
417
 
418
  # @ contact_form
419
+ #: includes/class-cntctfrm-settings.php:358
420
  msgid ""
421
  "If the 'Redirect to page' option is selected then the URL field should be in "
422
  "the following format"
425
  "в следующем формате"
426
 
427
  # @ contact_form
428
+ #: includes/class-cntctfrm-settings.php:365
429
  msgid "Such user does not exist."
430
  msgstr "Данный пользователь не найден."
431
 
432
  # @ contact_form
433
+ #: includes/class-cntctfrm-settings.php:375
434
  msgid ""
435
  "Please enter a valid email address in the 'Use this email address' field."
436
  msgstr "Пожалуйста, введите корректный email в поле 'Использовать этот email'."
437
 
438
  # @ contact_form
439
+ #: includes/class-cntctfrm-settings.php:383
440
  msgid "Please enter a valid email address in the 'FROM' field."
441
  msgstr "Пожалуйста, введите корректный email для поля \"От\"."
442
 
443
  # @ contact_form
444
+ #: includes/class-cntctfrm-settings.php:403
445
  msgid "Settings saved."
446
  msgstr "Настройки сохранены"
447
 
448
  # @ contact_form
449
+ #: includes/class-cntctfrm-settings.php:405
450
  msgid "Settings are not saved."
451
  msgstr "Настройки не сохранены."
452
 
453
  # @ contact_form
454
+ #: includes/class-cntctfrm-settings.php:430
455
  msgid ""
456
  "If you leave the fields empty, the messages will be sent to the email "
457
  "address specified during registration."
460
  "email, который был указан при регистрации сайта."
461
 
462
  # @ contact_form
463
+ #: includes/class-cntctfrm-settings.php:433
464
  msgid "The user's email address"
465
  msgstr "Email пользователя сайта"
466
 
467
  # @ contact_form
468
+ #: includes/class-cntctfrm-settings.php:438
469
  msgid "Select a username"
470
  msgstr "Выберите имя пользователя"
471
 
472
  # @ contact_form
473
+ #: includes/class-cntctfrm-settings.php:451
474
  msgid ""
475
  "Select a username of the person who should get the messages from the contact "
476
  "form."
479
  "формы."
480
 
481
  # @ contact_form
482
+ #: includes/class-cntctfrm-settings.php:456
483
  msgid "Use this email address"
484
  msgstr "Использовать этот email"
485
 
486
  # @ contact_form
487
+ #: includes/class-cntctfrm-settings.php:461
488
  msgid "Enter the email address for receiving messages"
489
  msgstr "Укажите email, на который будут отправляться сообщения"
490
 
491
  # @ contact_form
492
+ #: includes/class-cntctfrm-settings.php:474
493
  msgid "Add department selectbox to the contact form"
494
  msgstr "Добавить выбор отдела в контактную форму"
495
 
496
  # @ contact_form
497
+ #: includes/class-cntctfrm-settings.php:493
498
  msgid "Save emails to the database"
499
  msgstr "Сохранять email в базу данных"
500
 
501
  # @ contact_form
502
+ #: includes/class-cntctfrm-settings.php:505
503
+ #: includes/class-cntctfrm-settings.php:519
504
+ #: includes/class-cntctfrm-settings.php:526
505
  msgid "Using"
506
  msgstr "Используя"
507
 
508
+ #: includes/class-cntctfrm-settings.php:511
509
+ #: includes/class-cntctfrm-settings.php:907
510
+ #: includes/class-cntctfrm-settings.php:948
511
+ #: includes/class-cntctfrm-settings.php:983
512
  msgid "Please activate the appropriate option on"
513
  msgstr "Пожалуйста, активируйте соответствующую опцию на странице настроек"
514
 
515
  # @ contact_form
516
+ #: includes/class-cntctfrm-settings.php:514
517
+ #: includes/class-cntctfrm-settings.php:910
518
+ #: includes/class-cntctfrm-settings.php:951
519
+ #: includes/class-cntctfrm-settings.php:986
520
  msgid "settings page"
521
  msgstr " "
522
 
523
  # @ contact_form
524
+ #: includes/class-cntctfrm-settings.php:520
525
+ #: includes/class-cntctfrm-settings.php:917
526
+ #: includes/class-cntctfrm-settings.php:959
527
+ #: includes/class-cntctfrm-settings.php:993
528
  msgid "Activate"
529
  msgstr "Активировать"
530
 
531
  # @ contact_form
532
+ #: includes/class-cntctfrm-settings.php:527
533
+ #: includes/class-cntctfrm-settings.php:926
534
+ #: includes/class-cntctfrm-settings.php:965
535
+ #: includes/class-cntctfrm-settings.php:998
536
  msgid "Download"
537
  msgstr "Скачать"
538
 
539
+ #: includes/class-cntctfrm-settings.php:552
540
  msgid "Sending method"
541
  msgstr "Метод отправки"
542
 
543
  # @ contact_form
544
+ #: includes/class-cntctfrm-settings.php:557
545
  msgid "Wp-mail"
546
  msgstr "Wp-mail"
547
 
548
  # @ contact_form
549
+ #: includes/class-cntctfrm-settings.php:558
550
  msgid "You can use the Wordpress wp_mail function for mailing"
551
  msgstr "Для отправки почты вы можете использовать Wordpress функцию wp_mail"
552
 
553
  # @ contact_form
554
+ #: includes/class-cntctfrm-settings.php:563
555
  msgid "Mail"
556
  msgstr "Mail"
557
 
558
  # @ contact_form
559
+ #: includes/class-cntctfrm-settings.php:564
560
  msgid "You can use the PHP mail function for mailing"
561
  msgstr "Для отправки почты вы можете использовать PHP функцию mail"
562
 
563
+ #: includes/class-cntctfrm-settings.php:570
564
  msgid "'FROM' field"
565
  msgstr "Поле \"От\""
566
 
567
  # @ contact_form
568
+ #: includes/class-cntctfrm-settings.php:586
569
  msgid "User name"
570
  msgstr "Имя пользователя"
571
 
572
  # @ contact_form
573
+ #: includes/class-cntctfrm-settings.php:588
574
  msgid ""
575
  "The name of the user who fills the form will be used in the field 'From'."
576
  msgstr ""
578
  "заполняет форму."
579
 
580
  # @ contact_form
581
+ #: includes/class-cntctfrm-settings.php:610
582
  msgid "User email"
583
  msgstr "Email пользователя"
584
 
585
  # @ contact_form
586
+ #: includes/class-cntctfrm-settings.php:612
587
  msgid ""
588
  "The email address of the user who fills the form will be used in the field "
589
  "'From'."
591
  "В поле \"От\" в письме будет использоваться email того пользователя, который "
592
  "заполняет форму."
593
 
594
+ #: includes/class-cntctfrm-settings.php:621
595
  msgid ""
596
  "If this option is changed, email messages may be moved to the spam folder or "
597
  "email delivery failures may occur."
600
  "будут попадать в спам или не будут доставлены."
601
 
602
  # @ contact_form
603
+ #: includes/class-cntctfrm-settings.php:630
604
  msgid "Required symbol"
605
  msgstr "Символ, отображающий обязательное поле"
606
 
607
  # @ contact_form
608
+ #: includes/class-cntctfrm-settings.php:640
609
  msgid "Fields"
610
  msgstr "Поля"
611
 
612
  # @ contact_form
613
+ #: includes/class-cntctfrm-settings.php:641
614
+ #: includes/class-cntctfrm-settings.php:668
615
+ #: includes/class-cntctfrm-settings.php:695
616
+ #: includes/class-cntctfrm-settings.php:715
617
+ #: includes/class-cntctfrm-settings.php:751
618
+ #: includes/class-cntctfrm-settings.php:833
619
  msgid "Used"
620
  msgstr "Используется"
621
 
622
  # @ contact_form
623
+ #: includes/class-cntctfrm-settings.php:642
624
+ #: includes/class-cntctfrm-settings.php:657
625
+ #: includes/class-cntctfrm-settings.php:672
626
+ #: includes/class-cntctfrm-settings.php:699
627
+ #: includes/class-cntctfrm-settings.php:719
628
+ #: includes/class-cntctfrm-settings.php:755
629
+ #: includes/class-cntctfrm-settings.php:768
630
+ #: includes/class-cntctfrm-settings.php:792
631
  msgid "Required"
632
  msgstr "Обязательное"
633
 
634
  # @ contact_form
635
+ #: includes/class-cntctfrm-settings.php:644
636
+ #: includes/class-cntctfrm-settings.php:677
637
+ #: includes/class-cntctfrm-settings.php:734
638
+ #: includes/class-cntctfrm-settings.php:773
639
+ #: includes/class-cntctfrm-settings.php:797
640
  msgid "Visible"
641
  msgstr "Видимое"
642
 
643
  # @ contact_form
644
+ #: includes/class-cntctfrm-settings.php:645
645
+ #: includes/class-cntctfrm-settings.php:681
646
+ #: includes/class-cntctfrm-settings.php:738
647
+ #: includes/class-cntctfrm-settings.php:777
648
+ #: includes/class-cntctfrm-settings.php:801
649
  msgid "Disabled for editing"
650
  msgstr "Нет возможности редактировать"
651
 
652
  # @ contact_form
653
+ #: includes/class-cntctfrm-settings.php:646
654
+ #: includes/class-cntctfrm-settings.php:705
655
+ #: includes/class-cntctfrm-settings.php:781
656
+ #: includes/class-cntctfrm-settings.php:805
657
  msgid "Field's default value"
658
  msgstr "Значение полей по умолчанию"
659
 
660
  # @ contact_form
661
+ #: includes/class-cntctfrm-settings.php:653
662
  msgid "Department selectbox"
663
  msgstr "Список отделов"
664
 
665
+ #: includes/class-cntctfrm-settings.php:685
666
  msgid "Use User's name as a default value if the user is logged in."
667
  msgstr ""
668
  "Использовать имя Пользователя как значение по умолчанию, если пользователь "
669
  "залогинен."
670
 
671
+ #: includes/class-cntctfrm-settings.php:686
672
+ #: includes/class-cntctfrm-settings.php:743
673
  msgid ""
674
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
675
  "in users."
678
  "к залогиненным пользователям."
679
 
680
  # @ contact_form
681
+ #: includes/class-cntctfrm-settings.php:692
682
  msgid "Location selectbox"
683
  msgstr "Список местоположений"
684
 
685
+ #: includes/class-cntctfrm-settings.php:742
686
  msgid "Use User's email as a default value if the user is logged in."
687
  msgstr ""
688
  "Использовать Email Пользователя как значение по умолчанию, если пользователь "
689
  "залогинен."
690
 
691
  # @ contact_form
692
+ #: includes/class-cntctfrm-settings.php:826
693
  msgid "Attachment block"
694
+ msgstr "Прикрепить файл"
695
 
696
  # @ contact_form
697
+ #: includes/class-cntctfrm-settings.php:828
698
  msgid "Users can attach the following file formats"
699
  msgstr "Пользователи могут прикрепить файлы таких типов"
700
 
701
+ #: includes/class-cntctfrm-settings.php:844
702
+ msgid "Multi-attachment"
703
+ msgstr "Прикрепить несколько файлов"
704
+
705
+ #: includes/class-cntctfrm-settings.php:846
706
+ msgid "Enable to multiple file selection"
707
+ msgstr "Включите, чтобы позволить прикреплять несколько файлов"
708
+
709
  # @ contact_form
710
+ #: includes/class-cntctfrm-settings.php:863
711
  msgid "Add to the form"
712
  msgstr "Добавить в форму"
713
 
714
  # @ contact_form
715
+ #: includes/class-cntctfrm-settings.php:868
716
  msgid "Tips below the Attachment"
717
  msgstr "Пояснения после блока \"Прикрепить файл\""
718
 
719
  # @ contact_form
720
+ #: includes/class-cntctfrm-settings.php:875
721
  msgid "'Send me a copy' block"
722
  msgstr "Блок \"Отправить мне копию\""
723
 
724
+ #: includes/class-cntctfrm-settings.php:882
725
  msgid "GDPR Compliance"
726
  msgstr "Согласие с GDPR"
727
 
728
+ #: includes/class-cntctfrm-settings.php:887
729
  msgid "Link to Privacy Policy Page"
730
  msgstr "Ссылка на страницу политики конфиденциальности"
731
 
732
+ #: includes/class-cntctfrm-settings.php:891
733
  msgid "Text for Privacy Policy Link"
734
  msgstr "Текст для ссылки политики конфиденциальности"
735
 
736
+ #: includes/class-cntctfrm-settings.php:919
737
  msgid "Activate for network"
738
  msgstr "Активировать для сети"
739
 
740
  # @ contact_form
741
+ #: includes/class-cntctfrm-settings.php:1009
742
  msgid "Agreement checkbox"
743
  msgstr "Чекбокс согласия с условиями"
744
 
745
  # @ contact_form
746
+ #: includes/class-cntctfrm-settings.php:1009
747
  msgid "Required checkbox for submitting the form"
748
  msgstr "Обязательный чекбокс для отправки формы"
749
 
750
  # @ contact_form
751
+ #: includes/class-cntctfrm-settings.php:1010
752
  msgid "Optional checkbox"
753
  msgstr "Дополнительный чекбокс"
754
 
755
  # @ contact_form
756
+ #: includes/class-cntctfrm-settings.php:1010
757
  msgid "Optional checkbox, the results of which will be displayed in email"
758
  msgstr "Дополнительный чекбокс, результаты которого будут отображены в email"
759
 
760
  # @ contact_form
761
+ #: includes/class-cntctfrm-settings.php:1025
762
  msgid "Delete an attachment file from the server after the email is sent"
763
  msgstr "Удалить прикрепленный файл с сервера после отправки email"
764
 
765
  # @ contact_form
766
+ #: includes/class-cntctfrm-settings.php:1031
767
  msgid "Email in HTML format sending"
768
  msgstr "Отправка еmail в формате HTML"
769
 
770
  # @ contact_form
771
+ #: includes/class-cntctfrm-settings.php:1035
772
  msgid "Display additional info in the email"
773
  msgstr "Отображение дополнительной информации в письме"
774
 
775
  # @ contact_form
776
+ #: includes/class-cntctfrm-settings.php:1041
777
  msgid "Sent from (IP address)"
778
  msgstr "Отправлено от (IP адрес)"
779
 
780
+ #: includes/class-cntctfrm-settings.php:1041
781
  msgid "Example: Sent from (IP address): 127.0.0.1"
782
  msgstr "Пример: Отправлено от (IP адрес): 127.0.0.1"
783
 
784
+ #: includes/class-cntctfrm-settings.php:1042
785
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
786
  msgstr "Пример: Дата/Время: 19 Августа, 2013 20:50"
787
 
788
+ #: includes/class-cntctfrm-settings.php:1043
789
  msgid ""
790
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
791
  msgstr ""
792
  "Пример: Отправлено от (referer): https://bestwebsoft.com/contacts/contact-"
793
  "us/"
794
 
795
+ #: includes/class-cntctfrm-settings.php:1044
796
  msgid ""
797
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
798
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
801
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
802
 
803
  # @ contact_form
804
+ #: includes/class-cntctfrm-settings.php:1049
805
  msgid "Language settings for the field names in the form"
806
  msgstr "Языковые настройки для имён полей в форме"
807
 
808
  # @ contact_form
809
+ #: includes/class-cntctfrm-settings.php:1058
810
  msgid "Add a language"
811
  msgstr "Добавить язык"
812
 
813
  # @ contact_form
814
+ #: includes/class-cntctfrm-settings.php:1062
815
  msgid "Change the names of the contact form fields and error messages"
816
  msgstr "Изменить имена полей контактной формы и сообщений об ошибках"
817
 
818
  # @ contact_form
819
+ #: includes/class-cntctfrm-settings.php:1067
820
+ #: includes/class-cntctfrm-settings.php:1165
821
+ #: includes/class-cntctfrm-settings.php:1270
822
  msgid "Default"
823
  msgstr "По умолчанию"
824
 
825
  # @ contact_form
826
+ #: includes/class-cntctfrm-settings.php:1080
827
+ #: includes/class-cntctfrm-settings.php:1119
828
  msgid "click to expand/hide the list"
829
  msgstr "нажмите чтобы развернуть/свернуть список"
830
 
831
  # @ contact_form
832
+ #: includes/class-cntctfrm-settings.php:1089
833
+ #: includes/class-cntctfrm-settings.php:1128
834
  msgid "Tips below the Attachment block"
835
  msgstr "Пояснения после блока \"Прикрепить файл\""
836
 
837
  # @ contact_form
838
+ #: includes/class-cntctfrm-settings.php:1093
839
+ #: includes/class-cntctfrm-settings.php:1132
840
  msgid "Error message for the Name field"
841
  msgstr "Сообщение об ошибке для поля Имя"
842
 
843
  # @ contact_form
844
+ #: includes/class-cntctfrm-settings.php:1094
845
+ #: includes/class-cntctfrm-settings.php:1133
846
  msgid "Error message for the Address field"
847
  msgstr "Сообщение об ошибке для поля Адрес"
848
 
849
  # @ contact_form
850
+ #: includes/class-cntctfrm-settings.php:1095
851
+ #: includes/class-cntctfrm-settings.php:1134
852
  msgid "Error message for the Email field"
853
  msgstr "Сообщение об ошибке для поля Email"
854
 
855
  # @ contact_form
856
+ #: includes/class-cntctfrm-settings.php:1096
857
+ #: includes/class-cntctfrm-settings.php:1135
858
  msgid "Error message for the Phone field"
859
  msgstr "Сообщение об ошибке для поля Телефон"
860
 
861
  # @ contact_form
862
+ #: includes/class-cntctfrm-settings.php:1097
863
+ #: includes/class-cntctfrm-settings.php:1136
864
  msgid "Error message for the Subject field"
865
  msgstr "Сообщение об ошибке для поля Тема"
866
 
867
  # @ contact_form
868
+ #: includes/class-cntctfrm-settings.php:1098
869
+ #: includes/class-cntctfrm-settings.php:1137
870
  msgid "Error message for the Message field"
871
  msgstr "Сообщение об ошибке для поля Сообщение"
872
 
873
  # @ contact_form
874
+ #: includes/class-cntctfrm-settings.php:1099
875
+ #: includes/class-cntctfrm-settings.php:1138
876
  msgid "Error message about the file type for the Attachment field"
877
  msgstr "Сообщение об ошибке о типе файла для поля \"Прикрепить файл\""
878
 
879
  # @ contact_form
880
+ #: includes/class-cntctfrm-settings.php:1100
881
+ #: includes/class-cntctfrm-settings.php:1139
882
  msgid ""
883
  "Error message while uploading a file for the Attachment field to the server"
884
  msgstr ""
885
  "Сообщение об ошибке при загрузке файла на сервер для поля \"Прикрепить файл\""
886
 
887
  # @ contact_form
888
+ #: includes/class-cntctfrm-settings.php:1101
889
+ #: includes/class-cntctfrm-settings.php:1140
890
  msgid "Error message while moving the file for the Attachment field"
891
  msgstr "Сообщение об ошибке при перемещении файла для поля \"Прикрепить файл\""
892
 
893
  # @ contact_form
894
+ #: includes/class-cntctfrm-settings.php:1102
895
+ #: includes/class-cntctfrm-settings.php:1141
896
  msgid "Error message when file size limit for the Attachment field is exceeded"
897
  msgstr ""
898
  "Сообщение об ошибке, когда размер файла превышает размер разрешенного "
899
  "сервером для поля \"Прикрепить файл\""
900
 
901
  # @ contact_form
902
+ #: includes/class-cntctfrm-settings.php:1103
903
+ #: includes/class-cntctfrm-settings.php:1142
904
  msgid "Error message for the Captcha field"
905
  msgstr "Сообщение об ошибке для поля Captcha"
906
 
907
  # @ contact_form
908
+ #: includes/class-cntctfrm-settings.php:1104
909
+ #: includes/class-cntctfrm-settings.php:1143
910
  msgid "Error message for the whole form"
911
  msgstr "Сообщение об ошибке для всей формы"
912
 
913
  # @ contact_form
914
+ #: includes/class-cntctfrm-settings.php:1156
915
  msgid "Use the changed names of the contact form fields in the email"
916
  msgstr "Использовать измененные имена полей контактной формы в email"
917
 
918
  # @ contact_form
919
+ #: includes/class-cntctfrm-settings.php:1162
920
  msgid "Action after email is sent"
921
  msgstr "Действие после отправки письма"
922
 
923
  # @ contact_form
924
+ #: includes/class-cntctfrm-settings.php:1164
925
  msgid "Display text"
926
  msgstr "Отобразить текст"
927
 
928
  # @ contact_form
929
+ #: includes/class-cntctfrm-settings.php:1178
930
+ #: includes/class-cntctfrm-settings.php:1192
931
  msgid "Text"
932
  msgstr "Текст"
933
 
934
  # @ contact_form
935
+ #: includes/class-cntctfrm-settings.php:1203
936
  msgid "Redirect to the page"
937
  msgstr "Перенаправление на страницу"
938
 
939
  # @ contact_form
940
+ #: includes/class-cntctfrm-settings.php:1204
941
  msgid "Url"
942
  msgstr "Ссылка"
943
 
944
+ #: includes/class-cntctfrm-settings.php:1224
945
  #, php-format
946
  msgid ""
947
  "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
950
  "Пожалуйста включите JavaScript, чтобы изменить опции '%s', '%s', '%s', '%s' "
951
  "и для сортировки полей."
952
 
953
+ #: includes/class-cntctfrm-settings.php:1225
954
+ #: includes/class-cntctfrm-settings.php:1242
955
  msgid "Form layout"
956
  msgstr "Шаблон формы"
957
 
958
  # @ contact_form
959
+ #: includes/class-cntctfrm-settings.php:1226
960
+ #: includes/class-cntctfrm-settings.php:1309
961
  msgid "Labels position"
962
  msgstr "Расположение имен полей"
963
 
964
+ #: includes/class-cntctfrm-settings.php:1227
965
+ #: includes/class-cntctfrm-settings.php:1327
966
  msgid "Labels align"
967
  msgstr "Выравнивание имен полей"
968
 
969
  # @ contact_form
970
+ #: includes/class-cntctfrm-settings.php:1228
971
+ #: includes/class-cntctfrm-settings.php:1254
972
  msgid "Submit position"
973
  msgstr "Позиция кнопки 'Отправить'"
974
 
975
  # @ contact_form
976
+ #: includes/class-cntctfrm-settings.php:1229
977
+ #: includes/class-cntctfrm-settings.php:1358
978
  msgid "Add tooltips"
979
  msgstr "Добавить подсказки"
980
 
981
  # @ contact_form
982
+ #: includes/class-cntctfrm-settings.php:1230
983
+ #: includes/class-cntctfrm-settings.php:1399
984
  msgid "Style options"
985
  msgstr "Настройки стиля"
986
 
987
+ #: includes/class-cntctfrm-settings.php:1246
988
  msgid "One column"
989
  msgstr "Одна колонка"
990
 
991
+ #: includes/class-cntctfrm-settings.php:1249
992
  msgid "Two columns"
993
  msgstr "Две колонки"
994
 
995
+ #: includes/class-cntctfrm-settings.php:1258
 
996
  #: includes/class-cntctfrm-settings.php:1298
997
+ #: includes/class-cntctfrm-settings.php:1316
998
+ #: includes/class-cntctfrm-settings.php:1331
999
  msgid "Left"
1000
  msgstr "Слева"
1001
 
1002
+ #: includes/class-cntctfrm-settings.php:1261
1003
+ #: includes/class-cntctfrm-settings.php:1304
 
1004
  #: includes/class-cntctfrm-settings.php:1319
1005
+ #: includes/class-cntctfrm-settings.php:1337
1006
  msgid "Right"
1007
  msgstr "Справа"
1008
 
1009
+ #: includes/class-cntctfrm-settings.php:1266
1010
  msgid "Width"
1011
  msgstr "Ширина"
1012
 
1013
+ #: includes/class-cntctfrm-settings.php:1274
1014
  msgid "Custom"
1015
  msgstr "Пользовательская"
1016
 
1017
+ #: includes/class-cntctfrm-settings.php:1281
1018
  msgid "px"
1019
  msgstr "пикс"
1020
 
1021
+ #: includes/class-cntctfrm-settings.php:1294
1022
  msgid "Form align"
1023
  msgstr "Выравнивание формы"
1024
 
1025
+ #: includes/class-cntctfrm-settings.php:1301
1026
+ #: includes/class-cntctfrm-settings.php:1334
1027
  msgid "Center"
1028
  msgstr "По центру"
1029
 
1030
+ #: includes/class-cntctfrm-settings.php:1313
1031
  msgid "Top"
1032
  msgstr "Сверху"
1033
 
1034
+ #: includes/class-cntctfrm-settings.php:1322
1035
  msgid "Bottom"
1036
  msgstr "Снизу"
1037
 
1038
  # @ contact_form
1039
+ #: includes/class-cntctfrm-settings.php:1342
1040
  msgid "Errors output"
1041
  msgstr "Отображение ошибок"
1042
 
1043
  # @ contact_form
1044
+ #: includes/class-cntctfrm-settings.php:1345
1045
  msgid "Display error messages"
1046
  msgstr "Отображать сообщения об ошибках"
1047
 
1048
  # @ contact_form
1049
+ #: includes/class-cntctfrm-settings.php:1346
1050
  msgid "Color of the input field errors."
1051
  msgstr "Отображать ошибки цветом для полей ввода."
1052
 
1053
  # @ contact_form
1054
+ #: includes/class-cntctfrm-settings.php:1347
1055
  msgid "Display error messages & color of the input field errors"
1056
  msgstr "Отображать сообщения об ошибках и цвет полей ввода с ошибками"
1057
 
1058
  # @ contact_form
1059
+ #: includes/class-cntctfrm-settings.php:1352
1060
  msgid "Add placeholder to the input blocks"
1061
  msgstr "Добавить вспомогательный текст в поля ввода"
1062
 
1063
  # @ contact_form
1064
+ #: includes/class-cntctfrm-settings.php:1372
1065
  msgid "Email address"
1066
  msgstr "Email"
1067
 
1068
  # @ contact_form
1069
+ #: includes/class-cntctfrm-settings.php:1403
1070
  msgid "Text color"
1071
  msgstr "Цвет текста"
1072
 
1073
  # @ contact_form
1074
+ #: includes/class-cntctfrm-settings.php:1411
1075
  msgid "Label text color"
1076
  msgstr "Цвет текста"
1077
 
1078
  # @ contact_form
1079
+ #: includes/class-cntctfrm-settings.php:1420
1080
  msgid "Placeholder color"
1081
  msgstr "Цвет вспомогательного текста"
1082
 
1083
  # @ contact_form
1084
+ #: includes/class-cntctfrm-settings.php:1425
1085
  msgid "Errors color"
1086
  msgstr "Цвет ошибок"
1087
 
1088
  # @ contact_form
1089
+ #: includes/class-cntctfrm-settings.php:1433
1090
  msgid "Error text color"
1091
  msgstr "Цвет текста для ошибок"
1092
 
1093
  # @ contact_form
1094
+ #: includes/class-cntctfrm-settings.php:1441
1095
  msgid "Background color of the input field errors"
1096
  msgstr "Цвет фона для полей ввода с ошибками"
1097
 
1098
  # @ contact_form
1099
+ #: includes/class-cntctfrm-settings.php:1449
1100
  msgid "Border color of the input field errors"
1101
  msgstr "Цвет рамки для полей ввода с ошибками"
1102
 
1103
  # @ contact_form
1104
+ #: includes/class-cntctfrm-settings.php:1457
1105
  msgid "Placeholder color of the input field errors"
1106
  msgstr "Цвет вспомогательного текста для полей ввода с ошибками"
1107
 
1108
  # @ contact_form
1109
+ #: includes/class-cntctfrm-settings.php:1462
1110
  msgid "Input fields"
1111
  msgstr "Поля ввода"
1112
 
1113
  # @ contact_form
1114
+ #: includes/class-cntctfrm-settings.php:1470
1115
  msgid "Input fields background color"
1116
  msgstr "Цвет фона для полей ввода"
1117
 
1118
  # @ contact_form
1119
+ #: includes/class-cntctfrm-settings.php:1478
1120
  msgid "Text fields color"
1121
  msgstr "Цвет текста для полей ввода"
1122
 
1123
  # @ contact_form
1124
+ #: includes/class-cntctfrm-settings.php:1482
1125
  msgid "Border width in px, numbers only"
1126
  msgstr "Ширина рамки в пикселях, только цифры"
1127
 
1128
  # @ contact_form
1129
+ #: includes/class-cntctfrm-settings.php:1490
1130
+ #: includes/class-cntctfrm-settings.php:1523
1131
  msgid "Border color"
1132
  msgstr "Цвет рамки"
1133
 
1134
  # @ contact_form
1135
+ #: includes/class-cntctfrm-settings.php:1495
1136
  msgid "Submit button"
1137
  msgstr "Кнопка Отправить"
1138
 
1139
  # @ contact_form
1140
+ #: includes/class-cntctfrm-settings.php:1499
1141
  msgid "Width in px, numbers only"
1142
  msgstr "Ширина в пикселях, только цифры"
1143
 
1144
  # @ contact_form
1145
+ #: includes/class-cntctfrm-settings.php:1507
1146
  msgid "Button color"
1147
  msgstr "Цвет кнопки"
1148
 
1149
  # @ contact_form
1150
+ #: includes/class-cntctfrm-settings.php:1515
1151
  msgid "Button text color"
1152
  msgstr "Цвет текста для кнопки"
1153
 
1154
  # @ contact_form
1155
+ #: includes/class-cntctfrm-settings.php:1542
1156
  msgid "Contact Form | Preview"
1157
  msgstr "Contact Form | Предпросмотр"
1158
 
1159
+ #: includes/class-cntctfrm-settings.php:1543
1160
  msgid "Drag the necessary field to sort fields."
1161
  msgstr "Перетащите необходимое поле для сортировки полей."
1162
 
1163
+ #: includes/class-cntctfrm-settings.php:1790
1164
  msgid "Contact Form Shortcode"
1165
  msgstr "Шорткод Contact Form"
1166
 
1167
+ #: includes/class-cntctfrm-settings.php:1793
1168
  msgid "Add Contact Form to your page or post using the following shortcode:"
1169
  msgstr ""
1170
  "Добавьте Contact Form в свои записи или страницы, используя следующий "
languages/contact-form-plugin-uk.mo CHANGED
Binary file
languages/contact-form-plugin-uk.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2019-02-25 17:01+0200\n"
6
- "PO-Revision-Date: 2019-02-25 17:04+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"
@@ -18,79 +18,79 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  # @ contact_form
21
- #: contact_form.php:39 contact_form.php:47 contact_form.php:647
22
- #: includes/class-cntctfrm-settings.php:425
23
  msgid "Contact Form Settings"
24
  msgstr "Налаштування Contact Form"
25
 
26
  # @ contact_form
27
- #: contact_form.php:48 contact_form.php:1619 contact_form.php:1633
28
  #: includes/class-cntctfrm-settings.php:27
29
  msgid "Settings"
30
  msgstr "Налаштування"
31
 
32
- #: contact_form.php:63 includes/class-cntctfrm-settings.php:483
33
- #: includes/class-cntctfrm-settings.php:817
34
- #: includes/class-cntctfrm-settings.php:998
35
- #: includes/class-cntctfrm-settings.php:1513
36
  msgid "Upgrade to Pro"
37
  msgstr "Оновитися до Pro"
38
 
39
  # @ contact_form
40
- #: contact_form.php:350 contact_form.php:1410 contact_form.php:1456
41
- #: includes/class-cntctfrm-settings.php:574
42
- #: includes/class-cntctfrm-settings.php:664
43
- #: includes/class-cntctfrm-settings.php:1064
44
- #: includes/class-cntctfrm-settings.php:1103
45
- #: includes/class-cntctfrm-settings.php:1344
46
  msgid "Name"
47
  msgstr "Ім'я"
48
 
49
  # @ contact_form
50
- #: contact_form.php:351 contact_form.php:1417 contact_form.php:1462
51
- #: includes/class-cntctfrm-settings.php:711
52
- #: includes/class-cntctfrm-settings.php:1065
53
- #: includes/class-cntctfrm-settings.php:1104
54
- #: includes/class-cntctfrm-settings.php:1349
55
  msgid "Address"
56
  msgstr "Адреса"
57
 
58
  # @ contact_form
59
- #: contact_form.php:352 includes/class-cntctfrm-settings.php:727
60
- #: includes/class-cntctfrm-settings.php:1066
61
- #: includes/class-cntctfrm-settings.php:1105
62
  msgid "Email Address"
63
  msgstr "Email"
64
 
65
  # @ contact_form
66
- #: contact_form.php:353 includes/class-cntctfrm-settings.php:747
67
- #: includes/class-cntctfrm-settings.php:1067
68
- #: includes/class-cntctfrm-settings.php:1106
69
  msgid "Phone number"
70
  msgstr "Номер телефону"
71
 
72
  # @ contact_form
73
- #: contact_form.php:354 contact_form.php:1428 contact_form.php:1471
74
- #: includes/class-cntctfrm-settings.php:763
75
- #: includes/class-cntctfrm-settings.php:1068
76
- #: includes/class-cntctfrm-settings.php:1107
77
- #: includes/class-cntctfrm-settings.php:1364
78
  msgid "Subject"
79
  msgstr "Тема"
80
 
81
  # @ contact_form
82
- #: contact_form.php:355 contact_form.php:1433 contact_form.php:1475
83
- #: includes/class-cntctfrm-settings.php:787
84
- #: includes/class-cntctfrm-settings.php:1069
85
- #: includes/class-cntctfrm-settings.php:1108
86
- #: includes/class-cntctfrm-settings.php:1368
87
  msgid "Message"
88
  msgstr "Повідомлення"
89
 
90
  # @ contact_form
91
- #: contact_form.php:356 includes/class-cntctfrm-settings.php:1070
92
- #: includes/class-cntctfrm-settings.php:1109
93
- #: includes/class-cntctfrm-settings.php:1373
94
  msgid "Attachment"
95
  msgstr "Вкладений файл"
96
 
@@ -105,19 +105,19 @@ msgstr ""
105
  "PPT."
106
 
107
  # @ contact_form
108
- #: contact_form.php:358 includes/class-cntctfrm-settings.php:1072
109
- #: includes/class-cntctfrm-settings.php:1111
110
  msgid "Send me a copy"
111
  msgstr "Надіслати мені копію"
112
 
113
- #: contact_form.php:359 includes/class-cntctfrm-settings.php:1073
114
- #: includes/class-cntctfrm-settings.php:1112
115
  msgid "I consent to having this site collect my personal data."
116
  msgstr "Я дозволяю цьому сайту збирати мої особисті дані."
117
 
118
  # @ contact_form
119
- #: contact_form.php:360 includes/class-cntctfrm-settings.php:1074
120
- #: includes/class-cntctfrm-settings.php:1113
121
  msgid "Submit"
122
  msgstr "Підтвердити"
123
 
@@ -186,12 +186,12 @@ msgstr "Будь ласка, внесіть поправки у виділені
186
  msgid "Thank you for contacting us."
187
  msgstr "Дякуємо, що зв'язалися з нами."
188
 
189
- #: contact_form.php:651
190
  msgid "NEW_FORM"
191
  msgstr "НОВА_ФОРМА"
192
 
193
  # @ contact_form
194
- #: contact_form.php:652
195
  msgid ""
196
  "If you want to create multiple contact forms, please install the Contact "
197
  "Form Multi plugin."
@@ -199,7 +199,7 @@ msgstr ""
199
  "Якщо ви хочете створити декілька різних контактних форм, будь ласка, "
200
  "встановіть плагін Contact Form Multi."
201
 
202
- #: contact_form.php:657
203
  msgid ""
204
  "Contact Form plugin doesn't support your current version of Contact Form "
205
  "Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
@@ -209,57 +209,57 @@ msgstr ""
209
  "Будь ласка, оновіть плагін Contact Form Multi до версії 1.2.6 або вище."
210
 
211
  # @ contact_form
212
- #: contact_form.php:759
213
  msgid "Sorry, email message could not be delivered."
214
  msgstr "Вибачте, ваше повідомлення не може бути доставлено."
215
 
216
  # @ contact_form
217
- #: contact_form.php:1366 contact_form.php:1368
218
  msgid "Sent from (ip address)"
219
  msgstr "Надіслано від (IP адреса)"
220
 
221
  # @ contact_form
222
- #: contact_form.php:1372 contact_form.php:1374
223
- #: includes/class-cntctfrm-settings.php:1024
224
  msgid "Date/Time"
225
  msgstr "Дата/Час"
226
 
227
  # @ contact_form
228
- #: contact_form.php:1378 contact_form.php:1380
229
- #: includes/class-cntctfrm-settings.php:1025
230
  msgid "Sent from (referer)"
231
  msgstr "Надіслано від (referer)"
232
 
233
  # @ contact_form
234
- #: contact_form.php:1384 contact_form.php:1386
235
- #: includes/class-cntctfrm-settings.php:1026
236
  msgid "Using (user agent)"
237
  msgstr "Використовується (user agent)"
238
 
239
  # @ contact_form
240
- #: contact_form.php:1396
241
  msgid "Contact from"
242
  msgstr "Контакт із"
243
 
244
  # @ contact_form
245
- #: contact_form.php:1401 contact_form.php:1450
246
  msgid "Site"
247
  msgstr "Сайт"
248
 
249
  # @ contact_form
250
- #: contact_form.php:1423 contact_form.php:1467
251
- #: includes/class-cntctfrm-settings.php:598
252
  msgid "Email"
253
  msgstr "Email"
254
 
255
  # @ contact_form
256
- #: contact_form.php:1439 contact_form.php:1480
257
- #: includes/class-cntctfrm-settings.php:1359
258
  msgid "Phone Number"
259
  msgstr "Номер телефону"
260
 
261
  # @ contact_form
262
- #: contact_form.php:1562
263
  msgid ""
264
  "If you can see this MIME, it means that the MIME type is not supported by "
265
  "your email client!"
@@ -268,26 +268,26 @@ msgstr ""
268
  "поштовим клієнтом!"
269
 
270
  # @ contact_form
271
- #: contact_form.php:1634
272
  msgid "FAQ"
273
  msgstr "FAQ"
274
 
275
  # @ contact_form
276
- #: contact_form.php:1635
277
  msgid "Support"
278
  msgstr "Підтримка"
279
 
280
  # @ contact_form
281
- #: contact_form.php:1684
282
  msgid "Are you sure that you want to delete this language data?"
283
  msgstr "Ви справді хочете видалити дані для цієї мови?"
284
 
285
  # @ contact_form
286
- #: contact_form.php:1706
287
  msgid "Add multiple forms"
288
  msgstr "Додати декілька форм"
289
 
290
- #: contact_form.php:1706
291
  msgid ""
292
  "Install Contact Form Multi plugin to create unlimited number of contact "
293
  "forms."
@@ -296,86 +296,86 @@ msgstr ""
296
  "необмежену кількість контактних форм."
297
 
298
  # @ contact_form
299
- #: contact_form.php:1711
300
  msgid "Learn more"
301
  msgstr "Дізнатись більше"
302
 
303
- #: contact_form.php:1715 includes/class-cntctfrm-settings.php:469
304
- #: includes/class-cntctfrm-settings.php:987
305
- #: includes/class-cntctfrm-settings.php:1272
306
  msgid "Close"
307
  msgstr "Закрити"
308
 
309
- #: contact_form.php:1769
310
  msgid "Error"
311
  msgstr "Помилка"
312
 
313
- #: contact_form.php:1769 contact_form.php:1771
314
  msgid "Illegal language code"
315
  msgstr "Нелегальний язиковий код"
316
 
317
  # @ contact_form
318
- #: contact_form.php:1805 contact_form.php:1807
319
- #: includes/class-cntctfrm-settings.php:1089
320
- #: includes/class-cntctfrm-settings.php:1091
321
- #: includes/class-cntctfrm-settings.php:1128
322
- #: includes/class-cntctfrm-settings.php:1130
323
- #: includes/class-cntctfrm-settings.php:1162
324
- #: includes/class-cntctfrm-settings.php:1164
325
- #: includes/class-cntctfrm-settings.php:1176
326
- #: includes/class-cntctfrm-settings.php:1178
327
  msgid "Use shortcode"
328
  msgstr "Використовуйте шорткод"
329
 
330
  # @ contact_form
331
- #: contact_form.php:1805 contact_form.php:1807
332
- #: includes/class-cntctfrm-settings.php:1089
333
- #: includes/class-cntctfrm-settings.php:1091
334
- #: includes/class-cntctfrm-settings.php:1128
335
- #: includes/class-cntctfrm-settings.php:1130
336
- #: includes/class-cntctfrm-settings.php:1162
337
- #: includes/class-cntctfrm-settings.php:1164
338
- #: includes/class-cntctfrm-settings.php:1176
339
- #: includes/class-cntctfrm-settings.php:1178
340
  msgid "for this language"
341
  msgstr "для цієї мови"
342
 
343
- #: contact_form.php:1955
344
  msgid "Close notice"
345
  msgstr "Закрити"
346
 
347
  # @ contact_form
348
- #: contact_form.php:1960
349
  msgid "allows to store your messages to the database."
350
  msgstr "дозволяє зберігати ваші повідомлення у базі даних."
351
 
352
  # @ contact_form
353
- #: contact_form.php:1961
354
  msgid "Manage messages that have been sent from your website."
355
  msgstr "Контролювати повідомлення, які було відправлено з Вашого сайту. "
356
 
357
  # @ contact_form
358
- #: contact_form.php:1964
359
  msgid "Learn More"
360
  msgstr "Дізнатись більше"
361
 
362
  # @ contact_form
363
- #: contact_form.php:2024
364
  msgid "Contact form"
365
  msgstr "Контактна форма"
366
 
367
  # @ contact_form
368
- #: contact_form.php:2037 contact_form.php:2047
369
  msgid "Language"
370
  msgstr "Мова"
371
 
372
  #: includes/class-cntctfrm-settings.php:28
373
- #: includes/class-cntctfrm-settings.php:546
374
  msgid "Additional Settings"
375
  msgstr "Додаткові Налаштування"
376
 
377
  #: includes/class-cntctfrm-settings.php:29
378
- #: includes/class-cntctfrm-settings.php:1198
379
  msgid "Appearance"
380
  msgstr "Відображення"
381
 
@@ -404,7 +404,7 @@ msgstr ""
404
  "Для плагіна Contact Form необхідний PHP %s або вище. Будь ласка зверніться "
405
  "до свого хостинг-провайдера для оновлення версії PHP"
406
 
407
- #: includes/class-cntctfrm-settings.php:347
408
  msgid ""
409
  "Email 'FROM' field option was changed, which may cause email messages being "
410
  "moved to the spam folder or email delivery failures."
@@ -413,7 +413,7 @@ msgstr ""
413
  "повідомлення не будуть доставлені або потраплять до папки Спам."
414
 
415
  # @ contact_form
416
- #: includes/class-cntctfrm-settings.php:357
417
  msgid ""
418
  "If the 'Redirect to page' option is selected then the URL field should be in "
419
  "the following format"
@@ -422,34 +422,34 @@ msgstr ""
422
  "бути заповнене в наступному форматі"
423
 
424
  # @ contact_form
425
- #: includes/class-cntctfrm-settings.php:364
426
  msgid "Such user does not exist."
427
  msgstr "Такого користувача не існує."
428
 
429
  # @ contact_form
430
- #: includes/class-cntctfrm-settings.php:374
431
  msgid ""
432
  "Please enter a valid email address in the 'Use this email address' field."
433
  msgstr ""
434
  "Будь ласка, введіть коректну email-адресу у поле 'Використовувати цей email'."
435
 
436
  # @ contact_form
437
- #: includes/class-cntctfrm-settings.php:382
438
  msgid "Please enter a valid email address in the 'FROM' field."
439
  msgstr "Будь ласка, введіть коректну email-адресу у полі \"Від\"."
440
 
441
  # @ contact_form
442
- #: includes/class-cntctfrm-settings.php:402
443
  msgid "Settings saved."
444
  msgstr "Налаштування збережено."
445
 
446
  # @ contact_form
447
- #: includes/class-cntctfrm-settings.php:404
448
  msgid "Settings are not saved."
449
  msgstr "Налаштування не збережено."
450
 
451
  # @ contact_form
452
- #: includes/class-cntctfrm-settings.php:429
453
  msgid ""
454
  "If you leave the fields empty, the messages will be sent to the email "
455
  "address specified during registration."
@@ -458,17 +458,17 @@ msgstr ""
458
  "адресу, вказану під час реєстрації."
459
 
460
  # @ contact_form
461
- #: includes/class-cntctfrm-settings.php:432
462
  msgid "The user's email address"
463
  msgstr "Email-адреса користувача"
464
 
465
  # @ contact_form
466
- #: includes/class-cntctfrm-settings.php:437
467
  msgid "Select a username"
468
  msgstr "Виберіть ім'я користувача"
469
 
470
  # @ contact_form
471
- #: includes/class-cntctfrm-settings.php:450
472
  msgid ""
473
  "Select a username of the person who should get the messages from the contact "
474
  "form."
@@ -476,120 +476,120 @@ msgstr ""
476
  "Виберіть ім'я користувача, що має отримати повідомлення з контактної форми."
477
 
478
  # @ contact_form
479
- #: includes/class-cntctfrm-settings.php:455
480
  msgid "Use this email address"
481
  msgstr "Використовувати цей email"
482
 
483
  # @ contact_form
484
- #: includes/class-cntctfrm-settings.php:460
485
  msgid "Enter the email address for receiving messages"
486
  msgstr "Вкажіть email, на який ви бажаєте отримувати повідомлення"
487
 
488
  # @ contact_form
489
- #: includes/class-cntctfrm-settings.php:473
490
  msgid "Add department selectbox to the contact form"
491
  msgstr "Додати поле для вибору департаменту до контактної форми"
492
 
493
  # @ contact_form
494
- #: includes/class-cntctfrm-settings.php:492
495
  msgid "Save emails to the database"
496
  msgstr "Зберігати email у базі даних"
497
 
498
  # @ contact_form
499
- #: includes/class-cntctfrm-settings.php:504
500
- #: includes/class-cntctfrm-settings.php:518
501
- #: includes/class-cntctfrm-settings.php:525
502
  msgid "Using"
503
  msgstr "Використовуючи"
504
 
505
- #: includes/class-cntctfrm-settings.php:510
506
- #: includes/class-cntctfrm-settings.php:889
507
- #: includes/class-cntctfrm-settings.php:930
508
- #: includes/class-cntctfrm-settings.php:965
509
  msgid "Please activate the appropriate option on"
510
  msgstr "Будь ласка, активуйте вiдповiдну опцiю на сторiнцi налаштувань"
511
 
512
  # @ contact_form
513
- #: includes/class-cntctfrm-settings.php:513
514
- #: includes/class-cntctfrm-settings.php:892
515
- #: includes/class-cntctfrm-settings.php:933
516
- #: includes/class-cntctfrm-settings.php:968
517
  msgid "settings page"
518
  msgstr " "
519
 
520
  # @ contact_form
521
- #: includes/class-cntctfrm-settings.php:519
522
- #: includes/class-cntctfrm-settings.php:899
523
- #: includes/class-cntctfrm-settings.php:941
524
- #: includes/class-cntctfrm-settings.php:975
525
  msgid "Activate"
526
  msgstr "Активувати"
527
 
528
  # @ contact_form
529
- #: includes/class-cntctfrm-settings.php:526
530
- #: includes/class-cntctfrm-settings.php:908
531
- #: includes/class-cntctfrm-settings.php:947
532
- #: includes/class-cntctfrm-settings.php:980
533
  msgid "Download"
534
  msgstr "Завантажити"
535
 
536
- #: includes/class-cntctfrm-settings.php:551
537
  msgid "Sending method"
538
  msgstr "Метод відправки"
539
 
540
  # @ contact_form
541
- #: includes/class-cntctfrm-settings.php:556
542
  msgid "Wp-mail"
543
  msgstr "Wp-mail"
544
 
545
  # @ contact_form
546
- #: includes/class-cntctfrm-settings.php:557
547
  msgid "You can use the Wordpress wp_mail function for mailing"
548
  msgstr ""
549
  "Для відправлення повідомлень ви можете використовувати Wordpress функцію "
550
  "wp_mail"
551
 
552
  # @ contact_form
553
- #: includes/class-cntctfrm-settings.php:562
554
  msgid "Mail"
555
  msgstr "Mail"
556
 
557
  # @ contact_form
558
- #: includes/class-cntctfrm-settings.php:563
559
  msgid "You can use the PHP mail function for mailing"
560
  msgstr ""
561
  "Для відправлення повідомлень ви можете використовувати PHP функцію mail"
562
 
563
- #: includes/class-cntctfrm-settings.php:569
564
  msgid "'FROM' field"
565
  msgstr "Поле \"Від\""
566
 
567
  # @ contact_form
568
- #: includes/class-cntctfrm-settings.php:585
569
  msgid "User name"
570
  msgstr "Ім’я користувача"
571
 
572
  # @ contact_form
573
- #: includes/class-cntctfrm-settings.php:587
574
  msgid ""
575
  "The name of the user who fills the form will be used in the field 'From'."
576
  msgstr ""
577
  "Ім’я користувача, який заповнює форму, буде використано у полі \"Від\"."
578
 
579
  # @ contact_form
580
- #: includes/class-cntctfrm-settings.php:609
581
  msgid "User email"
582
  msgstr "Email користувача"
583
 
584
  # @ contact_form
585
- #: includes/class-cntctfrm-settings.php:611
586
  msgid ""
587
  "The email address of the user who fills the form will be used in the field "
588
  "'From'."
589
  msgstr ""
590
  "Email користувача, який заповнює форму, буде використано у полі \"Від\"."
591
 
592
- #: includes/class-cntctfrm-settings.php:620
593
  msgid ""
594
  "If this option is changed, email messages may be moved to the spam folder or "
595
  "email delivery failures may occur."
@@ -598,76 +598,76 @@ msgstr ""
598
  "доставлені або потраплять до папки Спам."
599
 
600
  # @ contact_form
601
- #: includes/class-cntctfrm-settings.php:629
602
  msgid "Required symbol"
603
  msgstr "Обов'язковий символ"
604
 
605
  # @ contact_form
606
- #: includes/class-cntctfrm-settings.php:639
607
  msgid "Fields"
608
  msgstr "Поля"
609
 
610
  # @ contact_form
611
- #: includes/class-cntctfrm-settings.php:640
612
- #: includes/class-cntctfrm-settings.php:667
613
- #: includes/class-cntctfrm-settings.php:694
614
- #: includes/class-cntctfrm-settings.php:714
615
- #: includes/class-cntctfrm-settings.php:750
616
- #: includes/class-cntctfrm-settings.php:832
617
  msgid "Used"
618
  msgstr "Використовується"
619
 
620
  # @ contact_form
621
- #: includes/class-cntctfrm-settings.php:641
622
- #: includes/class-cntctfrm-settings.php:656
623
- #: includes/class-cntctfrm-settings.php:671
624
- #: includes/class-cntctfrm-settings.php:698
625
- #: includes/class-cntctfrm-settings.php:718
626
- #: includes/class-cntctfrm-settings.php:754
627
- #: includes/class-cntctfrm-settings.php:767
628
- #: includes/class-cntctfrm-settings.php:791
629
  msgid "Required"
630
  msgstr "Обов'язковий"
631
 
632
  # @ contact_form
633
- #: includes/class-cntctfrm-settings.php:643
634
- #: includes/class-cntctfrm-settings.php:676
635
- #: includes/class-cntctfrm-settings.php:733
636
- #: includes/class-cntctfrm-settings.php:772
637
- #: includes/class-cntctfrm-settings.php:796
638
  msgid "Visible"
639
  msgstr "Видимий"
640
 
641
  # @ contact_form
642
- #: includes/class-cntctfrm-settings.php:644
643
- #: includes/class-cntctfrm-settings.php:680
644
- #: includes/class-cntctfrm-settings.php:737
645
- #: includes/class-cntctfrm-settings.php:776
646
- #: includes/class-cntctfrm-settings.php:800
647
  msgid "Disabled for editing"
648
  msgstr "Заборонити для редагування"
649
 
650
  # @ contact_form
651
- #: includes/class-cntctfrm-settings.php:645
652
- #: includes/class-cntctfrm-settings.php:704
653
- #: includes/class-cntctfrm-settings.php:780
654
- #: includes/class-cntctfrm-settings.php:804
655
  msgid "Field's default value"
656
  msgstr "Стандартне значення поля"
657
 
658
  # @ contact_form
659
- #: includes/class-cntctfrm-settings.php:652
660
  msgid "Department selectbox"
661
  msgstr "Список відділень"
662
 
663
- #: includes/class-cntctfrm-settings.php:684
664
  msgid "Use User's name as a default value if the user is logged in."
665
  msgstr ""
666
  "Після входу на сайт використовувати ім'я користувача, як значення за "
667
  "замовчуванням."
668
 
669
- #: includes/class-cntctfrm-settings.php:685
670
- #: includes/class-cntctfrm-settings.php:742
671
  msgid ""
672
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
673
  "in users."
@@ -676,115 +676,123 @@ msgstr ""
676
  "тільки для авторизованих користувачів."
677
 
678
  # @ contact_form
679
- #: includes/class-cntctfrm-settings.php:691
680
  msgid "Location selectbox"
681
  msgstr "Список розміщень"
682
 
683
- #: includes/class-cntctfrm-settings.php:741
684
  msgid "Use User's email as a default value if the user is logged in."
685
  msgstr ""
686
  "Після входу на сайт, використовувати еmail користувача, як значення за "
687
  "замовчуванням."
688
 
689
  # @ contact_form
690
- #: includes/class-cntctfrm-settings.php:825
691
  msgid "Attachment block"
692
- msgstr "Блок для прикріплення файлів"
693
 
694
  # @ contact_form
695
- #: includes/class-cntctfrm-settings.php:827
696
  msgid "Users can attach the following file formats"
697
  msgstr "Користувачі можуть прикріплювати файли наступних форматів"
698
 
 
 
 
 
 
 
 
 
699
  # @ contact_form
700
- #: includes/class-cntctfrm-settings.php:845
701
  msgid "Add to the form"
702
  msgstr "Додати до форми"
703
 
704
  # @ contact_form
705
- #: includes/class-cntctfrm-settings.php:850
706
  msgid "Tips below the Attachment"
707
  msgstr "Показувати підказки під блоком прикріплених файлів"
708
 
709
  # @ contact_form
710
- #: includes/class-cntctfrm-settings.php:857
711
  msgid "'Send me a copy' block"
712
  msgstr "Блок \"Надіслати мені копію\""
713
 
714
- #: includes/class-cntctfrm-settings.php:864
715
  msgid "GDPR Compliance"
716
  msgstr "Згода з GDPR"
717
 
718
- #: includes/class-cntctfrm-settings.php:869
719
  msgid "Link to Privacy Policy Page"
720
  msgstr "Посилання на сторінку політики конфіденційності"
721
 
722
- #: includes/class-cntctfrm-settings.php:873
723
  msgid "Text for Privacy Policy Link"
724
  msgstr "Текст для посилання політики конфіденційності"
725
 
726
- #: includes/class-cntctfrm-settings.php:901
727
  msgid "Activate for network"
728
  msgstr "Активувати для мережі"
729
 
730
  # @ contact_form
731
- #: includes/class-cntctfrm-settings.php:991
732
  msgid "Agreement checkbox"
733
  msgstr "Чекбокс для погодження"
734
 
735
  # @ contact_form
736
- #: includes/class-cntctfrm-settings.php:991
737
  msgid "Required checkbox for submitting the form"
738
  msgstr "Необхідний чекбокс для відправки форми"
739
 
740
  # @ contact_form
741
- #: includes/class-cntctfrm-settings.php:992
742
  msgid "Optional checkbox"
743
  msgstr "Додатковий чекбокс"
744
 
745
  # @ contact_form
746
- #: includes/class-cntctfrm-settings.php:992
747
  msgid "Optional checkbox, the results of which will be displayed in email"
748
  msgstr ""
749
  "Додатковий чекбокс, результати якого буде відображено у еmail-повідомленні"
750
 
751
  # @ contact_form
752
- #: includes/class-cntctfrm-settings.php:1007
753
  msgid "Delete an attachment file from the server after the email is sent"
754
  msgstr ""
755
  "Видаляти прикріплений файл з серверу після того, як повідомлення відправлено"
756
 
757
  # @ contact_form
758
- #: includes/class-cntctfrm-settings.php:1013
759
  msgid "Email in HTML format sending"
760
  msgstr "Відправка повідомлення в форматі HTML"
761
 
762
  # @ contact_form
763
- #: includes/class-cntctfrm-settings.php:1017
764
  msgid "Display additional info in the email"
765
  msgstr "Відображати додаткову інформацію у повідомленні"
766
 
767
  # @ contact_form
768
- #: includes/class-cntctfrm-settings.php:1023
769
  msgid "Sent from (IP address)"
770
  msgstr "Надіслано від (IP адреса)"
771
 
772
- #: includes/class-cntctfrm-settings.php:1023
773
  msgid "Example: Sent from (IP address): 127.0.0.1"
774
  msgstr "Приклад: відправлено з (IP адреси): 127.0.0.1"
775
 
776
- #: includes/class-cntctfrm-settings.php:1024
777
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
778
  msgstr "Приклад: Дата/Час: 19 Серпня, 2013 20:50"
779
 
780
- #: includes/class-cntctfrm-settings.php:1025
781
  msgid ""
782
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
783
  msgstr ""
784
  "Приклад: відправлено з (referer): https://bestwebsoft.com/contacts/contact-"
785
  "us/"
786
 
787
- #: includes/class-cntctfrm-settings.php:1026
788
  msgid ""
789
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
790
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -793,84 +801,84 @@ msgstr ""
793
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
794
 
795
  # @ contact_form
796
- #: includes/class-cntctfrm-settings.php:1031
797
  msgid "Language settings for the field names in the form"
798
  msgstr "Налаштування мови для імен полів форми"
799
 
800
  # @ contact_form
801
- #: includes/class-cntctfrm-settings.php:1040
802
  msgid "Add a language"
803
  msgstr "Додати мову"
804
 
805
  # @ contact_form
806
- #: includes/class-cntctfrm-settings.php:1044
807
  msgid "Change the names of the contact form fields and error messages"
808
  msgstr "Змінити імена полів контактної форми і повідомлення про помилку"
809
 
810
  # @ contact_form
811
- #: includes/class-cntctfrm-settings.php:1049
812
- #: includes/class-cntctfrm-settings.php:1147
813
- #: includes/class-cntctfrm-settings.php:1252
814
  msgid "Default"
815
  msgstr "Стандартно"
816
 
817
  # @ contact_form
818
- #: includes/class-cntctfrm-settings.php:1062
819
- #: includes/class-cntctfrm-settings.php:1101
820
  msgid "click to expand/hide the list"
821
  msgstr "натиснути, щоб розгорнути/згорнути список"
822
 
823
  # @ contact_form
824
- #: includes/class-cntctfrm-settings.php:1071
825
- #: includes/class-cntctfrm-settings.php:1110
826
  msgid "Tips below the Attachment block"
827
  msgstr "Підказки під блоком прикріплення файлів"
828
 
829
  # @ contact_form
830
- #: includes/class-cntctfrm-settings.php:1075
831
- #: includes/class-cntctfrm-settings.php:1114
832
  msgid "Error message for the Name field"
833
  msgstr "Повідомлення про помилку для поля Ім'я"
834
 
835
  # @ contact_form
836
- #: includes/class-cntctfrm-settings.php:1076
837
- #: includes/class-cntctfrm-settings.php:1115
838
  msgid "Error message for the Address field"
839
  msgstr "Повідомлення про помилку для поля Адреса"
840
 
841
  # @ contact_form
842
- #: includes/class-cntctfrm-settings.php:1077
843
- #: includes/class-cntctfrm-settings.php:1116
844
  msgid "Error message for the Email field"
845
  msgstr "Повідомлення про помилку для поля Email"
846
 
847
  # @ contact_form
848
- #: includes/class-cntctfrm-settings.php:1078
849
- #: includes/class-cntctfrm-settings.php:1117
850
  msgid "Error message for the Phone field"
851
  msgstr "Повідомлення про помилку для поля Номер телефону"
852
 
853
  # @ contact_form
854
- #: includes/class-cntctfrm-settings.php:1079
855
- #: includes/class-cntctfrm-settings.php:1118
856
  msgid "Error message for the Subject field"
857
  msgstr "Повідомлення про помилку для поля Тема"
858
 
859
  # @ contact_form
860
- #: includes/class-cntctfrm-settings.php:1080
861
- #: includes/class-cntctfrm-settings.php:1119
862
  msgid "Error message for the Message field"
863
  msgstr "Повідомлення про помилку для поля Повідомлення"
864
 
865
  # @ contact_form
866
- #: includes/class-cntctfrm-settings.php:1081
867
- #: includes/class-cntctfrm-settings.php:1120
868
  msgid "Error message about the file type for the Attachment field"
869
  msgstr "Повідомлення про помилку для поля Прикріплені файли"
870
 
871
  # @ contact_form
872
- #: includes/class-cntctfrm-settings.php:1082
873
- #: includes/class-cntctfrm-settings.php:1121
874
  msgid ""
875
  "Error message while uploading a file for the Attachment field to the server"
876
  msgstr ""
@@ -878,64 +886,64 @@ msgstr ""
878
  "Прикріплені файли"
879
 
880
  # @ contact_form
881
- #: includes/class-cntctfrm-settings.php:1083
882
- #: includes/class-cntctfrm-settings.php:1122
883
  msgid "Error message while moving the file for the Attachment field"
884
  msgstr ""
885
  "Повідомлення про помилку під час переміщення файлу для поля Прикріплені файли"
886
 
887
  # @ contact_form
888
- #: includes/class-cntctfrm-settings.php:1084
889
- #: includes/class-cntctfrm-settings.php:1123
890
  msgid "Error message when file size limit for the Attachment field is exceeded"
891
  msgstr ""
892
  "Повідомлення про помилку для поля Прикріплені файли, коли розмір файлу "
893
  "перевищує допустимий"
894
 
895
  # @ contact_form
896
- #: includes/class-cntctfrm-settings.php:1085
897
- #: includes/class-cntctfrm-settings.php:1124
898
  msgid "Error message for the Captcha field"
899
  msgstr "Повідомлення про помилку для поля Captcha"
900
 
901
  # @ contact_form
902
- #: includes/class-cntctfrm-settings.php:1086
903
- #: includes/class-cntctfrm-settings.php:1125
904
  msgid "Error message for the whole form"
905
  msgstr "Повідомлення про помилку для всієї форми"
906
 
907
  # @ contact_form
908
- #: includes/class-cntctfrm-settings.php:1138
909
  msgid "Use the changed names of the contact form fields in the email"
910
  msgstr "Використовувати змінені імена полів контактної форми у повідомленні"
911
 
912
  # @ contact_form
913
- #: includes/class-cntctfrm-settings.php:1144
914
  msgid "Action after email is sent"
915
  msgstr "Дія після відправлення листа з контактної форми"
916
 
917
  # @ contact_form
918
- #: includes/class-cntctfrm-settings.php:1146
919
  msgid "Display text"
920
  msgstr "Показати текст"
921
 
922
  # @ contact_form
923
- #: includes/class-cntctfrm-settings.php:1160
924
- #: includes/class-cntctfrm-settings.php:1174
925
  msgid "Text"
926
  msgstr "Текст"
927
 
928
  # @ contact_form
929
- #: includes/class-cntctfrm-settings.php:1185
930
  msgid "Redirect to the page"
931
  msgstr "Перенаправлення на сторінку"
932
 
933
  # @ contact_form
934
- #: includes/class-cntctfrm-settings.php:1186
935
  msgid "Url"
936
  msgstr "Посилання"
937
 
938
- #: includes/class-cntctfrm-settings.php:1206
939
  #, php-format
940
  msgid ""
941
  "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
@@ -944,223 +952,223 @@ msgstr ""
944
  "Будь ласка, увімкніть JavaScript щоб змінити опції '%s', '%s', '%s', '%s' та "
945
  "для сортування полів."
946
 
947
- #: includes/class-cntctfrm-settings.php:1207
948
- #: includes/class-cntctfrm-settings.php:1224
949
  msgid "Form layout"
950
  msgstr "Шаблон форми"
951
 
952
  # @ contact_form
953
- #: includes/class-cntctfrm-settings.php:1208
954
- #: includes/class-cntctfrm-settings.php:1291
955
  msgid "Labels position"
956
  msgstr "Розташування імен полів"
957
 
958
- #: includes/class-cntctfrm-settings.php:1209
959
- #: includes/class-cntctfrm-settings.php:1309
960
  msgid "Labels align"
961
  msgstr "Вирівнювання імен полів"
962
 
963
  # @ contact_form
964
- #: includes/class-cntctfrm-settings.php:1210
965
- #: includes/class-cntctfrm-settings.php:1236
966
  msgid "Submit position"
967
  msgstr "Позиція кнопки 'Відправити'"
968
 
969
  # @ contact_form
970
- #: includes/class-cntctfrm-settings.php:1211
971
- #: includes/class-cntctfrm-settings.php:1340
972
  msgid "Add tooltips"
973
  msgstr "Додати підказки"
974
 
975
  # @ contact_form
976
- #: includes/class-cntctfrm-settings.php:1212
977
- #: includes/class-cntctfrm-settings.php:1381
978
  msgid "Style options"
979
  msgstr "Опції стилю"
980
 
981
- #: includes/class-cntctfrm-settings.php:1228
982
  msgid "One column"
983
  msgstr "Одна колонка"
984
 
985
- #: includes/class-cntctfrm-settings.php:1231
986
  msgid "Two columns"
987
  msgstr "Дві колонки"
988
 
989
- #: includes/class-cntctfrm-settings.php:1240
990
- #: includes/class-cntctfrm-settings.php:1280
991
  #: includes/class-cntctfrm-settings.php:1298
992
- #: includes/class-cntctfrm-settings.php:1313
 
993
  msgid "Left"
994
  msgstr "Ліворуч"
995
 
996
- #: includes/class-cntctfrm-settings.php:1243
997
- #: includes/class-cntctfrm-settings.php:1286
998
- #: includes/class-cntctfrm-settings.php:1301
999
  #: includes/class-cntctfrm-settings.php:1319
 
1000
  msgid "Right"
1001
  msgstr "Праворуч"
1002
 
1003
- #: includes/class-cntctfrm-settings.php:1248
1004
  msgid "Width"
1005
  msgstr "Ширина"
1006
 
1007
- #: includes/class-cntctfrm-settings.php:1256
1008
  msgid "Custom"
1009
  msgstr "Користувацька"
1010
 
1011
- #: includes/class-cntctfrm-settings.php:1263
1012
  msgid "px"
1013
  msgstr "пікс"
1014
 
1015
- #: includes/class-cntctfrm-settings.php:1276
1016
  msgid "Form align"
1017
  msgstr "Вирівнювання форми"
1018
 
1019
- #: includes/class-cntctfrm-settings.php:1283
1020
- #: includes/class-cntctfrm-settings.php:1316
1021
  msgid "Center"
1022
  msgstr "По центру"
1023
 
1024
- #: includes/class-cntctfrm-settings.php:1295
1025
  msgid "Top"
1026
  msgstr "Зверху"
1027
 
1028
- #: includes/class-cntctfrm-settings.php:1304
1029
  msgid "Bottom"
1030
  msgstr "Знизу"
1031
 
1032
  # @ contact_form
1033
- #: includes/class-cntctfrm-settings.php:1324
1034
  msgid "Errors output"
1035
  msgstr "Відображення помилок"
1036
 
1037
  # @ contact_form
1038
- #: includes/class-cntctfrm-settings.php:1327
1039
  msgid "Display error messages"
1040
  msgstr "Відображати повідомлення про помилки"
1041
 
1042
  # @ contact_form
1043
- #: includes/class-cntctfrm-settings.php:1328
1044
  msgid "Color of the input field errors."
1045
  msgstr "Колір для помилок у полях введення."
1046
 
1047
  # @ contact_form
1048
- #: includes/class-cntctfrm-settings.php:1329
1049
  msgid "Display error messages & color of the input field errors"
1050
  msgstr ""
1051
  "Відображення повідомлень про помилку і колір для полів з помилками у полях "
1052
  "введення"
1053
 
1054
  # @ contact_form
1055
- #: includes/class-cntctfrm-settings.php:1334
1056
  msgid "Add placeholder to the input blocks"
1057
  msgstr "Додати текст заповнювача для блоків введення"
1058
 
1059
  # @ contact_form
1060
- #: includes/class-cntctfrm-settings.php:1354
1061
  msgid "Email address"
1062
  msgstr "Email"
1063
 
1064
  # @ contact_form
1065
- #: includes/class-cntctfrm-settings.php:1385
1066
  msgid "Text color"
1067
  msgstr "Колір тексту"
1068
 
1069
  # @ contact_form
1070
- #: includes/class-cntctfrm-settings.php:1393
1071
  msgid "Label text color"
1072
  msgstr "Колір написів"
1073
 
1074
  # @ contact_form
1075
- #: includes/class-cntctfrm-settings.php:1402
1076
  msgid "Placeholder color"
1077
  msgstr "Колір тексту заповнювача"
1078
 
1079
  # @ contact_form
1080
- #: includes/class-cntctfrm-settings.php:1407
1081
  msgid "Errors color"
1082
  msgstr "Колір помилок"
1083
 
1084
  # @ contact_form
1085
- #: includes/class-cntctfrm-settings.php:1415
1086
  msgid "Error text color"
1087
  msgstr "Колір тексту помилок"
1088
 
1089
  # @ contact_form
1090
- #: includes/class-cntctfrm-settings.php:1423
1091
  msgid "Background color of the input field errors"
1092
  msgstr "Колір заднього фону для полів введення з помилками"
1093
 
1094
  # @ contact_form
1095
- #: includes/class-cntctfrm-settings.php:1431
1096
  msgid "Border color of the input field errors"
1097
  msgstr "Колір рамки для полів введення з помилками"
1098
 
1099
  # @ contact_form
1100
- #: includes/class-cntctfrm-settings.php:1439
1101
  msgid "Placeholder color of the input field errors"
1102
  msgstr "Колір тексту заповнювача для полів введення з помилками"
1103
 
1104
  # @ contact_form
1105
- #: includes/class-cntctfrm-settings.php:1444
1106
  msgid "Input fields"
1107
  msgstr "Поля введення тексту"
1108
 
1109
  # @ contact_form
1110
- #: includes/class-cntctfrm-settings.php:1452
1111
  msgid "Input fields background color"
1112
  msgstr "Колір фону полів введення"
1113
 
1114
  # @ contact_form
1115
- #: includes/class-cntctfrm-settings.php:1460
1116
  msgid "Text fields color"
1117
  msgstr "Колір текстових полів"
1118
 
1119
  # @ contact_form
1120
- #: includes/class-cntctfrm-settings.php:1464
1121
  msgid "Border width in px, numbers only"
1122
  msgstr "Ширина рамки в пікселях, тільки числа"
1123
 
1124
  # @ contact_form
1125
- #: includes/class-cntctfrm-settings.php:1472
1126
- #: includes/class-cntctfrm-settings.php:1505
1127
  msgid "Border color"
1128
  msgstr "Колір рамки"
1129
 
1130
  # @ contact_form
1131
- #: includes/class-cntctfrm-settings.php:1477
1132
  msgid "Submit button"
1133
  msgstr "Кнопка підтвердження"
1134
 
1135
  # @ contact_form
1136
- #: includes/class-cntctfrm-settings.php:1481
1137
  msgid "Width in px, numbers only"
1138
  msgstr "Ширина в пікселях, тільки числа"
1139
 
1140
  # @ contact_form
1141
- #: includes/class-cntctfrm-settings.php:1489
1142
  msgid "Button color"
1143
  msgstr "Колір кнопок"
1144
 
1145
  # @ contact_form
1146
- #: includes/class-cntctfrm-settings.php:1497
1147
  msgid "Button text color"
1148
  msgstr "Колір тексту кнопок"
1149
 
1150
  # @ contact_form
1151
- #: includes/class-cntctfrm-settings.php:1524
1152
  msgid "Contact Form | Preview"
1153
  msgstr "Contact Form | Попередній перегляд"
1154
 
1155
- #: includes/class-cntctfrm-settings.php:1525
1156
  msgid "Drag the necessary field to sort fields."
1157
  msgstr "Перетягніть необхідне поле для сортування полів."
1158
 
1159
- #: includes/class-cntctfrm-settings.php:1772
1160
  msgid "Contact Form Shortcode"
1161
  msgstr "Шорткод Contact Form"
1162
 
1163
- #: includes/class-cntctfrm-settings.php:1775
1164
  msgid "Add Contact Form to your page or post using the following shortcode:"
1165
  msgstr ""
1166
  "Додайте Contact Form на свою сторінку або пост, використовуючи такий "
2
  msgstr ""
3
  "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-03-21 11:16+0200\n"
6
+ "PO-Revision-Date: 2019-03-21 11:19+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"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  # @ contact_form
21
+ #: contact_form.php:39 contact_form.php:47 contact_form.php:648
22
+ #: includes/class-cntctfrm-settings.php:426
23
  msgid "Contact Form Settings"
24
  msgstr "Налаштування Contact Form"
25
 
26
  # @ contact_form
27
+ #: contact_form.php:48 contact_form.php:1668 contact_form.php:1682
28
  #: includes/class-cntctfrm-settings.php:27
29
  msgid "Settings"
30
  msgstr "Налаштування"
31
 
32
+ #: contact_form.php:63 includes/class-cntctfrm-settings.php:484
33
+ #: includes/class-cntctfrm-settings.php:818
34
+ #: includes/class-cntctfrm-settings.php:1016
35
+ #: includes/class-cntctfrm-settings.php:1531
36
  msgid "Upgrade to Pro"
37
  msgstr "Оновитися до Pro"
38
 
39
  # @ contact_form
40
+ #: contact_form.php:350 contact_form.php:1443 contact_form.php:1489
41
+ #: includes/class-cntctfrm-settings.php:575
42
+ #: includes/class-cntctfrm-settings.php:665
43
+ #: includes/class-cntctfrm-settings.php:1082
44
+ #: includes/class-cntctfrm-settings.php:1121
45
+ #: includes/class-cntctfrm-settings.php:1362
46
  msgid "Name"
47
  msgstr "Ім'я"
48
 
49
  # @ contact_form
50
+ #: contact_form.php:351 contact_form.php:1450 contact_form.php:1495
51
+ #: includes/class-cntctfrm-settings.php:712
52
+ #: includes/class-cntctfrm-settings.php:1083
53
+ #: includes/class-cntctfrm-settings.php:1122
54
+ #: includes/class-cntctfrm-settings.php:1367
55
  msgid "Address"
56
  msgstr "Адреса"
57
 
58
  # @ contact_form
59
+ #: contact_form.php:352 includes/class-cntctfrm-settings.php:728
60
+ #: includes/class-cntctfrm-settings.php:1084
61
+ #: includes/class-cntctfrm-settings.php:1123
62
  msgid "Email Address"
63
  msgstr "Email"
64
 
65
  # @ contact_form
66
+ #: contact_form.php:353 includes/class-cntctfrm-settings.php:748
67
+ #: includes/class-cntctfrm-settings.php:1085
68
+ #: includes/class-cntctfrm-settings.php:1124
69
  msgid "Phone number"
70
  msgstr "Номер телефону"
71
 
72
  # @ contact_form
73
+ #: contact_form.php:354 contact_form.php:1461 contact_form.php:1504
74
+ #: includes/class-cntctfrm-settings.php:764
75
+ #: includes/class-cntctfrm-settings.php:1086
76
+ #: includes/class-cntctfrm-settings.php:1125
77
+ #: includes/class-cntctfrm-settings.php:1382
78
  msgid "Subject"
79
  msgstr "Тема"
80
 
81
  # @ contact_form
82
+ #: contact_form.php:355 contact_form.php:1466 contact_form.php:1508
83
+ #: includes/class-cntctfrm-settings.php:788
84
+ #: includes/class-cntctfrm-settings.php:1087
85
+ #: includes/class-cntctfrm-settings.php:1126
86
+ #: includes/class-cntctfrm-settings.php:1386
87
  msgid "Message"
88
  msgstr "Повідомлення"
89
 
90
  # @ contact_form
91
+ #: contact_form.php:356 includes/class-cntctfrm-settings.php:1088
92
+ #: includes/class-cntctfrm-settings.php:1127
93
+ #: includes/class-cntctfrm-settings.php:1391
94
  msgid "Attachment"
95
  msgstr "Вкладений файл"
96
 
105
  "PPT."
106
 
107
  # @ contact_form
108
+ #: contact_form.php:358 includes/class-cntctfrm-settings.php:1090
109
+ #: includes/class-cntctfrm-settings.php:1129
110
  msgid "Send me a copy"
111
  msgstr "Надіслати мені копію"
112
 
113
+ #: contact_form.php:359 includes/class-cntctfrm-settings.php:1091
114
+ #: includes/class-cntctfrm-settings.php:1130
115
  msgid "I consent to having this site collect my personal data."
116
  msgstr "Я дозволяю цьому сайту збирати мої особисті дані."
117
 
118
  # @ contact_form
119
+ #: contact_form.php:360 includes/class-cntctfrm-settings.php:1092
120
+ #: includes/class-cntctfrm-settings.php:1131
121
  msgid "Submit"
122
  msgstr "Підтвердити"
123
 
186
  msgid "Thank you for contacting us."
187
  msgstr "Дякуємо, що зв'язалися з нами."
188
 
189
+ #: contact_form.php:652
190
  msgid "NEW_FORM"
191
  msgstr "НОВА_ФОРМА"
192
 
193
  # @ contact_form
194
+ #: contact_form.php:653
195
  msgid ""
196
  "If you want to create multiple contact forms, please install the Contact "
197
  "Form Multi plugin."
199
  "Якщо ви хочете створити декілька різних контактних форм, будь ласка, "
200
  "встановіть плагін Contact Form Multi."
201
 
202
+ #: contact_form.php:658
203
  msgid ""
204
  "Contact Form plugin doesn't support your current version of Contact Form "
205
  "Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
209
  "Будь ласка, оновіть плагін Contact Form Multi до версії 1.2.6 або вище."
210
 
211
  # @ contact_form
212
+ #: contact_form.php:760
213
  msgid "Sorry, email message could not be delivered."
214
  msgstr "Вибачте, ваше повідомлення не може бути доставлено."
215
 
216
  # @ contact_form
217
+ #: contact_form.php:1399 contact_form.php:1401
218
  msgid "Sent from (ip address)"
219
  msgstr "Надіслано від (IP адреса)"
220
 
221
  # @ contact_form
222
+ #: contact_form.php:1405 contact_form.php:1407
223
+ #: includes/class-cntctfrm-settings.php:1042
224
  msgid "Date/Time"
225
  msgstr "Дата/Час"
226
 
227
  # @ contact_form
228
+ #: contact_form.php:1411 contact_form.php:1413
229
+ #: includes/class-cntctfrm-settings.php:1043
230
  msgid "Sent from (referer)"
231
  msgstr "Надіслано від (referer)"
232
 
233
  # @ contact_form
234
+ #: contact_form.php:1417 contact_form.php:1419
235
+ #: includes/class-cntctfrm-settings.php:1044
236
  msgid "Using (user agent)"
237
  msgstr "Використовується (user agent)"
238
 
239
  # @ contact_form
240
+ #: contact_form.php:1429
241
  msgid "Contact from"
242
  msgstr "Контакт із"
243
 
244
  # @ contact_form
245
+ #: contact_form.php:1434 contact_form.php:1483
246
  msgid "Site"
247
  msgstr "Сайт"
248
 
249
  # @ contact_form
250
+ #: contact_form.php:1456 contact_form.php:1500
251
+ #: includes/class-cntctfrm-settings.php:599
252
  msgid "Email"
253
  msgstr "Email"
254
 
255
  # @ contact_form
256
+ #: contact_form.php:1472 contact_form.php:1513
257
+ #: includes/class-cntctfrm-settings.php:1377
258
  msgid "Phone Number"
259
  msgstr "Номер телефону"
260
 
261
  # @ contact_form
262
+ #: contact_form.php:1611
263
  msgid ""
264
  "If you can see this MIME, it means that the MIME type is not supported by "
265
  "your email client!"
268
  "поштовим клієнтом!"
269
 
270
  # @ contact_form
271
+ #: contact_form.php:1683
272
  msgid "FAQ"
273
  msgstr "FAQ"
274
 
275
  # @ contact_form
276
+ #: contact_form.php:1684
277
  msgid "Support"
278
  msgstr "Підтримка"
279
 
280
  # @ contact_form
281
+ #: contact_form.php:1733
282
  msgid "Are you sure that you want to delete this language data?"
283
  msgstr "Ви справді хочете видалити дані для цієї мови?"
284
 
285
  # @ contact_form
286
+ #: contact_form.php:1755
287
  msgid "Add multiple forms"
288
  msgstr "Додати декілька форм"
289
 
290
+ #: contact_form.php:1755
291
  msgid ""
292
  "Install Contact Form Multi plugin to create unlimited number of contact "
293
  "forms."
296
  "необмежену кількість контактних форм."
297
 
298
  # @ contact_form
299
+ #: contact_form.php:1760
300
  msgid "Learn more"
301
  msgstr "Дізнатись більше"
302
 
303
+ #: contact_form.php:1764 includes/class-cntctfrm-settings.php:470
304
+ #: includes/class-cntctfrm-settings.php:1005
305
+ #: includes/class-cntctfrm-settings.php:1290
306
  msgid "Close"
307
  msgstr "Закрити"
308
 
309
+ #: contact_form.php:1818
310
  msgid "Error"
311
  msgstr "Помилка"
312
 
313
+ #: contact_form.php:1818 contact_form.php:1820
314
  msgid "Illegal language code"
315
  msgstr "Нелегальний язиковий код"
316
 
317
  # @ contact_form
318
+ #: contact_form.php:1854 contact_form.php:1856
319
+ #: includes/class-cntctfrm-settings.php:1107
320
+ #: includes/class-cntctfrm-settings.php:1109
321
+ #: includes/class-cntctfrm-settings.php:1146
322
+ #: includes/class-cntctfrm-settings.php:1148
323
+ #: includes/class-cntctfrm-settings.php:1180
324
+ #: includes/class-cntctfrm-settings.php:1182
325
+ #: includes/class-cntctfrm-settings.php:1194
326
+ #: includes/class-cntctfrm-settings.php:1196
327
  msgid "Use shortcode"
328
  msgstr "Використовуйте шорткод"
329
 
330
  # @ contact_form
331
+ #: contact_form.php:1854 contact_form.php:1856
332
+ #: includes/class-cntctfrm-settings.php:1107
333
+ #: includes/class-cntctfrm-settings.php:1109
334
+ #: includes/class-cntctfrm-settings.php:1146
335
+ #: includes/class-cntctfrm-settings.php:1148
336
+ #: includes/class-cntctfrm-settings.php:1180
337
+ #: includes/class-cntctfrm-settings.php:1182
338
+ #: includes/class-cntctfrm-settings.php:1194
339
+ #: includes/class-cntctfrm-settings.php:1196
340
  msgid "for this language"
341
  msgstr "для цієї мови"
342
 
343
+ #: contact_form.php:2004
344
  msgid "Close notice"
345
  msgstr "Закрити"
346
 
347
  # @ contact_form
348
+ #: contact_form.php:2009
349
  msgid "allows to store your messages to the database."
350
  msgstr "дозволяє зберігати ваші повідомлення у базі даних."
351
 
352
  # @ contact_form
353
+ #: contact_form.php:2010
354
  msgid "Manage messages that have been sent from your website."
355
  msgstr "Контролювати повідомлення, які було відправлено з Вашого сайту. "
356
 
357
  # @ contact_form
358
+ #: contact_form.php:2013
359
  msgid "Learn More"
360
  msgstr "Дізнатись більше"
361
 
362
  # @ contact_form
363
+ #: contact_form.php:2073
364
  msgid "Contact form"
365
  msgstr "Контактна форма"
366
 
367
  # @ contact_form
368
+ #: contact_form.php:2086 contact_form.php:2096
369
  msgid "Language"
370
  msgstr "Мова"
371
 
372
  #: includes/class-cntctfrm-settings.php:28
373
+ #: includes/class-cntctfrm-settings.php:547
374
  msgid "Additional Settings"
375
  msgstr "Додаткові Налаштування"
376
 
377
  #: includes/class-cntctfrm-settings.php:29
378
+ #: includes/class-cntctfrm-settings.php:1216
379
  msgid "Appearance"
380
  msgstr "Відображення"
381
 
404
  "Для плагіна Contact Form необхідний PHP %s або вище. Будь ласка зверніться "
405
  "до свого хостинг-провайдера для оновлення версії PHP"
406
 
407
+ #: includes/class-cntctfrm-settings.php:348
408
  msgid ""
409
  "Email 'FROM' field option was changed, which may cause email messages being "
410
  "moved to the spam folder or email delivery failures."
413
  "повідомлення не будуть доставлені або потраплять до папки Спам."
414
 
415
  # @ contact_form
416
+ #: includes/class-cntctfrm-settings.php:358
417
  msgid ""
418
  "If the 'Redirect to page' option is selected then the URL field should be in "
419
  "the following format"
422
  "бути заповнене в наступному форматі"
423
 
424
  # @ contact_form
425
+ #: includes/class-cntctfrm-settings.php:365
426
  msgid "Such user does not exist."
427
  msgstr "Такого користувача не існує."
428
 
429
  # @ contact_form
430
+ #: includes/class-cntctfrm-settings.php:375
431
  msgid ""
432
  "Please enter a valid email address in the 'Use this email address' field."
433
  msgstr ""
434
  "Будь ласка, введіть коректну email-адресу у поле 'Використовувати цей email'."
435
 
436
  # @ contact_form
437
+ #: includes/class-cntctfrm-settings.php:383
438
  msgid "Please enter a valid email address in the 'FROM' field."
439
  msgstr "Будь ласка, введіть коректну email-адресу у полі \"Від\"."
440
 
441
  # @ contact_form
442
+ #: includes/class-cntctfrm-settings.php:403
443
  msgid "Settings saved."
444
  msgstr "Налаштування збережено."
445
 
446
  # @ contact_form
447
+ #: includes/class-cntctfrm-settings.php:405
448
  msgid "Settings are not saved."
449
  msgstr "Налаштування не збережено."
450
 
451
  # @ contact_form
452
+ #: includes/class-cntctfrm-settings.php:430
453
  msgid ""
454
  "If you leave the fields empty, the messages will be sent to the email "
455
  "address specified during registration."
458
  "адресу, вказану під час реєстрації."
459
 
460
  # @ contact_form
461
+ #: includes/class-cntctfrm-settings.php:433
462
  msgid "The user's email address"
463
  msgstr "Email-адреса користувача"
464
 
465
  # @ contact_form
466
+ #: includes/class-cntctfrm-settings.php:438
467
  msgid "Select a username"
468
  msgstr "Виберіть ім'я користувача"
469
 
470
  # @ contact_form
471
+ #: includes/class-cntctfrm-settings.php:451
472
  msgid ""
473
  "Select a username of the person who should get the messages from the contact "
474
  "form."
476
  "Виберіть ім'я користувача, що має отримати повідомлення з контактної форми."
477
 
478
  # @ contact_form
479
+ #: includes/class-cntctfrm-settings.php:456
480
  msgid "Use this email address"
481
  msgstr "Використовувати цей email"
482
 
483
  # @ contact_form
484
+ #: includes/class-cntctfrm-settings.php:461
485
  msgid "Enter the email address for receiving messages"
486
  msgstr "Вкажіть email, на який ви бажаєте отримувати повідомлення"
487
 
488
  # @ contact_form
489
+ #: includes/class-cntctfrm-settings.php:474
490
  msgid "Add department selectbox to the contact form"
491
  msgstr "Додати поле для вибору департаменту до контактної форми"
492
 
493
  # @ contact_form
494
+ #: includes/class-cntctfrm-settings.php:493
495
  msgid "Save emails to the database"
496
  msgstr "Зберігати email у базі даних"
497
 
498
  # @ contact_form
499
+ #: includes/class-cntctfrm-settings.php:505
500
+ #: includes/class-cntctfrm-settings.php:519
501
+ #: includes/class-cntctfrm-settings.php:526
502
  msgid "Using"
503
  msgstr "Використовуючи"
504
 
505
+ #: includes/class-cntctfrm-settings.php:511
506
+ #: includes/class-cntctfrm-settings.php:907
507
+ #: includes/class-cntctfrm-settings.php:948
508
+ #: includes/class-cntctfrm-settings.php:983
509
  msgid "Please activate the appropriate option on"
510
  msgstr "Будь ласка, активуйте вiдповiдну опцiю на сторiнцi налаштувань"
511
 
512
  # @ contact_form
513
+ #: includes/class-cntctfrm-settings.php:514
514
+ #: includes/class-cntctfrm-settings.php:910
515
+ #: includes/class-cntctfrm-settings.php:951
516
+ #: includes/class-cntctfrm-settings.php:986
517
  msgid "settings page"
518
  msgstr " "
519
 
520
  # @ contact_form
521
+ #: includes/class-cntctfrm-settings.php:520
522
+ #: includes/class-cntctfrm-settings.php:917
523
+ #: includes/class-cntctfrm-settings.php:959
524
+ #: includes/class-cntctfrm-settings.php:993
525
  msgid "Activate"
526
  msgstr "Активувати"
527
 
528
  # @ contact_form
529
+ #: includes/class-cntctfrm-settings.php:527
530
+ #: includes/class-cntctfrm-settings.php:926
531
+ #: includes/class-cntctfrm-settings.php:965
532
+ #: includes/class-cntctfrm-settings.php:998
533
  msgid "Download"
534
  msgstr "Завантажити"
535
 
536
+ #: includes/class-cntctfrm-settings.php:552
537
  msgid "Sending method"
538
  msgstr "Метод відправки"
539
 
540
  # @ contact_form
541
+ #: includes/class-cntctfrm-settings.php:557
542
  msgid "Wp-mail"
543
  msgstr "Wp-mail"
544
 
545
  # @ contact_form
546
+ #: includes/class-cntctfrm-settings.php:558
547
  msgid "You can use the Wordpress wp_mail function for mailing"
548
  msgstr ""
549
  "Для відправлення повідомлень ви можете використовувати Wordpress функцію "
550
  "wp_mail"
551
 
552
  # @ contact_form
553
+ #: includes/class-cntctfrm-settings.php:563
554
  msgid "Mail"
555
  msgstr "Mail"
556
 
557
  # @ contact_form
558
+ #: includes/class-cntctfrm-settings.php:564
559
  msgid "You can use the PHP mail function for mailing"
560
  msgstr ""
561
  "Для відправлення повідомлень ви можете використовувати PHP функцію mail"
562
 
563
+ #: includes/class-cntctfrm-settings.php:570
564
  msgid "'FROM' field"
565
  msgstr "Поле \"Від\""
566
 
567
  # @ contact_form
568
+ #: includes/class-cntctfrm-settings.php:586
569
  msgid "User name"
570
  msgstr "Ім’я користувача"
571
 
572
  # @ contact_form
573
+ #: includes/class-cntctfrm-settings.php:588
574
  msgid ""
575
  "The name of the user who fills the form will be used in the field 'From'."
576
  msgstr ""
577
  "Ім’я користувача, який заповнює форму, буде використано у полі \"Від\"."
578
 
579
  # @ contact_form
580
+ #: includes/class-cntctfrm-settings.php:610
581
  msgid "User email"
582
  msgstr "Email користувача"
583
 
584
  # @ contact_form
585
+ #: includes/class-cntctfrm-settings.php:612
586
  msgid ""
587
  "The email address of the user who fills the form will be used in the field "
588
  "'From'."
589
  msgstr ""
590
  "Email користувача, який заповнює форму, буде використано у полі \"Від\"."
591
 
592
+ #: includes/class-cntctfrm-settings.php:621
593
  msgid ""
594
  "If this option is changed, email messages may be moved to the spam folder or "
595
  "email delivery failures may occur."
598
  "доставлені або потраплять до папки Спам."
599
 
600
  # @ contact_form
601
+ #: includes/class-cntctfrm-settings.php:630
602
  msgid "Required symbol"
603
  msgstr "Обов'язковий символ"
604
 
605
  # @ contact_form
606
+ #: includes/class-cntctfrm-settings.php:640
607
  msgid "Fields"
608
  msgstr "Поля"
609
 
610
  # @ contact_form
611
+ #: includes/class-cntctfrm-settings.php:641
612
+ #: includes/class-cntctfrm-settings.php:668
613
+ #: includes/class-cntctfrm-settings.php:695
614
+ #: includes/class-cntctfrm-settings.php:715
615
+ #: includes/class-cntctfrm-settings.php:751
616
+ #: includes/class-cntctfrm-settings.php:833
617
  msgid "Used"
618
  msgstr "Використовується"
619
 
620
  # @ contact_form
621
+ #: includes/class-cntctfrm-settings.php:642
622
+ #: includes/class-cntctfrm-settings.php:657
623
+ #: includes/class-cntctfrm-settings.php:672
624
+ #: includes/class-cntctfrm-settings.php:699
625
+ #: includes/class-cntctfrm-settings.php:719
626
+ #: includes/class-cntctfrm-settings.php:755
627
+ #: includes/class-cntctfrm-settings.php:768
628
+ #: includes/class-cntctfrm-settings.php:792
629
  msgid "Required"
630
  msgstr "Обов'язковий"
631
 
632
  # @ contact_form
633
+ #: includes/class-cntctfrm-settings.php:644
634
+ #: includes/class-cntctfrm-settings.php:677
635
+ #: includes/class-cntctfrm-settings.php:734
636
+ #: includes/class-cntctfrm-settings.php:773
637
+ #: includes/class-cntctfrm-settings.php:797
638
  msgid "Visible"
639
  msgstr "Видимий"
640
 
641
  # @ contact_form
642
+ #: includes/class-cntctfrm-settings.php:645
643
+ #: includes/class-cntctfrm-settings.php:681
644
+ #: includes/class-cntctfrm-settings.php:738
645
+ #: includes/class-cntctfrm-settings.php:777
646
+ #: includes/class-cntctfrm-settings.php:801
647
  msgid "Disabled for editing"
648
  msgstr "Заборонити для редагування"
649
 
650
  # @ contact_form
651
+ #: includes/class-cntctfrm-settings.php:646
652
+ #: includes/class-cntctfrm-settings.php:705
653
+ #: includes/class-cntctfrm-settings.php:781
654
+ #: includes/class-cntctfrm-settings.php:805
655
  msgid "Field's default value"
656
  msgstr "Стандартне значення поля"
657
 
658
  # @ contact_form
659
+ #: includes/class-cntctfrm-settings.php:653
660
  msgid "Department selectbox"
661
  msgstr "Список відділень"
662
 
663
+ #: includes/class-cntctfrm-settings.php:685
664
  msgid "Use User's name as a default value if the user is logged in."
665
  msgstr ""
666
  "Після входу на сайт використовувати ім'я користувача, як значення за "
667
  "замовчуванням."
668
 
669
+ #: includes/class-cntctfrm-settings.php:686
670
+ #: includes/class-cntctfrm-settings.php:743
671
  msgid ""
672
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
673
  "in users."
676
  "тільки для авторизованих користувачів."
677
 
678
  # @ contact_form
679
+ #: includes/class-cntctfrm-settings.php:692
680
  msgid "Location selectbox"
681
  msgstr "Список розміщень"
682
 
683
+ #: includes/class-cntctfrm-settings.php:742
684
  msgid "Use User's email as a default value if the user is logged in."
685
  msgstr ""
686
  "Після входу на сайт, використовувати еmail користувача, як значення за "
687
  "замовчуванням."
688
 
689
  # @ contact_form
690
+ #: includes/class-cntctfrm-settings.php:826
691
  msgid "Attachment block"
692
+ msgstr "Прикріпити файл"
693
 
694
  # @ contact_form
695
+ #: includes/class-cntctfrm-settings.php:828
696
  msgid "Users can attach the following file formats"
697
  msgstr "Користувачі можуть прикріплювати файли наступних форматів"
698
 
699
+ #: includes/class-cntctfrm-settings.php:844
700
+ msgid "Multi-attachment"
701
+ msgstr "Прикріпити декілька файлів"
702
+
703
+ #: includes/class-cntctfrm-settings.php:846
704
+ msgid "Enable to multiple file selection"
705
+ msgstr "Активуйте, щоб дозволити прикріпляти декілька файлів"
706
+
707
  # @ contact_form
708
+ #: includes/class-cntctfrm-settings.php:863
709
  msgid "Add to the form"
710
  msgstr "Додати до форми"
711
 
712
  # @ contact_form
713
+ #: includes/class-cntctfrm-settings.php:868
714
  msgid "Tips below the Attachment"
715
  msgstr "Показувати підказки під блоком прикріплених файлів"
716
 
717
  # @ contact_form
718
+ #: includes/class-cntctfrm-settings.php:875
719
  msgid "'Send me a copy' block"
720
  msgstr "Блок \"Надіслати мені копію\""
721
 
722
+ #: includes/class-cntctfrm-settings.php:882
723
  msgid "GDPR Compliance"
724
  msgstr "Згода з GDPR"
725
 
726
+ #: includes/class-cntctfrm-settings.php:887
727
  msgid "Link to Privacy Policy Page"
728
  msgstr "Посилання на сторінку політики конфіденційності"
729
 
730
+ #: includes/class-cntctfrm-settings.php:891
731
  msgid "Text for Privacy Policy Link"
732
  msgstr "Текст для посилання політики конфіденційності"
733
 
734
+ #: includes/class-cntctfrm-settings.php:919
735
  msgid "Activate for network"
736
  msgstr "Активувати для мережі"
737
 
738
  # @ contact_form
739
+ #: includes/class-cntctfrm-settings.php:1009
740
  msgid "Agreement checkbox"
741
  msgstr "Чекбокс для погодження"
742
 
743
  # @ contact_form
744
+ #: includes/class-cntctfrm-settings.php:1009
745
  msgid "Required checkbox for submitting the form"
746
  msgstr "Необхідний чекбокс для відправки форми"
747
 
748
  # @ contact_form
749
+ #: includes/class-cntctfrm-settings.php:1010
750
  msgid "Optional checkbox"
751
  msgstr "Додатковий чекбокс"
752
 
753
  # @ contact_form
754
+ #: includes/class-cntctfrm-settings.php:1010
755
  msgid "Optional checkbox, the results of which will be displayed in email"
756
  msgstr ""
757
  "Додатковий чекбокс, результати якого буде відображено у еmail-повідомленні"
758
 
759
  # @ contact_form
760
+ #: includes/class-cntctfrm-settings.php:1025
761
  msgid "Delete an attachment file from the server after the email is sent"
762
  msgstr ""
763
  "Видаляти прикріплений файл з серверу після того, як повідомлення відправлено"
764
 
765
  # @ contact_form
766
+ #: includes/class-cntctfrm-settings.php:1031
767
  msgid "Email in HTML format sending"
768
  msgstr "Відправка повідомлення в форматі HTML"
769
 
770
  # @ contact_form
771
+ #: includes/class-cntctfrm-settings.php:1035
772
  msgid "Display additional info in the email"
773
  msgstr "Відображати додаткову інформацію у повідомленні"
774
 
775
  # @ contact_form
776
+ #: includes/class-cntctfrm-settings.php:1041
777
  msgid "Sent from (IP address)"
778
  msgstr "Надіслано від (IP адреса)"
779
 
780
+ #: includes/class-cntctfrm-settings.php:1041
781
  msgid "Example: Sent from (IP address): 127.0.0.1"
782
  msgstr "Приклад: відправлено з (IP адреси): 127.0.0.1"
783
 
784
+ #: includes/class-cntctfrm-settings.php:1042
785
  msgid "Example: Date/Time: August 19, 2013 8:50 pm"
786
  msgstr "Приклад: Дата/Час: 19 Серпня, 2013 20:50"
787
 
788
+ #: includes/class-cntctfrm-settings.php:1043
789
  msgid ""
790
  "Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
791
  msgstr ""
792
  "Приклад: відправлено з (referer): https://bestwebsoft.com/contacts/contact-"
793
  "us/"
794
 
795
+ #: includes/class-cntctfrm-settings.php:1044
796
  msgid ""
797
  "Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
798
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
801
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
802
 
803
  # @ contact_form
804
+ #: includes/class-cntctfrm-settings.php:1049
805
  msgid "Language settings for the field names in the form"
806
  msgstr "Налаштування мови для імен полів форми"
807
 
808
  # @ contact_form
809
+ #: includes/class-cntctfrm-settings.php:1058
810
  msgid "Add a language"
811
  msgstr "Додати мову"
812
 
813
  # @ contact_form
814
+ #: includes/class-cntctfrm-settings.php:1062
815
  msgid "Change the names of the contact form fields and error messages"
816
  msgstr "Змінити імена полів контактної форми і повідомлення про помилку"
817
 
818
  # @ contact_form
819
+ #: includes/class-cntctfrm-settings.php:1067
820
+ #: includes/class-cntctfrm-settings.php:1165
821
+ #: includes/class-cntctfrm-settings.php:1270
822
  msgid "Default"
823
  msgstr "Стандартно"
824
 
825
  # @ contact_form
826
+ #: includes/class-cntctfrm-settings.php:1080
827
+ #: includes/class-cntctfrm-settings.php:1119
828
  msgid "click to expand/hide the list"
829
  msgstr "натиснути, щоб розгорнути/згорнути список"
830
 
831
  # @ contact_form
832
+ #: includes/class-cntctfrm-settings.php:1089
833
+ #: includes/class-cntctfrm-settings.php:1128
834
  msgid "Tips below the Attachment block"
835
  msgstr "Підказки під блоком прикріплення файлів"
836
 
837
  # @ contact_form
838
+ #: includes/class-cntctfrm-settings.php:1093
839
+ #: includes/class-cntctfrm-settings.php:1132
840
  msgid "Error message for the Name field"
841
  msgstr "Повідомлення про помилку для поля Ім'я"
842
 
843
  # @ contact_form
844
+ #: includes/class-cntctfrm-settings.php:1094
845
+ #: includes/class-cntctfrm-settings.php:1133
846
  msgid "Error message for the Address field"
847
  msgstr "Повідомлення про помилку для поля Адреса"
848
 
849
  # @ contact_form
850
+ #: includes/class-cntctfrm-settings.php:1095
851
+ #: includes/class-cntctfrm-settings.php:1134
852
  msgid "Error message for the Email field"
853
  msgstr "Повідомлення про помилку для поля Email"
854
 
855
  # @ contact_form
856
+ #: includes/class-cntctfrm-settings.php:1096
857
+ #: includes/class-cntctfrm-settings.php:1135
858
  msgid "Error message for the Phone field"
859
  msgstr "Повідомлення про помилку для поля Номер телефону"
860
 
861
  # @ contact_form
862
+ #: includes/class-cntctfrm-settings.php:1097
863
+ #: includes/class-cntctfrm-settings.php:1136
864
  msgid "Error message for the Subject field"
865
  msgstr "Повідомлення про помилку для поля Тема"
866
 
867
  # @ contact_form
868
+ #: includes/class-cntctfrm-settings.php:1098
869
+ #: includes/class-cntctfrm-settings.php:1137
870
  msgid "Error message for the Message field"
871
  msgstr "Повідомлення про помилку для поля Повідомлення"
872
 
873
  # @ contact_form
874
+ #: includes/class-cntctfrm-settings.php:1099
875
+ #: includes/class-cntctfrm-settings.php:1138
876
  msgid "Error message about the file type for the Attachment field"
877
  msgstr "Повідомлення про помилку для поля Прикріплені файли"
878
 
879
  # @ contact_form
880
+ #: includes/class-cntctfrm-settings.php:1100
881
+ #: includes/class-cntctfrm-settings.php:1139
882
  msgid ""
883
  "Error message while uploading a file for the Attachment field to the server"
884
  msgstr ""
886
  "Прикріплені файли"
887
 
888
  # @ contact_form
889
+ #: includes/class-cntctfrm-settings.php:1101
890
+ #: includes/class-cntctfrm-settings.php:1140
891
  msgid "Error message while moving the file for the Attachment field"
892
  msgstr ""
893
  "Повідомлення про помилку під час переміщення файлу для поля Прикріплені файли"
894
 
895
  # @ contact_form
896
+ #: includes/class-cntctfrm-settings.php:1102
897
+ #: includes/class-cntctfrm-settings.php:1141
898
  msgid "Error message when file size limit for the Attachment field is exceeded"
899
  msgstr ""
900
  "Повідомлення про помилку для поля Прикріплені файли, коли розмір файлу "
901
  "перевищує допустимий"
902
 
903
  # @ contact_form
904
+ #: includes/class-cntctfrm-settings.php:1103
905
+ #: includes/class-cntctfrm-settings.php:1142
906
  msgid "Error message for the Captcha field"
907
  msgstr "Повідомлення про помилку для поля Captcha"
908
 
909
  # @ contact_form
910
+ #: includes/class-cntctfrm-settings.php:1104
911
+ #: includes/class-cntctfrm-settings.php:1143
912
  msgid "Error message for the whole form"
913
  msgstr "Повідомлення про помилку для всієї форми"
914
 
915
  # @ contact_form
916
+ #: includes/class-cntctfrm-settings.php:1156
917
  msgid "Use the changed names of the contact form fields in the email"
918
  msgstr "Використовувати змінені імена полів контактної форми у повідомленні"
919
 
920
  # @ contact_form
921
+ #: includes/class-cntctfrm-settings.php:1162
922
  msgid "Action after email is sent"
923
  msgstr "Дія після відправлення листа з контактної форми"
924
 
925
  # @ contact_form
926
+ #: includes/class-cntctfrm-settings.php:1164
927
  msgid "Display text"
928
  msgstr "Показати текст"
929
 
930
  # @ contact_form
931
+ #: includes/class-cntctfrm-settings.php:1178
932
+ #: includes/class-cntctfrm-settings.php:1192
933
  msgid "Text"
934
  msgstr "Текст"
935
 
936
  # @ contact_form
937
+ #: includes/class-cntctfrm-settings.php:1203
938
  msgid "Redirect to the page"
939
  msgstr "Перенаправлення на сторінку"
940
 
941
  # @ contact_form
942
+ #: includes/class-cntctfrm-settings.php:1204
943
  msgid "Url"
944
  msgstr "Посилання"
945
 
946
+ #: includes/class-cntctfrm-settings.php:1224
947
  #, php-format
948
  msgid ""
949
  "Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
952
  "Будь ласка, увімкніть JavaScript щоб змінити опції '%s', '%s', '%s', '%s' та "
953
  "для сортування полів."
954
 
955
+ #: includes/class-cntctfrm-settings.php:1225
956
+ #: includes/class-cntctfrm-settings.php:1242
957
  msgid "Form layout"
958
  msgstr "Шаблон форми"
959
 
960
  # @ contact_form
961
+ #: includes/class-cntctfrm-settings.php:1226
962
+ #: includes/class-cntctfrm-settings.php:1309
963
  msgid "Labels position"
964
  msgstr "Розташування імен полів"
965
 
966
+ #: includes/class-cntctfrm-settings.php:1227
967
+ #: includes/class-cntctfrm-settings.php:1327
968
  msgid "Labels align"
969
  msgstr "Вирівнювання імен полів"
970
 
971
  # @ contact_form
972
+ #: includes/class-cntctfrm-settings.php:1228
973
+ #: includes/class-cntctfrm-settings.php:1254
974
  msgid "Submit position"
975
  msgstr "Позиція кнопки 'Відправити'"
976
 
977
  # @ contact_form
978
+ #: includes/class-cntctfrm-settings.php:1229
979
+ #: includes/class-cntctfrm-settings.php:1358
980
  msgid "Add tooltips"
981
  msgstr "Додати підказки"
982
 
983
  # @ contact_form
984
+ #: includes/class-cntctfrm-settings.php:1230
985
+ #: includes/class-cntctfrm-settings.php:1399
986
  msgid "Style options"
987
  msgstr "Опції стилю"
988
 
989
+ #: includes/class-cntctfrm-settings.php:1246
990
  msgid "One column"
991
  msgstr "Одна колонка"
992
 
993
+ #: includes/class-cntctfrm-settings.php:1249
994
  msgid "Two columns"
995
  msgstr "Дві колонки"
996
 
997
+ #: includes/class-cntctfrm-settings.php:1258
 
998
  #: includes/class-cntctfrm-settings.php:1298
999
+ #: includes/class-cntctfrm-settings.php:1316
1000
+ #: includes/class-cntctfrm-settings.php:1331
1001
  msgid "Left"
1002
  msgstr "Ліворуч"
1003
 
1004
+ #: includes/class-cntctfrm-settings.php:1261
1005
+ #: includes/class-cntctfrm-settings.php:1304
 
1006
  #: includes/class-cntctfrm-settings.php:1319
1007
+ #: includes/class-cntctfrm-settings.php:1337
1008
  msgid "Right"
1009
  msgstr "Праворуч"
1010
 
1011
+ #: includes/class-cntctfrm-settings.php:1266
1012
  msgid "Width"
1013
  msgstr "Ширина"
1014
 
1015
+ #: includes/class-cntctfrm-settings.php:1274
1016
  msgid "Custom"
1017
  msgstr "Користувацька"
1018
 
1019
+ #: includes/class-cntctfrm-settings.php:1281
1020
  msgid "px"
1021
  msgstr "пікс"
1022
 
1023
+ #: includes/class-cntctfrm-settings.php:1294
1024
  msgid "Form align"
1025
  msgstr "Вирівнювання форми"
1026
 
1027
+ #: includes/class-cntctfrm-settings.php:1301
1028
+ #: includes/class-cntctfrm-settings.php:1334
1029
  msgid "Center"
1030
  msgstr "По центру"
1031
 
1032
+ #: includes/class-cntctfrm-settings.php:1313
1033
  msgid "Top"
1034
  msgstr "Зверху"
1035
 
1036
+ #: includes/class-cntctfrm-settings.php:1322
1037
  msgid "Bottom"
1038
  msgstr "Знизу"
1039
 
1040
  # @ contact_form
1041
+ #: includes/class-cntctfrm-settings.php:1342
1042
  msgid "Errors output"
1043
  msgstr "Відображення помилок"
1044
 
1045
  # @ contact_form
1046
+ #: includes/class-cntctfrm-settings.php:1345
1047
  msgid "Display error messages"
1048
  msgstr "Відображати повідомлення про помилки"
1049
 
1050
  # @ contact_form
1051
+ #: includes/class-cntctfrm-settings.php:1346
1052
  msgid "Color of the input field errors."
1053
  msgstr "Колір для помилок у полях введення."
1054
 
1055
  # @ contact_form
1056
+ #: includes/class-cntctfrm-settings.php:1347
1057
  msgid "Display error messages & color of the input field errors"
1058
  msgstr ""
1059
  "Відображення повідомлень про помилку і колір для полів з помилками у полях "
1060
  "введення"
1061
 
1062
  # @ contact_form
1063
+ #: includes/class-cntctfrm-settings.php:1352
1064
  msgid "Add placeholder to the input blocks"
1065
  msgstr "Додати текст заповнювача для блоків введення"
1066
 
1067
  # @ contact_form
1068
+ #: includes/class-cntctfrm-settings.php:1372
1069
  msgid "Email address"
1070
  msgstr "Email"
1071
 
1072
  # @ contact_form
1073
+ #: includes/class-cntctfrm-settings.php:1403
1074
  msgid "Text color"
1075
  msgstr "Колір тексту"
1076
 
1077
  # @ contact_form
1078
+ #: includes/class-cntctfrm-settings.php:1411
1079
  msgid "Label text color"
1080
  msgstr "Колір написів"
1081
 
1082
  # @ contact_form
1083
+ #: includes/class-cntctfrm-settings.php:1420
1084
  msgid "Placeholder color"
1085
  msgstr "Колір тексту заповнювача"
1086
 
1087
  # @ contact_form
1088
+ #: includes/class-cntctfrm-settings.php:1425
1089
  msgid "Errors color"
1090
  msgstr "Колір помилок"
1091
 
1092
  # @ contact_form
1093
+ #: includes/class-cntctfrm-settings.php:1433
1094
  msgid "Error text color"
1095
  msgstr "Колір тексту помилок"
1096
 
1097
  # @ contact_form
1098
+ #: includes/class-cntctfrm-settings.php:1441
1099
  msgid "Background color of the input field errors"
1100
  msgstr "Колір заднього фону для полів введення з помилками"
1101
 
1102
  # @ contact_form
1103
+ #: includes/class-cntctfrm-settings.php:1449
1104
  msgid "Border color of the input field errors"
1105
  msgstr "Колір рамки для полів введення з помилками"
1106
 
1107
  # @ contact_form
1108
+ #: includes/class-cntctfrm-settings.php:1457
1109
  msgid "Placeholder color of the input field errors"
1110
  msgstr "Колір тексту заповнювача для полів введення з помилками"
1111
 
1112
  # @ contact_form
1113
+ #: includes/class-cntctfrm-settings.php:1462
1114
  msgid "Input fields"
1115
  msgstr "Поля введення тексту"
1116
 
1117
  # @ contact_form
1118
+ #: includes/class-cntctfrm-settings.php:1470
1119
  msgid "Input fields background color"
1120
  msgstr "Колір фону полів введення"
1121
 
1122
  # @ contact_form
1123
+ #: includes/class-cntctfrm-settings.php:1478
1124
  msgid "Text fields color"
1125
  msgstr "Колір текстових полів"
1126
 
1127
  # @ contact_form
1128
+ #: includes/class-cntctfrm-settings.php:1482
1129
  msgid "Border width in px, numbers only"
1130
  msgstr "Ширина рамки в пікселях, тільки числа"
1131
 
1132
  # @ contact_form
1133
+ #: includes/class-cntctfrm-settings.php:1490
1134
+ #: includes/class-cntctfrm-settings.php:1523
1135
  msgid "Border color"
1136
  msgstr "Колір рамки"
1137
 
1138
  # @ contact_form
1139
+ #: includes/class-cntctfrm-settings.php:1495
1140
  msgid "Submit button"
1141
  msgstr "Кнопка підтвердження"
1142
 
1143
  # @ contact_form
1144
+ #: includes/class-cntctfrm-settings.php:1499
1145
  msgid "Width in px, numbers only"
1146
  msgstr "Ширина в пікселях, тільки числа"
1147
 
1148
  # @ contact_form
1149
+ #: includes/class-cntctfrm-settings.php:1507
1150
  msgid "Button color"
1151
  msgstr "Колір кнопок"
1152
 
1153
  # @ contact_form
1154
+ #: includes/class-cntctfrm-settings.php:1515
1155
  msgid "Button text color"
1156
  msgstr "Колір тексту кнопок"
1157
 
1158
  # @ contact_form
1159
+ #: includes/class-cntctfrm-settings.php:1542
1160
  msgid "Contact Form | Preview"
1161
  msgstr "Contact Form | Попередній перегляд"
1162
 
1163
+ #: includes/class-cntctfrm-settings.php:1543
1164
  msgid "Drag the necessary field to sort fields."
1165
  msgstr "Перетягніть необхідне поле для сортування полів."
1166
 
1167
+ #: includes/class-cntctfrm-settings.php:1790
1168
  msgid "Contact Form Shortcode"
1169
  msgstr "Шорткод Contact Form"
1170
 
1171
+ #: includes/class-cntctfrm-settings.php:1793
1172
  msgid "Add Contact Form to your page or post using the following shortcode:"
1173
  msgstr ""
1174
  "Додайте Contact Form на свою сторінку або пост, використовуючи такий "
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: 3.9
6
- Tested up to: 5.1
7
- Stable tag: 4.1.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -40,6 +40,7 @@ https://www.youtube.com/watch?v=F_piQa0hmkU
40
  * Address
41
  * Phone number
42
  * File attachments
 
43
  * Enable additional pre-build fields
44
  * Enable two column layout
45
  * Change the width for contact form
@@ -223,8 +224,11 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
223
 
224
  == Changelog ==
225
 
 
 
 
226
  = V4.1.3 - 06.03.2019 =
227
- * Bugfix : The bug with wp-options call has need fixed.
228
 
229
  = V4.1.2 - 26.02.2019 =
230
  * Update : The plugin settings page has been changed.
@@ -727,6 +731,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
727
 
728
  == Upgrade Notice ==
729
 
 
 
 
730
  = V4.1.3 =
731
  * Bugs fixed.
732
 
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: 3.9
6
+ Tested up to: 5.1.1
7
+ Stable tag: 4.1.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
40
  * Address
41
  * Phone number
42
  * File attachments
43
+ * Multiple file selection [NEW]
44
  * Enable additional pre-build fields
45
  * Enable two column layout
46
  * Change the width for contact form
224
 
225
  == Changelog ==
226
 
227
+ = V4.1.4 - 26.03.2019 =
228
+ * NEW : The ability to attach multiple files has been added.
229
+
230
  = V4.1.3 - 06.03.2019 =
231
+ * Bugfix : The bug with wp-options call has need fixed.
232
 
233
  = V4.1.2 - 26.02.2019 =
234
  * Update : The plugin settings page has been changed.
731
 
732
  == Upgrade Notice ==
733
 
734
+ = V4.1.4 =
735
+ * New features added.
736
+
737
  = V4.1.3 =
738
  * Bugs fixed.
739
 
screenshot-10.png CHANGED
Binary file
screenshot-11.png CHANGED
Binary file
screenshot-13.png CHANGED
Binary file
screenshot-16.png ADDED
Binary file
screenshot-4.png CHANGED
Binary file
screenshot-5.png CHANGED
Binary file
screenshot-6.png CHANGED
Binary file
screenshot-8.png CHANGED
Binary file