Version Description
- 15.07.2020 =
- NEW : Compatibility with Limit Attempts plugin has been added.
- Update : BWS panel section was updated.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Contact Form by BestWebSoft |
Version | 4.2.0 |
Comparing to | |
See all releases |
Code changes from version 4.1.9 to 4.2.0
- bws_menu/bws_functions.php +2 -2
- bws_menu/bws_menu.php +2 -2
- bws_menu/class-bws-settings.php +25 -16
- bws_menu/css/general_style.css +3 -0
- bws_menu/deactivation-form.php +1 -1
- contact_form.php +12 -3
- includes/class-cntctfrm-settings.php +8 -10
- languages/contact-form-plugin-ru_RU.mo +0 -0
- languages/contact-form-plugin-ru_RU.po +349 -349
- languages/contact-form-plugin-uk.mo +0 -0
- languages/contact-form-plugin-uk.po +350 -350
- readme.txt +981 -973
bws_menu/bws_functions.php
CHANGED
@@ -605,7 +605,7 @@ if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
|
|
605 |
};
|
606 |
$( '." . $prefix . "_close_icon' ).click( function() {
|
607 |
$( '." . $prefix . "_message' ).css( 'display', 'none' );
|
608 |
-
$.cookie( '" . $prefix . "_hide_banner_on_plugin_page', 'true', { expires: 32 } );
|
609 |
});
|
610 |
});
|
611 |
})(jQuery);";
|
@@ -631,7 +631,7 @@ if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
|
|
631 |
}
|
632 |
$( '." . $banner_value['prefix'] . "_close_icon' ).click( function() {
|
633 |
$( '." . $banner_value['prefix'] . "_message_timeout' ).css( 'display', 'none' );
|
634 |
-
$.cookie( '" . $banner_value['prefix'] . "_timeout_hide_banner_on_plugin_page', 'true', { expires: 30 } );
|
635 |
});";
|
636 |
}
|
637 |
|
605 |
};
|
606 |
$( '." . $prefix . "_close_icon' ).click( function() {
|
607 |
$( '." . $prefix . "_message' ).css( 'display', 'none' );
|
608 |
+
$.cookie( '" . $prefix . "_hide_banner_on_plugin_page', 'true', { expires: 32, secure: true } );
|
609 |
});
|
610 |
});
|
611 |
})(jQuery);";
|
631 |
}
|
632 |
$( '." . $banner_value['prefix'] . "_close_icon' ).click( function() {
|
633 |
$( '." . $banner_value['prefix'] . "_message_timeout' ).css( 'display', 'none' );
|
634 |
+
$.cookie( '" . $banner_value['prefix'] . "_timeout_hide_banner_on_plugin_page', 'true', { expires: 30, secure: true } );
|
635 |
});";
|
636 |
}
|
637 |
|
bws_menu/bws_menu.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
-
* Version: 2.3.
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
@@ -547,7 +547,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
547 |
<?php } elseif ( $is_installed ) { ?>
|
548 |
<a class="button button-secondary" href="<?php echo esc_url( wp_nonce_url( self_admin_url( $current_page . '&bws_activate_plugin=' . $key_plugin ), 'bws_activate_plugin' . $key_plugin ) ); ?>" title="<?php _e( 'Activate this plugin', 'bestwebsoft' ); ?>"><?php _e( 'Activate', 'bestwebsoft' ); ?></a>
|
549 |
<?php } else {
|
550 |
-
$install_url = isset( $value_plugin['install_url'] ) ? $value_plugin['install_url'] :
|
551 |
<a class="button button-secondary" href="<?php echo esc_url( $install_url ); ?>" title="<?php _e( 'Install this plugin', 'bestwebsoft' ); ?>" target="_blank"><?php _e( 'Install Now', 'bestwebsoft' ); ?></a>
|
552 |
<?php }
|
553 |
} ?>
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
+
* Version: 2.3.2
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
547 |
<?php } elseif ( $is_installed ) { ?>
|
548 |
<a class="button button-secondary" href="<?php echo esc_url( wp_nonce_url( self_admin_url( $current_page . '&bws_activate_plugin=' . $key_plugin ), 'bws_activate_plugin' . $key_plugin ) ); ?>" title="<?php _e( 'Activate this plugin', 'bestwebsoft' ); ?>"><?php _e( 'Activate', 'bestwebsoft' ); ?></a>
|
549 |
<?php } else {
|
550 |
+
$install_url = isset( $value_plugin['install_url'] ) ? $value_plugin['install_url'] : network_admin_url( 'plugin-install.php?tab=search&type=term&s=' . str_replace( array( ' ', '-' ), '+', str_replace( '&', '', $value_plugin['name'] ) ) . '+BestWebSoft&plugin-search-input=Search+Plugins' ); ?>
|
551 |
<a class="button button-secondary" href="<?php echo esc_url( $install_url ); ?>" title="<?php _e( 'Install this plugin', 'bestwebsoft' ); ?>" target="_blank"><?php _e( 'Install Now', 'bestwebsoft' ); ?></a>
|
552 |
<?php }
|
553 |
} ?>
|
bws_menu/class-bws-settings.php
CHANGED
@@ -10,6 +10,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
|
|
10 |
private $tabs;
|
11 |
private $pro_plugin_is_activated = false;
|
12 |
private $custom_code_args = array();
|
|
|
13 |
|
14 |
public $plugin_basename;
|
15 |
public $prefix;
|
@@ -53,6 +54,8 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
|
|
53 |
* @param array|string $args
|
54 |
*/
|
55 |
public function __construct( $args = array() ) {
|
|
|
|
|
56 |
$args = wp_parse_args( $args, array(
|
57 |
'plugin_basename' => '',
|
58 |
'prefix' => '',
|
@@ -66,8 +69,6 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
|
|
66 |
'wp_slug' => '',
|
67 |
'demo_data' => false,
|
68 |
/* if this is free version and pro exist */
|
69 |
-
'pro_page' => '',
|
70 |
-
'bws_license_plugin' => '',
|
71 |
'link_key' => '',
|
72 |
'link_pn' => '',
|
73 |
'trial_days' => false,
|
@@ -90,14 +91,27 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
|
|
90 |
$this->doc_link = $args['doc_link'];
|
91 |
$this->doc_video_link = $args['doc_video_link'];
|
92 |
|
93 |
-
$this->pro_page = $args['pro_page'];
|
94 |
-
$this->bws_license_plugin = $args['bws_license_plugin'];
|
95 |
$this->link_key = $args['link_key'];
|
96 |
$this->link_pn = $args['link_pn'];
|
97 |
$this->trial_days = $args['trial_days'];
|
98 |
$this->licenses = $args['licenses'];
|
99 |
|
100 |
-
$this->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
$this->version = '1.0.0';
|
102 |
$this->is_multisite = is_multisite();
|
103 |
|
@@ -112,7 +126,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
|
|
112 |
$this->licenses[ $this->plugins_info['TextDomain'] ] = array(
|
113 |
'name' => $this->plugins_info['Name'],
|
114 |
'slug' => $this->plugins_info['TextDomain'],
|
115 |
-
'pro_slug' =>
|
116 |
'basename' => $this->plugin_basename,
|
117 |
'pro_basename' => $this->bws_license_plugin
|
118 |
);
|
@@ -234,8 +248,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
|
|
234 |
* @param void
|
235 |
* @return void
|
236 |
*/
|
237 |
-
public function display_tabs() {
|
238 |
-
global $wp_version; ?>
|
239 |
<div id="bws_settings_tabs_wrapper">
|
240 |
<ul id="bws_settings_tabs">
|
241 |
<?php $this->display_tabs_list(); ?>
|
@@ -762,19 +775,15 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
|
|
762 |
</tr>
|
763 |
</table>
|
764 |
<?php } else {
|
765 |
-
$attr = '';
|
766 |
if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['count'] ) &&
|
767 |
'5' < $bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['count'] &&
|
768 |
$bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) )
|
769 |
$attr = 'disabled="disabled"';
|
770 |
|
771 |
-
|
772 |
-
$license_key = '';
|
773 |
-
if( ! empty( $single_license['pro_basename'] ) ) {
|
774 |
$license_key = ! empty( $bstwbsftwppdtplgns_options[ $single_license['pro_basename'] ] ) ? $bstwbsftwppdtplgns_options[ $single_license['pro_basename'] ] : '';
|
775 |
-
}
|
776 |
-
$current_plugin_link = ( ! empty( $this->link_key ) && ! empty( $this->link_pn ) ? esc_url( 'https://bestwebsoft.com/products/wordpress/plugins/' . $this->wp_slug . '/' . '?k=' . $this->link_key . '&pn=' . $this->link_pn . '&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version ) : esc_url( 'https://bestwebsoft.com/products/wordpress/plugins/' . $this->wp_slug . '/' ) );
|
777 |
-
?>
|
778 |
<table class="form-table">
|
779 |
<tr>
|
780 |
<th scope="row"><?php echo $pro_plugin_name . ' License'; ?></th>
|
@@ -783,7 +792,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
|
|
783 |
<input <?php echo $attr; ?> type="hidden" name="bws_license_plugin_<?php echo ( ! empty( $single_license['pro_slug'] ) ) ? $single_license['pro_slug'] : $single_license['slug']; ?>" value="<?php echo esc_attr( ( ! empty( $single_license['pro_slug'] ) ) ? $single_license['pro_slug'] : $single_license['slug'] ); ?>" />
|
784 |
<input <?php echo $attr; ?> type="submit" class="button button-secondary" name="bws_license_submit" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
|
785 |
<div class="bws_info">
|
786 |
-
<?php printf( __( 'Enter your license key to activate %s and get premium plugin features.', 'bestwebsoft' ), '<a href="' . $
|
787 |
</div>
|
788 |
<?php if ( '' != $attr ) { ?>
|
789 |
<p><?php _e( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' ); ?></p>
|
10 |
private $tabs;
|
11 |
private $pro_plugin_is_activated = false;
|
12 |
private $custom_code_args = array();
|
13 |
+
private $bws_plugin_link = '';
|
14 |
|
15 |
public $plugin_basename;
|
16 |
public $prefix;
|
54 |
* @param array|string $args
|
55 |
*/
|
56 |
public function __construct( $args = array() ) {
|
57 |
+
global $wp_version;
|
58 |
+
|
59 |
$args = wp_parse_args( $args, array(
|
60 |
'plugin_basename' => '',
|
61 |
'prefix' => '',
|
69 |
'wp_slug' => '',
|
70 |
'demo_data' => false,
|
71 |
/* if this is free version and pro exist */
|
|
|
|
|
72 |
'link_key' => '',
|
73 |
'link_pn' => '',
|
74 |
'trial_days' => false,
|
91 |
$this->doc_link = $args['doc_link'];
|
92 |
$this->doc_video_link = $args['doc_video_link'];
|
93 |
|
|
|
|
|
94 |
$this->link_key = $args['link_key'];
|
95 |
$this->link_pn = $args['link_pn'];
|
96 |
$this->trial_days = $args['trial_days'];
|
97 |
$this->licenses = $args['licenses'];
|
98 |
|
99 |
+
$this->pro_page = $this->bws_license_plugin = '';
|
100 |
+
/* get $bws_plugins */
|
101 |
+
require( dirname( __FILE__ ) . '/product_list.php' );
|
102 |
+
if ( isset( $bws_plugins[ $this->plugin_basename ] ) ) {
|
103 |
+
if ( isset( $bws_plugins[ $this->plugin_basename ]['pro_settings'] ) ) {
|
104 |
+
$this->pro_page = $bws_plugins[ $this->plugin_basename ]['pro_settings'];
|
105 |
+
$this->bws_license_plugin = $bws_plugins[ $this->plugin_basename ]['pro_version'];
|
106 |
+
}
|
107 |
+
|
108 |
+
$this->bws_plugin_link = substr( $bws_plugins[ $this->plugin_basename ]['link'],0 , strpos( $bws_plugins[ $this->plugin_basename ]['link'], '?' ) );
|
109 |
+
|
110 |
+
if ( ! empty( $this->link_key ) && ! empty( $this->link_pn ) )
|
111 |
+
$this->bws_plugin_link .= '?k=' . $this->link_key . '&pn=' . $this->link_pn . '&v=' . $this->plugins_info["Version"] . '&wp_v=' . $wp_version;
|
112 |
+
}
|
113 |
+
|
114 |
+
$this->hide_pro_tabs = bws_hide_premium_options_check( $this->options );
|
115 |
$this->version = '1.0.0';
|
116 |
$this->is_multisite = is_multisite();
|
117 |
|
126 |
$this->licenses[ $this->plugins_info['TextDomain'] ] = array(
|
127 |
'name' => $this->plugins_info['Name'],
|
128 |
'slug' => $this->plugins_info['TextDomain'],
|
129 |
+
'pro_slug' => substr( $this->bws_license_plugin, 0, stripos( $this->bws_license_plugin, '/' ) ),
|
130 |
'basename' => $this->plugin_basename,
|
131 |
'pro_basename' => $this->bws_license_plugin
|
132 |
);
|
248 |
* @param void
|
249 |
* @return void
|
250 |
*/
|
251 |
+
public function display_tabs() { ?>
|
|
|
252 |
<div id="bws_settings_tabs_wrapper">
|
253 |
<ul id="bws_settings_tabs">
|
254 |
<?php $this->display_tabs_list(); ?>
|
775 |
</tr>
|
776 |
</table>
|
777 |
<?php } else {
|
778 |
+
$attr = $license_key = '';
|
779 |
if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['count'] ) &&
|
780 |
'5' < $bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['count'] &&
|
781 |
$bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) )
|
782 |
$attr = 'disabled="disabled"';
|
783 |
|
784 |
+
if ( ! empty( $single_license['pro_basename'] ) ) {
|
|
|
|
|
785 |
$license_key = ! empty( $bstwbsftwppdtplgns_options[ $single_license['pro_basename'] ] ) ? $bstwbsftwppdtplgns_options[ $single_license['pro_basename'] ] : '';
|
786 |
+
} ?>
|
|
|
|
|
787 |
<table class="form-table">
|
788 |
<tr>
|
789 |
<th scope="row"><?php echo $pro_plugin_name . ' License'; ?></th>
|
792 |
<input <?php echo $attr; ?> type="hidden" name="bws_license_plugin_<?php echo ( ! empty( $single_license['pro_slug'] ) ) ? $single_license['pro_slug'] : $single_license['slug']; ?>" value="<?php echo esc_attr( ( ! empty( $single_license['pro_slug'] ) ) ? $single_license['pro_slug'] : $single_license['slug'] ); ?>" />
|
793 |
<input <?php echo $attr; ?> type="submit" class="button button-secondary" name="bws_license_submit" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
|
794 |
<div class="bws_info">
|
795 |
+
<?php printf( __( 'Enter your license key to activate %s and get premium plugin features.', 'bestwebsoft' ), '<a href="' . $this->bws_plugin_link . '" target="_blank" title="' . $pro_plugin_name . '">' . $pro_plugin_name . '</a>' ); ?>
|
796 |
</div>
|
797 |
<?php if ( '' != $attr ) { ?>
|
798 |
<p><?php _e( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' ); ?></p>
|
bws_menu/css/general_style.css
CHANGED
@@ -661,6 +661,9 @@ span.bws_code {
|
|
661 |
#bws_settings_tabs li.bws-tab-notifications a:before {
|
662 |
content: "\f466";
|
663 |
}
|
|
|
|
|
|
|
664 |
#bws_settings_tabs li.bws-tab-output a:before {
|
665 |
content: "\f498";
|
666 |
}
|
661 |
#bws_settings_tabs li.bws-tab-notifications a:before {
|
662 |
content: "\f466";
|
663 |
}
|
664 |
+
#bws_settings_tabs li.bws-tab-reports a:before {
|
665 |
+
content: "\f535";
|
666 |
+
}
|
667 |
#bws_settings_tabs li.bws-tab-output a:before {
|
668 |
content: "\f498";
|
669 |
}
|
bws_menu/deactivation-form.php
CHANGED
@@ -360,7 +360,7 @@ if ( ! function_exists( 'bws_submit_uninstall_reason_action' ) ) {
|
|
360 |
exit;
|
361 |
}
|
362 |
|
363 |
-
$reason_info = isset( $_REQUEST['reason_info'] ) ? stripcslashes(
|
364 |
if ( ! empty( $reason_info ) ) {
|
365 |
$reason_info = substr( $reason_info, 0, 255 );
|
366 |
}
|
360 |
exit;
|
361 |
}
|
362 |
|
363 |
+
$reason_info = isset( $_REQUEST['reason_info'] ) ? stripcslashes( sanitize_text_field( $_REQUEST['reason_info'] ) ) : '';
|
364 |
if ( ! empty( $reason_info ) ) {
|
365 |
$reason_info = substr( $reason_info, 0, 255 );
|
366 |
}
|
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.
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
@@ -707,7 +707,7 @@ if ( ! function_exists( 'cntctfrm_related_plugins' ) ) {
|
|
707 |
if ( is_plugin_active( 'contact-form-to-db/contact_form_to_db.php' ) || is_plugin_active( 'contact-form-to-db-pro/contact_form_to_db_pro.php' ) ) {
|
708 |
$cntctfrmtdb_options = get_option( 'cntctfrmtdb_options' );
|
709 |
|
710 |
-
$settings_page = is_plugin_active( 'contact-form-to-db/contact_form_to_db.php' ) ? '
|
711 |
$cntctfrm_related_plugins['contact-form-to-db'] = array(
|
712 |
'options' => $cntctfrmtdb_options,
|
713 |
'settings_page' => $settings_page
|
@@ -940,7 +940,7 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
|
|
940 |
$content .= '<form method="post" id="cntctfrm_contact_form' . $form_countid . '" class="cntctfrm_contact_form' . $classes . '"';
|
941 |
$content .= ' action="' . $page_url . $form_countid . '" enctype="multipart/form-data">';
|
942 |
if ( isset( $cntctfrm_error_message['error_form'] ) && $cntctfrm_form_count == $form_submited ) {
|
943 |
-
$content .= '<div class="cntctfrm_error_text">' . $cntctfrm_error_message['error_form'] . '</div>';
|
944 |
}
|
945 |
if ( ! isset( $id ) ) {
|
946 |
$cntctfrm_ordered_fields = cntctfrm_get_ordered_fields();
|
@@ -1496,6 +1496,15 @@ if ( ! function_exists( 'cntctfrm_check_form' ) ) {
|
|
1496 |
return $cntctfrm_result;
|
1497 |
}
|
1498 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1499 |
unset( $cntctfrm_error_message['error_form'] );
|
1500 |
/* If all is good - send mail */
|
1501 |
$cntctfrm_result = cntctfrm_send_mail();
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: contact-form-plugin
|
8 |
Domain Path: /languages
|
9 |
+
Version: 4.2.0
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
707 |
if ( is_plugin_active( 'contact-form-to-db/contact_form_to_db.php' ) || is_plugin_active( 'contact-form-to-db-pro/contact_form_to_db_pro.php' ) ) {
|
708 |
$cntctfrmtdb_options = get_option( 'cntctfrmtdb_options' );
|
709 |
|
710 |
+
$settings_page = is_plugin_active( 'contact-form-to-db/contact_form_to_db.php' ) ? 'contact_form_to_db.php' : 'contact_form_to_db_pro.php';
|
711 |
$cntctfrm_related_plugins['contact-form-to-db'] = array(
|
712 |
'options' => $cntctfrmtdb_options,
|
713 |
'settings_page' => $settings_page
|
940 |
$content .= '<form method="post" id="cntctfrm_contact_form' . $form_countid . '" class="cntctfrm_contact_form' . $classes . '"';
|
941 |
$content .= ' action="' . $page_url . $form_countid . '" enctype="multipart/form-data">';
|
942 |
if ( isset( $cntctfrm_error_message['error_form'] ) && $cntctfrm_form_count == $form_submited ) {
|
943 |
+
$content .= '<div class="cntctfrm_error_text">' . ( isset( $cntctfrm_result['error_lmtttmpts'] ) ? $cntctfrm_result['error_lmtttmpts'] : $cntctfrm_error_message['error_form'] ) . '</div>';
|
944 |
}
|
945 |
if ( ! isset( $id ) ) {
|
946 |
$cntctfrm_ordered_fields = cntctfrm_get_ordered_fields();
|
1496 |
return $cntctfrm_result;
|
1497 |
}
|
1498 |
}
|
1499 |
+
|
1500 |
+
/* Check for Limit Attempts */
|
1501 |
+
if ( has_filter( 'cntctfrm_check' ) ) {
|
1502 |
+
$cntctfrm_limit_check = apply_filters( 'cntctfrm_check', $cntctfrm_error_message );
|
1503 |
+
|
1504 |
+
if ( $cntctfrm_limit_check )
|
1505 |
+
return $cntctfrm_limit_check;
|
1506 |
+
}
|
1507 |
+
|
1508 |
unset( $cntctfrm_error_message['error_form'] );
|
1509 |
/* If all is good - send mail */
|
1510 |
$cntctfrm_result = cntctfrm_send_mail();
|
includes/class-cntctfrm-settings.php
CHANGED
@@ -60,8 +60,6 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
|
|
60 |
'is_network_options' => is_network_admin(),
|
61 |
'tabs' => $tabs,
|
62 |
'wp_slug' => 'contact-form',
|
63 |
-
'pro_page' => 'admin.php?page=contact_form_pro.php',
|
64 |
-
'bws_license_plugin' => 'contact-form-pro/contact_form_pro.php',
|
65 |
'licenses' => $addons_check
|
66 |
) );
|
67 |
|
@@ -475,7 +473,7 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
|
|
475 |
<th scope="row"><?php _e( "Add department selectbox to the contact form", 'contact-form-plugin' ); ?></th>
|
476 |
<td colspan="2">
|
477 |
<input type="radio" name="cntctfrm_select_email" value="departments" disabled="disabled" />
|
478 |
-
<div><img
|
479 |
</td>
|
480 |
</tr>
|
481 |
</table>
|
@@ -1056,26 +1054,26 @@ if ( ! class_exists( 'Cntctfrm_Settings_Tabs' ) ) {
|
|
1056 |
}
|
1057 |
|
1058 |
if ( ! $contact_form_multi_active || ! empty( $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] ) ) { ?>
|
1059 |
-
<label><input type="checkbox" name="cntctfrm_display_google_captcha" value="1" <?php checked( $display_google_captcha ); ?> />
|
1060 |
<?php } else { ?>
|
1061 |
<label>
|
1062 |
-
<input type="checkbox" name="cntctfrm_display_google_captcha" value="1" disabled="disabled" <?php checked( $display_google_captcha ); ?> />
|
1063 |
<span class="bws_info"> (<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>
|
1064 |
-
<?php printf( '<a href="%s" target="_blank">
|
1065 |
self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['google-captcha']['settings_page'] ),
|
1066 |
__( 'settings page', 'contact-form-plugin' ) ); ?>
|
1067 |
</span>
|
1068 |
</label>
|
1069 |
<?php }
|
1070 |
} else { ?>
|
1071 |
-
<label><input disabled="disabled" type="checkbox" name="cntctfrm_display_google_captcha" value="1" />
|
1072 |
<span class="bws_info">
|
1073 |
-
<?php printf( '<a href="%s" target="_blank">%s
|
1074 |
</span>
|
1075 |
<?php }
|
1076 |
} else { ?>
|
1077 |
-
<label><input disabled="disabled" type="checkbox" name="cntctfrm_display_google_captcha" value="1" />
|
1078 |
-
<?php printf( '<a href="https://bestwebsoft.com/products/wordpress/plugins/google-captcha/?k=7d74e61dd1cea23d0e9bf2fa88b5b117&pn=77&v=%s&wp_v=%s" target="_blank">%s
|
1079 |
</span>
|
1080 |
<?php } ?>
|
1081 |
</div>
|
60 |
'is_network_options' => is_network_admin(),
|
61 |
'tabs' => $tabs,
|
62 |
'wp_slug' => 'contact-form',
|
|
|
|
|
63 |
'licenses' => $addons_check
|
64 |
) );
|
65 |
|
473 |
<th scope="row"><?php _e( "Add department selectbox to the contact form", 'contact-form-plugin' ); ?></th>
|
474 |
<td colspan="2">
|
475 |
<input type="radio" name="cntctfrm_select_email" value="departments" disabled="disabled" />
|
476 |
+
<div><img src="<?php echo plugins_url( '../images/pro_screen_1.png', __FILE__ ); ?>" alt="" /></div>
|
477 |
</td>
|
478 |
</tr>
|
479 |
</table>
|
1054 |
}
|
1055 |
|
1056 |
if ( ! $contact_form_multi_active || ! empty( $cntctfrm_related_plugins['google-captcha']['options']['contact_form'] ) ) { ?>
|
1057 |
+
<label><input type="checkbox" name="cntctfrm_display_google_captcha" value="1" <?php checked( $display_google_captcha ); ?> /> reCaptcha by BestWebSoft</label>
|
1058 |
<?php } else { ?>
|
1059 |
<label>
|
1060 |
+
<input type="checkbox" name="cntctfrm_display_google_captcha" value="1" disabled="disabled" <?php checked( $display_google_captcha ); ?> /> reCaptcha by BestWebSoft
|
1061 |
<span class="bws_info"> (<?php _e( 'Please activate the appropriate option on', 'contact-form-plugin' ) ?>
|
1062 |
+
<?php printf( '<a href="%s" target="_blank"> reCaptcha by BestWebSoft %s</a> )',
|
1063 |
self_admin_url( '/admin.php?page=' . $cntctfrm_related_plugins['google-captcha']['settings_page'] ),
|
1064 |
__( 'settings page', 'contact-form-plugin' ) ); ?>
|
1065 |
</span>
|
1066 |
</label>
|
1067 |
<?php }
|
1068 |
} else { ?>
|
1069 |
+
<label><input disabled="disabled" type="checkbox" name="cntctfrm_display_google_captcha" value="1" /> reCaptcha by BestWebSoft</label>
|
1070 |
<span class="bws_info">
|
1071 |
+
<?php printf( '<a href="%s" target="_blank">%s reCaptcha</a>', self_admin_url( 'plugins.php' ), __( 'Activate', 'contact-form-plugin' ) ); ?>
|
1072 |
</span>
|
1073 |
<?php }
|
1074 |
} else { ?>
|
1075 |
+
<label><input disabled="disabled" type="checkbox" name="cntctfrm_display_google_captcha" value="1" /> reCaptcha by BestWebSoft</label> <span class="bws_info">
|
1076 |
+
<?php printf( '<a href="https://bestwebsoft.com/products/wordpress/plugins/google-captcha/?k=7d74e61dd1cea23d0e9bf2fa88b5b117&pn=77&v=%s&wp_v=%s" target="_blank">%s reCaptcha</a>', $cntctfrm_plugin_info["Version"], $wp_version, __( 'Download', 'contact-form-plugin' ) ) ?>
|
1077 |
</span>
|
1078 |
<?php } ?>
|
1079 |
</div>
|
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: 2020-
|
6 |
-
"PO-Revision-Date: 2020-
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -12,7 +12,7 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
14 |
"%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
|
15 |
-
"X-Generator: Poedit 2.3\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
"X-Poedit-Basepath: ..\n"
|
@@ -21,85 +21,85 @@ msgstr ""
|
|
21 |
"X-Poedit-SearchPathExcluded-0: bws_menu\n"
|
22 |
|
23 |
# @ contact_form
|
24 |
-
#: contact_form.php:39 contact_form.php:47 contact_form.php:
|
25 |
-
#: includes/class-cntctfrm-settings.php:
|
26 |
msgid "Contact Form Settings"
|
27 |
msgstr "Настройки Contact Form"
|
28 |
|
29 |
# @ contact_form
|
30 |
-
#: contact_form.php:48 contact_form.php:
|
31 |
#: includes/class-cntctfrm-settings.php:25
|
32 |
msgid "Settings"
|
33 |
msgstr "Настройки"
|
34 |
|
35 |
-
#: contact_form.php:63 includes/class-cntctfrm-settings.php:
|
36 |
-
#: includes/class-cntctfrm-settings.php:
|
37 |
-
#: includes/class-cntctfrm-settings.php:
|
38 |
-
#: includes/class-cntctfrm-settings.php:
|
39 |
-
#: includes/class-cntctfrm-settings.php:
|
40 |
msgid "Upgrade to Pro"
|
41 |
msgstr "Обновиться до Pro"
|
42 |
|
43 |
# @ contact_form
|
44 |
-
#: contact_form.php:
|
45 |
-
#: includes/class-cntctfrm-settings.php:
|
46 |
-
#: includes/class-cntctfrm-settings.php:
|
47 |
-
#: includes/class-cntctfrm-settings.php:
|
48 |
-
#: includes/class-cntctfrm-settings.php:
|
49 |
-
#: includes/class-cntctfrm-settings.php:
|
50 |
msgid "Name"
|
51 |
msgstr "Имя"
|
52 |
|
53 |
# @ contact_form
|
54 |
-
#: contact_form.php:
|
55 |
-
#: includes/class-cntctfrm-settings.php:
|
56 |
-
#: includes/class-cntctfrm-settings.php:
|
57 |
-
#: includes/class-cntctfrm-settings.php:
|
58 |
-
#: includes/class-cntctfrm-settings.php:
|
59 |
msgid "Address"
|
60 |
msgstr "Адрес"
|
61 |
|
62 |
# @ contact_form
|
63 |
-
#: contact_form.php:
|
64 |
-
#: includes/class-cntctfrm-settings.php:
|
65 |
-
#: includes/class-cntctfrm-settings.php:
|
66 |
msgid "Email Address"
|
67 |
msgstr "Email адрес"
|
68 |
|
69 |
# @ contact_form
|
70 |
-
#: contact_form.php:
|
71 |
-
#: includes/class-cntctfrm-settings.php:
|
72 |
-
#: includes/class-cntctfrm-settings.php:
|
73 |
msgid "Phone number"
|
74 |
msgstr "Телефон"
|
75 |
|
76 |
# @ contact_form
|
77 |
-
#: contact_form.php:
|
78 |
-
#: includes/class-cntctfrm-settings.php:
|
79 |
-
#: includes/class-cntctfrm-settings.php:
|
80 |
-
#: includes/class-cntctfrm-settings.php:
|
81 |
-
#: includes/class-cntctfrm-settings.php:
|
82 |
msgid "Subject"
|
83 |
msgstr "Тема"
|
84 |
|
85 |
# @ contact_form
|
86 |
-
#: contact_form.php:
|
87 |
-
#: includes/class-cntctfrm-settings.php:
|
88 |
-
#: includes/class-cntctfrm-settings.php:
|
89 |
-
#: includes/class-cntctfrm-settings.php:
|
90 |
-
#: includes/class-cntctfrm-settings.php:
|
91 |
msgid "Message"
|
92 |
msgstr "Сообщение"
|
93 |
|
94 |
# @ contact_form
|
95 |
-
#: contact_form.php:
|
96 |
-
#: includes/class-cntctfrm-settings.php:
|
97 |
-
#: includes/class-cntctfrm-settings.php:
|
98 |
msgid "Attachment"
|
99 |
msgstr "Прикрепить файл"
|
100 |
|
101 |
# @ contact_form
|
102 |
-
#: contact_form.php:
|
103 |
msgid ""
|
104 |
"Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
|
105 |
"EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
|
@@ -108,101 +108,101 @@ msgstr ""
|
|
108 |
"AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
|
109 |
|
110 |
# @ contact_form
|
111 |
-
#: contact_form.php:
|
112 |
-
#: includes/class-cntctfrm-settings.php:
|
113 |
msgid "Send me a copy"
|
114 |
msgstr "Отправить мне копию"
|
115 |
|
116 |
-
#: contact_form.php:
|
117 |
-
#: includes/class-cntctfrm-settings.php:
|
118 |
msgid "I consent to having this site collect my personal data."
|
119 |
msgstr "Я разрешаю этому сайту собирать мои личные данные."
|
120 |
|
121 |
# @ contact_form
|
122 |
-
#: contact_form.php:
|
123 |
-
#: includes/class-cntctfrm-settings.php:
|
124 |
-
#: includes/class-cntctfrm-settings.php:
|
125 |
msgid "Learn more"
|
126 |
msgstr "Подробнее"
|
127 |
|
128 |
# @ contact_form
|
129 |
-
#: contact_form.php:
|
130 |
-
#: includes/class-cntctfrm-settings.php:
|
131 |
msgid "Submit"
|
132 |
msgstr "Отправить"
|
133 |
|
134 |
# @ contact_form
|
135 |
-
#: contact_form.php:
|
136 |
msgid "Your name is required."
|
137 |
msgstr "Поле Имя - это обязательное поле для заполнения."
|
138 |
|
139 |
# @ contact_form
|
140 |
-
#: contact_form.php:
|
141 |
msgid "Address is required."
|
142 |
msgstr "Поле Адрес - это обязательное поле для заполнения."
|
143 |
|
144 |
# @ contact_form
|
145 |
-
#: contact_form.php:
|
146 |
msgid "A valid email address is required."
|
147 |
msgstr "Укажите корректный email - адрес."
|
148 |
|
149 |
# @ contact_form
|
150 |
-
#: contact_form.php:
|
151 |
msgid "Phone number is required."
|
152 |
msgstr "Поле Телефон - это обязательное поле для заполнения."
|
153 |
|
154 |
# @ contact_form
|
155 |
-
#: contact_form.php:
|
156 |
msgid "Subject is required."
|
157 |
msgstr "Поле Тема - это обязательное поле для заполнения."
|
158 |
|
159 |
# @ contact_form
|
160 |
-
#: contact_form.php:
|
161 |
msgid "Message text is required."
|
162 |
msgstr "Поле Сообщение - это обязательное поле для заполнения."
|
163 |
|
164 |
# @ contact_form
|
165 |
-
#: contact_form.php:
|
166 |
msgid "File format is not valid."
|
167 |
msgstr "Прикрепленный тип файла не поддерживается."
|
168 |
|
169 |
# @ contact_form
|
170 |
-
#: contact_form.php:
|
171 |
msgid "File upload error."
|
172 |
msgstr "Ошибка при загрузке файла."
|
173 |
|
174 |
# @ contact_form
|
175 |
-
#: contact_form.php:
|
176 |
msgid "The file could not be uploaded."
|
177 |
msgstr "Невозможно загрузить файл."
|
178 |
|
179 |
# @ contact_form
|
180 |
-
#: contact_form.php:
|
181 |
msgid "This file is too large."
|
182 |
msgstr "Размер файла слишком большой."
|
183 |
|
184 |
# @ contact_form
|
185 |
-
#: contact_form.php:
|
186 |
msgid "Please fill out the CAPTCHA."
|
187 |
msgstr "Пожалуйста, заполните CAPTCHA."
|
188 |
|
189 |
# @ contact_form
|
190 |
-
#: contact_form.php:
|
191 |
msgid "Please make corrections below and try again."
|
192 |
msgstr ""
|
193 |
"Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
|
194 |
|
195 |
# @ contact_form
|
196 |
-
#: contact_form.php:
|
197 |
msgid "Thank you for contacting us."
|
198 |
msgstr "Спасибо, что связались с нами."
|
199 |
|
200 |
-
#: contact_form.php:
|
201 |
msgid "NEW_FORM"
|
202 |
msgstr "НОВАЯ_ФОРМА"
|
203 |
|
204 |
# @ contact_form
|
205 |
-
#: contact_form.php:
|
206 |
msgid ""
|
207 |
"If you want to create multiple contact forms, please install the Contact "
|
208 |
"Form Multi plugin."
|
@@ -210,7 +210,7 @@ msgstr ""
|
|
210 |
"Если вы хотите создать несколько разных контактных форм, пожалуйста, "
|
211 |
"установите плагин Contact Form Multi."
|
212 |
|
213 |
-
#: contact_form.php:
|
214 |
msgid ""
|
215 |
"Contact Form plugin doesn't support your current version of Contact Form "
|
216 |
"Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
|
@@ -221,57 +221,57 @@ msgstr ""
|
|
221 |
"выше."
|
222 |
|
223 |
# @ contact_form
|
224 |
-
#: contact_form.php:
|
225 |
msgid "Sorry, email message could not be delivered."
|
226 |
msgstr "Извините, ваш email не может быть отправлен."
|
227 |
|
228 |
# @ contact_form
|
229 |
-
#: contact_form.php:
|
230 |
msgid "Sent from (ip address)"
|
231 |
msgstr "Отправлено от (IP адрес)"
|
232 |
|
233 |
# @ contact_form
|
234 |
-
#: contact_form.php:
|
235 |
-
#: includes/class-cntctfrm-settings.php:
|
236 |
msgid "Date/Time"
|
237 |
msgstr "Дата/Время"
|
238 |
|
239 |
# @ contact_form
|
240 |
-
#: contact_form.php:
|
241 |
-
#: includes/class-cntctfrm-settings.php:
|
242 |
msgid "Sent from (referer)"
|
243 |
msgstr "Отправлено от (referer)"
|
244 |
|
245 |
# @ contact_form
|
246 |
-
#: contact_form.php:
|
247 |
-
#: includes/class-cntctfrm-settings.php:
|
248 |
msgid "Using (user agent)"
|
249 |
msgstr "Используя (user agent)"
|
250 |
|
251 |
# @ contact_form
|
252 |
-
#: contact_form.php:
|
253 |
msgid "Contact from"
|
254 |
msgstr "Контакт из"
|
255 |
|
256 |
# @ contact_form
|
257 |
-
#: contact_form.php:
|
258 |
msgid "Site"
|
259 |
msgstr "Сайт"
|
260 |
|
261 |
# @ contact_form
|
262 |
-
#: contact_form.php:
|
263 |
-
#: includes/class-cntctfrm-settings.php:
|
264 |
msgid "Email"
|
265 |
msgstr "Email"
|
266 |
|
267 |
# @ contact_form
|
268 |
-
#: contact_form.php:
|
269 |
-
#: includes/class-cntctfrm-settings.php:
|
270 |
msgid "Phone Number"
|
271 |
msgstr "Телефон"
|
272 |
|
273 |
# @ contact_form
|
274 |
-
#: contact_form.php:
|
275 |
msgid ""
|
276 |
"If you can see this MIME, it means that the MIME type is not supported by "
|
277 |
"your email client!"
|
@@ -280,26 +280,26 @@ msgstr ""
|
|
280 |
"MIME тип!"
|
281 |
|
282 |
# @ contact_form
|
283 |
-
#: contact_form.php:
|
284 |
msgid "FAQ"
|
285 |
msgstr "FAQ"
|
286 |
|
287 |
# @ contact_form
|
288 |
-
#: contact_form.php:
|
289 |
msgid "Support"
|
290 |
msgstr "Поддержка"
|
291 |
|
292 |
# @ contact_form
|
293 |
-
#: contact_form.php:
|
294 |
msgid "Are you sure that you want to delete this language data?"
|
295 |
msgstr "Вы действительно хотите удалить данные для этого языка?"
|
296 |
|
297 |
# @ contact_form
|
298 |
-
#: contact_form.php:
|
299 |
msgid "Add multiple forms"
|
300 |
msgstr "Добавить несколько форм"
|
301 |
|
302 |
-
#: contact_form.php:
|
303 |
msgid ""
|
304 |
"Install Contact Form Multi plugin to create unlimited number of contact "
|
305 |
"forms."
|
@@ -307,83 +307,83 @@ msgstr ""
|
|
307 |
"Установить плагин Contact Form Multi для создания неограниченного количества "
|
308 |
"контактных форм."
|
309 |
|
310 |
-
#: contact_form.php:
|
311 |
-
#: includes/class-cntctfrm-settings.php:
|
312 |
-
#: includes/class-cntctfrm-settings.php:
|
313 |
-
#: includes/class-cntctfrm-settings.php:
|
314 |
msgid "Close"
|
315 |
msgstr "Закрыть"
|
316 |
|
317 |
-
#: contact_form.php:
|
318 |
msgid "Error"
|
319 |
msgstr "Ошибка"
|
320 |
|
321 |
-
#: contact_form.php:
|
322 |
msgid "Illegal language code"
|
323 |
msgstr "Нелегальный языковой код"
|
324 |
|
325 |
# @ contact_form
|
326 |
-
#: contact_form.php:
|
|
|
327 |
#: includes/class-cntctfrm-settings.php:1191
|
328 |
-
#: includes/class-cntctfrm-settings.php:
|
329 |
#: includes/class-cntctfrm-settings.php:1231
|
330 |
-
#: includes/class-cntctfrm-settings.php:
|
331 |
#: includes/class-cntctfrm-settings.php:1267
|
332 |
-
#: includes/class-cntctfrm-settings.php:
|
333 |
#: includes/class-cntctfrm-settings.php:1281
|
334 |
-
#: includes/class-cntctfrm-settings.php:1283
|
335 |
msgid "Use shortcode"
|
336 |
msgstr "Используйте шорткод"
|
337 |
|
338 |
# @ contact_form
|
339 |
-
#: contact_form.php:
|
|
|
340 |
#: includes/class-cntctfrm-settings.php:1191
|
341 |
-
#: includes/class-cntctfrm-settings.php:
|
342 |
#: includes/class-cntctfrm-settings.php:1231
|
343 |
-
#: includes/class-cntctfrm-settings.php:
|
344 |
#: includes/class-cntctfrm-settings.php:1267
|
345 |
-
#: includes/class-cntctfrm-settings.php:
|
346 |
#: includes/class-cntctfrm-settings.php:1281
|
347 |
-
#: includes/class-cntctfrm-settings.php:1283
|
348 |
msgid "for this language"
|
349 |
msgstr "для данного языка"
|
350 |
|
351 |
-
#: contact_form.php:
|
352 |
msgid "Close notice"
|
353 |
msgstr "Закрыть"
|
354 |
|
355 |
# @ contact_form
|
356 |
-
#: contact_form.php:
|
357 |
msgid "allows to store your messages to the database."
|
358 |
msgstr "позволяет хранить ваши сообщения в базе данных."
|
359 |
|
360 |
# @ contact_form
|
361 |
-
#: contact_form.php:
|
362 |
msgid "Manage messages that have been sent from your website."
|
363 |
msgstr "Управление сообщениями, которые были отправлены с вашего сайта."
|
364 |
|
365 |
# @ contact_form
|
366 |
-
#: contact_form.php:
|
367 |
msgid "Learn More"
|
368 |
msgstr "Подробнее"
|
369 |
|
370 |
# @ contact_form
|
371 |
-
#: contact_form.php:
|
372 |
msgid "Contact form"
|
373 |
msgstr "Контактная форма"
|
374 |
|
375 |
# @ contact_form
|
376 |
-
#: contact_form.php:
|
377 |
msgid "Language"
|
378 |
msgstr "Язык"
|
379 |
|
380 |
#: includes/class-cntctfrm-settings.php:26
|
381 |
-
#: includes/class-cntctfrm-settings.php:
|
382 |
msgid "Additional Settings"
|
383 |
msgstr "Дополнительные настройки"
|
384 |
|
385 |
#: includes/class-cntctfrm-settings.php:27
|
386 |
-
#: includes/class-cntctfrm-settings.php:
|
387 |
msgid "Appearance"
|
388 |
msgstr "Отображение"
|
389 |
|
@@ -392,18 +392,18 @@ msgid "Misc"
|
|
392 |
msgstr "Разное"
|
393 |
|
394 |
#: includes/class-cntctfrm-settings.php:29
|
395 |
-
msgid "License Key"
|
396 |
-
msgstr "Лицензионный ключ"
|
397 |
-
|
398 |
-
#: includes/class-cntctfrm-settings.php:30
|
399 |
msgid "Custom Code"
|
400 |
msgstr "Пользовательский код"
|
401 |
|
402 |
-
#: includes/class-cntctfrm-settings.php:
|
|
|
|
|
|
|
|
|
403 |
msgid "Please enable JavaScript in your browser."
|
404 |
msgstr "Пожалуйста, включите JavaScript в вашем браузере."
|
405 |
|
406 |
-
#: includes/class-cntctfrm-settings.php:
|
407 |
#, php-format
|
408 |
msgid ""
|
409 |
"Contact Form plugin requires PHP %s or higher. Please contact your hosting "
|
@@ -412,16 +412,16 @@ msgstr ""
|
|
412 |
"Для плагина Contact Form требуется PHP % s или выше. Пожалуйста, свяжитесь с "
|
413 |
"вашим хостинг-провайдером, чтобы обновить версию PHP."
|
414 |
|
415 |
-
#: includes/class-cntctfrm-settings.php:
|
416 |
msgid ""
|
417 |
"Email 'FROM' field option was changed, which may cause email messages being "
|
418 |
"moved to the spam folder or email delivery failures."
|
419 |
msgstr ""
|
420 |
"Настройка для поля email \"От\" была изменена, что может приводить к тому, "
|
421 |
-
"что письма будут попадать в спам или не будут
|
422 |
|
423 |
# @ contact_form
|
424 |
-
#: includes/class-cntctfrm-settings.php:
|
425 |
msgid ""
|
426 |
"If the 'Redirect to page' option is selected then the URL field should be in "
|
427 |
"the following format"
|
@@ -430,33 +430,33 @@ msgstr ""
|
|
430 |
"в следующем формате"
|
431 |
|
432 |
# @ contact_form
|
433 |
-
#: includes/class-cntctfrm-settings.php:
|
434 |
msgid "Such user does not exist."
|
435 |
msgstr "Данный пользователь не найден."
|
436 |
|
437 |
# @ contact_form
|
438 |
-
#: includes/class-cntctfrm-settings.php:
|
439 |
msgid ""
|
440 |
"Please enter a valid email address in the 'Use this email address' field."
|
441 |
msgstr "Пожалуйста, введите корректный email в поле 'Использовать этот email'."
|
442 |
|
443 |
# @ contact_form
|
444 |
-
#: includes/class-cntctfrm-settings.php:
|
445 |
msgid "Please enter a valid email address in the 'FROM' field."
|
446 |
msgstr "Пожалуйста, введите корректный email для поля \"От\"."
|
447 |
|
448 |
# @ contact_form
|
449 |
-
#: includes/class-cntctfrm-settings.php:
|
450 |
msgid "Settings saved."
|
451 |
-
msgstr "Настройки
|
452 |
|
453 |
# @ contact_form
|
454 |
-
#: includes/class-cntctfrm-settings.php:
|
455 |
msgid "Settings are not saved."
|
456 |
msgstr "Настройки не сохранены."
|
457 |
|
458 |
# @ contact_form
|
459 |
-
#: includes/class-cntctfrm-settings.php:
|
460 |
msgid ""
|
461 |
"If you leave the fields empty, the messages will be sent to the email "
|
462 |
"address specified during registration."
|
@@ -465,17 +465,17 @@ msgstr ""
|
|
465 |
"email, который был указан при регистрации сайта."
|
466 |
|
467 |
# @ contact_form
|
468 |
-
#: includes/class-cntctfrm-settings.php:
|
469 |
msgid "The user's email address"
|
470 |
msgstr "Email пользователя сайта"
|
471 |
|
472 |
# @ contact_form
|
473 |
-
#: includes/class-cntctfrm-settings.php:
|
474 |
msgid "Select a username"
|
475 |
msgstr "Выберите имя пользователя"
|
476 |
|
477 |
# @ contact_form
|
478 |
-
#: includes/class-cntctfrm-settings.php:
|
479 |
msgid ""
|
480 |
"Select a username of the person who should get the messages from the contact "
|
481 |
"form."
|
@@ -484,98 +484,98 @@ msgstr ""
|
|
484 |
"формы."
|
485 |
|
486 |
# @ contact_form
|
487 |
-
#: includes/class-cntctfrm-settings.php:
|
488 |
msgid "Use this email address"
|
489 |
msgstr "Использовать этот email"
|
490 |
|
491 |
# @ contact_form
|
492 |
-
#: includes/class-cntctfrm-settings.php:
|
493 |
msgid "Enter the email address for receiving messages"
|
494 |
msgstr "Укажите email, на который будут отправляться сообщения"
|
495 |
|
496 |
# @ contact_form
|
497 |
-
#: includes/class-cntctfrm-settings.php:
|
498 |
msgid "Add department selectbox to the contact form"
|
499 |
msgstr "Добавить выбор отдела в контактную форму"
|
500 |
|
501 |
# @ contact_form
|
502 |
-
#: includes/class-cntctfrm-settings.php:
|
503 |
msgid "Save emails to the database"
|
504 |
msgstr "Сохранять email в базу данных"
|
505 |
|
506 |
# @ contact_form
|
507 |
-
#: includes/class-cntctfrm-settings.php:
|
508 |
-
#: includes/class-cntctfrm-settings.php:
|
509 |
-
#: includes/class-cntctfrm-settings.php:
|
510 |
msgid "Using"
|
511 |
msgstr "Используя"
|
512 |
|
513 |
-
#: includes/class-cntctfrm-settings.php:
|
514 |
-
#: includes/class-cntctfrm-settings.php:
|
515 |
-
#: includes/class-cntctfrm-settings.php:
|
516 |
-
#: includes/class-cntctfrm-settings.php:
|
517 |
msgid "Please activate the appropriate option on"
|
518 |
msgstr "Пожалуйста, активируйте соответствующую опцию на странице настроек"
|
519 |
|
520 |
# @ contact_form
|
521 |
-
#: includes/class-cntctfrm-settings.php:
|
522 |
-
#: includes/class-cntctfrm-settings.php:
|
523 |
-
#: includes/class-cntctfrm-settings.php:
|
524 |
-
#: includes/class-cntctfrm-settings.php:
|
525 |
msgid "settings page"
|
526 |
-
msgstr " "
|
527 |
|
528 |
# @ contact_form
|
529 |
-
#: includes/class-cntctfrm-settings.php:
|
530 |
-
#: includes/class-cntctfrm-settings.php:
|
531 |
-
#: includes/class-cntctfrm-settings.php:
|
532 |
-
#: includes/class-cntctfrm-settings.php:
|
533 |
msgid "Activate"
|
534 |
msgstr "Активировать"
|
535 |
|
536 |
# @ contact_form
|
537 |
-
#: includes/class-cntctfrm-settings.php:
|
538 |
-
#: includes/class-cntctfrm-settings.php:
|
539 |
-
#: includes/class-cntctfrm-settings.php:
|
540 |
-
#: includes/class-cntctfrm-settings.php:
|
541 |
msgid "Download"
|
542 |
msgstr "Скачать"
|
543 |
|
544 |
-
#: includes/class-cntctfrm-settings.php:
|
545 |
msgid "Sending method"
|
546 |
msgstr "Метод отправки"
|
547 |
|
548 |
# @ contact_form
|
549 |
-
#: includes/class-cntctfrm-settings.php:
|
550 |
msgid "Wp-mail"
|
551 |
msgstr "Wp-mail"
|
552 |
|
553 |
# @ contact_form
|
554 |
-
#: includes/class-cntctfrm-settings.php:
|
555 |
msgid "You can use the Wordpress wp_mail function for mailing"
|
556 |
msgstr "Для отправки почты вы можете использовать Wordpress функцию wp_mail"
|
557 |
|
558 |
# @ contact_form
|
559 |
-
#: includes/class-cntctfrm-settings.php:
|
560 |
msgid "Mail"
|
561 |
msgstr "Mail"
|
562 |
|
563 |
# @ contact_form
|
564 |
-
#: includes/class-cntctfrm-settings.php:
|
565 |
msgid "You can use the PHP mail function for mailing"
|
566 |
msgstr "Для отправки почты вы можете использовать PHP функцию mail"
|
567 |
|
568 |
-
#: includes/class-cntctfrm-settings.php:
|
569 |
msgid "'FROM' field"
|
570 |
msgstr "Поле \"От\""
|
571 |
|
572 |
# @ contact_form
|
573 |
-
#: includes/class-cntctfrm-settings.php:
|
574 |
msgid "User name"
|
575 |
msgstr "Имя пользователя"
|
576 |
|
577 |
# @ contact_form
|
578 |
-
#: includes/class-cntctfrm-settings.php:
|
579 |
msgid ""
|
580 |
"The name of the user who fills the form will be used in the field 'From'."
|
581 |
msgstr ""
|
@@ -583,12 +583,12 @@ msgstr ""
|
|
583 |
"заполняет форму."
|
584 |
|
585 |
# @ contact_form
|
586 |
-
#: includes/class-cntctfrm-settings.php:
|
587 |
msgid "User email"
|
588 |
msgstr "Email пользователя"
|
589 |
|
590 |
# @ contact_form
|
591 |
-
#: includes/class-cntctfrm-settings.php:
|
592 |
msgid ""
|
593 |
"The email address of the user who fills the form will be used in the field "
|
594 |
"'From'."
|
@@ -596,7 +596,7 @@ msgstr ""
|
|
596 |
"В поле \"От\" в письме будет использоваться email того пользователя, который "
|
597 |
"заполняет форму."
|
598 |
|
599 |
-
#: includes/class-cntctfrm-settings.php:
|
600 |
msgid ""
|
601 |
"If this option is changed, email messages may be moved to the spam folder or "
|
602 |
"email delivery failures may occur."
|
@@ -605,85 +605,85 @@ msgstr ""
|
|
605 |
"будут попадать в спам или не будут доставлены."
|
606 |
|
607 |
# @ contact_form
|
608 |
-
#: includes/class-cntctfrm-settings.php:
|
609 |
msgid "Required symbol"
|
610 |
msgstr "Символ, отображающий обязательное поле"
|
611 |
|
612 |
# @ contact_form
|
613 |
-
#: includes/class-cntctfrm-settings.php:
|
614 |
msgid "Fields"
|
615 |
msgstr "Поля"
|
616 |
|
617 |
# @ contact_form
|
618 |
-
#: includes/class-cntctfrm-settings.php:
|
619 |
-
#: includes/class-cntctfrm-settings.php:
|
620 |
-
#: includes/class-cntctfrm-settings.php:
|
621 |
-
#: includes/class-cntctfrm-settings.php:
|
622 |
-
#: includes/class-cntctfrm-settings.php:
|
623 |
-
#: includes/class-cntctfrm-settings.php:
|
624 |
-
#: includes/class-cntctfrm-settings.php:
|
625 |
-
#: includes/class-cntctfrm-settings.php:
|
626 |
-
#: includes/class-cntctfrm-settings.php:
|
627 |
-
#: includes/class-cntctfrm-settings.php:
|
628 |
-
#: includes/class-cntctfrm-settings.php:
|
629 |
msgid "Used"
|
630 |
msgstr "Используется"
|
631 |
|
632 |
# @ contact_form
|
633 |
-
#: includes/class-cntctfrm-settings.php:
|
634 |
-
#: includes/class-cntctfrm-settings.php:
|
635 |
-
#: includes/class-cntctfrm-settings.php:
|
636 |
-
#: includes/class-cntctfrm-settings.php:
|
637 |
-
#: includes/class-cntctfrm-settings.php:
|
638 |
-
#: includes/class-cntctfrm-settings.php:
|
639 |
-
#: includes/class-cntctfrm-settings.php:
|
640 |
-
#: includes/class-cntctfrm-settings.php:
|
641 |
-
#: includes/class-cntctfrm-settings.php:
|
642 |
-
#: includes/class-cntctfrm-settings.php:
|
643 |
msgid "Required"
|
644 |
msgstr "Обязательное"
|
645 |
|
646 |
# @ contact_form
|
647 |
-
#: includes/class-cntctfrm-settings.php:
|
648 |
-
#: includes/class-cntctfrm-settings.php:
|
649 |
-
#: includes/class-cntctfrm-settings.php:
|
650 |
-
#: includes/class-cntctfrm-settings.php:
|
651 |
-
#: includes/class-cntctfrm-settings.php:
|
652 |
-
#: includes/class-cntctfrm-settings.php:
|
653 |
msgid "Visible"
|
654 |
msgstr "Видимое"
|
655 |
|
656 |
# @ contact_form
|
657 |
-
#: includes/class-cntctfrm-settings.php:
|
658 |
-
#: includes/class-cntctfrm-settings.php:
|
659 |
-
#: includes/class-cntctfrm-settings.php:
|
660 |
-
#: includes/class-cntctfrm-settings.php:
|
661 |
-
#: includes/class-cntctfrm-settings.php:
|
662 |
-
#: includes/class-cntctfrm-settings.php:
|
663 |
msgid "Disabled for editing"
|
664 |
msgstr "Нет возможности редактировать"
|
665 |
|
666 |
# @ contact_form
|
667 |
-
#: includes/class-cntctfrm-settings.php:
|
668 |
-
#: includes/class-cntctfrm-settings.php:
|
669 |
-
#: includes/class-cntctfrm-settings.php:
|
670 |
-
#: includes/class-cntctfrm-settings.php:
|
671 |
msgid "Field's default value"
|
672 |
msgstr "Значение полей по умолчанию"
|
673 |
|
674 |
# @ contact_form
|
675 |
-
#: includes/class-cntctfrm-settings.php:
|
676 |
msgid "Department selectbox"
|
677 |
msgstr "Список отделов"
|
678 |
|
679 |
-
#: includes/class-cntctfrm-settings.php:
|
680 |
msgid "Use User's name as a default value if the user is logged in."
|
681 |
msgstr ""
|
682 |
"Использовать имя Пользователя как значение по умолчанию, если пользователь "
|
683 |
"залогинен."
|
684 |
|
685 |
-
#: includes/class-cntctfrm-settings.php:
|
686 |
-
#: includes/class-cntctfrm-settings.php:
|
687 |
msgid ""
|
688 |
"'Visible' and 'Disabled for editing' options will be applied only to logged-"
|
689 |
"in users."
|
@@ -692,140 +692,140 @@ msgstr ""
|
|
692 |
"к залогиненным пользователям."
|
693 |
|
694 |
# @ contact_form
|
695 |
-
#: includes/class-cntctfrm-settings.php:
|
696 |
msgid "Location selectbox"
|
697 |
msgstr "Список местоположений"
|
698 |
|
699 |
-
#: includes/class-cntctfrm-settings.php:
|
700 |
msgid "Use User's email as a default value if the user is logged in."
|
701 |
msgstr ""
|
702 |
"Использовать Email Пользователя как значение по умолчанию, если пользователь "
|
703 |
"залогинен."
|
704 |
|
705 |
# @ contact_form
|
706 |
-
#: includes/class-cntctfrm-settings.php:
|
707 |
msgid "Attachment block"
|
708 |
msgstr "Прикрепить файл"
|
709 |
|
710 |
# @ contact_form
|
711 |
-
#: includes/class-cntctfrm-settings.php:
|
712 |
msgid "Users can attach the following file formats"
|
713 |
msgstr "Пользователи могут прикрепить файлы таких типов"
|
714 |
|
715 |
-
#: includes/class-cntctfrm-settings.php:
|
716 |
msgid "Multi-attachment"
|
717 |
msgstr "Прикрепить несколько файлов"
|
718 |
|
719 |
-
#: includes/class-cntctfrm-settings.php:
|
720 |
msgid "Enable to multiple file selection"
|
721 |
msgstr "Включите, чтобы позволить прикреплять несколько файлов"
|
722 |
|
723 |
-
#: includes/class-cntctfrm-settings.php:
|
724 |
msgid "Title"
|
725 |
msgstr "Название"
|
726 |
|
727 |
# @ contact_form
|
728 |
-
#: includes/class-cntctfrm-settings.php:
|
729 |
msgid "Field Type"
|
730 |
msgstr "Тип поля"
|
731 |
|
732 |
# @ contact_form
|
733 |
-
#: includes/class-cntctfrm-settings.php:
|
734 |
msgid "Field's default/available value"
|
735 |
msgstr "Значение полей по умолчанию"
|
736 |
|
737 |
-
#: includes/class-cntctfrm-settings.php:
|
738 |
msgid "Create Field"
|
739 |
msgstr "Создать поле"
|
740 |
|
741 |
# @ contact_form
|
742 |
-
#: includes/class-cntctfrm-settings.php:
|
743 |
msgid "If you upgrade to Pro version all your settings will be saved."
|
744 |
msgstr "При установке Pro версии все ваши настройки сохраняются."
|
745 |
|
746 |
# @ contact_form
|
747 |
-
#: includes/class-cntctfrm-settings.php:
|
748 |
msgid "Add to the form"
|
749 |
msgstr "Добавить в форму"
|
750 |
|
751 |
# @ contact_form
|
752 |
-
#: includes/class-cntctfrm-settings.php:
|
753 |
msgid "Tips below the Attachment"
|
754 |
msgstr "Пояснения после блока \"Прикрепить файл\""
|
755 |
|
756 |
# @ contact_form
|
757 |
-
#: includes/class-cntctfrm-settings.php:
|
758 |
msgid "'Send me a copy' block"
|
759 |
msgstr "Блок \"Отправить мне копию\""
|
760 |
|
761 |
-
#: includes/class-cntctfrm-settings.php:
|
762 |
msgid "GDPR Compliance"
|
763 |
msgstr "Согласие с GDPR"
|
764 |
|
765 |
-
#: includes/class-cntctfrm-settings.php:
|
766 |
msgid "Link to Privacy Policy Page"
|
767 |
msgstr "Ссылка на страницу политики конфиденциальности"
|
768 |
|
769 |
-
#: includes/class-cntctfrm-settings.php:
|
770 |
msgid "Activate for network"
|
771 |
msgstr "Активировать для сети"
|
772 |
|
773 |
# @ contact_form
|
774 |
-
#: includes/class-cntctfrm-settings.php:
|
775 |
msgid "Agreement checkbox"
|
776 |
msgstr "Чекбокс согласия с условиями"
|
777 |
|
778 |
# @ contact_form
|
779 |
-
#: includes/class-cntctfrm-settings.php:
|
780 |
msgid "Required checkbox for submitting the form"
|
781 |
msgstr "Обязательный чекбокс для отправки формы"
|
782 |
|
783 |
# @ contact_form
|
784 |
-
#: includes/class-cntctfrm-settings.php:
|
785 |
msgid "Optional checkbox"
|
786 |
msgstr "Дополнительный чекбокс"
|
787 |
|
788 |
# @ contact_form
|
789 |
-
#: includes/class-cntctfrm-settings.php:
|
790 |
msgid "Optional checkbox, the results of which will be displayed in email"
|
791 |
msgstr "Дополнительный чекбокс, результаты которого будут отображены в email"
|
792 |
|
793 |
# @ contact_form
|
794 |
-
#: includes/class-cntctfrm-settings.php:
|
795 |
msgid "Delete an attachment file from the server after the email is sent"
|
796 |
msgstr "Удалить прикрепленный файл с сервера после отправки email"
|
797 |
|
798 |
# @ contact_form
|
799 |
-
#: includes/class-cntctfrm-settings.php:
|
800 |
msgid "Email in HTML format sending"
|
801 |
msgstr "Отправка еmail в формате HTML"
|
802 |
|
803 |
# @ contact_form
|
804 |
-
#: includes/class-cntctfrm-settings.php:
|
805 |
msgid "Display additional info in the email"
|
806 |
msgstr "Отображение дополнительной информации в письме"
|
807 |
|
808 |
# @ contact_form
|
809 |
-
#: includes/class-cntctfrm-settings.php:
|
810 |
msgid "Sent from (IP address)"
|
811 |
msgstr "Отправлено от (IP адрес)"
|
812 |
|
813 |
-
#: includes/class-cntctfrm-settings.php:
|
814 |
msgid "Example: Sent from (IP address): 127.0.0.1"
|
815 |
msgstr "Пример: Отправлено от (IP адрес): 127.0.0.1"
|
816 |
|
817 |
-
#: includes/class-cntctfrm-settings.php:
|
818 |
msgid "Example: Date/Time: August 19, 2013 8:50 pm"
|
819 |
msgstr "Пример: Дата/Время: 19 Августа, 2013 20:50"
|
820 |
|
821 |
-
#: includes/class-cntctfrm-settings.php:
|
822 |
msgid ""
|
823 |
"Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
|
824 |
msgstr ""
|
825 |
"Пример: Отправлено от (referer): https://bestwebsoft.com/contacts/contact-"
|
826 |
"us/"
|
827 |
|
828 |
-
#: includes/class-cntctfrm-settings.php:
|
829 |
msgid ""
|
830 |
"Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
|
831 |
"AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
|
@@ -834,147 +834,147 @@ msgstr ""
|
|
834 |
"AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
|
835 |
|
836 |
# @ contact_form
|
837 |
-
#: includes/class-cntctfrm-settings.php:
|
838 |
msgid "Language settings for the field names in the form"
|
839 |
msgstr "Языковые настройки для имён полей в форме"
|
840 |
|
841 |
# @ contact_form
|
842 |
-
#: includes/class-cntctfrm-settings.php:
|
843 |
msgid "Add a language"
|
844 |
msgstr "Добавить язык"
|
845 |
|
846 |
# @ contact_form
|
847 |
-
#: includes/class-cntctfrm-settings.php:
|
848 |
msgid "Change the names of the contact form fields and error messages"
|
849 |
msgstr "Изменить имена полей контактной формы и сообщений об ошибках"
|
850 |
|
851 |
# @ contact_form
|
852 |
-
#: includes/class-cntctfrm-settings.php:
|
853 |
-
#: includes/class-cntctfrm-settings.php:
|
854 |
-
#: includes/class-cntctfrm-settings.php:
|
855 |
msgid "Default"
|
856 |
msgstr "По умолчанию"
|
857 |
|
858 |
# @ contact_form
|
859 |
-
#: includes/class-cntctfrm-settings.php:
|
860 |
-
#: includes/class-cntctfrm-settings.php:
|
861 |
msgid "click to expand/hide the list"
|
862 |
msgstr "нажмите чтобы развернуть/свернуть список"
|
863 |
|
864 |
# @ contact_form
|
865 |
-
#: includes/class-cntctfrm-settings.php:
|
866 |
-
#: includes/class-cntctfrm-settings.php:
|
867 |
msgid "Tips below the Attachment block"
|
868 |
msgstr "Пояснения после блока \"Прикрепить файл\""
|
869 |
|
870 |
# @ contact_form
|
871 |
-
#: includes/class-cntctfrm-settings.php:
|
872 |
-
#: includes/class-cntctfrm-settings.php:
|
873 |
msgid "Error message for the Name field"
|
874 |
msgstr "Сообщение об ошибке для поля Имя"
|
875 |
|
876 |
# @ contact_form
|
877 |
-
#: includes/class-cntctfrm-settings.php:
|
878 |
-
#: includes/class-cntctfrm-settings.php:
|
879 |
msgid "Error message for the Address field"
|
880 |
msgstr "Сообщение об ошибке для поля Адрес"
|
881 |
|
882 |
# @ contact_form
|
883 |
-
#: includes/class-cntctfrm-settings.php:
|
884 |
-
#: includes/class-cntctfrm-settings.php:
|
885 |
msgid "Error message for the Email field"
|
886 |
msgstr "Сообщение об ошибке для поля Email"
|
887 |
|
888 |
# @ contact_form
|
889 |
-
#: includes/class-cntctfrm-settings.php:
|
890 |
-
#: includes/class-cntctfrm-settings.php:
|
891 |
msgid "Error message for the Phone field"
|
892 |
msgstr "Сообщение об ошибке для поля Телефон"
|
893 |
|
894 |
# @ contact_form
|
895 |
-
#: includes/class-cntctfrm-settings.php:
|
896 |
-
#: includes/class-cntctfrm-settings.php:
|
897 |
msgid "Error message for the Subject field"
|
898 |
msgstr "Сообщение об ошибке для поля Тема"
|
899 |
|
900 |
# @ contact_form
|
901 |
-
#: includes/class-cntctfrm-settings.php:
|
902 |
-
#: includes/class-cntctfrm-settings.php:
|
903 |
msgid "Error message for the Message field"
|
904 |
msgstr "Сообщение об ошибке для поля Сообщение"
|
905 |
|
906 |
# @ contact_form
|
907 |
-
#: includes/class-cntctfrm-settings.php:
|
908 |
-
#: includes/class-cntctfrm-settings.php:
|
909 |
msgid "Error message about the file type for the Attachment field"
|
910 |
msgstr "Сообщение об ошибке о типе файла для поля \"Прикрепить файл\""
|
911 |
|
912 |
# @ contact_form
|
913 |
-
#: includes/class-cntctfrm-settings.php:
|
914 |
-
#: includes/class-cntctfrm-settings.php:
|
915 |
msgid ""
|
916 |
"Error message while uploading a file for the Attachment field to the server"
|
917 |
msgstr ""
|
918 |
"Сообщение об ошибке при загрузке файла на сервер для поля \"Прикрепить файл\""
|
919 |
|
920 |
# @ contact_form
|
921 |
-
#: includes/class-cntctfrm-settings.php:
|
922 |
-
#: includes/class-cntctfrm-settings.php:
|
923 |
msgid "Error message while moving the file for the Attachment field"
|
924 |
msgstr "Сообщение об ошибке при перемещении файла для поля \"Прикрепить файл\""
|
925 |
|
926 |
# @ contact_form
|
927 |
-
#: includes/class-cntctfrm-settings.php:
|
928 |
-
#: includes/class-cntctfrm-settings.php:
|
929 |
msgid "Error message when file size limit for the Attachment field is exceeded"
|
930 |
msgstr ""
|
931 |
"Сообщение об ошибке, когда размер файла превышает размер разрешенного "
|
932 |
"сервером для поля \"Прикрепить файл\""
|
933 |
|
934 |
# @ contact_form
|
935 |
-
#: includes/class-cntctfrm-settings.php:
|
936 |
-
#: includes/class-cntctfrm-settings.php:
|
937 |
msgid "Error message for the Captcha field"
|
938 |
msgstr "Сообщение об ошибке для поля Captcha"
|
939 |
|
940 |
# @ contact_form
|
941 |
-
#: includes/class-cntctfrm-settings.php:
|
942 |
-
#: includes/class-cntctfrm-settings.php:
|
943 |
msgid "Error message for the whole form"
|
944 |
msgstr "Сообщение об ошибке для всей формы"
|
945 |
|
946 |
# @ contact_form
|
947 |
-
#: includes/class-cntctfrm-settings.php:
|
948 |
msgid "Use the changed names of the contact form fields in the email"
|
949 |
msgstr "Использовать измененные имена полей контактной формы в email"
|
950 |
|
951 |
# @ contact_form
|
952 |
-
#: includes/class-cntctfrm-settings.php:
|
953 |
msgid "Action after email is sent"
|
954 |
msgstr "Действие после отправки письма"
|
955 |
|
956 |
# @ contact_form
|
957 |
-
#: includes/class-cntctfrm-settings.php:
|
958 |
msgid "Display text"
|
959 |
msgstr "Отобразить текст"
|
960 |
|
961 |
# @ contact_form
|
962 |
-
#: includes/class-cntctfrm-settings.php:
|
963 |
-
#: includes/class-cntctfrm-settings.php:
|
964 |
msgid "Text"
|
965 |
msgstr "Текст"
|
966 |
|
967 |
# @ contact_form
|
968 |
-
#: includes/class-cntctfrm-settings.php:
|
969 |
msgid "Redirect to the page"
|
970 |
msgstr "Перенаправление на страницу"
|
971 |
|
972 |
# @ contact_form
|
973 |
-
#: includes/class-cntctfrm-settings.php:
|
974 |
msgid "Url"
|
975 |
msgstr "Ссылка"
|
976 |
|
977 |
-
#: includes/class-cntctfrm-settings.php:
|
978 |
#, php-format
|
979 |
msgid ""
|
980 |
"Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
|
@@ -983,237 +983,237 @@ msgstr ""
|
|
983 |
"Пожалуйста включите JavaScript, чтобы изменить опции '%s', '%s', '%s', '%s' "
|
984 |
"и для сортировки полей."
|
985 |
|
986 |
-
#: includes/class-cntctfrm-settings.php:
|
987 |
-
#: includes/class-cntctfrm-settings.php:
|
988 |
msgid "Form layout"
|
989 |
msgstr "Шаблон формы"
|
990 |
|
991 |
# @ contact_form
|
992 |
-
#: includes/class-cntctfrm-settings.php:
|
993 |
-
#: includes/class-cntctfrm-settings.php:
|
994 |
msgid "Labels position"
|
995 |
msgstr "Расположение имен полей"
|
996 |
|
997 |
-
#: includes/class-cntctfrm-settings.php:
|
998 |
-
#: includes/class-cntctfrm-settings.php:
|
999 |
msgid "Labels align"
|
1000 |
msgstr "Выравнивание имен полей"
|
1001 |
|
1002 |
# @ contact_form
|
1003 |
-
#: includes/class-cntctfrm-settings.php:
|
1004 |
-
#: includes/class-cntctfrm-settings.php:
|
1005 |
msgid "Submit position"
|
1006 |
msgstr "Позиция кнопки 'Отправить'"
|
1007 |
|
1008 |
# @ contact_form
|
1009 |
-
#: includes/class-cntctfrm-settings.php:
|
1010 |
-
#: includes/class-cntctfrm-settings.php:
|
1011 |
msgid "Add tooltips"
|
1012 |
msgstr "Добавить подсказки"
|
1013 |
|
1014 |
# @ contact_form
|
1015 |
-
#: includes/class-cntctfrm-settings.php:
|
1016 |
-
#: includes/class-cntctfrm-settings.php:
|
1017 |
msgid "Style options"
|
1018 |
msgstr "Настройки стиля"
|
1019 |
|
1020 |
-
#: includes/class-cntctfrm-settings.php:
|
1021 |
msgid "One column"
|
1022 |
msgstr "Одна колонка"
|
1023 |
|
1024 |
-
#: includes/class-cntctfrm-settings.php:
|
1025 |
msgid "Two columns"
|
1026 |
msgstr "Две колонки"
|
1027 |
|
1028 |
-
#: includes/class-cntctfrm-settings.php:
|
1029 |
-
#: includes/class-cntctfrm-settings.php:
|
1030 |
-
#: includes/class-cntctfrm-settings.php:
|
1031 |
-
#: includes/class-cntctfrm-settings.php:
|
1032 |
msgid "Left"
|
1033 |
msgstr "Слева"
|
1034 |
|
1035 |
-
#: includes/class-cntctfrm-settings.php:
|
1036 |
-
#: includes/class-cntctfrm-settings.php:
|
1037 |
-
#: includes/class-cntctfrm-settings.php:
|
1038 |
-
#: includes/class-cntctfrm-settings.php:
|
1039 |
msgid "Right"
|
1040 |
msgstr "Справа"
|
1041 |
|
1042 |
-
#: includes/class-cntctfrm-settings.php:
|
1043 |
msgid "Width"
|
1044 |
msgstr "Ширина"
|
1045 |
|
1046 |
-
#: includes/class-cntctfrm-settings.php:
|
1047 |
msgid "Custom"
|
1048 |
msgstr "Пользовательская"
|
1049 |
|
1050 |
-
#: includes/class-cntctfrm-settings.php:
|
1051 |
msgid "px"
|
1052 |
msgstr "пикс"
|
1053 |
|
1054 |
-
#: includes/class-cntctfrm-settings.php:
|
1055 |
msgid "Form align"
|
1056 |
msgstr "Выравнивание формы"
|
1057 |
|
1058 |
-
#: includes/class-cntctfrm-settings.php:
|
1059 |
-
#: includes/class-cntctfrm-settings.php:
|
1060 |
msgid "Center"
|
1061 |
msgstr "По центру"
|
1062 |
|
1063 |
-
#: includes/class-cntctfrm-settings.php:
|
1064 |
msgid "Top"
|
1065 |
msgstr "Сверху"
|
1066 |
|
1067 |
-
#: includes/class-cntctfrm-settings.php:
|
1068 |
msgid "Bottom"
|
1069 |
msgstr "Снизу"
|
1070 |
|
1071 |
# @ contact_form
|
1072 |
-
#: includes/class-cntctfrm-settings.php:
|
1073 |
msgid "Errors output"
|
1074 |
msgstr "Отображение ошибок"
|
1075 |
|
1076 |
# @ contact_form
|
1077 |
-
#: includes/class-cntctfrm-settings.php:
|
1078 |
msgid "Display error messages"
|
1079 |
msgstr "Отображать сообщения об ошибках"
|
1080 |
|
1081 |
# @ contact_form
|
1082 |
-
#: includes/class-cntctfrm-settings.php:
|
1083 |
msgid "Color of the input field errors."
|
1084 |
msgstr "Отображать ошибки цветом для полей ввода."
|
1085 |
|
1086 |
# @ contact_form
|
1087 |
-
#: includes/class-cntctfrm-settings.php:
|
1088 |
msgid "Display error messages & color of the input field errors"
|
1089 |
msgstr "Отображать сообщения об ошибках и цвет полей ввода с ошибками"
|
1090 |
|
1091 |
# @ contact_form
|
1092 |
-
#: includes/class-cntctfrm-settings.php:
|
1093 |
msgid "Add placeholder to the input blocks"
|
1094 |
msgstr "Добавить вспомогательный текст в поля ввода"
|
1095 |
|
1096 |
# @ contact_form
|
1097 |
-
#: includes/class-cntctfrm-settings.php:
|
1098 |
msgid "Email address"
|
1099 |
msgstr "Email"
|
1100 |
|
1101 |
# @ contact_form
|
1102 |
-
#: includes/class-cntctfrm-settings.php:
|
1103 |
msgid "Text color"
|
1104 |
msgstr "Цвет текста"
|
1105 |
|
1106 |
# @ contact_form
|
1107 |
-
#: includes/class-cntctfrm-settings.php:
|
1108 |
-
#: includes/class-cntctfrm-settings.php:
|
1109 |
-
#: includes/class-cntctfrm-settings.php:
|
1110 |
-
#: includes/class-cntctfrm-settings.php:
|
1111 |
-
#: includes/class-cntctfrm-settings.php:
|
1112 |
-
#: includes/class-cntctfrm-settings.php:
|
1113 |
-
#: includes/class-cntctfrm-settings.php:
|
1114 |
-
#: includes/class-cntctfrm-settings.php:
|
1115 |
-
#: includes/class-cntctfrm-settings.php:
|
1116 |
-
#: includes/class-cntctfrm-settings.php:
|
1117 |
-
#: includes/class-cntctfrm-settings.php:
|
1118 |
-
#: includes/class-cntctfrm-settings.php:
|
1119 |
msgid "Select Color"
|
1120 |
msgstr "Выбрать цвет"
|
1121 |
|
1122 |
# @ contact_form
|
1123 |
-
#: includes/class-cntctfrm-settings.php:
|
1124 |
msgid "Label text color"
|
1125 |
msgstr "Цвет текста"
|
1126 |
|
1127 |
# @ contact_form
|
1128 |
-
#: includes/class-cntctfrm-settings.php:
|
1129 |
msgid "Placeholder color"
|
1130 |
msgstr "Цвет вспомогательного текста"
|
1131 |
|
1132 |
# @ contact_form
|
1133 |
-
#: includes/class-cntctfrm-settings.php:
|
1134 |
msgid "Errors color"
|
1135 |
msgstr "Цвет ошибок"
|
1136 |
|
1137 |
# @ contact_form
|
1138 |
-
#: includes/class-cntctfrm-settings.php:
|
1139 |
msgid "Error text color"
|
1140 |
msgstr "Цвет текста для ошибок"
|
1141 |
|
1142 |
# @ contact_form
|
1143 |
-
#: includes/class-cntctfrm-settings.php:
|
1144 |
msgid "Background color of the input field errors"
|
1145 |
msgstr "Цвет фона для полей ввода с ошибками"
|
1146 |
|
1147 |
# @ contact_form
|
1148 |
-
#: includes/class-cntctfrm-settings.php:
|
1149 |
msgid "Border color of the input field errors"
|
1150 |
msgstr "Цвет рамки для полей ввода с ошибками"
|
1151 |
|
1152 |
# @ contact_form
|
1153 |
-
#: includes/class-cntctfrm-settings.php:
|
1154 |
msgid "Placeholder color of the input field errors"
|
1155 |
msgstr "Цвет вспомогательного текста для полей ввода с ошибками"
|
1156 |
|
1157 |
# @ contact_form
|
1158 |
-
#: includes/class-cntctfrm-settings.php:
|
1159 |
msgid "Input fields"
|
1160 |
msgstr "Поля ввода"
|
1161 |
|
1162 |
# @ contact_form
|
1163 |
-
#: includes/class-cntctfrm-settings.php:
|
1164 |
msgid "Input fields background color"
|
1165 |
msgstr "Цвет фона для полей ввода"
|
1166 |
|
1167 |
# @ contact_form
|
1168 |
-
#: includes/class-cntctfrm-settings.php:
|
1169 |
msgid "Text fields color"
|
1170 |
msgstr "Цвет текста для полей ввода"
|
1171 |
|
1172 |
# @ contact_form
|
1173 |
-
#: includes/class-cntctfrm-settings.php:
|
1174 |
msgid "Border width in px, numbers only"
|
1175 |
msgstr "Ширина рамки в пикселях, только цифры"
|
1176 |
|
1177 |
# @ contact_form
|
1178 |
-
#: includes/class-cntctfrm-settings.php:
|
1179 |
-
#: includes/class-cntctfrm-settings.php:
|
1180 |
msgid "Border color"
|
1181 |
msgstr "Цвет рамки"
|
1182 |
|
1183 |
# @ contact_form
|
1184 |
-
#: includes/class-cntctfrm-settings.php:
|
1185 |
msgid "Submit button"
|
1186 |
msgstr "Кнопка Отправить"
|
1187 |
|
1188 |
# @ contact_form
|
1189 |
-
#: includes/class-cntctfrm-settings.php:
|
1190 |
msgid "Width in px, numbers only"
|
1191 |
msgstr "Ширина в пикселях, только цифры"
|
1192 |
|
1193 |
# @ contact_form
|
1194 |
-
#: includes/class-cntctfrm-settings.php:
|
1195 |
msgid "Button color"
|
1196 |
msgstr "Цвет кнопки"
|
1197 |
|
1198 |
# @ contact_form
|
1199 |
-
#: includes/class-cntctfrm-settings.php:
|
1200 |
msgid "Button text color"
|
1201 |
msgstr "Цвет текста для кнопки"
|
1202 |
|
1203 |
# @ contact_form
|
1204 |
-
#: includes/class-cntctfrm-settings.php:
|
1205 |
msgid "Contact Form | Preview"
|
1206 |
msgstr "Contact Form | Предпросмотр"
|
1207 |
|
1208 |
-
#: includes/class-cntctfrm-settings.php:
|
1209 |
msgid "Drag the necessary field to sort fields."
|
1210 |
msgstr "Перетащите необходимое поле для сортировки полей."
|
1211 |
|
1212 |
-
#: includes/class-cntctfrm-settings.php:
|
1213 |
msgid "Contact Form Shortcode"
|
1214 |
msgstr "Шорткод Contact Form"
|
1215 |
|
1216 |
-
#: includes/class-cntctfrm-settings.php:
|
1217 |
msgid "Add Contact Form to your page or post using the following shortcode:"
|
1218 |
msgstr ""
|
1219 |
"Добавьте Contact Form в свои записи или страницы, используя следующий "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contact Form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-06-24 14:19+0300\n"
|
6 |
+
"PO-Revision-Date: 2020-06-24 14:20+0300\n"
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
14 |
"%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
|
15 |
+
"X-Generator: Poedit 2.3.1\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
"X-Poedit-Basepath: ..\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: bws_menu\n"
|
22 |
|
23 |
# @ contact_form
|
24 |
+
#: contact_form.php:39 contact_form.php:47 contact_form.php:817
|
25 |
+
#: includes/class-cntctfrm-settings.php:425
|
26 |
msgid "Contact Form Settings"
|
27 |
msgstr "Настройки Contact Form"
|
28 |
|
29 |
# @ contact_form
|
30 |
+
#: contact_form.php:48 contact_form.php:1846 contact_form.php:1860
|
31 |
#: includes/class-cntctfrm-settings.php:25
|
32 |
msgid "Settings"
|
33 |
msgstr "Настройки"
|
34 |
|
35 |
+
#: contact_form.php:63 includes/class-cntctfrm-settings.php:483
|
36 |
+
#: includes/class-cntctfrm-settings.php:844
|
37 |
+
#: includes/class-cntctfrm-settings.php:937
|
38 |
+
#: includes/class-cntctfrm-settings.php:1094
|
39 |
+
#: includes/class-cntctfrm-settings.php:1619
|
40 |
msgid "Upgrade to Pro"
|
41 |
msgstr "Обновиться до Pro"
|
42 |
|
43 |
# @ contact_form
|
44 |
+
#: contact_form.php:516 contact_form.php:1621 contact_form.php:1667
|
45 |
+
#: includes/class-cntctfrm-settings.php:574
|
46 |
+
#: includes/class-cntctfrm-settings.php:667
|
47 |
+
#: includes/class-cntctfrm-settings.php:1163
|
48 |
+
#: includes/class-cntctfrm-settings.php:1203
|
49 |
+
#: includes/class-cntctfrm-settings.php:1450
|
50 |
msgid "Name"
|
51 |
msgstr "Имя"
|
52 |
|
53 |
# @ contact_form
|
54 |
+
#: contact_form.php:517 contact_form.php:1628 contact_form.php:1673
|
55 |
+
#: includes/class-cntctfrm-settings.php:714
|
56 |
+
#: includes/class-cntctfrm-settings.php:1164
|
57 |
+
#: includes/class-cntctfrm-settings.php:1204
|
58 |
+
#: includes/class-cntctfrm-settings.php:1455
|
59 |
msgid "Address"
|
60 |
msgstr "Адрес"
|
61 |
|
62 |
# @ contact_form
|
63 |
+
#: contact_form.php:518 includes/class-cntctfrm-settings.php:730
|
64 |
+
#: includes/class-cntctfrm-settings.php:1165
|
65 |
+
#: includes/class-cntctfrm-settings.php:1205
|
66 |
msgid "Email Address"
|
67 |
msgstr "Email адрес"
|
68 |
|
69 |
# @ contact_form
|
70 |
+
#: contact_form.php:519 includes/class-cntctfrm-settings.php:760
|
71 |
+
#: includes/class-cntctfrm-settings.php:1166
|
72 |
+
#: includes/class-cntctfrm-settings.php:1206
|
73 |
msgid "Phone number"
|
74 |
msgstr "Телефон"
|
75 |
|
76 |
# @ contact_form
|
77 |
+
#: contact_form.php:520 contact_form.php:1639 contact_form.php:1682
|
78 |
+
#: includes/class-cntctfrm-settings.php:776
|
79 |
+
#: includes/class-cntctfrm-settings.php:1167
|
80 |
+
#: includes/class-cntctfrm-settings.php:1207
|
81 |
+
#: includes/class-cntctfrm-settings.php:1470
|
82 |
msgid "Subject"
|
83 |
msgstr "Тема"
|
84 |
|
85 |
# @ contact_form
|
86 |
+
#: contact_form.php:521 contact_form.php:1644 contact_form.php:1686
|
87 |
+
#: includes/class-cntctfrm-settings.php:807
|
88 |
+
#: includes/class-cntctfrm-settings.php:1168
|
89 |
+
#: includes/class-cntctfrm-settings.php:1208
|
90 |
+
#: includes/class-cntctfrm-settings.php:1474
|
91 |
msgid "Message"
|
92 |
msgstr "Сообщение"
|
93 |
|
94 |
# @ contact_form
|
95 |
+
#: contact_form.php:522 includes/class-cntctfrm-settings.php:1169
|
96 |
+
#: includes/class-cntctfrm-settings.php:1209
|
97 |
+
#: includes/class-cntctfrm-settings.php:1479
|
98 |
msgid "Attachment"
|
99 |
msgstr "Прикрепить файл"
|
100 |
|
101 |
# @ contact_form
|
102 |
+
#: contact_form.php:523
|
103 |
msgid ""
|
104 |
"Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
|
105 |
"EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
|
108 |
"AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
|
109 |
|
110 |
# @ contact_form
|
111 |
+
#: contact_form.php:524 includes/class-cntctfrm-settings.php:1171
|
112 |
+
#: includes/class-cntctfrm-settings.php:1211
|
113 |
msgid "Send me a copy"
|
114 |
msgstr "Отправить мне копию"
|
115 |
|
116 |
+
#: contact_form.php:525 includes/class-cntctfrm-settings.php:1172
|
117 |
+
#: includes/class-cntctfrm-settings.php:1212
|
118 |
msgid "I consent to having this site collect my personal data."
|
119 |
msgstr "Я разрешаю этому сайту собирать мои личные данные."
|
120 |
|
121 |
# @ contact_form
|
122 |
+
#: contact_form.php:526 contact_form.php:1938
|
123 |
+
#: includes/class-cntctfrm-settings.php:1173
|
124 |
+
#: includes/class-cntctfrm-settings.php:1213
|
125 |
msgid "Learn more"
|
126 |
msgstr "Подробнее"
|
127 |
|
128 |
# @ contact_form
|
129 |
+
#: contact_form.php:527 includes/class-cntctfrm-settings.php:1174
|
130 |
+
#: includes/class-cntctfrm-settings.php:1214
|
131 |
msgid "Submit"
|
132 |
msgstr "Отправить"
|
133 |
|
134 |
# @ contact_form
|
135 |
+
#: contact_form.php:528
|
136 |
msgid "Your name is required."
|
137 |
msgstr "Поле Имя - это обязательное поле для заполнения."
|
138 |
|
139 |
# @ contact_form
|
140 |
+
#: contact_form.php:529
|
141 |
msgid "Address is required."
|
142 |
msgstr "Поле Адрес - это обязательное поле для заполнения."
|
143 |
|
144 |
# @ contact_form
|
145 |
+
#: contact_form.php:530
|
146 |
msgid "A valid email address is required."
|
147 |
msgstr "Укажите корректный email - адрес."
|
148 |
|
149 |
# @ contact_form
|
150 |
+
#: contact_form.php:531
|
151 |
msgid "Phone number is required."
|
152 |
msgstr "Поле Телефон - это обязательное поле для заполнения."
|
153 |
|
154 |
# @ contact_form
|
155 |
+
#: contact_form.php:532
|
156 |
msgid "Subject is required."
|
157 |
msgstr "Поле Тема - это обязательное поле для заполнения."
|
158 |
|
159 |
# @ contact_form
|
160 |
+
#: contact_form.php:533
|
161 |
msgid "Message text is required."
|
162 |
msgstr "Поле Сообщение - это обязательное поле для заполнения."
|
163 |
|
164 |
# @ contact_form
|
165 |
+
#: contact_form.php:534
|
166 |
msgid "File format is not valid."
|
167 |
msgstr "Прикрепленный тип файла не поддерживается."
|
168 |
|
169 |
# @ contact_form
|
170 |
+
#: contact_form.php:535
|
171 |
msgid "File upload error."
|
172 |
msgstr "Ошибка при загрузке файла."
|
173 |
|
174 |
# @ contact_form
|
175 |
+
#: contact_form.php:536
|
176 |
msgid "The file could not be uploaded."
|
177 |
msgstr "Невозможно загрузить файл."
|
178 |
|
179 |
# @ contact_form
|
180 |
+
#: contact_form.php:537
|
181 |
msgid "This file is too large."
|
182 |
msgstr "Размер файла слишком большой."
|
183 |
|
184 |
# @ contact_form
|
185 |
+
#: contact_form.php:538
|
186 |
msgid "Please fill out the CAPTCHA."
|
187 |
msgstr "Пожалуйста, заполните CAPTCHA."
|
188 |
|
189 |
# @ contact_form
|
190 |
+
#: contact_form.php:539
|
191 |
msgid "Please make corrections below and try again."
|
192 |
msgstr ""
|
193 |
"Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
|
194 |
|
195 |
# @ contact_form
|
196 |
+
#: contact_form.php:541
|
197 |
msgid "Thank you for contacting us."
|
198 |
msgstr "Спасибо, что связались с нами."
|
199 |
|
200 |
+
#: contact_form.php:821
|
201 |
msgid "NEW_FORM"
|
202 |
msgstr "НОВАЯ_ФОРМА"
|
203 |
|
204 |
# @ contact_form
|
205 |
+
#: contact_form.php:822
|
206 |
msgid ""
|
207 |
"If you want to create multiple contact forms, please install the Contact "
|
208 |
"Form Multi plugin."
|
210 |
"Если вы хотите создать несколько разных контактных форм, пожалуйста, "
|
211 |
"установите плагин Contact Form Multi."
|
212 |
|
213 |
+
#: contact_form.php:827
|
214 |
msgid ""
|
215 |
"Contact Form plugin doesn't support your current version of Contact Form "
|
216 |
"Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
|
221 |
"выше."
|
222 |
|
223 |
# @ contact_form
|
224 |
+
#: contact_form.php:929
|
225 |
msgid "Sorry, email message could not be delivered."
|
226 |
msgstr "Извините, ваш email не может быть отправлен."
|
227 |
|
228 |
# @ contact_form
|
229 |
+
#: contact_form.php:1577 contact_form.php:1579
|
230 |
msgid "Sent from (ip address)"
|
231 |
msgstr "Отправлено от (IP адрес)"
|
232 |
|
233 |
# @ contact_form
|
234 |
+
#: contact_form.php:1583 contact_form.php:1585
|
235 |
+
#: includes/class-cntctfrm-settings.php:1121
|
236 |
msgid "Date/Time"
|
237 |
msgstr "Дата/Время"
|
238 |
|
239 |
# @ contact_form
|
240 |
+
#: contact_form.php:1589 contact_form.php:1591
|
241 |
+
#: includes/class-cntctfrm-settings.php:1122
|
242 |
msgid "Sent from (referer)"
|
243 |
msgstr "Отправлено от (referer)"
|
244 |
|
245 |
# @ contact_form
|
246 |
+
#: contact_form.php:1595 contact_form.php:1597
|
247 |
+
#: includes/class-cntctfrm-settings.php:1123
|
248 |
msgid "Using (user agent)"
|
249 |
msgstr "Используя (user agent)"
|
250 |
|
251 |
# @ contact_form
|
252 |
+
#: contact_form.php:1607
|
253 |
msgid "Contact from"
|
254 |
msgstr "Контакт из"
|
255 |
|
256 |
# @ contact_form
|
257 |
+
#: contact_form.php:1612 contact_form.php:1661
|
258 |
msgid "Site"
|
259 |
msgstr "Сайт"
|
260 |
|
261 |
# @ contact_form
|
262 |
+
#: contact_form.php:1634 contact_form.php:1678
|
263 |
+
#: includes/class-cntctfrm-settings.php:598
|
264 |
msgid "Email"
|
265 |
msgstr "Email"
|
266 |
|
267 |
# @ contact_form
|
268 |
+
#: contact_form.php:1650 contact_form.php:1691
|
269 |
+
#: includes/class-cntctfrm-settings.php:1465
|
270 |
msgid "Phone Number"
|
271 |
msgstr "Телефон"
|
272 |
|
273 |
# @ contact_form
|
274 |
+
#: contact_form.php:1789
|
275 |
msgid ""
|
276 |
"If you can see this MIME, it means that the MIME type is not supported by "
|
277 |
"your email client!"
|
280 |
"MIME тип!"
|
281 |
|
282 |
# @ contact_form
|
283 |
+
#: contact_form.php:1861
|
284 |
msgid "FAQ"
|
285 |
msgstr "FAQ"
|
286 |
|
287 |
# @ contact_form
|
288 |
+
#: contact_form.php:1862
|
289 |
msgid "Support"
|
290 |
msgstr "Поддержка"
|
291 |
|
292 |
# @ contact_form
|
293 |
+
#: contact_form.php:1911
|
294 |
msgid "Are you sure that you want to delete this language data?"
|
295 |
msgstr "Вы действительно хотите удалить данные для этого языка?"
|
296 |
|
297 |
# @ contact_form
|
298 |
+
#: contact_form.php:1933
|
299 |
msgid "Add multiple forms"
|
300 |
msgstr "Добавить несколько форм"
|
301 |
|
302 |
+
#: contact_form.php:1933
|
303 |
msgid ""
|
304 |
"Install Contact Form Multi plugin to create unlimited number of contact "
|
305 |
"forms."
|
307 |
"Установить плагин Contact Form Multi для создания неограниченного количества "
|
308 |
"контактных форм."
|
309 |
|
310 |
+
#: contact_form.php:1942 includes/class-cntctfrm-settings.php:469
|
311 |
+
#: includes/class-cntctfrm-settings.php:890
|
312 |
+
#: includes/class-cntctfrm-settings.php:1083
|
313 |
+
#: includes/class-cntctfrm-settings.php:1378
|
314 |
msgid "Close"
|
315 |
msgstr "Закрыть"
|
316 |
|
317 |
+
#: contact_form.php:1996
|
318 |
msgid "Error"
|
319 |
msgstr "Ошибка"
|
320 |
|
321 |
+
#: contact_form.php:1996 contact_form.php:1998
|
322 |
msgid "Illegal language code"
|
323 |
msgstr "Нелегальный языковой код"
|
324 |
|
325 |
# @ contact_form
|
326 |
+
#: contact_form.php:2032 contact_form.php:2034
|
327 |
+
#: includes/class-cntctfrm-settings.php:1189
|
328 |
#: includes/class-cntctfrm-settings.php:1191
|
329 |
+
#: includes/class-cntctfrm-settings.php:1229
|
330 |
#: includes/class-cntctfrm-settings.php:1231
|
331 |
+
#: includes/class-cntctfrm-settings.php:1265
|
332 |
#: includes/class-cntctfrm-settings.php:1267
|
333 |
+
#: includes/class-cntctfrm-settings.php:1279
|
334 |
#: includes/class-cntctfrm-settings.php:1281
|
|
|
335 |
msgid "Use shortcode"
|
336 |
msgstr "Используйте шорткод"
|
337 |
|
338 |
# @ contact_form
|
339 |
+
#: contact_form.php:2032 contact_form.php:2034
|
340 |
+
#: includes/class-cntctfrm-settings.php:1189
|
341 |
#: includes/class-cntctfrm-settings.php:1191
|
342 |
+
#: includes/class-cntctfrm-settings.php:1229
|
343 |
#: includes/class-cntctfrm-settings.php:1231
|
344 |
+
#: includes/class-cntctfrm-settings.php:1265
|
345 |
#: includes/class-cntctfrm-settings.php:1267
|
346 |
+
#: includes/class-cntctfrm-settings.php:1279
|
347 |
#: includes/class-cntctfrm-settings.php:1281
|
|
|
348 |
msgid "for this language"
|
349 |
msgstr "для данного языка"
|
350 |
|
351 |
+
#: contact_form.php:2179
|
352 |
msgid "Close notice"
|
353 |
msgstr "Закрыть"
|
354 |
|
355 |
# @ contact_form
|
356 |
+
#: contact_form.php:2184
|
357 |
msgid "allows to store your messages to the database."
|
358 |
msgstr "позволяет хранить ваши сообщения в базе данных."
|
359 |
|
360 |
# @ contact_form
|
361 |
+
#: contact_form.php:2185
|
362 |
msgid "Manage messages that have been sent from your website."
|
363 |
msgstr "Управление сообщениями, которые были отправлены с вашего сайта."
|
364 |
|
365 |
# @ contact_form
|
366 |
+
#: contact_form.php:2188
|
367 |
msgid "Learn More"
|
368 |
msgstr "Подробнее"
|
369 |
|
370 |
# @ contact_form
|
371 |
+
#: contact_form.php:2248
|
372 |
msgid "Contact form"
|
373 |
msgstr "Контактная форма"
|
374 |
|
375 |
# @ contact_form
|
376 |
+
#: contact_form.php:2261 contact_form.php:2271
|
377 |
msgid "Language"
|
378 |
msgstr "Язык"
|
379 |
|
380 |
#: includes/class-cntctfrm-settings.php:26
|
381 |
+
#: includes/class-cntctfrm-settings.php:546
|
382 |
msgid "Additional Settings"
|
383 |
msgstr "Дополнительные настройки"
|
384 |
|
385 |
#: includes/class-cntctfrm-settings.php:27
|
386 |
+
#: includes/class-cntctfrm-settings.php:1304
|
387 |
msgid "Appearance"
|
388 |
msgstr "Отображение"
|
389 |
|
392 |
msgstr "Разное"
|
393 |
|
394 |
#: includes/class-cntctfrm-settings.php:29
|
|
|
|
|
|
|
|
|
395 |
msgid "Custom Code"
|
396 |
msgstr "Пользовательский код"
|
397 |
|
398 |
+
#: includes/class-cntctfrm-settings.php:30
|
399 |
+
msgid "License Key"
|
400 |
+
msgstr "Лицензионный ключ"
|
401 |
+
|
402 |
+
#: includes/class-cntctfrm-settings.php:95
|
403 |
msgid "Please enable JavaScript in your browser."
|
404 |
msgstr "Пожалуйста, включите JavaScript в вашем браузере."
|
405 |
|
406 |
+
#: includes/class-cntctfrm-settings.php:97
|
407 |
#, php-format
|
408 |
msgid ""
|
409 |
"Contact Form plugin requires PHP %s or higher. Please contact your hosting "
|
412 |
"Для плагина Contact Form требуется PHP % s или выше. Пожалуйста, свяжитесь с "
|
413 |
"вашим хостинг-провайдером, чтобы обновить версию PHP."
|
414 |
|
415 |
+
#: includes/class-cntctfrm-settings.php:347
|
416 |
msgid ""
|
417 |
"Email 'FROM' field option was changed, which may cause email messages being "
|
418 |
"moved to the spam folder or email delivery failures."
|
419 |
msgstr ""
|
420 |
"Настройка для поля email \"От\" была изменена, что может приводить к тому, "
|
421 |
+
"что письма будут попадать в спам или не будут доставлены."
|
422 |
|
423 |
# @ contact_form
|
424 |
+
#: includes/class-cntctfrm-settings.php:357
|
425 |
msgid ""
|
426 |
"If the 'Redirect to page' option is selected then the URL field should be in "
|
427 |
"the following format"
|
430 |
"в следующем формате"
|
431 |
|
432 |
# @ contact_form
|
433 |
+
#: includes/class-cntctfrm-settings.php:364
|
434 |
msgid "Such user does not exist."
|
435 |
msgstr "Данный пользователь не найден."
|
436 |
|
437 |
# @ contact_form
|
438 |
+
#: includes/class-cntctfrm-settings.php:374
|
439 |
msgid ""
|
440 |
"Please enter a valid email address in the 'Use this email address' field."
|
441 |
msgstr "Пожалуйста, введите корректный email в поле 'Использовать этот email'."
|
442 |
|
443 |
# @ contact_form
|
444 |
+
#: includes/class-cntctfrm-settings.php:382
|
445 |
msgid "Please enter a valid email address in the 'FROM' field."
|
446 |
msgstr "Пожалуйста, введите корректный email для поля \"От\"."
|
447 |
|
448 |
# @ contact_form
|
449 |
+
#: includes/class-cntctfrm-settings.php:402
|
450 |
msgid "Settings saved."
|
451 |
+
msgstr "Настройки сохранены."
|
452 |
|
453 |
# @ contact_form
|
454 |
+
#: includes/class-cntctfrm-settings.php:404
|
455 |
msgid "Settings are not saved."
|
456 |
msgstr "Настройки не сохранены."
|
457 |
|
458 |
# @ contact_form
|
459 |
+
#: includes/class-cntctfrm-settings.php:429
|
460 |
msgid ""
|
461 |
"If you leave the fields empty, the messages will be sent to the email "
|
462 |
"address specified during registration."
|
465 |
"email, который был указан при регистрации сайта."
|
466 |
|
467 |
# @ contact_form
|
468 |
+
#: includes/class-cntctfrm-settings.php:432
|
469 |
msgid "The user's email address"
|
470 |
msgstr "Email пользователя сайта"
|
471 |
|
472 |
# @ contact_form
|
473 |
+
#: includes/class-cntctfrm-settings.php:437
|
474 |
msgid "Select a username"
|
475 |
msgstr "Выберите имя пользователя"
|
476 |
|
477 |
# @ contact_form
|
478 |
+
#: includes/class-cntctfrm-settings.php:450
|
479 |
msgid ""
|
480 |
"Select a username of the person who should get the messages from the contact "
|
481 |
"form."
|
484 |
"формы."
|
485 |
|
486 |
# @ contact_form
|
487 |
+
#: includes/class-cntctfrm-settings.php:455
|
488 |
msgid "Use this email address"
|
489 |
msgstr "Использовать этот email"
|
490 |
|
491 |
# @ contact_form
|
492 |
+
#: includes/class-cntctfrm-settings.php:460
|
493 |
msgid "Enter the email address for receiving messages"
|
494 |
msgstr "Укажите email, на который будут отправляться сообщения"
|
495 |
|
496 |
# @ contact_form
|
497 |
+
#: includes/class-cntctfrm-settings.php:473
|
498 |
msgid "Add department selectbox to the contact form"
|
499 |
msgstr "Добавить выбор отдела в контактную форму"
|
500 |
|
501 |
# @ contact_form
|
502 |
+
#: includes/class-cntctfrm-settings.php:492
|
503 |
msgid "Save emails to the database"
|
504 |
msgstr "Сохранять email в базу данных"
|
505 |
|
506 |
# @ contact_form
|
507 |
+
#: includes/class-cntctfrm-settings.php:504
|
508 |
+
#: includes/class-cntctfrm-settings.php:518
|
509 |
+
#: includes/class-cntctfrm-settings.php:525
|
510 |
msgid "Using"
|
511 |
msgstr "Используя"
|
512 |
|
513 |
+
#: includes/class-cntctfrm-settings.php:510
|
514 |
+
#: includes/class-cntctfrm-settings.php:985
|
515 |
+
#: includes/class-cntctfrm-settings.php:1026
|
516 |
+
#: includes/class-cntctfrm-settings.php:1061
|
517 |
msgid "Please activate the appropriate option on"
|
518 |
msgstr "Пожалуйста, активируйте соответствующую опцию на странице настроек"
|
519 |
|
520 |
# @ contact_form
|
521 |
+
#: includes/class-cntctfrm-settings.php:513
|
522 |
+
#: includes/class-cntctfrm-settings.php:988
|
523 |
+
#: includes/class-cntctfrm-settings.php:1029
|
524 |
+
#: includes/class-cntctfrm-settings.php:1064
|
525 |
msgid "settings page"
|
526 |
+
msgstr "страница настройки"
|
527 |
|
528 |
# @ contact_form
|
529 |
+
#: includes/class-cntctfrm-settings.php:519
|
530 |
+
#: includes/class-cntctfrm-settings.php:995
|
531 |
+
#: includes/class-cntctfrm-settings.php:1037
|
532 |
+
#: includes/class-cntctfrm-settings.php:1071
|
533 |
msgid "Activate"
|
534 |
msgstr "Активировать"
|
535 |
|
536 |
# @ contact_form
|
537 |
+
#: includes/class-cntctfrm-settings.php:526
|
538 |
+
#: includes/class-cntctfrm-settings.php:1004
|
539 |
+
#: includes/class-cntctfrm-settings.php:1043
|
540 |
+
#: includes/class-cntctfrm-settings.php:1076
|
541 |
msgid "Download"
|
542 |
msgstr "Скачать"
|
543 |
|
544 |
+
#: includes/class-cntctfrm-settings.php:551
|
545 |
msgid "Sending method"
|
546 |
msgstr "Метод отправки"
|
547 |
|
548 |
# @ contact_form
|
549 |
+
#: includes/class-cntctfrm-settings.php:556
|
550 |
msgid "Wp-mail"
|
551 |
msgstr "Wp-mail"
|
552 |
|
553 |
# @ contact_form
|
554 |
+
#: includes/class-cntctfrm-settings.php:557
|
555 |
msgid "You can use the Wordpress wp_mail function for mailing"
|
556 |
msgstr "Для отправки почты вы можете использовать Wordpress функцию wp_mail"
|
557 |
|
558 |
# @ contact_form
|
559 |
+
#: includes/class-cntctfrm-settings.php:562
|
560 |
msgid "Mail"
|
561 |
msgstr "Mail"
|
562 |
|
563 |
# @ contact_form
|
564 |
+
#: includes/class-cntctfrm-settings.php:563
|
565 |
msgid "You can use the PHP mail function for mailing"
|
566 |
msgstr "Для отправки почты вы можете использовать PHP функцию mail"
|
567 |
|
568 |
+
#: includes/class-cntctfrm-settings.php:569
|
569 |
msgid "'FROM' field"
|
570 |
msgstr "Поле \"От\""
|
571 |
|
572 |
# @ contact_form
|
573 |
+
#: includes/class-cntctfrm-settings.php:585
|
574 |
msgid "User name"
|
575 |
msgstr "Имя пользователя"
|
576 |
|
577 |
# @ contact_form
|
578 |
+
#: includes/class-cntctfrm-settings.php:587
|
579 |
msgid ""
|
580 |
"The name of the user who fills the form will be used in the field 'From'."
|
581 |
msgstr ""
|
583 |
"заполняет форму."
|
584 |
|
585 |
# @ contact_form
|
586 |
+
#: includes/class-cntctfrm-settings.php:609
|
587 |
msgid "User email"
|
588 |
msgstr "Email пользователя"
|
589 |
|
590 |
# @ contact_form
|
591 |
+
#: includes/class-cntctfrm-settings.php:611
|
592 |
msgid ""
|
593 |
"The email address of the user who fills the form will be used in the field "
|
594 |
"'From'."
|
596 |
"В поле \"От\" в письме будет использоваться email того пользователя, который "
|
597 |
"заполняет форму."
|
598 |
|
599 |
+
#: includes/class-cntctfrm-settings.php:620
|
600 |
msgid ""
|
601 |
"If this option is changed, email messages may be moved to the spam folder or "
|
602 |
"email delivery failures may occur."
|
605 |
"будут попадать в спам или не будут доставлены."
|
606 |
|
607 |
# @ contact_form
|
608 |
+
#: includes/class-cntctfrm-settings.php:629
|
609 |
msgid "Required symbol"
|
610 |
msgstr "Символ, отображающий обязательное поле"
|
611 |
|
612 |
# @ contact_form
|
613 |
+
#: includes/class-cntctfrm-settings.php:639
|
614 |
msgid "Fields"
|
615 |
msgstr "Поля"
|
616 |
|
617 |
# @ contact_form
|
618 |
+
#: includes/class-cntctfrm-settings.php:640
|
619 |
+
#: includes/class-cntctfrm-settings.php:655
|
620 |
+
#: includes/class-cntctfrm-settings.php:670
|
621 |
+
#: includes/class-cntctfrm-settings.php:697
|
622 |
+
#: includes/class-cntctfrm-settings.php:717
|
623 |
+
#: includes/class-cntctfrm-settings.php:735
|
624 |
+
#: includes/class-cntctfrm-settings.php:763
|
625 |
+
#: includes/class-cntctfrm-settings.php:780
|
626 |
+
#: includes/class-cntctfrm-settings.php:811
|
627 |
+
#: includes/class-cntctfrm-settings.php:859
|
628 |
+
#: includes/class-cntctfrm-settings.php:898
|
629 |
msgid "Used"
|
630 |
msgstr "Используется"
|
631 |
|
632 |
# @ contact_form
|
633 |
+
#: includes/class-cntctfrm-settings.php:641
|
634 |
+
#: includes/class-cntctfrm-settings.php:659
|
635 |
+
#: includes/class-cntctfrm-settings.php:674
|
636 |
+
#: includes/class-cntctfrm-settings.php:701
|
637 |
+
#: includes/class-cntctfrm-settings.php:721
|
638 |
+
#: includes/class-cntctfrm-settings.php:739
|
639 |
+
#: includes/class-cntctfrm-settings.php:767
|
640 |
+
#: includes/class-cntctfrm-settings.php:787
|
641 |
+
#: includes/class-cntctfrm-settings.php:818
|
642 |
+
#: includes/class-cntctfrm-settings.php:899
|
643 |
msgid "Required"
|
644 |
msgstr "Обязательное"
|
645 |
|
646 |
# @ contact_form
|
647 |
+
#: includes/class-cntctfrm-settings.php:643
|
648 |
+
#: includes/class-cntctfrm-settings.php:679
|
649 |
+
#: includes/class-cntctfrm-settings.php:743
|
650 |
+
#: includes/class-cntctfrm-settings.php:792
|
651 |
+
#: includes/class-cntctfrm-settings.php:823
|
652 |
+
#: includes/class-cntctfrm-settings.php:900
|
653 |
msgid "Visible"
|
654 |
msgstr "Видимое"
|
655 |
|
656 |
# @ contact_form
|
657 |
+
#: includes/class-cntctfrm-settings.php:644
|
658 |
+
#: includes/class-cntctfrm-settings.php:683
|
659 |
+
#: includes/class-cntctfrm-settings.php:747
|
660 |
+
#: includes/class-cntctfrm-settings.php:796
|
661 |
+
#: includes/class-cntctfrm-settings.php:827
|
662 |
+
#: includes/class-cntctfrm-settings.php:901
|
663 |
msgid "Disabled for editing"
|
664 |
msgstr "Нет возможности редактировать"
|
665 |
|
666 |
# @ contact_form
|
667 |
+
#: includes/class-cntctfrm-settings.php:645
|
668 |
+
#: includes/class-cntctfrm-settings.php:707
|
669 |
+
#: includes/class-cntctfrm-settings.php:800
|
670 |
+
#: includes/class-cntctfrm-settings.php:831
|
671 |
msgid "Field's default value"
|
672 |
msgstr "Значение полей по умолчанию"
|
673 |
|
674 |
# @ contact_form
|
675 |
+
#: includes/class-cntctfrm-settings.php:652
|
676 |
msgid "Department selectbox"
|
677 |
msgstr "Список отделов"
|
678 |
|
679 |
+
#: includes/class-cntctfrm-settings.php:687
|
680 |
msgid "Use User's name as a default value if the user is logged in."
|
681 |
msgstr ""
|
682 |
"Использовать имя Пользователя как значение по умолчанию, если пользователь "
|
683 |
"залогинен."
|
684 |
|
685 |
+
#: includes/class-cntctfrm-settings.php:688
|
686 |
+
#: includes/class-cntctfrm-settings.php:752
|
687 |
msgid ""
|
688 |
"'Visible' and 'Disabled for editing' options will be applied only to logged-"
|
689 |
"in users."
|
692 |
"к залогиненным пользователям."
|
693 |
|
694 |
# @ contact_form
|
695 |
+
#: includes/class-cntctfrm-settings.php:694
|
696 |
msgid "Location selectbox"
|
697 |
msgstr "Список местоположений"
|
698 |
|
699 |
+
#: includes/class-cntctfrm-settings.php:751
|
700 |
msgid "Use User's email as a default value if the user is logged in."
|
701 |
msgstr ""
|
702 |
"Использовать Email Пользователя как значение по умолчанию, если пользователь "
|
703 |
"залогинен."
|
704 |
|
705 |
# @ contact_form
|
706 |
+
#: includes/class-cntctfrm-settings.php:852
|
707 |
msgid "Attachment block"
|
708 |
msgstr "Прикрепить файл"
|
709 |
|
710 |
# @ contact_form
|
711 |
+
#: includes/class-cntctfrm-settings.php:854
|
712 |
msgid "Users can attach the following file formats"
|
713 |
msgstr "Пользователи могут прикрепить файлы таких типов"
|
714 |
|
715 |
+
#: includes/class-cntctfrm-settings.php:870
|
716 |
msgid "Multi-attachment"
|
717 |
msgstr "Прикрепить несколько файлов"
|
718 |
|
719 |
+
#: includes/class-cntctfrm-settings.php:872
|
720 |
msgid "Enable to multiple file selection"
|
721 |
msgstr "Включите, чтобы позволить прикреплять несколько файлов"
|
722 |
|
723 |
+
#: includes/class-cntctfrm-settings.php:896
|
724 |
msgid "Title"
|
725 |
msgstr "Название"
|
726 |
|
727 |
# @ contact_form
|
728 |
+
#: includes/class-cntctfrm-settings.php:897
|
729 |
msgid "Field Type"
|
730 |
msgstr "Тип поля"
|
731 |
|
732 |
# @ contact_form
|
733 |
+
#: includes/class-cntctfrm-settings.php:902
|
734 |
msgid "Field's default/available value"
|
735 |
msgstr "Значение полей по умолчанию"
|
736 |
|
737 |
+
#: includes/class-cntctfrm-settings.php:929
|
738 |
msgid "Create Field"
|
739 |
msgstr "Создать поле"
|
740 |
|
741 |
# @ contact_form
|
742 |
+
#: includes/class-cntctfrm-settings.php:932
|
743 |
msgid "If you upgrade to Pro version all your settings will be saved."
|
744 |
msgstr "При установке Pro версии все ваши настройки сохраняются."
|
745 |
|
746 |
# @ contact_form
|
747 |
+
#: includes/class-cntctfrm-settings.php:945
|
748 |
msgid "Add to the form"
|
749 |
msgstr "Добавить в форму"
|
750 |
|
751 |
# @ contact_form
|
752 |
+
#: includes/class-cntctfrm-settings.php:950
|
753 |
msgid "Tips below the Attachment"
|
754 |
msgstr "Пояснения после блока \"Прикрепить файл\""
|
755 |
|
756 |
# @ contact_form
|
757 |
+
#: includes/class-cntctfrm-settings.php:957
|
758 |
msgid "'Send me a copy' block"
|
759 |
msgstr "Блок \"Отправить мне копию\""
|
760 |
|
761 |
+
#: includes/class-cntctfrm-settings.php:964
|
762 |
msgid "GDPR Compliance"
|
763 |
msgstr "Согласие с GDPR"
|
764 |
|
765 |
+
#: includes/class-cntctfrm-settings.php:969
|
766 |
msgid "Link to Privacy Policy Page"
|
767 |
msgstr "Ссылка на страницу политики конфиденциальности"
|
768 |
|
769 |
+
#: includes/class-cntctfrm-settings.php:997
|
770 |
msgid "Activate for network"
|
771 |
msgstr "Активировать для сети"
|
772 |
|
773 |
# @ contact_form
|
774 |
+
#: includes/class-cntctfrm-settings.php:1087
|
775 |
msgid "Agreement checkbox"
|
776 |
msgstr "Чекбокс согласия с условиями"
|
777 |
|
778 |
# @ contact_form
|
779 |
+
#: includes/class-cntctfrm-settings.php:1087
|
780 |
msgid "Required checkbox for submitting the form"
|
781 |
msgstr "Обязательный чекбокс для отправки формы"
|
782 |
|
783 |
# @ contact_form
|
784 |
+
#: includes/class-cntctfrm-settings.php:1088
|
785 |
msgid "Optional checkbox"
|
786 |
msgstr "Дополнительный чекбокс"
|
787 |
|
788 |
# @ contact_form
|
789 |
+
#: includes/class-cntctfrm-settings.php:1088
|
790 |
msgid "Optional checkbox, the results of which will be displayed in email"
|
791 |
msgstr "Дополнительный чекбокс, результаты которого будут отображены в email"
|
792 |
|
793 |
# @ contact_form
|
794 |
+
#: includes/class-cntctfrm-settings.php:1103
|
795 |
msgid "Delete an attachment file from the server after the email is sent"
|
796 |
msgstr "Удалить прикрепленный файл с сервера после отправки email"
|
797 |
|
798 |
# @ contact_form
|
799 |
+
#: includes/class-cntctfrm-settings.php:1109
|
800 |
msgid "Email in HTML format sending"
|
801 |
msgstr "Отправка еmail в формате HTML"
|
802 |
|
803 |
# @ contact_form
|
804 |
+
#: includes/class-cntctfrm-settings.php:1113
|
805 |
msgid "Display additional info in the email"
|
806 |
msgstr "Отображение дополнительной информации в письме"
|
807 |
|
808 |
# @ contact_form
|
809 |
+
#: includes/class-cntctfrm-settings.php:1120
|
810 |
msgid "Sent from (IP address)"
|
811 |
msgstr "Отправлено от (IP адрес)"
|
812 |
|
813 |
+
#: includes/class-cntctfrm-settings.php:1120
|
814 |
msgid "Example: Sent from (IP address): 127.0.0.1"
|
815 |
msgstr "Пример: Отправлено от (IP адрес): 127.0.0.1"
|
816 |
|
817 |
+
#: includes/class-cntctfrm-settings.php:1121
|
818 |
msgid "Example: Date/Time: August 19, 2013 8:50 pm"
|
819 |
msgstr "Пример: Дата/Время: 19 Августа, 2013 20:50"
|
820 |
|
821 |
+
#: includes/class-cntctfrm-settings.php:1122
|
822 |
msgid ""
|
823 |
"Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
|
824 |
msgstr ""
|
825 |
"Пример: Отправлено от (referer): https://bestwebsoft.com/contacts/contact-"
|
826 |
"us/"
|
827 |
|
828 |
+
#: includes/class-cntctfrm-settings.php:1123
|
829 |
msgid ""
|
830 |
"Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
|
831 |
"AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
|
834 |
"AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
|
835 |
|
836 |
# @ contact_form
|
837 |
+
#: includes/class-cntctfrm-settings.php:1129
|
838 |
msgid "Language settings for the field names in the form"
|
839 |
msgstr "Языковые настройки для имён полей в форме"
|
840 |
|
841 |
# @ contact_form
|
842 |
+
#: includes/class-cntctfrm-settings.php:1138
|
843 |
msgid "Add a language"
|
844 |
msgstr "Добавить язык"
|
845 |
|
846 |
# @ contact_form
|
847 |
+
#: includes/class-cntctfrm-settings.php:1142
|
848 |
msgid "Change the names of the contact form fields and error messages"
|
849 |
msgstr "Изменить имена полей контактной формы и сообщений об ошибках"
|
850 |
|
851 |
# @ contact_form
|
852 |
+
#: includes/class-cntctfrm-settings.php:1148
|
853 |
+
#: includes/class-cntctfrm-settings.php:1250
|
854 |
+
#: includes/class-cntctfrm-settings.php:1358
|
855 |
msgid "Default"
|
856 |
msgstr "По умолчанию"
|
857 |
|
858 |
# @ contact_form
|
859 |
+
#: includes/class-cntctfrm-settings.php:1161
|
860 |
+
#: includes/class-cntctfrm-settings.php:1201
|
861 |
msgid "click to expand/hide the list"
|
862 |
msgstr "нажмите чтобы развернуть/свернуть список"
|
863 |
|
864 |
# @ contact_form
|
865 |
+
#: includes/class-cntctfrm-settings.php:1170
|
866 |
+
#: includes/class-cntctfrm-settings.php:1210
|
867 |
msgid "Tips below the Attachment block"
|
868 |
msgstr "Пояснения после блока \"Прикрепить файл\""
|
869 |
|
870 |
# @ contact_form
|
871 |
+
#: includes/class-cntctfrm-settings.php:1175
|
872 |
+
#: includes/class-cntctfrm-settings.php:1215
|
873 |
msgid "Error message for the Name field"
|
874 |
msgstr "Сообщение об ошибке для поля Имя"
|
875 |
|
876 |
# @ contact_form
|
877 |
+
#: includes/class-cntctfrm-settings.php:1176
|
878 |
+
#: includes/class-cntctfrm-settings.php:1216
|
879 |
msgid "Error message for the Address field"
|
880 |
msgstr "Сообщение об ошибке для поля Адрес"
|
881 |
|
882 |
# @ contact_form
|
883 |
+
#: includes/class-cntctfrm-settings.php:1177
|
884 |
+
#: includes/class-cntctfrm-settings.php:1217
|
885 |
msgid "Error message for the Email field"
|
886 |
msgstr "Сообщение об ошибке для поля Email"
|
887 |
|
888 |
# @ contact_form
|
889 |
+
#: includes/class-cntctfrm-settings.php:1178
|
890 |
+
#: includes/class-cntctfrm-settings.php:1218
|
891 |
msgid "Error message for the Phone field"
|
892 |
msgstr "Сообщение об ошибке для поля Телефон"
|
893 |
|
894 |
# @ contact_form
|
895 |
+
#: includes/class-cntctfrm-settings.php:1179
|
896 |
+
#: includes/class-cntctfrm-settings.php:1219
|
897 |
msgid "Error message for the Subject field"
|
898 |
msgstr "Сообщение об ошибке для поля Тема"
|
899 |
|
900 |
# @ contact_form
|
901 |
+
#: includes/class-cntctfrm-settings.php:1180
|
902 |
+
#: includes/class-cntctfrm-settings.php:1220
|
903 |
msgid "Error message for the Message field"
|
904 |
msgstr "Сообщение об ошибке для поля Сообщение"
|
905 |
|
906 |
# @ contact_form
|
907 |
+
#: includes/class-cntctfrm-settings.php:1181
|
908 |
+
#: includes/class-cntctfrm-settings.php:1221
|
909 |
msgid "Error message about the file type for the Attachment field"
|
910 |
msgstr "Сообщение об ошибке о типе файла для поля \"Прикрепить файл\""
|
911 |
|
912 |
# @ contact_form
|
913 |
+
#: includes/class-cntctfrm-settings.php:1182
|
914 |
+
#: includes/class-cntctfrm-settings.php:1222
|
915 |
msgid ""
|
916 |
"Error message while uploading a file for the Attachment field to the server"
|
917 |
msgstr ""
|
918 |
"Сообщение об ошибке при загрузке файла на сервер для поля \"Прикрепить файл\""
|
919 |
|
920 |
# @ contact_form
|
921 |
+
#: includes/class-cntctfrm-settings.php:1183
|
922 |
+
#: includes/class-cntctfrm-settings.php:1223
|
923 |
msgid "Error message while moving the file for the Attachment field"
|
924 |
msgstr "Сообщение об ошибке при перемещении файла для поля \"Прикрепить файл\""
|
925 |
|
926 |
# @ contact_form
|
927 |
+
#: includes/class-cntctfrm-settings.php:1184
|
928 |
+
#: includes/class-cntctfrm-settings.php:1224
|
929 |
msgid "Error message when file size limit for the Attachment field is exceeded"
|
930 |
msgstr ""
|
931 |
"Сообщение об ошибке, когда размер файла превышает размер разрешенного "
|
932 |
"сервером для поля \"Прикрепить файл\""
|
933 |
|
934 |
# @ contact_form
|
935 |
+
#: includes/class-cntctfrm-settings.php:1185
|
936 |
+
#: includes/class-cntctfrm-settings.php:1225
|
937 |
msgid "Error message for the Captcha field"
|
938 |
msgstr "Сообщение об ошибке для поля Captcha"
|
939 |
|
940 |
# @ contact_form
|
941 |
+
#: includes/class-cntctfrm-settings.php:1186
|
942 |
+
#: includes/class-cntctfrm-settings.php:1226
|
943 |
msgid "Error message for the whole form"
|
944 |
msgstr "Сообщение об ошибке для всей формы"
|
945 |
|
946 |
# @ contact_form
|
947 |
+
#: includes/class-cntctfrm-settings.php:1240
|
948 |
msgid "Use the changed names of the contact form fields in the email"
|
949 |
msgstr "Использовать измененные имена полей контактной формы в email"
|
950 |
|
951 |
# @ contact_form
|
952 |
+
#: includes/class-cntctfrm-settings.php:1246
|
953 |
msgid "Action after email is sent"
|
954 |
msgstr "Действие после отправки письма"
|
955 |
|
956 |
# @ contact_form
|
957 |
+
#: includes/class-cntctfrm-settings.php:1248
|
958 |
msgid "Display text"
|
959 |
msgstr "Отобразить текст"
|
960 |
|
961 |
# @ contact_form
|
962 |
+
#: includes/class-cntctfrm-settings.php:1263
|
963 |
+
#: includes/class-cntctfrm-settings.php:1277
|
964 |
msgid "Text"
|
965 |
msgstr "Текст"
|
966 |
|
967 |
# @ contact_form
|
968 |
+
#: includes/class-cntctfrm-settings.php:1289
|
969 |
msgid "Redirect to the page"
|
970 |
msgstr "Перенаправление на страницу"
|
971 |
|
972 |
# @ contact_form
|
973 |
+
#: includes/class-cntctfrm-settings.php:1291
|
974 |
msgid "Url"
|
975 |
msgstr "Ссылка"
|
976 |
|
977 |
+
#: includes/class-cntctfrm-settings.php:1312
|
978 |
#, php-format
|
979 |
msgid ""
|
980 |
"Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
|
983 |
"Пожалуйста включите JavaScript, чтобы изменить опции '%s', '%s', '%s', '%s' "
|
984 |
"и для сортировки полей."
|
985 |
|
986 |
+
#: includes/class-cntctfrm-settings.php:1313
|
987 |
+
#: includes/class-cntctfrm-settings.php:1330
|
988 |
msgid "Form layout"
|
989 |
msgstr "Шаблон формы"
|
990 |
|
991 |
# @ contact_form
|
992 |
+
#: includes/class-cntctfrm-settings.php:1314
|
993 |
+
#: includes/class-cntctfrm-settings.php:1397
|
994 |
msgid "Labels position"
|
995 |
msgstr "Расположение имен полей"
|
996 |
|
997 |
+
#: includes/class-cntctfrm-settings.php:1315
|
998 |
+
#: includes/class-cntctfrm-settings.php:1415
|
999 |
msgid "Labels align"
|
1000 |
msgstr "Выравнивание имен полей"
|
1001 |
|
1002 |
# @ contact_form
|
1003 |
+
#: includes/class-cntctfrm-settings.php:1316
|
1004 |
+
#: includes/class-cntctfrm-settings.php:1342
|
1005 |
msgid "Submit position"
|
1006 |
msgstr "Позиция кнопки 'Отправить'"
|
1007 |
|
1008 |
# @ contact_form
|
1009 |
+
#: includes/class-cntctfrm-settings.php:1317
|
1010 |
+
#: includes/class-cntctfrm-settings.php:1446
|
1011 |
msgid "Add tooltips"
|
1012 |
msgstr "Добавить подсказки"
|
1013 |
|
1014 |
# @ contact_form
|
1015 |
+
#: includes/class-cntctfrm-settings.php:1318
|
1016 |
+
#: includes/class-cntctfrm-settings.php:1487
|
1017 |
msgid "Style options"
|
1018 |
msgstr "Настройки стиля"
|
1019 |
|
1020 |
+
#: includes/class-cntctfrm-settings.php:1334
|
1021 |
msgid "One column"
|
1022 |
msgstr "Одна колонка"
|
1023 |
|
1024 |
+
#: includes/class-cntctfrm-settings.php:1337
|
1025 |
msgid "Two columns"
|
1026 |
msgstr "Две колонки"
|
1027 |
|
1028 |
+
#: includes/class-cntctfrm-settings.php:1346
|
1029 |
+
#: includes/class-cntctfrm-settings.php:1386
|
1030 |
+
#: includes/class-cntctfrm-settings.php:1404
|
1031 |
+
#: includes/class-cntctfrm-settings.php:1419
|
1032 |
msgid "Left"
|
1033 |
msgstr "Слева"
|
1034 |
|
1035 |
+
#: includes/class-cntctfrm-settings.php:1349
|
1036 |
+
#: includes/class-cntctfrm-settings.php:1392
|
1037 |
+
#: includes/class-cntctfrm-settings.php:1407
|
1038 |
+
#: includes/class-cntctfrm-settings.php:1425
|
1039 |
msgid "Right"
|
1040 |
msgstr "Справа"
|
1041 |
|
1042 |
+
#: includes/class-cntctfrm-settings.php:1354
|
1043 |
msgid "Width"
|
1044 |
msgstr "Ширина"
|
1045 |
|
1046 |
+
#: includes/class-cntctfrm-settings.php:1362
|
1047 |
msgid "Custom"
|
1048 |
msgstr "Пользовательская"
|
1049 |
|
1050 |
+
#: includes/class-cntctfrm-settings.php:1369
|
1051 |
msgid "px"
|
1052 |
msgstr "пикс"
|
1053 |
|
1054 |
+
#: includes/class-cntctfrm-settings.php:1382
|
1055 |
msgid "Form align"
|
1056 |
msgstr "Выравнивание формы"
|
1057 |
|
1058 |
+
#: includes/class-cntctfrm-settings.php:1389
|
1059 |
+
#: includes/class-cntctfrm-settings.php:1422
|
1060 |
msgid "Center"
|
1061 |
msgstr "По центру"
|
1062 |
|
1063 |
+
#: includes/class-cntctfrm-settings.php:1401
|
1064 |
msgid "Top"
|
1065 |
msgstr "Сверху"
|
1066 |
|
1067 |
+
#: includes/class-cntctfrm-settings.php:1410
|
1068 |
msgid "Bottom"
|
1069 |
msgstr "Снизу"
|
1070 |
|
1071 |
# @ contact_form
|
1072 |
+
#: includes/class-cntctfrm-settings.php:1430
|
1073 |
msgid "Errors output"
|
1074 |
msgstr "Отображение ошибок"
|
1075 |
|
1076 |
# @ contact_form
|
1077 |
+
#: includes/class-cntctfrm-settings.php:1433
|
1078 |
msgid "Display error messages"
|
1079 |
msgstr "Отображать сообщения об ошибках"
|
1080 |
|
1081 |
# @ contact_form
|
1082 |
+
#: includes/class-cntctfrm-settings.php:1434
|
1083 |
msgid "Color of the input field errors."
|
1084 |
msgstr "Отображать ошибки цветом для полей ввода."
|
1085 |
|
1086 |
# @ contact_form
|
1087 |
+
#: includes/class-cntctfrm-settings.php:1435
|
1088 |
msgid "Display error messages & color of the input field errors"
|
1089 |
msgstr "Отображать сообщения об ошибках и цвет полей ввода с ошибками"
|
1090 |
|
1091 |
# @ contact_form
|
1092 |
+
#: includes/class-cntctfrm-settings.php:1440
|
1093 |
msgid "Add placeholder to the input blocks"
|
1094 |
msgstr "Добавить вспомогательный текст в поля ввода"
|
1095 |
|
1096 |
# @ contact_form
|
1097 |
+
#: includes/class-cntctfrm-settings.php:1460
|
1098 |
msgid "Email address"
|
1099 |
msgstr "Email"
|
1100 |
|
1101 |
# @ contact_form
|
1102 |
+
#: includes/class-cntctfrm-settings.php:1491
|
1103 |
msgid "Text color"
|
1104 |
msgstr "Цвет текста"
|
1105 |
|
1106 |
# @ contact_form
|
1107 |
+
#: includes/class-cntctfrm-settings.php:1496
|
1108 |
+
#: includes/class-cntctfrm-settings.php:1505
|
1109 |
+
#: includes/class-cntctfrm-settings.php:1518
|
1110 |
+
#: includes/class-cntctfrm-settings.php:1526
|
1111 |
+
#: includes/class-cntctfrm-settings.php:1534
|
1112 |
+
#: includes/class-cntctfrm-settings.php:1542
|
1113 |
+
#: includes/class-cntctfrm-settings.php:1555
|
1114 |
+
#: includes/class-cntctfrm-settings.php:1563
|
1115 |
+
#: includes/class-cntctfrm-settings.php:1575
|
1116 |
+
#: includes/class-cntctfrm-settings.php:1592
|
1117 |
+
#: includes/class-cntctfrm-settings.php:1600
|
1118 |
+
#: includes/class-cntctfrm-settings.php:1608
|
1119 |
msgid "Select Color"
|
1120 |
msgstr "Выбрать цвет"
|
1121 |
|
1122 |
# @ contact_form
|
1123 |
+
#: includes/class-cntctfrm-settings.php:1499
|
1124 |
msgid "Label text color"
|
1125 |
msgstr "Цвет текста"
|
1126 |
|
1127 |
# @ contact_form
|
1128 |
+
#: includes/class-cntctfrm-settings.php:1508
|
1129 |
msgid "Placeholder color"
|
1130 |
msgstr "Цвет вспомогательного текста"
|
1131 |
|
1132 |
# @ contact_form
|
1133 |
+
#: includes/class-cntctfrm-settings.php:1513
|
1134 |
msgid "Errors color"
|
1135 |
msgstr "Цвет ошибок"
|
1136 |
|
1137 |
# @ contact_form
|
1138 |
+
#: includes/class-cntctfrm-settings.php:1521
|
1139 |
msgid "Error text color"
|
1140 |
msgstr "Цвет текста для ошибок"
|
1141 |
|
1142 |
# @ contact_form
|
1143 |
+
#: includes/class-cntctfrm-settings.php:1529
|
1144 |
msgid "Background color of the input field errors"
|
1145 |
msgstr "Цвет фона для полей ввода с ошибками"
|
1146 |
|
1147 |
# @ contact_form
|
1148 |
+
#: includes/class-cntctfrm-settings.php:1537
|
1149 |
msgid "Border color of the input field errors"
|
1150 |
msgstr "Цвет рамки для полей ввода с ошибками"
|
1151 |
|
1152 |
# @ contact_form
|
1153 |
+
#: includes/class-cntctfrm-settings.php:1545
|
1154 |
msgid "Placeholder color of the input field errors"
|
1155 |
msgstr "Цвет вспомогательного текста для полей ввода с ошибками"
|
1156 |
|
1157 |
# @ contact_form
|
1158 |
+
#: includes/class-cntctfrm-settings.php:1550
|
1159 |
msgid "Input fields"
|
1160 |
msgstr "Поля ввода"
|
1161 |
|
1162 |
# @ contact_form
|
1163 |
+
#: includes/class-cntctfrm-settings.php:1558
|
1164 |
msgid "Input fields background color"
|
1165 |
msgstr "Цвет фона для полей ввода"
|
1166 |
|
1167 |
# @ contact_form
|
1168 |
+
#: includes/class-cntctfrm-settings.php:1566
|
1169 |
msgid "Text fields color"
|
1170 |
msgstr "Цвет текста для полей ввода"
|
1171 |
|
1172 |
# @ contact_form
|
1173 |
+
#: includes/class-cntctfrm-settings.php:1570
|
1174 |
msgid "Border width in px, numbers only"
|
1175 |
msgstr "Ширина рамки в пикселях, только цифры"
|
1176 |
|
1177 |
# @ contact_form
|
1178 |
+
#: includes/class-cntctfrm-settings.php:1578
|
1179 |
+
#: includes/class-cntctfrm-settings.php:1611
|
1180 |
msgid "Border color"
|
1181 |
msgstr "Цвет рамки"
|
1182 |
|
1183 |
# @ contact_form
|
1184 |
+
#: includes/class-cntctfrm-settings.php:1583
|
1185 |
msgid "Submit button"
|
1186 |
msgstr "Кнопка Отправить"
|
1187 |
|
1188 |
# @ contact_form
|
1189 |
+
#: includes/class-cntctfrm-settings.php:1587
|
1190 |
msgid "Width in px, numbers only"
|
1191 |
msgstr "Ширина в пикселях, только цифры"
|
1192 |
|
1193 |
# @ contact_form
|
1194 |
+
#: includes/class-cntctfrm-settings.php:1595
|
1195 |
msgid "Button color"
|
1196 |
msgstr "Цвет кнопки"
|
1197 |
|
1198 |
# @ contact_form
|
1199 |
+
#: includes/class-cntctfrm-settings.php:1603
|
1200 |
msgid "Button text color"
|
1201 |
msgstr "Цвет текста для кнопки"
|
1202 |
|
1203 |
# @ contact_form
|
1204 |
+
#: includes/class-cntctfrm-settings.php:1630
|
1205 |
msgid "Contact Form | Preview"
|
1206 |
msgstr "Contact Form | Предпросмотр"
|
1207 |
|
1208 |
+
#: includes/class-cntctfrm-settings.php:1631
|
1209 |
msgid "Drag the necessary field to sort fields."
|
1210 |
msgstr "Перетащите необходимое поле для сортировки полей."
|
1211 |
|
1212 |
+
#: includes/class-cntctfrm-settings.php:1878
|
1213 |
msgid "Contact Form Shortcode"
|
1214 |
msgstr "Шорткод Contact Form"
|
1215 |
|
1216 |
+
#: includes/class-cntctfrm-settings.php:1881
|
1217 |
msgid "Add Contact Form to your page or post using the following shortcode:"
|
1218 |
msgstr ""
|
1219 |
"Добавьте Contact Form в свои записи или страницы, используя следующий "
|
languages/contact-form-plugin-uk.mo
CHANGED
Binary file
|
languages/contact-form-plugin-uk.po
CHANGED
@@ -2,15 +2,15 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contact Form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2020-
|
6 |
-
"PO-Revision-Date: 2020-
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: The BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
9 |
"Language: uk\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Generator: Poedit 2.3\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
@@ -19,85 +19,85 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPathExcluded-0: bws_menu\n"
|
20 |
|
21 |
# @ contact_form
|
22 |
-
#: contact_form.php:39 contact_form.php:47 contact_form.php:
|
23 |
-
#: includes/class-cntctfrm-settings.php:
|
24 |
msgid "Contact Form Settings"
|
25 |
msgstr "Налаштування Contact Form"
|
26 |
|
27 |
# @ contact_form
|
28 |
-
#: contact_form.php:48 contact_form.php:
|
29 |
#: includes/class-cntctfrm-settings.php:25
|
30 |
msgid "Settings"
|
31 |
msgstr "Налаштування"
|
32 |
|
33 |
-
#: contact_form.php:63 includes/class-cntctfrm-settings.php:
|
34 |
-
#: includes/class-cntctfrm-settings.php:
|
35 |
-
#: includes/class-cntctfrm-settings.php:
|
36 |
-
#: includes/class-cntctfrm-settings.php:
|
37 |
-
#: includes/class-cntctfrm-settings.php:
|
38 |
msgid "Upgrade to Pro"
|
39 |
msgstr "Оновитися до Pro"
|
40 |
|
41 |
# @ contact_form
|
42 |
-
#: contact_form.php:
|
43 |
-
#: includes/class-cntctfrm-settings.php:
|
44 |
-
#: includes/class-cntctfrm-settings.php:
|
45 |
-
#: includes/class-cntctfrm-settings.php:
|
46 |
-
#: includes/class-cntctfrm-settings.php:
|
47 |
-
#: includes/class-cntctfrm-settings.php:
|
48 |
msgid "Name"
|
49 |
msgstr "Ім'я"
|
50 |
|
51 |
# @ contact_form
|
52 |
-
#: contact_form.php:
|
53 |
-
#: includes/class-cntctfrm-settings.php:
|
54 |
-
#: includes/class-cntctfrm-settings.php:
|
55 |
-
#: includes/class-cntctfrm-settings.php:
|
56 |
-
#: includes/class-cntctfrm-settings.php:
|
57 |
msgid "Address"
|
58 |
msgstr "Адреса"
|
59 |
|
60 |
# @ contact_form
|
61 |
-
#: contact_form.php:
|
62 |
-
#: includes/class-cntctfrm-settings.php:
|
63 |
-
#: includes/class-cntctfrm-settings.php:
|
64 |
msgid "Email Address"
|
65 |
msgstr "Email"
|
66 |
|
67 |
# @ contact_form
|
68 |
-
#: contact_form.php:
|
69 |
-
#: includes/class-cntctfrm-settings.php:
|
70 |
-
#: includes/class-cntctfrm-settings.php:
|
71 |
msgid "Phone number"
|
72 |
msgstr "Номер телефону"
|
73 |
|
74 |
# @ contact_form
|
75 |
-
#: contact_form.php:
|
76 |
-
#: includes/class-cntctfrm-settings.php:
|
77 |
-
#: includes/class-cntctfrm-settings.php:
|
78 |
-
#: includes/class-cntctfrm-settings.php:
|
79 |
-
#: includes/class-cntctfrm-settings.php:
|
80 |
msgid "Subject"
|
81 |
msgstr "Тема"
|
82 |
|
83 |
# @ contact_form
|
84 |
-
#: contact_form.php:
|
85 |
-
#: includes/class-cntctfrm-settings.php:
|
86 |
-
#: includes/class-cntctfrm-settings.php:
|
87 |
-
#: includes/class-cntctfrm-settings.php:
|
88 |
-
#: includes/class-cntctfrm-settings.php:
|
89 |
msgid "Message"
|
90 |
msgstr "Повідомлення"
|
91 |
|
92 |
# @ contact_form
|
93 |
-
#: contact_form.php:
|
94 |
-
#: includes/class-cntctfrm-settings.php:
|
95 |
-
#: includes/class-cntctfrm-settings.php:
|
96 |
msgid "Attachment"
|
97 |
msgstr "Вкладений файл"
|
98 |
|
99 |
# @ contact_form
|
100 |
-
#: contact_form.php:
|
101 |
msgid ""
|
102 |
"Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
|
103 |
"EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
|
@@ -107,100 +107,100 @@ msgstr ""
|
|
107 |
"PPT."
|
108 |
|
109 |
# @ contact_form
|
110 |
-
#: contact_form.php:
|
111 |
-
#: includes/class-cntctfrm-settings.php:
|
112 |
msgid "Send me a copy"
|
113 |
msgstr "Надіслати мені копію"
|
114 |
|
115 |
-
#: contact_form.php:
|
116 |
-
#: includes/class-cntctfrm-settings.php:
|
117 |
msgid "I consent to having this site collect my personal data."
|
118 |
msgstr "Я дозволяю цьому сайту збирати мої особисті дані."
|
119 |
|
120 |
# @ contact_form
|
121 |
-
#: contact_form.php:
|
122 |
-
#: includes/class-cntctfrm-settings.php:
|
123 |
-
#: includes/class-cntctfrm-settings.php:
|
124 |
msgid "Learn more"
|
125 |
msgstr "Дізнатись більше"
|
126 |
|
127 |
# @ contact_form
|
128 |
-
#: contact_form.php:
|
129 |
-
#: includes/class-cntctfrm-settings.php:
|
130 |
msgid "Submit"
|
131 |
msgstr "Підтвердити"
|
132 |
|
133 |
# @ contact_form
|
134 |
-
#: contact_form.php:
|
135 |
msgid "Your name is required."
|
136 |
msgstr "Необхідно вказати своє ім'я."
|
137 |
|
138 |
# @ contact_form
|
139 |
-
#: contact_form.php:
|
140 |
msgid "Address is required."
|
141 |
-
msgstr "Необхідно вказати свою
|
142 |
|
143 |
# @ contact_form
|
144 |
-
#: contact_form.php:
|
145 |
msgid "A valid email address is required."
|
146 |
msgstr "Необхідно вказати коректну email-адресу."
|
147 |
|
148 |
# @ contact_form
|
149 |
-
#: contact_form.php:
|
150 |
msgid "Phone number is required."
|
151 |
msgstr "Необхідно вказати номер телефону."
|
152 |
|
153 |
# @ contact_form
|
154 |
-
#: contact_form.php:
|
155 |
msgid "Subject is required."
|
156 |
msgstr "Необхідно вказати тему."
|
157 |
|
158 |
# @ contact_form
|
159 |
-
#: contact_form.php:
|
160 |
msgid "Message text is required."
|
161 |
msgstr "Повідомлення не може бути порожнім."
|
162 |
|
163 |
# @ contact_form
|
164 |
-
#: contact_form.php:
|
165 |
msgid "File format is not valid."
|
166 |
msgstr "Некоректний формат файлу."
|
167 |
|
168 |
# @ contact_form
|
169 |
-
#: contact_form.php:
|
170 |
msgid "File upload error."
|
171 |
msgstr "Помилка завантаження файлу."
|
172 |
|
173 |
# @ contact_form
|
174 |
-
#: contact_form.php:
|
175 |
msgid "The file could not be uploaded."
|
176 |
msgstr "Неможна завантажити файл."
|
177 |
|
178 |
# @ contact_form
|
179 |
-
#: contact_form.php:
|
180 |
msgid "This file is too large."
|
181 |
msgstr "Файл занадто великий."
|
182 |
|
183 |
# @ contact_form
|
184 |
-
#: contact_form.php:
|
185 |
msgid "Please fill out the CAPTCHA."
|
186 |
msgstr "Будь ласка, введіть CAPTCHA."
|
187 |
|
188 |
# @ contact_form
|
189 |
-
#: contact_form.php:
|
190 |
msgid "Please make corrections below and try again."
|
191 |
msgstr "Будь ласка, внесіть поправки у виділені поля і спробуйте знову."
|
192 |
|
193 |
# @ contact_form
|
194 |
-
#: contact_form.php:
|
195 |
msgid "Thank you for contacting us."
|
196 |
msgstr "Дякуємо, що зв'язалися з нами."
|
197 |
|
198 |
-
#: contact_form.php:
|
199 |
msgid "NEW_FORM"
|
200 |
msgstr "НОВА_ФОРМА"
|
201 |
|
202 |
# @ contact_form
|
203 |
-
#: contact_form.php:
|
204 |
msgid ""
|
205 |
"If you want to create multiple contact forms, please install the Contact "
|
206 |
"Form Multi plugin."
|
@@ -208,7 +208,7 @@ msgstr ""
|
|
208 |
"Якщо ви хочете створити декілька різних контактних форм, будь ласка, "
|
209 |
"встановіть плагін Contact Form Multi."
|
210 |
|
211 |
-
#: contact_form.php:
|
212 |
msgid ""
|
213 |
"Contact Form plugin doesn't support your current version of Contact Form "
|
214 |
"Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
|
@@ -218,57 +218,57 @@ msgstr ""
|
|
218 |
"Будь ласка, оновіть плагін Contact Form Multi до версії 1.2.6 або вище."
|
219 |
|
220 |
# @ contact_form
|
221 |
-
#: contact_form.php:
|
222 |
msgid "Sorry, email message could not be delivered."
|
223 |
msgstr "Вибачте, ваше повідомлення не може бути доставлено."
|
224 |
|
225 |
# @ contact_form
|
226 |
-
#: contact_form.php:
|
227 |
msgid "Sent from (ip address)"
|
228 |
msgstr "Надіслано від (IP адреса)"
|
229 |
|
230 |
# @ contact_form
|
231 |
-
#: contact_form.php:
|
232 |
-
#: includes/class-cntctfrm-settings.php:
|
233 |
msgid "Date/Time"
|
234 |
msgstr "Дата/Час"
|
235 |
|
236 |
# @ contact_form
|
237 |
-
#: contact_form.php:
|
238 |
-
#: includes/class-cntctfrm-settings.php:
|
239 |
msgid "Sent from (referer)"
|
240 |
msgstr "Надіслано від (referer)"
|
241 |
|
242 |
# @ contact_form
|
243 |
-
#: contact_form.php:
|
244 |
-
#: includes/class-cntctfrm-settings.php:
|
245 |
msgid "Using (user agent)"
|
246 |
msgstr "Використовується (user agent)"
|
247 |
|
248 |
# @ contact_form
|
249 |
-
#: contact_form.php:
|
250 |
msgid "Contact from"
|
251 |
msgstr "Контакт із"
|
252 |
|
253 |
# @ contact_form
|
254 |
-
#: contact_form.php:
|
255 |
msgid "Site"
|
256 |
msgstr "Сайт"
|
257 |
|
258 |
# @ contact_form
|
259 |
-
#: contact_form.php:
|
260 |
-
#: includes/class-cntctfrm-settings.php:
|
261 |
msgid "Email"
|
262 |
msgstr "Email"
|
263 |
|
264 |
# @ contact_form
|
265 |
-
#: contact_form.php:
|
266 |
-
#: includes/class-cntctfrm-settings.php:
|
267 |
msgid "Phone Number"
|
268 |
msgstr "Номер телефону"
|
269 |
|
270 |
# @ contact_form
|
271 |
-
#: contact_form.php:
|
272 |
msgid ""
|
273 |
"If you can see this MIME, it means that the MIME type is not supported by "
|
274 |
"your email client!"
|
@@ -277,26 +277,26 @@ msgstr ""
|
|
277 |
"поштовим клієнтом!"
|
278 |
|
279 |
# @ contact_form
|
280 |
-
#: contact_form.php:
|
281 |
msgid "FAQ"
|
282 |
msgstr "FAQ"
|
283 |
|
284 |
# @ contact_form
|
285 |
-
#: contact_form.php:
|
286 |
msgid "Support"
|
287 |
msgstr "Підтримка"
|
288 |
|
289 |
# @ contact_form
|
290 |
-
#: contact_form.php:
|
291 |
msgid "Are you sure that you want to delete this language data?"
|
292 |
msgstr "Ви справді хочете видалити дані для цієї мови?"
|
293 |
|
294 |
# @ contact_form
|
295 |
-
#: contact_form.php:
|
296 |
msgid "Add multiple forms"
|
297 |
msgstr "Додати декілька форм"
|
298 |
|
299 |
-
#: contact_form.php:
|
300 |
msgid ""
|
301 |
"Install Contact Form Multi plugin to create unlimited number of contact "
|
302 |
"forms."
|
@@ -304,83 +304,83 @@ msgstr ""
|
|
304 |
"Встановити плагін Contact Form Multi, щоб мати можливість створювати "
|
305 |
"необмежену кількість контактних форм."
|
306 |
|
307 |
-
#: contact_form.php:
|
308 |
-
#: includes/class-cntctfrm-settings.php:
|
309 |
-
#: includes/class-cntctfrm-settings.php:
|
310 |
-
#: includes/class-cntctfrm-settings.php:
|
311 |
msgid "Close"
|
312 |
msgstr "Закрити"
|
313 |
|
314 |
-
#: contact_form.php:
|
315 |
msgid "Error"
|
316 |
msgstr "Помилка"
|
317 |
|
318 |
-
#: contact_form.php:
|
319 |
msgid "Illegal language code"
|
320 |
msgstr "Нелегальний язиковий код"
|
321 |
|
322 |
# @ contact_form
|
323 |
-
#: contact_form.php:
|
|
|
324 |
#: includes/class-cntctfrm-settings.php:1191
|
325 |
-
#: includes/class-cntctfrm-settings.php:
|
326 |
#: includes/class-cntctfrm-settings.php:1231
|
327 |
-
#: includes/class-cntctfrm-settings.php:
|
328 |
#: includes/class-cntctfrm-settings.php:1267
|
329 |
-
#: includes/class-cntctfrm-settings.php:
|
330 |
#: includes/class-cntctfrm-settings.php:1281
|
331 |
-
#: includes/class-cntctfrm-settings.php:1283
|
332 |
msgid "Use shortcode"
|
333 |
msgstr "Використовуйте шорткод"
|
334 |
|
335 |
# @ contact_form
|
336 |
-
#: contact_form.php:
|
|
|
337 |
#: includes/class-cntctfrm-settings.php:1191
|
338 |
-
#: includes/class-cntctfrm-settings.php:
|
339 |
#: includes/class-cntctfrm-settings.php:1231
|
340 |
-
#: includes/class-cntctfrm-settings.php:
|
341 |
#: includes/class-cntctfrm-settings.php:1267
|
342 |
-
#: includes/class-cntctfrm-settings.php:
|
343 |
#: includes/class-cntctfrm-settings.php:1281
|
344 |
-
#: includes/class-cntctfrm-settings.php:1283
|
345 |
msgid "for this language"
|
346 |
msgstr "для цієї мови"
|
347 |
|
348 |
-
#: contact_form.php:
|
349 |
msgid "Close notice"
|
350 |
msgstr "Закрити"
|
351 |
|
352 |
# @ contact_form
|
353 |
-
#: contact_form.php:
|
354 |
msgid "allows to store your messages to the database."
|
355 |
msgstr "дозволяє зберігати ваші повідомлення у базі даних."
|
356 |
|
357 |
# @ contact_form
|
358 |
-
#: contact_form.php:
|
359 |
msgid "Manage messages that have been sent from your website."
|
360 |
-
msgstr "Контролювати повідомлення, які було відправлено з Вашого сайту.
|
361 |
|
362 |
# @ contact_form
|
363 |
-
#: contact_form.php:
|
364 |
msgid "Learn More"
|
365 |
msgstr "Дізнатись більше"
|
366 |
|
367 |
# @ contact_form
|
368 |
-
#: contact_form.php:
|
369 |
msgid "Contact form"
|
370 |
msgstr "Контактна форма"
|
371 |
|
372 |
# @ contact_form
|
373 |
-
#: contact_form.php:
|
374 |
msgid "Language"
|
375 |
msgstr "Мова"
|
376 |
|
377 |
#: includes/class-cntctfrm-settings.php:26
|
378 |
-
#: includes/class-cntctfrm-settings.php:
|
379 |
msgid "Additional Settings"
|
380 |
msgstr "Додаткові Налаштування"
|
381 |
|
382 |
#: includes/class-cntctfrm-settings.php:27
|
383 |
-
#: includes/class-cntctfrm-settings.php:
|
384 |
msgid "Appearance"
|
385 |
msgstr "Відображення"
|
386 |
|
@@ -389,27 +389,27 @@ msgid "Misc"
|
|
389 |
msgstr "Різне"
|
390 |
|
391 |
#: includes/class-cntctfrm-settings.php:29
|
392 |
-
msgid "License Key"
|
393 |
-
msgstr "Ліцензійний ключ"
|
394 |
-
|
395 |
-
#: includes/class-cntctfrm-settings.php:30
|
396 |
msgid "Custom Code"
|
397 |
msgstr "Користувацький код"
|
398 |
|
399 |
-
#: includes/class-cntctfrm-settings.php:
|
|
|
|
|
|
|
|
|
400 |
msgid "Please enable JavaScript in your browser."
|
401 |
msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
|
402 |
|
403 |
-
#: includes/class-cntctfrm-settings.php:
|
404 |
#, php-format
|
405 |
msgid ""
|
406 |
"Contact Form plugin requires PHP %s or higher. Please contact your hosting "
|
407 |
"provider to upgrade PHP version."
|
408 |
msgstr ""
|
409 |
"Для плагіна Contact Form необхідний PHP %s або вище. Будь ласка зверніться "
|
410 |
-
"до свого хостинг-провайдера для оновлення версії PHP"
|
411 |
|
412 |
-
#: includes/class-cntctfrm-settings.php:
|
413 |
msgid ""
|
414 |
"Email 'FROM' field option was changed, which may cause email messages being "
|
415 |
"moved to the spam folder or email delivery failures."
|
@@ -418,7 +418,7 @@ msgstr ""
|
|
418 |
"повідомлення не будуть доставлені або потраплять до папки Спам."
|
419 |
|
420 |
# @ contact_form
|
421 |
-
#: includes/class-cntctfrm-settings.php:
|
422 |
msgid ""
|
423 |
"If the 'Redirect to page' option is selected then the URL field should be in "
|
424 |
"the following format"
|
@@ -427,34 +427,34 @@ msgstr ""
|
|
427 |
"бути заповнене в наступному форматі"
|
428 |
|
429 |
# @ contact_form
|
430 |
-
#: includes/class-cntctfrm-settings.php:
|
431 |
msgid "Such user does not exist."
|
432 |
msgstr "Такого користувача не існує."
|
433 |
|
434 |
# @ contact_form
|
435 |
-
#: includes/class-cntctfrm-settings.php:
|
436 |
msgid ""
|
437 |
"Please enter a valid email address in the 'Use this email address' field."
|
438 |
msgstr ""
|
439 |
"Будь ласка, введіть коректну email-адресу у поле 'Використовувати цей email'."
|
440 |
|
441 |
# @ contact_form
|
442 |
-
#: includes/class-cntctfrm-settings.php:
|
443 |
msgid "Please enter a valid email address in the 'FROM' field."
|
444 |
msgstr "Будь ласка, введіть коректну email-адресу у полі \"Від\"."
|
445 |
|
446 |
# @ contact_form
|
447 |
-
#: includes/class-cntctfrm-settings.php:
|
448 |
msgid "Settings saved."
|
449 |
msgstr "Налаштування збережено."
|
450 |
|
451 |
# @ contact_form
|
452 |
-
#: includes/class-cntctfrm-settings.php:
|
453 |
msgid "Settings are not saved."
|
454 |
msgstr "Налаштування не збережено."
|
455 |
|
456 |
# @ contact_form
|
457 |
-
#: includes/class-cntctfrm-settings.php:
|
458 |
msgid ""
|
459 |
"If you leave the fields empty, the messages will be sent to the email "
|
460 |
"address specified during registration."
|
@@ -463,17 +463,17 @@ msgstr ""
|
|
463 |
"адресу, вказану під час реєстрації."
|
464 |
|
465 |
# @ contact_form
|
466 |
-
#: includes/class-cntctfrm-settings.php:
|
467 |
msgid "The user's email address"
|
468 |
msgstr "Email-адреса користувача"
|
469 |
|
470 |
# @ contact_form
|
471 |
-
#: includes/class-cntctfrm-settings.php:
|
472 |
msgid "Select a username"
|
473 |
msgstr "Виберіть ім'я користувача"
|
474 |
|
475 |
# @ contact_form
|
476 |
-
#: includes/class-cntctfrm-settings.php:
|
477 |
msgid ""
|
478 |
"Select a username of the person who should get the messages from the contact "
|
479 |
"form."
|
@@ -481,120 +481,120 @@ msgstr ""
|
|
481 |
"Виберіть ім'я користувача, що має отримати повідомлення з контактної форми."
|
482 |
|
483 |
# @ contact_form
|
484 |
-
#: includes/class-cntctfrm-settings.php:
|
485 |
msgid "Use this email address"
|
486 |
msgstr "Використовувати цей email"
|
487 |
|
488 |
# @ contact_form
|
489 |
-
#: includes/class-cntctfrm-settings.php:
|
490 |
msgid "Enter the email address for receiving messages"
|
491 |
msgstr "Вкажіть email, на який ви бажаєте отримувати повідомлення"
|
492 |
|
493 |
# @ contact_form
|
494 |
-
#: includes/class-cntctfrm-settings.php:
|
495 |
msgid "Add department selectbox to the contact form"
|
496 |
msgstr "Додати поле для вибору департаменту до контактної форми"
|
497 |
|
498 |
# @ contact_form
|
499 |
-
#: includes/class-cntctfrm-settings.php:
|
500 |
msgid "Save emails to the database"
|
501 |
msgstr "Зберігати email у базі даних"
|
502 |
|
503 |
# @ contact_form
|
504 |
-
#: includes/class-cntctfrm-settings.php:
|
505 |
-
#: includes/class-cntctfrm-settings.php:
|
506 |
-
#: includes/class-cntctfrm-settings.php:
|
507 |
msgid "Using"
|
508 |
msgstr "Використовуючи"
|
509 |
|
510 |
-
#: includes/class-cntctfrm-settings.php:
|
511 |
-
#: includes/class-cntctfrm-settings.php:
|
512 |
-
#: includes/class-cntctfrm-settings.php:
|
513 |
-
#: includes/class-cntctfrm-settings.php:
|
514 |
msgid "Please activate the appropriate option on"
|
515 |
msgstr "Будь ласка, активуйте вiдповiдну опцiю на сторiнцi налаштувань"
|
516 |
|
517 |
# @ contact_form
|
518 |
-
#: includes/class-cntctfrm-settings.php:
|
519 |
-
#: includes/class-cntctfrm-settings.php:
|
520 |
-
#: includes/class-cntctfrm-settings.php:
|
521 |
-
#: includes/class-cntctfrm-settings.php:
|
522 |
msgid "settings page"
|
523 |
-
msgstr " "
|
524 |
|
525 |
# @ contact_form
|
526 |
-
#: includes/class-cntctfrm-settings.php:
|
527 |
-
#: includes/class-cntctfrm-settings.php:
|
528 |
-
#: includes/class-cntctfrm-settings.php:
|
529 |
-
#: includes/class-cntctfrm-settings.php:
|
530 |
msgid "Activate"
|
531 |
msgstr "Активувати"
|
532 |
|
533 |
# @ contact_form
|
534 |
-
#: includes/class-cntctfrm-settings.php:
|
535 |
-
#: includes/class-cntctfrm-settings.php:
|
536 |
-
#: includes/class-cntctfrm-settings.php:
|
537 |
-
#: includes/class-cntctfrm-settings.php:
|
538 |
msgid "Download"
|
539 |
msgstr "Завантажити"
|
540 |
|
541 |
-
#: includes/class-cntctfrm-settings.php:
|
542 |
msgid "Sending method"
|
543 |
msgstr "Метод відправки"
|
544 |
|
545 |
# @ contact_form
|
546 |
-
#: includes/class-cntctfrm-settings.php:
|
547 |
msgid "Wp-mail"
|
548 |
msgstr "Wp-mail"
|
549 |
|
550 |
# @ contact_form
|
551 |
-
#: includes/class-cntctfrm-settings.php:
|
552 |
msgid "You can use the Wordpress wp_mail function for mailing"
|
553 |
msgstr ""
|
554 |
"Для відправлення повідомлень ви можете використовувати Wordpress функцію "
|
555 |
"wp_mail"
|
556 |
|
557 |
# @ contact_form
|
558 |
-
#: includes/class-cntctfrm-settings.php:
|
559 |
msgid "Mail"
|
560 |
msgstr "Mail"
|
561 |
|
562 |
# @ contact_form
|
563 |
-
#: includes/class-cntctfrm-settings.php:
|
564 |
msgid "You can use the PHP mail function for mailing"
|
565 |
msgstr ""
|
566 |
"Для відправлення повідомлень ви можете використовувати PHP функцію mail"
|
567 |
|
568 |
-
#: includes/class-cntctfrm-settings.php:
|
569 |
msgid "'FROM' field"
|
570 |
msgstr "Поле \"Від\""
|
571 |
|
572 |
# @ contact_form
|
573 |
-
#: includes/class-cntctfrm-settings.php:
|
574 |
msgid "User name"
|
575 |
msgstr "Ім’я користувача"
|
576 |
|
577 |
# @ contact_form
|
578 |
-
#: includes/class-cntctfrm-settings.php:
|
579 |
msgid ""
|
580 |
"The name of the user who fills the form will be used in the field 'From'."
|
581 |
msgstr ""
|
582 |
"Ім’я користувача, який заповнює форму, буде використано у полі \"Від\"."
|
583 |
|
584 |
# @ contact_form
|
585 |
-
#: includes/class-cntctfrm-settings.php:
|
586 |
msgid "User email"
|
587 |
msgstr "Email користувача"
|
588 |
|
589 |
# @ contact_form
|
590 |
-
#: includes/class-cntctfrm-settings.php:
|
591 |
msgid ""
|
592 |
"The email address of the user who fills the form will be used in the field "
|
593 |
"'From'."
|
594 |
msgstr ""
|
595 |
"Email користувача, який заповнює форму, буде використано у полі \"Від\"."
|
596 |
|
597 |
-
#: includes/class-cntctfrm-settings.php:
|
598 |
msgid ""
|
599 |
"If this option is changed, email messages may be moved to the spam folder or "
|
600 |
"email delivery failures may occur."
|
@@ -603,85 +603,85 @@ msgstr ""
|
|
603 |
"доставлені або потраплять до папки Спам."
|
604 |
|
605 |
# @ contact_form
|
606 |
-
#: includes/class-cntctfrm-settings.php:
|
607 |
msgid "Required symbol"
|
608 |
msgstr "Обов'язковий символ"
|
609 |
|
610 |
# @ contact_form
|
611 |
-
#: includes/class-cntctfrm-settings.php:
|
612 |
msgid "Fields"
|
613 |
msgstr "Поля"
|
614 |
|
615 |
# @ contact_form
|
616 |
-
#: includes/class-cntctfrm-settings.php:
|
617 |
-
#: includes/class-cntctfrm-settings.php:
|
618 |
-
#: includes/class-cntctfrm-settings.php:
|
619 |
-
#: includes/class-cntctfrm-settings.php:
|
620 |
-
#: includes/class-cntctfrm-settings.php:
|
621 |
-
#: includes/class-cntctfrm-settings.php:
|
622 |
-
#: includes/class-cntctfrm-settings.php:
|
623 |
-
#: includes/class-cntctfrm-settings.php:
|
624 |
-
#: includes/class-cntctfrm-settings.php:
|
625 |
-
#: includes/class-cntctfrm-settings.php:
|
626 |
-
#: includes/class-cntctfrm-settings.php:
|
627 |
msgid "Used"
|
628 |
msgstr "Використовується"
|
629 |
|
630 |
# @ contact_form
|
631 |
-
#: includes/class-cntctfrm-settings.php:
|
632 |
-
#: includes/class-cntctfrm-settings.php:
|
633 |
-
#: includes/class-cntctfrm-settings.php:
|
634 |
-
#: includes/class-cntctfrm-settings.php:
|
635 |
-
#: includes/class-cntctfrm-settings.php:
|
636 |
-
#: includes/class-cntctfrm-settings.php:
|
637 |
-
#: includes/class-cntctfrm-settings.php:
|
638 |
-
#: includes/class-cntctfrm-settings.php:
|
639 |
-
#: includes/class-cntctfrm-settings.php:
|
640 |
-
#: includes/class-cntctfrm-settings.php:
|
641 |
msgid "Required"
|
642 |
msgstr "Обов'язковий"
|
643 |
|
644 |
# @ contact_form
|
645 |
-
#: includes/class-cntctfrm-settings.php:
|
646 |
-
#: includes/class-cntctfrm-settings.php:
|
647 |
-
#: includes/class-cntctfrm-settings.php:
|
648 |
-
#: includes/class-cntctfrm-settings.php:
|
649 |
-
#: includes/class-cntctfrm-settings.php:
|
650 |
-
#: includes/class-cntctfrm-settings.php:
|
651 |
msgid "Visible"
|
652 |
msgstr "Видимий"
|
653 |
|
654 |
# @ contact_form
|
655 |
-
#: includes/class-cntctfrm-settings.php:
|
656 |
-
#: includes/class-cntctfrm-settings.php:
|
657 |
-
#: includes/class-cntctfrm-settings.php:
|
658 |
-
#: includes/class-cntctfrm-settings.php:
|
659 |
-
#: includes/class-cntctfrm-settings.php:
|
660 |
-
#: includes/class-cntctfrm-settings.php:
|
661 |
msgid "Disabled for editing"
|
662 |
msgstr "Заборонити для редагування"
|
663 |
|
664 |
# @ contact_form
|
665 |
-
#: includes/class-cntctfrm-settings.php:
|
666 |
-
#: includes/class-cntctfrm-settings.php:
|
667 |
-
#: includes/class-cntctfrm-settings.php:
|
668 |
-
#: includes/class-cntctfrm-settings.php:
|
669 |
msgid "Field's default value"
|
670 |
msgstr "Стандартне значення поля"
|
671 |
|
672 |
# @ contact_form
|
673 |
-
#: includes/class-cntctfrm-settings.php:
|
674 |
msgid "Department selectbox"
|
675 |
msgstr "Список відділень"
|
676 |
|
677 |
-
#: includes/class-cntctfrm-settings.php:
|
678 |
msgid "Use User's name as a default value if the user is logged in."
|
679 |
msgstr ""
|
680 |
"Після входу на сайт використовувати ім'я користувача, як значення за "
|
681 |
"замовчуванням."
|
682 |
|
683 |
-
#: includes/class-cntctfrm-settings.php:
|
684 |
-
#: includes/class-cntctfrm-settings.php:
|
685 |
msgid ""
|
686 |
"'Visible' and 'Disabled for editing' options will be applied only to logged-"
|
687 |
"in users."
|
@@ -690,142 +690,142 @@ msgstr ""
|
|
690 |
"тільки для авторизованих користувачів."
|
691 |
|
692 |
# @ contact_form
|
693 |
-
#: includes/class-cntctfrm-settings.php:
|
694 |
msgid "Location selectbox"
|
695 |
msgstr "Список розміщень"
|
696 |
|
697 |
-
#: includes/class-cntctfrm-settings.php:
|
698 |
msgid "Use User's email as a default value if the user is logged in."
|
699 |
msgstr ""
|
700 |
"Після входу на сайт, використовувати еmail користувача, як значення за "
|
701 |
"замовчуванням."
|
702 |
|
703 |
# @ contact_form
|
704 |
-
#: includes/class-cntctfrm-settings.php:
|
705 |
msgid "Attachment block"
|
706 |
msgstr "Прикріпити файл"
|
707 |
|
708 |
# @ contact_form
|
709 |
-
#: includes/class-cntctfrm-settings.php:
|
710 |
msgid "Users can attach the following file formats"
|
711 |
msgstr "Користувачі можуть прикріплювати файли наступних форматів"
|
712 |
|
713 |
-
#: includes/class-cntctfrm-settings.php:
|
714 |
msgid "Multi-attachment"
|
715 |
msgstr "Прикріпити декілька файлів"
|
716 |
|
717 |
-
#: includes/class-cntctfrm-settings.php:
|
718 |
msgid "Enable to multiple file selection"
|
719 |
msgstr "Активуйте, щоб дозволити прикріпляти декілька файлів"
|
720 |
|
721 |
-
#: includes/class-cntctfrm-settings.php:
|
722 |
msgid "Title"
|
723 |
msgstr "Назва"
|
724 |
|
725 |
# @ contact_form
|
726 |
-
#: includes/class-cntctfrm-settings.php:
|
727 |
msgid "Field Type"
|
728 |
msgstr "Тип поля"
|
729 |
|
730 |
# @ contact_form
|
731 |
-
#: includes/class-cntctfrm-settings.php:
|
732 |
msgid "Field's default/available value"
|
733 |
msgstr "Стандартне значення поля"
|
734 |
|
735 |
-
#: includes/class-cntctfrm-settings.php:
|
736 |
msgid "Create Field"
|
737 |
msgstr "Створити поле"
|
738 |
|
739 |
# @ contact_form
|
740 |
-
#: includes/class-cntctfrm-settings.php:
|
741 |
msgid "If you upgrade to Pro version all your settings will be saved."
|
742 |
msgstr "Якщо ви перейдете на Pro версію, всі налаштування будуть збережені."
|
743 |
|
744 |
# @ contact_form
|
745 |
-
#: includes/class-cntctfrm-settings.php:
|
746 |
msgid "Add to the form"
|
747 |
msgstr "Додати до форми"
|
748 |
|
749 |
# @ contact_form
|
750 |
-
#: includes/class-cntctfrm-settings.php:
|
751 |
msgid "Tips below the Attachment"
|
752 |
msgstr "Показувати підказки під блоком прикріплених файлів"
|
753 |
|
754 |
# @ contact_form
|
755 |
-
#: includes/class-cntctfrm-settings.php:
|
756 |
msgid "'Send me a copy' block"
|
757 |
msgstr "Блок \"Надіслати мені копію\""
|
758 |
|
759 |
-
#: includes/class-cntctfrm-settings.php:
|
760 |
msgid "GDPR Compliance"
|
761 |
msgstr "Згода з GDPR"
|
762 |
|
763 |
-
#: includes/class-cntctfrm-settings.php:
|
764 |
msgid "Link to Privacy Policy Page"
|
765 |
msgstr "Посилання на сторінку політики конфіденційності"
|
766 |
|
767 |
-
#: includes/class-cntctfrm-settings.php:
|
768 |
msgid "Activate for network"
|
769 |
msgstr "Активувати для мережі"
|
770 |
|
771 |
# @ contact_form
|
772 |
-
#: includes/class-cntctfrm-settings.php:
|
773 |
msgid "Agreement checkbox"
|
774 |
msgstr "Чекбокс для погодження"
|
775 |
|
776 |
# @ contact_form
|
777 |
-
#: includes/class-cntctfrm-settings.php:
|
778 |
msgid "Required checkbox for submitting the form"
|
779 |
msgstr "Необхідний чекбокс для відправки форми"
|
780 |
|
781 |
# @ contact_form
|
782 |
-
#: includes/class-cntctfrm-settings.php:
|
783 |
msgid "Optional checkbox"
|
784 |
msgstr "Додатковий чекбокс"
|
785 |
|
786 |
# @ contact_form
|
787 |
-
#: includes/class-cntctfrm-settings.php:
|
788 |
msgid "Optional checkbox, the results of which will be displayed in email"
|
789 |
msgstr ""
|
790 |
"Додатковий чекбокс, результати якого буде відображено у еmail-повідомленні"
|
791 |
|
792 |
# @ contact_form
|
793 |
-
#: includes/class-cntctfrm-settings.php:
|
794 |
msgid "Delete an attachment file from the server after the email is sent"
|
795 |
msgstr ""
|
796 |
"Видаляти прикріплений файл з серверу після того, як повідомлення відправлено"
|
797 |
|
798 |
# @ contact_form
|
799 |
-
#: includes/class-cntctfrm-settings.php:
|
800 |
msgid "Email in HTML format sending"
|
801 |
msgstr "Відправка повідомлення в форматі HTML"
|
802 |
|
803 |
# @ contact_form
|
804 |
-
#: includes/class-cntctfrm-settings.php:
|
805 |
msgid "Display additional info in the email"
|
806 |
msgstr "Відображати додаткову інформацію у повідомленні"
|
807 |
|
808 |
# @ contact_form
|
809 |
-
#: includes/class-cntctfrm-settings.php:
|
810 |
msgid "Sent from (IP address)"
|
811 |
msgstr "Надіслано від (IP адреса)"
|
812 |
|
813 |
-
#: includes/class-cntctfrm-settings.php:
|
814 |
msgid "Example: Sent from (IP address): 127.0.0.1"
|
815 |
msgstr "Приклад: відправлено з (IP адреси): 127.0.0.1"
|
816 |
|
817 |
-
#: includes/class-cntctfrm-settings.php:
|
818 |
msgid "Example: Date/Time: August 19, 2013 8:50 pm"
|
819 |
msgstr "Приклад: Дата/Час: 19 Серпня, 2013 20:50"
|
820 |
|
821 |
-
#: includes/class-cntctfrm-settings.php:
|
822 |
msgid ""
|
823 |
"Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
|
824 |
msgstr ""
|
825 |
"Приклад: відправлено з (referer): https://bestwebsoft.com/contacts/contact-"
|
826 |
"us/"
|
827 |
|
828 |
-
#: includes/class-cntctfrm-settings.php:
|
829 |
msgid ""
|
830 |
"Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
|
831 |
"AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
|
@@ -834,84 +834,84 @@ msgstr ""
|
|
834 |
"AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
|
835 |
|
836 |
# @ contact_form
|
837 |
-
#: includes/class-cntctfrm-settings.php:
|
838 |
msgid "Language settings for the field names in the form"
|
839 |
msgstr "Налаштування мови для імен полів форми"
|
840 |
|
841 |
# @ contact_form
|
842 |
-
#: includes/class-cntctfrm-settings.php:
|
843 |
msgid "Add a language"
|
844 |
msgstr "Додати мову"
|
845 |
|
846 |
# @ contact_form
|
847 |
-
#: includes/class-cntctfrm-settings.php:
|
848 |
msgid "Change the names of the contact form fields and error messages"
|
849 |
msgstr "Змінити імена полів контактної форми і повідомлення про помилку"
|
850 |
|
851 |
# @ contact_form
|
852 |
-
#: includes/class-cntctfrm-settings.php:
|
853 |
-
#: includes/class-cntctfrm-settings.php:
|
854 |
-
#: includes/class-cntctfrm-settings.php:
|
855 |
msgid "Default"
|
856 |
msgstr "Стандартно"
|
857 |
|
858 |
# @ contact_form
|
859 |
-
#: includes/class-cntctfrm-settings.php:
|
860 |
-
#: includes/class-cntctfrm-settings.php:
|
861 |
msgid "click to expand/hide the list"
|
862 |
msgstr "натиснути, щоб розгорнути/згорнути список"
|
863 |
|
864 |
# @ contact_form
|
865 |
-
#: includes/class-cntctfrm-settings.php:
|
866 |
-
#: includes/class-cntctfrm-settings.php:
|
867 |
msgid "Tips below the Attachment block"
|
868 |
msgstr "Підказки під блоком прикріплення файлів"
|
869 |
|
870 |
# @ contact_form
|
871 |
-
#: includes/class-cntctfrm-settings.php:
|
872 |
-
#: includes/class-cntctfrm-settings.php:
|
873 |
msgid "Error message for the Name field"
|
874 |
msgstr "Повідомлення про помилку для поля Ім'я"
|
875 |
|
876 |
# @ contact_form
|
877 |
-
#: includes/class-cntctfrm-settings.php:
|
878 |
-
#: includes/class-cntctfrm-settings.php:
|
879 |
msgid "Error message for the Address field"
|
880 |
msgstr "Повідомлення про помилку для поля Адреса"
|
881 |
|
882 |
# @ contact_form
|
883 |
-
#: includes/class-cntctfrm-settings.php:
|
884 |
-
#: includes/class-cntctfrm-settings.php:
|
885 |
msgid "Error message for the Email field"
|
886 |
msgstr "Повідомлення про помилку для поля Email"
|
887 |
|
888 |
# @ contact_form
|
889 |
-
#: includes/class-cntctfrm-settings.php:
|
890 |
-
#: includes/class-cntctfrm-settings.php:
|
891 |
msgid "Error message for the Phone field"
|
892 |
msgstr "Повідомлення про помилку для поля Номер телефону"
|
893 |
|
894 |
# @ contact_form
|
895 |
-
#: includes/class-cntctfrm-settings.php:
|
896 |
-
#: includes/class-cntctfrm-settings.php:
|
897 |
msgid "Error message for the Subject field"
|
898 |
msgstr "Повідомлення про помилку для поля Тема"
|
899 |
|
900 |
# @ contact_form
|
901 |
-
#: includes/class-cntctfrm-settings.php:
|
902 |
-
#: includes/class-cntctfrm-settings.php:
|
903 |
msgid "Error message for the Message field"
|
904 |
msgstr "Повідомлення про помилку для поля Повідомлення"
|
905 |
|
906 |
# @ contact_form
|
907 |
-
#: includes/class-cntctfrm-settings.php:
|
908 |
-
#: includes/class-cntctfrm-settings.php:
|
909 |
msgid "Error message about the file type for the Attachment field"
|
910 |
msgstr "Повідомлення про помилку для поля Прикріплені файли"
|
911 |
|
912 |
# @ contact_form
|
913 |
-
#: includes/class-cntctfrm-settings.php:
|
914 |
-
#: includes/class-cntctfrm-settings.php:
|
915 |
msgid ""
|
916 |
"Error message while uploading a file for the Attachment field to the server"
|
917 |
msgstr ""
|
@@ -919,64 +919,64 @@ msgstr ""
|
|
919 |
"Прикріплені файли"
|
920 |
|
921 |
# @ contact_form
|
922 |
-
#: includes/class-cntctfrm-settings.php:
|
923 |
-
#: includes/class-cntctfrm-settings.php:
|
924 |
msgid "Error message while moving the file for the Attachment field"
|
925 |
msgstr ""
|
926 |
"Повідомлення про помилку під час переміщення файлу для поля Прикріплені файли"
|
927 |
|
928 |
# @ contact_form
|
929 |
-
#: includes/class-cntctfrm-settings.php:
|
930 |
-
#: includes/class-cntctfrm-settings.php:
|
931 |
msgid "Error message when file size limit for the Attachment field is exceeded"
|
932 |
msgstr ""
|
933 |
"Повідомлення про помилку для поля Прикріплені файли, коли розмір файлу "
|
934 |
"перевищує допустимий"
|
935 |
|
936 |
# @ contact_form
|
937 |
-
#: includes/class-cntctfrm-settings.php:
|
938 |
-
#: includes/class-cntctfrm-settings.php:
|
939 |
msgid "Error message for the Captcha field"
|
940 |
msgstr "Повідомлення про помилку для поля Captcha"
|
941 |
|
942 |
# @ contact_form
|
943 |
-
#: includes/class-cntctfrm-settings.php:
|
944 |
-
#: includes/class-cntctfrm-settings.php:
|
945 |
msgid "Error message for the whole form"
|
946 |
msgstr "Повідомлення про помилку для всієї форми"
|
947 |
|
948 |
# @ contact_form
|
949 |
-
#: includes/class-cntctfrm-settings.php:
|
950 |
msgid "Use the changed names of the contact form fields in the email"
|
951 |
msgstr "Використовувати змінені імена полів контактної форми у повідомленні"
|
952 |
|
953 |
# @ contact_form
|
954 |
-
#: includes/class-cntctfrm-settings.php:
|
955 |
msgid "Action after email is sent"
|
956 |
msgstr "Дія після відправлення листа з контактної форми"
|
957 |
|
958 |
# @ contact_form
|
959 |
-
#: includes/class-cntctfrm-settings.php:
|
960 |
msgid "Display text"
|
961 |
msgstr "Показати текст"
|
962 |
|
963 |
# @ contact_form
|
964 |
-
#: includes/class-cntctfrm-settings.php:
|
965 |
-
#: includes/class-cntctfrm-settings.php:
|
966 |
msgid "Text"
|
967 |
msgstr "Текст"
|
968 |
|
969 |
# @ contact_form
|
970 |
-
#: includes/class-cntctfrm-settings.php:
|
971 |
msgid "Redirect to the page"
|
972 |
msgstr "Перенаправлення на сторінку"
|
973 |
|
974 |
# @ contact_form
|
975 |
-
#: includes/class-cntctfrm-settings.php:
|
976 |
msgid "Url"
|
977 |
msgstr "Посилання"
|
978 |
|
979 |
-
#: includes/class-cntctfrm-settings.php:
|
980 |
#, php-format
|
981 |
msgid ""
|
982 |
"Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
|
@@ -985,239 +985,239 @@ msgstr ""
|
|
985 |
"Будь ласка, увімкніть JavaScript щоб змінити опції '%s', '%s', '%s', '%s' та "
|
986 |
"для сортування полів."
|
987 |
|
988 |
-
#: includes/class-cntctfrm-settings.php:
|
989 |
-
#: includes/class-cntctfrm-settings.php:
|
990 |
msgid "Form layout"
|
991 |
msgstr "Шаблон форми"
|
992 |
|
993 |
# @ contact_form
|
994 |
-
#: includes/class-cntctfrm-settings.php:
|
995 |
-
#: includes/class-cntctfrm-settings.php:
|
996 |
msgid "Labels position"
|
997 |
msgstr "Розташування імен полів"
|
998 |
|
999 |
-
#: includes/class-cntctfrm-settings.php:
|
1000 |
-
#: includes/class-cntctfrm-settings.php:
|
1001 |
msgid "Labels align"
|
1002 |
msgstr "Вирівнювання імен полів"
|
1003 |
|
1004 |
# @ contact_form
|
1005 |
-
#: includes/class-cntctfrm-settings.php:
|
1006 |
-
#: includes/class-cntctfrm-settings.php:
|
1007 |
msgid "Submit position"
|
1008 |
msgstr "Позиція кнопки 'Відправити'"
|
1009 |
|
1010 |
# @ contact_form
|
1011 |
-
#: includes/class-cntctfrm-settings.php:
|
1012 |
-
#: includes/class-cntctfrm-settings.php:
|
1013 |
msgid "Add tooltips"
|
1014 |
msgstr "Додати підказки"
|
1015 |
|
1016 |
# @ contact_form
|
1017 |
-
#: includes/class-cntctfrm-settings.php:
|
1018 |
-
#: includes/class-cntctfrm-settings.php:
|
1019 |
msgid "Style options"
|
1020 |
msgstr "Опції стилю"
|
1021 |
|
1022 |
-
#: includes/class-cntctfrm-settings.php:
|
1023 |
msgid "One column"
|
1024 |
msgstr "Одна колонка"
|
1025 |
|
1026 |
-
#: includes/class-cntctfrm-settings.php:
|
1027 |
msgid "Two columns"
|
1028 |
msgstr "Дві колонки"
|
1029 |
|
1030 |
-
#: includes/class-cntctfrm-settings.php:
|
1031 |
-
#: includes/class-cntctfrm-settings.php:
|
1032 |
-
#: includes/class-cntctfrm-settings.php:
|
1033 |
-
#: includes/class-cntctfrm-settings.php:
|
1034 |
msgid "Left"
|
1035 |
msgstr "Ліворуч"
|
1036 |
|
1037 |
-
#: includes/class-cntctfrm-settings.php:
|
1038 |
-
#: includes/class-cntctfrm-settings.php:
|
1039 |
-
#: includes/class-cntctfrm-settings.php:
|
1040 |
-
#: includes/class-cntctfrm-settings.php:
|
1041 |
msgid "Right"
|
1042 |
msgstr "Праворуч"
|
1043 |
|
1044 |
-
#: includes/class-cntctfrm-settings.php:
|
1045 |
msgid "Width"
|
1046 |
msgstr "Ширина"
|
1047 |
|
1048 |
-
#: includes/class-cntctfrm-settings.php:
|
1049 |
msgid "Custom"
|
1050 |
msgstr "Користувацька"
|
1051 |
|
1052 |
-
#: includes/class-cntctfrm-settings.php:
|
1053 |
msgid "px"
|
1054 |
msgstr "пікс"
|
1055 |
|
1056 |
-
#: includes/class-cntctfrm-settings.php:
|
1057 |
msgid "Form align"
|
1058 |
msgstr "Вирівнювання форми"
|
1059 |
|
1060 |
-
#: includes/class-cntctfrm-settings.php:
|
1061 |
-
#: includes/class-cntctfrm-settings.php:
|
1062 |
msgid "Center"
|
1063 |
msgstr "По центру"
|
1064 |
|
1065 |
-
#: includes/class-cntctfrm-settings.php:
|
1066 |
msgid "Top"
|
1067 |
msgstr "Зверху"
|
1068 |
|
1069 |
-
#: includes/class-cntctfrm-settings.php:
|
1070 |
msgid "Bottom"
|
1071 |
msgstr "Знизу"
|
1072 |
|
1073 |
# @ contact_form
|
1074 |
-
#: includes/class-cntctfrm-settings.php:
|
1075 |
msgid "Errors output"
|
1076 |
msgstr "Відображення помилок"
|
1077 |
|
1078 |
# @ contact_form
|
1079 |
-
#: includes/class-cntctfrm-settings.php:
|
1080 |
msgid "Display error messages"
|
1081 |
msgstr "Відображати повідомлення про помилки"
|
1082 |
|
1083 |
# @ contact_form
|
1084 |
-
#: includes/class-cntctfrm-settings.php:
|
1085 |
msgid "Color of the input field errors."
|
1086 |
msgstr "Колір для помилок у полях введення."
|
1087 |
|
1088 |
# @ contact_form
|
1089 |
-
#: includes/class-cntctfrm-settings.php:
|
1090 |
msgid "Display error messages & color of the input field errors"
|
1091 |
msgstr ""
|
1092 |
"Відображення повідомлень про помилку і колір для полів з помилками у полях "
|
1093 |
"введення"
|
1094 |
|
1095 |
# @ contact_form
|
1096 |
-
#: includes/class-cntctfrm-settings.php:
|
1097 |
msgid "Add placeholder to the input blocks"
|
1098 |
msgstr "Додати текст заповнювача для блоків введення"
|
1099 |
|
1100 |
# @ contact_form
|
1101 |
-
#: includes/class-cntctfrm-settings.php:
|
1102 |
msgid "Email address"
|
1103 |
msgstr "Email"
|
1104 |
|
1105 |
# @ contact_form
|
1106 |
-
#: includes/class-cntctfrm-settings.php:
|
1107 |
msgid "Text color"
|
1108 |
msgstr "Колір тексту"
|
1109 |
|
1110 |
# @ contact_form
|
1111 |
-
#: includes/class-cntctfrm-settings.php:
|
1112 |
-
#: includes/class-cntctfrm-settings.php:
|
1113 |
-
#: includes/class-cntctfrm-settings.php:
|
1114 |
-
#: includes/class-cntctfrm-settings.php:
|
1115 |
-
#: includes/class-cntctfrm-settings.php:
|
1116 |
-
#: includes/class-cntctfrm-settings.php:
|
1117 |
-
#: includes/class-cntctfrm-settings.php:
|
1118 |
-
#: includes/class-cntctfrm-settings.php:
|
1119 |
-
#: includes/class-cntctfrm-settings.php:
|
1120 |
-
#: includes/class-cntctfrm-settings.php:
|
1121 |
-
#: includes/class-cntctfrm-settings.php:
|
1122 |
-
#: includes/class-cntctfrm-settings.php:
|
1123 |
msgid "Select Color"
|
1124 |
msgstr "Вибрати колір"
|
1125 |
|
1126 |
# @ contact_form
|
1127 |
-
#: includes/class-cntctfrm-settings.php:
|
1128 |
msgid "Label text color"
|
1129 |
msgstr "Колір написів"
|
1130 |
|
1131 |
# @ contact_form
|
1132 |
-
#: includes/class-cntctfrm-settings.php:
|
1133 |
msgid "Placeholder color"
|
1134 |
msgstr "Колір тексту заповнювача"
|
1135 |
|
1136 |
# @ contact_form
|
1137 |
-
#: includes/class-cntctfrm-settings.php:
|
1138 |
msgid "Errors color"
|
1139 |
msgstr "Колір помилок"
|
1140 |
|
1141 |
# @ contact_form
|
1142 |
-
#: includes/class-cntctfrm-settings.php:
|
1143 |
msgid "Error text color"
|
1144 |
msgstr "Колір тексту помилок"
|
1145 |
|
1146 |
# @ contact_form
|
1147 |
-
#: includes/class-cntctfrm-settings.php:
|
1148 |
msgid "Background color of the input field errors"
|
1149 |
msgstr "Колір заднього фону для полів введення з помилками"
|
1150 |
|
1151 |
# @ contact_form
|
1152 |
-
#: includes/class-cntctfrm-settings.php:
|
1153 |
msgid "Border color of the input field errors"
|
1154 |
msgstr "Колір рамки для полів введення з помилками"
|
1155 |
|
1156 |
# @ contact_form
|
1157 |
-
#: includes/class-cntctfrm-settings.php:
|
1158 |
msgid "Placeholder color of the input field errors"
|
1159 |
msgstr "Колір тексту заповнювача для полів введення з помилками"
|
1160 |
|
1161 |
# @ contact_form
|
1162 |
-
#: includes/class-cntctfrm-settings.php:
|
1163 |
msgid "Input fields"
|
1164 |
msgstr "Поля введення тексту"
|
1165 |
|
1166 |
# @ contact_form
|
1167 |
-
#: includes/class-cntctfrm-settings.php:
|
1168 |
msgid "Input fields background color"
|
1169 |
msgstr "Колір фону полів введення"
|
1170 |
|
1171 |
# @ contact_form
|
1172 |
-
#: includes/class-cntctfrm-settings.php:
|
1173 |
msgid "Text fields color"
|
1174 |
msgstr "Колір текстових полів"
|
1175 |
|
1176 |
# @ contact_form
|
1177 |
-
#: includes/class-cntctfrm-settings.php:
|
1178 |
msgid "Border width in px, numbers only"
|
1179 |
msgstr "Ширина рамки в пікселях, тільки числа"
|
1180 |
|
1181 |
# @ contact_form
|
1182 |
-
#: includes/class-cntctfrm-settings.php:
|
1183 |
-
#: includes/class-cntctfrm-settings.php:
|
1184 |
msgid "Border color"
|
1185 |
msgstr "Колір рамки"
|
1186 |
|
1187 |
# @ contact_form
|
1188 |
-
#: includes/class-cntctfrm-settings.php:
|
1189 |
msgid "Submit button"
|
1190 |
msgstr "Кнопка підтвердження"
|
1191 |
|
1192 |
# @ contact_form
|
1193 |
-
#: includes/class-cntctfrm-settings.php:
|
1194 |
msgid "Width in px, numbers only"
|
1195 |
msgstr "Ширина в пікселях, тільки числа"
|
1196 |
|
1197 |
# @ contact_form
|
1198 |
-
#: includes/class-cntctfrm-settings.php:
|
1199 |
msgid "Button color"
|
1200 |
msgstr "Колір кнопок"
|
1201 |
|
1202 |
# @ contact_form
|
1203 |
-
#: includes/class-cntctfrm-settings.php:
|
1204 |
msgid "Button text color"
|
1205 |
msgstr "Колір тексту кнопок"
|
1206 |
|
1207 |
# @ contact_form
|
1208 |
-
#: includes/class-cntctfrm-settings.php:
|
1209 |
msgid "Contact Form | Preview"
|
1210 |
msgstr "Contact Form | Попередній перегляд"
|
1211 |
|
1212 |
-
#: includes/class-cntctfrm-settings.php:
|
1213 |
msgid "Drag the necessary field to sort fields."
|
1214 |
msgstr "Перетягніть необхідне поле для сортування полів."
|
1215 |
|
1216 |
-
#: includes/class-cntctfrm-settings.php:
|
1217 |
msgid "Contact Form Shortcode"
|
1218 |
msgstr "Шорткод Contact Form"
|
1219 |
|
1220 |
-
#: includes/class-cntctfrm-settings.php:
|
1221 |
msgid "Add Contact Form to your page or post using the following shortcode:"
|
1222 |
msgstr ""
|
1223 |
"Додайте Contact Form на свою сторінку або пост, використовуючи такий "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contact Form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-06-24 14:20+0300\n"
|
6 |
+
"PO-Revision-Date: 2020-06-24 14:20+0300\n"
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: The BestWebSoft Team <plugin@bestwebsoft.com>\n"
|
9 |
"Language: uk\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Generator: Poedit 2.3.1\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
19 |
"X-Poedit-SearchPathExcluded-0: bws_menu\n"
|
20 |
|
21 |
# @ contact_form
|
22 |
+
#: contact_form.php:39 contact_form.php:47 contact_form.php:817
|
23 |
+
#: includes/class-cntctfrm-settings.php:425
|
24 |
msgid "Contact Form Settings"
|
25 |
msgstr "Налаштування Contact Form"
|
26 |
|
27 |
# @ contact_form
|
28 |
+
#: contact_form.php:48 contact_form.php:1846 contact_form.php:1860
|
29 |
#: includes/class-cntctfrm-settings.php:25
|
30 |
msgid "Settings"
|
31 |
msgstr "Налаштування"
|
32 |
|
33 |
+
#: contact_form.php:63 includes/class-cntctfrm-settings.php:483
|
34 |
+
#: includes/class-cntctfrm-settings.php:844
|
35 |
+
#: includes/class-cntctfrm-settings.php:937
|
36 |
+
#: includes/class-cntctfrm-settings.php:1094
|
37 |
+
#: includes/class-cntctfrm-settings.php:1619
|
38 |
msgid "Upgrade to Pro"
|
39 |
msgstr "Оновитися до Pro"
|
40 |
|
41 |
# @ contact_form
|
42 |
+
#: contact_form.php:516 contact_form.php:1621 contact_form.php:1667
|
43 |
+
#: includes/class-cntctfrm-settings.php:574
|
44 |
+
#: includes/class-cntctfrm-settings.php:667
|
45 |
+
#: includes/class-cntctfrm-settings.php:1163
|
46 |
+
#: includes/class-cntctfrm-settings.php:1203
|
47 |
+
#: includes/class-cntctfrm-settings.php:1450
|
48 |
msgid "Name"
|
49 |
msgstr "Ім'я"
|
50 |
|
51 |
# @ contact_form
|
52 |
+
#: contact_form.php:517 contact_form.php:1628 contact_form.php:1673
|
53 |
+
#: includes/class-cntctfrm-settings.php:714
|
54 |
+
#: includes/class-cntctfrm-settings.php:1164
|
55 |
+
#: includes/class-cntctfrm-settings.php:1204
|
56 |
+
#: includes/class-cntctfrm-settings.php:1455
|
57 |
msgid "Address"
|
58 |
msgstr "Адреса"
|
59 |
|
60 |
# @ contact_form
|
61 |
+
#: contact_form.php:518 includes/class-cntctfrm-settings.php:730
|
62 |
+
#: includes/class-cntctfrm-settings.php:1165
|
63 |
+
#: includes/class-cntctfrm-settings.php:1205
|
64 |
msgid "Email Address"
|
65 |
msgstr "Email"
|
66 |
|
67 |
# @ contact_form
|
68 |
+
#: contact_form.php:519 includes/class-cntctfrm-settings.php:760
|
69 |
+
#: includes/class-cntctfrm-settings.php:1166
|
70 |
+
#: includes/class-cntctfrm-settings.php:1206
|
71 |
msgid "Phone number"
|
72 |
msgstr "Номер телефону"
|
73 |
|
74 |
# @ contact_form
|
75 |
+
#: contact_form.php:520 contact_form.php:1639 contact_form.php:1682
|
76 |
+
#: includes/class-cntctfrm-settings.php:776
|
77 |
+
#: includes/class-cntctfrm-settings.php:1167
|
78 |
+
#: includes/class-cntctfrm-settings.php:1207
|
79 |
+
#: includes/class-cntctfrm-settings.php:1470
|
80 |
msgid "Subject"
|
81 |
msgstr "Тема"
|
82 |
|
83 |
# @ contact_form
|
84 |
+
#: contact_form.php:521 contact_form.php:1644 contact_form.php:1686
|
85 |
+
#: includes/class-cntctfrm-settings.php:807
|
86 |
+
#: includes/class-cntctfrm-settings.php:1168
|
87 |
+
#: includes/class-cntctfrm-settings.php:1208
|
88 |
+
#: includes/class-cntctfrm-settings.php:1474
|
89 |
msgid "Message"
|
90 |
msgstr "Повідомлення"
|
91 |
|
92 |
# @ contact_form
|
93 |
+
#: contact_form.php:522 includes/class-cntctfrm-settings.php:1169
|
94 |
+
#: includes/class-cntctfrm-settings.php:1209
|
95 |
+
#: includes/class-cntctfrm-settings.php:1479
|
96 |
msgid "Attachment"
|
97 |
msgstr "Вкладений файл"
|
98 |
|
99 |
# @ contact_form
|
100 |
+
#: contact_form.php:523
|
101 |
msgid ""
|
102 |
"Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
|
103 |
"EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT."
|
107 |
"PPT."
|
108 |
|
109 |
# @ contact_form
|
110 |
+
#: contact_form.php:524 includes/class-cntctfrm-settings.php:1171
|
111 |
+
#: includes/class-cntctfrm-settings.php:1211
|
112 |
msgid "Send me a copy"
|
113 |
msgstr "Надіслати мені копію"
|
114 |
|
115 |
+
#: contact_form.php:525 includes/class-cntctfrm-settings.php:1172
|
116 |
+
#: includes/class-cntctfrm-settings.php:1212
|
117 |
msgid "I consent to having this site collect my personal data."
|
118 |
msgstr "Я дозволяю цьому сайту збирати мої особисті дані."
|
119 |
|
120 |
# @ contact_form
|
121 |
+
#: contact_form.php:526 contact_form.php:1938
|
122 |
+
#: includes/class-cntctfrm-settings.php:1173
|
123 |
+
#: includes/class-cntctfrm-settings.php:1213
|
124 |
msgid "Learn more"
|
125 |
msgstr "Дізнатись більше"
|
126 |
|
127 |
# @ contact_form
|
128 |
+
#: contact_form.php:527 includes/class-cntctfrm-settings.php:1174
|
129 |
+
#: includes/class-cntctfrm-settings.php:1214
|
130 |
msgid "Submit"
|
131 |
msgstr "Підтвердити"
|
132 |
|
133 |
# @ contact_form
|
134 |
+
#: contact_form.php:528
|
135 |
msgid "Your name is required."
|
136 |
msgstr "Необхідно вказати своє ім'я."
|
137 |
|
138 |
# @ contact_form
|
139 |
+
#: contact_form.php:529
|
140 |
msgid "Address is required."
|
141 |
+
msgstr "Необхідно вказати свою адресу."
|
142 |
|
143 |
# @ contact_form
|
144 |
+
#: contact_form.php:530
|
145 |
msgid "A valid email address is required."
|
146 |
msgstr "Необхідно вказати коректну email-адресу."
|
147 |
|
148 |
# @ contact_form
|
149 |
+
#: contact_form.php:531
|
150 |
msgid "Phone number is required."
|
151 |
msgstr "Необхідно вказати номер телефону."
|
152 |
|
153 |
# @ contact_form
|
154 |
+
#: contact_form.php:532
|
155 |
msgid "Subject is required."
|
156 |
msgstr "Необхідно вказати тему."
|
157 |
|
158 |
# @ contact_form
|
159 |
+
#: contact_form.php:533
|
160 |
msgid "Message text is required."
|
161 |
msgstr "Повідомлення не може бути порожнім."
|
162 |
|
163 |
# @ contact_form
|
164 |
+
#: contact_form.php:534
|
165 |
msgid "File format is not valid."
|
166 |
msgstr "Некоректний формат файлу."
|
167 |
|
168 |
# @ contact_form
|
169 |
+
#: contact_form.php:535
|
170 |
msgid "File upload error."
|
171 |
msgstr "Помилка завантаження файлу."
|
172 |
|
173 |
# @ contact_form
|
174 |
+
#: contact_form.php:536
|
175 |
msgid "The file could not be uploaded."
|
176 |
msgstr "Неможна завантажити файл."
|
177 |
|
178 |
# @ contact_form
|
179 |
+
#: contact_form.php:537
|
180 |
msgid "This file is too large."
|
181 |
msgstr "Файл занадто великий."
|
182 |
|
183 |
# @ contact_form
|
184 |
+
#: contact_form.php:538
|
185 |
msgid "Please fill out the CAPTCHA."
|
186 |
msgstr "Будь ласка, введіть CAPTCHA."
|
187 |
|
188 |
# @ contact_form
|
189 |
+
#: contact_form.php:539
|
190 |
msgid "Please make corrections below and try again."
|
191 |
msgstr "Будь ласка, внесіть поправки у виділені поля і спробуйте знову."
|
192 |
|
193 |
# @ contact_form
|
194 |
+
#: contact_form.php:541
|
195 |
msgid "Thank you for contacting us."
|
196 |
msgstr "Дякуємо, що зв'язалися з нами."
|
197 |
|
198 |
+
#: contact_form.php:821
|
199 |
msgid "NEW_FORM"
|
200 |
msgstr "НОВА_ФОРМА"
|
201 |
|
202 |
# @ contact_form
|
203 |
+
#: contact_form.php:822
|
204 |
msgid ""
|
205 |
"If you want to create multiple contact forms, please install the Contact "
|
206 |
"Form Multi plugin."
|
208 |
"Якщо ви хочете створити декілька різних контактних форм, будь ласка, "
|
209 |
"встановіть плагін Contact Form Multi."
|
210 |
|
211 |
+
#: contact_form.php:827
|
212 |
msgid ""
|
213 |
"Contact Form plugin doesn't support your current version of Contact Form "
|
214 |
"Multi plugin. Please update Contact Form Multi plugin to version 1.2.6 or "
|
218 |
"Будь ласка, оновіть плагін Contact Form Multi до версії 1.2.6 або вище."
|
219 |
|
220 |
# @ contact_form
|
221 |
+
#: contact_form.php:929
|
222 |
msgid "Sorry, email message could not be delivered."
|
223 |
msgstr "Вибачте, ваше повідомлення не може бути доставлено."
|
224 |
|
225 |
# @ contact_form
|
226 |
+
#: contact_form.php:1577 contact_form.php:1579
|
227 |
msgid "Sent from (ip address)"
|
228 |
msgstr "Надіслано від (IP адреса)"
|
229 |
|
230 |
# @ contact_form
|
231 |
+
#: contact_form.php:1583 contact_form.php:1585
|
232 |
+
#: includes/class-cntctfrm-settings.php:1121
|
233 |
msgid "Date/Time"
|
234 |
msgstr "Дата/Час"
|
235 |
|
236 |
# @ contact_form
|
237 |
+
#: contact_form.php:1589 contact_form.php:1591
|
238 |
+
#: includes/class-cntctfrm-settings.php:1122
|
239 |
msgid "Sent from (referer)"
|
240 |
msgstr "Надіслано від (referer)"
|
241 |
|
242 |
# @ contact_form
|
243 |
+
#: contact_form.php:1595 contact_form.php:1597
|
244 |
+
#: includes/class-cntctfrm-settings.php:1123
|
245 |
msgid "Using (user agent)"
|
246 |
msgstr "Використовується (user agent)"
|
247 |
|
248 |
# @ contact_form
|
249 |
+
#: contact_form.php:1607
|
250 |
msgid "Contact from"
|
251 |
msgstr "Контакт із"
|
252 |
|
253 |
# @ contact_form
|
254 |
+
#: contact_form.php:1612 contact_form.php:1661
|
255 |
msgid "Site"
|
256 |
msgstr "Сайт"
|
257 |
|
258 |
# @ contact_form
|
259 |
+
#: contact_form.php:1634 contact_form.php:1678
|
260 |
+
#: includes/class-cntctfrm-settings.php:598
|
261 |
msgid "Email"
|
262 |
msgstr "Email"
|
263 |
|
264 |
# @ contact_form
|
265 |
+
#: contact_form.php:1650 contact_form.php:1691
|
266 |
+
#: includes/class-cntctfrm-settings.php:1465
|
267 |
msgid "Phone Number"
|
268 |
msgstr "Номер телефону"
|
269 |
|
270 |
# @ contact_form
|
271 |
+
#: contact_form.php:1789
|
272 |
msgid ""
|
273 |
"If you can see this MIME, it means that the MIME type is not supported by "
|
274 |
"your email client!"
|
277 |
"поштовим клієнтом!"
|
278 |
|
279 |
# @ contact_form
|
280 |
+
#: contact_form.php:1861
|
281 |
msgid "FAQ"
|
282 |
msgstr "FAQ"
|
283 |
|
284 |
# @ contact_form
|
285 |
+
#: contact_form.php:1862
|
286 |
msgid "Support"
|
287 |
msgstr "Підтримка"
|
288 |
|
289 |
# @ contact_form
|
290 |
+
#: contact_form.php:1911
|
291 |
msgid "Are you sure that you want to delete this language data?"
|
292 |
msgstr "Ви справді хочете видалити дані для цієї мови?"
|
293 |
|
294 |
# @ contact_form
|
295 |
+
#: contact_form.php:1933
|
296 |
msgid "Add multiple forms"
|
297 |
msgstr "Додати декілька форм"
|
298 |
|
299 |
+
#: contact_form.php:1933
|
300 |
msgid ""
|
301 |
"Install Contact Form Multi plugin to create unlimited number of contact "
|
302 |
"forms."
|
304 |
"Встановити плагін Contact Form Multi, щоб мати можливість створювати "
|
305 |
"необмежену кількість контактних форм."
|
306 |
|
307 |
+
#: contact_form.php:1942 includes/class-cntctfrm-settings.php:469
|
308 |
+
#: includes/class-cntctfrm-settings.php:890
|
309 |
+
#: includes/class-cntctfrm-settings.php:1083
|
310 |
+
#: includes/class-cntctfrm-settings.php:1378
|
311 |
msgid "Close"
|
312 |
msgstr "Закрити"
|
313 |
|
314 |
+
#: contact_form.php:1996
|
315 |
msgid "Error"
|
316 |
msgstr "Помилка"
|
317 |
|
318 |
+
#: contact_form.php:1996 contact_form.php:1998
|
319 |
msgid "Illegal language code"
|
320 |
msgstr "Нелегальний язиковий код"
|
321 |
|
322 |
# @ contact_form
|
323 |
+
#: contact_form.php:2032 contact_form.php:2034
|
324 |
+
#: includes/class-cntctfrm-settings.php:1189
|
325 |
#: includes/class-cntctfrm-settings.php:1191
|
326 |
+
#: includes/class-cntctfrm-settings.php:1229
|
327 |
#: includes/class-cntctfrm-settings.php:1231
|
328 |
+
#: includes/class-cntctfrm-settings.php:1265
|
329 |
#: includes/class-cntctfrm-settings.php:1267
|
330 |
+
#: includes/class-cntctfrm-settings.php:1279
|
331 |
#: includes/class-cntctfrm-settings.php:1281
|
|
|
332 |
msgid "Use shortcode"
|
333 |
msgstr "Використовуйте шорткод"
|
334 |
|
335 |
# @ contact_form
|
336 |
+
#: contact_form.php:2032 contact_form.php:2034
|
337 |
+
#: includes/class-cntctfrm-settings.php:1189
|
338 |
#: includes/class-cntctfrm-settings.php:1191
|
339 |
+
#: includes/class-cntctfrm-settings.php:1229
|
340 |
#: includes/class-cntctfrm-settings.php:1231
|
341 |
+
#: includes/class-cntctfrm-settings.php:1265
|
342 |
#: includes/class-cntctfrm-settings.php:1267
|
343 |
+
#: includes/class-cntctfrm-settings.php:1279
|
344 |
#: includes/class-cntctfrm-settings.php:1281
|
|
|
345 |
msgid "for this language"
|
346 |
msgstr "для цієї мови"
|
347 |
|
348 |
+
#: contact_form.php:2179
|
349 |
msgid "Close notice"
|
350 |
msgstr "Закрити"
|
351 |
|
352 |
# @ contact_form
|
353 |
+
#: contact_form.php:2184
|
354 |
msgid "allows to store your messages to the database."
|
355 |
msgstr "дозволяє зберігати ваші повідомлення у базі даних."
|
356 |
|
357 |
# @ contact_form
|
358 |
+
#: contact_form.php:2185
|
359 |
msgid "Manage messages that have been sent from your website."
|
360 |
+
msgstr "Контролювати повідомлення, які було відправлено з Вашого сайту."
|
361 |
|
362 |
# @ contact_form
|
363 |
+
#: contact_form.php:2188
|
364 |
msgid "Learn More"
|
365 |
msgstr "Дізнатись більше"
|
366 |
|
367 |
# @ contact_form
|
368 |
+
#: contact_form.php:2248
|
369 |
msgid "Contact form"
|
370 |
msgstr "Контактна форма"
|
371 |
|
372 |
# @ contact_form
|
373 |
+
#: contact_form.php:2261 contact_form.php:2271
|
374 |
msgid "Language"
|
375 |
msgstr "Мова"
|
376 |
|
377 |
#: includes/class-cntctfrm-settings.php:26
|
378 |
+
#: includes/class-cntctfrm-settings.php:546
|
379 |
msgid "Additional Settings"
|
380 |
msgstr "Додаткові Налаштування"
|
381 |
|
382 |
#: includes/class-cntctfrm-settings.php:27
|
383 |
+
#: includes/class-cntctfrm-settings.php:1304
|
384 |
msgid "Appearance"
|
385 |
msgstr "Відображення"
|
386 |
|
389 |
msgstr "Різне"
|
390 |
|
391 |
#: includes/class-cntctfrm-settings.php:29
|
|
|
|
|
|
|
|
|
392 |
msgid "Custom Code"
|
393 |
msgstr "Користувацький код"
|
394 |
|
395 |
+
#: includes/class-cntctfrm-settings.php:30
|
396 |
+
msgid "License Key"
|
397 |
+
msgstr "Ліцензійний ключ"
|
398 |
+
|
399 |
+
#: includes/class-cntctfrm-settings.php:95
|
400 |
msgid "Please enable JavaScript in your browser."
|
401 |
msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
|
402 |
|
403 |
+
#: includes/class-cntctfrm-settings.php:97
|
404 |
#, php-format
|
405 |
msgid ""
|
406 |
"Contact Form plugin requires PHP %s or higher. Please contact your hosting "
|
407 |
"provider to upgrade PHP version."
|
408 |
msgstr ""
|
409 |
"Для плагіна Contact Form необхідний PHP %s або вище. Будь ласка зверніться "
|
410 |
+
"до свого хостинг-провайдера для оновлення версії PHP."
|
411 |
|
412 |
+
#: includes/class-cntctfrm-settings.php:347
|
413 |
msgid ""
|
414 |
"Email 'FROM' field option was changed, which may cause email messages being "
|
415 |
"moved to the spam folder or email delivery failures."
|
418 |
"повідомлення не будуть доставлені або потраплять до папки Спам."
|
419 |
|
420 |
# @ contact_form
|
421 |
+
#: includes/class-cntctfrm-settings.php:357
|
422 |
msgid ""
|
423 |
"If the 'Redirect to page' option is selected then the URL field should be in "
|
424 |
"the following format"
|
427 |
"бути заповнене в наступному форматі"
|
428 |
|
429 |
# @ contact_form
|
430 |
+
#: includes/class-cntctfrm-settings.php:364
|
431 |
msgid "Such user does not exist."
|
432 |
msgstr "Такого користувача не існує."
|
433 |
|
434 |
# @ contact_form
|
435 |
+
#: includes/class-cntctfrm-settings.php:374
|
436 |
msgid ""
|
437 |
"Please enter a valid email address in the 'Use this email address' field."
|
438 |
msgstr ""
|
439 |
"Будь ласка, введіть коректну email-адресу у поле 'Використовувати цей email'."
|
440 |
|
441 |
# @ contact_form
|
442 |
+
#: includes/class-cntctfrm-settings.php:382
|
443 |
msgid "Please enter a valid email address in the 'FROM' field."
|
444 |
msgstr "Будь ласка, введіть коректну email-адресу у полі \"Від\"."
|
445 |
|
446 |
# @ contact_form
|
447 |
+
#: includes/class-cntctfrm-settings.php:402
|
448 |
msgid "Settings saved."
|
449 |
msgstr "Налаштування збережено."
|
450 |
|
451 |
# @ contact_form
|
452 |
+
#: includes/class-cntctfrm-settings.php:404
|
453 |
msgid "Settings are not saved."
|
454 |
msgstr "Налаштування не збережено."
|
455 |
|
456 |
# @ contact_form
|
457 |
+
#: includes/class-cntctfrm-settings.php:429
|
458 |
msgid ""
|
459 |
"If you leave the fields empty, the messages will be sent to the email "
|
460 |
"address specified during registration."
|
463 |
"адресу, вказану під час реєстрації."
|
464 |
|
465 |
# @ contact_form
|
466 |
+
#: includes/class-cntctfrm-settings.php:432
|
467 |
msgid "The user's email address"
|
468 |
msgstr "Email-адреса користувача"
|
469 |
|
470 |
# @ contact_form
|
471 |
+
#: includes/class-cntctfrm-settings.php:437
|
472 |
msgid "Select a username"
|
473 |
msgstr "Виберіть ім'я користувача"
|
474 |
|
475 |
# @ contact_form
|
476 |
+
#: includes/class-cntctfrm-settings.php:450
|
477 |
msgid ""
|
478 |
"Select a username of the person who should get the messages from the contact "
|
479 |
"form."
|
481 |
"Виберіть ім'я користувача, що має отримати повідомлення з контактної форми."
|
482 |
|
483 |
# @ contact_form
|
484 |
+
#: includes/class-cntctfrm-settings.php:455
|
485 |
msgid "Use this email address"
|
486 |
msgstr "Використовувати цей email"
|
487 |
|
488 |
# @ contact_form
|
489 |
+
#: includes/class-cntctfrm-settings.php:460
|
490 |
msgid "Enter the email address for receiving messages"
|
491 |
msgstr "Вкажіть email, на який ви бажаєте отримувати повідомлення"
|
492 |
|
493 |
# @ contact_form
|
494 |
+
#: includes/class-cntctfrm-settings.php:473
|
495 |
msgid "Add department selectbox to the contact form"
|
496 |
msgstr "Додати поле для вибору департаменту до контактної форми"
|
497 |
|
498 |
# @ contact_form
|
499 |
+
#: includes/class-cntctfrm-settings.php:492
|
500 |
msgid "Save emails to the database"
|
501 |
msgstr "Зберігати email у базі даних"
|
502 |
|
503 |
# @ contact_form
|
504 |
+
#: includes/class-cntctfrm-settings.php:504
|
505 |
+
#: includes/class-cntctfrm-settings.php:518
|
506 |
+
#: includes/class-cntctfrm-settings.php:525
|
507 |
msgid "Using"
|
508 |
msgstr "Використовуючи"
|
509 |
|
510 |
+
#: includes/class-cntctfrm-settings.php:510
|
511 |
+
#: includes/class-cntctfrm-settings.php:985
|
512 |
+
#: includes/class-cntctfrm-settings.php:1026
|
513 |
+
#: includes/class-cntctfrm-settings.php:1061
|
514 |
msgid "Please activate the appropriate option on"
|
515 |
msgstr "Будь ласка, активуйте вiдповiдну опцiю на сторiнцi налаштувань"
|
516 |
|
517 |
# @ contact_form
|
518 |
+
#: includes/class-cntctfrm-settings.php:513
|
519 |
+
#: includes/class-cntctfrm-settings.php:988
|
520 |
+
#: includes/class-cntctfrm-settings.php:1029
|
521 |
+
#: includes/class-cntctfrm-settings.php:1064
|
522 |
msgid "settings page"
|
523 |
+
msgstr "налаштування сторінки"
|
524 |
|
525 |
# @ contact_form
|
526 |
+
#: includes/class-cntctfrm-settings.php:519
|
527 |
+
#: includes/class-cntctfrm-settings.php:995
|
528 |
+
#: includes/class-cntctfrm-settings.php:1037
|
529 |
+
#: includes/class-cntctfrm-settings.php:1071
|
530 |
msgid "Activate"
|
531 |
msgstr "Активувати"
|
532 |
|
533 |
# @ contact_form
|
534 |
+
#: includes/class-cntctfrm-settings.php:526
|
535 |
+
#: includes/class-cntctfrm-settings.php:1004
|
536 |
+
#: includes/class-cntctfrm-settings.php:1043
|
537 |
+
#: includes/class-cntctfrm-settings.php:1076
|
538 |
msgid "Download"
|
539 |
msgstr "Завантажити"
|
540 |
|
541 |
+
#: includes/class-cntctfrm-settings.php:551
|
542 |
msgid "Sending method"
|
543 |
msgstr "Метод відправки"
|
544 |
|
545 |
# @ contact_form
|
546 |
+
#: includes/class-cntctfrm-settings.php:556
|
547 |
msgid "Wp-mail"
|
548 |
msgstr "Wp-mail"
|
549 |
|
550 |
# @ contact_form
|
551 |
+
#: includes/class-cntctfrm-settings.php:557
|
552 |
msgid "You can use the Wordpress wp_mail function for mailing"
|
553 |
msgstr ""
|
554 |
"Для відправлення повідомлень ви можете використовувати Wordpress функцію "
|
555 |
"wp_mail"
|
556 |
|
557 |
# @ contact_form
|
558 |
+
#: includes/class-cntctfrm-settings.php:562
|
559 |
msgid "Mail"
|
560 |
msgstr "Mail"
|
561 |
|
562 |
# @ contact_form
|
563 |
+
#: includes/class-cntctfrm-settings.php:563
|
564 |
msgid "You can use the PHP mail function for mailing"
|
565 |
msgstr ""
|
566 |
"Для відправлення повідомлень ви можете використовувати PHP функцію mail"
|
567 |
|
568 |
+
#: includes/class-cntctfrm-settings.php:569
|
569 |
msgid "'FROM' field"
|
570 |
msgstr "Поле \"Від\""
|
571 |
|
572 |
# @ contact_form
|
573 |
+
#: includes/class-cntctfrm-settings.php:585
|
574 |
msgid "User name"
|
575 |
msgstr "Ім’я користувача"
|
576 |
|
577 |
# @ contact_form
|
578 |
+
#: includes/class-cntctfrm-settings.php:587
|
579 |
msgid ""
|
580 |
"The name of the user who fills the form will be used in the field 'From'."
|
581 |
msgstr ""
|
582 |
"Ім’я користувача, який заповнює форму, буде використано у полі \"Від\"."
|
583 |
|
584 |
# @ contact_form
|
585 |
+
#: includes/class-cntctfrm-settings.php:609
|
586 |
msgid "User email"
|
587 |
msgstr "Email користувача"
|
588 |
|
589 |
# @ contact_form
|
590 |
+
#: includes/class-cntctfrm-settings.php:611
|
591 |
msgid ""
|
592 |
"The email address of the user who fills the form will be used in the field "
|
593 |
"'From'."
|
594 |
msgstr ""
|
595 |
"Email користувача, який заповнює форму, буде використано у полі \"Від\"."
|
596 |
|
597 |
+
#: includes/class-cntctfrm-settings.php:620
|
598 |
msgid ""
|
599 |
"If this option is changed, email messages may be moved to the spam folder or "
|
600 |
"email delivery failures may occur."
|
603 |
"доставлені або потраплять до папки Спам."
|
604 |
|
605 |
# @ contact_form
|
606 |
+
#: includes/class-cntctfrm-settings.php:629
|
607 |
msgid "Required symbol"
|
608 |
msgstr "Обов'язковий символ"
|
609 |
|
610 |
# @ contact_form
|
611 |
+
#: includes/class-cntctfrm-settings.php:639
|
612 |
msgid "Fields"
|
613 |
msgstr "Поля"
|
614 |
|
615 |
# @ contact_form
|
616 |
+
#: includes/class-cntctfrm-settings.php:640
|
617 |
+
#: includes/class-cntctfrm-settings.php:655
|
618 |
+
#: includes/class-cntctfrm-settings.php:670
|
619 |
+
#: includes/class-cntctfrm-settings.php:697
|
620 |
+
#: includes/class-cntctfrm-settings.php:717
|
621 |
+
#: includes/class-cntctfrm-settings.php:735
|
622 |
+
#: includes/class-cntctfrm-settings.php:763
|
623 |
+
#: includes/class-cntctfrm-settings.php:780
|
624 |
+
#: includes/class-cntctfrm-settings.php:811
|
625 |
+
#: includes/class-cntctfrm-settings.php:859
|
626 |
+
#: includes/class-cntctfrm-settings.php:898
|
627 |
msgid "Used"
|
628 |
msgstr "Використовується"
|
629 |
|
630 |
# @ contact_form
|
631 |
+
#: includes/class-cntctfrm-settings.php:641
|
632 |
+
#: includes/class-cntctfrm-settings.php:659
|
633 |
+
#: includes/class-cntctfrm-settings.php:674
|
634 |
+
#: includes/class-cntctfrm-settings.php:701
|
635 |
+
#: includes/class-cntctfrm-settings.php:721
|
636 |
+
#: includes/class-cntctfrm-settings.php:739
|
637 |
+
#: includes/class-cntctfrm-settings.php:767
|
638 |
+
#: includes/class-cntctfrm-settings.php:787
|
639 |
+
#: includes/class-cntctfrm-settings.php:818
|
640 |
+
#: includes/class-cntctfrm-settings.php:899
|
641 |
msgid "Required"
|
642 |
msgstr "Обов'язковий"
|
643 |
|
644 |
# @ contact_form
|
645 |
+
#: includes/class-cntctfrm-settings.php:643
|
646 |
+
#: includes/class-cntctfrm-settings.php:679
|
647 |
+
#: includes/class-cntctfrm-settings.php:743
|
648 |
+
#: includes/class-cntctfrm-settings.php:792
|
649 |
+
#: includes/class-cntctfrm-settings.php:823
|
650 |
+
#: includes/class-cntctfrm-settings.php:900
|
651 |
msgid "Visible"
|
652 |
msgstr "Видимий"
|
653 |
|
654 |
# @ contact_form
|
655 |
+
#: includes/class-cntctfrm-settings.php:644
|
656 |
+
#: includes/class-cntctfrm-settings.php:683
|
657 |
+
#: includes/class-cntctfrm-settings.php:747
|
658 |
+
#: includes/class-cntctfrm-settings.php:796
|
659 |
+
#: includes/class-cntctfrm-settings.php:827
|
660 |
+
#: includes/class-cntctfrm-settings.php:901
|
661 |
msgid "Disabled for editing"
|
662 |
msgstr "Заборонити для редагування"
|
663 |
|
664 |
# @ contact_form
|
665 |
+
#: includes/class-cntctfrm-settings.php:645
|
666 |
+
#: includes/class-cntctfrm-settings.php:707
|
667 |
+
#: includes/class-cntctfrm-settings.php:800
|
668 |
+
#: includes/class-cntctfrm-settings.php:831
|
669 |
msgid "Field's default value"
|
670 |
msgstr "Стандартне значення поля"
|
671 |
|
672 |
# @ contact_form
|
673 |
+
#: includes/class-cntctfrm-settings.php:652
|
674 |
msgid "Department selectbox"
|
675 |
msgstr "Список відділень"
|
676 |
|
677 |
+
#: includes/class-cntctfrm-settings.php:687
|
678 |
msgid "Use User's name as a default value if the user is logged in."
|
679 |
msgstr ""
|
680 |
"Після входу на сайт використовувати ім'я користувача, як значення за "
|
681 |
"замовчуванням."
|
682 |
|
683 |
+
#: includes/class-cntctfrm-settings.php:688
|
684 |
+
#: includes/class-cntctfrm-settings.php:752
|
685 |
msgid ""
|
686 |
"'Visible' and 'Disabled for editing' options will be applied only to logged-"
|
687 |
"in users."
|
690 |
"тільки для авторизованих користувачів."
|
691 |
|
692 |
# @ contact_form
|
693 |
+
#: includes/class-cntctfrm-settings.php:694
|
694 |
msgid "Location selectbox"
|
695 |
msgstr "Список розміщень"
|
696 |
|
697 |
+
#: includes/class-cntctfrm-settings.php:751
|
698 |
msgid "Use User's email as a default value if the user is logged in."
|
699 |
msgstr ""
|
700 |
"Після входу на сайт, використовувати еmail користувача, як значення за "
|
701 |
"замовчуванням."
|
702 |
|
703 |
# @ contact_form
|
704 |
+
#: includes/class-cntctfrm-settings.php:852
|
705 |
msgid "Attachment block"
|
706 |
msgstr "Прикріпити файл"
|
707 |
|
708 |
# @ contact_form
|
709 |
+
#: includes/class-cntctfrm-settings.php:854
|
710 |
msgid "Users can attach the following file formats"
|
711 |
msgstr "Користувачі можуть прикріплювати файли наступних форматів"
|
712 |
|
713 |
+
#: includes/class-cntctfrm-settings.php:870
|
714 |
msgid "Multi-attachment"
|
715 |
msgstr "Прикріпити декілька файлів"
|
716 |
|
717 |
+
#: includes/class-cntctfrm-settings.php:872
|
718 |
msgid "Enable to multiple file selection"
|
719 |
msgstr "Активуйте, щоб дозволити прикріпляти декілька файлів"
|
720 |
|
721 |
+
#: includes/class-cntctfrm-settings.php:896
|
722 |
msgid "Title"
|
723 |
msgstr "Назва"
|
724 |
|
725 |
# @ contact_form
|
726 |
+
#: includes/class-cntctfrm-settings.php:897
|
727 |
msgid "Field Type"
|
728 |
msgstr "Тип поля"
|
729 |
|
730 |
# @ contact_form
|
731 |
+
#: includes/class-cntctfrm-settings.php:902
|
732 |
msgid "Field's default/available value"
|
733 |
msgstr "Стандартне значення поля"
|
734 |
|
735 |
+
#: includes/class-cntctfrm-settings.php:929
|
736 |
msgid "Create Field"
|
737 |
msgstr "Створити поле"
|
738 |
|
739 |
# @ contact_form
|
740 |
+
#: includes/class-cntctfrm-settings.php:932
|
741 |
msgid "If you upgrade to Pro version all your settings will be saved."
|
742 |
msgstr "Якщо ви перейдете на Pro версію, всі налаштування будуть збережені."
|
743 |
|
744 |
# @ contact_form
|
745 |
+
#: includes/class-cntctfrm-settings.php:945
|
746 |
msgid "Add to the form"
|
747 |
msgstr "Додати до форми"
|
748 |
|
749 |
# @ contact_form
|
750 |
+
#: includes/class-cntctfrm-settings.php:950
|
751 |
msgid "Tips below the Attachment"
|
752 |
msgstr "Показувати підказки під блоком прикріплених файлів"
|
753 |
|
754 |
# @ contact_form
|
755 |
+
#: includes/class-cntctfrm-settings.php:957
|
756 |
msgid "'Send me a copy' block"
|
757 |
msgstr "Блок \"Надіслати мені копію\""
|
758 |
|
759 |
+
#: includes/class-cntctfrm-settings.php:964
|
760 |
msgid "GDPR Compliance"
|
761 |
msgstr "Згода з GDPR"
|
762 |
|
763 |
+
#: includes/class-cntctfrm-settings.php:969
|
764 |
msgid "Link to Privacy Policy Page"
|
765 |
msgstr "Посилання на сторінку політики конфіденційності"
|
766 |
|
767 |
+
#: includes/class-cntctfrm-settings.php:997
|
768 |
msgid "Activate for network"
|
769 |
msgstr "Активувати для мережі"
|
770 |
|
771 |
# @ contact_form
|
772 |
+
#: includes/class-cntctfrm-settings.php:1087
|
773 |
msgid "Agreement checkbox"
|
774 |
msgstr "Чекбокс для погодження"
|
775 |
|
776 |
# @ contact_form
|
777 |
+
#: includes/class-cntctfrm-settings.php:1087
|
778 |
msgid "Required checkbox for submitting the form"
|
779 |
msgstr "Необхідний чекбокс для відправки форми"
|
780 |
|
781 |
# @ contact_form
|
782 |
+
#: includes/class-cntctfrm-settings.php:1088
|
783 |
msgid "Optional checkbox"
|
784 |
msgstr "Додатковий чекбокс"
|
785 |
|
786 |
# @ contact_form
|
787 |
+
#: includes/class-cntctfrm-settings.php:1088
|
788 |
msgid "Optional checkbox, the results of which will be displayed in email"
|
789 |
msgstr ""
|
790 |
"Додатковий чекбокс, результати якого буде відображено у еmail-повідомленні"
|
791 |
|
792 |
# @ contact_form
|
793 |
+
#: includes/class-cntctfrm-settings.php:1103
|
794 |
msgid "Delete an attachment file from the server after the email is sent"
|
795 |
msgstr ""
|
796 |
"Видаляти прикріплений файл з серверу після того, як повідомлення відправлено"
|
797 |
|
798 |
# @ contact_form
|
799 |
+
#: includes/class-cntctfrm-settings.php:1109
|
800 |
msgid "Email in HTML format sending"
|
801 |
msgstr "Відправка повідомлення в форматі HTML"
|
802 |
|
803 |
# @ contact_form
|
804 |
+
#: includes/class-cntctfrm-settings.php:1113
|
805 |
msgid "Display additional info in the email"
|
806 |
msgstr "Відображати додаткову інформацію у повідомленні"
|
807 |
|
808 |
# @ contact_form
|
809 |
+
#: includes/class-cntctfrm-settings.php:1120
|
810 |
msgid "Sent from (IP address)"
|
811 |
msgstr "Надіслано від (IP адреса)"
|
812 |
|
813 |
+
#: includes/class-cntctfrm-settings.php:1120
|
814 |
msgid "Example: Sent from (IP address): 127.0.0.1"
|
815 |
msgstr "Приклад: відправлено з (IP адреси): 127.0.0.1"
|
816 |
|
817 |
+
#: includes/class-cntctfrm-settings.php:1121
|
818 |
msgid "Example: Date/Time: August 19, 2013 8:50 pm"
|
819 |
msgstr "Приклад: Дата/Час: 19 Серпня, 2013 20:50"
|
820 |
|
821 |
+
#: includes/class-cntctfrm-settings.php:1122
|
822 |
msgid ""
|
823 |
"Example: Sent from (referer): https://bestwebsoft.com/contacts/contact-us/"
|
824 |
msgstr ""
|
825 |
"Приклад: відправлено з (referer): https://bestwebsoft.com/contacts/contact-"
|
826 |
"us/"
|
827 |
|
828 |
+
#: includes/class-cntctfrm-settings.php:1123
|
829 |
msgid ""
|
830 |
"Example: Using (user agent): Mozilla/5.0 (Windows NT 6.2; WOW64) "
|
831 |
"AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
|
834 |
"AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
|
835 |
|
836 |
# @ contact_form
|
837 |
+
#: includes/class-cntctfrm-settings.php:1129
|
838 |
msgid "Language settings for the field names in the form"
|
839 |
msgstr "Налаштування мови для імен полів форми"
|
840 |
|
841 |
# @ contact_form
|
842 |
+
#: includes/class-cntctfrm-settings.php:1138
|
843 |
msgid "Add a language"
|
844 |
msgstr "Додати мову"
|
845 |
|
846 |
# @ contact_form
|
847 |
+
#: includes/class-cntctfrm-settings.php:1142
|
848 |
msgid "Change the names of the contact form fields and error messages"
|
849 |
msgstr "Змінити імена полів контактної форми і повідомлення про помилку"
|
850 |
|
851 |
# @ contact_form
|
852 |
+
#: includes/class-cntctfrm-settings.php:1148
|
853 |
+
#: includes/class-cntctfrm-settings.php:1250
|
854 |
+
#: includes/class-cntctfrm-settings.php:1358
|
855 |
msgid "Default"
|
856 |
msgstr "Стандартно"
|
857 |
|
858 |
# @ contact_form
|
859 |
+
#: includes/class-cntctfrm-settings.php:1161
|
860 |
+
#: includes/class-cntctfrm-settings.php:1201
|
861 |
msgid "click to expand/hide the list"
|
862 |
msgstr "натиснути, щоб розгорнути/згорнути список"
|
863 |
|
864 |
# @ contact_form
|
865 |
+
#: includes/class-cntctfrm-settings.php:1170
|
866 |
+
#: includes/class-cntctfrm-settings.php:1210
|
867 |
msgid "Tips below the Attachment block"
|
868 |
msgstr "Підказки під блоком прикріплення файлів"
|
869 |
|
870 |
# @ contact_form
|
871 |
+
#: includes/class-cntctfrm-settings.php:1175
|
872 |
+
#: includes/class-cntctfrm-settings.php:1215
|
873 |
msgid "Error message for the Name field"
|
874 |
msgstr "Повідомлення про помилку для поля Ім'я"
|
875 |
|
876 |
# @ contact_form
|
877 |
+
#: includes/class-cntctfrm-settings.php:1176
|
878 |
+
#: includes/class-cntctfrm-settings.php:1216
|
879 |
msgid "Error message for the Address field"
|
880 |
msgstr "Повідомлення про помилку для поля Адреса"
|
881 |
|
882 |
# @ contact_form
|
883 |
+
#: includes/class-cntctfrm-settings.php:1177
|
884 |
+
#: includes/class-cntctfrm-settings.php:1217
|
885 |
msgid "Error message for the Email field"
|
886 |
msgstr "Повідомлення про помилку для поля Email"
|
887 |
|
888 |
# @ contact_form
|
889 |
+
#: includes/class-cntctfrm-settings.php:1178
|
890 |
+
#: includes/class-cntctfrm-settings.php:1218
|
891 |
msgid "Error message for the Phone field"
|
892 |
msgstr "Повідомлення про помилку для поля Номер телефону"
|
893 |
|
894 |
# @ contact_form
|
895 |
+
#: includes/class-cntctfrm-settings.php:1179
|
896 |
+
#: includes/class-cntctfrm-settings.php:1219
|
897 |
msgid "Error message for the Subject field"
|
898 |
msgstr "Повідомлення про помилку для поля Тема"
|
899 |
|
900 |
# @ contact_form
|
901 |
+
#: includes/class-cntctfrm-settings.php:1180
|
902 |
+
#: includes/class-cntctfrm-settings.php:1220
|
903 |
msgid "Error message for the Message field"
|
904 |
msgstr "Повідомлення про помилку для поля Повідомлення"
|
905 |
|
906 |
# @ contact_form
|
907 |
+
#: includes/class-cntctfrm-settings.php:1181
|
908 |
+
#: includes/class-cntctfrm-settings.php:1221
|
909 |
msgid "Error message about the file type for the Attachment field"
|
910 |
msgstr "Повідомлення про помилку для поля Прикріплені файли"
|
911 |
|
912 |
# @ contact_form
|
913 |
+
#: includes/class-cntctfrm-settings.php:1182
|
914 |
+
#: includes/class-cntctfrm-settings.php:1222
|
915 |
msgid ""
|
916 |
"Error message while uploading a file for the Attachment field to the server"
|
917 |
msgstr ""
|
919 |
"Прикріплені файли"
|
920 |
|
921 |
# @ contact_form
|
922 |
+
#: includes/class-cntctfrm-settings.php:1183
|
923 |
+
#: includes/class-cntctfrm-settings.php:1223
|
924 |
msgid "Error message while moving the file for the Attachment field"
|
925 |
msgstr ""
|
926 |
"Повідомлення про помилку під час переміщення файлу для поля Прикріплені файли"
|
927 |
|
928 |
# @ contact_form
|
929 |
+
#: includes/class-cntctfrm-settings.php:1184
|
930 |
+
#: includes/class-cntctfrm-settings.php:1224
|
931 |
msgid "Error message when file size limit for the Attachment field is exceeded"
|
932 |
msgstr ""
|
933 |
"Повідомлення про помилку для поля Прикріплені файли, коли розмір файлу "
|
934 |
"перевищує допустимий"
|
935 |
|
936 |
# @ contact_form
|
937 |
+
#: includes/class-cntctfrm-settings.php:1185
|
938 |
+
#: includes/class-cntctfrm-settings.php:1225
|
939 |
msgid "Error message for the Captcha field"
|
940 |
msgstr "Повідомлення про помилку для поля Captcha"
|
941 |
|
942 |
# @ contact_form
|
943 |
+
#: includes/class-cntctfrm-settings.php:1186
|
944 |
+
#: includes/class-cntctfrm-settings.php:1226
|
945 |
msgid "Error message for the whole form"
|
946 |
msgstr "Повідомлення про помилку для всієї форми"
|
947 |
|
948 |
# @ contact_form
|
949 |
+
#: includes/class-cntctfrm-settings.php:1240
|
950 |
msgid "Use the changed names of the contact form fields in the email"
|
951 |
msgstr "Використовувати змінені імена полів контактної форми у повідомленні"
|
952 |
|
953 |
# @ contact_form
|
954 |
+
#: includes/class-cntctfrm-settings.php:1246
|
955 |
msgid "Action after email is sent"
|
956 |
msgstr "Дія після відправлення листа з контактної форми"
|
957 |
|
958 |
# @ contact_form
|
959 |
+
#: includes/class-cntctfrm-settings.php:1248
|
960 |
msgid "Display text"
|
961 |
msgstr "Показати текст"
|
962 |
|
963 |
# @ contact_form
|
964 |
+
#: includes/class-cntctfrm-settings.php:1263
|
965 |
+
#: includes/class-cntctfrm-settings.php:1277
|
966 |
msgid "Text"
|
967 |
msgstr "Текст"
|
968 |
|
969 |
# @ contact_form
|
970 |
+
#: includes/class-cntctfrm-settings.php:1289
|
971 |
msgid "Redirect to the page"
|
972 |
msgstr "Перенаправлення на сторінку"
|
973 |
|
974 |
# @ contact_form
|
975 |
+
#: includes/class-cntctfrm-settings.php:1291
|
976 |
msgid "Url"
|
977 |
msgstr "Посилання"
|
978 |
|
979 |
+
#: includes/class-cntctfrm-settings.php:1312
|
980 |
#, php-format
|
981 |
msgid ""
|
982 |
"Please enable JavaScript to change '%s', '%s', '%s', '%s' options and for "
|
985 |
"Будь ласка, увімкніть JavaScript щоб змінити опції '%s', '%s', '%s', '%s' та "
|
986 |
"для сортування полів."
|
987 |
|
988 |
+
#: includes/class-cntctfrm-settings.php:1313
|
989 |
+
#: includes/class-cntctfrm-settings.php:1330
|
990 |
msgid "Form layout"
|
991 |
msgstr "Шаблон форми"
|
992 |
|
993 |
# @ contact_form
|
994 |
+
#: includes/class-cntctfrm-settings.php:1314
|
995 |
+
#: includes/class-cntctfrm-settings.php:1397
|
996 |
msgid "Labels position"
|
997 |
msgstr "Розташування імен полів"
|
998 |
|
999 |
+
#: includes/class-cntctfrm-settings.php:1315
|
1000 |
+
#: includes/class-cntctfrm-settings.php:1415
|
1001 |
msgid "Labels align"
|
1002 |
msgstr "Вирівнювання імен полів"
|
1003 |
|
1004 |
# @ contact_form
|
1005 |
+
#: includes/class-cntctfrm-settings.php:1316
|
1006 |
+
#: includes/class-cntctfrm-settings.php:1342
|
1007 |
msgid "Submit position"
|
1008 |
msgstr "Позиція кнопки 'Відправити'"
|
1009 |
|
1010 |
# @ contact_form
|
1011 |
+
#: includes/class-cntctfrm-settings.php:1317
|
1012 |
+
#: includes/class-cntctfrm-settings.php:1446
|
1013 |
msgid "Add tooltips"
|
1014 |
msgstr "Додати підказки"
|
1015 |
|
1016 |
# @ contact_form
|
1017 |
+
#: includes/class-cntctfrm-settings.php:1318
|
1018 |
+
#: includes/class-cntctfrm-settings.php:1487
|
1019 |
msgid "Style options"
|
1020 |
msgstr "Опції стилю"
|
1021 |
|
1022 |
+
#: includes/class-cntctfrm-settings.php:1334
|
1023 |
msgid "One column"
|
1024 |
msgstr "Одна колонка"
|
1025 |
|
1026 |
+
#: includes/class-cntctfrm-settings.php:1337
|
1027 |
msgid "Two columns"
|
1028 |
msgstr "Дві колонки"
|
1029 |
|
1030 |
+
#: includes/class-cntctfrm-settings.php:1346
|
1031 |
+
#: includes/class-cntctfrm-settings.php:1386
|
1032 |
+
#: includes/class-cntctfrm-settings.php:1404
|
1033 |
+
#: includes/class-cntctfrm-settings.php:1419
|
1034 |
msgid "Left"
|
1035 |
msgstr "Ліворуч"
|
1036 |
|
1037 |
+
#: includes/class-cntctfrm-settings.php:1349
|
1038 |
+
#: includes/class-cntctfrm-settings.php:1392
|
1039 |
+
#: includes/class-cntctfrm-settings.php:1407
|
1040 |
+
#: includes/class-cntctfrm-settings.php:1425
|
1041 |
msgid "Right"
|
1042 |
msgstr "Праворуч"
|
1043 |
|
1044 |
+
#: includes/class-cntctfrm-settings.php:1354
|
1045 |
msgid "Width"
|
1046 |
msgstr "Ширина"
|
1047 |
|
1048 |
+
#: includes/class-cntctfrm-settings.php:1362
|
1049 |
msgid "Custom"
|
1050 |
msgstr "Користувацька"
|
1051 |
|
1052 |
+
#: includes/class-cntctfrm-settings.php:1369
|
1053 |
msgid "px"
|
1054 |
msgstr "пікс"
|
1055 |
|
1056 |
+
#: includes/class-cntctfrm-settings.php:1382
|
1057 |
msgid "Form align"
|
1058 |
msgstr "Вирівнювання форми"
|
1059 |
|
1060 |
+
#: includes/class-cntctfrm-settings.php:1389
|
1061 |
+
#: includes/class-cntctfrm-settings.php:1422
|
1062 |
msgid "Center"
|
1063 |
msgstr "По центру"
|
1064 |
|
1065 |
+
#: includes/class-cntctfrm-settings.php:1401
|
1066 |
msgid "Top"
|
1067 |
msgstr "Зверху"
|
1068 |
|
1069 |
+
#: includes/class-cntctfrm-settings.php:1410
|
1070 |
msgid "Bottom"
|
1071 |
msgstr "Знизу"
|
1072 |
|
1073 |
# @ contact_form
|
1074 |
+
#: includes/class-cntctfrm-settings.php:1430
|
1075 |
msgid "Errors output"
|
1076 |
msgstr "Відображення помилок"
|
1077 |
|
1078 |
# @ contact_form
|
1079 |
+
#: includes/class-cntctfrm-settings.php:1433
|
1080 |
msgid "Display error messages"
|
1081 |
msgstr "Відображати повідомлення про помилки"
|
1082 |
|
1083 |
# @ contact_form
|
1084 |
+
#: includes/class-cntctfrm-settings.php:1434
|
1085 |
msgid "Color of the input field errors."
|
1086 |
msgstr "Колір для помилок у полях введення."
|
1087 |
|
1088 |
# @ contact_form
|
1089 |
+
#: includes/class-cntctfrm-settings.php:1435
|
1090 |
msgid "Display error messages & color of the input field errors"
|
1091 |
msgstr ""
|
1092 |
"Відображення повідомлень про помилку і колір для полів з помилками у полях "
|
1093 |
"введення"
|
1094 |
|
1095 |
# @ contact_form
|
1096 |
+
#: includes/class-cntctfrm-settings.php:1440
|
1097 |
msgid "Add placeholder to the input blocks"
|
1098 |
msgstr "Додати текст заповнювача для блоків введення"
|
1099 |
|
1100 |
# @ contact_form
|
1101 |
+
#: includes/class-cntctfrm-settings.php:1460
|
1102 |
msgid "Email address"
|
1103 |
msgstr "Email"
|
1104 |
|
1105 |
# @ contact_form
|
1106 |
+
#: includes/class-cntctfrm-settings.php:1491
|
1107 |
msgid "Text color"
|
1108 |
msgstr "Колір тексту"
|
1109 |
|
1110 |
# @ contact_form
|
1111 |
+
#: includes/class-cntctfrm-settings.php:1496
|
1112 |
+
#: includes/class-cntctfrm-settings.php:1505
|
1113 |
+
#: includes/class-cntctfrm-settings.php:1518
|
1114 |
+
#: includes/class-cntctfrm-settings.php:1526
|
1115 |
+
#: includes/class-cntctfrm-settings.php:1534
|
1116 |
+
#: includes/class-cntctfrm-settings.php:1542
|
1117 |
+
#: includes/class-cntctfrm-settings.php:1555
|
1118 |
+
#: includes/class-cntctfrm-settings.php:1563
|
1119 |
+
#: includes/class-cntctfrm-settings.php:1575
|
1120 |
+
#: includes/class-cntctfrm-settings.php:1592
|
1121 |
+
#: includes/class-cntctfrm-settings.php:1600
|
1122 |
+
#: includes/class-cntctfrm-settings.php:1608
|
1123 |
msgid "Select Color"
|
1124 |
msgstr "Вибрати колір"
|
1125 |
|
1126 |
# @ contact_form
|
1127 |
+
#: includes/class-cntctfrm-settings.php:1499
|
1128 |
msgid "Label text color"
|
1129 |
msgstr "Колір написів"
|
1130 |
|
1131 |
# @ contact_form
|
1132 |
+
#: includes/class-cntctfrm-settings.php:1508
|
1133 |
msgid "Placeholder color"
|
1134 |
msgstr "Колір тексту заповнювача"
|
1135 |
|
1136 |
# @ contact_form
|
1137 |
+
#: includes/class-cntctfrm-settings.php:1513
|
1138 |
msgid "Errors color"
|
1139 |
msgstr "Колір помилок"
|
1140 |
|
1141 |
# @ contact_form
|
1142 |
+
#: includes/class-cntctfrm-settings.php:1521
|
1143 |
msgid "Error text color"
|
1144 |
msgstr "Колір тексту помилок"
|
1145 |
|
1146 |
# @ contact_form
|
1147 |
+
#: includes/class-cntctfrm-settings.php:1529
|
1148 |
msgid "Background color of the input field errors"
|
1149 |
msgstr "Колір заднього фону для полів введення з помилками"
|
1150 |
|
1151 |
# @ contact_form
|
1152 |
+
#: includes/class-cntctfrm-settings.php:1537
|
1153 |
msgid "Border color of the input field errors"
|
1154 |
msgstr "Колір рамки для полів введення з помилками"
|
1155 |
|
1156 |
# @ contact_form
|
1157 |
+
#: includes/class-cntctfrm-settings.php:1545
|
1158 |
msgid "Placeholder color of the input field errors"
|
1159 |
msgstr "Колір тексту заповнювача для полів введення з помилками"
|
1160 |
|
1161 |
# @ contact_form
|
1162 |
+
#: includes/class-cntctfrm-settings.php:1550
|
1163 |
msgid "Input fields"
|
1164 |
msgstr "Поля введення тексту"
|
1165 |
|
1166 |
# @ contact_form
|
1167 |
+
#: includes/class-cntctfrm-settings.php:1558
|
1168 |
msgid "Input fields background color"
|
1169 |
msgstr "Колір фону полів введення"
|
1170 |
|
1171 |
# @ contact_form
|
1172 |
+
#: includes/class-cntctfrm-settings.php:1566
|
1173 |
msgid "Text fields color"
|
1174 |
msgstr "Колір текстових полів"
|
1175 |
|
1176 |
# @ contact_form
|
1177 |
+
#: includes/class-cntctfrm-settings.php:1570
|
1178 |
msgid "Border width in px, numbers only"
|
1179 |
msgstr "Ширина рамки в пікселях, тільки числа"
|
1180 |
|
1181 |
# @ contact_form
|
1182 |
+
#: includes/class-cntctfrm-settings.php:1578
|
1183 |
+
#: includes/class-cntctfrm-settings.php:1611
|
1184 |
msgid "Border color"
|
1185 |
msgstr "Колір рамки"
|
1186 |
|
1187 |
# @ contact_form
|
1188 |
+
#: includes/class-cntctfrm-settings.php:1583
|
1189 |
msgid "Submit button"
|
1190 |
msgstr "Кнопка підтвердження"
|
1191 |
|
1192 |
# @ contact_form
|
1193 |
+
#: includes/class-cntctfrm-settings.php:1587
|
1194 |
msgid "Width in px, numbers only"
|
1195 |
msgstr "Ширина в пікселях, тільки числа"
|
1196 |
|
1197 |
# @ contact_form
|
1198 |
+
#: includes/class-cntctfrm-settings.php:1595
|
1199 |
msgid "Button color"
|
1200 |
msgstr "Колір кнопок"
|
1201 |
|
1202 |
# @ contact_form
|
1203 |
+
#: includes/class-cntctfrm-settings.php:1603
|
1204 |
msgid "Button text color"
|
1205 |
msgstr "Колір тексту кнопок"
|
1206 |
|
1207 |
# @ contact_form
|
1208 |
+
#: includes/class-cntctfrm-settings.php:1630
|
1209 |
msgid "Contact Form | Preview"
|
1210 |
msgstr "Contact Form | Попередній перегляд"
|
1211 |
|
1212 |
+
#: includes/class-cntctfrm-settings.php:1631
|
1213 |
msgid "Drag the necessary field to sort fields."
|
1214 |
msgstr "Перетягніть необхідне поле для сортування полів."
|
1215 |
|
1216 |
+
#: includes/class-cntctfrm-settings.php:1878
|
1217 |
msgid "Contact Form Shortcode"
|
1218 |
msgstr "Шорткод Contact Form"
|
1219 |
|
1220 |
+
#: includes/class-cntctfrm-settings.php:1881
|
1221 |
msgid "Add Contact Form to your page or post using the following shortcode:"
|
1222 |
msgstr ""
|
1223 |
"Додайте Contact Form на свою сторінку або пост, використовуючи такий "
|
readme.txt
CHANGED
@@ -1,973 +1,981 @@
|
|
1 |
-
=== Contact Form by BestWebSoft ===
|
2 |
-
Contributors: bestwebsoft
|
3 |
-
Donate link: https://bestwebsoft.com/donate/
|
4 |
-
Tags: contact, contact form, feedback form, contact us form, contact button, email form, contac, form, web-page feedback, cf, cf plugin, contact form plugin
|
5 |
-
Requires at least: 4.5
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 4.
|
8 |
-
License: GPLv2 or later
|
9 |
-
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
-
|
11 |
-
Simple contact form plugin any WordPress website must have.
|
12 |
-
|
13 |
-
== Description ==
|
14 |
-
|
15 |
-
Contact form plugin for WordPress website is the best solution to receive messages from customers right to your email address(-es). Download, activate and paste [bestwebsoft_contact_form] shortcode on any page, post or widget to display the form. Customize the form styles and contents easily with the pre-build options.
|
16 |
-
|
17 |
-
Allow your customers to reach you in seconds!
|
18 |
-
|
19 |
-
[View Demo](https://bestwebsoft.com/demo-for-contact-form-pro/?ref=readme)
|
20 |
-
|
21 |
-
https://www.youtube.com/watch?v=F_piQa0hmkU
|
22 |
-
|
23 |
-
= Free Features =
|
24 |
-
|
25 |
-
* Add contact form to any post, page or widget using the shortcode
|
26 |
-
* GDPR Compliant
|
27 |
-
* Data validation before the submission
|
28 |
-
* Send a copy of the submitted message to the email
|
29 |
-
* Receive submissions to the default admin or custom email addresses
|
30 |
-
* Add additional data about the sender to the email notification:
|
31 |
-
* Sent from (IP address)
|
32 |
-
* Date/Time
|
33 |
-
* Sent from (referer)
|
34 |
-
* Using (user agent)
|
35 |
-
* Responsive Layout
|
36 |
-
* Editable field labels
|
37 |
-
* Required fields
|
38 |
-
* Select used/required for the following fields:
|
39 |
-
* Name
|
40 |
-
* Address
|
41 |
-
* Phone number
|
42 |
-
* File attachments
|
43 |
-
* Multiple file selection
|
44 |
-
* Enable additional pre-build fields
|
45 |
-
* Enable two column layout
|
46 |
-
* Change the width for contact form
|
47 |
-
* Re-order form fields using drag & drop interface
|
48 |
-
* Translate your form to any language with a simple language customizer
|
49 |
-
* Protect contact form from spam with [Captcha](https://bestwebsoft.com/products/wordpress/plugins/captcha/?k=45dcf2a5ccd70a7fc8606f8030730ac7) or [reCaptcha](https://bestwebsoft.com/products/wordpress/plugins/google-captcha/?k=159789f556e3a9c58df8f25384903ba5)
|
50 |
-
* Add unlimited contact forms using [Contact Form Multi](https://bestwebsoft.com/products/wordpress/plugins/contact-form-multi/?k=34543c152eff369d529e9b4da85985a9)
|
51 |
-
* Save and manage messages using [Contact Form to DB](https://bestwebsoft.com/products/wordpress/plugins/contact-form-to-db/?k=d7d962591b5be0ce6c27af778b1b36ee)
|
52 |
-
* Add users who send the submission to the [Subscriber](https://bestwebsoft.com/products/wordpress/plugins/subscriber/?k=2ce0827916414c9c8576110f13560030) newsletter subscription list
|
53 |
-
*
|
54 |
-
*
|
55 |
-
*
|
56 |
-
*
|
57 |
-
*
|
58 |
-
|
59 |
-
|
60 |
-
>
|
61 |
-
>
|
62 |
-
>
|
63 |
-
>
|
64 |
-
> * Add
|
65 |
-
> * Add
|
66 |
-
> *
|
67 |
-
> *
|
68 |
-
> *
|
69 |
-
> *
|
70 |
-
>
|
71 |
-
> *
|
72 |
-
> *
|
73 |
-
> *
|
74 |
-
>
|
75 |
-
> *
|
76 |
-
>
|
77 |
-
> *
|
78 |
-
>
|
79 |
-
> * Editable
|
80 |
-
> *
|
81 |
-
>
|
82 |
-
>
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
* [[Doc]
|
90 |
-
* [[Doc]
|
91 |
-
* [[
|
92 |
-
* [[Video] Installation
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
*
|
102 |
-
*
|
103 |
-
*
|
104 |
-
*
|
105 |
-
*
|
106 |
-
*
|
107 |
-
*
|
108 |
-
*
|
109 |
-
*
|
110 |
-
*
|
111 |
-
*
|
112 |
-
*
|
113 |
-
*
|
114 |
-
*
|
115 |
-
*
|
116 |
-
*
|
117 |
-
*
|
118 |
-
*
|
119 |
-
*
|
120 |
-
*
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
* [
|
130 |
-
* [
|
131 |
-
* [
|
132 |
-
* [
|
133 |
-
* [Contact Form
|
134 |
-
* [
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
*
|
232 |
-
*
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
* Bugfix :
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
*
|
243 |
-
|
244 |
-
= V4.1.
|
245 |
-
* Update: The
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
*
|
272 |
-
*
|
273 |
-
|
274 |
-
= V4.0.
|
275 |
-
* Bugfix : The compatibility issue with Google Captcha (reCAPTCHA) plugin
|
276 |
-
* Bugfix : The
|
277 |
-
* NEW : The
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
* Bugfix :
|
282 |
-
*
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
* Bugfix :
|
287 |
-
*
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
*
|
293 |
-
*
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
* Update :
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
*
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
*
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
* Update :
|
310 |
-
* Update :
|
311 |
-
|
312 |
-
= V2.1.
|
313 |
-
*
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
*
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
*
|
326 |
-
*
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
* Bugfix :
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
*
|
336 |
-
|
337 |
-
|
338 |
-
* NEW :
|
339 |
-
* NEW :
|
340 |
-
*
|
341 |
-
*
|
342 |
-
*
|
343 |
-
*
|
344 |
-
|
345 |
-
|
346 |
-
*
|
347 |
-
*
|
348 |
-
* Bugfix :
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
*
|
353 |
-
*
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
* Update : We fixed
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
* Update :
|
369 |
-
* Update :
|
370 |
-
|
371 |
-
=
|
372 |
-
* Bugfix :
|
373 |
-
* Update :
|
374 |
-
* Update :
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
*
|
380 |
-
* Update :
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
*
|
385 |
-
* Update : The
|
386 |
-
|
387 |
-
= V1.
|
388 |
-
*
|
389 |
-
*
|
390 |
-
* Update : The
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
* Bugfix :
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
*
|
419 |
-
|
420 |
-
= V1.
|
421 |
-
*
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
*
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
*
|
444 |
-
* Update : The
|
445 |
-
|
446 |
-
= V1.
|
447 |
-
*
|
448 |
-
*
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
* NEW :
|
453 |
-
*
|
454 |
-
|
455 |
-
= V1.
|
456 |
-
*
|
457 |
-
*
|
458 |
-
*
|
459 |
-
|
460 |
-
= V1.
|
461 |
-
*
|
462 |
-
*
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
* NEW : The
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
*
|
471 |
-
*
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
*
|
476 |
-
* Update :
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
*
|
481 |
-
* Update :
|
482 |
-
|
483 |
-
= V1.
|
484 |
-
*
|
485 |
-
* NEW : Ability to
|
486 |
-
*
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
*
|
491 |
-
* NEW :
|
492 |
-
* NEW :
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
* NEW : Add
|
498 |
-
*
|
499 |
-
*
|
500 |
-
|
501 |
-
= V1.
|
502 |
-
* NEW : Add
|
503 |
-
*
|
504 |
-
* Update : We updated all functionality for wordpress 3.7.
|
505 |
-
|
506 |
-
= V1.
|
507 |
-
* NEW :
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
* Update :
|
519 |
-
* NEW : Ability to
|
520 |
-
|
521 |
-
= V1.
|
522 |
-
*
|
523 |
-
* Update :
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
*
|
528 |
-
*
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
* Bugfix : We fixed the bug
|
534 |
-
*
|
535 |
-
* NEW :
|
536 |
-
|
537 |
-
|
538 |
-
*
|
539 |
-
*
|
540 |
-
|
541 |
-
|
542 |
-
* Update :
|
543 |
-
*
|
544 |
-
*
|
545 |
-
|
546 |
-
= V1.
|
547 |
-
*
|
548 |
-
*
|
549 |
-
* Update :
|
550 |
-
|
551 |
-
= V1.
|
552 |
-
*
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
*
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
*
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
* NEW :
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
*
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
*
|
610 |
-
|
611 |
-
= V4.0.
|
612 |
-
*
|
613 |
-
*
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
*
|
618 |
-
|
619 |
-
= V4.0.
|
620 |
-
* Bugs fixed.
|
621 |
-
*
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
=== Contact Form by BestWebSoft ===
|
2 |
+
Contributors: bestwebsoft
|
3 |
+
Donate link: https://bestwebsoft.com/donate/
|
4 |
+
Tags: contact, contact form, feedback form, contact us form, contact button, email form, contac, form, web-page feedback, cf, cf plugin, contact form plugin
|
5 |
+
Requires at least: 4.5
|
6 |
+
Tested up to: 5.5
|
7 |
+
Stable tag: 4.2.0
|
8 |
+
License: GPLv2 or later
|
9 |
+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
+
|
11 |
+
Simple contact form plugin any WordPress website must have.
|
12 |
+
|
13 |
+
== Description ==
|
14 |
+
|
15 |
+
Contact form plugin for WordPress website is the best solution to receive messages from customers right to your email address(-es). Download, activate and paste [bestwebsoft_contact_form] shortcode on any page, post or widget to display the form. Customize the form styles and contents easily with the pre-build options.
|
16 |
+
|
17 |
+
Allow your customers to reach you in seconds!
|
18 |
+
|
19 |
+
[View Demo](https://bestwebsoft.com/demo-for-contact-form-pro/?ref=readme)
|
20 |
+
|
21 |
+
https://www.youtube.com/watch?v=F_piQa0hmkU
|
22 |
+
|
23 |
+
= Free Features =
|
24 |
+
|
25 |
+
* Add contact form to any post, page or widget using the shortcode
|
26 |
+
* GDPR Compliant
|
27 |
+
* Data validation before the submission
|
28 |
+
* Send a copy of the submitted message to the email
|
29 |
+
* Receive submissions to the default admin or custom email addresses
|
30 |
+
* Add additional data about the sender to the email notification:
|
31 |
+
* Sent from (IP address)
|
32 |
+
* Date/Time
|
33 |
+
* Sent from (referer)
|
34 |
+
* Using (user agent)
|
35 |
+
* Responsive Layout
|
36 |
+
* Editable field labels
|
37 |
+
* Required fields
|
38 |
+
* Select used/required for the following fields:
|
39 |
+
* Name
|
40 |
+
* Address
|
41 |
+
* Phone number
|
42 |
+
* File attachments
|
43 |
+
* Multiple file selection
|
44 |
+
* Enable additional pre-build fields
|
45 |
+
* Enable two column layout
|
46 |
+
* Change the width for contact form
|
47 |
+
* Re-order form fields using drag & drop interface
|
48 |
+
* Translate your form to any language with a simple language customizer
|
49 |
+
* Protect contact form from spam with [Captcha](https://bestwebsoft.com/products/wordpress/plugins/captcha/?k=45dcf2a5ccd70a7fc8606f8030730ac7) or [reCaptcha](https://bestwebsoft.com/products/wordpress/plugins/google-captcha/?k=159789f556e3a9c58df8f25384903ba5)
|
50 |
+
* Add unlimited contact forms using [Contact Form Multi](https://bestwebsoft.com/products/wordpress/plugins/contact-form-multi/?k=34543c152eff369d529e9b4da85985a9)
|
51 |
+
* Save and manage messages using [Contact Form to DB](https://bestwebsoft.com/products/wordpress/plugins/contact-form-to-db/?k=d7d962591b5be0ce6c27af778b1b36ee)
|
52 |
+
* Add users who send the submission to the [Subscriber](https://bestwebsoft.com/products/wordpress/plugins/subscriber/?k=2ce0827916414c9c8576110f13560030) newsletter subscription list
|
53 |
+
* Limit sending emails from the same user using [Limit Attempts](https://bestwebsoft.com/products/wordpress/plugins/limit-attempts/?k=129e34c19fc68ae4a15b4fc1b4983081)
|
54 |
+
* Add custom code via plugin settings page
|
55 |
+
* Compatible with latest WordPress version
|
56 |
+
* Incredibly simple settings for fast setup without modifying code
|
57 |
+
* Detailed step-by-step documentations and videos
|
58 |
+
* Multilingual and RTL ready
|
59 |
+
|
60 |
+
> **Pro Features**
|
61 |
+
>
|
62 |
+
> All features from Free version included plus:
|
63 |
+
>
|
64 |
+
> * Add contact form custom fields
|
65 |
+
> * Add department selectbox and sort messages by inquiry type
|
66 |
+
> * Add required and optional checkboxes (i.e. Terms and Conditions)
|
67 |
+
> * Automatically populate name and email input fields for logged-in users
|
68 |
+
> * Add "Reply to" email address in the message head
|
69 |
+
> * Set default text for subject and message input fields
|
70 |
+
> * Show, hide or disable fields:
|
71 |
+
> * Name
|
72 |
+
> * Email Address
|
73 |
+
> * Subject
|
74 |
+
> * Message
|
75 |
+
> * Enable auto response option with editable message
|
76 |
+
> * Customizable form
|
77 |
+
> * Styles (no programming knowledge required)
|
78 |
+
> * Alignment, labels alignment and position
|
79 |
+
> * Editable tooltips
|
80 |
+
> * Editable placeholders
|
81 |
+
> * Get answer to your support question within one business day ([Support Policy](https://bestwebsoft.com/support-policy/))
|
82 |
+
>
|
83 |
+
> [Upgrade to Pro Now](https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=4028655c87316c98ae9ac7ca1928067f)
|
84 |
+
|
85 |
+
If you have a feature suggestion or idea you'd like to see in the plugin, we'd love to hear about it! [Suggest a Feature](https://support.bestwebsoft.com/hc/en-us/requests/new)
|
86 |
+
|
87 |
+
= Documentation & Videos =
|
88 |
+
|
89 |
+
* [[Doc] How to Use](https://docs.google.com/document/d/1qZYPJhkSdVyyM6XO5WfiBcTS2Sa9_9UMn4vS2g48JRY/)
|
90 |
+
* [[Doc] Installation](https://docs.google.com/document/d/1-hvn6WRvWnOqj5v5pLUk7Awyu87lq5B_dO-Tv-MC9JQ/)
|
91 |
+
* [[Doc] Purchase](https://docs.google.com/document/d/1EUdBVvnm7IHZ6y0DNyldZypUQKpB8UVPToSc_LdOYQI/)
|
92 |
+
* [[Video] Purchase, Installation, Configuration Tutorial](https://www.youtube.com/watch?v=k1wq00ajACo)
|
93 |
+
* [[Video] Installation Instruction](https://www.youtube.com/watch?v=JwG2c4PcO8o)
|
94 |
+
|
95 |
+
= Help & Support =
|
96 |
+
|
97 |
+
Visit our Help Center if you have any questions, our friendly Support Team is happy to help — <https://support.bestwebsoft.com/>
|
98 |
+
|
99 |
+
= Translation =
|
100 |
+
|
101 |
+
* Afrikaans (af_ZA) (thanks to [Aldu](mailto:alducornelissen@gmail.com))
|
102 |
+
* Brazilian Portuguese (pt_BR) (thanks to [Breno Jacinto](mailto:brenojac@gmail.com), www.iconis.org.br, [DJIO](mailto:wordpress@djio.com.br), www.djio.com.br)
|
103 |
+
* Catalan (ca) (thanks to [Kenneth](mailto:kenneth@snollocer.net))
|
104 |
+
* Chinese (zh_CN) (thanks to [kplam](mailto:kplam@qq.com))
|
105 |
+
* Czech (cs_CZ) (thanks to [Michal Kučera](mailto:kucerami@gmail.com), www.n0lim.it, [PaMaDeSSoft](mailto:info@pamadessoft.cz), www.pamadessoft.cz)
|
106 |
+
* Danish (da_DK) (thanks to [Kasper Jensen](mailto:support@teknisk-support.com), www.teknisk-support.com)
|
107 |
+
* Dutch (nl_NL) (thanks to [Olivier Smet](mailto:olivier.smet@dynata.nl))
|
108 |
+
* Estonian (et) (thanks to [Feliks](mailto:feliks@veebimeister.com), www.veebimeister.com)
|
109 |
+
* French (fr_FR) (thanks [Capronnier Luc](mailto:lcapronnier@yahoo.com))
|
110 |
+
* German (de_DE) (thanks to [Alex](mailto:private18@web.de))
|
111 |
+
* Greek (el) (thanks to Dimitris Karantonis, www.soft4real.com/en-UK)
|
112 |
+
* Indonesian (id_ID) (thanks to [Jordan Silaen](mailto:jordan.silaen@chameleonjohn.com), www.chameleonjohn.com)
|
113 |
+
* Japanese (ja) (thanks to Foken)
|
114 |
+
* Norwegian (nb_NO) (thanks to [Per Rommetveit](mailto:bestwebsoftcontact@nordsoft.no))
|
115 |
+
* Russian (ru_RU)
|
116 |
+
* Slovak (sk_SK) (thanks to [Michal Vittek](mailto:michal.vittek@wp.sk), www.wp.sk)
|
117 |
+
* Spanish (es_ES) (thanks to Javitopo)
|
118 |
+
* Swedish (sv_SE) (thanks to Martin Tonek, [Joakim Lindskog](mailto:joakim@limewoodmedia.com), [Maarten van den Driest](mailto:maarten@vandendriest.com) - www.crossanddot.nl)
|
119 |
+
* Turkish (tr) (thanks to Can Atasever, www.canatasever.com)
|
120 |
+
* Ukrainian (uk)
|
121 |
+
* Vietnamese (vi) (thanks to [Dich Anh Viet](mailto:bizover@gmail.com), www.bizover.net)
|
122 |
+
|
123 |
+
Some of these translations are not complete. We are constantly adding new features which should be translated. If you would like to create your own language pack or update the existing one, you can send [the text of PO and MO files](https://codex.wordpress.org/Translating_WordPress) to [BestWebSoft](https://support.bestwebsoft.com/hc/en-us/requests/new) and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO [files Poedit](https://www.poedit.net/download.php).
|
124 |
+
|
125 |
+
= Recommended Plugins =
|
126 |
+
|
127 |
+
The author of the Contact Form also recommends the following plugins:
|
128 |
+
|
129 |
+
* [SMTP](https://bestwebsoft.com/products/wordpress/plugins/smtp/) – Configure SMTP server to receive email messages from WordPress to Gmail, Yahoo, Hotmail and other services.
|
130 |
+
* [Captcha](https://bestwebsoft.com/products/wordpress/plugins/captcha/?k=45dcf2a5ccd70a7fc8606f8030730ac7) – #1 super security anti-spam captcha plugin for WordPress forms.
|
131 |
+
* [reCaptcha](https://bestwebsoft.com/products/wordpress/plugins/google-captcha/?k=159789f556e3a9c58df8f25384903ba5) – Protect WordPress website forms from spam entries with reCaptcha.
|
132 |
+
* [Limit Attempts](https://bestwebsoft.com/products/wordpress/plugins/limit-attempts/?k=129e34c19fc68ae4a15b4fc1b4983081) – Protect WordPress website against brute force attacks. Limit rate of login attempts.
|
133 |
+
* [Contact Form Multi](https://bestwebsoft.com/products/wordpress/plugins/contact-form-multi/?k=34543c152eff369d529e9b4da85985a9) – Add unlimited number of contact forms to WordPress website.
|
134 |
+
* [Contact Form to DB](https://bestwebsoft.com/products/wordpress/plugins/contact-form-to-db/?k=d7d962591b5be0ce6c27af778b1b36ee) – Save and manage contact form messages. Never lose important data.
|
135 |
+
* [Updater](https://bestwebsoft.com/products/wordpress/plugins/updater/?k=982fae837f4c6e3b152183537448dbca) – Automatically check and update WordPress website core with all installed plugins and themes to the latest versions.
|
136 |
+
|
137 |
+
== Installation ==
|
138 |
+
|
139 |
+
1. Upload the `contact-form-plugin` folder to the `/wp-content/plugins/` directory.
|
140 |
+
2. Activate the plugin using the 'Plugins' menu in your WordPress admin panel.
|
141 |
+
3. You can adjust the necessary settings using your WordPress admin panel in "Contact Form".
|
142 |
+
4. Create a page or a post and insert the shortcode [bestwebsoft_contact_form] into the text.
|
143 |
+
|
144 |
+
[View a PDF version of Step-by-step Instruction on Contact Form Installation](https://docs.google.com/document/d/1-hvn6WRvWnOqj5v5pLUk7Awyu87lq5B_dO-Tv-MC9JQ/).
|
145 |
+
|
146 |
+
https://www.youtube.com/watch?v=JwG2c4PcO8o
|
147 |
+
|
148 |
+
== Frequently Asked Questions ==
|
149 |
+
|
150 |
+
= Where can I find the settings to adjust the plugin work after activation? =
|
151 |
+
|
152 |
+
You can find the link to the Settings Page in the Plugin menu.
|
153 |
+
|
154 |
+
= I haven't adjusted the settings after the plugin installation. What is the default email address used for a contact via the form? =
|
155 |
+
|
156 |
+
The address specified during WordPress installation will be used by the Contact Form plugin as the default one.
|
157 |
+
|
158 |
+
= How can I add Contact Form to my website? =
|
159 |
+
|
160 |
+
You should put the shortcode [bestwebsoft_contact_form] into your page or post.
|
161 |
+
|
162 |
+
= I chose a user via the plugin settings and got this error: "Please enter a valid email address. Settings are not saved." =
|
163 |
+
|
164 |
+
This means that you made a syntax error.
|
165 |
+
|
166 |
+
= How to add the contact form not in English? =
|
167 |
+
|
168 |
+
1. Add a language in the block "Language settings for the field names in the form" on the plugin settings page.
|
169 |
+
2. Mark the check box (if it's not marked yet) in the block "Change the names of the contact form fields and error messages", choose the necessary tab,click the twistie to expand the list of the fields and fill in the fields. Choose the necessary tab in the block "Action after email is sent" as well and fill in the field. Save the changes.
|
170 |
+
3. You will see the shortcode under the tab with the necessary language. Please paste that shortcode to the page or post.
|
171 |
+
|
172 |
+
= I'm not receiving messages from Contact Form OR the plugin does not send an email - "Sorry, email message could not be delivered." =
|
173 |
+
|
174 |
+
Please follow the instructions below:
|
175 |
+
|
176 |
+
1. Please check the plugin settings '/wp-admin/admin.php?page=contact_form.php' => 'What to use?' => change the lines from wp-mail to mail and vice versa.
|
177 |
+
2. Email messages can be marked as spam on the server. Please choose another email instead of the admin's one ('Use this email:' block) - for example, gmail or similar. If the message is sent, it means that email filtering is set on your server. Please contact your hosting provider.
|
178 |
+
3. Perhaps email sending is not set. You should install an extra plugin called [SMTP by BestWebSoft](https://bestwebsoft.com/products/wordpress/plugins/smtp/) and configure it. Afterwards you should open the "Send A Test Email" tab on the plugin settings page, check an option "Display log", send a test email and you will see if the plugin logs have errors.
|
179 |
+
|
180 |
+
Note: If the Contact Form sends letters, but you don't receive them, you can install our plugin Contact Form to DB in order not to lose the sent letters for the time the problem is being solved.
|
181 |
+
|
182 |
+
***
|
183 |
+
Additional info:
|
184 |
+
[How to Use Contact Form - Step-by-step Instruction](https://docs.google.com/document/d/1qZYPJhkSdVyyM6XO5WfiBcTS2Sa9_9UMn4vS2g48JRY/)
|
185 |
+
***
|
186 |
+
|
187 |
+
Submit a support request if the problem still remains. Please include the following information when contacting support:
|
188 |
+
1. URL of the page where Contact Form is located (make sure that the plugin is activated and the form is displayed on the page).
|
189 |
+
2. Log generated by the SMTP plugin after sending the test message.
|
190 |
+
[Submit a request](https://support.bestwebsoft.com/hc/en-us/requests/new)
|
191 |
+
|
192 |
+
= Why the contact form is displayed in one column, if I've chosen two columns displaying on the plugin settings page? =
|
193 |
+
|
194 |
+
This happens when there is not enough the minimum width of the parent block where the contact form is located.
|
195 |
+
|
196 |
+
= Is it possible to create two contact forms using Contact Form? =
|
197 |
+
|
198 |
+
Install and activate [Contact Form Multi](http://bestwebsoft.com/products/wordpress/plugins/contact-form-multi/?k=34543c152eff369d529e9b4da85985a9) in order to add unlimited number of forms to your Wordpress website.
|
199 |
+
|
200 |
+
= I have some problems with the plugin's work. What Information should I provide to receive proper support? =
|
201 |
+
|
202 |
+
Please make sure that the problem hasn't been discussed yet on our forum (<https://support.bestwebsoft.com>). If no, please provide the following data along with your problem's description:
|
203 |
+
|
204 |
+
1. the link to the page where the problem occurs
|
205 |
+
2. the name of the plugin and its version. If you are using a pro version - your order number.
|
206 |
+
3. the version of your WordPress installation
|
207 |
+
4. copy and paste into the message your system status report. Please read more here: [Instruction on System Status](https://docs.google.com/document/d/1Wi2X8RdRGXk9kMszQy1xItJrpN0ncXgioH935MaBKtc/)
|
208 |
+
|
209 |
+
== Screenshots ==
|
210 |
+
|
211 |
+
1. Contact Form displaying.
|
212 |
+
2. Contact Form displaying with additional fields.
|
213 |
+
3. Contact Form displaying with 2 columns.
|
214 |
+
4. Contact Form settings page.
|
215 |
+
5. Contact Form additional settings page.
|
216 |
+
6. Contact Form appearance settings page.
|
217 |
+
7. Widget settings for using shortcode in the sidebar.
|
218 |
+
8. Add or remove additional fields easily and label any contact form fields you want.
|
219 |
+
9. Choose additional information about sender you would like to see.
|
220 |
+
10. Enable the file attachement option to get important files from senders via contact form.
|
221 |
+
11. Make any of the standard form fields required or not.
|
222 |
+
12. Translate your contact form to any language with a simple language customizer.
|
223 |
+
13. Receive a copy of the email sent via the contact form.
|
224 |
+
14. Divide your contact form fields into columns and change 'Submit' button position.
|
225 |
+
15. Re-order contact form fields using drag & drop interface.
|
226 |
+
16. Enable the file multiattachment option to get important files from senders via contact form.
|
227 |
+
|
228 |
+
== Changelog ==
|
229 |
+
|
230 |
+
= V4.2.0 - 15.07.2020 =
|
231 |
+
* NEW : Compatibility with Limit Attempts plugin has been added.
|
232 |
+
* Update : BWS panel section was updated.
|
233 |
+
|
234 |
+
= V4.1.9 - 03.06.2020 =
|
235 |
+
* Bugfix : We fixed the bug with Multi Attachment.
|
236 |
+
* Bugfix : We fixed the bug with Captcha by BestWebSoft.
|
237 |
+
* Bugfix : We fixed the bug with submit button on rtl sites.
|
238 |
+
* Update : All functionality was updated for WordPress 5.4.1.
|
239 |
+
* Update : BWS Panel section was updated.
|
240 |
+
|
241 |
+
= V4.1.8 - 15.10.2019 =
|
242 |
+
* Bugfix : Timeout update error was fixed.
|
243 |
+
|
244 |
+
= V4.1.7 - 07.10.2019 =
|
245 |
+
* Update : The compatibility with WordPress version 5.2.3 was updated.
|
246 |
+
* PRO : An ability to create custom fields has been added.
|
247 |
+
* PRO : An ability to deactivate default fields has been added.
|
248 |
+
|
249 |
+
= V4.1.6 - 04.09.2019 =
|
250 |
+
* Update: The deactivation feedback has been changed. Misleading buttons have been removed.
|
251 |
+
|
252 |
+
= V4.1.5 - 09.04.2019 =
|
253 |
+
* Bugfix : The ability to translate GDPR Compliance has been fixed.
|
254 |
+
|
255 |
+
= V4.1.4 - 26.03.2019 =
|
256 |
+
* NEW : The ability to attach multiple files has been added.
|
257 |
+
|
258 |
+
= V4.1.3 - 06.02.2019 =
|
259 |
+
* Bugfix : The bug with wp-options call has need fixed.
|
260 |
+
|
261 |
+
= V4.1.2 - 26.02.2019 =
|
262 |
+
* Update : The plugin settings page has been changed.
|
263 |
+
|
264 |
+
= V4.1.1 - 11.12.2018 =
|
265 |
+
* Update : The compatibility with WordPress version 5.0 was updated.
|
266 |
+
|
267 |
+
= V4.1.0 - 21.05.2018 =
|
268 |
+
* NEW : GDPR Compliance has been added.
|
269 |
+
|
270 |
+
= V4.0.9 - 09.02.2018 =
|
271 |
+
* Update : Czech language file has been updated.
|
272 |
+
* Bugfix : The compatibility issue with Contact Form Multi plugin has been fixed.
|
273 |
+
|
274 |
+
= V4.0.8 - 04.12.2017 =
|
275 |
+
* Bugfix : The compatibility issue with Google Captcha (reCAPTCHA) plugin has been fixed.
|
276 |
+
* Bugfix : The compatibility issue with Captcha plugin has been fixed.
|
277 |
+
* NEW : The Indonesian language file has been added.
|
278 |
+
|
279 |
+
= V4.0.7 - 04.07.2017 =
|
280 |
+
* Bugfix : The compatibility issue with Google Captcha (reCAPTCHA) plugin was fixed.
|
281 |
+
* Bugfix : The bug with Email field displaying in Appearance tab was fixed.
|
282 |
+
* NEW : The ability to change width for contact form fields has been added.
|
283 |
+
* Update : French language file is updated.
|
284 |
+
|
285 |
+
= V4.0.6 - 14.04.2017 =
|
286 |
+
* Bugfix : Multiple Cross-Site Scripting (XSS) vulnerability was fixed.
|
287 |
+
* Update : The French language file is updated.
|
288 |
+
|
289 |
+
= V4.0.5 - 03.03.2017 =
|
290 |
+
* Bugfix : The bug with selecting language via BWS Shortcode button was fixed.
|
291 |
+
* Bugfix : The bug with enabling/disabling Captcha on the plugin additional settings page was fixed.
|
292 |
+
* Bugfix : The bug with re-ordering Captcha on the plugin appearance settings page was fixed.
|
293 |
+
* Bugfix : The bug with customizing form on the plugin appearance settings page was fixed.
|
294 |
+
* Update : BWS Panel section was updated.
|
295 |
+
|
296 |
+
= V4.0.4 - 15.12.2016 =
|
297 |
+
* Update : BWS Panel section was updated.
|
298 |
+
* Update : The French language file is updated.
|
299 |
+
|
300 |
+
= V4.0.3 - 29.09.2016 =
|
301 |
+
* Update : The shortcode [contact_form] has been deprecated.
|
302 |
+
* Update : The French language file is updated.
|
303 |
+
|
304 |
+
= V4.0.2 - 15.08.2016 =
|
305 |
+
* Bugfix : XSS vulnerability was removed.
|
306 |
+
* Bugfix : The bug with displaying google captcha has been fixed.
|
307 |
+
|
308 |
+
= V2.1.4 - 19.07.2016 =
|
309 |
+
* Update : An ability to enable/disable Captcha, Google Captcha, Subscribe checkbox and an ability to save email to the database for each multi forms (if Contact Form Multi by Bestwebsoft is activated).
|
310 |
+
* Update : Color picker script was replaced.
|
311 |
+
|
312 |
+
= V2.1.3 - 27.06.2016 =
|
313 |
+
* NEW : The ability to add custom styles to frontend of your site has been added.
|
314 |
+
* Update : The Spanish language file is updated.
|
315 |
+
* Update : The French language file is updated.
|
316 |
+
|
317 |
+
= V2.1.2 - 27.04.2016 =
|
318 |
+
* Bugfix : The bug with adding options to the database was fixed.
|
319 |
+
|
320 |
+
= V2.1.1 - 25.04.2016 =
|
321 |
+
* NEW : Compatibility with plugin Subscriber.
|
322 |
+
* NEW : The Danish language file is added.
|
323 |
+
|
324 |
+
= V2.1.0 - 08.01.2016 =
|
325 |
+
* NEW : The Czech language file is added.
|
326 |
+
* Update : The French language file is updated.
|
327 |
+
|
328 |
+
= V2.0.9 - 04.12.2015 =
|
329 |
+
* Bugfix : The bug with sorting on mobile devices was fixed.
|
330 |
+
* Bugfix : XSS vulnerability was removed.
|
331 |
+
* Bugfix : The bug with plugin menu duplicating was fixed.
|
332 |
+
* Update : The French language file is updated.
|
333 |
+
|
334 |
+
= V2.0.8 - 16.11.2015 =
|
335 |
+
* Bugfix : Bug with the options saving on the settings page (appearance tab) was fixed.
|
336 |
+
|
337 |
+
= V2.0.7 - 05.11.2015 =
|
338 |
+
* NEW : An ability to sort contact form fields was added.
|
339 |
+
* NEW : An ability to displaying contact form in 2 columns.
|
340 |
+
* NEW : An ability to change the contact form alignment.
|
341 |
+
* NEW : An ability to change labels position in the contact form.
|
342 |
+
* NEW : An ability to change labels align in the contact form.
|
343 |
+
* NEW : A button for contact form shortcode inserting to the content was added.
|
344 |
+
* NEW : The Dutch language file is added.
|
345 |
+
* Update : Textdomain was changed.
|
346 |
+
* Update : The method of the URL obtaining in the attribute "action" of the contact form has been changed.
|
347 |
+
* Update : The French language file is updated.
|
348 |
+
* Bugfix : Vulnerabilities with `$path_of_upload_file` and `$form_action` was fixed.
|
349 |
+
|
350 |
+
= V2.0.6 - 05.08.2015 =
|
351 |
+
* New : We've made it possible to make Department field required.
|
352 |
+
* New : Ability to restore settings to defaults.
|
353 |
+
* Bugfix : We fixed syntax error.
|
354 |
+
* Update : We updated all functionality for wordpress 4.2.4.
|
355 |
+
|
356 |
+
= V2.0.5 - 03.07.2015 =
|
357 |
+
* Update : We fixed the url after the form is submitted.
|
358 |
+
* Update : We fixed display form for rtl.
|
359 |
+
|
360 |
+
= V2.0.4 - 03.06.2015 =
|
361 |
+
* Update : We fixed 'Send me a copy' email with the attachment.
|
362 |
+
* Update : We fixed error of a visual display of the settings page.
|
363 |
+
|
364 |
+
= V2.0.3 - 13.05.2015 =
|
365 |
+
* Update : We updated all functionality for wordpress 4.2.2.
|
366 |
+
|
367 |
+
= V2.0.2 - 04.05.2015 =
|
368 |
+
* Update : We updated all functionality for wordpress 4.2.1.
|
369 |
+
* Update : The French language file is updated.
|
370 |
+
|
371 |
+
= V2.0.1 - 26.03.2015 =
|
372 |
+
* Bugfix : Error with option name when Contact Form Multi plugin is activated was fixed.
|
373 |
+
* Update : Plugin performance was improved.
|
374 |
+
* Update : BWS Panel section was updated.
|
375 |
+
|
376 |
+
= V1.43 - 19.02.2015 =
|
377 |
+
* Bugfix : Bug with Contact Form impacting 'From name' headers in messages sent by other plugins was fixed.
|
378 |
+
* Update : 'Additional options' block was moved to a new tab, which is now named 'Additional settings'.
|
379 |
+
* Update : 'Extra settings' tab name was changed to 'Appearance'.
|
380 |
+
* Update : We updated all functionality for wordpress 4.1.1.
|
381 |
+
* NEW : The Greek language file is added.
|
382 |
+
|
383 |
+
= V1.42 - 26.12.2014 =
|
384 |
+
* Bugfix : We fixed the bug with attachment.
|
385 |
+
* Update : The Estonian and Japanese language files are updated.
|
386 |
+
|
387 |
+
= V1.41 - 03.12.2014 =
|
388 |
+
* NEW : We added functionality for displaying two or more contact forms on a single page.
|
389 |
+
* Update : We changed the layout of Contact Form from fixed to responsive.
|
390 |
+
* Update : The French language file is updated.
|
391 |
+
|
392 |
+
= V1.40 - 21.10.2014 =
|
393 |
+
* Bugfix : We fixed the bug with network activation.
|
394 |
+
* Bugfix : We fixed the bug with close banner button.
|
395 |
+
* Update : The Russian, Slovak and Ukrainian language files are updated.
|
396 |
+
* NEW : The Norwegian language file is added.
|
397 |
+
|
398 |
+
= V1.39 - 27.08.2014 =
|
399 |
+
* Bugfix : Bug with saving email addresses with long domain part was fixed.
|
400 |
+
|
401 |
+
= V1.38 - 22.08.2014 =
|
402 |
+
* Bugfix : Bug with saving options during the first installation was fixed.
|
403 |
+
|
404 |
+
= V1.37 - 21.08.2014 =
|
405 |
+
* Bugfix : Bug with saving several email addresses was fixed.
|
406 |
+
|
407 |
+
= V1.36 - 20.08.2014 =
|
408 |
+
* Bugfix : Bug with saving redirection link was fixed.
|
409 |
+
|
410 |
+
= V1.35 - 13.08.2014 =
|
411 |
+
* Update : We updated all functionality for wordpress 4.0-beta3.
|
412 |
+
* Bugfix : Security Exploit was fixed.
|
413 |
+
|
414 |
+
= V1.34 - 08.08.2014 =
|
415 |
+
* Bugfix : The bug with not supported MIME type error was fixed.
|
416 |
+
|
417 |
+
= V1.33 - 01.08.2014 =
|
418 |
+
* NEW : Auto Response is added.
|
419 |
+
|
420 |
+
= V1.32 - 21.07.2014 =
|
421 |
+
* NEW : Ability to substitute "name" and "email" fields with User's data for logged-in users, as well as to hide and make these data disabled for editing.
|
422 |
+
* Update : The French language file is updated.
|
423 |
+
* Update : The Spanish language file is updated.
|
424 |
+
|
425 |
+
= V1.31 - 17.07.2014 =
|
426 |
+
* Update : We updated all functionality for Email Queue plugin.
|
427 |
+
|
428 |
+
= V1.30 - 08.07.2014 =
|
429 |
+
* Bugfix : The bug related to overwriting of the attachments with the same names was fixed.
|
430 |
+
* NEW : We added ability to use the changed names of the fields of the contact form in the sent letter.
|
431 |
+
|
432 |
+
= V1.29 - 26.06.2014 =
|
433 |
+
* NEW : We added location selectbox.
|
434 |
+
|
435 |
+
= V1.28 - 28.05.2014 =
|
436 |
+
* Bugfix : We fixed the bugs with Contact Form Multi plugin.
|
437 |
+
|
438 |
+
= V1.27 - 20.05.2014 =
|
439 |
+
* NEW : The Spanish language file is added.
|
440 |
+
* Bugfix : We fixed the bug of loading the user's list ( We have limited the list "The user's email address" on the settings page to the lowest role - author ).
|
441 |
+
|
442 |
+
= V1.26 - 09.05.2014 =
|
443 |
+
* Update : We updated all functionality for wordpress 3.9.1.
|
444 |
+
* Update : The French language file is updated.
|
445 |
+
|
446 |
+
= V1.25 - 17.04.2014 =
|
447 |
+
* Update : We updated all functionality for wordpress 3.9.
|
448 |
+
* NEW : Compatibility with plugin Contact Form Multi Pro.
|
449 |
+
* Update : The Ukrainian language file is updated.
|
450 |
+
|
451 |
+
= V1.24 - 08.04.2014 =
|
452 |
+
* NEW : The Afrikaans language file is added.
|
453 |
+
* Bugfix : We fixed the bug of the user's list on multisite.
|
454 |
+
|
455 |
+
= V1.23 - 24.03.2014 =
|
456 |
+
* NEW : Compatibility with plugin Contact Form Multi.
|
457 |
+
* NEW : 'xlsx' mime-type is added.
|
458 |
+
* NEW : Added transition to the contact form after submitting.
|
459 |
+
|
460 |
+
= V1.22 - 10.03.2014 =
|
461 |
+
* Budfix : Plugin optimization is done.
|
462 |
+
* Update : The French language file is updated.
|
463 |
+
* Bugfix : We fixed the bug of duplicate MIME-Version.
|
464 |
+
|
465 |
+
= V1.21 - 20.02.2014 =
|
466 |
+
* NEW : The Estonian and German language file are added.
|
467 |
+
* NEW : Setting of choice for the form's action URL ($_SERVER['HTTP_HOST'] or $_SERVER['SERVER_NAME']).
|
468 |
+
|
469 |
+
= V1.20 - 31.01.2014 =
|
470 |
+
* Update : We updated all functionality for wordpress 3.8.1.
|
471 |
+
* NEW : The Turkish and Vietnamese language file are added.
|
472 |
+
|
473 |
+
= V1.19 - 14.01.2014 =
|
474 |
+
* Update : BWS Panel section is updated.
|
475 |
+
* NEW : The department is added in email.
|
476 |
+
* Update : The French language file is updated.
|
477 |
+
* NEW : The Chinese language file is added.
|
478 |
+
|
479 |
+
= V1.18 - 17.12.2013 =
|
480 |
+
* Update : We updated all functionality for wordpress 3.8.
|
481 |
+
* Update : We changed capability to 'manage_options' for the plugins settings pages.
|
482 |
+
|
483 |
+
= V1.17 - 04.12.2013 =
|
484 |
+
* NEW : Ability to reorder elements in the department's list.
|
485 |
+
* NEW : Ability to send email in plain format.
|
486 |
+
* Update : The Ukrainian language file is updated.
|
487 |
+
|
488 |
+
= V1.16 - 26.11.2013 =
|
489 |
+
* Bugfix : We fixed the bug related to warning while saving settings.
|
490 |
+
* NEW : Ability to hide, make disabled or define subject and message fields.
|
491 |
+
* NEW : Ability to not use name field.
|
492 |
+
* NEW : We added mime types for .aar and .sce files.
|
493 |
+
|
494 |
+
= V1.15 - 19.11.2013 =
|
495 |
+
* Update : The French language file is updated.
|
496 |
+
* NEW : Add checking license key in the plugin settings page.
|
497 |
+
* NEW : Add Privacy checkbox (Required checkbox for submitting the form).
|
498 |
+
* NEW : Add Optional checkbox (Optional checkbox, the results of which will be displayed in email).
|
499 |
+
* Bugfix : We fixed the bug related to use html-special chars.
|
500 |
+
|
501 |
+
= V1.14 - 4.11.2013 =
|
502 |
+
* NEW : Add checking installed wordpress version.
|
503 |
+
* Update : Activation of radio button or checkbox by clicking on its label.
|
504 |
+
* Update : We updated all functionality for wordpress 3.7.1.
|
505 |
+
|
506 |
+
= V1.13 - 25.10.2013 =
|
507 |
+
* NEW : Add option for saving emails into the DataBase.
|
508 |
+
* Bugfix : File format according JavaScript and CSS Coding Standards.
|
509 |
+
* Update : We updated all functionality for wordpress 3.7.
|
510 |
+
|
511 |
+
= V1.12 - 23.10.2013 =
|
512 |
+
* NEW : Compatibility with plugin Contact Form To DB.
|
513 |
+
|
514 |
+
= V1.11 - 11.10.2013 =
|
515 |
+
* NEW : Ability to change required symbol (asterisk).
|
516 |
+
|
517 |
+
= V1.10 - 01.10.2013 =
|
518 |
+
* Update : The Brazilian Portuguese language file is updated.
|
519 |
+
* NEW : Ability to use the name of the user who fills the form in the field 'From'.
|
520 |
+
|
521 |
+
= V1.09 - 25.09.2013 =
|
522 |
+
* Update : The and French language file is updated.
|
523 |
+
* Update : We updated all functionality for wordpress 3.6.1.
|
524 |
+
* NEW : Ability to add SelectBox to the contact form with the title Department, where the message will arrive.
|
525 |
+
|
526 |
+
= V1.08 - 13.09.2013 =
|
527 |
+
* Bugfix : We fixed the bug related to manage languages on the plugin settings page.
|
528 |
+
* Update : The Ukrainian language file is updated.
|
529 |
+
|
530 |
+
= V1.07 - 30.08.2013 =
|
531 |
+
* Update : Function for displaying BWS Panel section placed in a separate file and has own language files.
|
532 |
+
* Update : Compatibility test with 20 most popular WordPress plugins.
|
533 |
+
* Bugfix : We fixed the bug of the wrong message tooltip.
|
534 |
+
* NEW : Compatibility with Captcha Pro.
|
535 |
+
* NEW : Ability to add field "Reply-to" with user email to the email header.
|
536 |
+
|
537 |
+
= V1.06 - 20.08.2013 =
|
538 |
+
* Bugfix : We fixed the bug related to 'docx' mime type.
|
539 |
+
* Update : We changed plugin settings page displaying.
|
540 |
+
* NEW : Added an ability to delete an attachment file from the server after the email is sent.
|
541 |
+
* NEW : The Slovak language file is added.
|
542 |
+
* Update : The French language file is updated.
|
543 |
+
* Update : The Japanese language file is updated.
|
544 |
+
* Bugfix : We fixed the bug related to XSS attack.
|
545 |
+
|
546 |
+
= V1.05 - 05.08.2013 =
|
547 |
+
* Update : We updated all functionality for wordpress 3.6
|
548 |
+
* Bugfix : We fixed the email validation bug.
|
549 |
+
* Update : We removed displaying of additional info in the copy of email to the sender.
|
550 |
+
|
551 |
+
= V1.04 - 30.07.2013 =
|
552 |
+
* NEW : Added an ability to use diffrent shortcodes.
|
553 |
+
* Update : The Swedish language file is updated.
|
554 |
+
* Update : The Brazilian Portuguese language file is updated.
|
555 |
+
|
556 |
+
= V1.03 - 24.07.2013 =
|
557 |
+
* Bugfix : We fixed the displaying bug.
|
558 |
+
|
559 |
+
= V1.02 - 23.07.2013 =
|
560 |
+
* NEW : The setting of displaying Captcha is added.
|
561 |
+
* NEW : Added an ability to view and send system information by mail.
|
562 |
+
* Update : We updated all functionality for wordpress 3.5.2
|
563 |
+
* NEW : The Catalan language file is added.
|
564 |
+
* Update : The French language file is updated.
|
565 |
+
|
566 |
+
= V1.01 - 25.06.2013 =
|
567 |
+
* NEW : The Finnish language file is added to the plugin.
|
568 |
+
|
569 |
+
= V1.0 - 24.06.2013 =
|
570 |
+
* NEW : You can change the Contact Form CSS
|
571 |
+
* NEW : You can add a placeholder
|
572 |
+
* NEW : You can add tooltips for each field
|
573 |
+
* NEW : You can use JavaScript for the form validation with highlighting option
|
574 |
+
|
575 |
+
== Upgrade Notice ==
|
576 |
+
|
577 |
+
= V4.2.0 =
|
578 |
+
* New features added.
|
579 |
+
|
580 |
+
= V4.1.9 =
|
581 |
+
* The compatibility with new WordPress version updated.
|
582 |
+
|
583 |
+
= V4.1.8 =
|
584 |
+
* Bugs fixed.
|
585 |
+
|
586 |
+
= V4.1.7 =
|
587 |
+
* Bugs fixed.
|
588 |
+
* New features added.
|
589 |
+
|
590 |
+
= V4.1.6 =
|
591 |
+
* Usability improved
|
592 |
+
|
593 |
+
= V4.1.5 =
|
594 |
+
* Bugs fixed.
|
595 |
+
|
596 |
+
= V4.1.4 =
|
597 |
+
* New features added.
|
598 |
+
|
599 |
+
= V4.1.3 =
|
600 |
+
* Bugs fixed.
|
601 |
+
|
602 |
+
= V4.1.2 =
|
603 |
+
* Appearance improved.
|
604 |
+
|
605 |
+
= V4.1.1 =
|
606 |
+
* Bugs fixed.
|
607 |
+
|
608 |
+
= V4.1.0 =
|
609 |
+
* Functionality improved.
|
610 |
+
|
611 |
+
= V4.0.9 =
|
612 |
+
* Languages updated.
|
613 |
+
* Bugs fixed.
|
614 |
+
|
615 |
+
= V4.0.8 =
|
616 |
+
* Bugs fixed.
|
617 |
+
* Languages updated.
|
618 |
+
|
619 |
+
= V4.0.7 =
|
620 |
+
* Bugs fixed.
|
621 |
+
* New features added.
|
622 |
+
* Languages updated.
|
623 |
+
|
624 |
+
= V4.0.6 =
|
625 |
+
* Bugs fixed.
|
626 |
+
|
627 |
+
= V4.0.5 =
|
628 |
+
* Bugs fixed.
|
629 |
+
* Appearance improved.
|
630 |
+
|
631 |
+
= V4.0.4 =
|
632 |
+
* Plugin optimization completed.
|
633 |
+
|
634 |
+
= V4.0.3 =
|
635 |
+
* Plugin optimization completed.
|
636 |
+
|
637 |
+
= V4.0.3 =
|
638 |
+
* Functionality improved.
|
639 |
+
|
640 |
+
= V4.0.2 =
|
641 |
+
* Bugs fixed.
|
642 |
+
|
643 |
+
= V4.0.1 =
|
644 |
+
* Functionality improved.
|
645 |
+
|
646 |
+
= V4.0.0 =
|
647 |
+
The ability to add custom styles to frontend of your site has been added. The Spanish language file is updated. The French language file is updated.
|
648 |
+
|
649 |
+
= V3.99 =
|
650 |
+
The bug with adding options to the database was fixed.
|
651 |
+
|
652 |
+
= V3.98 =
|
653 |
+
Compatibility with plugin Subscriber. The Danish language file is added.
|
654 |
+
|
655 |
+
= V3.97 =
|
656 |
+
The styles for reCaptcha were updated. The Czech language file is added. The French language file is updated.
|
657 |
+
|
658 |
+
= V3.96 =
|
659 |
+
The bug with sorting on mobile devices was fixed. XSS vulnerability was removed. The bug with plugin menu duplicating was fixed. The French language file is updated.
|
660 |
+
|
661 |
+
= V3.95 =
|
662 |
+
An ability to sort contact form fields was added. An ability to displaying contact form in 2 columns. A button for contact form shortcode inserting to the content was added. The Dutch language file is added. The method of the URL obtaining in the attribute "action" of the contact form has been changed. The French language file is updated. Vulnerabilities with `$path_of_upload_file` and `$form_action` was fixed.
|
663 |
+
|
664 |
+
= V3.94 =
|
665 |
+
We updated all functionality for wordpress 4.3. Text Domain was changed.
|
666 |
+
|
667 |
+
= V3.93 =
|
668 |
+
Ability to restore settings to defaults. We fixed syntax error. We updated all functionality for wordpress 4.2.4.
|
669 |
+
|
670 |
+
= V3.92 =
|
671 |
+
We fixed the url after the form is submitted. We fixed display form for rtl.
|
672 |
+
|
673 |
+
= V3.91 =
|
674 |
+
We fixed error of a visual display of the settings page. We fixed 'Send me a copy' email with the attachment.
|
675 |
+
|
676 |
+
= V3.90 =
|
677 |
+
We updated all functionality for wordpress 4.2.1. The French language file is updated.
|
678 |
+
|
679 |
+
= V3.89 =
|
680 |
+
Bug with undefined function on plugin's settings page was fixed.
|
681 |
+
|
682 |
+
= V3.88 =
|
683 |
+
Bugs with syntax error and undefined function were fixed.
|
684 |
+
|
685 |
+
= V3.87 =
|
686 |
+
Error with option name when Contact Form Multi plugin is activated was fixed. Plugin performance was improved. BWS Panel section was updated. The French language file is updated.
|
687 |
+
|
688 |
+
= V3.86 =
|
689 |
+
Bug with Contact Form impacting 'From name' headers in messages sent by other plugins was fixed. 'Additional options' block was moved to a new tab, which is now named 'Additional settings'. 'Extra settings' tab name was changed to 'Appearance'. The Greek language file is added.
|
690 |
+
|
691 |
+
= V3.85 =
|
692 |
+
We added functionality for displaying two or more contact forms on a single page. We changed the layout of Contact Form from fixed to responsive. The French language file is updated. The Japanese language file is updated. The Estonian language file is updated.
|
693 |
+
|
694 |
+
= V3.84 =
|
695 |
+
The Norwegian and Russian language files are updated. We fixed the bug with saving 'The $_SERVER variable that is used to build a URL of the form'. We fixed the bug with network activation.
|
696 |
+
|
697 |
+
= V3.83 =
|
698 |
+
The Slovak language file is updated.
|
699 |
+
|
700 |
+
= V3.82 =
|
701 |
+
Security Exploit was fixed. The French language file is updated.
|
702 |
+
|
703 |
+
= V3.81 =
|
704 |
+
We updated all functionality for Email Queue plugin.
|
705 |
+
|
706 |
+
= V3.80 =
|
707 |
+
The bug related to overwriting of the attachments with the same names was fixed.
|
708 |
+
We added ability to use the changed names of the fields of the contact form in the sent letter.
|
709 |
+
|
710 |
+
= V3.79 =
|
711 |
+
We fixed the bug with getting default settings. We fixed the bug with plugin Contact Form Multi.
|
712 |
+
|
713 |
+
= V3.78 =
|
714 |
+
We updated all functionality for wordpress 3.9.1. The French language file is updated. The Spanish language file is added. We fixed the bug of loading the user's list ( We have limited the list "The user's email address" on the settings page to the lowest role - author ).
|
715 |
+
|
716 |
+
= V3.77 =
|
717 |
+
We updated all functionality for wordpress 3.9. We fixed the bug of db table creation. The Ukrainian language file is updated. Screenshots are updated.
|
718 |
+
|
719 |
+
= V3.76 =
|
720 |
+
We updated all functionality for wordpress 3.8.2.
|
721 |
+
|
722 |
+
= V3.75 =
|
723 |
+
The Afrikaans language file is added. We fixed the bug of the user's list on multisite.
|
724 |
+
|
725 |
+
= V3.74 =
|
726 |
+
Compatibility with plugin Contact Form Multi. 'xlsx' mime-type is added. Added transition to the contact form after submitting.
|
727 |
+
|
728 |
+
= V3.73 =
|
729 |
+
Plugin optimization is done. The French language file is updated. We fixed the bug of duplicate MIME-Version.
|
730 |
+
|
731 |
+
= V3.72 =
|
732 |
+
The Estonian and German language file are added. Setting of choice for the form's action URL ($_SERVER['HTTP_HOST'] or $_SERVER['SERVER_NAME']).
|
733 |
+
|
734 |
+
= V3.71 =
|
735 |
+
We updated all functionality for wordpress 3.8.1. The Turkish and Vietnamese language file are added.
|
736 |
+
|
737 |
+
= V3.70 =
|
738 |
+
BWS Panel section was updated.
|
739 |
+
|
740 |
+
= V3.69 =
|
741 |
+
The French language file is updated. The Chinese language file is added.
|
742 |
+
|
743 |
+
= V3.68 =
|
744 |
+
We updated all functionality for wordpress 3.8. We changed capability to 'manage_options' for the plugins settings pages.
|
745 |
+
|
746 |
+
= V3.67 =
|
747 |
+
Ability to send email in plain format. A notice when changing settings on the plugin's settings page was added. The Ukrainian language file is updated. Screenshots are updated.
|
748 |
+
|
749 |
+
= V3.66 =
|
750 |
+
Ability to not use name field. We added mime types for .aar and .sce files.
|
751 |
+
|
752 |
+
= V3.65 =
|
753 |
+
We fixed the bug related to use html-special chars. BWS Panel section is updated.
|
754 |
+
|
755 |
+
= V3.64 =
|
756 |
+
Ability to change tips below the Attachment block. Ability to change required symbol (asterisk).
|
757 |
+
|
758 |
+
= V3.63 =
|
759 |
+
The French language file is updated. Add hide-button for the settings page
|
760 |
+
|
761 |
+
= V3.62 =
|
762 |
+
Add checking installed wordpress version. Activation of radio button or checkbox by clicking on its label. We updated all functionality for wordpress 3.7.1.
|
763 |
+
|
764 |
+
= V3.61 =
|
765 |
+
Add option for saving emails into the DataBase. File format according JavaScript and CSS Coding Standards. We updated all functionality for wordpress 3.7.
|
766 |
+
|
767 |
+
= V3.60 =
|
768 |
+
Compatibility with plugin Contact Form To DB. We fixed the bug of uploading attachment in multisite.
|
769 |
+
|
770 |
+
= V3.59 =
|
771 |
+
Ability to not display asterisk near required fields.
|
772 |
+
|
773 |
+
= V3.58 =
|
774 |
+
The Brazilian Portuguese language file is updated. Ability to use the name of the user who fills the form in the field 'From'.
|
775 |
+
|
776 |
+
= V3.57 =
|
777 |
+
The French language file is updated. We updated all functionality for wordpress 3.6.1.
|
778 |
+
|
779 |
+
= V3.56 =
|
780 |
+
We fixed the bug related to manage languages on the plugin settings page. The Ukrainian language file is updated.
|
781 |
+
|
782 |
+
= V3.55 =
|
783 |
+
Compatibility with Captcha Pro.
|
784 |
+
|
785 |
+
= V3.54 =
|
786 |
+
Function for displaying BWS Panel section placed in a separate file and has own language files. Compatibility test with 20 most popular WordPress plugins.
|
787 |
+
|
788 |
+
= V3.53 =
|
789 |
+
We fixed the bug related to 'docx' mime type. We changed plugin settings page displaying. Added an ability to delete an attachment file from the server after the email is sent. The Slovak language file is added. The French language file is updated.
|
790 |
+
|
791 |
+
= V3.52 =
|
792 |
+
The Japanese language file is updated. We fixed the bug related to XSS attack.
|
793 |
+
|
794 |
+
= V3.51 =
|
795 |
+
The Brazilian Portuguese language file is updated. We updated all functionality for wordpress 3.6. We fixed the email validation bug. We removed displaying of additional info in the copy of email to the sender.
|
796 |
+
|
797 |
+
= V3.50 =
|
798 |
+
Added an ability to use diffrent shortcodes. The Swedish language file is updated. The Brazilian Portuguese language file is updated.
|
799 |
+
|
800 |
+
= V3.49 =
|
801 |
+
Added an ability to view and send system information by mail.
|
802 |
+
|
803 |
+
= V3.48 =
|
804 |
+
The Catalan language file is added. The French language file is updated. We updated all functionality for wordpress 3.5.2.
|
805 |
+
|
806 |
+
= V3.47 =
|
807 |
+
The setting of displaying Captcha is added. The French language file is updated.
|
808 |
+
|
809 |
+
= V3.46 =
|
810 |
+
The Finnish language file is added to the plugin. We fixed the bug of display additional info in the email when email has an attachment. Added html blocks.
|
811 |
+
|
812 |
+
= V3.45 =
|
813 |
+
The error related to use function 'get_userdatabylogin' instead 'get_user_by('login')' is fixed. BWS Panel section is updated. We updated the Italian, the French and the Brazilian Portuguese language files in the plugin.
|
814 |
+
|
815 |
+
= V3.44 =
|
816 |
+
Added email adress as additional form field. We fixed the bug of adding an attachment.
|
817 |
+
|
818 |
+
= V3.43 =
|
819 |
+
We updated the English text in the plugin file. We fixed the bug of displaying phone error messages when a phone number field is not display.
|
820 |
+
|
821 |
+
= V3.42 =
|
822 |
+
The Serbian language file was updated. The bug after clicking submit, when site uses a custom port, was fixed.
|
823 |
+
|
824 |
+
= V3.41 =
|
825 |
+
Added ability to change a label 'Send me a copy'. The bug of changing the message 'Action after email is sent' was fixed.
|
826 |
+
|
827 |
+
= V3.40 =
|
828 |
+
Hungarian language file was added to the plugin. The bug of displaying error messages was fixed.
|
829 |
+
|
830 |
+
= V3.39 =
|
831 |
+
Ukrainian language file was added to the plugin.
|
832 |
+
|
833 |
+
= V3.38 =
|
834 |
+
We added HTML tag for the text, that is displaying after email is sent.
|
835 |
+
|
836 |
+
= V3.37 =
|
837 |
+
Belarusian language file was added to the plugin.
|
838 |
+
|
839 |
+
= V3.36 =
|
840 |
+
European Portuguese language file was updated.
|
841 |
+
|
842 |
+
= V3.35 =
|
843 |
+
The error related to the cross-site scripting vulnerabilities was fixed.
|
844 |
+
|
845 |
+
= V3.34 =
|
846 |
+
We changed the English text in the plugin file and all language files were updated.
|
847 |
+
|
848 |
+
= V3.33 =
|
849 |
+
Dutch language file was updated.
|
850 |
+
|
851 |
+
= V3.32 =
|
852 |
+
Bugs in admin menu were fixed. We updated all functionality for wordpress 3.5.1.
|
853 |
+
|
854 |
+
= V3.31 =
|
855 |
+
Swedish language file was updated.
|
856 |
+
|
857 |
+
= V3.30 =
|
858 |
+
The error related to extra "rn" in the user email address when using WP_mail and in the Name field when using php_mail was fixed. We updated all functionality for wordpress 3.5.
|
859 |
+
|
860 |
+
= V3.29 =
|
861 |
+
The error related to the empty label on the contact form was fixed.
|
862 |
+
|
863 |
+
= V3.28 =
|
864 |
+
Galician language file is added to the plugin. Multilanguage labels for fields is added to the plugin. The shortcode structure was changed.
|
865 |
+
|
866 |
+
= V3.27 =
|
867 |
+
The error related to the saving of the field "Change FROM fields of the contact form" was fixed.
|
868 |
+
|
869 |
+
= V3.26 =
|
870 |
+
The setting of the required fields was added. Persian language file is added to the plugin. The email address validation was changed.
|
871 |
+
|
872 |
+
= V3.25 =
|
873 |
+
Added phone number as additional form field. Serbian language file is added to the plugin.
|
874 |
+
|
875 |
+
= V3.24 =
|
876 |
+
Czech and Romanian language files are added to the plugin.
|
877 |
+
|
878 |
+
= V3.23 =
|
879 |
+
Cross Site Request Forgery bug was fixed.
|
880 |
+
|
881 |
+
= V3.22 =
|
882 |
+
Japanese language file is added to the plugin. Cross Site Request Forgery bug was fixed.
|
883 |
+
|
884 |
+
= V3.21 =
|
885 |
+
Hebrew language file is added to the plugin. We updated French language file. We updated all functionality for wordpress 3.4.1. In the email in the field Date/Time used correct time zone - instead of UTC we use local settings which are setup on the page Settings -> General.
|
886 |
+
|
887 |
+
= V3.20 =
|
888 |
+
Added ability to select action after the send mail - Display text or Redirect to page. We updated all functionality for wordpress 3.4.
|
889 |
+
|
890 |
+
= V3.19 =
|
891 |
+
The bug of email address validation in admin section was fixed.
|
892 |
+
|
893 |
+
= V3.18 =
|
894 |
+
Arabic and Hindi language files is added. Added ability to display or hide explanations after Attachment block.
|
895 |
+
|
896 |
+
= V3.17 =
|
897 |
+
Danish and Greek language files is added. Added ability to send mail using the functional: wordpress wp_mail function or php mail function.
|
898 |
+
|
899 |
+
= V3.16 =
|
900 |
+
The form output code is validated.
|
901 |
+
|
902 |
+
= V3.15 =
|
903 |
+
The feature to setup the displaying of the additional information fields in the email was implemented (Sent from (ip address), Date/Time, Coming from (referer), Using (user agent)). The bug of attribute action on element form was fixed.
|
904 |
+
|
905 |
+
= V3.14 =
|
906 |
+
Added ability to change FROM fields.
|
907 |
+
|
908 |
+
= V3.13 =
|
909 |
+
French language file is changed.
|
910 |
+
|
911 |
+
= V3.12 =
|
912 |
+
Added ability to upload wav and mp3 files.
|
913 |
+
|
914 |
+
= V3.11 =
|
915 |
+
The changes have been made to functionality of email sending - now it is using only wordpress functionality. French language file is added to the plugin.
|
916 |
+
|
917 |
+
= V3.10 =
|
918 |
+
Bulgarian language file is added to the plugin.
|
919 |
+
|
920 |
+
= V3.09 =
|
921 |
+
Spanish language file is added to the plugin. Code that is used to connect styles and scripts is added to the plugin for correct SSL verification. The bug of email address validation in admin section was fixed. Upgrade immediately.
|
922 |
+
|
923 |
+
= V3.08 =
|
924 |
+
Spanish language file is added to the plugin.
|
925 |
+
|
926 |
+
= V3.07 =
|
927 |
+
Norwegian and Polish language files are added to the plugin.
|
928 |
+
|
929 |
+
= V3.06 =
|
930 |
+
Dutch language file is added to the plugin.
|
931 |
+
|
932 |
+
= V3.05 =
|
933 |
+
The bug of sending emails to admin user even if a different user is specified when setting plugin to "use email of wordpress user" was fixed. The bug of sending a blank attachment field of the form was fixed.
|
934 |
+
|
935 |
+
= V3.04 =
|
936 |
+
Brazilian Portuguese and Turkish language files are added to the plugin.
|
937 |
+
|
938 |
+
= V3.03 =
|
939 |
+
German language files are added to the plugin. The bug related to resending of an email after the page is updated was fixed. Upgrade immediately.
|
940 |
+
|
941 |
+
= V3.02 =
|
942 |
+
Italian language files are added to the plugin. A possibility to change a label when the fields of the form are displayed is added. Display of the files types names that user can attach to the mail is added.
|
943 |
+
|
944 |
+
= V3.01 =
|
945 |
+
'Attachment' and 'Send me a copy' block are added to the contact form. Language files are added to the plugin.
|
946 |
+
|
947 |
+
= V2.08 =
|
948 |
+
Slashes bug in email is fixed and server info is added to an email.
|
949 |
+
|
950 |
+
= v2.07 =
|
951 |
+
The bug of complex form validation when captcha is not used in the contact form is fixed. Upgrade immediately.
|
952 |
+
|
953 |
+
= V2.06 =
|
954 |
+
The bug of complex email validation while filling in the contact form is fixed.
|
955 |
+
|
956 |
+
= V2.05 =
|
957 |
+
BWS Plugin's menu section was fixed and right now it is consisted of 3 parts: activated, installed and recommended plugins. The bug of positioning in admin menu is fixed. Translation omissions are corrected. Now there is a link where it is possible to see the site where email comes from.
|
958 |
+
|
959 |
+
= V2.04 =
|
960 |
+
BWS Plugin's menu section was fixed and right now it is consisted of 2 parts: installed and recommended plugins. Icons displaying is fixed.
|
961 |
+
|
962 |
+
= V2.03 =
|
963 |
+
The bug of using custom email is fixed in this version. Please upgrade the plugin immediately. Thank you
|
964 |
+
|
965 |
+
= V2.02 =
|
966 |
+
The bug with the link to the settings page is fixed in this version. Please upgrade the plugin immediately.
|
967 |
+
|
968 |
+
= V2.01 =
|
969 |
+
Usability at the settings page of the plugin was improved.
|
970 |
+
|
971 |
+
= V1.03 =
|
972 |
+
Contact form email adress bug is fixed. Upgrade immediately.
|
973 |
+
|
974 |
+
= V1.02 =
|
975 |
+
"Thanks" message display bug is fixed. Radio buttons automatic switching is added (for the settings page) after setting mouse cursor (clicking) at a text field. Upgrade immediately.
|
976 |
+
|
977 |
+
= V1.01 =
|
978 |
+
Contact form positioning bug is fixed. Upgrade immediately.
|
979 |
+
|
980 |
+
= V1.00 =
|
981 |
+
Upgrade immediately.
|