Version Description
- 08.04.2013 =
- Update : We updated the English text in the plugin file.
- Bugfix : We fixed the bug of displaying phone error messages when a phone number field is not display.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Contact Form by BestWebSoft |
Version | 3.43 |
Comparing to | |
See all releases |
Code changes from version 3.42 to 3.43
- contact_form.php +21 -16
- languages/contact_form-ru_RU.mo +0 -0
- languages/contact_form-ru_RU.po +155 -140
- languages/contact_form-sr_RS.po +0 -0
- readme.txt +44 -35
- screenshot-1.jpg +0 -0
- screenshot-2.jpg +0 -0
- screenshot-3.jpg +0 -0
- screenshot-4.jpg +0 -0
contact_form.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Contact Form Plugin
|
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: Plugin for Contact Form.
|
6 |
Author: BestWebSoft
|
7 |
-
Version: 3.
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
@@ -153,7 +153,7 @@ if( ! function_exists( 'cntctfrm_settings' ) ) {
|
|
153 |
'cntctfrm_send_copy_label' => array( 'en' => __( "Send me a copy", 'contact_form' ) ),
|
154 |
'cntctfrm_submit_label' => array( 'en' => __( "Submit", 'contact_form' ) ),
|
155 |
'cntctfrm_name_error' => array( 'en' => __( "Your name is required.", 'contact_form' ) ),
|
156 |
-
'cntctfrm_email_error' => array( 'en' => __( "A
|
157 |
'cntctfrm_phone_error' => array( 'en' => __( "Phone number is required.", 'contact_form' ) ),
|
158 |
'cntctfrm_subject_error' => array( 'en' => __( "Subject is required.", 'contact_form' ) ),
|
159 |
'cntctfrm_message_error' => array( 'en' => __( "Message text is required.", 'contact_form' ) ),
|
@@ -288,7 +288,12 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
288 |
$cntctfrm_options_submit['cntctfrm_display_phone_field'] = isset( $_POST['cntctfrm_display_phone_field']) ? 1 : 0;
|
289 |
$cntctfrm_options_submit['cntctfrm_required_name_field'] = isset( $_POST['cntctfrm_required_name_field']) ? 1 : 0;
|
290 |
$cntctfrm_options_submit['cntctfrm_required_email_field'] = isset( $_POST['cntctfrm_required_email_field']) ? 1 : 0;
|
291 |
-
|
|
|
|
|
|
|
|
|
|
|
292 |
$cntctfrm_options_submit['cntctfrm_required_subject_field'] = isset( $_POST['cntctfrm_required_subject_field']) ? 1 : 0;
|
293 |
$cntctfrm_options_submit['cntctfrm_required_message_field'] = isset( $_POST['cntctfrm_required_message_field']) ? 1 : 0;
|
294 |
|
@@ -391,7 +396,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
391 |
}
|
392 |
else {
|
393 |
if( $cntctfrm_options_submit['cntctfrm_custom_email'] == "" || !preg_match( "/^((?:[a-z0-9']+(?:[a-z0-9\-_\.']+)?@[a-z0-9]+(?:[a-z0-9\-\.]+)?\.[a-z]{2,5})[, ]*)+$/i", trim( $cntctfrm_options_submit['cntctfrm_custom_email'] ) ) ){
|
394 |
-
$error .= __( "Please enter a valid email address. Settings are not saved.", 'contact_form' );
|
395 |
}
|
396 |
}
|
397 |
if( 'custom' == $cntctfrm_options_submit['cntctfrm_from_email'] ) {
|
@@ -430,10 +435,10 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
430 |
<p><?php _e( "If you would like to add the Contact Form to your website, just copy and paste this shortcode to your post or page or widget:", 'contact_form' ); ?> [contact_form] or [contact_form lang=en]</p>
|
431 |
<?php _e( "If you leave the fields empty, the messages will be sent to the email address specified during registration.", 'contact_form' ); ?>
|
432 |
</span>
|
433 |
-
<table class="form-table">
|
434 |
<tr valign="top">
|
435 |
<th scope="row" style="width:200px;"><?php _e( "The user's email address:", 'contact_form' ); ?> </th>
|
436 |
-
<td colspan="2">
|
437 |
<input type="radio" id="cntctfrm_select_email_user" name="cntctfrm_select_email" value="user" <?php if($cntctfrm_options['cntctfrm_select_email'] == 'user') echo "checked=\"checked\" "; ?>/>
|
438 |
<select name="cntctfrm_user_email">
|
439 |
<option disabled><?php _e( "Create a username", 'contact_form' ); ?></option>
|
@@ -496,13 +501,13 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
496 |
<tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
|
497 |
<th scope="row" style="width:200px;"><?php _e( "Enter the email address in the 'From' field", 'contact_form' ); ?></th>
|
498 |
<td colspan="2">
|
499 |
-
<input type="radio" id="cntctfrm_from_email" name="cntctfrm_from_email" value="user" <?php if( $cntctfrm_options['cntctfrm_from_email'] == 'user' ) echo "checked=\"checked\" "; ?>/> User email <span class="cntctfrm_info">(<?php _e( "The email address of the user who fills the form
|
500 |
<input type="radio" id="cntctfrm_from_custom_email" name="cntctfrm_from_email" value="custom" <?php if($cntctfrm_options['cntctfrm_from_email'] == 'custom') echo "checked=\"checked\" "; ?>/> <input type="text" name="cntctfrm_custom_from_email" value="<?php echo $cntctfrm_options['cntctfrm_custom_from_email']; ?>" onfocus="document.getElementById('cntctfrm_from_custom_email').checked = true;" />
|
501 |
<span class="cntctfrm_info">(<?php _e( "This email address will be used in the 'From' field.", 'contact_form' ); ?>)</span>
|
502 |
</td>
|
503 |
</tr>
|
504 |
<tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
|
505 |
-
<th scope="row" style="width:200px;"><?php _e( "Display phone field", 'contact_form' ); ?></th>
|
506 |
<td colspan="2">
|
507 |
<input type="checkbox" id="cntctfrm_display_phone_field" name="cntctfrm_display_phone_field" value="1" <?php if($cntctfrm_options['cntctfrm_display_phone_field'] == '1') echo "checked=\"checked\" "; ?>/>
|
508 |
</td>
|
@@ -511,14 +516,14 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
511 |
<th scope="row" style="width:200px;"><?php _e( "Required fields", 'contact_form' ); ?></th>
|
512 |
<td colspan="2">
|
513 |
<input type="checkbox" id="cntctfrm_required_name_field" name="cntctfrm_required_name_field" value="1" <?php if($cntctfrm_options['cntctfrm_required_name_field'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Name", 'contact_form' ); ?><br />
|
514 |
-
<input type="checkbox" id="cntctfrm_required_email_field" name="cntctfrm_required_email_field" value="1" <?php if($cntctfrm_options['cntctfrm_required_email_field'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "
|
515 |
<input type="checkbox" id="cntctfrm_required_phone_field" name="cntctfrm_required_phone_field" value="1" <?php if($cntctfrm_options['cntctfrm_required_phone_field'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Phone", 'contact_form' ); ?><br />
|
516 |
<input type="checkbox" id="cntctfrm_required_subject_field" name="cntctfrm_required_subject_field" value="1" <?php if($cntctfrm_options['cntctfrm_required_subject_field'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Subject", 'contact_form' ); ?><br />
|
517 |
<input type="checkbox" id="cntctfrm_required_message_field" name="cntctfrm_required_message_field" value="1" <?php if($cntctfrm_options['cntctfrm_required_message_field'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Message", 'contact_form' ); ?>
|
518 |
</td>
|
519 |
</tr>
|
520 |
<tr valign="top" class="cntctfrm_additions_block <?php if( $cntctfrm_options['cntctfrm_additions_options'] == '0' ) echo "cntctfrm_hidden"; ?>">
|
521 |
-
<th scope="row" style="width:200px;"><?php _e( "Display additional info in email", 'contact_form' ); ?></th>
|
522 |
<td style="width:15px;">
|
523 |
<input type="checkbox" id="cntctfrm_display_add_info" name="cntctfrm_display_add_info" value="1" <?php if($cntctfrm_options['cntctfrm_display_add_info'] == '1') echo "checked=\"checked\" "; ?>/>
|
524 |
</td>
|
@@ -539,7 +544,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
539 |
echo '<option value="' . esc_attr( $key ) . '"> ' . esc_html ( $val ) . '</option>';
|
540 |
} ?>
|
541 |
</select>
|
542 |
-
<input type="button" class="button-primary" id="cntctfrm_add_language_button" value="<?php _e('Add language', 'contact_form'); ?>" />
|
543 |
</td>
|
544 |
</tr>
|
545 |
<tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
|
@@ -827,7 +832,7 @@ if( ! function_exists( 'cntctfrm_check_form' ) ) {
|
|
827 |
$error_message['error_subject'] = $cntctfrm_options['cntctfrm_subject_error'][$language];
|
828 |
if( $cntctfrm_options['cntctfrm_required_message_field'] == 1 )
|
829 |
$error_message['error_message'] = $cntctfrm_options['cntctfrm_message_error'][$language];
|
830 |
-
if( $cntctfrm_options['cntctfrm_required_phone_field'] == 1 )
|
831 |
$error_message['error_phone'] = $cntctfrm_options['cntctfrm_phone_error'][$language];
|
832 |
$error_message['error_form'] = $cntctfrm_options['cntctfrm_form_error'][$language];
|
833 |
if( $cntctfrm_options['cntctfrm_attachment'] == 1 ) {
|
@@ -1063,9 +1068,9 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
|
|
1063 |
|
1064 |
// Additional headers
|
1065 |
if( 'custom' == $cntctfrm_options['cntctfrm_from_email'] )
|
1066 |
-
$headers .= 'From: '.stripslashes( $cntctfrm_options['cntctfrm_from_field'] ).' <'.stripslashes( $cntctfrm_options['cntctfrm_custom_from_email'] ). '
|
1067 |
else
|
1068 |
-
$headers .= 'From: '.stripslashes( $cntctfrm_options['cntctfrm_from_field'] ).' <'.stripslashes( $email ). '
|
1069 |
|
1070 |
$bound_text = "jimmyP123";
|
1071 |
|
@@ -1098,9 +1103,9 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
|
|
1098 |
|
1099 |
// Additional headers
|
1100 |
if( 'custom' == $cntctfrm_options['cntctfrm_from_email'] )
|
1101 |
-
$headers .= 'From: '.stripslashes( $cntctfrm_options['cntctfrm_from_field'] ).' <'.stripslashes( $cntctfrm_options['cntctfrm_custom_from_email'] ). '
|
1102 |
else
|
1103 |
-
$headers .= 'From: '.stripslashes( $cntctfrm_options['cntctfrm_from_field'] ).' <'.$email. '
|
1104 |
}
|
1105 |
if( isset( $_POST['cntctfrm_contact_send_copy'] ) && $_POST['cntctfrm_contact_send_copy'] == 1 )
|
1106 |
@mail( $email, $subject, $message_text, $headers );
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: Plugin for Contact Form.
|
6 |
Author: BestWebSoft
|
7 |
+
Version: 3.43
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
153 |
'cntctfrm_send_copy_label' => array( 'en' => __( "Send me a copy", 'contact_form' ) ),
|
154 |
'cntctfrm_submit_label' => array( 'en' => __( "Submit", 'contact_form' ) ),
|
155 |
'cntctfrm_name_error' => array( 'en' => __( "Your name is required.", 'contact_form' ) ),
|
156 |
+
'cntctfrm_email_error' => array( 'en' => __( "A valid email address is required.", 'contact_form' ) ),
|
157 |
'cntctfrm_phone_error' => array( 'en' => __( "Phone number is required.", 'contact_form' ) ),
|
158 |
'cntctfrm_subject_error' => array( 'en' => __( "Subject is required.", 'contact_form' ) ),
|
159 |
'cntctfrm_message_error' => array( 'en' => __( "Message text is required.", 'contact_form' ) ),
|
288 |
$cntctfrm_options_submit['cntctfrm_display_phone_field'] = isset( $_POST['cntctfrm_display_phone_field']) ? 1 : 0;
|
289 |
$cntctfrm_options_submit['cntctfrm_required_name_field'] = isset( $_POST['cntctfrm_required_name_field']) ? 1 : 0;
|
290 |
$cntctfrm_options_submit['cntctfrm_required_email_field'] = isset( $_POST['cntctfrm_required_email_field']) ? 1 : 0;
|
291 |
+
// $cntctfrm_options_submit['cntctfrm_required_phone_field'] = isset( $_POST['cntctfrm_required_phone_field']) ? 1 : 0;
|
292 |
+
if ( $cntctfrm_options_submit['cntctfrm_display_phone_field'] == 0 ) {
|
293 |
+
$cntctfrm_options_submit['cntctfrm_required_phone_field'] = 0;
|
294 |
+
} else {
|
295 |
+
$cntctfrm_options_submit['cntctfrm_required_phone_field'] = isset( $_POST['cntctfrm_required_phone_field']) ? 1 : 0;
|
296 |
+
}
|
297 |
$cntctfrm_options_submit['cntctfrm_required_subject_field'] = isset( $_POST['cntctfrm_required_subject_field']) ? 1 : 0;
|
298 |
$cntctfrm_options_submit['cntctfrm_required_message_field'] = isset( $_POST['cntctfrm_required_message_field']) ? 1 : 0;
|
299 |
|
396 |
}
|
397 |
else {
|
398 |
if( $cntctfrm_options_submit['cntctfrm_custom_email'] == "" || !preg_match( "/^((?:[a-z0-9']+(?:[a-z0-9\-_\.']+)?@[a-z0-9]+(?:[a-z0-9\-\.]+)?\.[a-z]{2,5})[, ]*)+$/i", trim( $cntctfrm_options_submit['cntctfrm_custom_email'] ) ) ){
|
399 |
+
$error .= __( "Please enter a valid email address in the 'FROM' field. Settings are not saved.", 'contact_form' );
|
400 |
}
|
401 |
}
|
402 |
if( 'custom' == $cntctfrm_options_submit['cntctfrm_from_email'] ) {
|
435 |
<p><?php _e( "If you would like to add the Contact Form to your website, just copy and paste this shortcode to your post or page or widget:", 'contact_form' ); ?> [contact_form] or [contact_form lang=en]</p>
|
436 |
<?php _e( "If you leave the fields empty, the messages will be sent to the email address specified during registration.", 'contact_form' ); ?>
|
437 |
</span>
|
438 |
+
<table class="form-table" style="width:auto;" >
|
439 |
<tr valign="top">
|
440 |
<th scope="row" style="width:200px;"><?php _e( "The user's email address:", 'contact_form' ); ?> </th>
|
441 |
+
<td colspan="2" style="width:750px;">
|
442 |
<input type="radio" id="cntctfrm_select_email_user" name="cntctfrm_select_email" value="user" <?php if($cntctfrm_options['cntctfrm_select_email'] == 'user') echo "checked=\"checked\" "; ?>/>
|
443 |
<select name="cntctfrm_user_email">
|
444 |
<option disabled><?php _e( "Create a username", 'contact_form' ); ?></option>
|
501 |
<tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
|
502 |
<th scope="row" style="width:200px;"><?php _e( "Enter the email address in the 'From' field", 'contact_form' ); ?></th>
|
503 |
<td colspan="2">
|
504 |
+
<input type="radio" id="cntctfrm_from_email" name="cntctfrm_from_email" value="user" <?php if( $cntctfrm_options['cntctfrm_from_email'] == 'user' ) echo "checked=\"checked\" "; ?>/> User email <span class="cntctfrm_info">(<?php _e( "The email address of the user who fills the form will be used in the field 'From'.", 'contact_form' ); ?>)</span><br />
|
505 |
<input type="radio" id="cntctfrm_from_custom_email" name="cntctfrm_from_email" value="custom" <?php if($cntctfrm_options['cntctfrm_from_email'] == 'custom') echo "checked=\"checked\" "; ?>/> <input type="text" name="cntctfrm_custom_from_email" value="<?php echo $cntctfrm_options['cntctfrm_custom_from_email']; ?>" onfocus="document.getElementById('cntctfrm_from_custom_email').checked = true;" />
|
506 |
<span class="cntctfrm_info">(<?php _e( "This email address will be used in the 'From' field.", 'contact_form' ); ?>)</span>
|
507 |
</td>
|
508 |
</tr>
|
509 |
<tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
|
510 |
+
<th scope="row" style="width:200px;"><?php _e( "Display a phone number field", 'contact_form' ); ?></th>
|
511 |
<td colspan="2">
|
512 |
<input type="checkbox" id="cntctfrm_display_phone_field" name="cntctfrm_display_phone_field" value="1" <?php if($cntctfrm_options['cntctfrm_display_phone_field'] == '1') echo "checked=\"checked\" "; ?>/>
|
513 |
</td>
|
516 |
<th scope="row" style="width:200px;"><?php _e( "Required fields", 'contact_form' ); ?></th>
|
517 |
<td colspan="2">
|
518 |
<input type="checkbox" id="cntctfrm_required_name_field" name="cntctfrm_required_name_field" value="1" <?php if($cntctfrm_options['cntctfrm_required_name_field'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Name", 'contact_form' ); ?><br />
|
519 |
+
<input type="checkbox" id="cntctfrm_required_email_field" name="cntctfrm_required_email_field" value="1" <?php if($cntctfrm_options['cntctfrm_required_email_field'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Email Address", 'contact_form' ); ?><br />
|
520 |
<input type="checkbox" id="cntctfrm_required_phone_field" name="cntctfrm_required_phone_field" value="1" <?php if($cntctfrm_options['cntctfrm_required_phone_field'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Phone", 'contact_form' ); ?><br />
|
521 |
<input type="checkbox" id="cntctfrm_required_subject_field" name="cntctfrm_required_subject_field" value="1" <?php if($cntctfrm_options['cntctfrm_required_subject_field'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Subject", 'contact_form' ); ?><br />
|
522 |
<input type="checkbox" id="cntctfrm_required_message_field" name="cntctfrm_required_message_field" value="1" <?php if($cntctfrm_options['cntctfrm_required_message_field'] == '1') echo "checked=\"checked\" "; ?>/> <?php _e( "Message", 'contact_form' ); ?>
|
523 |
</td>
|
524 |
</tr>
|
525 |
<tr valign="top" class="cntctfrm_additions_block <?php if( $cntctfrm_options['cntctfrm_additions_options'] == '0' ) echo "cntctfrm_hidden"; ?>">
|
526 |
+
<th scope="row" style="width:200px;"><?php _e( "Display additional info in the email", 'contact_form' ); ?></th>
|
527 |
<td style="width:15px;">
|
528 |
<input type="checkbox" id="cntctfrm_display_add_info" name="cntctfrm_display_add_info" value="1" <?php if($cntctfrm_options['cntctfrm_display_add_info'] == '1') echo "checked=\"checked\" "; ?>/>
|
529 |
</td>
|
544 |
echo '<option value="' . esc_attr( $key ) . '"> ' . esc_html ( $val ) . '</option>';
|
545 |
} ?>
|
546 |
</select>
|
547 |
+
<input type="button" class="button-primary" id="cntctfrm_add_language_button" value="<?php _e('Add a language', 'contact_form'); ?>" />
|
548 |
</td>
|
549 |
</tr>
|
550 |
<tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
|
832 |
$error_message['error_subject'] = $cntctfrm_options['cntctfrm_subject_error'][$language];
|
833 |
if( $cntctfrm_options['cntctfrm_required_message_field'] == 1 )
|
834 |
$error_message['error_message'] = $cntctfrm_options['cntctfrm_message_error'][$language];
|
835 |
+
if( $cntctfrm_options['cntctfrm_required_phone_field'] == 1 && $cntctfrm_options['cntctfrm_display_phone_field'] == 1 )
|
836 |
$error_message['error_phone'] = $cntctfrm_options['cntctfrm_phone_error'][$language];
|
837 |
$error_message['error_form'] = $cntctfrm_options['cntctfrm_form_error'][$language];
|
838 |
if( $cntctfrm_options['cntctfrm_attachment'] == 1 ) {
|
1068 |
|
1069 |
// Additional headers
|
1070 |
if( 'custom' == $cntctfrm_options['cntctfrm_from_email'] )
|
1071 |
+
$headers .= 'From: '.stripslashes( $cntctfrm_options['cntctfrm_from_field'] ).' <'.stripslashes( $cntctfrm_options['cntctfrm_custom_from_email'] ). '>' . "\n";
|
1072 |
else
|
1073 |
+
$headers .= 'From: '.stripslashes( $cntctfrm_options['cntctfrm_from_field'] ).' <'.stripslashes( $email ). '>' . "\n";
|
1074 |
|
1075 |
$bound_text = "jimmyP123";
|
1076 |
|
1103 |
|
1104 |
// Additional headers
|
1105 |
if( 'custom' == $cntctfrm_options['cntctfrm_from_email'] )
|
1106 |
+
$headers .= 'From: '.stripslashes( $cntctfrm_options['cntctfrm_from_field'] ).' <'.stripslashes( $cntctfrm_options['cntctfrm_custom_from_email'] ). '>' . "\n";
|
1107 |
else
|
1108 |
+
$headers .= 'From: '.stripslashes( $cntctfrm_options['cntctfrm_from_field'] ).' <'.$email. '>' . "\n";
|
1109 |
}
|
1110 |
if( isset( $_POST['cntctfrm_contact_send_copy'] ) && $_POST['cntctfrm_contact_send_copy'] == 1 )
|
1111 |
@mail( $email, $subject, $message_text, $headers );
|
languages/contact_form-ru_RU.mo
CHANGED
Binary file
|
languages/contact_form-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: 2013-
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -27,8 +27,8 @@ msgid "Read more"
|
|
27 |
msgstr "Читать далее"
|
28 |
|
29 |
#: contact_form.php:80
|
30 |
-
#: contact_form.php:
|
31 |
-
#: contact_form.php:
|
32 |
msgid "Settings"
|
33 |
msgstr "Настройки"
|
34 |
|
@@ -58,7 +58,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
|
|
58 |
msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
|
59 |
|
60 |
#: contact_form.php:110
|
61 |
-
#: contact_form.php:
|
62 |
msgid "Contact Form Options"
|
63 |
msgstr "Настройки Контактной Формы"
|
64 |
|
@@ -67,385 +67,400 @@ msgid "Contact Form"
|
|
67 |
msgstr "Контактная Форма"
|
68 |
|
69 |
#: contact_form.php:147
|
70 |
-
#: contact_form.php:
|
71 |
-
#: contact_form.php:
|
72 |
msgid "Name:"
|
73 |
msgstr "Имя:"
|
74 |
|
75 |
#: contact_form.php:148
|
76 |
-
#: contact_form.php:
|
77 |
-
#: contact_form.php:
|
78 |
msgid "Email Address:"
|
79 |
msgstr "E-mail адрес:"
|
80 |
|
81 |
#: contact_form.php:149
|
82 |
-
#: contact_form.php:
|
83 |
-
#: contact_form.php:
|
84 |
msgid "Phone number:"
|
85 |
msgstr "Телефон:"
|
86 |
|
87 |
#: contact_form.php:150
|
88 |
-
#: contact_form.php:
|
89 |
-
#: contact_form.php:
|
90 |
msgid "Subject:"
|
91 |
msgstr "Тема:"
|
92 |
|
93 |
#: contact_form.php:151
|
94 |
-
#: contact_form.php:
|
95 |
-
#: contact_form.php:
|
96 |
msgid "Message:"
|
97 |
msgstr "Сообщение:"
|
98 |
|
99 |
#: contact_form.php:152
|
100 |
-
#: contact_form.php:
|
101 |
-
#: contact_form.php:
|
102 |
msgid "Attachment:"
|
103 |
msgstr "Прикрепить файл:"
|
104 |
|
105 |
#: contact_form.php:153
|
106 |
-
#: contact_form.php:
|
107 |
-
#: contact_form.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
msgid "Submit"
|
109 |
msgstr "Отправить"
|
110 |
|
111 |
-
#: contact_form.php:
|
112 |
msgid "Your name is required."
|
113 |
msgstr "Ваше имя - это обязательное поле."
|
114 |
|
115 |
-
#: contact_form.php:155
|
116 |
-
msgid "A proper e-mail address is required."
|
117 |
-
msgstr "Поле e-mail адреса - обязательное для заполнения."
|
118 |
-
|
119 |
#: contact_form.php:156
|
120 |
-
msgid "
|
121 |
-
msgstr "Поле
|
122 |
|
123 |
#: contact_form.php:157
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
#: contact_form.php:158
|
128 |
msgid "Phone number is required."
|
129 |
msgstr "Телефон - это обязательное поле."
|
130 |
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
#: contact_form.php:159
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
msgid "File format is not valid."
|
133 |
msgstr "Прикрепленный тип файла не поддерживается"
|
134 |
|
135 |
-
#: contact_form.php:
|
136 |
msgid "Please fill out the CAPTCHA."
|
137 |
msgstr "Пожалуйста, заполните КАПЧУ."
|
138 |
|
139 |
-
#: contact_form.php:
|
140 |
msgid "Please make corrections below and try again."
|
141 |
msgstr "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
|
142 |
|
143 |
-
#: contact_form.php:
|
144 |
msgid "Thank you for contacting us."
|
145 |
msgstr "Спасибо за контакт с нами."
|
146 |
|
147 |
-
#: contact_form.php:
|
148 |
msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
|
149 |
msgstr "Если опция 'Перейти на страницу \"выбран, то Урл поле должно быть заполнено в следующем формате"
|
150 |
|
151 |
-
#: contact_form.php:
|
152 |
msgid "Such user does not exist. Settings are not saved."
|
153 |
msgstr "Данный пользователь не найден. Настройки не сохранены"
|
154 |
|
155 |
-
#: contact_form.php:
|
156 |
-
|
157 |
-
msgstr "Пожалуйста, введите корректный email. Настройки не сохранены."
|
158 |
-
|
159 |
-
#: contact_form.php:378
|
160 |
msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
|
161 |
msgstr "Пожалуйста, введите корректный email для поля 'FROM'. Настройки не сохранены."
|
162 |
|
163 |
-
#: contact_form.php:
|
164 |
msgid "Options saved."
|
165 |
msgstr "Опции сохранены"
|
166 |
|
167 |
-
#: contact_form.php:
|
168 |
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:"
|
169 |
msgstr "Если вы хотите добавить Контактную Форму на свой сайт, вам надо только скопировать и вставить шорткод в контент страницы или поста или виджета:"
|
170 |
|
171 |
-
#: contact_form.php:
|
172 |
msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
|
173 |
msgstr "Если информация в полях ниже отсутствует, соощения будут оправлены на email адрес, который был указан при регистрации сайта."
|
174 |
|
175 |
-
#: contact_form.php:
|
176 |
msgid "The user's email address:"
|
177 |
msgstr "Email пользователя сайта:"
|
178 |
|
179 |
-
#: contact_form.php:
|
180 |
msgid "Create a username"
|
181 |
msgstr "Выберите имя пользователя"
|
182 |
|
183 |
-
#: contact_form.php:
|
184 |
msgid "Enter a username of the person who should get the messages from the contact form."
|
185 |
msgstr "Укажите логин пользователя, который будет получать сообщения контактной формы."
|
186 |
|
187 |
-
#: contact_form.php:
|
188 |
msgid "Use this email address:"
|
189 |
msgstr "Использовать этот email:"
|
190 |
|
191 |
-
#: contact_form.php:
|
192 |
msgid "Enter the email address you want the messages forwarded to."
|
193 |
msgstr "Укажите email адрес, на который будут отправляться сообщения."
|
194 |
|
195 |
-
#: contact_form.php:
|
196 |
msgid "Additional options"
|
197 |
msgstr "Дополнительные настройки"
|
198 |
|
199 |
-
#: contact_form.php:
|
200 |
msgid "Display Attachment block"
|
201 |
msgstr "Отобразить блок Прикрепить файл"
|
202 |
|
203 |
-
#: contact_form.php:
|
204 |
msgid "Users can attach the following file formats"
|
205 |
msgstr "Пользователи могут прикрепить файлы таких типов"
|
206 |
|
207 |
-
#: contact_form.php:
|
208 |
msgid "Display Attachment tips"
|
209 |
msgstr "Отобразить пояснения для блока Прикрепить файл"
|
210 |
|
211 |
-
#: contact_form.php:
|
212 |
msgid "Display tips below the Attachment block"
|
213 |
msgstr "Отобразить пояснения после блока Прикрепить файл"
|
214 |
|
215 |
-
#: contact_form.php:
|
216 |
msgid "Display Send me a copy block"
|
217 |
msgstr "Отобразить блок Отправить мне копию"
|
218 |
|
219 |
-
#: contact_form.php:
|
220 |
msgid "What to use?"
|
221 |
msgstr "Что использовать?"
|
222 |
|
223 |
-
#: contact_form.php:
|
224 |
msgid "Wp-mail"
|
225 |
msgstr "Wp-mail"
|
226 |
|
227 |
-
#: contact_form.php:
|
228 |
msgid "You can use the wp_mail function for mailing"
|
229 |
msgstr "Для отправки почты вы можете использовать функцию WordPress wp_mail"
|
230 |
|
231 |
-
#: contact_form.php:
|
232 |
msgid "Mail"
|
233 |
msgstr "Mail"
|
234 |
|
235 |
-
#: contact_form.php:
|
236 |
msgid "To send mail you can use the php mail function"
|
237 |
msgstr "Для отправки почты вы можете использовать функцию php mail"
|
238 |
|
239 |
-
#: contact_form.php:
|
240 |
msgid "Change text of the 'FROM' field"
|
241 |
msgstr "Изменить текст для поля ОТ в письме"
|
242 |
|
243 |
-
#: contact_form.php:
|
244 |
msgid "Enter the email address in the 'From' field"
|
245 |
msgstr "Выберите email для поля 'FROM' письма"
|
246 |
|
247 |
-
#: contact_form.php:
|
248 |
-
msgid "The email address of the user who fills the form
|
249 |
msgstr "В поле \"From\" в письме будет использоваться электронная почта того пользователя, который заполняет форму."
|
250 |
|
251 |
-
#: contact_form.php:
|
252 |
msgid "This email address will be used in the 'From' field."
|
253 |
msgstr "В поле \"From\" в письме будет использоваться данная электронная почта."
|
254 |
|
255 |
-
#: contact_form.php:
|
256 |
-
msgid "Display phone field"
|
257 |
msgstr "Отобразить поле для телефона"
|
258 |
|
259 |
-
#: contact_form.php:
|
260 |
msgid "Required fields"
|
261 |
msgstr "Обязательные поля"
|
262 |
|
263 |
-
#: contact_form.php:
|
264 |
-
#: contact_form.php:
|
265 |
msgid "Name"
|
266 |
msgstr "Имя"
|
267 |
|
268 |
-
#: contact_form.php:
|
269 |
-
msgid "
|
270 |
-
msgstr "
|
271 |
|
272 |
-
#: contact_form.php:
|
273 |
-
#: contact_form.php:
|
274 |
msgid "Phone"
|
275 |
msgstr "Телефон"
|
276 |
|
277 |
-
#: contact_form.php:
|
278 |
-
#: contact_form.php:
|
279 |
msgid "Subject"
|
280 |
msgstr "Тема"
|
281 |
|
282 |
-
#: contact_form.php:
|
283 |
-
#: contact_form.php:
|
284 |
msgid "Message"
|
285 |
msgstr "Сообщение"
|
286 |
|
287 |
-
#: contact_form.php:
|
288 |
-
msgid "Display additional info in email"
|
289 |
msgstr "Отображение дополнительной информации в письме"
|
290 |
|
291 |
-
#: contact_form.php:
|
292 |
-
#: contact_form.php:
|
293 |
msgid "Sent from (ip address)"
|
294 |
msgstr "Отправлено от (ip адрес)"
|
295 |
|
296 |
-
#: contact_form.php:
|
297 |
-
#: contact_form.php:
|
298 |
msgid "Date/Time"
|
299 |
msgstr "Дата/Время"
|
300 |
|
301 |
-
#: contact_form.php:
|
302 |
-
#: contact_form.php:
|
303 |
msgid "Sent from (referer)"
|
304 |
msgstr "Пришло из (реферер)"
|
305 |
|
306 |
-
#: contact_form.php:
|
307 |
-
#: contact_form.php:
|
308 |
msgid "Using (user agent)"
|
309 |
msgstr "Используя (user agent)"
|
310 |
|
311 |
-
#: contact_form.php:
|
312 |
msgid "Language settings for the field names in the form"
|
313 |
msgstr "Языковые настройки для названия полей в форме"
|
314 |
|
315 |
-
#: contact_form.php:
|
316 |
-
msgid "Add language"
|
317 |
-
msgstr "
|
318 |
|
319 |
-
#: contact_form.php:
|
320 |
msgid "Change the names of the contact form fields and error messages"
|
321 |
msgstr "Изменить названия полей контактной формы и сообщений об ошибках"
|
322 |
|
323 |
-
#: contact_form.php:
|
324 |
-
#: contact_form.php:
|
325 |
msgid "English"
|
326 |
msgstr "Английский"
|
327 |
|
328 |
-
#: contact_form.php:
|
329 |
-
#: contact_form.php:
|
330 |
msgid "Error message for the Name field"
|
331 |
msgstr "Сообщение об ошибке для поля Name"
|
332 |
|
333 |
-
#: contact_form.php:
|
334 |
-
#: contact_form.php:
|
335 |
msgid "Error message for the Email field"
|
336 |
msgstr "Сообщение об ошибке для поля Email"
|
337 |
|
338 |
-
#: contact_form.php:
|
339 |
-
#: contact_form.php:
|
340 |
msgid "Error message for the Phone field"
|
341 |
msgstr "Сообщение об ошибке для поля Phone"
|
342 |
|
343 |
-
#: contact_form.php:
|
344 |
-
#: contact_form.php:
|
345 |
msgid "Error message for the Subject field"
|
346 |
msgstr "Сообщение об ошибке для поля Subject"
|
347 |
|
348 |
-
#: contact_form.php:
|
349 |
-
#: contact_form.php:
|
350 |
msgid "Error message for the Message field"
|
351 |
msgstr "Сообщение об ошибке для поля Message"
|
352 |
|
353 |
-
#: contact_form.php:
|
354 |
-
#: contact_form.php:
|
355 |
msgid "Error message for the Attachment field"
|
356 |
msgstr "Сообщение об ошибке для поля Attachment"
|
357 |
|
358 |
-
#: contact_form.php:
|
359 |
-
#: contact_form.php:
|
360 |
msgid "Error message for the Captcha field"
|
361 |
msgstr "Сообщение об ошибке для поля Captcha"
|
362 |
|
363 |
-
#: contact_form.php:
|
364 |
-
#: contact_form.php:
|
365 |
msgid "Error message for the whole form"
|
366 |
msgstr "Сообщение об ошибке для всей формы"
|
367 |
|
368 |
-
#: contact_form.php:
|
369 |
-
#: contact_form.php:
|
370 |
-
#: contact_form.php:
|
371 |
-
#: contact_form.php:
|
372 |
msgid "Use shortcode"
|
373 |
msgstr "Использовать шорткод"
|
374 |
|
375 |
-
#: contact_form.php:
|
376 |
-
#: contact_form.php:
|
377 |
-
#: contact_form.php:
|
378 |
-
#: contact_form.php:
|
379 |
msgid "for this language"
|
380 |
msgstr "для данного языка"
|
381 |
|
382 |
-
#: contact_form.php:
|
383 |
msgid "Action after email is sent"
|
384 |
msgstr "Действие после отправки письма"
|
385 |
|
386 |
-
#: contact_form.php:
|
387 |
msgid "Display text"
|
388 |
msgstr "Отобразить текст"
|
389 |
|
390 |
-
#: contact_form.php:
|
391 |
-
#: contact_form.php:
|
392 |
msgid "Text"
|
393 |
msgstr "Текст"
|
394 |
|
395 |
-
#: contact_form.php:
|
396 |
msgid "Redirect to the page"
|
397 |
msgstr "Перенаправление на страницу"
|
398 |
|
399 |
-
#: contact_form.php:
|
400 |
msgid "Url"
|
401 |
msgstr "Урл"
|
402 |
|
403 |
-
#: contact_form.php:
|
404 |
msgid "Save Changes"
|
405 |
msgstr "Save Changes"
|
406 |
|
407 |
-
#: contact_form.php:
|
408 |
msgid "Sorry, email message could not be delivered."
|
409 |
msgstr "Извините, ваш email не может быть отправлен."
|
410 |
|
411 |
-
#: contact_form.php:
|
412 |
msgid "You can attach the following file formats"
|
413 |
msgstr "Пользователи могут прикрепить файлы таких типов"
|
414 |
|
415 |
-
#: contact_form.php:
|
416 |
-
msgid "Send me a copy"
|
417 |
-
msgstr "Отправить мне копию"
|
418 |
-
|
419 |
-
#: contact_form.php:950
|
420 |
msgid "Contact from"
|
421 |
msgstr "Контактная Форма"
|
422 |
|
423 |
-
#: contact_form.php:
|
424 |
msgid "Email"
|
425 |
msgstr "Email"
|
426 |
|
427 |
-
#: contact_form.php:
|
428 |
msgid "Site"
|
429 |
msgstr "Сайт"
|
430 |
|
431 |
-
#: contact_form.php:
|
432 |
msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
|
433 |
msgstr "Если вы можете видеть этот MIME значит ваш почтовый клиент не поддерживает MIME тип!"
|
434 |
|
435 |
-
#: contact_form.php:
|
436 |
msgid "FAQ"
|
437 |
msgstr "FAQ"
|
438 |
|
439 |
-
#: contact_form.php:
|
440 |
msgid "Support"
|
441 |
msgstr "Поддержка"
|
442 |
|
443 |
-
#: contact_form.php:
|
444 |
msgid "Are you sure that you want to delete this language data?"
|
445 |
msgstr "Вы действительно хотите удалить данные для этого языка?"
|
446 |
|
447 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
448 |
#~ msgstr "E-mail адрес:"
|
|
|
|
|
449 |
#~ msgid "Install Now"
|
450 |
#~ msgstr "Установить сейчас"
|
451 |
#~ msgid "BWS Plugins"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-04-08 17:10+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-04-08 17:10+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
27 |
msgstr "Читать далее"
|
28 |
|
29 |
#: contact_form.php:80
|
30 |
+
#: contact_form.php:1127
|
31 |
+
#: contact_form.php:1136
|
32 |
msgid "Settings"
|
33 |
msgstr "Настройки"
|
34 |
|
58 |
msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
|
59 |
|
60 |
#: contact_form.php:110
|
61 |
+
#: contact_form.php:430
|
62 |
msgid "Contact Form Options"
|
63 |
msgstr "Настройки Контактной Формы"
|
64 |
|
67 |
msgstr "Контактная Форма"
|
68 |
|
69 |
#: contact_form.php:147
|
70 |
+
#: contact_form.php:564
|
71 |
+
#: contact_form.php:585
|
72 |
msgid "Name:"
|
73 |
msgstr "Имя:"
|
74 |
|
75 |
#: contact_form.php:148
|
76 |
+
#: contact_form.php:565
|
77 |
+
#: contact_form.php:586
|
78 |
msgid "Email Address:"
|
79 |
msgstr "E-mail адрес:"
|
80 |
|
81 |
#: contact_form.php:149
|
82 |
+
#: contact_form.php:566
|
83 |
+
#: contact_form.php:587
|
84 |
msgid "Phone number:"
|
85 |
msgstr "Телефон:"
|
86 |
|
87 |
#: contact_form.php:150
|
88 |
+
#: contact_form.php:567
|
89 |
+
#: contact_form.php:588
|
90 |
msgid "Subject:"
|
91 |
msgstr "Тема:"
|
92 |
|
93 |
#: contact_form.php:151
|
94 |
+
#: contact_form.php:568
|
95 |
+
#: contact_form.php:589
|
96 |
msgid "Message:"
|
97 |
msgstr "Сообщение:"
|
98 |
|
99 |
#: contact_form.php:152
|
100 |
+
#: contact_form.php:569
|
101 |
+
#: contact_form.php:590
|
102 |
msgid "Attachment:"
|
103 |
msgstr "Прикрепить файл:"
|
104 |
|
105 |
#: contact_form.php:153
|
106 |
+
#: contact_form.php:199
|
107 |
+
#: contact_form.php:570
|
108 |
+
#: contact_form.php:591
|
109 |
+
msgid "Send me a copy"
|
110 |
+
msgstr "Отправить мне копию"
|
111 |
+
|
112 |
+
#: contact_form.php:154
|
113 |
+
#: contact_form.php:571
|
114 |
+
#: contact_form.php:592
|
115 |
msgid "Submit"
|
116 |
msgstr "Отправить"
|
117 |
|
118 |
+
#: contact_form.php:155
|
119 |
msgid "Your name is required."
|
120 |
msgstr "Ваше имя - это обязательное поле."
|
121 |
|
|
|
|
|
|
|
|
|
122 |
#: contact_form.php:156
|
123 |
+
msgid "A valid email address is required."
|
124 |
+
msgstr "Поле email адреса - обязательное для заполнения."
|
125 |
|
126 |
#: contact_form.php:157
|
127 |
+
#: contact_form.php:194
|
128 |
+
#: contact_form.php:197
|
|
|
|
|
129 |
msgid "Phone number is required."
|
130 |
msgstr "Телефон - это обязательное поле."
|
131 |
|
132 |
+
#: contact_form.php:158
|
133 |
+
#: contact_form.php:193
|
134 |
+
#: contact_form.php:196
|
135 |
+
msgid "Subject is required."
|
136 |
+
msgstr "Поле Тема - обязательное поле."
|
137 |
+
|
138 |
#: contact_form.php:159
|
139 |
+
#: contact_form.php:192
|
140 |
+
#: contact_form.php:195
|
141 |
+
msgid "Message text is required."
|
142 |
+
msgstr "Поле Сообщение - обязательное поле."
|
143 |
+
|
144 |
+
#: contact_form.php:160
|
145 |
msgid "File format is not valid."
|
146 |
msgstr "Прикрепленный тип файла не поддерживается"
|
147 |
|
148 |
+
#: contact_form.php:161
|
149 |
msgid "Please fill out the CAPTCHA."
|
150 |
msgstr "Пожалуйста, заполните КАПЧУ."
|
151 |
|
152 |
+
#: contact_form.php:162
|
153 |
msgid "Please make corrections below and try again."
|
154 |
msgstr "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
|
155 |
|
156 |
+
#: contact_form.php:164
|
157 |
msgid "Thank you for contacting us."
|
158 |
msgstr "Спасибо за контакт с нами."
|
159 |
|
160 |
+
#: contact_form.php:385
|
161 |
msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
|
162 |
msgstr "Если опция 'Перейти на страницу \"выбран, то Урл поле должно быть заполнено в следующем формате"
|
163 |
|
164 |
+
#: contact_form.php:394
|
165 |
msgid "Such user does not exist. Settings are not saved."
|
166 |
msgstr "Данный пользователь не найден. Настройки не сохранены"
|
167 |
|
168 |
+
#: contact_form.php:399
|
169 |
+
#: contact_form.php:405
|
|
|
|
|
|
|
170 |
msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
|
171 |
msgstr "Пожалуйста, введите корректный email для поля 'FROM'. Настройки не сохранены."
|
172 |
|
173 |
+
#: contact_form.php:410
|
174 |
msgid "Options saved."
|
175 |
msgstr "Опции сохранены"
|
176 |
|
177 |
+
#: contact_form.php:435
|
178 |
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:"
|
179 |
msgstr "Если вы хотите добавить Контактную Форму на свой сайт, вам надо только скопировать и вставить шорткод в контент страницы или поста или виджета:"
|
180 |
|
181 |
+
#: contact_form.php:436
|
182 |
msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
|
183 |
msgstr "Если информация в полях ниже отсутствует, соощения будут оправлены на email адрес, который был указан при регистрации сайта."
|
184 |
|
185 |
+
#: contact_form.php:440
|
186 |
msgid "The user's email address:"
|
187 |
msgstr "Email пользователя сайта:"
|
188 |
|
189 |
+
#: contact_form.php:444
|
190 |
msgid "Create a username"
|
191 |
msgstr "Выберите имя пользователя"
|
192 |
|
193 |
+
#: contact_form.php:449
|
194 |
msgid "Enter a username of the person who should get the messages from the contact form."
|
195 |
msgstr "Укажите логин пользователя, который будет получать сообщения контактной формы."
|
196 |
|
197 |
+
#: contact_form.php:453
|
198 |
msgid "Use this email address:"
|
199 |
msgstr "Использовать этот email:"
|
200 |
|
201 |
+
#: contact_form.php:456
|
202 |
msgid "Enter the email address you want the messages forwarded to."
|
203 |
msgstr "Укажите email адрес, на который будут отправляться сообщения."
|
204 |
|
205 |
+
#: contact_form.php:460
|
206 |
msgid "Additional options"
|
207 |
msgstr "Дополнительные настройки"
|
208 |
|
209 |
+
#: contact_form.php:463
|
210 |
msgid "Display Attachment block"
|
211 |
msgstr "Отобразить блок Прикрепить файл"
|
212 |
|
213 |
+
#: contact_form.php:465
|
214 |
msgid "Users can attach the following file formats"
|
215 |
msgstr "Пользователи могут прикрепить файлы таких типов"
|
216 |
|
217 |
+
#: contact_form.php:469
|
218 |
msgid "Display Attachment tips"
|
219 |
msgstr "Отобразить пояснения для блока Прикрепить файл"
|
220 |
|
221 |
+
#: contact_form.php:471
|
222 |
msgid "Display tips below the Attachment block"
|
223 |
msgstr "Отобразить пояснения после блока Прикрепить файл"
|
224 |
|
225 |
+
#: contact_form.php:475
|
226 |
msgid "Display Send me a copy block"
|
227 |
msgstr "Отобразить блок Отправить мне копию"
|
228 |
|
229 |
+
#: contact_form.php:481
|
230 |
msgid "What to use?"
|
231 |
msgstr "Что использовать?"
|
232 |
|
233 |
+
#: contact_form.php:484
|
234 |
msgid "Wp-mail"
|
235 |
msgstr "Wp-mail"
|
236 |
|
237 |
+
#: contact_form.php:485
|
238 |
msgid "You can use the wp_mail function for mailing"
|
239 |
msgstr "Для отправки почты вы можете использовать функцию WordPress wp_mail"
|
240 |
|
241 |
+
#: contact_form.php:491
|
242 |
msgid "Mail"
|
243 |
msgstr "Mail"
|
244 |
|
245 |
+
#: contact_form.php:492
|
246 |
msgid "To send mail you can use the php mail function"
|
247 |
msgstr "Для отправки почты вы можете использовать функцию php mail"
|
248 |
|
249 |
+
#: contact_form.php:496
|
250 |
msgid "Change text of the 'FROM' field"
|
251 |
msgstr "Изменить текст для поля ОТ в письме"
|
252 |
|
253 |
+
#: contact_form.php:502
|
254 |
msgid "Enter the email address in the 'From' field"
|
255 |
msgstr "Выберите email для поля 'FROM' письма"
|
256 |
|
257 |
+
#: contact_form.php:504
|
258 |
+
msgid "The email address of the user who fills the form will be used in the field 'From'."
|
259 |
msgstr "В поле \"From\" в письме будет использоваться электронная почта того пользователя, который заполняет форму."
|
260 |
|
261 |
+
#: contact_form.php:506
|
262 |
msgid "This email address will be used in the 'From' field."
|
263 |
msgstr "В поле \"From\" в письме будет использоваться данная электронная почта."
|
264 |
|
265 |
+
#: contact_form.php:510
|
266 |
+
msgid "Display a phone number field"
|
267 |
msgstr "Отобразить поле для телефона"
|
268 |
|
269 |
+
#: contact_form.php:516
|
270 |
msgid "Required fields"
|
271 |
msgstr "Обязательные поля"
|
272 |
|
273 |
+
#: contact_form.php:518
|
274 |
+
#: contact_form.php:1016
|
275 |
msgid "Name"
|
276 |
msgstr "Имя"
|
277 |
|
278 |
+
#: contact_form.php:519
|
279 |
+
msgid "Email Address"
|
280 |
+
msgstr "Email адрес"
|
281 |
|
282 |
+
#: contact_form.php:520
|
283 |
+
#: contact_form.php:1024
|
284 |
msgid "Phone"
|
285 |
msgstr "Телефон"
|
286 |
|
287 |
+
#: contact_form.php:521
|
288 |
+
#: contact_form.php:1027
|
289 |
msgid "Subject"
|
290 |
msgstr "Тема"
|
291 |
|
292 |
+
#: contact_form.php:522
|
293 |
+
#: contact_form.php:1030
|
294 |
msgid "Message"
|
295 |
msgstr "Сообщение"
|
296 |
|
297 |
+
#: contact_form.php:526
|
298 |
+
msgid "Display additional info in the email"
|
299 |
msgstr "Отображение дополнительной информации в письме"
|
300 |
|
301 |
+
#: contact_form.php:531
|
302 |
+
#: contact_form.php:988
|
303 |
msgid "Sent from (ip address)"
|
304 |
msgstr "Отправлено от (ip адрес)"
|
305 |
|
306 |
+
#: contact_form.php:532
|
307 |
+
#: contact_form.php:993
|
308 |
msgid "Date/Time"
|
309 |
msgstr "Дата/Время"
|
310 |
|
311 |
+
#: contact_form.php:533
|
312 |
+
#: contact_form.php:998
|
313 |
msgid "Sent from (referer)"
|
314 |
msgstr "Пришло из (реферер)"
|
315 |
|
316 |
+
#: contact_form.php:534
|
317 |
+
#: contact_form.php:1003
|
318 |
msgid "Using (user agent)"
|
319 |
msgstr "Используя (user agent)"
|
320 |
|
321 |
+
#: contact_form.php:538
|
322 |
msgid "Language settings for the field names in the form"
|
323 |
msgstr "Языковые настройки для названия полей в форме"
|
324 |
|
325 |
+
#: contact_form.php:547
|
326 |
+
msgid "Add a language"
|
327 |
+
msgstr "Добавить язык"
|
328 |
|
329 |
+
#: contact_form.php:551
|
330 |
msgid "Change the names of the contact form fields and error messages"
|
331 |
msgstr "Изменить названия полей контактной формы и сообщений об ошибках"
|
332 |
|
333 |
+
#: contact_form.php:556
|
334 |
+
#: contact_form.php:611
|
335 |
msgid "English"
|
336 |
msgstr "Английский"
|
337 |
|
338 |
+
#: contact_form.php:572
|
339 |
+
#: contact_form.php:593
|
340 |
msgid "Error message for the Name field"
|
341 |
msgstr "Сообщение об ошибке для поля Name"
|
342 |
|
343 |
+
#: contact_form.php:573
|
344 |
+
#: contact_form.php:594
|
345 |
msgid "Error message for the Email field"
|
346 |
msgstr "Сообщение об ошибке для поля Email"
|
347 |
|
348 |
+
#: contact_form.php:574
|
349 |
+
#: contact_form.php:595
|
350 |
msgid "Error message for the Phone field"
|
351 |
msgstr "Сообщение об ошибке для поля Phone"
|
352 |
|
353 |
+
#: contact_form.php:575
|
354 |
+
#: contact_form.php:596
|
355 |
msgid "Error message for the Subject field"
|
356 |
msgstr "Сообщение об ошибке для поля Subject"
|
357 |
|
358 |
+
#: contact_form.php:576
|
359 |
+
#: contact_form.php:597
|
360 |
msgid "Error message for the Message field"
|
361 |
msgstr "Сообщение об ошибке для поля Message"
|
362 |
|
363 |
+
#: contact_form.php:577
|
364 |
+
#: contact_form.php:598
|
365 |
msgid "Error message for the Attachment field"
|
366 |
msgstr "Сообщение об ошибке для поля Attachment"
|
367 |
|
368 |
+
#: contact_form.php:578
|
369 |
+
#: contact_form.php:599
|
370 |
msgid "Error message for the Captcha field"
|
371 |
msgstr "Сообщение об ошибке для поля Captcha"
|
372 |
|
373 |
+
#: contact_form.php:579
|
374 |
+
#: contact_form.php:600
|
375 |
msgid "Error message for the whole form"
|
376 |
msgstr "Сообщение об ошибке для всей формы"
|
377 |
|
378 |
+
#: contact_form.php:580
|
379 |
+
#: contact_form.php:601
|
380 |
+
#: contact_form.php:620
|
381 |
+
#: contact_form.php:626
|
382 |
msgid "Use shortcode"
|
383 |
msgstr "Использовать шорткод"
|
384 |
|
385 |
+
#: contact_form.php:580
|
386 |
+
#: contact_form.php:601
|
387 |
+
#: contact_form.php:620
|
388 |
+
#: contact_form.php:626
|
389 |
msgid "for this language"
|
390 |
msgstr "для данного языка"
|
391 |
|
392 |
+
#: contact_form.php:608
|
393 |
msgid "Action after email is sent"
|
394 |
msgstr "Действие после отправки письма"
|
395 |
|
396 |
+
#: contact_form.php:610
|
397 |
msgid "Display text"
|
398 |
msgstr "Отобразить текст"
|
399 |
|
400 |
+
#: contact_form.php:619
|
401 |
+
#: contact_form.php:625
|
402 |
msgid "Text"
|
403 |
msgstr "Текст"
|
404 |
|
405 |
+
#: contact_form.php:632
|
406 |
msgid "Redirect to the page"
|
407 |
msgstr "Перенаправление на страницу"
|
408 |
|
409 |
+
#: contact_form.php:633
|
410 |
msgid "Url"
|
411 |
msgstr "Урл"
|
412 |
|
413 |
+
#: contact_form.php:638
|
414 |
msgid "Save Changes"
|
415 |
msgstr "Save Changes"
|
416 |
|
417 |
+
#: contact_form.php:685
|
418 |
msgid "Sorry, email message could not be delivered."
|
419 |
msgstr "Извините, ваш email не может быть отправлен."
|
420 |
|
421 |
+
#: contact_form.php:755
|
422 |
msgid "You can attach the following file formats"
|
423 |
msgstr "Пользователи могут прикрепить файлы таких типов"
|
424 |
|
425 |
+
#: contact_form.php:1011
|
|
|
|
|
|
|
|
|
426 |
msgid "Contact from"
|
427 |
msgstr "Контактная Форма"
|
428 |
|
429 |
+
#: contact_form.php:1019
|
430 |
msgid "Email"
|
431 |
msgstr "Email"
|
432 |
|
433 |
+
#: contact_form.php:1033
|
434 |
msgid "Site"
|
435 |
msgstr "Сайт"
|
436 |
|
437 |
+
#: contact_form.php:1084
|
438 |
msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
|
439 |
msgstr "Если вы можете видеть этот MIME значит ваш почтовый клиент не поддерживает MIME тип!"
|
440 |
|
441 |
+
#: contact_form.php:1137
|
442 |
msgid "FAQ"
|
443 |
msgstr "FAQ"
|
444 |
|
445 |
+
#: contact_form.php:1138
|
446 |
msgid "Support"
|
447 |
msgstr "Поддержка"
|
448 |
|
449 |
+
#: contact_form.php:1184
|
450 |
msgid "Are you sure that you want to delete this language data?"
|
451 |
msgstr "Вы действительно хотите удалить данные для этого языка?"
|
452 |
|
453 |
+
#, fuzzy
|
454 |
+
#~ msgid "Please enter a valid email address. Settings are not saved."
|
455 |
+
#~ msgstr ""
|
456 |
+
#~ "Пожалуйста, введите корректный email для поля 'FROM'. Настройки не "
|
457 |
+
#~ "сохранены."
|
458 |
+
|
459 |
+
#, fuzzy
|
460 |
+
#~ msgid "E-Mail Address"
|
461 |
#~ msgstr "E-mail адрес:"
|
462 |
+
#~ msgid "Phone number"
|
463 |
+
#~ msgstr "Телефон"
|
464 |
#~ msgid "Install Now"
|
465 |
#~ msgstr "Установить сейчас"
|
466 |
#~ msgid "BWS Plugins"
|
languages/contact_form-sr_RS.po
CHANGED
File without changes
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Contact Form ===
|
2 |
Contributors: bestwebsoft
|
3 |
Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10&product_id=13
|
4 |
-
Tags: Contact Form, text, contact, form, contacts,
|
5 |
Requires at least: 2.9
|
6 |
Tested up to: 3.5.1
|
7 |
-
Stable tag: 3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -12,24 +12,24 @@ Add Contact Form to your WordPress website.
|
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
-
Contact Form allows you to add a feedback form
|
16 |
|
17 |
<a href="http://wordpress.org/extend/plugins/contact-form-plugin/faq/" target="_blank">FAQ</a>
|
18 |
<a href="http://bestwebsoft.com/plugin/contact-form/" target="_blank">Support</a>
|
19 |
|
20 |
= Features =
|
21 |
|
22 |
-
* Actions:
|
23 |
-
* Actions:
|
24 |
-
* Actions:
|
25 |
-
* Label: There is a possibility to change a label when the fields
|
26 |
|
27 |
= Translation =
|
28 |
|
29 |
* Arabic (ar) (thanks to Hammad Alshammari (ABU HATIM), www.abuhatim.net)
|
30 |
* Belarusian (be_BY) (thanks to <a href="mailto:nullbsd@gmail.com">Sakałoŭ Alaksiej</a>)
|
31 |
* Bulgarian (bg_BG) (thanks to Martin Jekov)
|
32 |
-
* European Portuguese (pt_PT) (thanks to <a href="mailto:cesarbsilva@gmail.com">César Silva</a>,
|
33 |
* Brazilian Portuguese (pt_BR) (thanks to <a href="mailto:brenojac@gmail.com">Breno Jacinto</a>, www.iconis.org.br)
|
34 |
* Czech (cs_CZ) (thanks to Petr Zápotocký)
|
35 |
* Danish (da_DK) (thanks to Mads Hannibal)
|
@@ -50,7 +50,7 @@ Contact Form allows you to add a feedback form easilly and simply to a post or a
|
|
50 |
* Russian (ru_RU)
|
51 |
* Serbian (sr_RS) (thanks to Georgijevic Team, www.georgijevic.info)
|
52 |
* Spanish (es_ES) (thanks to Jesús Parra)
|
53 |
-
* Swedish (sv_SE) (thanks to Martin Tonek, <a href="joakim@limewoodmedia.com">Joakim Lindskog</a>, <a href="mailto:maarten@vandendriest.com">Maarten van den Driest</a> - crossanddot.nl)
|
54 |
* Turkish (tr_TR) (thanks to <a href="mailto:d-bulent@hotmail.com ">Devrim Bulent Ibis</a>, www.devrimhoca.com)
|
55 |
* Ukrainian (uk) (thanks to <a href="mailto:xxxxAndyxxxx@gmail.com">Andrew Yaschuk</a>)
|
56 |
|
@@ -58,48 +58,50 @@ If you create your own language pack or update the existing one, you can send <a
|
|
58 |
|
59 |
= Technical support =
|
60 |
|
61 |
-
Dear users, our plugins are available for free download. If you have any questions or
|
62 |
|
63 |
-
|
|
|
|
|
64 |
|
65 |
== Installation ==
|
66 |
|
67 |
-
1. Upload `Contact Form` folder to the `/wp-content/plugins/` directory.
|
68 |
-
2. Activate the plugin
|
69 |
-
3. You can adjust necessary settings
|
70 |
-
4. Create a page or a post and insert shortcode [contact_form]
|
71 |
|
72 |
== Frequently Asked Questions ==
|
73 |
|
74 |
-
= Where I
|
75 |
|
76 |
In the 'Plugin' menu you can find a link to the settings page.
|
77 |
|
78 |
-
= After plugin installation I haven't adjusted the settings. What is the default email address
|
79 |
|
80 |
-
|
81 |
|
82 |
= How can I add Contact Form to my website? =
|
83 |
|
84 |
-
You
|
85 |
|
86 |
-
=
|
87 |
|
88 |
-
This means that you
|
89 |
|
90 |
-
= How to use other language files with the Contact Form? =
|
91 |
|
92 |
-
Here is an example for German language files.
|
93 |
|
94 |
-
1. In order to use another language for WordPress it is necessary to
|
95 |
|
96 |
-
2. Make sure that there are files `de_DE.po` and `de_DE.mo` in the plugin (in the languages folder which is in the root of the plugin).
|
97 |
|
98 |
-
3. If there are no such files
|
99 |
|
100 |
-
4. The files can be edited with the help of the program Poedit - http://www.poedit.net/download.php - please
|
101 |
|
102 |
-
5. If everything is done properly all lines will be in German in admin panel and
|
103 |
|
104 |
== Screenshots ==
|
105 |
|
@@ -111,29 +113,33 @@ Here is an example for German language files.
|
|
111 |
|
112 |
== Changelog ==
|
113 |
|
|
|
|
|
|
|
|
|
114 |
= V3.42 - 01.04.2013 =
|
115 |
-
* Update : Serbian language file
|
116 |
-
* Bugfix : The bug after clicking submit, when site uses a custom port,
|
117 |
|
118 |
= V3.41 - 22.03.2013 =
|
119 |
* NEW : Added ability to change a label 'Send me a copy'.
|
120 |
* Bugfix : The bug of changing the message 'Action after email is sent' was fixed.
|
121 |
|
122 |
= V3.40 - 19.03.2013 =
|
123 |
-
* NEW : Hungarian language file
|
124 |
* Bugfix : The bug of displaying error messages was fixed.
|
125 |
|
126 |
= V3.39 - 04.03.2013 =
|
127 |
-
* NEW : Ukrainian language file
|
128 |
|
129 |
= V3.38 - 26.02.2013 =
|
130 |
-
* NEW : We added HTML tag for the text, that is
|
131 |
|
132 |
= V3.37 - 21.02.2013 =
|
133 |
-
* NEW : Belarusian language file
|
134 |
|
135 |
= V3.36 - 19.02.2013 =
|
136 |
-
* Update : European Portuguese language file
|
137 |
|
138 |
= V3.35 - 19.02.2013 =
|
139 |
* Bugfix : The error related to the cross-site scripting vulnerabilities was fixed.
|
@@ -304,6 +310,9 @@ Here is an example for German language files.
|
|
304 |
|
305 |
== Upgrade Notice ==
|
306 |
|
|
|
|
|
|
|
307 |
= V3.42 =
|
308 |
Serbian language file was updated. The bug after clicking submit, when site uses a custom port, was fixed.
|
309 |
|
1 |
=== Contact Form ===
|
2 |
Contributors: bestwebsoft
|
3 |
Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10&product_id=13
|
4 |
+
Tags: Contact Form, text, contact, form, contacts, contact form, request, contact me, feedback form, feedback, contact button, contact form plugin, contacts form plugin, attachment, send, copy, attachment, send copy
|
5 |
Requires at least: 2.9
|
6 |
Tested up to: 3.5.1
|
7 |
+
Stable tag: 3.43
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
Contact Form allows you to add a feedback form to a post or a page in an easy manner.
|
16 |
|
17 |
<a href="http://wordpress.org/extend/plugins/contact-form-plugin/faq/" target="_blank">FAQ</a>
|
18 |
<a href="http://bestwebsoft.com/plugin/contact-form/" target="_blank">Support</a>
|
19 |
|
20 |
= Features =
|
21 |
|
22 |
+
* Actions: You can choose where to send the messages - this can be any user and any email address.
|
23 |
+
* Actions: You can add a field for file attachment.
|
24 |
+
* Actions: You can add a field for sending a copy of the message to the user who fills out the contact form. A copy will be sent to the email address specified while filling the contact form.
|
25 |
+
* Label: There is a possibility to change a label when the fields are displayed.
|
26 |
|
27 |
= Translation =
|
28 |
|
29 |
* Arabic (ar) (thanks to Hammad Alshammari (ABU HATIM), www.abuhatim.net)
|
30 |
* Belarusian (be_BY) (thanks to <a href="mailto:nullbsd@gmail.com">Sakałoŭ Alaksiej</a>)
|
31 |
* Bulgarian (bg_BG) (thanks to Martin Jekov)
|
32 |
+
* European Portuguese (pt_PT) (thanks to <a href="mailto:cesarbsilva@gmail.com">César Silva</a>, www.clubetelemoveis.com )
|
33 |
* Brazilian Portuguese (pt_BR) (thanks to <a href="mailto:brenojac@gmail.com">Breno Jacinto</a>, www.iconis.org.br)
|
34 |
* Czech (cs_CZ) (thanks to Petr Zápotocký)
|
35 |
* Danish (da_DK) (thanks to Mads Hannibal)
|
50 |
* Russian (ru_RU)
|
51 |
* Serbian (sr_RS) (thanks to Georgijevic Team, www.georgijevic.info)
|
52 |
* Spanish (es_ES) (thanks to Jesús Parra)
|
53 |
+
* Swedish (sv_SE) (thanks to Martin Tonek, <a href="joakim@limewoodmedia.com">Joakim Lindskog</a>, <a href="mailto:maarten@vandendriest.com">Maarten van den Driest</a> - www.crossanddot.nl)
|
54 |
* Turkish (tr_TR) (thanks to <a href="mailto:d-bulent@hotmail.com ">Devrim Bulent Ibis</a>, www.devrimhoca.com)
|
55 |
* Ukrainian (uk) (thanks to <a href="mailto:xxxxAndyxxxx@gmail.com">Andrew Yaschuk</a>)
|
56 |
|
58 |
|
59 |
= Technical support =
|
60 |
|
61 |
+
Dear users, our plugins are available for free download. If you have any questions or recommendations regarding the functionality of our plugins (existing options, new options, current issues), please feel free to contact us. Please note that we accept requests in English only. All messages in another languages won't be accepted.
|
62 |
|
63 |
+
If you notice any bugs in the plugins, you can notify us about it and we'll investigate and fix the issue then. Your request should contain URL of the website, issues description and WordPress admin panel credentials.
|
64 |
+
Moreover we can customize the plugin according to your requirements. It's a paid service (as a rule it costs $40, but the price can vary depending on the amount of the necessary changes and their complexity). Please note that we could also include this or that feature (developed for you) in the next release and share with the other users then.
|
65 |
+
We can fix some things for free for the users who provide translation of our plugin into their native language (this should be a new translation of a certain plugin, you can check available translations on the official plugin page).
|
66 |
|
67 |
== Installation ==
|
68 |
|
69 |
+
1. Upload the `Contact Form` folder to the `/wp-content/plugins/` directory.
|
70 |
+
2. Activate the plugin using the 'Plugins' menu in your WordPress admin panel.
|
71 |
+
3. You can adjust the necessary settings using your WordPress admin panel in "Settings" > "Contact Form".
|
72 |
+
4. Create a page or a post and insert the shortcode [contact_form] into the text.
|
73 |
|
74 |
== Frequently Asked Questions ==
|
75 |
|
76 |
+
= Where can I find the settings to adjust the plugin work after activation? =
|
77 |
|
78 |
In the 'Plugin' menu you can find a link to the settings page.
|
79 |
|
80 |
+
= After the plugin installation I haven't adjusted the settings. What is the default email address used for a contact via the form? =
|
81 |
|
82 |
+
The address specified during WordPress installation will be used by the Contact Form plugin as the default one.
|
83 |
|
84 |
= How can I add Contact Form to my website? =
|
85 |
|
86 |
+
You should put the shortcode [contact_form] into your page or post.
|
87 |
|
88 |
+
= I chose a user via the plugin settings and got this error: "Please enter a valid email address. Settings are not saved." =
|
89 |
|
90 |
+
This means that you made a syntax error.
|
91 |
|
92 |
+
= How to use some other language files with the Contact Form? =
|
93 |
|
94 |
+
Here is an example for the German language files.
|
95 |
|
96 |
+
1. In order to use another language for WordPress it is necessary to switch the WP version to the required language and in the configuration wp file - `wp-config.php` in the line `define('WPLANG', '');` write `define('WPLANG', 'de_DE');`. If everything is done properly admin panel will be in German.
|
97 |
|
98 |
+
2. Make sure that there are the files `de_DE.po` and `de_DE.mo` in the plugin (in the languages folder which is in the root of the plugin).
|
99 |
|
100 |
+
3. If there are no such files you should copy the other files from this folder (for example, for Russian or Italian language) and rename them (you should write `de_DE` instead of `ru_RU` in both files).
|
101 |
|
102 |
+
4. The files can be edited with the help of the program Poedit - http://www.poedit.net/download.php - please download this program, install it, open the file with this program (required language file) and for each line in English write translation in German.
|
103 |
|
104 |
+
5. If everything is done properly all lines will be in German in the admin panel and in the front-end.
|
105 |
|
106 |
== Screenshots ==
|
107 |
|
113 |
|
114 |
== Changelog ==
|
115 |
|
116 |
+
= V3.43 - 08.04.2013 =
|
117 |
+
* Update : We updated the English text in the plugin file.
|
118 |
+
* Bugfix : We fixed the bug of displaying phone error messages when a phone number field is not display.
|
119 |
+
|
120 |
= V3.42 - 01.04.2013 =
|
121 |
+
* Update : Serbian language file is updated.
|
122 |
+
* Bugfix : The bug after clicking submit, when site uses a custom port, is fixed.
|
123 |
|
124 |
= V3.41 - 22.03.2013 =
|
125 |
* NEW : Added ability to change a label 'Send me a copy'.
|
126 |
* Bugfix : The bug of changing the message 'Action after email is sent' was fixed.
|
127 |
|
128 |
= V3.40 - 19.03.2013 =
|
129 |
+
* NEW : Hungarian language file is added to the plugin.
|
130 |
* Bugfix : The bug of displaying error messages was fixed.
|
131 |
|
132 |
= V3.39 - 04.03.2013 =
|
133 |
+
* NEW : Ukrainian language file is added to the plugin.
|
134 |
|
135 |
= V3.38 - 26.02.2013 =
|
136 |
+
* NEW : We added HTML tag for the text, that is displayed after email is sent.
|
137 |
|
138 |
= V3.37 - 21.02.2013 =
|
139 |
+
* NEW : Belarusian language file is added to the plugin.
|
140 |
|
141 |
= V3.36 - 19.02.2013 =
|
142 |
+
* Update : European Portuguese language file is updated.
|
143 |
|
144 |
= V3.35 - 19.02.2013 =
|
145 |
* Bugfix : The error related to the cross-site scripting vulnerabilities was fixed.
|
310 |
|
311 |
== Upgrade Notice ==
|
312 |
|
313 |
+
= V3.43 =
|
314 |
+
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.
|
315 |
+
|
316 |
= V3.42 =
|
317 |
Serbian language file was updated. The bug after clicking submit, when site uses a custom port, was fixed.
|
318 |
|
screenshot-1.jpg
CHANGED
Binary file
|
screenshot-2.jpg
CHANGED
Binary file
|
screenshot-3.jpg
CHANGED
Binary file
|
screenshot-4.jpg
CHANGED
Binary file
|