Version Description
- 05.08.2013 =
- Update : The Brazilian Portuguese language file is updated.
- Update : We updated all functionality for wordpress 3.6.
- Bugfix : We fixed the email validation bug.
- Update : We removed displaying of additional info in the copy of email to the sender.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Contact Form by BestWebSoft |
Version | 3.51 |
Comparing to | |
See all releases |
Code changes from version 3.50 to 3.51
- contact_form.php +21 -16
- js/script.js +60 -60
- js/script_wp_before_3.5.js +126 -0
- languages/contact_form-de_DE.mo +0 -0
- languages/contact_form-de_DE.po +2 -2
- languages/contact_form-pt_BR.mo +0 -0
- languages/contact_form-pt_BR.po +212 -194
- languages/contact_form-sv_SE.po +0 -0
- readme.txt +11 -2
- screenshot-2.jpg +0 -0
- screenshot-4.jpg +0 -0
- screenshot-6.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 |
*/
|
@@ -202,7 +202,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
202 |
( isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ) ) ) {
|
203 |
if ( isset( $_REQUEST['bwsmn_form_email'] ) ) {
|
204 |
$bwsmn_form_email = trim( $_REQUEST['bwsmn_form_email'] );
|
205 |
-
if( $bwsmn_form_email == "" || !preg_match( "/^((?:[a-z0-
|
206 |
$error = __( "Please enter a valid email address.", 'contact_form' );
|
207 |
} else {
|
208 |
$email = $bwsmn_form_email;
|
@@ -715,13 +715,13 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
715 |
}
|
716 |
}
|
717 |
else {
|
718 |
-
if( $cntctfrm_options_submit['cntctfrm_custom_email'] == "" || !preg_match( "/^((?:[a-z0-
|
719 |
$error .= __( "Please enter a valid email address in the 'FROM' field. Settings are not saved.", 'contact_form' );
|
720 |
}
|
721 |
}
|
722 |
if ( 'custom' == $cntctfrm_options_submit['cntctfrm_from_email'] ) {
|
723 |
if( $cntctfrm_options_submit['cntctfrm_custom_from_email'] == ""
|
724 |
-
&& !preg_match( "/^((?:[a-z0-
|
725 |
$error .= __( "Please enter a valid email address in the 'FROM' field. Settings are not saved.", 'contact_form' );
|
726 |
}
|
727 |
}
|
@@ -918,7 +918,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
918 |
<input type="text" name="cntctfrm_captcha_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_captcha_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the Captcha field", 'contact_form' ); ?></span><br />
|
919 |
<input type="text" name="cntctfrm_form_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_form_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the whole form", 'contact_form' ); ?></span><br />
|
920 |
</div>
|
921 |
-
<span class="cntctfrm_info"><?php _e( "Use shortcode", 'contact_form' ); echo " [bestwebsoft_contact_form lang=en] " . __( "or", 'contact_form' ) . " [bestwebsoft_contact_form] "; _e( "for this language", 'contact_form' ); ?></span>
|
922 |
</div>
|
923 |
<?php if( ! empty( $cntctfrm_options['cntctfrm_language'] ) ){
|
924 |
foreach( $cntctfrm_options['cntctfrm_language'] as $val ) { ?>
|
@@ -947,7 +947,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
947 |
<input type="text" name="cntctfrm_captcha_error[<?php echo $val; ?>]" value="<?php if( isset( $cntctfrm_options['cntctfrm_captcha_error'][$val] ) ) echo $cntctfrm_options['cntctfrm_captcha_error'][$val]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the Captcha field", 'contact_form' ); ?></span><br />
|
948 |
<input type="text" name="cntctfrm_form_error[<?php echo $val; ?>]" value="<?php if( isset( $cntctfrm_options['cntctfrm_form_error'][$val] ) ) echo $cntctfrm_options['cntctfrm_form_error'][$val]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the whole form", 'contact_form' ); ?></span><br />
|
949 |
</div>
|
950 |
-
<span class="cntctfrm_info"><?php _e( "Use shortcode", 'contact_form' ); echo " [bestwebsoft_contact_form lang=".$val."] "; _e( "for this language", 'contact_form' ); ?></span>
|
951 |
</div>
|
952 |
<?php }
|
953 |
} ?>
|
@@ -1521,7 +1521,7 @@ if( ! function_exists( 'cntctfrm_check_form' ) ) {
|
|
1521 |
unset( $error_message['error_name'] );
|
1522 |
if( $cntctfrm_options['cntctfrm_display_address_field'] == 1 && $cntctfrm_options['cntctfrm_required_address_field'] == 1 && "" != $address )
|
1523 |
unset( $error_message['error_address'] );
|
1524 |
-
if( $cntctfrm_options['cntctfrm_required_email_field'] == 1 && "" != $email && preg_match( "/^(?:[a-z0-
|
1525 |
unset( $error_message['error_email'] );
|
1526 |
if( $cntctfrm_options['cntctfrm_required_subject_field'] == 1 && "" != $subject )
|
1527 |
unset( $error_message['error_subject'] );
|
@@ -1712,11 +1712,11 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
|
|
1712 |
<tr>
|
1713 |
<td><br /></td><td><br /></td>
|
1714 |
</tr>
|
1715 |
-
'
|
1716 |
-
|
1717 |
-
|
1718 |
-
</html>
|
1719 |
-
|
1720 |
if ( $cntctfrm_options['cntctfrm_mail_method'] == 'wp-mail' ) {
|
1721 |
// To send HTML mail, the Content-type header must be set
|
1722 |
$headers = 'MIME-Version: 1.0' . "\n";
|
@@ -1732,7 +1732,7 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
|
|
1732 |
}
|
1733 |
|
1734 |
if( isset( $_POST['cntctfrm_contact_send_copy'] ) && $_POST['cntctfrm_contact_send_copy'] == 1 )
|
1735 |
-
wp_mail( $email, $subject, $
|
1736 |
|
1737 |
// Mail it
|
1738 |
return wp_mail( $to, $subject, $message_text, $headers, $attachments );
|
@@ -1783,7 +1783,7 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
|
|
1783 |
$headers .= 'From: '.stripslashes( $cntctfrm_options['cntctfrm_from_field'] ).' <'.$email. '>' . "\n";
|
1784 |
}
|
1785 |
if ( isset( $_POST['cntctfrm_contact_send_copy'] ) && $_POST['cntctfrm_contact_send_copy'] == 1 )
|
1786 |
-
@mail( $email, $subject, $
|
1787 |
|
1788 |
return @mail( $to, $subject , $message_text, $headers);
|
1789 |
}
|
@@ -1850,13 +1850,18 @@ if ( ! function_exists ( 'cntctfrm_plugin_init' ) ) {
|
|
1850 |
}
|
1851 |
} // end function cntctfrm_plugin_init
|
1852 |
|
1853 |
-
|
1854 |
if ( ! function_exists ( 'cntctfrm_admin_head' ) ) {
|
1855 |
function cntctfrm_admin_head() {
|
|
|
|
|
1856 |
wp_enqueue_style( 'cntctfrmStylesheet', plugins_url( 'css/style.css', __FILE__ ) );
|
1857 |
|
1858 |
if ( isset( $_REQUEST['page'] ) && ( $_REQUEST['page'] == 'contact_form.php' || $_REQUEST['page'] == 'contact_form_pro_extra.php' ) ) {
|
1859 |
-
|
|
|
|
|
|
|
|
|
1860 |
echo '<script type="text/javascript">var confirm_text = "'.__('Are you sure that you want to delete this language data?', 'contact_form').'"</script>';
|
1861 |
}
|
1862 |
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: Plugin for Contact Form.
|
6 |
Author: BestWebSoft
|
7 |
+
Version: 3.51
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
202 |
( isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) && check_admin_referer( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ) ) ) {
|
203 |
if ( isset( $_REQUEST['bwsmn_form_email'] ) ) {
|
204 |
$bwsmn_form_email = trim( $_REQUEST['bwsmn_form_email'] );
|
205 |
+
if( $bwsmn_form_email == "" || !preg_match( "/^((?:[a-z0-9_']+(?:[a-z0-9\-_\.']+)?@[a-z0-9]+(?:[a-z0-9\-\.]+)?\.[a-z]{2,5})[, ]*)+$/i", $bwsmn_form_email ) ) {
|
206 |
$error = __( "Please enter a valid email address.", 'contact_form' );
|
207 |
} else {
|
208 |
$email = $bwsmn_form_email;
|
715 |
}
|
716 |
}
|
717 |
else {
|
718 |
+
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'] ) ) ){
|
719 |
$error .= __( "Please enter a valid email address in the 'FROM' field. Settings are not saved.", 'contact_form' );
|
720 |
}
|
721 |
}
|
722 |
if ( 'custom' == $cntctfrm_options_submit['cntctfrm_from_email'] ) {
|
723 |
if( $cntctfrm_options_submit['cntctfrm_custom_from_email'] == ""
|
724 |
+
&& !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_from_email'] ) ) ) {
|
725 |
$error .= __( "Please enter a valid email address in the 'FROM' field. Settings are not saved.", 'contact_form' );
|
726 |
}
|
727 |
}
|
918 |
<input type="text" name="cntctfrm_captcha_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_captcha_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the Captcha field", 'contact_form' ); ?></span><br />
|
919 |
<input type="text" name="cntctfrm_form_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_form_error']['en']; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the whole form", 'contact_form' ); ?></span><br />
|
920 |
</div>
|
921 |
+
<span class="cntctfrm_info" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact_form' ); echo " [bestwebsoft_contact_form lang=en] " . __( "or", 'contact_form' ) . " [bestwebsoft_contact_form] "; _e( "for this language", 'contact_form' ); ?></span>
|
922 |
</div>
|
923 |
<?php if( ! empty( $cntctfrm_options['cntctfrm_language'] ) ){
|
924 |
foreach( $cntctfrm_options['cntctfrm_language'] as $val ) { ?>
|
947 |
<input type="text" name="cntctfrm_captcha_error[<?php echo $val; ?>]" value="<?php if( isset( $cntctfrm_options['cntctfrm_captcha_error'][$val] ) ) echo $cntctfrm_options['cntctfrm_captcha_error'][$val]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the Captcha field", 'contact_form' ); ?></span><br />
|
948 |
<input type="text" name="cntctfrm_form_error[<?php echo $val; ?>]" value="<?php if( isset( $cntctfrm_options['cntctfrm_form_error'][$val] ) ) echo $cntctfrm_options['cntctfrm_form_error'][$val]; ?>" /> <span class="cntctfrm_info"><?php _e( "Error message for the whole form", 'contact_form' ); ?></span><br />
|
949 |
</div>
|
950 |
+
<span class="cntctfrm_info" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact_form' ); echo " [bestwebsoft_contact_form lang=".$val."] "; _e( "for this language", 'contact_form' ); ?></span>
|
951 |
</div>
|
952 |
<?php }
|
953 |
} ?>
|
1521 |
unset( $error_message['error_name'] );
|
1522 |
if( $cntctfrm_options['cntctfrm_display_address_field'] == 1 && $cntctfrm_options['cntctfrm_required_address_field'] == 1 && "" != $address )
|
1523 |
unset( $error_message['error_address'] );
|
1524 |
+
if( $cntctfrm_options['cntctfrm_required_email_field'] == 1 && "" != $email && preg_match( "/^(?:[a-z0-9_']+(?:[a-z0-9\-_\.']+)?@[a-z0-9]+(?:[a-z0-9\-\.]+)?\.[a-z]{2,5})$/i", trim( stripslashes( $email ) ) ) )
|
1525 |
unset( $error_message['error_email'] );
|
1526 |
if( $cntctfrm_options['cntctfrm_required_subject_field'] == 1 && "" != $subject )
|
1527 |
unset( $error_message['error_subject'] );
|
1712 |
<tr>
|
1713 |
<td><br /></td><td><br /></td>
|
1714 |
</tr>
|
1715 |
+
';
|
1716 |
+
$message_text_for_user = $message_text . '</table></body></html>';
|
1717 |
+
|
1718 |
+
$message_text .= $user_info_string . '</table></body></html>';
|
1719 |
+
|
1720 |
if ( $cntctfrm_options['cntctfrm_mail_method'] == 'wp-mail' ) {
|
1721 |
// To send HTML mail, the Content-type header must be set
|
1722 |
$headers = 'MIME-Version: 1.0' . "\n";
|
1732 |
}
|
1733 |
|
1734 |
if( isset( $_POST['cntctfrm_contact_send_copy'] ) && $_POST['cntctfrm_contact_send_copy'] == 1 )
|
1735 |
+
wp_mail( $email, $subject, $message_text_for_user, $headers, $attachments );
|
1736 |
|
1737 |
// Mail it
|
1738 |
return wp_mail( $to, $subject, $message_text, $headers, $attachments );
|
1783 |
$headers .= 'From: '.stripslashes( $cntctfrm_options['cntctfrm_from_field'] ).' <'.$email. '>' . "\n";
|
1784 |
}
|
1785 |
if ( isset( $_POST['cntctfrm_contact_send_copy'] ) && $_POST['cntctfrm_contact_send_copy'] == 1 )
|
1786 |
+
@mail( $email, $subject, $message_text_for_user, $headers );
|
1787 |
|
1788 |
return @mail( $to, $subject , $message_text, $headers);
|
1789 |
}
|
1850 |
}
|
1851 |
} // end function cntctfrm_plugin_init
|
1852 |
|
|
|
1853 |
if ( ! function_exists ( 'cntctfrm_admin_head' ) ) {
|
1854 |
function cntctfrm_admin_head() {
|
1855 |
+
global $wp_version;
|
1856 |
+
|
1857 |
wp_enqueue_style( 'cntctfrmStylesheet', plugins_url( 'css/style.css', __FILE__ ) );
|
1858 |
|
1859 |
if ( isset( $_REQUEST['page'] ) && ( $_REQUEST['page'] == 'contact_form.php' || $_REQUEST['page'] == 'contact_form_pro_extra.php' ) ) {
|
1860 |
+
if ( $wp_version < 3.5 ) {
|
1861 |
+
wp_enqueue_script( 'cntctfrmScript', plugins_url( 'js/script_wp_before_3.5.js', __FILE__ ) );
|
1862 |
+
} else {
|
1863 |
+
wp_enqueue_script( 'cntctfrmprScript', plugins_url( 'js/script.js', __FILE__ ) );
|
1864 |
+
}
|
1865 |
echo '<script type="text/javascript">var confirm_text = "'.__('Are you sure that you want to delete this language data?', 'contact_form').'"</script>';
|
1866 |
}
|
1867 |
|
js/script.js
CHANGED
@@ -54,68 +54,9 @@
|
|
54 |
alert( error + request.status );
|
55 |
}
|
56 |
});
|
57 |
-
});
|
58 |
-
$('.cntctfrm_change_label_block .cntctfrm_label_language_tab').live('click', function(){
|
59 |
-
$('.cntctfrm_label_language_tab').each(function(){
|
60 |
-
$(this).removeClass('cntctfrm_active');
|
61 |
-
});
|
62 |
-
var index = $('.cntctfrm_change_label_block .cntctfrm_label_language_tab').index($(this));
|
63 |
-
$(this).addClass('cntctfrm_active');
|
64 |
-
var blocks = $('.cntctfrm_action_after_send_block .cntctfrm_label_language_tab');
|
65 |
-
$(blocks[index]).addClass('cntctfrm_active');
|
66 |
-
$('.cntctfrm_language_tab').each(function(){
|
67 |
-
$(this).addClass('hidden');
|
68 |
-
});
|
69 |
-
$('.'+this.id.replace('label', 'tab')).removeClass('hidden');
|
70 |
-
});
|
71 |
-
$('.cntctfrm_action_after_send_block .cntctfrm_label_language_tab').live('click', function(){
|
72 |
-
$('.cntctfrm_label_language_tab').each(function(){
|
73 |
-
$(this).removeClass('cntctfrm_active');
|
74 |
-
});
|
75 |
-
var index = $('.cntctfrm_action_after_send_block .cntctfrm_label_language_tab').index($(this));
|
76 |
-
$(this).addClass('cntctfrm_active');
|
77 |
-
var blocks = $('.cntctfrm_change_label_block .cntctfrm_label_language_tab')
|
78 |
-
$(blocks[index]).addClass('cntctfrm_active');
|
79 |
-
$('.cntctfrm_language_tab').each(function(){
|
80 |
-
$(this).addClass('hidden');
|
81 |
-
});
|
82 |
-
console.log(this.id.replace('text', 'tab'), index);
|
83 |
-
$('.'+this.id.replace('text', 'tab')).removeClass('hidden');
|
84 |
-
});
|
85 |
-
$('.cntctfrm_delete').live('click', function( event ){
|
86 |
-
event.stopPropagation();
|
87 |
-
if ( confirm( confirm_text ) ) {
|
88 |
-
var lang = $(this).attr('rel');
|
89 |
-
$.ajax({
|
90 |
-
url: '../wp-admin/admin-ajax.php',//update_url,
|
91 |
-
type: "POST",
|
92 |
-
data: "action=cntctfrm_remove_language&lang="+lang,
|
93 |
-
success: function(result) {
|
94 |
-
$('.cntctfrm_active, .cntctfrm_tab_'+lang).each(function(){
|
95 |
-
$(this).remove();
|
96 |
-
});
|
97 |
-
$('.cntctfrm_change_label_block .cntctfrm_label_language_tab').first().addClass('cntctfrm_active');
|
98 |
-
$('.cntctfrm_action_after_send_block .cntctfrm_label_language_tab').first().addClass('cntctfrm_active');
|
99 |
-
$('.cntctfrm_change_label_block .cntctfrm_language_tab').first().removeClass('hidden');
|
100 |
-
$('.cntctfrm_action_after_send_block .cntctfrm_language_tab').first().removeClass('hidden');
|
101 |
-
},
|
102 |
-
error: function( request, status, error ) {
|
103 |
-
alert( error + request.status );
|
104 |
-
}
|
105 |
-
});
|
106 |
-
}
|
107 |
-
});
|
108 |
$('.cntctfrm_language_tab_block').css('display', 'none');
|
109 |
$('.cntctfrm_language_tab_block_mini').css('display', 'block');
|
110 |
-
$('.cntctfrm_language_tab_block_mini').on( 'click', function() {
|
111 |
-
if( $('.cntctfrm_language_tab_block').css('display') == 'none' ) {
|
112 |
-
$('.cntctfrm_language_tab_block').css('display', 'block');
|
113 |
-
$('.cntctfrm_language_tab_block_mini').css('background-position', '1px -3px');
|
114 |
-
}else{
|
115 |
-
$('.cntctfrm_language_tab_block').css('display', 'none');
|
116 |
-
$('.cntctfrm_language_tab_block_mini').css('background-position', '');
|
117 |
-
}
|
118 |
-
});
|
119 |
$('.cntctfrmpr_help_box').mouseover(function(){
|
120 |
$(this).children().css('display', 'block');
|
121 |
});
|
@@ -123,4 +64,63 @@
|
|
123 |
$(this).children().css('display', 'none');
|
124 |
});
|
125 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
})(jQuery);
|
54 |
alert( error + request.status );
|
55 |
}
|
56 |
});
|
57 |
+
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
$('.cntctfrm_language_tab_block').css('display', 'none');
|
59 |
$('.cntctfrm_language_tab_block_mini').css('display', 'block');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
$('.cntctfrmpr_help_box').mouseover(function(){
|
61 |
$(this).children().css('display', 'block');
|
62 |
});
|
64 |
$(this).children().css('display', 'none');
|
65 |
});
|
66 |
});
|
67 |
+
$(document).on("click", ".cntctfrm_language_tab_block_mini", function(){
|
68 |
+
if( $('.cntctfrm_language_tab_block').css('display') == 'none' ) {
|
69 |
+
$('.cntctfrm_language_tab_block').css('display', 'block');
|
70 |
+
$('.cntctfrm_language_tab_block_mini').css('background-position', '1px -3px');
|
71 |
+
}else{
|
72 |
+
$('.cntctfrm_language_tab_block').css('display', 'none');
|
73 |
+
$('.cntctfrm_language_tab_block_mini').css('background-position', '');
|
74 |
+
}
|
75 |
+
});
|
76 |
+
$(document).on("click", ".cntctfrm_change_label_block .cntctfrm_label_language_tab", function(){
|
77 |
+
$('.cntctfrm_label_language_tab').each(function(){
|
78 |
+
$(this).removeClass('cntctfrm_active');
|
79 |
+
});
|
80 |
+
var index = $('.cntctfrm_change_label_block .cntctfrm_label_language_tab').index($(this));
|
81 |
+
$(this).addClass('cntctfrm_active');
|
82 |
+
var blocks = $('.cntctfrm_action_after_send_block .cntctfrm_label_language_tab');
|
83 |
+
$(blocks[index]).addClass('cntctfrm_active');
|
84 |
+
$('.cntctfrm_language_tab').each(function(){
|
85 |
+
$(this).addClass('hidden');
|
86 |
+
});
|
87 |
+
$('.'+this.id.replace('label', 'tab')).removeClass('hidden');
|
88 |
+
});
|
89 |
+
$(document).on("click", ".cntctfrm_action_after_send_block .cntctfrm_label_language_tab", function(){
|
90 |
+
$('.cntctfrm_label_language_tab').each(function(){
|
91 |
+
$(this).removeClass('cntctfrm_active');
|
92 |
+
});
|
93 |
+
var index = $('.cntctfrm_action_after_send_block .cntctfrm_label_language_tab').index($(this));
|
94 |
+
$(this).addClass('cntctfrm_active');
|
95 |
+
var blocks = $('.cntctfrm_change_label_block .cntctfrm_label_language_tab')
|
96 |
+
$(blocks[index]).addClass('cntctfrm_active');
|
97 |
+
$('.cntctfrm_language_tab').each(function(){
|
98 |
+
$(this).addClass('hidden');
|
99 |
+
});
|
100 |
+
console.log(this.id.replace('text', 'tab'), index);
|
101 |
+
$('.'+this.id.replace('text', 'tab')).removeClass('hidden');
|
102 |
+
});
|
103 |
+
$(document).on("click", ".cntctfrm_delete", function( event ){
|
104 |
+
event.stopPropagation();
|
105 |
+
if ( confirm( confirm_text ) ) {
|
106 |
+
var lang = $(this).attr('rel');
|
107 |
+
$.ajax({
|
108 |
+
url: '../wp-admin/admin-ajax.php',//update_url,
|
109 |
+
type: "POST",
|
110 |
+
data: "action=cntctfrm_remove_language&lang="+lang,
|
111 |
+
success: function(result) {
|
112 |
+
$('.cntctfrm_active, .cntctfrm_tab_'+lang).each(function(){
|
113 |
+
$(this).remove();
|
114 |
+
});
|
115 |
+
$('.cntctfrm_change_label_block .cntctfrm_label_language_tab').first().addClass('cntctfrm_active');
|
116 |
+
$('.cntctfrm_action_after_send_block .cntctfrm_label_language_tab').first().addClass('cntctfrm_active');
|
117 |
+
$('.cntctfrm_change_label_block .cntctfrm_language_tab').first().removeClass('hidden');
|
118 |
+
$('.cntctfrm_action_after_send_block .cntctfrm_language_tab').first().removeClass('hidden');
|
119 |
+
},
|
120 |
+
error: function( request, status, error ) {
|
121 |
+
alert( error + request.status );
|
122 |
+
}
|
123 |
+
});
|
124 |
+
}
|
125 |
+
});
|
126 |
})(jQuery);
|
js/script_wp_before_3.5.js
ADDED
@@ -0,0 +1,126 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
(function($){
|
2 |
+
$(document).ready(function(){
|
3 |
+
$('#cntctfrm_additions_options').change( function() {
|
4 |
+
if($(this).is(':checked') )
|
5 |
+
$('.cntctfrm_additions_block').removeClass('cntctfrm_hidden');
|
6 |
+
else
|
7 |
+
$('.cntctfrm_additions_block').addClass('cntctfrm_hidden');
|
8 |
+
});
|
9 |
+
$('#cntctfrm_change_label').change( function() {
|
10 |
+
if($(this).is(':checked') )
|
11 |
+
$('.cntctfrm_change_label_block').removeClass('cntctfrm_hidden');
|
12 |
+
else
|
13 |
+
$('.cntctfrm_change_label_block').addClass('cntctfrm_hidden');
|
14 |
+
});
|
15 |
+
$('#cntctfrm_display_add_info').change( function() {
|
16 |
+
if($(this).is(':checked') )
|
17 |
+
$('.cntctfrm_display_add_info_block').removeClass('cntctfrm_hidden');
|
18 |
+
else
|
19 |
+
$('.cntctfrm_display_add_info_block').addClass('cntctfrm_hidden');
|
20 |
+
});
|
21 |
+
$('#cntctfrm_add_language_button').click(function(){
|
22 |
+
$.ajax({
|
23 |
+
url: '../wp-admin/admin-ajax.php',//update_url,
|
24 |
+
type: "POST",
|
25 |
+
data: "action=cntctfrm_add_language&lang="+$('#cntctfrm_languages').val(),
|
26 |
+
success: function(result) {
|
27 |
+
var lang_val = $('#cntctfrm_languages').val();
|
28 |
+
$('.cntctfrm_change_label_block .cntctfrm_language_tab, .cntctfrm_action_after_send_block .cntctfrm_language_tab').each(function(){
|
29 |
+
$(this).addClass('hidden');
|
30 |
+
});
|
31 |
+
$('.cntctfrm_change_label_block .cntctfrm_language_tab').first().clone().appendTo(".cntctfrm_change_label_block").removeClass('hidden').removeClass('cntctfrm_tab_en').addClass('cntctfrm_tab_'+lang_val);
|
32 |
+
$('.cntctfrm_action_after_send_block .cntctfrm_language_tab').first().clone().insertBefore("#cntctfrm_before").removeClass('hidden').removeClass('cntctfrm_tab_en').addClass('cntctfrm_tab_'+lang_val);
|
33 |
+
$('.cntctfrm_change_label_block .cntctfrm_language_tab').last().find('input').each(function(){
|
34 |
+
$(this).val('');
|
35 |
+
$(this).attr('name', $(this).attr('name').replace('[en]', '['+lang_val+']'));
|
36 |
+
});
|
37 |
+
var text = $('.cntctfrm_change_label_block .cntctfrm_language_tab').last().find('.cntctfrm_info').last().text();
|
38 |
+
text = text.replace('lang=en', 'lang='+lang_val);
|
39 |
+
text = text.replace(' or [contact_form]', '');
|
40 |
+
$('.cntctfrm_change_label_block .cntctfrm_language_tab').last().find('.cntctfrm_info').last().text(text);
|
41 |
+
$('.cntctfrm_action_after_send_block .cntctfrm_language_tab').last().find('input').val('').attr('name', $('.cntctfrm_action_after_send_block .cntctfrm_language_tab').last().find('input').attr('name').replace('[en]', '['+lang_val+']'));
|
42 |
+
text = $('.cntctfrm_change_label_block .cntctfrm_language_tab').last().find('.cntctfrm_info').last().text();
|
43 |
+
text = text.replace('lang=en', 'lang='+lang_val);
|
44 |
+
text = text.replace(' or [contact_form]', '');
|
45 |
+
$('.cntctfrm_action_after_send_block .cntctfrm_language_tab').last().find('.cntctfrm_info').last().text(text);
|
46 |
+
$('.cntctfrm_change_label_block .cntctfrm_label_language_tab, .cntctfrm_action_after_send_block .cntctfrm_label_language_tab').each(function(){
|
47 |
+
$(this).removeClass('cntctfrm_active');
|
48 |
+
});
|
49 |
+
$('.cntctfrm_change_label_block .clear').prev().clone().attr('id','cntctfrm_label_'+lang_val).addClass('cntctfrm_active').html($('#cntctfrm_languages option:selected').text()+' <span class="cntctfrm_delete" rel="'+lang_val+'">X</span>').insertBefore('.cntctfrm_change_label_block .clear');
|
50 |
+
$('.cntctfrm_action_after_send_block .clear').prev().clone().attr('id','cntctfrm_label_'+lang_val).addClass('cntctfrm_active').html($('#cntctfrm_languages option:selected').text()+' <span class="cntctfrm_delete" rel="'+lang_val+'">X</span>').insertBefore('.cntctfrm_action_after_send_block .clear');
|
51 |
+
$('#cntctfrm_languages option:selected').remove();
|
52 |
+
},
|
53 |
+
error: function( request, status, error ) {
|
54 |
+
alert( error + request.status );
|
55 |
+
}
|
56 |
+
});
|
57 |
+
});
|
58 |
+
$('.cntctfrm_change_label_block .cntctfrm_label_language_tab').live('click', function(){
|
59 |
+
$('.cntctfrm_label_language_tab').each(function(){
|
60 |
+
$(this).removeClass('cntctfrm_active');
|
61 |
+
});
|
62 |
+
var index = $('.cntctfrm_change_label_block .cntctfrm_label_language_tab').index($(this));
|
63 |
+
$(this).addClass('cntctfrm_active');
|
64 |
+
var blocks = $('.cntctfrm_action_after_send_block .cntctfrm_label_language_tab');
|
65 |
+
$(blocks[index]).addClass('cntctfrm_active');
|
66 |
+
$('.cntctfrm_language_tab').each(function(){
|
67 |
+
$(this).addClass('hidden');
|
68 |
+
});
|
69 |
+
$('.'+this.id.replace('label', 'tab')).removeClass('hidden');
|
70 |
+
});
|
71 |
+
$('.cntctfrm_action_after_send_block .cntctfrm_label_language_tab').live('click', function(){
|
72 |
+
$('.cntctfrm_label_language_tab').each(function(){
|
73 |
+
$(this).removeClass('cntctfrm_active');
|
74 |
+
});
|
75 |
+
var index = $('.cntctfrm_action_after_send_block .cntctfrm_label_language_tab').index($(this));
|
76 |
+
$(this).addClass('cntctfrm_active');
|
77 |
+
var blocks = $('.cntctfrm_change_label_block .cntctfrm_label_language_tab')
|
78 |
+
$(blocks[index]).addClass('cntctfrm_active');
|
79 |
+
$('.cntctfrm_language_tab').each(function(){
|
80 |
+
$(this).addClass('hidden');
|
81 |
+
});
|
82 |
+
console.log(this.id.replace('text', 'tab'), index);
|
83 |
+
$('.'+this.id.replace('text', 'tab')).removeClass('hidden');
|
84 |
+
});
|
85 |
+
$('.cntctfrm_delete').live('click', function( event ){
|
86 |
+
event.stopPropagation();
|
87 |
+
if ( confirm( confirm_text ) ) {
|
88 |
+
var lang = $(this).attr('rel');
|
89 |
+
$.ajax({
|
90 |
+
url: '../wp-admin/admin-ajax.php',//update_url,
|
91 |
+
type: "POST",
|
92 |
+
data: "action=cntctfrm_remove_language&lang="+lang,
|
93 |
+
success: function(result) {
|
94 |
+
$('.cntctfrm_active, .cntctfrm_tab_'+lang).each(function(){
|
95 |
+
$(this).remove();
|
96 |
+
});
|
97 |
+
$('.cntctfrm_change_label_block .cntctfrm_label_language_tab').first().addClass('cntctfrm_active');
|
98 |
+
$('.cntctfrm_action_after_send_block .cntctfrm_label_language_tab').first().addClass('cntctfrm_active');
|
99 |
+
$('.cntctfrm_change_label_block .cntctfrm_language_tab').first().removeClass('hidden');
|
100 |
+
$('.cntctfrm_action_after_send_block .cntctfrm_language_tab').first().removeClass('hidden');
|
101 |
+
},
|
102 |
+
error: function( request, status, error ) {
|
103 |
+
alert( error + request.status );
|
104 |
+
}
|
105 |
+
});
|
106 |
+
}
|
107 |
+
});
|
108 |
+
$('.cntctfrm_language_tab_block').css('display', 'none');
|
109 |
+
$('.cntctfrm_language_tab_block_mini').css('display', 'block');
|
110 |
+
$('.cntctfrm_language_tab_block_mini').live( 'click', function() {
|
111 |
+
if( $('.cntctfrm_language_tab_block').css('display') == 'none' ) {
|
112 |
+
$('.cntctfrm_language_tab_block').css('display', 'block');
|
113 |
+
$('.cntctfrm_language_tab_block_mini').css('background-position', '1px -3px');
|
114 |
+
}else{
|
115 |
+
$('.cntctfrm_language_tab_block').css('display', 'none');
|
116 |
+
$('.cntctfrm_language_tab_block_mini').css('background-position', '');
|
117 |
+
}
|
118 |
+
});
|
119 |
+
$('.cntctfrmpr_help_box').mouseover(function(){
|
120 |
+
$(this).children().css('display', 'block');
|
121 |
+
});
|
122 |
+
$('.cntctfrmpr_help_box').mouseout(function(){
|
123 |
+
$(this).children().css('display', 'none');
|
124 |
+
});
|
125 |
+
});
|
126 |
+
})(jQuery);
|
languages/contact_form-de_DE.mo
CHANGED
Binary file
|
languages/contact_form-de_DE.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2013-07-29 17:31+0300\n"
|
6 |
-
"PO-Revision-Date: 2013-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -572,7 +572,7 @@ msgstr ""
|
|
572 |
#: contact_form.php:1036
|
573 |
#: contact_form.php:1688
|
574 |
msgid "Name"
|
575 |
-
msgstr "
|
576 |
|
577 |
#: contact_form.php:852
|
578 |
#, fuzzy
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2013-07-29 17:31+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-08-05 13:32+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
|
9 |
"MIME-Version: 1.0\n"
|
572 |
#: contact_form.php:1036
|
573 |
#: contact_form.php:1688
|
574 |
msgid "Name"
|
575 |
+
msgstr "Name"
|
576 |
|
577 |
#: contact_form.php:852
|
578 |
#, fuzzy
|
languages/contact_form-pt_BR.mo
CHANGED
Binary file
|
languages/contact_form-pt_BR.po
CHANGED
@@ -2,20 +2,20 @@ 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: Breno Jacinto, DJIO | Dionizio Bonfim Bach <brenojac@gmail.com, wordpress@djio.com.br>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
12 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
"X-Generator: Poedit 1.5.7\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Textdomain-Support: yes\n"
|
18 |
-
"Language: pt_BR\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
# @ contact_form
|
@@ -189,7 +189,7 @@ msgstr "Obrigado por nos contatar"
|
|
189 |
|
190 |
# @ contact_form
|
191 |
#: contact_form.php:242
|
192 |
-
#: contact_form.php:
|
193 |
msgid "Sorry, email message could not be delivered."
|
194 |
msgstr "Desculpe, seu e-mail não pode ser entregue."
|
195 |
|
@@ -218,9 +218,9 @@ msgstr "Leia Mais"
|
|
218 |
#: contact_form.php:255
|
219 |
#: contact_form.php:281
|
220 |
#: contact_form.php:754
|
221 |
-
#: contact_form.php:
|
222 |
-
#: contact_form.php:
|
223 |
-
#: contact_form.php:
|
224 |
msgid "Settings"
|
225 |
msgstr "Configurações"
|
226 |
|
@@ -315,71 +315,71 @@ msgstr "Configurações Extras do Formulário de Contato Pro"
|
|
315 |
|
316 |
# @ contact_form
|
317 |
#: contact_form.php:373
|
318 |
-
#: contact_form.php:
|
319 |
msgid "Contact Form Pro"
|
320 |
msgstr "Formulário de Contato Pro"
|
321 |
|
322 |
# @ contact_form
|
323 |
#: contact_form.php:412
|
324 |
-
#: contact_form.php:
|
325 |
-
#: contact_form.php:
|
326 |
msgid "Name:"
|
327 |
msgstr "Nome:"
|
328 |
|
329 |
# @ contact_form
|
330 |
#: contact_form.php:413
|
331 |
-
#: contact_form.php:
|
332 |
-
#: contact_form.php:
|
333 |
msgid "Address:"
|
334 |
msgstr "Endereço:"
|
335 |
|
336 |
# @ contact_form
|
337 |
#: contact_form.php:414
|
338 |
-
#: contact_form.php:
|
339 |
-
#: contact_form.php:
|
340 |
msgid "Email Address:"
|
341 |
msgstr "Endereço de E-mail:"
|
342 |
|
343 |
# @ contact_form
|
344 |
#: contact_form.php:415
|
345 |
-
#: contact_form.php:
|
346 |
-
#: contact_form.php:
|
347 |
msgid "Phone number:"
|
348 |
msgstr "Número de Telefone:"
|
349 |
|
350 |
# @ contact_form
|
351 |
#: contact_form.php:416
|
352 |
-
#: contact_form.php:
|
353 |
-
#: contact_form.php:
|
354 |
msgid "Subject:"
|
355 |
msgstr "Assunto:"
|
356 |
|
357 |
# @ contact_form
|
358 |
#: contact_form.php:417
|
359 |
-
#: contact_form.php:
|
360 |
-
#: contact_form.php:
|
361 |
msgid "Message:"
|
362 |
msgstr "Mensagem:"
|
363 |
|
364 |
# @ contact_form
|
365 |
#: contact_form.php:418
|
366 |
-
#: contact_form.php:
|
367 |
-
#: contact_form.php:
|
368 |
msgid "Attachment:"
|
369 |
msgstr "Anexo:"
|
370 |
|
371 |
# @ contact_form
|
372 |
#: contact_form.php:419
|
373 |
#: contact_form.php:474
|
374 |
-
#: contact_form.php:
|
375 |
-
#: contact_form.php:
|
376 |
msgid "Send me a copy"
|
377 |
msgstr "Envie-me uma cópia"
|
378 |
|
379 |
# @ contact_form
|
380 |
#: contact_form.php:420
|
381 |
-
#: contact_form.php:
|
382 |
-
#: contact_form.php:
|
383 |
msgid "Submit"
|
384 |
msgstr "Enviar"
|
385 |
|
@@ -472,618 +472,636 @@ msgstr "As configurações foram salvas."
|
|
472 |
|
473 |
# @ contact_form
|
474 |
#: contact_form.php:755
|
475 |
-
#: contact_form.php:
|
476 |
msgid "Extra settings"
|
477 |
msgstr "Configurações extras"
|
478 |
|
479 |
# @ contact_form
|
480 |
#: contact_form.php:760
|
481 |
-
#: contact_form.php:
|
482 |
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:"
|
483 |
msgstr "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas copie e cole este código na sua postagem ou página ou widget:"
|
484 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
485 |
# @ contact_form
|
486 |
#: contact_form.php:761
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
487 |
msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
|
488 |
msgstr "Se informações nos campos abaixo estiverem vazias, então as mensagens serão enviadas para um endereço que foi especificado durante o registro."
|
489 |
|
490 |
# @ contact_form
|
491 |
-
#: contact_form.php:
|
492 |
msgid "The user's email address:"
|
493 |
msgstr "Use o email de um usuário do wordpress:"
|
494 |
|
495 |
# @ contact_form
|
496 |
-
#: contact_form.php:
|
497 |
msgid "Create a username"
|
498 |
msgstr "Selecione o nome do usuário"
|
499 |
|
500 |
# @ contact_form
|
501 |
-
#: contact_form.php:
|
502 |
msgid "Enter a username of the person who should get the messages from the contact form."
|
503 |
msgstr "Determine um nome de usuário que receberá as mensagens enviadas pelo Formulário de Contato."
|
504 |
|
505 |
# @ contact_form
|
506 |
-
#: contact_form.php:
|
507 |
msgid "Use this email address:"
|
508 |
msgstr "Use este email:"
|
509 |
|
510 |
# @ contact_form
|
511 |
-
#: contact_form.php:
|
512 |
msgid "Enter the email address you want the messages forwarded to."
|
513 |
msgstr "Configure um endereço de email que será usado para o recebimento de mensagens."
|
514 |
|
515 |
# @ contact_form
|
516 |
-
#: contact_form.php:
|
517 |
msgid "Additional options"
|
518 |
msgstr "Opções adicionais"
|
519 |
|
520 |
# @ contact_form
|
521 |
-
#: contact_form.php:
|
522 |
msgid "What to use?"
|
523 |
msgstr "O que usar?"
|
524 |
|
525 |
-
# @
|
526 |
-
#: contact_form.php:
|
527 |
msgid "Wp-mail"
|
528 |
msgstr "Wp-mail"
|
529 |
|
530 |
-
# @
|
531 |
-
#: contact_form.php:
|
532 |
msgid "You can use the wp_mail function for mailing"
|
533 |
msgstr "Você pode usar a função wp_mail para enviar emails"
|
534 |
|
535 |
-
# @
|
536 |
-
#: contact_form.php:
|
537 |
msgid "Mail"
|
538 |
msgstr "Mail"
|
539 |
|
540 |
-
# @
|
541 |
-
#: contact_form.php:
|
542 |
msgid "To send mail you can use the php mail function"
|
543 |
msgstr "Para enviar emails você pode usar a função mail() do php"
|
544 |
|
545 |
# @ contact_form
|
546 |
-
#: contact_form.php:
|
547 |
msgid "Change text of the 'FROM' field"
|
548 |
msgstr "Mude o texto do campo 'DE'"
|
549 |
|
550 |
# @ contact_form
|
551 |
-
#: contact_form.php:
|
552 |
msgid "Enter the email address in the 'From' field"
|
553 |
msgstr "Entre com o endereço de e-mail no campo 'De'"
|
554 |
|
555 |
# @ contact_form
|
556 |
-
#: contact_form.php:
|
557 |
msgid "User email"
|
558 |
msgstr "Email do usuário"
|
559 |
|
560 |
# @ contact_form
|
561 |
-
#: contact_form.php:
|
562 |
msgid "The email address of the user who fills the form will be used in the field 'From'."
|
563 |
msgstr "O endereço de email do usuário que preencher o formulário será usado no campo 'De'"
|
564 |
|
565 |
# @ contact_form
|
566 |
-
#: contact_form.php:
|
567 |
msgid "This email address will be used in the 'From' field."
|
568 |
msgstr "Este endereço de email será usado no campo 'De'"
|
569 |
|
570 |
# @ contact_form
|
571 |
-
#: contact_form.php:
|
572 |
msgid "Display fields"
|
573 |
msgstr "Mostrar campos"
|
574 |
|
575 |
# @ contact_form
|
576 |
-
#: contact_form.php:
|
577 |
-
#: contact_form.php:
|
578 |
-
#: contact_form.php:
|
579 |
-
#: contact_form.php:
|
580 |
msgid "Address"
|
581 |
msgstr "Endereço"
|
582 |
|
583 |
# @ contact_form
|
584 |
-
#: contact_form.php:
|
585 |
-
#: contact_form.php:
|
586 |
-
#: contact_form.php:
|
587 |
msgid "Phone"
|
588 |
msgstr "Telefone"
|
589 |
|
590 |
# @ contact_form
|
591 |
-
#: contact_form.php:
|
592 |
msgid "Attachment block"
|
593 |
msgstr "Bloco de anexos"
|
594 |
|
595 |
# @ contact_form
|
596 |
-
#: contact_form.php:
|
597 |
msgid "Users can attach the following file formats"
|
598 |
msgstr "Usuários pode anexar arquivos do seguinte tipo:"
|
599 |
|
600 |
# @ contact_form
|
601 |
-
#: contact_form.php:
|
602 |
msgid "Tips below the Attachment block"
|
603 |
msgstr "Dicas abaixo do bloco de Anexos"
|
604 |
|
605 |
# @ contact_form
|
606 |
-
#: contact_form.php:
|
607 |
msgid "Send me a copy block"
|
608 |
msgstr "Bloco Envie-me um cópia"
|
609 |
|
610 |
# @ contact_form
|
611 |
-
#: contact_form.php:
|
612 |
-
#: contact_form.php:
|
613 |
-
#: contact_form.php:
|
614 |
-
#: contact_form.php:
|
615 |
msgid "Captcha"
|
616 |
msgstr "Captcha"
|
617 |
|
618 |
# @ contact_form
|
619 |
-
#: contact_form.php:
|
620 |
-
#: contact_form.php:
|
621 |
-
#: contact_form.php:
|
622 |
-
#: contact_form.php:
|
623 |
msgid "(powered by bestwebsoft.com)"
|
624 |
msgstr "(produzido por bestwebsoft.com)"
|
625 |
|
626 |
# @ contact_form
|
627 |
-
#: contact_form.php:
|
628 |
msgid "Activate captcha"
|
629 |
msgstr "Ativar captcha"
|
630 |
|
631 |
# @ contact_form
|
632 |
-
#: contact_form.php:
|
633 |
msgid "Download captcha"
|
634 |
msgstr "Fazer Download do Captcha"
|
635 |
|
636 |
# @ contact_form
|
637 |
-
#: contact_form.php:
|
638 |
msgid "Required fields"
|
639 |
msgstr "Campos obrigatórios"
|
640 |
|
641 |
# @ contact_form
|
642 |
-
#: contact_form.php:
|
643 |
-
#: contact_form.php:
|
644 |
-
#: contact_form.php:
|
645 |
msgid "Name"
|
646 |
msgstr "Nome"
|
647 |
|
648 |
# @ contact_form
|
649 |
-
#: contact_form.php:
|
650 |
msgid "Email Address"
|
651 |
msgstr "Endereço de email"
|
652 |
|
653 |
# @ contact_form
|
654 |
-
#: contact_form.php:
|
655 |
-
#: contact_form.php:
|
656 |
-
#: contact_form.php:
|
657 |
msgid "Subject"
|
658 |
msgstr "Assunto"
|
659 |
|
660 |
# @ contact_form
|
661 |
-
#: contact_form.php:
|
662 |
-
#: contact_form.php:
|
663 |
-
#: contact_form.php:
|
664 |
msgid "Message"
|
665 |
msgstr "Mensagem"
|
666 |
|
667 |
# @ contact_form
|
668 |
-
#: contact_form.php:
|
669 |
msgid "Display additional info in the email"
|
670 |
msgstr "Mostre informações adicionais no email"
|
671 |
|
672 |
# @ contact_form
|
673 |
-
#: contact_form.php:
|
674 |
-
#: contact_form.php:
|
675 |
msgid "Sent from (ip address)"
|
676 |
msgstr "Enviado de (Endereço IP)"
|
677 |
|
678 |
# @ contact_form
|
679 |
-
#: contact_form.php:
|
680 |
-
#: contact_form.php:
|
681 |
msgid "Date/Time"
|
682 |
msgstr "Data / Hora"
|
683 |
|
684 |
# @ contact_form
|
685 |
-
#: contact_form.php:
|
686 |
-
#: contact_form.php:
|
687 |
msgid "Sent from (referer)"
|
688 |
msgstr "Vindo de (origem)"
|
689 |
|
690 |
# @ contact_form
|
691 |
-
#: contact_form.php:
|
692 |
-
#: contact_form.php:
|
693 |
msgid "Using (user agent)"
|
694 |
msgstr "Usando (cliente de email)"
|
695 |
|
696 |
# @ contact_form
|
697 |
-
#: contact_form.php:
|
698 |
msgid "Language settings for the field names in the form"
|
699 |
msgstr "Configurações de idioma para os nomes dos campos no formulário"
|
700 |
|
701 |
# @ contact_form
|
702 |
-
#: contact_form.php:
|
703 |
msgid "Add a language"
|
704 |
msgstr "Adicione um idioma"
|
705 |
|
706 |
# @ contact_form
|
707 |
-
#: contact_form.php:
|
708 |
msgid "Change the names of the contact form fields and error messages"
|
709 |
msgstr "Mude os nomes dos campos do formulário de contato e mensagens de erro."
|
710 |
|
711 |
# @ contact_form
|
712 |
-
#: contact_form.php:
|
713 |
-
#: contact_form.php:
|
714 |
msgid "English"
|
715 |
msgstr "Inglês"
|
716 |
|
717 |
# @ contact_form
|
718 |
-
#: contact_form.php:
|
719 |
-
#: contact_form.php:
|
720 |
msgid "Error message for the Name field"
|
721 |
msgstr "Mensagem de erro para o campo Nome"
|
722 |
|
723 |
# @ contact_form
|
724 |
-
#: contact_form.php:
|
725 |
-
#: contact_form.php:
|
726 |
msgid "Error message for the Address field"
|
727 |
msgstr "Mensagem de erro para o campo Endereço"
|
728 |
|
729 |
# @ contact_form
|
730 |
-
#: contact_form.php:
|
731 |
-
#: contact_form.php:
|
732 |
msgid "Error message for the Email field"
|
733 |
msgstr "Mensagem de erro para o campo Email"
|
734 |
|
735 |
# @ contact_form
|
736 |
-
#: contact_form.php:
|
737 |
-
#: contact_form.php:
|
738 |
msgid "Error message for the Phone field"
|
739 |
msgstr "Mensagem de erro para o campo Telefone"
|
740 |
|
741 |
# @ contact_form
|
742 |
-
#: contact_form.php:
|
743 |
-
#: contact_form.php:
|
744 |
msgid "Error message for the Subject field"
|
745 |
msgstr "Mensagem de erro para o campo Assunto"
|
746 |
|
747 |
# @ contact_form
|
748 |
-
#: contact_form.php:
|
749 |
-
#: contact_form.php:
|
750 |
msgid "Error message for the Message field"
|
751 |
msgstr "Mensagem de erro para o campo Mensagem"
|
752 |
|
753 |
# @ contact_form
|
754 |
-
#: contact_form.php:
|
755 |
-
#: contact_form.php:
|
756 |
msgid "Error message about the file type for the Attachment field"
|
757 |
msgstr "Mensagem de erro para o campo Anexo sobre o tipo de arquivo"
|
758 |
|
759 |
# @ contact_form
|
760 |
-
#: contact_form.php:
|
761 |
-
#: contact_form.php:
|
762 |
msgid "Error message while uploading a file for the Attachment field to the server"
|
763 |
msgstr "Mensagem de erro para o campo Anexo quando estiver fazendo upload para o servidor"
|
764 |
|
765 |
# @ contact_form
|
766 |
-
#: contact_form.php:
|
767 |
-
#: contact_form.php:
|
768 |
msgid "Error message while moving the file for the Attachment field"
|
769 |
msgstr "Mensagem de erro para o campo Anexo quando estiver movendo o arquivo"
|
770 |
|
771 |
# @ contact_form
|
772 |
-
#: contact_form.php:
|
773 |
-
#: contact_form.php:
|
774 |
msgid "Error message when file size limit for the Attachment field is exceeded"
|
775 |
msgstr "Mensagem de erro para o campo Anexo quando o tamanho máximo do arquivo for excedido"
|
776 |
|
777 |
# @ contact_form
|
778 |
-
#: contact_form.php:
|
779 |
-
#: contact_form.php:
|
780 |
msgid "Error message for the Captcha field"
|
781 |
msgstr "Mensagem de erro para o campo Captcha"
|
782 |
|
783 |
# @ contact_form
|
784 |
-
#: contact_form.php:
|
785 |
-
#: contact_form.php:
|
786 |
msgid "Error message for the whole form"
|
787 |
msgstr "Mensagem de erro para o formulário inteiro"
|
788 |
|
789 |
# @ contact_form
|
790 |
-
#: contact_form.php:
|
791 |
-
#: contact_form.php:
|
792 |
-
#: contact_form.php:
|
793 |
-
#: contact_form.php:
|
794 |
msgid "Use shortcode"
|
795 |
msgstr "Use shortcode (abreviações)"
|
796 |
|
797 |
# @ contact_form
|
798 |
-
#: contact_form.php:
|
799 |
-
#: contact_form.php:
|
800 |
-
#: contact_form.php:
|
801 |
-
#: contact_form.php:
|
802 |
msgid "for this language"
|
803 |
msgstr "para este idioma"
|
804 |
|
805 |
# @ contact_form
|
806 |
-
#: contact_form.php:
|
807 |
msgid "Action after email is sent"
|
808 |
msgstr "Ação após o email ser enviado"
|
809 |
|
810 |
# @ contact_form
|
811 |
-
#: contact_form.php:
|
812 |
msgid "Display text"
|
813 |
msgstr "Mostrar texto"
|
814 |
|
815 |
# @ contact_form
|
816 |
-
#: contact_form.php:
|
817 |
-
#: contact_form.php:
|
818 |
msgid "Text"
|
819 |
msgstr "Texto"
|
820 |
|
821 |
# @ contact_form
|
822 |
-
#: contact_form.php:
|
823 |
msgid "Redirect to the page"
|
824 |
msgstr "Redirecione para a página"
|
825 |
|
826 |
# @ contact_form
|
827 |
-
#: contact_form.php:
|
828 |
msgid "Url"
|
829 |
msgstr "URL"
|
830 |
|
831 |
# @ default
|
832 |
-
#: contact_form.php:
|
833 |
-
#: contact_form.php:
|
834 |
msgid "Save Changes"
|
835 |
msgstr "Salvar Mudanças"
|
836 |
|
837 |
# @ contact_form
|
838 |
-
#: contact_form.php:
|
839 |
msgid "Contact Form Pro | Extra Settings"
|
840 |
msgstr "Formulário de Contato Pro | Configurações Extras"
|
841 |
|
842 |
# @ contact_form
|
843 |
-
#: contact_form.php:
|
844 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
845 |
msgstr "Esta função está disponível na versão Pro do plugin. Para saber mais detalhes, por favor siga o link"
|
846 |
|
847 |
# @ contact_form
|
848 |
-
#: contact_form.php:
|
849 |
msgid "Errors output"
|
850 |
msgstr "Saída de erros."
|
851 |
|
852 |
# @ contact_form
|
853 |
-
#: contact_form.php:
|
854 |
msgid "Display error messages"
|
855 |
msgstr "Mostrar mensagens de erro"
|
856 |
|
857 |
# @ contact_form
|
858 |
-
#: contact_form.php:
|
859 |
msgid "Color of the input field errors."
|
860 |
msgstr "Cor do erro nos campos de formulário"
|
861 |
|
862 |
# @ contact_form
|
863 |
-
#: contact_form.php:
|
864 |
msgid "Display error messages & color of the input field errors"
|
865 |
msgstr "Mostrar mensagens de erro e cores para os campos com erro"
|
866 |
|
867 |
# @ contact_form
|
868 |
-
#: contact_form.php:
|
869 |
msgid "Add placeholder to the input blocks"
|
870 |
msgstr "Adicione reserva de espaço aos blocos de inserção"
|
871 |
|
872 |
# @ contact_form
|
873 |
-
#: contact_form.php:
|
874 |
msgid "Add tooltips"
|
875 |
msgstr "Adicionar mensagens de ajuda"
|
876 |
|
877 |
# @ contact_form
|
878 |
-
#: contact_form.php:
|
879 |
msgid "Email address"
|
880 |
msgstr "Endereço de email"
|
881 |
|
882 |
# @ contact_form
|
883 |
-
#: contact_form.php:
|
884 |
msgid "Phone Number"
|
885 |
msgstr "Telefone"
|
886 |
|
887 |
# @ contact_form
|
888 |
-
#: contact_form.php:
|
889 |
msgid "Attachment"
|
890 |
msgstr "Anexo"
|
891 |
|
892 |
# @ contact_form
|
893 |
-
#: contact_form.php:
|
894 |
msgid "Style options"
|
895 |
msgstr "Opções de estilo"
|
896 |
|
897 |
# @ contact_form
|
898 |
-
#: contact_form.php:
|
899 |
msgid "Text color"
|
900 |
msgstr "Cor do texto"
|
901 |
|
902 |
# @ contact_form
|
903 |
-
#: contact_form.php:
|
904 |
-
#: contact_form.php:
|
905 |
-
#: contact_form.php:
|
906 |
-
#: contact_form.php:
|
907 |
-
#: contact_form.php:
|
908 |
-
#: contact_form.php:
|
909 |
-
#: contact_form.php:
|
910 |
-
#: contact_form.php:
|
911 |
-
#: contact_form.php:
|
912 |
-
#: contact_form.php:
|
913 |
-
#: contact_form.php:
|
914 |
-
#: contact_form.php:
|
915 |
msgid "Default"
|
916 |
msgstr "Padrão"
|
917 |
|
918 |
# @ contact_form
|
919 |
-
#: contact_form.php:
|
920 |
msgid "Label text color"
|
921 |
msgstr "Cor do texto descritivo"
|
922 |
|
923 |
# @ contact_form
|
924 |
-
#: contact_form.php:
|
925 |
msgid "Placeholder color"
|
926 |
msgstr "Cor da reserva de espaço"
|
927 |
|
928 |
# @ contact_form
|
929 |
-
#: contact_form.php:
|
930 |
msgid "Errors color"
|
931 |
msgstr "Cor dos erros"
|
932 |
|
933 |
# @ contact_form
|
934 |
-
#: contact_form.php:
|
935 |
msgid "Error text color"
|
936 |
msgstr "Cor de texto do erro"
|
937 |
|
938 |
# @ contact_form
|
939 |
-
#: contact_form.php:
|
940 |
msgid "Background color of the input field errors"
|
941 |
msgstr "Cor de fundo do campo de formulário com erros"
|
942 |
|
943 |
# @ contact_form
|
944 |
-
#: contact_form.php:
|
945 |
msgid "Border color of the input field errors"
|
946 |
msgstr "Cor de borda do campo de formulário com erros"
|
947 |
|
948 |
# @ contact_form
|
949 |
-
#: contact_form.php:
|
950 |
msgid "Placeholder color of the input field errors"
|
951 |
msgstr "Cor de reserva de espaço do campo de formulário com erros"
|
952 |
|
953 |
# @ contact_form
|
954 |
-
#: contact_form.php:
|
955 |
msgid "Input fields"
|
956 |
msgstr "Campos do folmulário"
|
957 |
|
958 |
# @ contact_form
|
959 |
-
#: contact_form.php:
|
960 |
msgid "Input fields background color"
|
961 |
msgstr "Cor de fundo dos campos de formulário"
|
962 |
|
963 |
# @ contact_form
|
964 |
-
#: contact_form.php:
|
965 |
msgid "Text fields color"
|
966 |
msgstr "Cor dos campos de texto"
|
967 |
|
968 |
# @ contact_form
|
969 |
-
#: contact_form.php:
|
970 |
msgid "Border width in px, numbers only"
|
971 |
msgstr "Largura da borda em px, somente o número"
|
972 |
|
973 |
# @ contact_form
|
974 |
-
#: contact_form.php:
|
975 |
-
#: contact_form.php:
|
976 |
msgid "Border color"
|
977 |
msgstr "Cor da borda"
|
978 |
|
979 |
# @ contact_form
|
980 |
-
#: contact_form.php:
|
981 |
msgid "Submit button"
|
982 |
msgstr "Botão de Envio"
|
983 |
|
984 |
# @ contact_form
|
985 |
-
#: contact_form.php:
|
986 |
msgid "Width in px, numbers only"
|
987 |
msgstr "Largura em px, somente o número"
|
988 |
|
989 |
# @ contact_form
|
990 |
-
#: contact_form.php:
|
991 |
msgid "Button color"
|
992 |
msgstr "Cor do botão"
|
993 |
|
994 |
# @ contact_form
|
995 |
-
#: contact_form.php:
|
996 |
msgid "Button text color"
|
997 |
msgstr "Cor do texto do botão"
|
998 |
|
999 |
# @ contact_form
|
1000 |
-
#: contact_form.php:
|
1001 |
msgid "Contact Form Pro | Preview"
|
1002 |
msgstr "Formulário de Contato Pro | Prévia"
|
1003 |
|
1004 |
# @ contact_form
|
1005 |
-
#: contact_form.php:
|
1006 |
msgid "Show with errors"
|
1007 |
msgstr "Mostrar com erros"
|
1008 |
|
1009 |
# @ contact_form
|
1010 |
-
#: contact_form.php:1175
|
1011 |
#: contact_form.php:1177
|
|
|
1012 |
msgid "Please enter your full name..."
|
1013 |
msgstr "Informe seu nome completo..."
|
1014 |
|
1015 |
# @ contact_form
|
1016 |
-
#: contact_form.php:1188
|
1017 |
#: contact_form.php:1190
|
|
|
1018 |
msgid "Please enter your address..."
|
1019 |
msgstr "Informe seu endereço…"
|
1020 |
|
1021 |
# @ contact_form
|
1022 |
-
#: contact_form.php:1199
|
1023 |
#: contact_form.php:1201
|
|
|
1024 |
msgid "Please enter your email address..."
|
1025 |
msgstr "Informe seu endereço de email…"
|
1026 |
|
1027 |
# @ contact_form
|
1028 |
-
#: contact_form.php:1210
|
1029 |
#: contact_form.php:1212
|
|
|
1030 |
msgid "Please enter your phone number..."
|
1031 |
msgstr "Informe seu telefone..."
|
1032 |
|
1033 |
# @ contact_form
|
1034 |
-
#: contact_form.php:1221
|
1035 |
#: contact_form.php:1223
|
|
|
1036 |
msgid "Please enter subject..."
|
1037 |
msgstr "Informe o assunto…"
|
1038 |
|
1039 |
# @ contact_form
|
1040 |
-
#: contact_form.php:1231
|
1041 |
#: contact_form.php:1233
|
|
|
1042 |
msgid "Please enter your message..."
|
1043 |
msgstr "Informe sua mensagem…"
|
1044 |
|
1045 |
# @ contact_form
|
1046 |
-
#: contact_form.php:
|
1047 |
msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
|
1048 |
msgstr "Tipos de arquivo suportados: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Tamanho máximo do arquivo: 2Mb"
|
1049 |
|
1050 |
# @ contact_form
|
1051 |
-
#: contact_form.php:
|
1052 |
msgid "You can attach the following file formats"
|
1053 |
msgstr "Você pode anexar arquivos do seguinte tipo"
|
1054 |
|
1055 |
# @ contact_form
|
1056 |
-
#: contact_form.php:
|
1057 |
msgid "Contact from"
|
1058 |
msgstr "Formulário de Contato"
|
1059 |
|
1060 |
# @ contact_form
|
1061 |
-
#: contact_form.php:
|
1062 |
msgid "Email"
|
1063 |
msgstr "E-Mail"
|
1064 |
|
1065 |
# @ contact_form
|
1066 |
-
#: contact_form.php:
|
1067 |
msgid "Site"
|
1068 |
msgstr "Site"
|
1069 |
|
1070 |
# @ contact_form
|
1071 |
-
#: contact_form.php:
|
1072 |
msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
|
1073 |
msgstr "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! Favor usar um cliente mais atualizado."
|
1074 |
|
1075 |
# @ contact_form
|
1076 |
-
#: contact_form.php:
|
1077 |
msgid "FAQ"
|
1078 |
msgstr "Perguntas Frequentes"
|
1079 |
|
1080 |
# @ contact_form
|
1081 |
-
#: contact_form.php:
|
1082 |
msgid "Support"
|
1083 |
msgstr "Suporte"
|
1084 |
|
1085 |
# @ contact_form
|
1086 |
-
#: contact_form.php:
|
1087 |
msgid "Are you sure that you want to delete this language data?"
|
1088 |
msgstr "Tem certeza que você quer apagar estes dados de idioma?"
|
1089 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-08-05 14:09+0300\n"
|
6 |
+
"PO-Revision-Date: 2013-08-05 14:10+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Breno Jacinto, DJIO | Dionizio Bonfim Bach <brenojac@gmail.com, wordpress@djio.com.br>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Language: pt_BR\n"
|
13 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
"X-Generator: Poedit 1.5.7\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
"X-Poedit-Basepath: ..\n"
|
18 |
"X-Textdomain-Support: yes\n"
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
# @ contact_form
|
189 |
|
190 |
# @ contact_form
|
191 |
#: contact_form.php:242
|
192 |
+
#: contact_form.php:1315
|
193 |
msgid "Sorry, email message could not be delivered."
|
194 |
msgstr "Desculpe, seu e-mail não pode ser entregue."
|
195 |
|
218 |
#: contact_form.php:255
|
219 |
#: contact_form.php:281
|
220 |
#: contact_form.php:754
|
221 |
+
#: contact_form.php:1004
|
222 |
+
#: contact_form.php:1801
|
223 |
+
#: contact_form.php:1810
|
224 |
msgid "Settings"
|
225 |
msgstr "Configurações"
|
226 |
|
315 |
|
316 |
# @ contact_form
|
317 |
#: contact_form.php:373
|
318 |
+
#: contact_form.php:1010
|
319 |
msgid "Contact Form Pro"
|
320 |
msgstr "Formulário de Contato Pro"
|
321 |
|
322 |
# @ contact_form
|
323 |
#: contact_form.php:412
|
324 |
+
#: contact_form.php:899
|
325 |
+
#: contact_form.php:928
|
326 |
msgid "Name:"
|
327 |
msgstr "Nome:"
|
328 |
|
329 |
# @ contact_form
|
330 |
#: contact_form.php:413
|
331 |
+
#: contact_form.php:900
|
332 |
+
#: contact_form.php:929
|
333 |
msgid "Address:"
|
334 |
msgstr "Endereço:"
|
335 |
|
336 |
# @ contact_form
|
337 |
#: contact_form.php:414
|
338 |
+
#: contact_form.php:901
|
339 |
+
#: contact_form.php:930
|
340 |
msgid "Email Address:"
|
341 |
msgstr "Endereço de E-mail:"
|
342 |
|
343 |
# @ contact_form
|
344 |
#: contact_form.php:415
|
345 |
+
#: contact_form.php:902
|
346 |
+
#: contact_form.php:931
|
347 |
msgid "Phone number:"
|
348 |
msgstr "Número de Telefone:"
|
349 |
|
350 |
# @ contact_form
|
351 |
#: contact_form.php:416
|
352 |
+
#: contact_form.php:903
|
353 |
+
#: contact_form.php:932
|
354 |
msgid "Subject:"
|
355 |
msgstr "Assunto:"
|
356 |
|
357 |
# @ contact_form
|
358 |
#: contact_form.php:417
|
359 |
+
#: contact_form.php:904
|
360 |
+
#: contact_form.php:933
|
361 |
msgid "Message:"
|
362 |
msgstr "Mensagem:"
|
363 |
|
364 |
# @ contact_form
|
365 |
#: contact_form.php:418
|
366 |
+
#: contact_form.php:905
|
367 |
+
#: contact_form.php:934
|
368 |
msgid "Attachment:"
|
369 |
msgstr "Anexo:"
|
370 |
|
371 |
# @ contact_form
|
372 |
#: contact_form.php:419
|
373 |
#: contact_form.php:474
|
374 |
+
#: contact_form.php:906
|
375 |
+
#: contact_form.php:935
|
376 |
msgid "Send me a copy"
|
377 |
msgstr "Envie-me uma cópia"
|
378 |
|
379 |
# @ contact_form
|
380 |
#: contact_form.php:420
|
381 |
+
#: contact_form.php:907
|
382 |
+
#: contact_form.php:936
|
383 |
msgid "Submit"
|
384 |
msgstr "Enviar"
|
385 |
|
472 |
|
473 |
# @ contact_form
|
474 |
#: contact_form.php:755
|
475 |
+
#: contact_form.php:1005
|
476 |
msgid "Extra settings"
|
477 |
msgstr "Configurações extras"
|
478 |
|
479 |
# @ contact_form
|
480 |
#: contact_form.php:760
|
481 |
+
#: contact_form.php:1261
|
482 |
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:"
|
483 |
msgstr "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas copie e cole este código na sua postagem ou página ou widget:"
|
484 |
|
485 |
+
# @ contact_form
|
486 |
+
#: contact_form.php:760
|
487 |
+
#: contact_form.php:761
|
488 |
+
#: contact_form.php:921
|
489 |
+
#: contact_form.php:969
|
490 |
+
msgid "or"
|
491 |
+
msgstr "ou"
|
492 |
+
|
493 |
# @ contact_form
|
494 |
#: contact_form.php:761
|
495 |
+
msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
|
496 |
+
msgstr "Se tiver quaisquer problemas com o shortcode padrão [contact_form], você deve usar o shortcode"
|
497 |
+
|
498 |
+
# @ contact_form
|
499 |
+
#: contact_form.php:762
|
500 |
+
msgid "They work the same way."
|
501 |
+
msgstr "Eles funcionam da mesma forma."
|
502 |
+
|
503 |
+
# @ contact_form
|
504 |
+
#: contact_form.php:763
|
505 |
msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
|
506 |
msgstr "Se informações nos campos abaixo estiverem vazias, então as mensagens serão enviadas para um endereço que foi especificado durante o registro."
|
507 |
|
508 |
# @ contact_form
|
509 |
+
#: contact_form.php:767
|
510 |
msgid "The user's email address:"
|
511 |
msgstr "Use o email de um usuário do wordpress:"
|
512 |
|
513 |
# @ contact_form
|
514 |
+
#: contact_form.php:771
|
515 |
msgid "Create a username"
|
516 |
msgstr "Selecione o nome do usuário"
|
517 |
|
518 |
# @ contact_form
|
519 |
+
#: contact_form.php:776
|
520 |
msgid "Enter a username of the person who should get the messages from the contact form."
|
521 |
msgstr "Determine um nome de usuário que receberá as mensagens enviadas pelo Formulário de Contato."
|
522 |
|
523 |
# @ contact_form
|
524 |
+
#: contact_form.php:780
|
525 |
msgid "Use this email address:"
|
526 |
msgstr "Use este email:"
|
527 |
|
528 |
# @ contact_form
|
529 |
+
#: contact_form.php:783
|
530 |
msgid "Enter the email address you want the messages forwarded to."
|
531 |
msgstr "Configure um endereço de email que será usado para o recebimento de mensagens."
|
532 |
|
533 |
# @ contact_form
|
534 |
+
#: contact_form.php:787
|
535 |
msgid "Additional options"
|
536 |
msgstr "Opções adicionais"
|
537 |
|
538 |
# @ contact_form
|
539 |
+
#: contact_form.php:790
|
540 |
msgid "What to use?"
|
541 |
msgstr "O que usar?"
|
542 |
|
543 |
+
# @ contact_form
|
544 |
+
#: contact_form.php:793
|
545 |
msgid "Wp-mail"
|
546 |
msgstr "Wp-mail"
|
547 |
|
548 |
+
# @ contact_form
|
549 |
+
#: contact_form.php:794
|
550 |
msgid "You can use the wp_mail function for mailing"
|
551 |
msgstr "Você pode usar a função wp_mail para enviar emails"
|
552 |
|
553 |
+
# @ contact_form
|
554 |
+
#: contact_form.php:800
|
555 |
msgid "Mail"
|
556 |
msgstr "Mail"
|
557 |
|
558 |
+
# @ contact_form
|
559 |
+
#: contact_form.php:801
|
560 |
msgid "To send mail you can use the php mail function"
|
561 |
msgstr "Para enviar emails você pode usar a função mail() do php"
|
562 |
|
563 |
# @ contact_form
|
564 |
+
#: contact_form.php:805
|
565 |
msgid "Change text of the 'FROM' field"
|
566 |
msgstr "Mude o texto do campo 'DE'"
|
567 |
|
568 |
# @ contact_form
|
569 |
+
#: contact_form.php:811
|
570 |
msgid "Enter the email address in the 'From' field"
|
571 |
msgstr "Entre com o endereço de e-mail no campo 'De'"
|
572 |
|
573 |
# @ contact_form
|
574 |
+
#: contact_form.php:813
|
575 |
msgid "User email"
|
576 |
msgstr "Email do usuário"
|
577 |
|
578 |
# @ contact_form
|
579 |
+
#: contact_form.php:813
|
580 |
msgid "The email address of the user who fills the form will be used in the field 'From'."
|
581 |
msgstr "O endereço de email do usuário que preencher o formulário será usado no campo 'De'"
|
582 |
|
583 |
# @ contact_form
|
584 |
+
#: contact_form.php:815
|
585 |
msgid "This email address will be used in the 'From' field."
|
586 |
msgstr "Este endereço de email será usado no campo 'De'"
|
587 |
|
588 |
# @ contact_form
|
589 |
+
#: contact_form.php:819
|
590 |
msgid "Display fields"
|
591 |
msgstr "Mostrar campos"
|
592 |
|
593 |
# @ contact_form
|
594 |
+
#: contact_form.php:821
|
595 |
+
#: contact_form.php:851
|
596 |
+
#: contact_form.php:1041
|
597 |
+
#: contact_form.php:1693
|
598 |
msgid "Address"
|
599 |
msgstr "Endereço"
|
600 |
|
601 |
# @ contact_form
|
602 |
+
#: contact_form.php:822
|
603 |
+
#: contact_form.php:853
|
604 |
+
#: contact_form.php:1701
|
605 |
msgid "Phone"
|
606 |
msgstr "Telefone"
|
607 |
|
608 |
# @ contact_form
|
609 |
+
#: contact_form.php:823
|
610 |
msgid "Attachment block"
|
611 |
msgstr "Bloco de anexos"
|
612 |
|
613 |
# @ contact_form
|
614 |
+
#: contact_form.php:823
|
615 |
msgid "Users can attach the following file formats"
|
616 |
msgstr "Usuários pode anexar arquivos do seguinte tipo:"
|
617 |
|
618 |
# @ contact_form
|
619 |
+
#: contact_form.php:824
|
620 |
msgid "Tips below the Attachment block"
|
621 |
msgstr "Dicas abaixo do bloco de Anexos"
|
622 |
|
623 |
# @ contact_form
|
624 |
+
#: contact_form.php:825
|
625 |
msgid "Send me a copy block"
|
626 |
msgstr "Bloco Envie-me um cópia"
|
627 |
|
628 |
# @ contact_form
|
629 |
+
#: contact_form.php:837
|
630 |
+
#: contact_form.php:840
|
631 |
+
#: contact_form.php:843
|
632 |
+
#: contact_form.php:1070
|
633 |
msgid "Captcha"
|
634 |
msgstr "Captcha"
|
635 |
|
636 |
# @ contact_form
|
637 |
+
#: contact_form.php:837
|
638 |
+
#: contact_form.php:840
|
639 |
+
#: contact_form.php:843
|
640 |
+
#: contact_form.php:1070
|
641 |
msgid "(powered by bestwebsoft.com)"
|
642 |
msgstr "(produzido por bestwebsoft.com)"
|
643 |
|
644 |
# @ contact_form
|
645 |
+
#: contact_form.php:840
|
646 |
msgid "Activate captcha"
|
647 |
msgstr "Ativar captcha"
|
648 |
|
649 |
# @ contact_form
|
650 |
+
#: contact_form.php:843
|
651 |
msgid "Download captcha"
|
652 |
msgstr "Fazer Download do Captcha"
|
653 |
|
654 |
# @ contact_form
|
655 |
+
#: contact_form.php:848
|
656 |
msgid "Required fields"
|
657 |
msgstr "Campos obrigatórios"
|
658 |
|
659 |
# @ contact_form
|
660 |
+
#: contact_form.php:850
|
661 |
+
#: contact_form.php:1036
|
662 |
+
#: contact_form.php:1688
|
663 |
msgid "Name"
|
664 |
msgstr "Nome"
|
665 |
|
666 |
# @ contact_form
|
667 |
+
#: contact_form.php:852
|
668 |
msgid "Email Address"
|
669 |
msgstr "Endereço de email"
|
670 |
|
671 |
# @ contact_form
|
672 |
+
#: contact_form.php:854
|
673 |
+
#: contact_form.php:1056
|
674 |
+
#: contact_form.php:1704
|
675 |
msgid "Subject"
|
676 |
msgstr "Assunto"
|
677 |
|
678 |
# @ contact_form
|
679 |
+
#: contact_form.php:855
|
680 |
+
#: contact_form.php:1060
|
681 |
+
#: contact_form.php:1707
|
682 |
msgid "Message"
|
683 |
msgstr "Mensagem"
|
684 |
|
685 |
# @ contact_form
|
686 |
+
#: contact_form.php:859
|
687 |
msgid "Display additional info in the email"
|
688 |
msgstr "Mostre informações adicionais no email"
|
689 |
|
690 |
# @ contact_form
|
691 |
+
#: contact_form.php:864
|
692 |
+
#: contact_form.php:1660
|
693 |
msgid "Sent from (ip address)"
|
694 |
msgstr "Enviado de (Endereço IP)"
|
695 |
|
696 |
# @ contact_form
|
697 |
+
#: contact_form.php:865
|
698 |
+
#: contact_form.php:1665
|
699 |
msgid "Date/Time"
|
700 |
msgstr "Data / Hora"
|
701 |
|
702 |
# @ contact_form
|
703 |
+
#: contact_form.php:866
|
704 |
+
#: contact_form.php:1670
|
705 |
msgid "Sent from (referer)"
|
706 |
msgstr "Vindo de (origem)"
|
707 |
|
708 |
# @ contact_form
|
709 |
+
#: contact_form.php:867
|
710 |
+
#: contact_form.php:1675
|
711 |
msgid "Using (user agent)"
|
712 |
msgstr "Usando (cliente de email)"
|
713 |
|
714 |
# @ contact_form
|
715 |
+
#: contact_form.php:871
|
716 |
msgid "Language settings for the field names in the form"
|
717 |
msgstr "Configurações de idioma para os nomes dos campos no formulário"
|
718 |
|
719 |
# @ contact_form
|
720 |
+
#: contact_form.php:880
|
721 |
msgid "Add a language"
|
722 |
msgstr "Adicione um idioma"
|
723 |
|
724 |
# @ contact_form
|
725 |
+
#: contact_form.php:884
|
726 |
msgid "Change the names of the contact form fields and error messages"
|
727 |
msgstr "Mude os nomes dos campos do formulário de contato e mensagens de erro."
|
728 |
|
729 |
# @ contact_form
|
730 |
+
#: contact_form.php:889
|
731 |
+
#: contact_form.php:960
|
732 |
msgid "English"
|
733 |
msgstr "Inglês"
|
734 |
|
735 |
# @ contact_form
|
736 |
+
#: contact_form.php:908
|
737 |
+
#: contact_form.php:937
|
738 |
msgid "Error message for the Name field"
|
739 |
msgstr "Mensagem de erro para o campo Nome"
|
740 |
|
741 |
# @ contact_form
|
742 |
+
#: contact_form.php:909
|
743 |
+
#: contact_form.php:938
|
744 |
msgid "Error message for the Address field"
|
745 |
msgstr "Mensagem de erro para o campo Endereço"
|
746 |
|
747 |
# @ contact_form
|
748 |
+
#: contact_form.php:910
|
749 |
+
#: contact_form.php:939
|
750 |
msgid "Error message for the Email field"
|
751 |
msgstr "Mensagem de erro para o campo Email"
|
752 |
|
753 |
# @ contact_form
|
754 |
+
#: contact_form.php:911
|
755 |
+
#: contact_form.php:940
|
756 |
msgid "Error message for the Phone field"
|
757 |
msgstr "Mensagem de erro para o campo Telefone"
|
758 |
|
759 |
# @ contact_form
|
760 |
+
#: contact_form.php:912
|
761 |
+
#: contact_form.php:941
|
762 |
msgid "Error message for the Subject field"
|
763 |
msgstr "Mensagem de erro para o campo Assunto"
|
764 |
|
765 |
# @ contact_form
|
766 |
+
#: contact_form.php:913
|
767 |
+
#: contact_form.php:942
|
768 |
msgid "Error message for the Message field"
|
769 |
msgstr "Mensagem de erro para o campo Mensagem"
|
770 |
|
771 |
# @ contact_form
|
772 |
+
#: contact_form.php:914
|
773 |
+
#: contact_form.php:943
|
774 |
msgid "Error message about the file type for the Attachment field"
|
775 |
msgstr "Mensagem de erro para o campo Anexo sobre o tipo de arquivo"
|
776 |
|
777 |
# @ contact_form
|
778 |
+
#: contact_form.php:915
|
779 |
+
#: contact_form.php:944
|
780 |
msgid "Error message while uploading a file for the Attachment field to the server"
|
781 |
msgstr "Mensagem de erro para o campo Anexo quando estiver fazendo upload para o servidor"
|
782 |
|
783 |
# @ contact_form
|
784 |
+
#: contact_form.php:916
|
785 |
+
#: contact_form.php:945
|
786 |
msgid "Error message while moving the file for the Attachment field"
|
787 |
msgstr "Mensagem de erro para o campo Anexo quando estiver movendo o arquivo"
|
788 |
|
789 |
# @ contact_form
|
790 |
+
#: contact_form.php:917
|
791 |
+
#: contact_form.php:946
|
792 |
msgid "Error message when file size limit for the Attachment field is exceeded"
|
793 |
msgstr "Mensagem de erro para o campo Anexo quando o tamanho máximo do arquivo for excedido"
|
794 |
|
795 |
# @ contact_form
|
796 |
+
#: contact_form.php:918
|
797 |
+
#: contact_form.php:947
|
798 |
msgid "Error message for the Captcha field"
|
799 |
msgstr "Mensagem de erro para o campo Captcha"
|
800 |
|
801 |
# @ contact_form
|
802 |
+
#: contact_form.php:919
|
803 |
+
#: contact_form.php:948
|
804 |
msgid "Error message for the whole form"
|
805 |
msgstr "Mensagem de erro para o formulário inteiro"
|
806 |
|
807 |
# @ contact_form
|
808 |
+
#: contact_form.php:921
|
809 |
+
#: contact_form.php:950
|
810 |
+
#: contact_form.php:969
|
811 |
+
#: contact_form.php:975
|
812 |
msgid "Use shortcode"
|
813 |
msgstr "Use shortcode (abreviações)"
|
814 |
|
815 |
# @ contact_form
|
816 |
+
#: contact_form.php:921
|
817 |
+
#: contact_form.php:950
|
818 |
+
#: contact_form.php:969
|
819 |
+
#: contact_form.php:975
|
820 |
msgid "for this language"
|
821 |
msgstr "para este idioma"
|
822 |
|
823 |
# @ contact_form
|
824 |
+
#: contact_form.php:957
|
825 |
msgid "Action after email is sent"
|
826 |
msgstr "Ação após o email ser enviado"
|
827 |
|
828 |
# @ contact_form
|
829 |
+
#: contact_form.php:959
|
830 |
msgid "Display text"
|
831 |
msgstr "Mostrar texto"
|
832 |
|
833 |
# @ contact_form
|
834 |
+
#: contact_form.php:968
|
835 |
+
#: contact_form.php:974
|
836 |
msgid "Text"
|
837 |
msgstr "Texto"
|
838 |
|
839 |
# @ contact_form
|
840 |
+
#: contact_form.php:981
|
841 |
msgid "Redirect to the page"
|
842 |
msgstr "Redirecione para a página"
|
843 |
|
844 |
# @ contact_form
|
845 |
+
#: contact_form.php:982
|
846 |
msgid "Url"
|
847 |
msgstr "URL"
|
848 |
|
849 |
# @ default
|
850 |
+
#: contact_form.php:987
|
851 |
+
#: contact_form.php:1162
|
852 |
msgid "Save Changes"
|
853 |
msgstr "Salvar Mudanças"
|
854 |
|
855 |
# @ contact_form
|
856 |
+
#: contact_form.php:1002
|
857 |
msgid "Contact Form Pro | Extra Settings"
|
858 |
msgstr "Formulário de Contato Pro | Configurações Extras"
|
859 |
|
860 |
# @ contact_form
|
861 |
+
#: contact_form.php:1009
|
862 |
msgid "This functionality is available in the Pro version of the plugin. For more details, please follow the link"
|
863 |
msgstr "Esta função está disponível na versão Pro do plugin. Para saber mais detalhes, por favor siga o link"
|
864 |
|
865 |
# @ contact_form
|
866 |
+
#: contact_form.php:1016
|
867 |
msgid "Errors output"
|
868 |
msgstr "Saída de erros."
|
869 |
|
870 |
# @ contact_form
|
871 |
+
#: contact_form.php:1019
|
872 |
msgid "Display error messages"
|
873 |
msgstr "Mostrar mensagens de erro"
|
874 |
|
875 |
# @ contact_form
|
876 |
+
#: contact_form.php:1020
|
877 |
msgid "Color of the input field errors."
|
878 |
msgstr "Cor do erro nos campos de formulário"
|
879 |
|
880 |
# @ contact_form
|
881 |
+
#: contact_form.php:1021
|
882 |
msgid "Display error messages & color of the input field errors"
|
883 |
msgstr "Mostrar mensagens de erro e cores para os campos com erro"
|
884 |
|
885 |
# @ contact_form
|
886 |
+
#: contact_form.php:1026
|
887 |
msgid "Add placeholder to the input blocks"
|
888 |
msgstr "Adicione reserva de espaço aos blocos de inserção"
|
889 |
|
890 |
# @ contact_form
|
891 |
+
#: contact_form.php:1032
|
892 |
msgid "Add tooltips"
|
893 |
msgstr "Adicionar mensagens de ajuda"
|
894 |
|
895 |
# @ contact_form
|
896 |
+
#: contact_form.php:1046
|
897 |
msgid "Email address"
|
898 |
msgstr "Endereço de email"
|
899 |
|
900 |
# @ contact_form
|
901 |
+
#: contact_form.php:1051
|
902 |
msgid "Phone Number"
|
903 |
msgstr "Telefone"
|
904 |
|
905 |
# @ contact_form
|
906 |
+
#: contact_form.php:1065
|
907 |
msgid "Attachment"
|
908 |
msgstr "Anexo"
|
909 |
|
910 |
# @ contact_form
|
911 |
+
#: contact_form.php:1075
|
912 |
msgid "Style options"
|
913 |
msgstr "Opções de estilo"
|
914 |
|
915 |
# @ contact_form
|
916 |
+
#: contact_form.php:1078
|
917 |
msgid "Text color"
|
918 |
msgstr "Cor do texto"
|
919 |
|
920 |
# @ contact_form
|
921 |
+
#: contact_form.php:1081
|
922 |
+
#: contact_form.php:1086
|
923 |
+
#: contact_form.php:1096
|
924 |
+
#: contact_form.php:1101
|
925 |
+
#: contact_form.php:1106
|
926 |
+
#: contact_form.php:1111
|
927 |
+
#: contact_form.php:1121
|
928 |
+
#: contact_form.php:1126
|
929 |
+
#: contact_form.php:1132
|
930 |
+
#: contact_form.php:1143
|
931 |
+
#: contact_form.php:1148
|
932 |
+
#: contact_form.php:1153
|
933 |
msgid "Default"
|
934 |
msgstr "Padrão"
|
935 |
|
936 |
# @ contact_form
|
937 |
+
#: contact_form.php:1083
|
938 |
msgid "Label text color"
|
939 |
msgstr "Cor do texto descritivo"
|
940 |
|
941 |
# @ contact_form
|
942 |
+
#: contact_form.php:1088
|
943 |
msgid "Placeholder color"
|
944 |
msgstr "Cor da reserva de espaço"
|
945 |
|
946 |
# @ contact_form
|
947 |
+
#: contact_form.php:1093
|
948 |
msgid "Errors color"
|
949 |
msgstr "Cor dos erros"
|
950 |
|
951 |
# @ contact_form
|
952 |
+
#: contact_form.php:1098
|
953 |
msgid "Error text color"
|
954 |
msgstr "Cor de texto do erro"
|
955 |
|
956 |
# @ contact_form
|
957 |
+
#: contact_form.php:1103
|
958 |
msgid "Background color of the input field errors"
|
959 |
msgstr "Cor de fundo do campo de formulário com erros"
|
960 |
|
961 |
# @ contact_form
|
962 |
+
#: contact_form.php:1108
|
963 |
msgid "Border color of the input field errors"
|
964 |
msgstr "Cor de borda do campo de formulário com erros"
|
965 |
|
966 |
# @ contact_form
|
967 |
+
#: contact_form.php:1113
|
968 |
msgid "Placeholder color of the input field errors"
|
969 |
msgstr "Cor de reserva de espaço do campo de formulário com erros"
|
970 |
|
971 |
# @ contact_form
|
972 |
+
#: contact_form.php:1118
|
973 |
msgid "Input fields"
|
974 |
msgstr "Campos do folmulário"
|
975 |
|
976 |
# @ contact_form
|
977 |
+
#: contact_form.php:1123
|
978 |
msgid "Input fields background color"
|
979 |
msgstr "Cor de fundo dos campos de formulário"
|
980 |
|
981 |
# @ contact_form
|
982 |
+
#: contact_form.php:1128
|
983 |
msgid "Text fields color"
|
984 |
msgstr "Cor dos campos de texto"
|
985 |
|
986 |
# @ contact_form
|
987 |
+
#: contact_form.php:1130
|
988 |
msgid "Border width in px, numbers only"
|
989 |
msgstr "Largura da borda em px, somente o número"
|
990 |
|
991 |
# @ contact_form
|
992 |
+
#: contact_form.php:1134
|
993 |
+
#: contact_form.php:1155
|
994 |
msgid "Border color"
|
995 |
msgstr "Cor da borda"
|
996 |
|
997 |
# @ contact_form
|
998 |
+
#: contact_form.php:1139
|
999 |
msgid "Submit button"
|
1000 |
msgstr "Botão de Envio"
|
1001 |
|
1002 |
# @ contact_form
|
1003 |
+
#: contact_form.php:1141
|
1004 |
msgid "Width in px, numbers only"
|
1005 |
msgstr "Largura em px, somente o número"
|
1006 |
|
1007 |
# @ contact_form
|
1008 |
+
#: contact_form.php:1145
|
1009 |
msgid "Button color"
|
1010 |
msgstr "Cor do botão"
|
1011 |
|
1012 |
# @ contact_form
|
1013 |
+
#: contact_form.php:1150
|
1014 |
msgid "Button text color"
|
1015 |
msgstr "Cor do texto do botão"
|
1016 |
|
1017 |
# @ contact_form
|
1018 |
+
#: contact_form.php:1166
|
1019 |
msgid "Contact Form Pro | Preview"
|
1020 |
msgstr "Formulário de Contato Pro | Prévia"
|
1021 |
|
1022 |
# @ contact_form
|
1023 |
+
#: contact_form.php:1169
|
1024 |
msgid "Show with errors"
|
1025 |
msgstr "Mostrar com erros"
|
1026 |
|
1027 |
# @ contact_form
|
|
|
1028 |
#: contact_form.php:1177
|
1029 |
+
#: contact_form.php:1179
|
1030 |
msgid "Please enter your full name..."
|
1031 |
msgstr "Informe seu nome completo..."
|
1032 |
|
1033 |
# @ contact_form
|
|
|
1034 |
#: contact_form.php:1190
|
1035 |
+
#: contact_form.php:1192
|
1036 |
msgid "Please enter your address..."
|
1037 |
msgstr "Informe seu endereço…"
|
1038 |
|
1039 |
# @ contact_form
|
|
|
1040 |
#: contact_form.php:1201
|
1041 |
+
#: contact_form.php:1203
|
1042 |
msgid "Please enter your email address..."
|
1043 |
msgstr "Informe seu endereço de email…"
|
1044 |
|
1045 |
# @ contact_form
|
|
|
1046 |
#: contact_form.php:1212
|
1047 |
+
#: contact_form.php:1214
|
1048 |
msgid "Please enter your phone number..."
|
1049 |
msgstr "Informe seu telefone..."
|
1050 |
|
1051 |
# @ contact_form
|
|
|
1052 |
#: contact_form.php:1223
|
1053 |
+
#: contact_form.php:1225
|
1054 |
msgid "Please enter subject..."
|
1055 |
msgstr "Informe o assunto…"
|
1056 |
|
1057 |
# @ contact_form
|
|
|
1058 |
#: contact_form.php:1233
|
1059 |
+
#: contact_form.php:1235
|
1060 |
msgid "Please enter your message..."
|
1061 |
msgstr "Informe sua mensagem…"
|
1062 |
|
1063 |
# @ contact_form
|
1064 |
+
#: contact_form.php:1246
|
1065 |
msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
|
1066 |
msgstr "Tipos de arquivo suportados: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Tamanho máximo do arquivo: 2Mb"
|
1067 |
|
1068 |
# @ contact_form
|
1069 |
+
#: contact_form.php:1399
|
1070 |
msgid "You can attach the following file formats"
|
1071 |
msgstr "Você pode anexar arquivos do seguinte tipo"
|
1072 |
|
1073 |
# @ contact_form
|
1074 |
+
#: contact_form.php:1683
|
1075 |
msgid "Contact from"
|
1076 |
msgstr "Formulário de Contato"
|
1077 |
|
1078 |
# @ contact_form
|
1079 |
+
#: contact_form.php:1696
|
1080 |
msgid "Email"
|
1081 |
msgstr "E-Mail"
|
1082 |
|
1083 |
# @ contact_form
|
1084 |
+
#: contact_form.php:1710
|
1085 |
msgid "Site"
|
1086 |
msgstr "Site"
|
1087 |
|
1088 |
# @ contact_form
|
1089 |
+
#: contact_form.php:1760
|
1090 |
msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
|
1091 |
msgstr "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! Favor usar um cliente mais atualizado."
|
1092 |
|
1093 |
# @ contact_form
|
1094 |
+
#: contact_form.php:1811
|
1095 |
msgid "FAQ"
|
1096 |
msgstr "Perguntas Frequentes"
|
1097 |
|
1098 |
# @ contact_form
|
1099 |
+
#: contact_form.php:1812
|
1100 |
msgid "Support"
|
1101 |
msgstr "Suporte"
|
1102 |
|
1103 |
# @ contact_form
|
1104 |
+
#: contact_form.php:1865
|
1105 |
msgid "Are you sure that you want to delete this language data?"
|
1106 |
msgstr "Tem certeza que você quer apagar estes dados de idioma?"
|
1107 |
|
languages/contact_form-sv_SE.po
CHANGED
File without changes
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ 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.
|
7 |
-
Stable tag: 3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -124,6 +124,12 @@ Here is an example for the German language files.
|
|
124 |
|
125 |
== Changelog ==
|
126 |
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
= V3.50 - 29.07.2013 =
|
128 |
* NEW : Added an ability to use diffrent shortcodes.
|
129 |
* Update : The Swedish language file is updated.
|
@@ -352,6 +358,9 @@ Here is an example for the German language files.
|
|
352 |
|
353 |
== Upgrade Notice ==
|
354 |
|
|
|
|
|
|
|
355 |
= V3.50 =
|
356 |
Added an ability to use diffrent shortcodes. The Swedish language file is updated. The Brazilian Portuguese language file is updated.
|
357 |
|
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.6
|
7 |
+
Stable tag: 3.51
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
124 |
|
125 |
== Changelog ==
|
126 |
|
127 |
+
= V3.51 - 05.08.2013 =
|
128 |
+
* Update : The Brazilian Portuguese language file is updated.
|
129 |
+
* Update : We updated all functionality for wordpress 3.6.
|
130 |
+
* Bugfix : We fixed the email validation bug.
|
131 |
+
* Update : We removed displaying of additional info in the copy of email to the sender.
|
132 |
+
|
133 |
= V3.50 - 29.07.2013 =
|
134 |
* NEW : Added an ability to use diffrent shortcodes.
|
135 |
* Update : The Swedish language file is updated.
|
358 |
|
359 |
== Upgrade Notice ==
|
360 |
|
361 |
+
= V3.51 =
|
362 |
+
The Brazilian Portuguese language file is updated. We updated all functionality for wordpress 3.6. We fixed the email validation bug. We removed displaying of additional info in the copy of email to the sender.
|
363 |
+
|
364 |
= V3.50 =
|
365 |
Added an ability to use diffrent shortcodes. The Swedish language file is updated. The Brazilian Portuguese language file is updated.
|
366 |
|
screenshot-2.jpg
CHANGED
Binary file
|
screenshot-4.jpg
CHANGED
Binary file
|
screenshot-6.jpg
CHANGED
File without changes
|