Contact Form by BestWebSoft - Version 3.72

Version Description

  • 20.02.2014 =
  • NEW : The Estonian and German language file are added.
  • NEW : Setting of choice for the form's action URL ($SERVER['HTTP_HOST'] or $_SERVER['SERVERNAME']).
Download this release

Release Info

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

Code changes from version 3.71 to 3.72

Files changed (48) hide show
  1. bws_menu/bws_menu.php +18 -12
  2. contact_form.php +44 -35
  3. css/style.css +54 -114
  4. css/style_wp_before_3.8.css +57 -119
  5. images/banner.png +0 -0
  6. images/banner_for_ctfrmtdb.png +0 -0
  7. images/close_banner.png +0 -0
  8. languages/contact_form-be_BY.mo +0 -0
  9. languages/contact_form-be_BY.po +303 -279
  10. languages/contact_form-ca.mo +0 -0
  11. languages/contact_form-ca.po +304 -280
  12. languages/contact_form-de_DE.mo +0 -0
  13. languages/contact_form-de_DE.po +1051 -0
  14. languages/contact_form-et.mo +0 -0
  15. languages/contact_form-et.po +1047 -0
  16. languages/contact_form-fi.mo +0 -0
  17. languages/contact_form-fi.po +303 -279
  18. languages/contact_form-fr_FR.mo +0 -0
  19. languages/contact_form-fr_FR.po +304 -280
  20. languages/contact_form-hu_HU.mo +0 -0
  21. languages/contact_form-hu_HU.po +303 -279
  22. languages/contact_form-it_IT.mo +0 -0
  23. languages/contact_form-it_IT.po +303 -279
  24. languages/contact_form-ja.mo +0 -0
  25. languages/contact_form-ja.po +304 -280
  26. languages/contact_form-nl_NL.mo +0 -0
  27. languages/contact_form-nl_NL.po +303 -279
  28. languages/contact_form-pt_BR.mo +0 -0
  29. languages/contact_form-pt_BR.po +305 -281
  30. languages/contact_form-pt_PT.mo +0 -0
  31. languages/contact_form-pt_PT.po +303 -279
  32. languages/contact_form-ru_RU.mo +0 -0
  33. languages/contact_form-ru_RU.po +304 -280
  34. languages/contact_form-sk_SK.mo +0 -0
  35. languages/contact_form-sk_SK.po +295 -271
  36. languages/contact_form-sr_RS.mo +0 -0
  37. languages/contact_form-sr_RS.po +303 -279
  38. languages/contact_form-sv_SE.mo +0 -0
  39. languages/contact_form-sv_SE.po +304 -280
  40. languages/contact_form-tr.mo +0 -0
  41. languages/contact_form-tr.po +304 -280
  42. languages/contact_form-uk.mo +0 -0
  43. languages/contact_form-uk.po +304 -280
  44. languages/contact_form-vi.mo +0 -0
  45. languages/contact_form-vi.po +304 -280
  46. languages/contact_form-zh_CN.mo +0 -0
  47. languages/contact_form-zh_CN.po +304 -280
  48. readme.txt +13 -4
bws_menu/bws_menu.php CHANGED
@@ -611,12 +611,15 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
611
  <table class="bws_system_info">
612
  <thead><tr><th><?php _e( 'Inactive Plugins', 'bestwebsoft' ); ?></th><th></th></tr></thead>
613
  <tbody>
614
- <?php foreach ( $system_info['inactive_plugins'] as $key => $value ) { ?>
615
- <tr>
616
- <td scope="row"><?php echo $key; ?></td>
617
- <td scope="row"><?php echo $value; ?></td>
618
- </tr>
619
- <?php } ?>
 
 
 
620
  </tbody>
621
  </table>
622
  <div class="clear"></div>
@@ -963,12 +966,15 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
963
  <table class="bws_system_info">
964
  <thead><tr><th><?php _e( 'Inactive Plugins', 'bestwebsoft' ); ?></th><th></th></tr></thead>
965
  <tbody>
966
- <?php foreach ( $system_info['inactive_plugins'] as $key => $value ) { ?>
967
- <tr>
968
- <td scope="row"><?php echo $key; ?></td>
969
- <td scope="row"><?php echo $value; ?></td>
970
- </tr>
971
- <?php } ?>
 
 
 
972
  </tbody>
973
  </table>
974
  <div class="clear"></div>
611
  <table class="bws_system_info">
612
  <thead><tr><th><?php _e( 'Inactive Plugins', 'bestwebsoft' ); ?></th><th></th></tr></thead>
613
  <tbody>
614
+ <?php
615
+ if ( ! empty( $system_info['inactive_plugins'] ) ) {
616
+ foreach ( $system_info['inactive_plugins'] as $key => $value ) { ?>
617
+ <tr>
618
+ <td scope="row"><?php echo $key; ?></td>
619
+ <td scope="row"><?php echo $value; ?></td>
620
+ </tr>
621
+ <?php }
622
+ } ?>
623
  </tbody>
624
  </table>
625
  <div class="clear"></div>
966
  <table class="bws_system_info">
967
  <thead><tr><th><?php _e( 'Inactive Plugins', 'bestwebsoft' ); ?></th><th></th></tr></thead>
968
  <tbody>
969
+ <?php
970
+ if ( ! empty( $system_info['inactive_plugins'] ) ) {
971
+ foreach ( $system_info['inactive_plugins'] as $key => $value ) { ?>
972
+ <tr>
973
+ <td scope="row"><?php echo $key; ?></td>
974
+ <td scope="row"><?php echo $value; ?></td>
975
+ </tr>
976
+ <?php }
977
+ } ?>
978
  </tbody>
979
  </table>
980
  <div class="clear"></div>
contact_form.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Contact Form
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
- Version: 3.71
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -103,7 +103,8 @@ if( ! function_exists( 'cntctfrm_settings' ) ) {
103
  'cntctfrm_thank_text' => array( 'en' => __( "Thank you for contacting us.", 'contact_form' ) ),
104
  'cntctfrm_redirect_url' => '',
105
  'cntctfrm_delete_attached_file' => '0',
106
- 'cntctfrm_html_email' => 1
 
107
  );
108
 
109
  /* Install the option defaults */
@@ -226,7 +227,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
226
 
227
  $error = "";
228
  /* Save data for settings page */
229
- if( isset( $_POST['cntctfrm_form_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'cntctfrm_nonce_name' ) ) {
230
  $cntctfrm_options_submit['cntctfrm_user_email'] = $_POST['cntctfrm_user_email'];
231
  $cntctfrm_options_submit['cntctfrm_custom_email'] = stripslashes( $_POST['cntctfrm_custom_email'] );
232
  $cntctfrm_options_submit['cntctfrm_select_email'] = $_POST['cntctfrm_select_email'];
@@ -259,6 +260,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
259
  $cntctfrm_options_submit['cntctfrm_action_after_send'] = 1;
260
  $cntctfrm_options_submit['cntctfrm_delete_attached_file'] = 0;
261
  $cntctfrm_options_submit['cntctfrm_html_email'] = 1;
 
262
  if ( empty( $cntctfrm_options['cntctfrm_language'] ) ) {
263
  $cntctfrm_options_submit['cntctfrm_name_label'] = $cntctfrm_option_defaults['cntctfrm_name_label'];
264
  $cntctfrm_options_submit['cntctfrm_address_label'] = $cntctfrm_option_defaults['cntctfrm_address_label'];
@@ -383,10 +385,10 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
383
  $cntctfrm_options_submit['cntctfrm_required_message_field'] = isset( $_POST['cntctfrm_required_message_field']) ? 1 : 0;
384
 
385
  $cntctfrm_options_submit['cntctfrm_required_symbol'] = isset( $_POST['cntctfrm_required_symbol']) ? $_POST['cntctfrm_required_symbol'] : '*';
386
-
387
  $cntctfrm_options_submit['cntctfrm_html_email'] = isset( $_POST['cntctfrm_html_email']) ? 1 : 0;
 
 
388
 
389
- $cntctfrm_options_submit['cntctfrm_display_add_info'] = isset( $_POST['cntctfrm_display_add_info']) ? 1 : 0;
390
  if ( 1 == $cntctfrm_options_submit['cntctfrm_display_add_info'] ) {
391
  $cntctfrm_options_submit['cntctfrm_display_sent_from'] = isset( $_POST['cntctfrm_display_sent_from']) ? 1 : 0;
392
  $cntctfrm_options_submit['cntctfrm_display_date_time'] = isset( $_POST['cntctfrm_display_date_time']) ? 1 : 0;
@@ -400,6 +402,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
400
  }
401
 
402
  $cntctfrm_options_submit['cntctfrm_change_label'] = isset( $_POST['cntctfrm_change_label']) ? 1 : 0;
 
403
  if ( 1 == $cntctfrm_options_submit['cntctfrm_change_label'] ) {
404
  foreach ( $_POST['cntctfrm_name_label'] as $key => $val ){
405
  $cntctfrm_options_submit['cntctfrm_name_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_name_label'][ $key ] ) );
@@ -1061,6 +1064,15 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
1061
  <input type="radio" id="cntctfrm_action_after_send_url" name="cntctfrm_action_after_send" value="0" <?php if ( '0' == $cntctfrm_options['cntctfrm_action_after_send'] ) echo "checked=\"checked\" "; ?>/> <?php _e( "Redirect to the page", 'contact_form' ); ?><br />
1062
  <input type="text" name="cntctfrm_redirect_url" value="<?php echo $cntctfrm_options['cntctfrm_redirect_url']; ?>" onfocus="document.getElementById('cntctfrm_action_after_send_url').checked = true;" /> <span class="cntctfrm_info"><?php _e( "Url", 'contact_form' ); ?></span>
1063
  </td>
 
 
 
 
 
 
 
 
 
1064
  </table>
1065
  <input type="hidden" name="cntctfrm_form_submit" value="submit" />
1066
  <p class="submit">
@@ -1407,9 +1419,9 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
1407
  $content = "";
1408
 
1409
  if ( '80' != $_SERVER["SERVER_PORT"] )
1410
- $page_url = $page_url = ( isset( $_SERVER["HTTPS"] ) && $_SERVER["HTTPS"] == "on" ? "https://" : "http://" ).$_SERVER["SERVER_NAME"].':'. $_SERVER["SERVER_PORT"].strip_tags( $_SERVER["REQUEST_URI"] );
1411
  else
1412
- $page_url = ( isset( $_SERVER["HTTPS"] ) && $_SERVER["HTTPS"] == "on" ? "https://" : "http://" ) . $_SERVER["SERVER_NAME"] . strip_tags( $_SERVER["REQUEST_URI"] );
1413
 
1414
  /* If contact form submited */
1415
  $name = isset( $_POST['cntctfrm_contact_name'] ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_name'] ) ) : "";
@@ -1741,6 +1753,7 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
1741
  function cntctfrm_send_mail() {
1742
  global $cntctfrm_options, $path_of_uploaded_file, $wp_version;
1743
  $to = "";
 
1744
 
1745
  $name = isset( $_POST['cntctfrm_contact_name'] ) ? $_POST['cntctfrm_contact_name'] : "";
1746
  $address = isset( $_POST['cntctfrm_contact_address'] ) ? $_POST['cntctfrm_contact_address'] : "";
@@ -1776,7 +1789,6 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
1776
  $userdomain = '';
1777
  $form_action_url = '';
1778
  $attachments = array();
1779
- $headers = "";
1780
 
1781
  if ( 'on' == getenv('HTTPS') ) {
1782
  $form_action_url = 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
@@ -1874,9 +1886,10 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
1874
 
1875
  do_action( 'cntctfrm_get_mail_data', $to, $name, $email, $address, $phone, $subject, $message, $form_action_url, $user_agent, $userdomain );
1876
 
 
 
1877
  if ( 'wp-mail' == $cntctfrm_options['cntctfrm_mail_method'] ) {
1878
  /* To send HTML mail, the Content-type header must be set */
1879
- $headers = 'MIME-Version: 1.0' . "\n";
1880
  if ( 1 == $cntctfrm_options['cntctfrm_html_email'] )
1881
  $headers .= 'Content-type: text/html; charset=utf-8' . "\n";
1882
  else
@@ -1905,7 +1918,6 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
1905
  } else {
1906
  if ( 1 == $cntctfrm_options['cntctfrm_attachment'] && isset( $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) && "" != $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) {
1907
  global $path_of_uploaded_file;
1908
- $headers = "";
1909
  $message_block = $message_text;
1910
 
1911
  if ( 'custom' == $cntctfrm_options['cntctfrm_select_from_field'] )
@@ -1926,8 +1938,7 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
1926
 
1927
  $bound_last = "--" . $bound_text . "--";
1928
 
1929
- $headers .= "MIME-Version: 1.0\n" .
1930
- "Content-Type: multipart/mixed; boundary=\"$bound_text\"";
1931
 
1932
  $message_text = __( "If you can see this MIME, it means that the MIME type is not supported by your email client!", "contact_form" ) . "\n";
1933
 
@@ -1946,21 +1957,19 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
1946
  "Content-Transfer-Encoding: base64\n\n" . chunk_split( base64_encode( $file ) ) . "\n\n";
1947
  $message_text .= $bound_last;
1948
  } else {
1949
- /* To send HTML mail, the Content-type header must be set */
1950
- $headers = 'MIME-Version: 1.0' . "\n";
1951
  if ( 1 == $cntctfrm_options['cntctfrm_html_email'] )
1952
  $headers .= 'Content-type: text/html; charset=utf-8' . "\n";
1953
  else
1954
  $headers .= 'Content-type: text/plain; charset=utf-8' . "\n";
1955
 
1956
-
1957
  if ( 'custom' == $cntctfrm_options['cntctfrm_select_from_field'] )
1958
  $from_field_name = stripslashes( $cntctfrm_options['cntctfrm_from_field'] );
1959
  else
1960
  $from_field_name = $name;
1961
 
1962
  /* Additional headers */
1963
- if( 'custom' == $cntctfrm_options['cntctfrm_from_email'] )
1964
  $headers .= 'From: ' . $from_field_name . ' <' . stripslashes( $cntctfrm_options['cntctfrm_custom_from_email'] ) . '>' . "\n";
1965
  else
1966
  $headers .= 'From: ' . $from_field_name . ' <' . $email . '>' . "\n";
@@ -1968,7 +1977,7 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
1968
  if ( isset( $_POST['cntctfrm_contact_send_copy'] ) && 1 == $_POST['cntctfrm_contact_send_copy'] )
1969
  @mail( $email, $subject, $message_text_for_user, $headers );
1970
 
1971
- $mail_result = @mail( $to, $subject , $message_text, $headers);
1972
  /* Delete attachment */
1973
  if ( 1 == $cntctfrm_options['cntctfrm_attachment'] && isset( $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) && "" != $_FILES["cntctfrm_contact_attachment"]["tmp_name"] && '1' == $cntctfrm_options['cntctfrm_delete_attached_file'] ) {
1974
  @unlink( $path_of_uploaded_file );
@@ -2209,27 +2218,27 @@ if ( ! function_exists ( 'cntctfrm_plugin_banner' ) ) {
2209
  });
2210
  });
2211
  })(jQuery);
2212
- </script>
2213
- <div class="cntctfrm_message">
2214
- <img class="cntctfrm_close_icon" title="" src="' . plugins_url( 'images/close_banner.png', __FILE__ ) . '" alt=""/>
2215
- <img class="cntctfrm_icon" title="" src="' . plugins_url( 'images/banner.png', __FILE__ ) . '" alt=""/>
2216
- <div class="cntctfrm_text">
2217
- It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version!<br />
2218
- <span>Extend standard plugin functionality with new great options.</span>
2219
- </div>
2220
- <a class="button cntctfrm_button" target="_blank" href="http://bestwebsoft.com/plugin/contact-form-pro/?k=f575dc39cba54a9de88df346eed52101&pn=77&v=' . $plugin_info["Version"] . '&wp_v=' . $wp_version . '">Learn More</a>
2221
- </div>';
2222
  if ( ! array_key_exists( 'contact-form-to-db/contact_form_to_db.php', $all_plugins ) && ! array_key_exists( 'contact-form-to-db-pro/contact_form_to_db_pro.php', $all_plugins ) ) {
2223
- echo '<div class="cntctfrm_message_for_ctfrmtdb">
2224
- <img class="cntctfrm_for_ctfrmtdb_close_icon" title="" src="' . plugins_url( 'images/close_banner.png', __FILE__ ) . '" alt=""/>
2225
- <img class="cntctfrm_icon" title="" src="' . plugins_url( 'images/banner_for_ctfrmtdb.png', __FILE__ ) . '" alt=""/>
2226
- <div class="cntctfrm_text">
2227
- <strong>Contact Form to DB</strong> allows to store your messages to the database.<br />
2228
- <span>Manage messages that have been sent from your website.</span>
2229
  </div>
2230
- <a class="button cntctfrm_button" target="_blank" href="http://bestwebsoft.com/plugin/contact-form-to-db-pro/?k=6ebf0743736411607343ad391dc3b436&pn=77&v=' . $plugin_info["Version"] . '&wp_v=' . $wp_version . '">Learn More</a>
 
2231
  </div>';
2232
- }
2233
  echo '</div>';
2234
  break;
2235
  }
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
+ Version: 3.72
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
103
  'cntctfrm_thank_text' => array( 'en' => __( "Thank you for contacting us.", 'contact_form' ) ),
104
  'cntctfrm_redirect_url' => '',
105
  'cntctfrm_delete_attached_file' => '0',
106
+ 'cntctfrm_html_email' => 1,
107
+ 'cntctfrm_site_name_parameter' => 'SERVER_NAME'
108
  );
109
 
110
  /* Install the option defaults */
227
 
228
  $error = "";
229
  /* Save data for settings page */
230
+ if ( isset( $_POST['cntctfrm_form_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'cntctfrm_nonce_name' ) ) {
231
  $cntctfrm_options_submit['cntctfrm_user_email'] = $_POST['cntctfrm_user_email'];
232
  $cntctfrm_options_submit['cntctfrm_custom_email'] = stripslashes( $_POST['cntctfrm_custom_email'] );
233
  $cntctfrm_options_submit['cntctfrm_select_email'] = $_POST['cntctfrm_select_email'];
260
  $cntctfrm_options_submit['cntctfrm_action_after_send'] = 1;
261
  $cntctfrm_options_submit['cntctfrm_delete_attached_file'] = 0;
262
  $cntctfrm_options_submit['cntctfrm_html_email'] = 1;
263
+ $cntctfrm_options_submit['cntctfrm_site_name_parameter'] = 'SERVER_NAME';
264
  if ( empty( $cntctfrm_options['cntctfrm_language'] ) ) {
265
  $cntctfrm_options_submit['cntctfrm_name_label'] = $cntctfrm_option_defaults['cntctfrm_name_label'];
266
  $cntctfrm_options_submit['cntctfrm_address_label'] = $cntctfrm_option_defaults['cntctfrm_address_label'];
385
  $cntctfrm_options_submit['cntctfrm_required_message_field'] = isset( $_POST['cntctfrm_required_message_field']) ? 1 : 0;
386
 
387
  $cntctfrm_options_submit['cntctfrm_required_symbol'] = isset( $_POST['cntctfrm_required_symbol']) ? $_POST['cntctfrm_required_symbol'] : '*';
 
388
  $cntctfrm_options_submit['cntctfrm_html_email'] = isset( $_POST['cntctfrm_html_email']) ? 1 : 0;
389
+ $cntctfrm_options_submit['cntctfrm_site_name_parameter'] = $_POST['cntctfrm_site_name_parameter'];
390
+ $cntctfrm_options_submit['cntctfrm_display_add_info'] = isset( $_POST['cntctfrm_display_add_info']) ? 1 : 0;
391
 
 
392
  if ( 1 == $cntctfrm_options_submit['cntctfrm_display_add_info'] ) {
393
  $cntctfrm_options_submit['cntctfrm_display_sent_from'] = isset( $_POST['cntctfrm_display_sent_from']) ? 1 : 0;
394
  $cntctfrm_options_submit['cntctfrm_display_date_time'] = isset( $_POST['cntctfrm_display_date_time']) ? 1 : 0;
402
  }
403
 
404
  $cntctfrm_options_submit['cntctfrm_change_label'] = isset( $_POST['cntctfrm_change_label']) ? 1 : 0;
405
+
406
  if ( 1 == $cntctfrm_options_submit['cntctfrm_change_label'] ) {
407
  foreach ( $_POST['cntctfrm_name_label'] as $key => $val ){
408
  $cntctfrm_options_submit['cntctfrm_name_label'][ $key ] = stripcslashes( htmlspecialchars( $_POST['cntctfrm_name_label'][ $key ] ) );
1064
  <input type="radio" id="cntctfrm_action_after_send_url" name="cntctfrm_action_after_send" value="0" <?php if ( '0' == $cntctfrm_options['cntctfrm_action_after_send'] ) echo "checked=\"checked\" "; ?>/> <?php _e( "Redirect to the page", 'contact_form' ); ?><br />
1065
  <input type="text" name="cntctfrm_redirect_url" value="<?php echo $cntctfrm_options['cntctfrm_redirect_url']; ?>" onfocus="document.getElementById('cntctfrm_action_after_send_url').checked = true;" /> <span class="cntctfrm_info"><?php _e( "Url", 'contact_form' ); ?></span>
1066
  </td>
1067
+ </tr>
1068
+ <tr valign="top" class="cntctfrm_additions_block <?php if ( '0' == $cntctfrm_options['cntctfrm_additions_options'] ) echo "cntctfrm_hidden"; ?>">
1069
+ <th scope="row" style="width:200px;"><?php _e( 'The $_SERVER variable that is used to build a URL of the form', 'contact_form' ); ?></th>
1070
+ <td colspan="2">
1071
+ <label><input type="radio" name="cntctfrm_site_name_parameter" value="HTTP_HOST" <?php if ( 'SERVER_NAME' == $cntctfrm_options['cntctfrm_site_name_parameter'] ) echo "checked=\"checked\" "; ?>/> SERVER_NAME</label><br />
1072
+ <label><input type="radio" name="cntctfrm_site_name_parameter" value="HTTP_HOST" <?php if ( 'HTTP_HOST' == $cntctfrm_options['cntctfrm_site_name_parameter'] ) echo "checked=\"checked\" "; ?>/> HTTP_HOST</label><br />
1073
+ <span class="cntctfrm_info"><?php _e( "If you are not sure whether to change this setting or not, please do not do that.", 'contact_form' ); ?></span>
1074
+ </td>
1075
+ </tr>
1076
  </table>
1077
  <input type="hidden" name="cntctfrm_form_submit" value="submit" />
1078
  <p class="submit">
1419
  $content = "";
1420
 
1421
  if ( '80' != $_SERVER["SERVER_PORT"] )
1422
+ $page_url = $page_url = ( isset( $_SERVER["HTTPS"] ) && $_SERVER["HTTPS"] == "on" ? "https://" : "http://" ) . $_SERVER[ $cntctfrm_options['cntctfrm_site_name_parameter'] ].':'. $_SERVER["SERVER_PORT"].strip_tags( $_SERVER["REQUEST_URI"] );
1423
  else
1424
+ $page_url = ( isset( $_SERVER["HTTPS"] ) && $_SERVER["HTTPS"] == "on" ? "https://" : "http://" ) . $_SERVER[ $cntctfrm_options['cntctfrm_site_name_parameter'] ] . strip_tags( $_SERVER["REQUEST_URI"] );
1425
 
1426
  /* If contact form submited */
1427
  $name = isset( $_POST['cntctfrm_contact_name'] ) ? htmlspecialchars( stripslashes( $_POST['cntctfrm_contact_name'] ) ) : "";
1753
  function cntctfrm_send_mail() {
1754
  global $cntctfrm_options, $path_of_uploaded_file, $wp_version;
1755
  $to = "";
1756
+ $headers = "";
1757
 
1758
  $name = isset( $_POST['cntctfrm_contact_name'] ) ? $_POST['cntctfrm_contact_name'] : "";
1759
  $address = isset( $_POST['cntctfrm_contact_address'] ) ? $_POST['cntctfrm_contact_address'] : "";
1789
  $userdomain = '';
1790
  $form_action_url = '';
1791
  $attachments = array();
 
1792
 
1793
  if ( 'on' == getenv('HTTPS') ) {
1794
  $form_action_url = 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
1886
 
1887
  do_action( 'cntctfrm_get_mail_data', $to, $name, $email, $address, $phone, $subject, $message, $form_action_url, $user_agent, $userdomain );
1888
 
1889
+ $headers .= 'MIME-Version: 1.0' . "\n";
1890
+
1891
  if ( 'wp-mail' == $cntctfrm_options['cntctfrm_mail_method'] ) {
1892
  /* To send HTML mail, the Content-type header must be set */
 
1893
  if ( 1 == $cntctfrm_options['cntctfrm_html_email'] )
1894
  $headers .= 'Content-type: text/html; charset=utf-8' . "\n";
1895
  else
1918
  } else {
1919
  if ( 1 == $cntctfrm_options['cntctfrm_attachment'] && isset( $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) && "" != $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) {
1920
  global $path_of_uploaded_file;
 
1921
  $message_block = $message_text;
1922
 
1923
  if ( 'custom' == $cntctfrm_options['cntctfrm_select_from_field'] )
1938
 
1939
  $bound_last = "--" . $bound_text . "--";
1940
 
1941
+ $headers .= "Content-Type: multipart/mixed; boundary=\"$bound_text\"";
 
1942
 
1943
  $message_text = __( "If you can see this MIME, it means that the MIME type is not supported by your email client!", "contact_form" ) . "\n";
1944
 
1957
  "Content-Transfer-Encoding: base64\n\n" . chunk_split( base64_encode( $file ) ) . "\n\n";
1958
  $message_text .= $bound_last;
1959
  } else {
1960
+ /* To send HTML mail, header must be set */
 
1961
  if ( 1 == $cntctfrm_options['cntctfrm_html_email'] )
1962
  $headers .= 'Content-type: text/html; charset=utf-8' . "\n";
1963
  else
1964
  $headers .= 'Content-type: text/plain; charset=utf-8' . "\n";
1965
 
 
1966
  if ( 'custom' == $cntctfrm_options['cntctfrm_select_from_field'] )
1967
  $from_field_name = stripslashes( $cntctfrm_options['cntctfrm_from_field'] );
1968
  else
1969
  $from_field_name = $name;
1970
 
1971
  /* Additional headers */
1972
+ if ( 'custom' == $cntctfrm_options['cntctfrm_from_email'] )
1973
  $headers .= 'From: ' . $from_field_name . ' <' . stripslashes( $cntctfrm_options['cntctfrm_custom_from_email'] ) . '>' . "\n";
1974
  else
1975
  $headers .= 'From: ' . $from_field_name . ' <' . $email . '>' . "\n";
1977
  if ( isset( $_POST['cntctfrm_contact_send_copy'] ) && 1 == $_POST['cntctfrm_contact_send_copy'] )
1978
  @mail( $email, $subject, $message_text_for_user, $headers );
1979
 
1980
+ $mail_result = @mail( $to, $subject , $message_text, $headers );
1981
  /* Delete attachment */
1982
  if ( 1 == $cntctfrm_options['cntctfrm_attachment'] && isset( $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) && "" != $_FILES["cntctfrm_contact_attachment"]["tmp_name"] && '1' == $cntctfrm_options['cntctfrm_delete_attached_file'] ) {
1983
  @unlink( $path_of_uploaded_file );
2218
  });
2219
  });
2220
  })(jQuery);
2221
+ </script>
2222
+ <div class="cntctfrm_message bws_banner_on_plugin_page">
2223
+ <a class="button" target="_blank" href="http://bestwebsoft.com/plugin/contact-form-pro/?k=f575dc39cba54a9de88df346eed52101&pn=77&v=' . $plugin_info["Version"] . '&wp_v=' . $wp_version . '">Learn More</a>
2224
+ <div class="text">
2225
+ ' . __( "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version", 'contact_form' ) . '!<br />
2226
+ <span>' . __( "Extend standard plugin functionality with new great options.", 'contact_form' ) . '</span>
2227
+ </div>
2228
+ <img class="cntctfrm_close_icon close_icon" title="" src="' . plugins_url( 'images/close_banner.png', __FILE__ ) . '" alt=""/>
2229
+ <img class="icon" title="" src="' . plugins_url( 'images/banner.png', __FILE__ ) . '" alt=""/>
2230
+ </div>';
2231
  if ( ! array_key_exists( 'contact-form-to-db/contact_form_to_db.php', $all_plugins ) && ! array_key_exists( 'contact-form-to-db-pro/contact_form_to_db_pro.php', $all_plugins ) ) {
2232
+ echo '<div class="cntctfrm_message_for_ctfrmtdb bws_banner_on_plugin_page">
2233
+ <a class="button" target="_blank" href="http://bestwebsoft.com/plugin/contact-form-to-db-pro/?k=6ebf0743736411607343ad391dc3b436&pn=77&v=' . $plugin_info["Version"] . '&wp_v=' . $wp_version . '">Learn More</a>
2234
+ <div class="text">
2235
+ ' . __( "<strong>Contact Form to DB</strong> allows to store your messages to the database.", 'contact_form' ) . '<br />
2236
+ <span>' . __( "Manage messages that have been sent from your website.", 'contact_form' ) . '</span>
 
2237
  </div>
2238
+ <img class="cntctfrm_for_ctfrmtdb_close_icon close_icon" title="" src="' . plugins_url( 'images/close_banner.png', __FILE__ ) . '" alt=""/>
2239
+ <img class="icon" title="" src="' . plugins_url( 'images/banner_for_ctfrmtdb.png', __FILE__ ) . '" alt=""/>
2240
  </div>';
2241
+ }
2242
  echo '</div>';
2243
  break;
2244
  }
css/style.css CHANGED
@@ -236,123 +236,63 @@ td.bws_pro_version {
236
  font-weight: normal;
237
  padding-bottom: 10px;
238
  }
239
- /* banner */
240
- .cntctfrm_message {
241
- min-width: 800px;
242
- border: 1px solid #1b6394;
243
- padding: 5px;
244
- margin: 12px 0;
245
- background: #2484c6;
246
- position: relative;
247
- overflow: hidden;
248
- }
249
- .cntctfrm_message .cntctfrm_text {
250
- color: #FFF;
251
- font-size: 15px;
252
- line-height: 26px;
253
- margin-top: 8px;
254
- float: left;
255
- }
256
- .cntctfrm_message .cntctfrm_text span {
257
- font-size: 12px;
258
- opacity: 0.7;
259
- }
260
- .cntctfrm_message .cntctfrm_button {
261
- float: right;
262
- border: 1px solid #14496d;
263
- font-size: 14px;
264
- margin: 10px;
265
- padding: 12px 0;
266
- color: #FFF;
267
- text-shadow: 0 1px 3px #2483c5;
268
- font-weight: bold;
269
- background: #17537e;
270
- -moz-border-radius : 3px;
271
- border-radius: 3px;
272
- -webkit-border-radius: 3px;
273
- text-decoration: none;
274
- height: 50px;
275
- text-align: center;
276
- width: 147px;
277
- -moz-box-shadow: 0px 1px 1px 0 #3e7aa3 inset;
278
- -webkit-box-shadow: 0px 1px 1px 0 #3e7aa3 inset;
279
- box-shadow: 0px 1px 1px 0 #3e7aa3 inset;
280
- }
281
- .cntctfrm_message .cntctfrm_button:hover,
282
- .cntctfrm_message .cntctfrm_button:focus {
283
- background: #2b9eed;
284
- color: #FFF;
285
- border: 1px solid #1d6ca1;
286
- -moz-box-shadow: 0px 1px 1px 0 #4bacf0 inset;
287
- -webkit-box-shadow: 0px 1px 1px 0 #4bacf0 inset;
288
- box-shadow: 0px 1px 1px 0 #4bacf0 inset;
289
- }
290
- .cntctfrm_message .cntctfrm_icon {
291
- float: left;
292
- margin: 14px 18px 15px 1px;
293
- }
294
- .cntctfrm_message .cntctfrm_close_icon {
295
- float: left;
296
- margin: 4px 0 0 4px;
297
- cursor: pointer;
298
- }
299
- .cntctfrm_message_for_ctfrmtdb {
300
- min-width: 800px;
301
- border: 1px solid #1b6394;
302
- padding: 5px;
303
- margin: 12px 0;
304
- background: #2484c6;
305
- position: relative;
306
- overflow: hidden;
307
- }
308
- .cntctfrm_message_for_ctfrmtdb .cntctfrm_text {
309
- color: #FFF;
310
- font-size: 15px;
311
- line-height: 26px;
312
- margin-top: 9px;
313
- float: left;
314
- }
315
- .cntctfrm_message_for_ctfrmtdb .cntctfrm_text span {
316
- font-size: 12px;
317
- opacity: 0.7;
318
- }
319
- .cntctfrm_message_for_ctfrmtdb .cntctfrm_button {
320
- float: right;
321
- border: 1px solid #14496d;
322
- font-size: 13px;
323
- margin: 16px 12px;
324
- padding: 5px 14px;
325
- color: #FFF;
326
- background: #17537e;
327
- -moz-border-radius : 5px;
328
- border-radius: 5px;
329
- -webkit-border-radius: 5px;
330
- text-decoration: none;
331
- height: 36px;
332
- text-align: center;
333
- text-transform: uppercase;
334
- }
335
- .cntctfrm_message_for_ctfrmtdb .cntctfrm_button:hover,
336
- .cntctfrm_message_for_ctfrmtdb .cntctfrm_button:focus {
337
- background: #2b9eed;
338
- color: #FFF;
339
- border: 1px solid #1d6ca1;
340
- -moz-box-shadow: 0px 1px 1px 0 #4bacf0 inset;
341
- -webkit-box-shadow: 0px 1px 1px 0 #4bacf0 inset;
342
- box-shadow: 0px 1px 1px 0 #4bacf0 inset;
343
- }
344
- .cntctfrm_message_for_ctfrmtdb .cntctfrm_icon {
345
- float: left;
346
- margin: 10px 19px 12px 23px;
347
- }
348
- .cntctfrm_message_for_ctfrmtdb .cntctfrm_for_ctfrmtdb_close_icon {
349
- float: right;
350
- margin: 4px;
351
- cursor: pointer;
352
- }
353
  .cntctfrmpr_department_table > img {
354
  margin: -21px 17px 0;
355
  }
356
  #cntctfrmpr_pro_version > td {
357
  width: 900px;
358
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
236
  font-weight: normal;
237
  padding-bottom: 10px;
238
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
239
  .cntctfrmpr_department_table > img {
240
  margin: -21px 17px 0;
241
  }
242
  #cntctfrmpr_pro_version > td {
243
  width: 900px;
244
  }
245
+ /* banner */
246
+ .bws_banner_on_plugin_page {
247
+ min-width: 800px;
248
+ border: 1px solid #d4d4d4;
249
+ margin: 12px 0;
250
+ background: #FFF;
251
+ position: relative;
252
+ overflow: hidden
253
+ }
254
+ .bws_banner_on_plugin_page .text {
255
+ color:#000;
256
+ font-size: 15px;
257
+ line-height: 26px;
258
+ margin-top: 18px;
259
+ float: left;
260
+ }
261
+ .bws_banner_on_plugin_page .text span {
262
+ font-size: 12px;
263
+ opacity: 0.7;
264
+ }
265
+ .bws_banner_on_plugin_page .button {
266
+ float: left;
267
+ border: none;
268
+ font-size: 14px;
269
+ margin: 18px 19px 18px 16px;
270
+ padding: 12px 0;
271
+ color: #FFF;
272
+ text-shadow: none;
273
+ font-weight: bold;
274
+ background: #0074A2;
275
+ -moz-border-radius: 3px;
276
+ border-radius: 3px;
277
+ -webkit-border-radius: 3px;
278
+ text-decoration: none;
279
+ height: 50px;
280
+ text-align: center;
281
+ text-transform: uppercase;
282
+ width: 147px;
283
+ box-shadow: none;
284
+ }
285
+ .bws_banner_on_plugin_page .button:hover,
286
+ .bws_banner_on_plugin_page .button:focus {
287
+ background: #222;
288
+ color: #FFF;
289
+ }
290
+ .bws_banner_on_plugin_page .icon {
291
+ float: right;
292
+ margin: 18px 0;
293
+ }
294
+ .bws_banner_on_plugin_page .close_icon {
295
+ float: right;
296
+ margin: 8px;
297
+ cursor: pointer;
298
+ }
css/style_wp_before_3.8.css CHANGED
@@ -232,129 +232,67 @@ td.bws_pro_version {
232
  font-weight: normal;
233
  padding-bottom: 10px;
234
  }
235
- /* banner */
236
- .cntctfrm_message {
237
- min-width: 800px;
238
- border: 1px solid #1b6394;
239
- padding: 5px;
240
- margin: 12px 0;
241
- background: #2484c6;
242
- -moz-border-radius: 3px;
243
- border-radius: 3px;
244
- -webkit-border-radius: 3px;
245
- position: relative;
246
- overflow: hidden
247
- }
248
- .cntctfrm_message .cntctfrm_text {
249
- color: #FFF;
250
- font-size: 15px;
251
- line-height: 26px;
252
- margin-top: 8px;
253
- float: left;
254
- }
255
- .cntctfrm_message .cntctfrm_text span {
256
- font-size: 12px;
257
- opacity: 0.7;
258
- }
259
- .cntctfrm_message .cntctfrm_button {
260
- float: right;
261
- border: 1px solid #14496d;
262
- font-size: 14px;
263
- margin: 10px;
264
- padding: 12px 0;
265
- color: #FFF;
266
- text-shadow: 0 1px 3px #2483c5;
267
- font-weight: bold;
268
- background: #17537e;
269
- -moz-border-radius : 3px;
270
- border-radius: 3px;
271
- -webkit-border-radius: 3px;
272
- text-decoration: none;
273
- height: 50px;
274
- text-align: center;
275
- width: 147px;
276
- -moz-box-shadow: 0px 1px 1px 0 #3e7aa3 inset;
277
- -webkit-box-shadow: 0px 1px 1px 0 #3e7aa3 inset;
278
- box-shadow: 0px 1px 1px 0 #3e7aa3 inset;
279
- }
280
- .cntctfrm_message .cntctfrm_button:hover,
281
- .cntctfrm_message .cntctfrm_button:focus {
282
- background: #2b9eed;
283
- color: #FFF;
284
- border: 1px solid #1d6ca1;
285
- -moz-box-shadow: 0px 1px 1px 0 #4bacf0 inset;
286
- -webkit-box-shadow: 0px 1px 1px 0 #4bacf0 inset;
287
- box-shadow: 0px 1px 1px 0 #4bacf0 inset;
288
- }
289
- .cntctfrm_message .cntctfrm_icon {
290
- float: left;
291
- margin: 14px 18px 15px 1px;
292
  }
293
- .cntctfrm_message .cntctfrm_close_icon {
294
- float: left;
295
- margin: 4px 0 0 4px;
296
- cursor: pointer;
297
  }
298
- .cntctfrm_message_for_ctfrmtdb {
299
- min-width: 800px;
300
- border: 1px solid #1b6394;
301
- padding: 5px;
 
 
 
302
  margin: 12px 0;
303
- background: #2484c6;
304
  -moz-border-radius: 3px;
305
- border-radius: 3px;
306
  -webkit-border-radius: 3px;
307
- position: relative;
308
- overflow: hidden
309
- }
310
- .cntctfrm_message_for_ctfrmtdb .cntctfrm_text {
311
- color: #FFF;
312
- font-size: 15px;
313
- line-height: 26px;
314
- margin-top: 9px;
315
- float: left;
316
- }
317
- .cntctfrm_message_for_ctfrmtdb .cntctfrm_text span {
318
- font-size: 12px;
319
- opacity: 0.7;
320
- }
321
- .cntctfrm_message_for_ctfrmtdb .cntctfrm_button {
322
- float: right;
323
- border: 1px solid #14496d;
324
- font-size: 13px;
325
- margin: 16px 12px;
326
- padding: 5px 14px;
327
- color: #FFF;
328
- background: #17537e;
329
- -moz-border-radius : 5px;
330
- border-radius: 5px;
331
- -webkit-border-radius: 5px;
332
- text-decoration: none;
333
- height: 36px;
334
- text-align: center;
335
- text-transform: uppercase;
336
- }
337
- .cntctfrm_message_for_ctfrmtdb .cntctfrm_button:hover,
338
- .cntctfrm_message_for_ctfrmtdb .cntctfrm_button:focus {
339
- background: #2b9eed;
340
- color: #FFF;
341
- border: 1px solid #1d6ca1;
342
- -moz-box-shadow: 0px 1px 1px 0 #4bacf0 inset;
343
- -webkit-box-shadow: 0px 1px 1px 0 #4bacf0 inset;
344
- box-shadow: 0px 1px 1px 0 #4bacf0 inset;
345
- }
346
- .cntctfrm_message_for_ctfrmtdb .cntctfrm_icon {
347
- float: left;
348
- margin: 10px 19px 12px 23px;
349
- }
350
- .cntctfrm_message_for_ctfrmtdb .cntctfrm_for_ctfrmtdb_close_icon {
351
- float: right;
352
- margin: 4px;
353
- cursor: pointer;
354
- }
355
- .cntctfrmpr_department_table > img {
356
- margin: -21px 17px 0;
357
  }
358
- #cntctfrmpr_pro_version > td {
359
- width: 900px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
360
  }
232
  font-weight: normal;
233
  padding-bottom: 10px;
234
  }
235
+ .cntctfrmpr_department_table > img {
236
+ margin: -21px 17px 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
237
  }
238
+ #cntctfrmpr_pro_version > td {
239
+ width: 900px;
 
 
240
  }
241
+ /* banner */
242
+ .bws_banner_on_plugin_page {
243
+ min-width: 800px;
244
+ border: 1px solid #d4d4d4;
245
+ background: #FFF;
246
+ position: relative;
247
+ overflow: hidden;
248
  margin: 12px 0;
249
+ background: #ECECEC;
250
  -moz-border-radius: 3px;
 
251
  -webkit-border-radius: 3px;
252
+ border-radius: 3px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
253
  }
254
+ .bws_banner_on_plugin_page .text {
255
+ color: #000;
256
+ font-size: 15px;
257
+ line-height: 26px;
258
+ margin-top: 18px;
259
+ float: left;
260
+ }
261
+ .bws_banner_on_plugin_page .text span {
262
+ font-size: 12px;
263
+ opacity: 0.7;
264
+ }
265
+ .bws_banner_on_plugin_page .button {
266
+ float: left;
267
+ border: none;
268
+ font-size: 14px;
269
+ margin: 18px 19px 18px 16px;
270
+ padding: 14px 0;
271
+ color: #FFF;
272
+ text-shadow: none;
273
+ font-weight: bold;
274
+ background: #0074A2;
275
+ -moz-border-radius: 3px;
276
+ border-radius: 3px;
277
+ -webkit-border-radius: 3px;
278
+ text-decoration: none;
279
+ height: 50px;
280
+ text-align: center;
281
+ text-transform: uppercase;
282
+ width: 147px;
283
+ box-shadow: none;
284
+ }
285
+ .bws_banner_on_plugin_page .button:hover,
286
+ .bws_banner_on_plugin_page .button:focus {
287
+ background: #222;
288
+ color: #FFF;
289
+ }
290
+ .bws_banner_on_plugin_page .icon {
291
+ float: right;
292
+ margin: 18px 0;
293
+ }
294
+ .bws_banner_on_plugin_page .close_icon {
295
+ float: right;
296
+ margin: 8px;
297
+ cursor: pointer;
298
  }
images/banner.png CHANGED
Binary file
images/banner_for_ctfrmtdb.png CHANGED
Binary file
images/close_banner.png CHANGED
Binary file
languages/contact_form-be_BY.mo CHANGED
Binary file
languages/contact_form-be_BY.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-02-03 10:09+0300\n"
6
- "PO-Revision-Date: 2014-02-03 10:09+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Sakałoŭ Alaksiej <nullbsd@gmail.com>\n"
9
  "Language: be_BY\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: contact_form.php:33
20
- #: contact_form.php:659
21
  #, fuzzy
22
  msgid "Contact Form Settings"
23
  msgstr "Наладкі кантактнай формы"
@@ -27,45 +27,45 @@ msgid "Contact Form"
27
  msgstr "Кантактная форма"
28
 
29
  #: contact_form.php:80
30
- #: contact_form.php:977
31
- #: contact_form.php:1007
32
  msgid "Name:"
33
  msgstr "Імя:"
34
 
35
  #: contact_form.php:81
36
- #: contact_form.php:978
37
- #: contact_form.php:1008
38
  #, fuzzy
39
  msgid "Address:"
40
  msgstr "E-mail адрас:"
41
 
42
  #: contact_form.php:82
43
- #: contact_form.php:979
44
- #: contact_form.php:1009
45
  msgid "Email Address:"
46
  msgstr "E-mail адрас:"
47
 
48
  #: contact_form.php:83
49
- #: contact_form.php:980
50
- #: contact_form.php:1010
51
  msgid "Phone number:"
52
  msgstr "Тэлефон:"
53
 
54
  #: contact_form.php:84
55
- #: contact_form.php:981
56
- #: contact_form.php:1011
57
  msgid "Subject:"
58
  msgstr "Тэма:"
59
 
60
  #: contact_form.php:85
61
- #: contact_form.php:982
62
- #: contact_form.php:1012
63
  msgid "Message:"
64
  msgstr "Паведамленьне:"
65
 
66
  #: contact_form.php:86
67
- #: contact_form.php:983
68
- #: contact_form.php:1013
69
  msgid "Attachment:"
70
  msgstr "Прычапіць файл:"
71
 
@@ -74,14 +74,14 @@ msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI,
74
  msgstr ""
75
 
76
  #: contact_form.php:88
77
- #: contact_form.php:985
78
- #: contact_form.php:1015
79
  msgid "Send me a copy"
80
  msgstr "Адправіць мне копію"
81
 
82
  #: contact_form.php:89
83
- #: contact_form.php:986
84
- #: contact_form.php:1016
85
  msgid "Submit"
86
  msgstr "Адправіць"
87
 
@@ -139,852 +139,876 @@ msgstr "Калі ласка, зрабіце выпраўленьне ў радк
139
  msgid "Thank you for contacting us."
140
  msgstr "Дзякуем за кантакт з намі."
141
 
142
- #: contact_form.php:202
143
  #, fuzzy
144
  msgid "requires"
145
  msgstr "Абавязковыя палі"
146
 
147
- #: contact_form.php:202
148
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
149
  msgstr ""
150
 
151
- #: contact_form.php:202
152
  msgid "Back to the WordPress"
153
  msgstr ""
154
 
155
- #: contact_form.php:202
156
  #, fuzzy
157
  msgid "Plugins page"
158
  msgstr "Плагины BWS"
159
 
160
- #: contact_form.php:493
161
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
162
  msgstr "Калі наладка 'Перайсьці на старонку' абрана, тады URL павінен быць запоўнены ў наступным фармаце"
163
 
164
- #: contact_form.php:502
165
  msgid "Such user does not exist. Settings are not saved."
166
  msgstr "Дадзены карыстальнік ня знойдзен. Наладкі не захаваны"
167
 
168
- #: contact_form.php:506
169
- #: contact_form.php:512
170
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
171
  msgstr "Калі ласка, увядзіце карэктны адрас для радка 'FROM'. Наладкі не захаваны."
172
 
173
- #: contact_form.php:517
174
  #, fuzzy
175
  msgid "Settings saved."
176
  msgstr "Наладкі захаваны."
177
 
178
- #: contact_form.php:553
179
- #: contact_form.php:592
180
  msgid "Wrong license key"
181
  msgstr ""
182
 
183
- #: contact_form.php:585
184
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
185
  msgstr ""
186
 
187
- #: contact_form.php:594
188
  msgid "This license key is bind to another site"
189
  msgstr ""
190
 
191
- #: contact_form.php:596
192
- #: contact_form.php:1382
193
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
194
  msgstr ""
195
 
196
- #: contact_form.php:614
197
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
198
  msgstr ""
199
 
200
- #: contact_form.php:620
201
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
202
  msgstr ""
203
 
204
- #: contact_form.php:624
205
- #: contact_form.php:633
206
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
207
  msgstr ""
208
 
209
- #: contact_form.php:637
210
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
211
  msgstr ""
212
 
213
- #: contact_form.php:652
214
  #, fuzzy
215
  msgid "Please, enter Your license key"
216
  msgstr "Выкарыстоўваць гэты email-адрас:"
217
 
218
- #: contact_form.php:661
219
  msgid "Notice:"
220
  msgstr ""
221
 
222
- #: contact_form.php:661
223
  msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
224
  msgstr ""
225
 
226
- #: contact_form.php:664
227
- #: contact_form.php:1990
228
- #: contact_form.php:2001
229
  msgid "Settings"
230
  msgstr "Наладкі"
231
 
232
- #: contact_form.php:665
233
  #, fuzzy
234
  msgid "Extra settings"
235
  msgstr "Наладкі"
236
 
237
- #: contact_form.php:666
238
  msgid "Go PRO"
239
  msgstr ""
240
 
241
- #: contact_form.php:672
242
- #: contact_form.php:1341
243
  msgid "If you would like to add the Contact Form to your website, just copy and paste this shortcode to your post or page or widget:"
244
  msgstr "Калі вы жадаеце дадаць Кантактную Форму на свой сайт, тады вам неабходна толькі скапіяваць ды ўставіць Shortcode у канктэнт старонкі, ці запісу, ці аздабленьня:"
245
 
246
- #: contact_form.php:672
247
  #: contact_form.php:673
248
- #: contact_form.php:1000
249
- #: contact_form.php:1049
 
250
  msgid "or"
251
  msgstr ""
252
 
253
- #: contact_form.php:673
254
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
255
  msgstr ""
256
 
257
- #: contact_form.php:674
258
  msgid "They work the same way."
259
  msgstr ""
260
 
261
- #: contact_form.php:675
262
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
263
  msgstr "Калі інфармацыя ў палях ніжэй адсутнічае, паведамленьне будзе адпраўлена на email адрас, які быў указаны пры рэгістрацыі на сайце."
264
 
265
- #: contact_form.php:679
266
  msgid "The user's email address:"
267
  msgstr "Электронны адрас карыстальніка:"
268
 
269
- #: contact_form.php:683
270
  msgid "Create a username"
271
  msgstr "Абярыце імя карыстальніка"
272
 
273
- #: contact_form.php:688
274
  msgid "Enter a username of the person who should get the messages from the contact form."
275
  msgstr "Увядзіце імя карыстальніка, які будзе атрымліваць паведамленьні кантактнай формы."
276
 
277
- #: contact_form.php:692
278
  msgid "Use this email address:"
279
  msgstr "Выкарыстоўваць гэты email-адрас:"
280
 
281
- #: contact_form.php:695
282
  msgid "Enter the email address you want the messages forwarded to."
283
  msgstr "Увядзіце адрас, на які хочаце перанакіраваць паведамленьне."
284
 
285
- #: contact_form.php:701
286
  msgid "Add department selectbox to the contact form:"
287
  msgstr ""
288
 
289
- #: contact_form.php:709
290
- #: contact_form.php:1236
291
  msgid "If you upgrade to Pro version all your settings will be saved."
292
  msgstr ""
293
 
294
- #: contact_form.php:714
295
- #: contact_form.php:851
296
- #: contact_form.php:922
297
- #: contact_form.php:1086
298
- msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
299
- msgstr ""
300
-
301
  #: contact_form.php:715
302
  #: contact_form.php:852
303
  #: contact_form.php:923
304
- #: contact_form.php:1087
 
 
 
 
 
 
 
305
  #, fuzzy
306
  msgid "Contact Form Pro"
307
  msgstr "Кантактная форма"
308
 
309
- #: contact_form.php:721
310
  msgid "Save emails to the database"
311
  msgstr ""
312
 
313
- #: contact_form.php:731
314
  msgid "Using"
315
  msgstr ""
316
 
317
- #: contact_form.php:731
318
- #: contact_form.php:900
319
- #: contact_form.php:903
320
- #: contact_form.php:907
321
  msgid "powered by"
322
  msgstr ""
323
 
324
- #: contact_form.php:734
325
- #: contact_form.php:738
326
  msgid "Using Contact Form to DB powered by"
327
  msgstr ""
328
 
329
- #: contact_form.php:734
330
  #, fuzzy
331
  msgid "Activate Contact Form to DB"
332
  msgstr "Кантактная форма"
333
 
334
- #: contact_form.php:738
335
  #, fuzzy
336
  msgid "Download Contact Form to DB"
337
  msgstr "Кантактная форма"
338
 
339
- #: contact_form.php:743
340
  msgid "Additional options"
341
  msgstr "Дадатковыя наладкі"
342
 
343
- #: contact_form.php:745
344
  msgid "Show"
345
  msgstr ""
346
 
347
- #: contact_form.php:746
348
  msgid "Hide"
349
  msgstr ""
350
 
351
- #: contact_form.php:750
352
  msgid "What to use?"
353
  msgstr "Што выкарыстоўваць?"
354
 
355
- #: contact_form.php:753
356
  msgid "Wp-mail"
357
  msgstr "Wp-mail"
358
 
359
- #: contact_form.php:753
360
  msgid "You can use the wp_mail function for mailing"
361
  msgstr "Для адпраўкі пошты вы можаце выкарыстоўваць функцыю php mail"
362
 
363
- #: contact_form.php:755
364
  msgid "Mail"
365
  msgstr "Mail"
366
 
367
- #: contact_form.php:755
368
  msgid "To send mail you can use the php mail function"
369
  msgstr "Для адпраўкі пошты вы можаце выкарыстоўваць функцыю php mail"
370
 
371
- #: contact_form.php:759
372
  #, fuzzy
373
  msgid "The text in the 'From' field"
374
  msgstr "Зьмяніць тэкст для радка 'FROM' у лісьце"
375
 
376
- #: contact_form.php:761
377
  msgid "User name"
378
  msgstr ""
379
 
380
- #: contact_form.php:762
381
  #, fuzzy
382
  msgid "The name of the user who fills the form will be used in the field 'From'."
383
  msgstr "Адрас электроннай пошты карыстальніка, які запаўняе форму будзе выкарыстоўвацца ў поле 'From'."
384
 
385
- #: contact_form.php:765
386
  #, fuzzy
387
  msgid "This text will be used in the 'FROM' field"
388
  msgstr "Гэты адрас будзе выкарыстоўвацца ў поле 'From'"
389
 
390
- #: contact_form.php:769
391
  #, fuzzy
392
  msgid "The email address in the 'From' field"
393
  msgstr "Калі ласка, увядзіце адрас электроннай пошты ў поле 'From'"
394
 
395
- #: contact_form.php:771
396
  msgid "User email"
397
  msgstr ""
398
 
399
- #: contact_form.php:772
400
  #, fuzzy
401
  msgid "The email address of the user who fills the form will be used in the field 'From'."
402
  msgstr "Адрас электроннай пошты карыстальніка, які запаўняе форму будзе выкарыстоўвацца ў поле 'From'."
403
 
404
- #: contact_form.php:775
405
  msgid "This email address will be used in the 'From' field."
406
  msgstr "Гэты адрас будзе выкарыстоўвацца ў поле 'From'"
407
 
408
- #: contact_form.php:779
409
  #, fuzzy
410
  msgid "Required symbol"
411
  msgstr "Абавязковыя палі"
412
 
413
- #: contact_form.php:789
414
  msgid "Fields"
415
  msgstr ""
416
 
417
- #: contact_form.php:790
418
  msgid "Used"
419
  msgstr ""
420
 
421
- #: contact_form.php:791
422
  #, fuzzy
423
  msgid "Required"
424
  msgstr "Абавязковыя палі"
425
 
426
- #: contact_form.php:792
427
  msgid "Visible"
428
  msgstr ""
429
 
430
- #: contact_form.php:793
431
  msgid "Disabled for editing"
432
  msgstr ""
433
 
434
- #: contact_form.php:794
435
  msgid "Field's default value"
436
  msgstr ""
437
 
438
- #: contact_form.php:799
439
- #: contact_form.php:1111
440
- #: contact_form.php:1831
441
- #: contact_form.php:1861
442
  msgid "Name"
443
  msgstr "Імя"
444
 
445
- #: contact_form.php:807
446
- #: contact_form.php:1116
447
- #: contact_form.php:1835
448
- #: contact_form.php:1863
449
  #, fuzzy
450
  msgid "Address"
451
  msgstr "E-mail адрас:"
452
 
453
- #: contact_form.php:815
454
  #, fuzzy
455
  msgid "Email Address"
456
  msgstr "E-mail адрас:"
457
 
458
- #: contact_form.php:823
459
  #, fuzzy
460
  msgid "Phone number"
461
  msgstr "Тэлефон:"
462
 
463
- #: contact_form.php:831
464
- #: contact_form.php:1131
465
- #: contact_form.php:1845
466
- #: contact_form.php:1867
467
  msgid "Subject"
468
  msgstr "Тэма"
469
 
470
- #: contact_form.php:839
471
- #: contact_form.php:1135
472
- #: contact_form.php:1848
473
- #: contact_form.php:1868
474
  msgid "Message"
475
  msgstr "Паведамленьне"
476
 
477
- #: contact_form.php:857
478
  #, fuzzy
479
  msgid "Attachment block"
480
  msgstr "Паказваць блок Прычапіць Файл"
481
 
482
- #: contact_form.php:859
483
  msgid "Users can attach the following file formats"
484
  msgstr "Карыстальнікі могуць прычапляць файлы наступных тыпаў"
485
 
486
- #: contact_form.php:873
487
  msgid "Add to the form"
488
  msgstr ""
489
 
490
- #: contact_form.php:878
491
  #, fuzzy
492
  msgid "Tips below the Attachment"
493
  msgstr "Паказваць блок Прычапіць Файл"
494
 
495
- #: contact_form.php:887
496
  #, fuzzy
497
  msgid "'Send me a copy' block"
498
  msgstr "Паказаць блок Адправіць мне копію"
499
 
500
- #: contact_form.php:900
501
- #: contact_form.php:903
502
- #: contact_form.php:907
503
- #: contact_form.php:1145
504
  msgid "Captcha"
505
  msgstr ""
506
 
507
- #: contact_form.php:903
508
  #, fuzzy
509
  msgid "Activate captcha"
510
  msgstr "Актываваныя пашырэньні"
511
 
512
- #: contact_form.php:907
513
  #, fuzzy
514
  msgid "Download captcha"
515
  msgstr "Спампаваць"
516
 
517
- #: contact_form.php:915
518
  msgid "Agreement checkbox"
519
  msgstr ""
520
 
521
- #: contact_form.php:915
522
  msgid "Required checkbox for submitting the form"
523
  msgstr ""
524
 
525
- #: contact_form.php:916
526
  msgid "Optional checkbox"
527
  msgstr ""
528
 
529
- #: contact_form.php:916
530
  msgid "Optional checkbox, the results of which will be displayed in email"
531
  msgstr ""
532
 
533
- #: contact_form.php:927
534
  msgid "Delete an attachment file from the server after the email is sent"
535
  msgstr ""
536
 
537
- #: contact_form.php:933
538
  msgid "Email in HTML format sending"
539
  msgstr ""
540
 
541
- #: contact_form.php:937
542
  #, fuzzy
543
  msgid "Display additional info in the email"
544
  msgstr "Паказ дадатковай інфармацыі ў лісьце"
545
 
546
- #: contact_form.php:942
547
- #: contact_form.php:1798
548
- #: contact_form.php:1800
549
  msgid "Sent from (ip address)"
550
  msgstr "Адпраўлена ад (IP адрас)"
551
 
552
- #: contact_form.php:942
553
  #, fuzzy
554
  msgid "Example: Sent from (IP address):\t127.0.0.1"
555
  msgstr "Адпраўлена ад (IP адрас)"
556
 
557
- #: contact_form.php:943
558
- #: contact_form.php:1804
559
- #: contact_form.php:1806
560
  msgid "Date/Time"
561
  msgstr "Дата/Час"
562
 
563
- #: contact_form.php:943
564
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
565
  msgstr ""
566
 
567
- #: contact_form.php:944
568
- #: contact_form.php:1810
569
- #: contact_form.php:1812
570
  msgid "Sent from (referer)"
571
  msgstr "Прыйшло з "
572
 
573
- #: contact_form.php:944
574
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
575
  msgstr ""
576
 
577
- #: contact_form.php:945
578
- #: contact_form.php:1816
579
- #: contact_form.php:1818
580
  msgid "Using (user agent)"
581
  msgstr "Выкарыстоўваць (user agent)"
582
 
583
- #: contact_form.php:945
584
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
585
  msgstr ""
586
 
587
- #: contact_form.php:949
588
  msgid "Language settings for the field names in the form"
589
  msgstr "Моўныя наладкі для палёў у форме"
590
 
591
- #: contact_form.php:958
592
  #, fuzzy
593
  msgid "Add a language"
594
  msgstr "Дадаць мову"
595
 
596
- #: contact_form.php:962
597
  msgid "Change the names of the contact form fields and error messages"
598
  msgstr "Зьмяніць назвы палёў кантактнай формы й паведамленьняў аб памылках"
599
 
600
- #: contact_form.php:967
601
- #: contact_form.php:1040
602
  msgid "English"
603
  msgstr "Ангельская"
604
 
605
- #: contact_form.php:975
606
- #: contact_form.php:1005
607
  msgid "click to expand/hide the list"
608
  msgstr ""
609
 
610
- #: contact_form.php:984
611
- #: contact_form.php:1014
612
  #, fuzzy
613
  msgid "Tips below the Attachment block"
614
  msgstr "Паказваць блок Прычапіць Файл"
615
 
616
- #: contact_form.php:987
617
- #: contact_form.php:1017
618
  msgid "Error message for the Name field"
619
  msgstr "Паведамленьне аб памылкі для поля Імя Карыстальніка"
620
 
621
- #: contact_form.php:988
622
- #: contact_form.php:1018
623
  #, fuzzy
624
  msgid "Error message for the Address field"
625
  msgstr "Паведамленьне аб памылкі для поля Паведамленьне"
626
 
627
- #: contact_form.php:989
628
- #: contact_form.php:1019
629
- msgid "Error message for the Email field"
630
- msgstr "Паведамленьне аб памылкі для поля Электронная Пошта"
631
-
632
  #: contact_form.php:990
633
  #: contact_form.php:1020
634
- msgid "Error message for the Phone field"
635
- msgstr "Паведамленьне аб памылкі для поля Тэлефон"
636
 
637
  #: contact_form.php:991
638
  #: contact_form.php:1021
639
- msgid "Error message for the Subject field"
640
- msgstr "Паведамленьне аб памылкі для поля Тэма"
641
 
642
  #: contact_form.php:992
643
  #: contact_form.php:1022
644
- msgid "Error message for the Message field"
645
- msgstr "Паведамленьне аб памылкі для поля Паведамленьне"
646
 
647
  #: contact_form.php:993
648
  #: contact_form.php:1023
649
- #, fuzzy
650
- msgid "Error message about the file type for the Attachment field"
651
- msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
652
 
653
  #: contact_form.php:994
654
  #: contact_form.php:1024
655
  #, fuzzy
656
- msgid "Error message while uploading a file for the Attachment field to the server"
657
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
658
 
659
  #: contact_form.php:995
660
  #: contact_form.php:1025
661
  #, fuzzy
662
- msgid "Error message while moving the file for the Attachment field"
663
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
664
 
665
  #: contact_form.php:996
666
  #: contact_form.php:1026
667
  #, fuzzy
668
- msgid "Error message when file size limit for the Attachment field is exceeded"
669
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
670
 
671
  #: contact_form.php:997
672
  #: contact_form.php:1027
673
- msgid "Error message for the Captcha field"
674
- msgstr "Паведамленьне аб памылкі для поля Captcha"
 
675
 
676
  #: contact_form.php:998
677
  #: contact_form.php:1028
 
 
 
 
 
678
  msgid "Error message for the whole form"
679
  msgstr "Паведамленьне аб памылцы для усёй формы"
680
 
681
- #: contact_form.php:1000
682
- #: contact_form.php:1030
683
- #: contact_form.php:1049
684
- #: contact_form.php:1055
685
  msgid "Use shortcode"
686
  msgstr "Выкарыстоўваць shortcode"
687
 
688
- #: contact_form.php:1000
689
- #: contact_form.php:1030
690
- #: contact_form.php:1049
691
- #: contact_form.php:1055
692
  msgid "for this language"
693
  msgstr "для дадзенай мовы"
694
 
695
- #: contact_form.php:1037
696
  msgid "Action after email is sent"
697
  msgstr "Дзеяньні пасьля адпраўкі ліста"
698
 
699
- #: contact_form.php:1039
700
  msgid "Display text"
701
  msgstr "Адлюстраваць тэкст"
702
 
703
- #: contact_form.php:1048
704
- #: contact_form.php:1054
705
  msgid "Text"
706
  msgstr "Тэкст"
707
 
708
- #: contact_form.php:1061
709
  msgid "Redirect to the page"
710
  msgstr "Перакінуць на старонку"
711
 
712
- #: contact_form.php:1062
713
  msgid "Url"
714
  msgstr "www-адрас"
715
 
716
  #: contact_form.php:1067
717
- #: contact_form.php:1242
 
 
 
 
 
 
 
 
718
  msgid "Save Changes"
719
  msgstr "Захаваць зьмены"
720
 
721
- #: contact_form.php:1072
722
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
723
  msgstr ""
724
 
725
- #: contact_form.php:1073
726
  #, fuzzy
727
  msgid "Rate the plugin"
728
  msgstr "Рэкамэндаваныя да ўсталёўкі пашырэньні"
729
 
730
- #: contact_form.php:1076
731
  #, fuzzy
732
  msgid "If there is something wrong about it, please contact us"
733
  msgstr "Калі ў вас ёсьць якія небудзь пытаньні, зьвяртайцеся да plugin@bestwebsoft.com ці запоўніце кантактную форму на нашым сайце"
734
 
735
- #: contact_form.php:1091
736
  msgid "Errors output"
737
  msgstr ""
738
 
739
- #: contact_form.php:1094
740
  msgid "Display error messages"
741
  msgstr ""
742
 
743
- #: contact_form.php:1095
744
  msgid "Color of the input field errors."
745
  msgstr ""
746
 
747
- #: contact_form.php:1096
748
  #, fuzzy
749
  msgid "Display error messages & color of the input field errors"
750
  msgstr "Паведамленьне аб памылкі для поля Тэма"
751
 
752
- #: contact_form.php:1101
753
  msgid "Add placeholder to the input blocks"
754
  msgstr ""
755
 
756
- #: contact_form.php:1107
757
  #, fuzzy
758
  msgid "Add tooltips"
759
  msgstr "Дадатковыя наладкі"
760
 
761
- #: contact_form.php:1121
762
  #, fuzzy
763
  msgid "Email address"
764
  msgstr "E-mail адрас:"
765
 
766
- #: contact_form.php:1126
767
  #, fuzzy
768
  msgid "Phone Number"
769
  msgstr "Тэлефон:"
770
 
771
- #: contact_form.php:1140
772
  #, fuzzy
773
  msgid "Attachment"
774
  msgstr "Прычапіць файл:"
775
 
776
- #: contact_form.php:1145
777
  msgid "(powered by bestwebsoft.com)"
778
  msgstr ""
779
 
780
- #: contact_form.php:1150
781
  #, fuzzy
782
  msgid "Style options"
783
  msgstr "Дадатковыя наладкі"
784
 
785
- #: contact_form.php:1153
786
  msgid "Text color"
787
  msgstr ""
788
 
789
- #: contact_form.php:1156
790
- #: contact_form.php:1161
791
  #: contact_form.php:1171
792
- #: contact_form.php:1176
793
  #: contact_form.php:1181
794
  #: contact_form.php:1186
 
795
  #: contact_form.php:1196
796
- #: contact_form.php:1201
797
- #: contact_form.php:1207
798
- #: contact_form.php:1218
799
- #: contact_form.php:1223
800
  #: contact_form.php:1228
 
 
801
  msgid "Default"
802
  msgstr ""
803
 
804
- #: contact_form.php:1158
805
  msgid "Label text color"
806
  msgstr ""
807
 
808
- #: contact_form.php:1163
809
  msgid "Placeholder color"
810
  msgstr ""
811
 
812
- #: contact_form.php:1168
813
  msgid "Errors color"
814
  msgstr ""
815
 
816
- #: contact_form.php:1173
817
  msgid "Error text color"
818
  msgstr ""
819
 
820
- #: contact_form.php:1178
821
  msgid "Background color of the input field errors"
822
  msgstr ""
823
 
824
- #: contact_form.php:1183
825
  msgid "Border color of the input field errors"
826
  msgstr ""
827
 
828
- #: contact_form.php:1188
829
  msgid "Placeholder color of the input field errors"
830
  msgstr ""
831
 
832
- #: contact_form.php:1193
833
  #, fuzzy
834
  msgid "Input fields"
835
  msgstr "Адлюстраваць тэкст"
836
 
837
- #: contact_form.php:1198
838
  msgid "Input fields background color"
839
  msgstr ""
840
 
841
- #: contact_form.php:1203
842
  msgid "Text fields color"
843
  msgstr ""
844
 
845
- #: contact_form.php:1205
846
  msgid "Border width in px, numbers only"
847
  msgstr ""
848
 
849
- #: contact_form.php:1209
850
- #: contact_form.php:1230
851
  msgid "Border color"
852
  msgstr ""
853
 
854
- #: contact_form.php:1214
855
  #, fuzzy
856
  msgid "Submit button"
857
  msgstr "Адправіць"
858
 
859
- #: contact_form.php:1216
860
  msgid "Width in px, numbers only"
861
  msgstr ""
862
 
863
- #: contact_form.php:1220
864
  msgid "Button color"
865
  msgstr ""
866
 
867
- #: contact_form.php:1225
868
  msgid "Button text color"
869
  msgstr ""
870
 
871
- #: contact_form.php:1246
872
  #, fuzzy
873
  msgid "Contact Form Pro | Preview"
874
  msgstr "Кантактная форма"
875
 
876
- #: contact_form.php:1249
877
  msgid "Show with errors"
878
  msgstr ""
879
 
880
- #: contact_form.php:1257
881
- #: contact_form.php:1259
882
  msgid "Please enter your full name..."
883
  msgstr ""
884
 
885
- #: contact_form.php:1270
886
- #: contact_form.php:1272
887
  msgid "Please enter your address..."
888
  msgstr ""
889
 
890
- #: contact_form.php:1281
891
- #: contact_form.php:1283
892
  #, fuzzy
893
  msgid "Please enter your email address..."
894
  msgstr "Выкарыстоўваць гэты email-адрас:"
895
 
896
- #: contact_form.php:1292
897
- #: contact_form.php:1294
898
  msgid "Please enter your phone number..."
899
  msgstr ""
900
 
901
- #: contact_form.php:1303
902
- #: contact_form.php:1305
903
  msgid "Please enter subject..."
904
  msgstr ""
905
 
906
- #: contact_form.php:1313
907
- #: contact_form.php:1315
908
  msgid "Please enter your message..."
909
  msgstr ""
910
 
911
- #: contact_form.php:1357
912
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
913
  msgstr ""
914
 
915
- #: contact_form.php:1359
916
  msgid "Please, go to"
917
  msgstr ""
918
 
919
- #: contact_form.php:1359
920
  #, fuzzy
921
  msgid "the setting page"
922
  msgstr "Наладкі"
923
 
924
- #: contact_form.php:1360
925
  msgid "You will be redirected automatically in 5 seconds."
926
  msgstr ""
927
 
928
- #: contact_form.php:1365
929
  msgid "You can download and activate"
930
  msgstr ""
931
 
932
- #: contact_form.php:1367
933
  msgid "version of this plugin by entering Your license key."
934
  msgstr ""
935
 
936
- #: contact_form.php:1369
937
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
938
  msgstr ""
939
 
940
- #: contact_form.php:1371
941
  msgid "(your username is the email you specify when purchasing the product)."
942
  msgstr ""
943
 
944
- #: contact_form.php:1379
945
  #: contact_form.php:1389
 
946
  msgid "Go!"
947
  msgstr ""
948
 
949
- #: contact_form.php:1439
950
  msgid "Sorry, email message could not be delivered."
951
  msgstr "Прабачце, вашая электронная пошта не можа быць адпраўленай."
952
 
953
- #: contact_form.php:1825
954
  msgid "Contact from"
955
  msgstr "Кантактная форма"
956
 
957
- #: contact_form.php:1838
958
- #: contact_form.php:1864
959
  msgid "Email"
960
  msgstr "Электронная пошта"
961
 
962
- #: contact_form.php:1842
963
- #: contact_form.php:1866
964
  msgid "Phone"
965
  msgstr "Тэлефон"
966
 
967
- #: contact_form.php:1851
968
- #: contact_form.php:1869
969
  msgid "Site"
970
  msgstr "Сайт"
971
 
972
- #: contact_form.php:1932
973
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
974
  msgstr "Калі вы бачыце гэты MIME, значыць гэты тып не падтрымліваецца вашым паштовым кліентам!"
975
 
976
- #: contact_form.php:2002
977
  msgid "FAQ"
978
  msgstr "Пытаньні й адказы"
979
 
980
- #: contact_form.php:2003
981
  msgid "Support"
982
  msgstr "Падтрымка"
983
 
984
- #: contact_form.php:2061
985
  msgid "Are you sure that you want to delete this language data?"
986
  msgstr "Вы сапраўды хочаце выдаліць дадзеныя для гэтай мовы?"
987
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
988
  #, fuzzy
989
  #~ msgid "Contact Form Pro Extra Settings"
990
  #~ msgstr "Наладкі кантактнай формы"
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-02-20 13:59+0300\n"
6
+ "PO-Revision-Date: 2014-02-20 13:59+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Sakałoŭ Alaksiej <nullbsd@gmail.com>\n"
9
  "Language: be_BY\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: contact_form.php:33
20
+ #: contact_form.php:660
21
  #, fuzzy
22
  msgid "Contact Form Settings"
23
  msgstr "Наладкі кантактнай формы"
27
  msgstr "Кантактная форма"
28
 
29
  #: contact_form.php:80
30
+ #: contact_form.php:978
31
+ #: contact_form.php:1008
32
  msgid "Name:"
33
  msgstr "Імя:"
34
 
35
  #: contact_form.php:81
36
+ #: contact_form.php:979
37
+ #: contact_form.php:1009
38
  #, fuzzy
39
  msgid "Address:"
40
  msgstr "E-mail адрас:"
41
 
42
  #: contact_form.php:82
43
+ #: contact_form.php:980
44
+ #: contact_form.php:1010
45
  msgid "Email Address:"
46
  msgstr "E-mail адрас:"
47
 
48
  #: contact_form.php:83
49
+ #: contact_form.php:981
50
+ #: contact_form.php:1011
51
  msgid "Phone number:"
52
  msgstr "Тэлефон:"
53
 
54
  #: contact_form.php:84
55
+ #: contact_form.php:982
56
+ #: contact_form.php:1012
57
  msgid "Subject:"
58
  msgstr "Тэма:"
59
 
60
  #: contact_form.php:85
61
+ #: contact_form.php:983
62
+ #: contact_form.php:1013
63
  msgid "Message:"
64
  msgstr "Паведамленьне:"
65
 
66
  #: contact_form.php:86
67
+ #: contact_form.php:984
68
+ #: contact_form.php:1014
69
  msgid "Attachment:"
70
  msgstr "Прычапіць файл:"
71
 
74
  msgstr ""
75
 
76
  #: contact_form.php:88
77
+ #: contact_form.php:986
78
+ #: contact_form.php:1016
79
  msgid "Send me a copy"
80
  msgstr "Адправіць мне копію"
81
 
82
  #: contact_form.php:89
83
+ #: contact_form.php:987
84
+ #: contact_form.php:1017
85
  msgid "Submit"
86
  msgstr "Адправіць"
87
 
139
  msgid "Thank you for contacting us."
140
  msgstr "Дзякуем за кантакт з намі."
141
 
142
+ #: contact_form.php:203
143
  #, fuzzy
144
  msgid "requires"
145
  msgstr "Абавязковыя палі"
146
 
147
+ #: contact_form.php:203
148
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
149
  msgstr ""
150
 
151
+ #: contact_form.php:203
152
  msgid "Back to the WordPress"
153
  msgstr ""
154
 
155
+ #: contact_form.php:203
156
  #, fuzzy
157
  msgid "Plugins page"
158
  msgstr "Плагины BWS"
159
 
160
+ #: contact_form.php:494
161
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
162
  msgstr "Калі наладка 'Перайсьці на старонку' абрана, тады URL павінен быць запоўнены ў наступным фармаце"
163
 
164
+ #: contact_form.php:503
165
  msgid "Such user does not exist. Settings are not saved."
166
  msgstr "Дадзены карыстальнік ня знойдзен. Наладкі не захаваны"
167
 
168
+ #: contact_form.php:507
169
+ #: contact_form.php:513
170
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
171
  msgstr "Калі ласка, увядзіце карэктны адрас для радка 'FROM'. Наладкі не захаваны."
172
 
173
+ #: contact_form.php:518
174
  #, fuzzy
175
  msgid "Settings saved."
176
  msgstr "Наладкі захаваны."
177
 
178
+ #: contact_form.php:554
179
+ #: contact_form.php:593
180
  msgid "Wrong license key"
181
  msgstr ""
182
 
183
+ #: contact_form.php:586
184
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
185
  msgstr ""
186
 
187
+ #: contact_form.php:595
188
  msgid "This license key is bind to another site"
189
  msgstr ""
190
 
191
+ #: contact_form.php:597
192
+ #: contact_form.php:1392
193
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
194
  msgstr ""
195
 
196
+ #: contact_form.php:615
197
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
198
  msgstr ""
199
 
200
+ #: contact_form.php:621
201
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
202
  msgstr ""
203
 
204
+ #: contact_form.php:625
205
+ #: contact_form.php:634
206
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
207
  msgstr ""
208
 
209
+ #: contact_form.php:638
210
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
211
  msgstr ""
212
 
213
+ #: contact_form.php:653
214
  #, fuzzy
215
  msgid "Please, enter Your license key"
216
  msgstr "Выкарыстоўваць гэты email-адрас:"
217
 
218
+ #: contact_form.php:662
219
  msgid "Notice:"
220
  msgstr ""
221
 
222
+ #: contact_form.php:662
223
  msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
224
  msgstr ""
225
 
226
+ #: contact_form.php:665
227
+ #: contact_form.php:1997
228
+ #: contact_form.php:2008
229
  msgid "Settings"
230
  msgstr "Наладкі"
231
 
232
+ #: contact_form.php:666
233
  #, fuzzy
234
  msgid "Extra settings"
235
  msgstr "Наладкі"
236
 
237
+ #: contact_form.php:667
238
  msgid "Go PRO"
239
  msgstr ""
240
 
241
+ #: contact_form.php:673
242
+ #: contact_form.php:1351
243
  msgid "If you would like to add the Contact Form to your website, just copy and paste this shortcode to your post or page or widget:"
244
  msgstr "Калі вы жадаеце дадаць Кантактную Форму на свой сайт, тады вам неабходна толькі скапіяваць ды ўставіць Shortcode у канктэнт старонкі, ці запісу, ці аздабленьня:"
245
 
 
246
  #: contact_form.php:673
247
+ #: contact_form.php:674
248
+ #: contact_form.php:1001
249
+ #: contact_form.php:1050
250
  msgid "or"
251
  msgstr ""
252
 
253
+ #: contact_form.php:674
254
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
255
  msgstr ""
256
 
257
+ #: contact_form.php:675
258
  msgid "They work the same way."
259
  msgstr ""
260
 
261
+ #: contact_form.php:676
262
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
263
  msgstr "Калі інфармацыя ў палях ніжэй адсутнічае, паведамленьне будзе адпраўлена на email адрас, які быў указаны пры рэгістрацыі на сайце."
264
 
265
+ #: contact_form.php:680
266
  msgid "The user's email address:"
267
  msgstr "Электронны адрас карыстальніка:"
268
 
269
+ #: contact_form.php:684
270
  msgid "Create a username"
271
  msgstr "Абярыце імя карыстальніка"
272
 
273
+ #: contact_form.php:689
274
  msgid "Enter a username of the person who should get the messages from the contact form."
275
  msgstr "Увядзіце імя карыстальніка, які будзе атрымліваць паведамленьні кантактнай формы."
276
 
277
+ #: contact_form.php:693
278
  msgid "Use this email address:"
279
  msgstr "Выкарыстоўваць гэты email-адрас:"
280
 
281
+ #: contact_form.php:696
282
  msgid "Enter the email address you want the messages forwarded to."
283
  msgstr "Увядзіце адрас, на які хочаце перанакіраваць паведамленьне."
284
 
285
+ #: contact_form.php:702
286
  msgid "Add department selectbox to the contact form:"
287
  msgstr ""
288
 
289
+ #: contact_form.php:710
290
+ #: contact_form.php:1246
291
  msgid "If you upgrade to Pro version all your settings will be saved."
292
  msgstr ""
293
 
 
 
 
 
 
 
 
294
  #: contact_form.php:715
295
  #: contact_form.php:852
296
  #: contact_form.php:923
297
+ #: contact_form.php:1096
298
+ msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
299
+ msgstr ""
300
+
301
+ #: contact_form.php:716
302
+ #: contact_form.php:853
303
+ #: contact_form.php:924
304
+ #: contact_form.php:1097
305
  #, fuzzy
306
  msgid "Contact Form Pro"
307
  msgstr "Кантактная форма"
308
 
309
+ #: contact_form.php:722
310
  msgid "Save emails to the database"
311
  msgstr ""
312
 
313
+ #: contact_form.php:732
314
  msgid "Using"
315
  msgstr ""
316
 
317
+ #: contact_form.php:732
318
+ #: contact_form.php:901
319
+ #: contact_form.php:904
320
+ #: contact_form.php:908
321
  msgid "powered by"
322
  msgstr ""
323
 
324
+ #: contact_form.php:735
325
+ #: contact_form.php:739
326
  msgid "Using Contact Form to DB powered by"
327
  msgstr ""
328
 
329
+ #: contact_form.php:735
330
  #, fuzzy
331
  msgid "Activate Contact Form to DB"
332
  msgstr "Кантактная форма"
333
 
334
+ #: contact_form.php:739
335
  #, fuzzy
336
  msgid "Download Contact Form to DB"
337
  msgstr "Кантактная форма"
338
 
339
+ #: contact_form.php:744
340
  msgid "Additional options"
341
  msgstr "Дадатковыя наладкі"
342
 
343
+ #: contact_form.php:746
344
  msgid "Show"
345
  msgstr ""
346
 
347
+ #: contact_form.php:747
348
  msgid "Hide"
349
  msgstr ""
350
 
351
+ #: contact_form.php:751
352
  msgid "What to use?"
353
  msgstr "Што выкарыстоўваць?"
354
 
355
+ #: contact_form.php:754
356
  msgid "Wp-mail"
357
  msgstr "Wp-mail"
358
 
359
+ #: contact_form.php:754
360
  msgid "You can use the wp_mail function for mailing"
361
  msgstr "Для адпраўкі пошты вы можаце выкарыстоўваць функцыю php mail"
362
 
363
+ #: contact_form.php:756
364
  msgid "Mail"
365
  msgstr "Mail"
366
 
367
+ #: contact_form.php:756
368
  msgid "To send mail you can use the php mail function"
369
  msgstr "Для адпраўкі пошты вы можаце выкарыстоўваць функцыю php mail"
370
 
371
+ #: contact_form.php:760
372
  #, fuzzy
373
  msgid "The text in the 'From' field"
374
  msgstr "Зьмяніць тэкст для радка 'FROM' у лісьце"
375
 
376
+ #: contact_form.php:762
377
  msgid "User name"
378
  msgstr ""
379
 
380
+ #: contact_form.php:763
381
  #, fuzzy
382
  msgid "The name of the user who fills the form will be used in the field 'From'."
383
  msgstr "Адрас электроннай пошты карыстальніка, які запаўняе форму будзе выкарыстоўвацца ў поле 'From'."
384
 
385
+ #: contact_form.php:766
386
  #, fuzzy
387
  msgid "This text will be used in the 'FROM' field"
388
  msgstr "Гэты адрас будзе выкарыстоўвацца ў поле 'From'"
389
 
390
+ #: contact_form.php:770
391
  #, fuzzy
392
  msgid "The email address in the 'From' field"
393
  msgstr "Калі ласка, увядзіце адрас электроннай пошты ў поле 'From'"
394
 
395
+ #: contact_form.php:772
396
  msgid "User email"
397
  msgstr ""
398
 
399
+ #: contact_form.php:773
400
  #, fuzzy
401
  msgid "The email address of the user who fills the form will be used in the field 'From'."
402
  msgstr "Адрас электроннай пошты карыстальніка, які запаўняе форму будзе выкарыстоўвацца ў поле 'From'."
403
 
404
+ #: contact_form.php:776
405
  msgid "This email address will be used in the 'From' field."
406
  msgstr "Гэты адрас будзе выкарыстоўвацца ў поле 'From'"
407
 
408
+ #: contact_form.php:780
409
  #, fuzzy
410
  msgid "Required symbol"
411
  msgstr "Абавязковыя палі"
412
 
413
+ #: contact_form.php:790
414
  msgid "Fields"
415
  msgstr ""
416
 
417
+ #: contact_form.php:791
418
  msgid "Used"
419
  msgstr ""
420
 
421
+ #: contact_form.php:792
422
  #, fuzzy
423
  msgid "Required"
424
  msgstr "Абавязковыя палі"
425
 
426
+ #: contact_form.php:793
427
  msgid "Visible"
428
  msgstr ""
429
 
430
+ #: contact_form.php:794
431
  msgid "Disabled for editing"
432
  msgstr ""
433
 
434
+ #: contact_form.php:795
435
  msgid "Field's default value"
436
  msgstr ""
437
 
438
+ #: contact_form.php:800
439
+ #: contact_form.php:1121
440
+ #: contact_form.php:1841
441
+ #: contact_form.php:1871
442
  msgid "Name"
443
  msgstr "Імя"
444
 
445
+ #: contact_form.php:808
446
+ #: contact_form.php:1126
447
+ #: contact_form.php:1845
448
+ #: contact_form.php:1873
449
  #, fuzzy
450
  msgid "Address"
451
  msgstr "E-mail адрас:"
452
 
453
+ #: contact_form.php:816
454
  #, fuzzy
455
  msgid "Email Address"
456
  msgstr "E-mail адрас:"
457
 
458
+ #: contact_form.php:824
459
  #, fuzzy
460
  msgid "Phone number"
461
  msgstr "Тэлефон:"
462
 
463
+ #: contact_form.php:832
464
+ #: contact_form.php:1141
465
+ #: contact_form.php:1855
466
+ #: contact_form.php:1877
467
  msgid "Subject"
468
  msgstr "Тэма"
469
 
470
+ #: contact_form.php:840
471
+ #: contact_form.php:1145
472
+ #: contact_form.php:1858
473
+ #: contact_form.php:1878
474
  msgid "Message"
475
  msgstr "Паведамленьне"
476
 
477
+ #: contact_form.php:858
478
  #, fuzzy
479
  msgid "Attachment block"
480
  msgstr "Паказваць блок Прычапіць Файл"
481
 
482
+ #: contact_form.php:860
483
  msgid "Users can attach the following file formats"
484
  msgstr "Карыстальнікі могуць прычапляць файлы наступных тыпаў"
485
 
486
+ #: contact_form.php:874
487
  msgid "Add to the form"
488
  msgstr ""
489
 
490
+ #: contact_form.php:879
491
  #, fuzzy
492
  msgid "Tips below the Attachment"
493
  msgstr "Паказваць блок Прычапіць Файл"
494
 
495
+ #: contact_form.php:888
496
  #, fuzzy
497
  msgid "'Send me a copy' block"
498
  msgstr "Паказаць блок Адправіць мне копію"
499
 
500
+ #: contact_form.php:901
501
+ #: contact_form.php:904
502
+ #: contact_form.php:908
503
+ #: contact_form.php:1155
504
  msgid "Captcha"
505
  msgstr ""
506
 
507
+ #: contact_form.php:904
508
  #, fuzzy
509
  msgid "Activate captcha"
510
  msgstr "Актываваныя пашырэньні"
511
 
512
+ #: contact_form.php:908
513
  #, fuzzy
514
  msgid "Download captcha"
515
  msgstr "Спампаваць"
516
 
517
+ #: contact_form.php:916
518
  msgid "Agreement checkbox"
519
  msgstr ""
520
 
521
+ #: contact_form.php:916
522
  msgid "Required checkbox for submitting the form"
523
  msgstr ""
524
 
525
+ #: contact_form.php:917
526
  msgid "Optional checkbox"
527
  msgstr ""
528
 
529
+ #: contact_form.php:917
530
  msgid "Optional checkbox, the results of which will be displayed in email"
531
  msgstr ""
532
 
533
+ #: contact_form.php:928
534
  msgid "Delete an attachment file from the server after the email is sent"
535
  msgstr ""
536
 
537
+ #: contact_form.php:934
538
  msgid "Email in HTML format sending"
539
  msgstr ""
540
 
541
+ #: contact_form.php:938
542
  #, fuzzy
543
  msgid "Display additional info in the email"
544
  msgstr "Паказ дадатковай інфармацыі ў лісьце"
545
 
546
+ #: contact_form.php:943
547
+ #: contact_form.php:1808
548
+ #: contact_form.php:1810
549
  msgid "Sent from (ip address)"
550
  msgstr "Адпраўлена ад (IP адрас)"
551
 
552
+ #: contact_form.php:943
553
  #, fuzzy
554
  msgid "Example: Sent from (IP address):\t127.0.0.1"
555
  msgstr "Адпраўлена ад (IP адрас)"
556
 
557
+ #: contact_form.php:944
558
+ #: contact_form.php:1814
559
+ #: contact_form.php:1816
560
  msgid "Date/Time"
561
  msgstr "Дата/Час"
562
 
563
+ #: contact_form.php:944
564
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
565
  msgstr ""
566
 
567
+ #: contact_form.php:945
568
+ #: contact_form.php:1820
569
+ #: contact_form.php:1822
570
  msgid "Sent from (referer)"
571
  msgstr "Прыйшло з "
572
 
573
+ #: contact_form.php:945
574
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
575
  msgstr ""
576
 
577
+ #: contact_form.php:946
578
+ #: contact_form.php:1826
579
+ #: contact_form.php:1828
580
  msgid "Using (user agent)"
581
  msgstr "Выкарыстоўваць (user agent)"
582
 
583
+ #: contact_form.php:946
584
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
585
  msgstr ""
586
 
587
+ #: contact_form.php:950
588
  msgid "Language settings for the field names in the form"
589
  msgstr "Моўныя наладкі для палёў у форме"
590
 
591
+ #: contact_form.php:959
592
  #, fuzzy
593
  msgid "Add a language"
594
  msgstr "Дадаць мову"
595
 
596
+ #: contact_form.php:963
597
  msgid "Change the names of the contact form fields and error messages"
598
  msgstr "Зьмяніць назвы палёў кантактнай формы й паведамленьняў аб памылках"
599
 
600
+ #: contact_form.php:968
601
+ #: contact_form.php:1041
602
  msgid "English"
603
  msgstr "Ангельская"
604
 
605
+ #: contact_form.php:976
606
+ #: contact_form.php:1006
607
  msgid "click to expand/hide the list"
608
  msgstr ""
609
 
610
+ #: contact_form.php:985
611
+ #: contact_form.php:1015
612
  #, fuzzy
613
  msgid "Tips below the Attachment block"
614
  msgstr "Паказваць блок Прычапіць Файл"
615
 
616
+ #: contact_form.php:988
617
+ #: contact_form.php:1018
618
  msgid "Error message for the Name field"
619
  msgstr "Паведамленьне аб памылкі для поля Імя Карыстальніка"
620
 
621
+ #: contact_form.php:989
622
+ #: contact_form.php:1019
623
  #, fuzzy
624
  msgid "Error message for the Address field"
625
  msgstr "Паведамленьне аб памылкі для поля Паведамленьне"
626
 
 
 
 
 
 
627
  #: contact_form.php:990
628
  #: contact_form.php:1020
629
+ msgid "Error message for the Email field"
630
+ msgstr "Паведамленьне аб памылкі для поля Электронная Пошта"
631
 
632
  #: contact_form.php:991
633
  #: contact_form.php:1021
634
+ msgid "Error message for the Phone field"
635
+ msgstr "Паведамленьне аб памылкі для поля Тэлефон"
636
 
637
  #: contact_form.php:992
638
  #: contact_form.php:1022
639
+ msgid "Error message for the Subject field"
640
+ msgstr "Паведамленьне аб памылкі для поля Тэма"
641
 
642
  #: contact_form.php:993
643
  #: contact_form.php:1023
644
+ msgid "Error message for the Message field"
645
+ msgstr "Паведамленьне аб памылкі для поля Паведамленьне"
 
646
 
647
  #: contact_form.php:994
648
  #: contact_form.php:1024
649
  #, fuzzy
650
+ msgid "Error message about the file type for the Attachment field"
651
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
652
 
653
  #: contact_form.php:995
654
  #: contact_form.php:1025
655
  #, fuzzy
656
+ msgid "Error message while uploading a file for the Attachment field to the server"
657
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
658
 
659
  #: contact_form.php:996
660
  #: contact_form.php:1026
661
  #, fuzzy
662
+ msgid "Error message while moving the file for the Attachment field"
663
  msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
664
 
665
  #: contact_form.php:997
666
  #: contact_form.php:1027
667
+ #, fuzzy
668
+ msgid "Error message when file size limit for the Attachment field is exceeded"
669
+ msgstr "Паведамленьне аб памылкі для поля Прычапіць Файл"
670
 
671
  #: contact_form.php:998
672
  #: contact_form.php:1028
673
+ msgid "Error message for the Captcha field"
674
+ msgstr "Паведамленьне аб памылкі для поля Captcha"
675
+
676
+ #: contact_form.php:999
677
+ #: contact_form.php:1029
678
  msgid "Error message for the whole form"
679
  msgstr "Паведамленьне аб памылцы для усёй формы"
680
 
681
+ #: contact_form.php:1001
682
+ #: contact_form.php:1031
683
+ #: contact_form.php:1050
684
+ #: contact_form.php:1056
685
  msgid "Use shortcode"
686
  msgstr "Выкарыстоўваць shortcode"
687
 
688
+ #: contact_form.php:1001
689
+ #: contact_form.php:1031
690
+ #: contact_form.php:1050
691
+ #: contact_form.php:1056
692
  msgid "for this language"
693
  msgstr "для дадзенай мовы"
694
 
695
+ #: contact_form.php:1038
696
  msgid "Action after email is sent"
697
  msgstr "Дзеяньні пасьля адпраўкі ліста"
698
 
699
+ #: contact_form.php:1040
700
  msgid "Display text"
701
  msgstr "Адлюстраваць тэкст"
702
 
703
+ #: contact_form.php:1049
704
+ #: contact_form.php:1055
705
  msgid "Text"
706
  msgstr "Тэкст"
707
 
708
+ #: contact_form.php:1062
709
  msgid "Redirect to the page"
710
  msgstr "Перакінуць на старонку"
711
 
712
+ #: contact_form.php:1063
713
  msgid "Url"
714
  msgstr "www-адрас"
715
 
716
  #: contact_form.php:1067
717
+ msgid "The $_SERVER variable that is used to build a URL of the form"
718
+ msgstr ""
719
+
720
+ #: contact_form.php:1071
721
+ msgid "If you are not sure whether to change this setting or not, please do not do that."
722
+ msgstr ""
723
+
724
+ #: contact_form.php:1077
725
+ #: contact_form.php:1252
726
  msgid "Save Changes"
727
  msgstr "Захаваць зьмены"
728
 
729
+ #: contact_form.php:1082
730
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
731
  msgstr ""
732
 
733
+ #: contact_form.php:1083
734
  #, fuzzy
735
  msgid "Rate the plugin"
736
  msgstr "Рэкамэндаваныя да ўсталёўкі пашырэньні"
737
 
738
+ #: contact_form.php:1086
739
  #, fuzzy
740
  msgid "If there is something wrong about it, please contact us"
741
  msgstr "Калі ў вас ёсьць якія небудзь пытаньні, зьвяртайцеся да plugin@bestwebsoft.com ці запоўніце кантактную форму на нашым сайце"
742
 
743
+ #: contact_form.php:1101
744
  msgid "Errors output"
745
  msgstr ""
746
 
747
+ #: contact_form.php:1104
748
  msgid "Display error messages"
749
  msgstr ""
750
 
751
+ #: contact_form.php:1105
752
  msgid "Color of the input field errors."
753
  msgstr ""
754
 
755
+ #: contact_form.php:1106
756
  #, fuzzy
757
  msgid "Display error messages & color of the input field errors"
758
  msgstr "Паведамленьне аб памылкі для поля Тэма"
759
 
760
+ #: contact_form.php:1111
761
  msgid "Add placeholder to the input blocks"
762
  msgstr ""
763
 
764
+ #: contact_form.php:1117
765
  #, fuzzy
766
  msgid "Add tooltips"
767
  msgstr "Дадатковыя наладкі"
768
 
769
+ #: contact_form.php:1131
770
  #, fuzzy
771
  msgid "Email address"
772
  msgstr "E-mail адрас:"
773