Version Description
- custom-contact-forms.php
- custom-contact-forms-admin.php - support for multiple form destination emails added
- custom-contact-forms-front.php - Mail bug fixed, email validation bug fixed
- lang/custom-contact-forms.php - Phrases deleted/added
Download this release
Release Info
Developer | tlovett1 |
Plugin | Custom Contact Forms |
Version | 4.0.1 |
Comparing to | |
See all releases |
Code changes from version 4.0.0 to 4.0.1
- custom-contact-forms-admin.php +5 -8
- custom-contact-forms-front.php +30 -18
- custom-contact-forms.php +1 -1
- lang/custom-contact-forms.mo +0 -0
- lang/custom-contact-forms.po +303 -303
- modules/usage_popover/custom-contact-forms-usage-popover.php +1 -1
- readme.txt +9 -3
custom-contact-forms-admin.php
CHANGED
@@ -888,7 +888,7 @@ if (!class_exists('CustomContactFormsAdmin')) {
|
|
888 |
</label>
|
889 |
<input maxlength="20" type="text" name="option[option_slug]" />
|
890 |
<br />
|
891 |
-
<?php _e("
|
892 |
</li>
|
893 |
<li>
|
894 |
<label for="option[option_label]">*
|
@@ -896,23 +896,20 @@ if (!class_exists('CustomContactFormsAdmin')) {
|
|
896 |
</label>
|
897 |
<input type="text" name="option[option_label]" />
|
898 |
<br />
|
899 |
-
<?php _e("
|
900 |
</li>
|
901 |
<li>
|
902 |
<label for="option[option_value]">
|
903 |
<?php _e("Option Value:", 'custom-contact-forms'); ?>
|
904 |
</label>
|
905 |
-
<input type="text" name="option[option_value]" />
|
906 |
<br />
|
907 |
-
<?php _e('
|
908 |
</li>
|
909 |
<li>
|
910 |
<input type="submit" class="create-button" name="create_field_option" value="<?php _e("Create Field Option", 'custom-contact-forms'); ?>" />
|
911 |
</li>
|
912 |
</ul>
|
913 |
-
<p id="edit-field-comments"><b>*</b>
|
914 |
-
<?php _e("The option value is behind the scences; unseen by the user, but when a user fills out the form, the option value is what is actually sent in the email to you. For dropdown fields the option value is optional, for radio fields it is required.", 'custom-contact-forms'); ?>
|
915 |
-
</p>
|
916 |
</form>
|
917 |
</div>
|
918 |
</div>
|
@@ -975,7 +972,7 @@ if (!class_exists('CustomContactFormsAdmin')) {
|
|
975 |
</select></td>
|
976 |
<td><a href="javascript:void(0)" class="toollink" title="<?php _e("This lets you process your forms through alternate scripts. If you use a service like InfusionSoft or Aweber, set this to be the same form action as the code provided to you by that service, otherwise leave this blank.", 'custom-contact-forms'); ?>">(?)</a>
|
977 |
<input class="width100" type="text" name="form[form_action]" value="<?php echo $forms[$i]->form_action; ?>" /></td>
|
978 |
-
<td><a href="javascript:void(0)" class="toollink" title="<?php _e("
|
979 |
<input class="width100" type="text" name="form[form_email]" value="<?php echo $forms[$i]->form_email; ?>" /></td>
|
980 |
<td><a href="javascript:void(0)" class="toollink" title="<?php _e("This will be displayed as the header in a popover when the form is filled out successfully when no custom success page is specified; if left blank it will use the default specified in general settings.", 'custom-contact-forms'); ?>">(?)</a>
|
981 |
<input class="width100" type="text" name="form[form_success_title]" value="<?php echo $forms[$i]->form_success_title; ?>" /></td>
|
888 |
</label>
|
889 |
<input maxlength="20" type="text" name="option[option_slug]" />
|
890 |
<br />
|
891 |
+
<?php _e("Used to identify this option, solely for admin purposes; must be unique, and contain only letters, numbers, and underscores. Example: 'slug_one'", 'custom-contact-forms'); ?>
|
892 |
</li>
|
893 |
<li>
|
894 |
<label for="option[option_label]">*
|
896 |
</label>
|
897 |
<input type="text" name="option[option_label]" />
|
898 |
<br />
|
899 |
+
<?php _e("This is what is shown to the user in the dropdown or radio field. Example: 'United States'", 'custom-contact-forms'); ?>
|
900 |
</li>
|
901 |
<li>
|
902 |
<label for="option[option_value]">
|
903 |
<?php _e("Option Value:", 'custom-contact-forms'); ?>
|
904 |
</label>
|
905 |
+
<input type="text" name="option[option_value]" /> <a href="javascript:void(0)" class="toollink" title="<?php _e("This is the actual value of the option which is not shown to the user. This can be the same thing as the label. An example pairing of label => value is: 'The color green' => 'green' or 'Yes' => '1'.", 'custom-contact-forms'); ?>">(?)</a>
|
906 |
<br />
|
907 |
+
<?php _e('This is the actual value of the option which is not shown to the user. This can be the same thing as the label. An example pairing of label => value is: "The color green" => "green" or "Yes" => "1".', 'custom-contact-forms'); ?>
|
908 |
</li>
|
909 |
<li>
|
910 |
<input type="submit" class="create-button" name="create_field_option" value="<?php _e("Create Field Option", 'custom-contact-forms'); ?>" />
|
911 |
</li>
|
912 |
</ul>
|
|
|
|
|
|
|
913 |
</form>
|
914 |
</div>
|
915 |
</div>
|
972 |
</select></td>
|
973 |
<td><a href="javascript:void(0)" class="toollink" title="<?php _e("This lets you process your forms through alternate scripts. If you use a service like InfusionSoft or Aweber, set this to be the same form action as the code provided to you by that service, otherwise leave this blank.", 'custom-contact-forms'); ?>">(?)</a>
|
974 |
<input class="width100" type="text" name="form[form_action]" value="<?php echo $forms[$i]->form_action; ?>" /></td>
|
975 |
+
<td><a href="javascript:void(0)" class="toollink" title="<?php _e("Specify the email address(es) that you wish to receive form submission emails (provided that Email Form Submissions is set to Yes in general settings). Seperate multiple email addresses with semi-colons (ex: email1@gmail.com;email2@gmail.com;email3@gmail.com).", 'custom-contact-forms'); ?>">(?)</a>
|
976 |
<input class="width100" type="text" name="form[form_email]" value="<?php echo $forms[$i]->form_email; ?>" /></td>
|
977 |
<td><a href="javascript:void(0)" class="toollink" title="<?php _e("This will be displayed as the header in a popover when the form is filled out successfully when no custom success page is specified; if left blank it will use the default specified in general settings.", 'custom-contact-forms'); ?>">(?)</a>
|
978 |
<input class="width100" type="text" name="form[form_success_title]" value="<?php echo $forms[$i]->form_success_title; ?>" /></td>
|
custom-contact-forms-front.php
CHANGED
@@ -112,18 +112,18 @@ if (!class_exists('CustomContactFormsFront')) {
|
|
112 |
}
|
113 |
|
114 |
function validEmail($email) {
|
115 |
-
if (
|
116 |
$email_array = explode("@", $email);
|
117 |
$local_array = explode(".", $email_array[0]);
|
118 |
for ($i = 0; $i < sizeof($local_array); $i++) {
|
119 |
-
if (
|
120 |
return false;
|
121 |
}
|
122 |
-
} if (
|
123 |
$domain_array = explode(".", $email_array[1]);
|
124 |
if (sizeof($domain_array) < 2) return false;
|
125 |
for ($i = 0; $i < sizeof($domain_array); $i++) {
|
126 |
-
if (
|
127 |
return false;
|
128 |
}
|
129 |
}
|
@@ -261,7 +261,7 @@ if (!class_exists('CustomContactFormsFront')) {
|
|
261 |
if (in_array($key, $req_fields) && !empty($value)) {
|
262 |
unset($req_fields[array_search($key, $req_fields)]);
|
263 |
}
|
264 |
-
$body .= ucwords(str_replace('_', ' ', $key)) . ': ' . $value . "
|
265 |
$data_array[$key] = $value;
|
266 |
}
|
267 |
} foreach($req_fields as $err)
|
@@ -271,7 +271,7 @@ if (!class_exists('CustomContactFormsFront')) {
|
|
271 |
require_once('modules/export/custom-contact-forms-user-data.php');
|
272 |
$data_object = new CustomContactFormsUserData(array('data_array' => $data_array, 'form_page' => $_SERVER['SERVER_NAME']. $_SERVER['REQUEST_URI'], 'form_id' => 0, 'data_time' => time()));
|
273 |
parent::insertUserData($data_object);
|
274 |
-
$body .= "
|
275 |
if ($admin_options['email_form_submissions'] == 1) {
|
276 |
require_once('modules/phpmailer/class.phpmailer.php');
|
277 |
$mail = new PHPMailer();
|
@@ -287,10 +287,9 @@ if (!class_exists('CustomContactFormsFront')) {
|
|
287 |
$mail->SMTPAuth = false;
|
288 |
}
|
289 |
$mail->SetFrom($admin_options['default_from_email'], 'Custom Contact Forms');
|
290 |
-
$mail->AddReplyTo($admin_options['default_from_email'], 'Custom Contact Forms');
|
291 |
$mail->AddAddress($_POST['destination_email']);
|
292 |
$mail->Subject = $admin_options['default_form_subject'];
|
293 |
-
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!";
|
294 |
$mail->MsgHTML(stripslashes($body));
|
295 |
$mail->Send();
|
296 |
} if ($_POST['thank_you_page'])
|
@@ -346,7 +345,7 @@ if (!class_exists('CustomContactFormsFront')) {
|
|
346 |
$field = parent::selectField('', $key);
|
347 |
if (!array_key_exists($key, $GLOBALS['ccf_fixed_fields']) or $key == 'fixedEmail') {
|
348 |
$mail_field_label = (empty($field->field_label)) ? $field->field_slug : $field->field_label;
|
349 |
-
$body .= $mail_field_label . ': ' . $value . "<br />\n";
|
350 |
$data_array[$key] = $value;
|
351 |
} if (in_array($key, $checks)) {
|
352 |
$checks_key = array_search($key, $checks);
|
@@ -356,7 +355,7 @@ if (!class_exists('CustomContactFormsFront')) {
|
|
356 |
$field = parent::selectField('', $check_key);
|
357 |
$lang['not_checked'] = __('Not Checked', 'custom-contact-forms');
|
358 |
$data_array[$check_key] = $lang['not_checked'];
|
359 |
-
$body .= ucwords(str_replace('_', ' ', $field->field_label)) . ': ' . $lang['not_checked'] . "\n";
|
360 |
}
|
361 |
$errors = $this->getAllFormErrors();
|
362 |
if (empty($errors)) {
|
@@ -366,9 +365,9 @@ if (!class_exists('CustomContactFormsFront')) {
|
|
366 |
$data_object = new CustomContactFormsUserData(array('data_array' => $data_array, 'form_page' => $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'], 'form_id' => $form->id, 'data_time' => time()));
|
367 |
parent::insertUserData($data_object);
|
368 |
if ($admin_options['email_form_submissions'] == '1') {
|
369 |
-
$body .= "<br />\n" . $lang['form_page'] . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'] . "<br />\n" . $lang['sender_ip'] . $_SERVER['REMOTE_ADDR'] . "<br />\n";
|
370 |
require_once('modules/phpmailer/class.phpmailer.php');
|
371 |
-
$mail = new PHPMailer();
|
372 |
if ($admin_options['mail_function'] == 'smtp') {
|
373 |
$mail->IsSMTP();
|
374 |
$mail->Host = $admin_options['smtp_host'];
|
@@ -380,13 +379,16 @@ if (!class_exists('CustomContactFormsFront')) {
|
|
380 |
} else
|
381 |
$mail->SMTPAuth = false;
|
382 |
}
|
383 |
-
$
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
|
|
|
|
|
|
388 |
$mail->Subject = $admin_options['default_form_subject'];
|
389 |
-
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!";
|
390 |
$mail->MsgHTML(stripslashes($body));
|
391 |
$mail->Send();
|
392 |
} if (!empty($form->form_thank_you_page))
|
@@ -407,6 +409,16 @@ if (!class_exists('CustomContactFormsFront')) {
|
|
407 |
<div><label for="captcha'.$form_id.'">* '.$captcha->field_label.'</label> <input class="'.$captcha->field_class.'" type="text" '.$instructions.' name="captcha" id="captcha'.$form_id.'" maxlength="20"'.$code_type.'></div>';
|
408 |
return $out;
|
409 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
410 |
}
|
411 |
}
|
412 |
?>
|
112 |
}
|
113 |
|
114 |
function validEmail($email) {
|
115 |
+
if (!@preg_match("/^[^@]{1,64}@[^@]{1,255}$/", $email)) return false;
|
116 |
$email_array = explode("@", $email);
|
117 |
$local_array = explode(".", $email_array[0]);
|
118 |
for ($i = 0; $i < sizeof($local_array); $i++) {
|
119 |
+
if (!@preg_match("/^(([A-Za-z0-9!#$%&'*+\/=?^_`{|}~-][A-Za-z0-9!#$%&'*+\/=?^_`{|}~\.-]{0,63})|(\"[^(\\|\")]{0,62}\"))$/", $local_array[$i])) {
|
120 |
return false;
|
121 |
}
|
122 |
+
} if (!@preg_match("/^\[?[0-9\.]+\]?$/", $email_array[1])) {
|
123 |
$domain_array = explode(".", $email_array[1]);
|
124 |
if (sizeof($domain_array) < 2) return false;
|
125 |
for ($i = 0; $i < sizeof($domain_array); $i++) {
|
126 |
+
if (!@preg_match("/^(([A-Za-z0-9][A-Za-z0-9-]{0,61}[A-Za-z0-9])|([A-Za-z0-9]+))$/", $domain_array[$i])) {
|
127 |
return false;
|
128 |
}
|
129 |
}
|
261 |
if (in_array($key, $req_fields) && !empty($value)) {
|
262 |
unset($req_fields[array_search($key, $req_fields)]);
|
263 |
}
|
264 |
+
$body .= ucwords(str_replace('_', ' ', htmlspecialchars($key))) . ': ' . htmlspecialchars($value) . "<br />\n";
|
265 |
$data_array[$key] = $value;
|
266 |
}
|
267 |
} foreach($req_fields as $err)
|
271 |
require_once('modules/export/custom-contact-forms-user-data.php');
|
272 |
$data_object = new CustomContactFormsUserData(array('data_array' => $data_array, 'form_page' => $_SERVER['SERVER_NAME']. $_SERVER['REQUEST_URI'], 'form_id' => 0, 'data_time' => time()));
|
273 |
parent::insertUserData($data_object);
|
274 |
+
$body .= "<br />\n" . htmlspecialchars($lang['form_page']) . $_SERVER['SERVER_NAME']. $_SERVER['REQUEST_URI'] . "<br />\n" . $lang['sender_ip'] . $_SERVER['REMOTE_ADDR'] . "<br />\n";
|
275 |
if ($admin_options['email_form_submissions'] == 1) {
|
276 |
require_once('modules/phpmailer/class.phpmailer.php');
|
277 |
$mail = new PHPMailer();
|
287 |
$mail->SMTPAuth = false;
|
288 |
}
|
289 |
$mail->SetFrom($admin_options['default_from_email'], 'Custom Contact Forms');
|
|
|
290 |
$mail->AddAddress($_POST['destination_email']);
|
291 |
$mail->Subject = $admin_options['default_form_subject'];
|
292 |
+
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!";
|
293 |
$mail->MsgHTML(stripslashes($body));
|
294 |
$mail->Send();
|
295 |
} if ($_POST['thank_you_page'])
|
345 |
$field = parent::selectField('', $key);
|
346 |
if (!array_key_exists($key, $GLOBALS['ccf_fixed_fields']) or $key == 'fixedEmail') {
|
347 |
$mail_field_label = (empty($field->field_label)) ? $field->field_slug : $field->field_label;
|
348 |
+
$body .= htmlspecialchars($mail_field_label) . ': ' . htmlspecialchars($value) . "<br />\n";
|
349 |
$data_array[$key] = $value;
|
350 |
} if (in_array($key, $checks)) {
|
351 |
$checks_key = array_search($key, $checks);
|
355 |
$field = parent::selectField('', $check_key);
|
356 |
$lang['not_checked'] = __('Not Checked', 'custom-contact-forms');
|
357 |
$data_array[$check_key] = $lang['not_checked'];
|
358 |
+
$body .= ucwords(str_replace('_', ' ', htmlspecialchars($field->field_label))) . ': ' . $lang['not_checked'] . "\n";
|
359 |
}
|
360 |
$errors = $this->getAllFormErrors();
|
361 |
if (empty($errors)) {
|
365 |
$data_object = new CustomContactFormsUserData(array('data_array' => $data_array, 'form_page' => $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'], 'form_id' => $form->id, 'data_time' => time()));
|
366 |
parent::insertUserData($data_object);
|
367 |
if ($admin_options['email_form_submissions'] == '1') {
|
368 |
+
$body .= "<br />\n" . htmlspecialchars($lang['form_page']) . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'] . "<br />\n" . $lang['sender_ip'] . $_SERVER['REMOTE_ADDR'] . "<br />\n";
|
369 |
require_once('modules/phpmailer/class.phpmailer.php');
|
370 |
+
$mail = new PHPMailer(false);
|
371 |
if ($admin_options['mail_function'] == 'smtp') {
|
372 |
$mail->IsSMTP();
|
373 |
$mail->Host = $admin_options['smtp_host'];
|
379 |
} else
|
380 |
$mail->SMTPAuth = false;
|
381 |
}
|
382 |
+
$dest_email_array = $this->getDestinationEmailArray($form->form_email);
|
383 |
+
if (empty($dest_email_array)) $mail->AddAddress($admin_options['default_to_email']);
|
384 |
+
else {
|
385 |
+
foreach ($dest_email_array as $em)
|
386 |
+
$mail->AddAddress($em);
|
387 |
+
}
|
388 |
+
if ($reply != NULL && $this->validEmail($reply)) $mail->SetFrom($reply, 'Custom Contact Forms');
|
389 |
+
else $mail->SetFrom($admin_options['default_from_email'], 'Custom Contact Forms');
|
390 |
$mail->Subject = $admin_options['default_form_subject'];
|
391 |
+
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!";
|
392 |
$mail->MsgHTML(stripslashes($body));
|
393 |
$mail->Send();
|
394 |
} if (!empty($form->form_thank_you_page))
|
409 |
<div><label for="captcha'.$form_id.'">* '.$captcha->field_label.'</label> <input class="'.$captcha->field_class.'" type="text" '.$instructions.' name="captcha" id="captcha'.$form_id.'" maxlength="20"'.$code_type.'></div>';
|
410 |
return $out;
|
411 |
}
|
412 |
+
|
413 |
+
function getDestinationEmailArray($str) {
|
414 |
+
$str = str_replace(',', ';', $str);
|
415 |
+
$email_array = explode(';', $str);
|
416 |
+
$email_array2 = array();
|
417 |
+
foreach ($email_array as $k => $v) {
|
418 |
+
if (!empty($email_array[$k])) $email_array2[] = trim($v);
|
419 |
+
}
|
420 |
+
return $email_array2;
|
421 |
+
}
|
422 |
}
|
423 |
}
|
424 |
?>
|
custom-contact-forms.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Custom Contact Forms
|
4 |
Plugin URI: http://taylorlovett.com/wordpress-plugins
|
5 |
Description: Guaranteed to be 1000X more customizable and intuitive than Fast Secure Contact Forms or Contact Form 7. Customize every aspect of your forms without any knowledge of CSS: borders, padding, sizes, colors. Ton's of great features. Required fields, form submissions saved to database, captchas, tooltip popovers, unlimited fields/forms/form styles, import/export, use a custom thank you page or built-in popover with a custom success message set for each form.
|
6 |
-
Version: 4.0.
|
7 |
Author: Taylor Lovett
|
8 |
Author URI: http://www.taylorlovett.com
|
9 |
*/
|
3 |
Plugin Name: Custom Contact Forms
|
4 |
Plugin URI: http://taylorlovett.com/wordpress-plugins
|
5 |
Description: Guaranteed to be 1000X more customizable and intuitive than Fast Secure Contact Forms or Contact Form 7. Customize every aspect of your forms without any knowledge of CSS: borders, padding, sizes, colors. Ton's of great features. Required fields, form submissions saved to database, captchas, tooltip popovers, unlimited fields/forms/form styles, import/export, use a custom thank you page or built-in popover with a custom success message set for each form.
|
6 |
+
Version: 4.0.1
|
7 |
Author: Taylor Lovett
|
8 |
Author URI: http://www.taylorlovett.com
|
9 |
*/
|
lang/custom-contact-forms.mo
CHANGED
Binary file
|
lang/custom-contact-forms.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: custom-contact-forms\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2010-11-
|
6 |
-
"PO-Revision-Date: 2010-11-
|
7 |
"Last-Translator: Taylor Lovett <sdfds@sfs.com>\n"
|
8 |
"Language-Team: TaylorLovett.com <admin@taylorlovett.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -61,12 +61,12 @@ msgid "Plugin Instructions"
|
|
61 |
msgstr ""
|
62 |
|
63 |
#: ../custom-contact-forms-admin.php:343
|
64 |
-
#: ../custom-contact-forms-admin.php:
|
65 |
msgid "General Settings"
|
66 |
msgstr ""
|
67 |
|
68 |
#: ../custom-contact-forms-admin.php:344
|
69 |
-
#: ../custom-contact-forms-admin.php:
|
70 |
msgid "Mail Settings"
|
71 |
msgstr ""
|
72 |
|
@@ -88,7 +88,7 @@ msgid "Manage Fixed Fields"
|
|
88 |
msgstr ""
|
89 |
|
90 |
#: ../custom-contact-forms-admin.php:349
|
91 |
-
#: ../custom-contact-forms-admin.php:
|
92 |
msgid "Manage Forms"
|
93 |
msgstr ""
|
94 |
|
@@ -109,12 +109,12 @@ msgid "Manage Field Options"
|
|
109 |
msgstr ""
|
110 |
|
111 |
#: ../custom-contact-forms-admin.php:354
|
112 |
-
#: ../custom-contact-forms-admin.php:
|
113 |
msgid "Suggest a Feature"
|
114 |
msgstr ""
|
115 |
|
116 |
#: ../custom-contact-forms-admin.php:355
|
117 |
-
#: ../custom-contact-forms-admin.php:
|
118 |
msgid "Bug Report"
|
119 |
msgstr ""
|
120 |
|
@@ -211,9 +211,9 @@ msgstr ""
|
|
211 |
#: ../custom-contact-forms-admin.php:433
|
212 |
#: ../custom-contact-forms-admin.php:615
|
213 |
#: ../custom-contact-forms-admin.php:756
|
214 |
-
#: ../custom-contact-forms-admin.php:
|
215 |
-
#: ../custom-contact-forms-admin.php:
|
216 |
-
#: ../custom-contact-forms-admin.php:
|
217 |
msgid "No"
|
218 |
msgstr ""
|
219 |
|
@@ -221,9 +221,9 @@ msgstr ""
|
|
221 |
#: ../custom-contact-forms-admin.php:612
|
222 |
#: ../custom-contact-forms-admin.php:753
|
223 |
#: ../custom-contact-forms-admin.php:763
|
224 |
-
#: ../custom-contact-forms-admin.php:
|
225 |
-
#: ../custom-contact-forms-admin.php:
|
226 |
-
#: ../custom-contact-forms-admin.php:
|
227 |
msgid "Yes"
|
228 |
msgstr ""
|
229 |
|
@@ -322,7 +322,7 @@ msgid "Submit Button Text:"
|
|
322 |
msgstr ""
|
323 |
|
324 |
#: ../custom-contact-forms-admin.php:531
|
325 |
-
#: ../custom-contact-forms-admin.php:
|
326 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:236
|
327 |
msgid "Custom Code:"
|
328 |
msgstr ""
|
@@ -380,8 +380,8 @@ msgstr ""
|
|
380 |
#: ../custom-contact-forms-admin.php:806
|
381 |
#: ../custom-contact-forms-admin.php:824
|
382 |
#: ../custom-contact-forms-admin.php:867
|
383 |
-
#: ../custom-contact-forms-admin.php:
|
384 |
-
#: ../custom-contact-forms-admin.php:
|
385 |
msgid "Slug"
|
386 |
msgstr ""
|
387 |
|
@@ -428,25 +428,25 @@ msgstr ""
|
|
428 |
#: ../custom-contact-forms-admin.php:812
|
429 |
#: ../custom-contact-forms-admin.php:833
|
430 |
#: ../custom-contact-forms-admin.php:876
|
431 |
-
#: ../custom-contact-forms-admin.php:
|
432 |
-
#: ../custom-contact-forms-admin.php:
|
433 |
-
#: ../custom-contact-forms-admin.php:
|
434 |
-
#: ../custom-contact-forms-admin.php:
|
435 |
msgid "Action"
|
436 |
msgstr ""
|
437 |
|
438 |
#: ../custom-contact-forms-admin.php:627
|
439 |
#: ../custom-contact-forms-admin.php:775
|
440 |
#: ../custom-contact-forms-admin.php:847
|
441 |
-
#: ../custom-contact-forms-admin.php:
|
442 |
-
#: ../custom-contact-forms-admin.php:
|
443 |
msgid "Save"
|
444 |
msgstr ""
|
445 |
|
446 |
#: ../custom-contact-forms-admin.php:628
|
447 |
#: ../custom-contact-forms-admin.php:848
|
448 |
-
#: ../custom-contact-forms-admin.php:
|
449 |
-
#: ../custom-contact-forms-admin.php:
|
450 |
msgid "Delete"
|
451 |
msgstr ""
|
452 |
|
@@ -469,7 +469,7 @@ msgid "Dettach field options you"
|
|
469 |
msgstr ""
|
470 |
|
471 |
#: ../custom-contact-forms-admin.php:674
|
472 |
-
#: ../custom-contact-forms-admin.php:
|
473 |
msgid "create"
|
474 |
msgstr ""
|
475 |
|
@@ -483,7 +483,7 @@ msgstr ""
|
|
483 |
|
484 |
#: ../custom-contact-forms-admin.php:739
|
485 |
#: ../custom-contact-forms-admin.php:770
|
486 |
-
#: ../custom-contact-forms-admin.php:
|
487 |
msgid "None"
|
488 |
msgstr ""
|
489 |
|
@@ -505,7 +505,7 @@ msgid "Option Slug:"
|
|
505 |
msgstr ""
|
506 |
|
507 |
#: ../custom-contact-forms-admin.php:891
|
508 |
-
msgid "
|
509 |
msgstr ""
|
510 |
|
511 |
#: ../custom-contact-forms-admin.php:895
|
@@ -514,7 +514,7 @@ msgid "Option Label:"
|
|
514 |
msgstr ""
|
515 |
|
516 |
#: ../custom-contact-forms-admin.php:899
|
517 |
-
msgid "
|
518 |
msgstr ""
|
519 |
|
520 |
#: ../custom-contact-forms-admin.php:903
|
@@ -522,833 +522,833 @@ msgstr ""
|
|
522 |
msgid "Option Value:"
|
523 |
msgstr ""
|
524 |
|
|
|
|
|
|
|
|
|
525 |
#: ../custom-contact-forms-admin.php:907
|
526 |
-
msgid "
|
527 |
msgstr ""
|
528 |
|
529 |
#: ../custom-contact-forms-admin.php:910
|
530 |
msgid "Create Field Option"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: ../custom-contact-forms-admin.php:
|
534 |
-
msgid "The option value is behind the scences; unseen by the user, but when a user fills out the form, the option value is what is actually sent in the email to you. For dropdown fields the option value is optional, for radio fields it is required."
|
535 |
-
msgstr ""
|
536 |
-
|
537 |
-
#: ../custom-contact-forms-admin.php:926
|
538 |
msgid "Form Display Code"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: ../custom-contact-forms-admin.php:
|
542 |
-
#: ../custom-contact-forms-admin.php:
|
543 |
msgid "Title"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: ../custom-contact-forms-admin.php:
|
547 |
-
#: ../custom-contact-forms-admin.php:
|
548 |
msgid "Button Text"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: ../custom-contact-forms-admin.php:
|
552 |
-
#: ../custom-contact-forms-admin.php:
|
553 |
msgid "Style"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: ../custom-contact-forms-admin.php:
|
557 |
msgid "Method"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: ../custom-contact-forms-admin.php:
|
561 |
msgid "Form Action"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: ../custom-contact-forms-admin.php:
|
565 |
msgid "Destination Email"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: ../custom-contact-forms-admin.php:
|
569 |
msgid "Success Message Title"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: ../custom-contact-forms-admin.php:
|
573 |
msgid "Success Message"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: ../custom-contact-forms-admin.php:
|
577 |
msgid "Custom Success URL"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: ../custom-contact-forms-admin.php:
|
581 |
msgid "The Form Method is the method by which information is transfer through your form. If you aren't an expert with HTML and PHP, leave this as Post."
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: ../custom-contact-forms-admin.php:
|
585 |
msgid "This lets you process your forms through alternate scripts. If you use a service like InfusionSoft or Aweber, set this to be the same form action as the code provided to you by that service, otherwise leave this blank."
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: ../custom-contact-forms-admin.php:
|
589 |
-
msgid "
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: ../custom-contact-forms-admin.php:
|
593 |
msgid "This will be displayed as the header in a popover when the form is filled out successfully when no custom success page is specified; if left blank it will use the default specified in general settings."
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: ../custom-contact-forms-admin.php:
|
597 |
msgid "This will be displayed in a popover when the form is filled out successfully when no custom success page is specified; if left blank it will use the default specified in general settings."
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: ../custom-contact-forms-admin.php:
|
601 |
msgid "If this is filled out, users will be sent to this thank you page when they successfully fill out this form. If it is left blank, a popover showing the form's 'success message' will be displayed on form success."
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: ../custom-contact-forms-admin.php:
|
605 |
msgid "Attached Fields:"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: ../custom-contact-forms-admin.php:
|
609 |
msgid "Dettach Field"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: ../custom-contact-forms-admin.php:
|
613 |
msgid "Attach fields in the order you want them displayed."
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: ../custom-contact-forms-admin.php:
|
617 |
msgid "Attach Field:"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: ../custom-contact-forms-admin.php:
|
621 |
msgid "Attach Field"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: ../custom-contact-forms-admin.php:
|
625 |
msgid "Attach fixed fields or ones you"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: ../custom-contact-forms-admin.php:
|
629 |
msgid "The form display code above ([customcontact form=x]) will only work in Wordpress pages and posts. If you want to display this form in a theme file such as page.php, header.php, index.php, category.php, etc, then insert this PHP snippet."
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: ../custom-contact-forms-admin.php:
|
633 |
msgid "Code to Display Form in Theme Files:"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: ../custom-contact-forms-admin.php:
|
637 |
msgid "This field allows you to insert HTML directly after the starting <form> tag."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: ../custom-contact-forms-admin.php:
|
641 |
msgid "Form Code"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: ../custom-contact-forms-admin.php:
|
645 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:307
|
646 |
msgid "Saved Form Submissions"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: ../custom-contact-forms-admin.php:
|
650 |
-
#: ../custom-contact-forms-admin.php:
|
651 |
msgid "Date Submitted"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: ../custom-contact-forms-admin.php:
|
655 |
-
#: ../custom-contact-forms-admin.php:
|
656 |
msgid "Form Submitted"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: ../custom-contact-forms-admin.php:
|
660 |
-
#: ../custom-contact-forms-admin.php:
|
661 |
msgid "Form Page"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: ../custom-contact-forms-admin.php:
|
665 |
msgid "Custom HTML Form"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: ../custom-contact-forms-admin.php:
|
669 |
msgid "Email Form Submissions:"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: ../custom-contact-forms-admin.php:
|
673 |
msgid "When a user fills out one of your forms, the info submitted is saved in the Saved Form Submission section of the admin panel for you to view. If this is enabled, you will also be sent an email containing the submission info."
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: ../custom-contact-forms-admin.php:
|
677 |
msgid "Default Email:"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: ../custom-contact-forms-admin.php:
|
681 |
msgid "Form emails will be sent <span>to</span> this address, if no destination email is specified by the form."
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: ../custom-contact-forms-admin.php:
|
685 |
msgid "Front End JQuery:"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: ../custom-contact-forms-admin.php:
|
689 |
-
#: ../custom-contact-forms-admin.php:
|
690 |
-
#: ../custom-contact-forms-admin.php:
|
691 |
msgid "Enabled"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: ../custom-contact-forms-admin.php:
|
695 |
-
#: ../custom-contact-forms-admin.php:
|
696 |
-
#: ../custom-contact-forms-admin.php:
|
697 |
msgid "Disabled"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: ../custom-contact-forms-admin.php:
|
701 |
#, php-format
|
702 |
msgid "Some plugins don't setup JQuery correctly, so when any other plugin uses JQuery (whether correctly or not), JQuery works for neither plugin. This plugin uses JQuery correctly. If another plugin isn't using JQuery correctly but is more important to you than this one: disable this option. 99% of this plugin's functionality will work without JQuery, just no field instruction tooltips."
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: ../custom-contact-forms-admin.php:
|
706 |
msgid "Default From Email:"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: ../custom-contact-forms-admin.php:
|
710 |
msgid "Form emails will be sent <span>from</span> this address. It is recommended you provide a real email address that has been created through your host."
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: ../custom-contact-forms-admin.php:
|
714 |
msgid "Default Email Subject:"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: ../custom-contact-forms-admin.php:
|
718 |
msgid "Default subject to be included in all form emails."
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: ../custom-contact-forms-admin.php:
|
722 |
msgid "Default Form Success Message Title:"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: ../custom-contact-forms-admin.php:
|
726 |
msgid "If someone fills out a form for which a success message title is not provided and a custom success page is not provided, the plugin will show a popover using this field as the window title."
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: ../custom-contact-forms-admin.php:
|
730 |
msgid "Default Form Success Message:"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: ../custom-contact-forms-admin.php:
|
734 |
msgid "If someone fills out a form for which a success message is not provided and a custom success page is not provided, the plugin will show a popover containing this message."
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: ../custom-contact-forms-admin.php:
|
738 |
msgid "Remember Field Values:"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: ../custom-contact-forms-admin.php:
|
742 |
msgid "Selecting yes will make form fields remember how they were last filled out."
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: ../custom-contact-forms-admin.php:
|
746 |
msgid "Tooltips in Widget:"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: ../custom-contact-forms-admin.php:
|
750 |
msgid "Enabling this shows tooltips containing field instructions on forms in the widget."
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: ../custom-contact-forms-admin.php:
|
754 |
msgid "Hide Plugin Author Link in Code:"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: ../custom-contact-forms-admin.php:
|
758 |
msgid "Use Code Type:"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: ../custom-contact-forms-admin.php:
|
762 |
msgid "This lets you switch the form code between HTML and XHTML."
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: ../custom-contact-forms-admin.php:
|
766 |
msgid "Fancy Admin AJAX Abilities:"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: ../custom-contact-forms-admin.php:
|
770 |
msgid "If you enable this, creating, editing and modifying forms, fields, styles, etc in the admin panel will be done using AJAX. This means that clicking things like 'Edit' or 'Delete' will not cause the page to reload thus managing your forms will be much smoother and quicker. If you are having problems with things not saving, deleting, or inserting correctly, then disable this and fill out a bug report below."
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: ../custom-contact-forms-admin.php:
|
774 |
msgid "Show Sidebar Widget:"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: ../custom-contact-forms-admin.php:
|
778 |
msgid "On Homepage"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: ../custom-contact-forms-admin.php:
|
782 |
msgid "On Pages"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: ../custom-contact-forms-admin.php:
|
786 |
msgid "On Single Posts"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: ../custom-contact-forms-admin.php:
|
790 |
msgid "On Categories"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: ../custom-contact-forms-admin.php:
|
794 |
msgid "On Archives"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: ../custom-contact-forms-admin.php:
|
798 |
msgid "Update"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: ../custom-contact-forms-admin.php:
|
802 |
msgid "Instructions"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: ../custom-contact-forms-admin.php:
|
806 |
msgid "The default content will help you get a better feel of ways this plugin can be used and is the best way to learn."
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: ../custom-contact-forms-admin.php:
|
810 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:41
|
811 |
msgid "Insert Default Content"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: ../custom-contact-forms-admin.php:
|
815 |
msgid "1. Create a form."
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: ../custom-contact-forms-admin.php:
|
819 |
msgid "2. Create fields and attach those fields to the forms of your choice."
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: ../custom-contact-forms-admin.php:
|
823 |
msgid "Attach the fields in the order that you want them to show up in the form. If you mess up you can detach and reattach them. Create field options in the field option manager; field options should be attached to radio and dropdown fields."
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: ../custom-contact-forms-admin.php:
|
827 |
msgid "3. Display those forms in posts and pages by inserting the code: [customcontact form=<b>FORMID</b>]. Replace <b>FORMID</b> with the id listed to the left of the form slug next to the form of your choice above. You can also display forms in theme files; the code for this is provided within each forms admin section."
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: ../custom-contact-forms-admin.php:
|
831 |
msgid "4. Prevent spam by attaching the fixed field, captcha or ishuman. Captcha requires users to type in a number shown on an image. Ishuman requires users to check a box to prove they aren't a spam bot."
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: ../custom-contact-forms-admin.php:
|
835 |
msgid "5. Add a form to your sidebar, by dragging the Custom Contact Form widget in to your sidebar."
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: ../custom-contact-forms-admin.php:
|
839 |
msgid "6. Configure the General Settings appropriately; this is important if you want to receive your web form messages!"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: ../custom-contact-forms-admin.php:
|
843 |
msgid "7. Create form styles to change your forms appearances. The image below explains how each style field can change the look of your forms."
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: ../custom-contact-forms-admin.php:
|
847 |
msgid "8. (advanced) If you are confident in your HTML and CSS skills, you can use the"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: ../custom-contact-forms-admin.php:
|
851 |
msgid "Custom HTML Forms feature"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: ../custom-contact-forms-admin.php:
|
855 |
msgid "as a framework and write your forms from scratch. This allows you to use this plugin simply to process your form requests. The Custom HTML Forms feature will process and email any form variables sent to it regardless of whether they are created in the fields manager."
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: ../custom-contact-forms-admin.php:
|
859 |
msgid "These instructions briefly tell you in which order you should use forms, fields, field options, and styles."
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: ../custom-contact-forms-admin.php:
|
863 |
msgid "If you want to read in detail about using forms, fields, field options, styles and the rest of this plugin, click the button below."
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: ../custom-contact-forms-admin.php:
|
867 |
msgid "View Plugin Usage Popover"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: ../custom-contact-forms-admin.php:
|
871 |
msgid "There are two ways you can send emails: using the PHP mail() function or using SMTP (secure/insecure). If you choose to use the PHP mail() function you can ignore all the other options. For some people Wordpress's default way of sending mail does not work; if for some reason your mail is being sent you should try the SMTP option."
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: ../custom-contact-forms-admin.php:
|
875 |
msgid "* Send My Emails Using the Following:"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: ../custom-contact-forms-admin.php:
|
879 |
msgid "Wordpress Default"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: ../custom-contact-forms-admin.php:
|
883 |
msgid "SMTP"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: ../custom-contact-forms-admin.php:
|
887 |
msgid "(If mail isn't sending, try toggling this option.)"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: ../custom-contact-forms-admin.php:
|
891 |
msgid "SMTP Host:"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: ../custom-contact-forms-admin.php:
|
895 |
msgid "SMTP Port:"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: ../custom-contact-forms-admin.php:
|
899 |
msgid "Encryption:"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: ../custom-contact-forms-admin.php:
|
903 |
msgid "SSL"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: ../custom-contact-forms-admin.php:
|
907 |
msgid "TLS"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: ../custom-contact-forms-admin.php:
|
911 |
msgid "SMTP Authentication:"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: ../custom-contact-forms-admin.php:
|
915 |
msgid "None Needed"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: ../custom-contact-forms-admin.php:
|
919 |
msgid "Use SMTP Username/Password"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: ../custom-contact-forms-admin.php:
|
923 |
msgid "SMTP Username:"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: ../custom-contact-forms-admin.php:
|
927 |
msgid "SMTP Password:"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: ../custom-contact-forms-admin.php:
|
931 |
msgid "Save Mail Sending Options"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: ../custom-contact-forms-admin.php:
|
935 |
msgid "Create A Style for Your Forms"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: ../custom-contact-forms-admin.php:
|
939 |
msgid "Use this manager to create styles for your forms. Each field is already filled out with nice look defaults. It is recommended you simply input a slug and click create to see the defaults before you start changing values."
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: ../custom-contact-forms-admin.php:
|
943 |
msgid "Style Slug:"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: ../custom-contact-forms-admin.php:
|
947 |
msgid "(Must be unique)"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: ../custom-contact-forms-admin.php:
|
951 |
-
#: ../custom-contact-forms-admin.php:
|
952 |
-
#: ../custom-contact-forms-admin.php:
|
953 |
msgid "Title Font Size:"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: ../custom-contact-forms-admin.php:
|
957 |
msgid "(ex: 10pt, 10px, 1em)"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: ../custom-contact-forms-admin.php:
|
961 |
-
#: ../custom-contact-forms-admin.php:
|
962 |
-
#: ../custom-contact-forms-admin.php:
|
963 |
msgid "Title Font Color:"
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: ../custom-contact-forms-admin.php:
|
967 |
-
#: ../custom-contact-forms-admin.php:
|
968 |
-
#: ../custom-contact-forms-admin.php:
|
969 |
-
#: ../custom-contact-forms-admin.php:
|
970 |
-
#: ../custom-contact-forms-admin.php:
|
971 |
-
#: ../custom-contact-forms-admin.php:
|
972 |
msgid "(ex: FF0000)"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: ../custom-contact-forms-admin.php:
|
976 |
-
#: ../custom-contact-forms-admin.php:
|
977 |
msgid "Label Width:"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: ../custom-contact-forms-admin.php:
|
981 |
msgid "(ex: 100px or 20%)"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: ../custom-contact-forms-admin.php:
|
985 |
-
#: ../custom-contact-forms-admin.php:
|
986 |
msgid "Label Font Size:"
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: ../custom-contact-forms-admin.php:
|
990 |
-
#: ../custom-contact-forms-admin.php:
|
991 |
msgid "(ex: 10px, 10pt, 1em)"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: ../custom-contact-forms-admin.php:
|
995 |
-
#: ../custom-contact-forms-admin.php:
|
996 |
msgid "Label Font Color:"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: ../custom-contact-forms-admin.php:
|
1000 |
-
#: ../custom-contact-forms-admin.php:
|
1001 |
msgid "Text Field Width:"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: ../custom-contact-forms-admin.php:
|
1005 |
-
#: ../custom-contact-forms-admin.php:
|
1006 |
-
#: ../custom-contact-forms-admin.php:
|
1007 |
-
#: ../custom-contact-forms-admin.php:
|
1008 |
msgid "(ex: 100px or 100%)"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: ../custom-contact-forms-admin.php:
|
1012 |
msgid "Textarea Field Width:"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: ../custom-contact-forms-admin.php:
|
1016 |
msgid "Textarea Field Height:"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: ../custom-contact-forms-admin.php:
|
1020 |
-
#: ../custom-contact-forms-admin.php:
|
1021 |
msgid "Field Font Size:"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: ../custom-contact-forms-admin.php:
|
1025 |
msgid "(ex: 10px, 10pt, 1em"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: ../custom-contact-forms-admin.php:
|
1029 |
-
#: ../custom-contact-forms-admin.php:
|
1030 |
msgid "Field Font Color:"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: ../custom-contact-forms-admin.php:
|
1034 |
-
#: ../custom-contact-forms-admin.php:
|
1035 |
msgid "(ex: 333333)"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: ../custom-contact-forms-admin.php:
|
1039 |
-
#: ../custom-contact-forms-admin.php:
|
1040 |
msgid "Field Border Style:"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: ../custom-contact-forms-admin.php:
|
1044 |
-
#: ../custom-contact-forms-admin.php:
|
1045 |
msgid "Form Margin:"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: ../custom-contact-forms-admin.php:
|
1049 |
-
#: ../custom-contact-forms-admin.php:
|
1050 |
-
#: ../custom-contact-forms-admin.php:
|
1051 |
-
#: ../custom-contact-forms-admin.php:
|
1052 |
msgid "(ex: 5px or 1em)"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: ../custom-contact-forms-admin.php:
|
1056 |
-
#: ../custom-contact-forms-admin.php:
|
1057 |
msgid "Label Margin:"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: ../custom-contact-forms-admin.php:
|
1061 |
msgid "Textarea Background Color:"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: ../custom-contact-forms-admin.php:
|
1065 |
msgid "Success Popover Font Color:"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: ../custom-contact-forms-admin.php:
|
1069 |
msgid "Success Popover Title Font Size:"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: ../custom-contact-forms-admin.php:
|
1073 |
-
#: ../custom-contact-forms-admin.php:
|
1074 |
-
#: ../custom-contact-forms-admin.php:
|
1075 |
-
#: ../custom-contact-forms-admin.php:
|
1076 |
msgid "(ex: 12px, 1em, 100%)"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: ../custom-contact-forms-admin.php:
|
1080 |
-
#: ../custom-contact-forms-admin.php:
|
1081 |
msgid "Form Background Color:"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: ../custom-contact-forms-admin.php:
|
1085 |
msgid "Tooltip Background Color:"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: ../custom-contact-forms-admin.php:
|
1089 |
msgid "(ex: 000000 or black)"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: ../custom-contact-forms-admin.php:
|
1093 |
-
#: ../custom-contact-forms-admin.php:
|
1094 |
msgid "Field Border Color:"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: ../custom-contact-forms-admin.php:
|
1098 |
-
#: ../custom-contact-forms-admin.php:
|
1099 |
msgid "Form Border Style:"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: ../custom-contact-forms-admin.php:
|
1103 |
-
#: ../custom-contact-forms-admin.php:
|
1104 |
msgid "Form Border Color:"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: ../custom-contact-forms-admin.php:
|
1108 |
msgid "(ex: 000000)"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: ../custom-contact-forms-admin.php:
|
1112 |
-
#: ../custom-contact-forms-admin.php:
|
1113 |
msgid "Form Border Width:"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: ../custom-contact-forms-admin.php:
|
1117 |
msgid "(ex: 1px)"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: ../custom-contact-forms-admin.php:
|
1121 |
-
#: ../custom-contact-forms-admin.php:
|
1122 |
msgid "Form Width:"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: ../custom-contact-forms-admin.php:
|
1126 |
msgid "(ex: 100px or 50%)"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: ../custom-contact-forms-admin.php:
|
1130 |
msgid "Form Font Family:"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: ../custom-contact-forms-admin.php:
|
1134 |
msgid "(ex: Verdana, Tahoma, Arial)"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: ../custom-contact-forms-admin.php:
|
1138 |
-
#: ../custom-contact-forms-admin.php:
|
1139 |
msgid "Button Width:"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: ../custom-contact-forms-admin.php:
|
1143 |
msgid "(ex: 100px, 30%, auto)"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: ../custom-contact-forms-admin.php:
|
1147 |
-
#: ../custom-contact-forms-admin.php:
|
1148 |
msgid "Button Height:"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: ../custom-contact-forms-admin.php:
|
1152 |
msgid "(ex: 100px or 30%)"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: ../custom-contact-forms-admin.php:
|
1156 |
-
#: ../custom-contact-forms-admin.php:
|
1157 |
msgid "Button Font Size:"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: ../custom-contact-forms-admin.php:
|
1161 |
-
#: ../custom-contact-forms-admin.php:
|
1162 |
msgid "Button Font Color:"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: ../custom-contact-forms-admin.php:
|
1166 |
-
#: ../custom-contact-forms-admin.php:
|
1167 |
msgid "Field Background Color:"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: ../custom-contact-forms-admin.php:
|
1171 |
-
#: ../custom-contact-forms-admin.php:
|
1172 |
msgid "Form Padding:"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: ../custom-contact-forms-admin.php:
|
1176 |
-
#: ../custom-contact-forms-admin.php:
|
1177 |
msgid "Title Margin:"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: ../custom-contact-forms-admin.php:
|
1181 |
-
#: ../custom-contact-forms-admin.php:
|
1182 |
msgid "Dropdown Width:"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: ../custom-contact-forms-admin.php:
|
1186 |
msgid "(ex: 30px, 20%, or auto)"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: ../custom-contact-forms-admin.php:
|
1190 |
msgid "Success Popover Border Color:"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: ../custom-contact-forms-admin.php:
|
1194 |
msgid "Success Popover Font Size:"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: ../custom-contact-forms-admin.php:
|
1198 |
msgid "Success Popover Height:"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: ../custom-contact-forms-admin.php:
|
1202 |
msgid "(ex: 200px, 6em, 50%)"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: ../custom-contact-forms-admin.php:
|
1206 |
-
#: ../custom-contact-forms-admin.php:
|
1207 |
msgid "Field Border Roundness:"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: ../custom-contact-forms-admin.php:
|
1211 |
msgid "(ex: 6px, or 0px)"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: ../custom-contact-forms-admin.php:
|
1215 |
-
#: ../custom-contact-forms-admin.php:
|
1216 |
-
#: ../custom-contact-forms-admin.php:
|
1217 |
msgid "Tooltip"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: ../custom-contact-forms-admin.php:
|
1221 |
-
#: ../custom-contact-forms-admin.php:
|
1222 |
-
#: ../custom-contact-forms-admin.php:
|
1223 |
msgid "A tooltip is the little box that fades in displaying 'Field Instructions' when a user selects a particular field."
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: ../custom-contact-forms-admin.php:
|
1227 |
-
#: ../custom-contact-forms-admin.php:
|
1228 |
msgid "Font Size:"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: ../custom-contact-forms-admin.php:
|
1232 |
msgid "Tooltip Font Color:"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: ../custom-contact-forms-admin.php:
|
1236 |
msgid "(ex: ffffff or white)"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: ../custom-contact-forms-admin.php:
|
1240 |
msgid "Create Style"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: ../custom-contact-forms-admin.php:
|
1244 |
msgid "Manage Form Styles"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: ../custom-contact-forms-admin.php:
|
1248 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:125
|
1249 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:178
|
1250 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:206
|
1251 |
msgid "Slug:"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: ../custom-contact-forms-admin.php:
|
1255 |
msgid "Font Family:"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: ../custom-contact-forms-admin.php:
|
1259 |
msgid "Textarea Background"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: ../custom-contact-forms-admin.php:
|
1263 |
msgid "Color:"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: ../custom-contact-forms-admin.php:
|
1267 |
-
#: ../custom-contact-forms-admin.php:
|
1268 |
-
#: ../custom-contact-forms-admin.php:
|
1269 |
-
#: ../custom-contact-forms-admin.php:
|
1270 |
-
#: ../custom-contact-forms-admin.php:
|
1271 |
-
#: ../custom-contact-forms-admin.php:
|
1272 |
msgid "Success Popover"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: ../custom-contact-forms-admin.php:
|
1276 |
msgid "Border Color:"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: ../custom-contact-forms-admin.php:
|
1280 |
-
#: ../custom-contact-forms-admin.php:
|
1281 |
msgid "Font Color:"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: ../custom-contact-forms-admin.php:
|
1285 |
msgid "Delete Style"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: ../custom-contact-forms-admin.php:
|
1289 |
msgid "Textarea Width:"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: ../custom-contact-forms-admin.php:
|
1293 |
msgid "Textarea Height:"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: ../custom-contact-forms-admin.php:
|
1297 |
msgid "Height:"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#: ../custom-contact-forms-admin.php:
|
1301 |
msgid "Background Color:"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: ../custom-contact-forms-admin.php:
|
1305 |
msgid "Tooltip Font Size:"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: ../custom-contact-forms-admin.php:
|
1309 |
msgid "Report a Bug/Suggest a Feature"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: ../custom-contact-forms-admin.php:
|
1313 |
msgid "Your Name:"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: ../custom-contact-forms-admin.php:
|
1317 |
msgid "Your Email:"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: ../custom-contact-forms-admin.php:
|
1321 |
msgid "Your Message:"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#: ../custom-contact-forms-admin.php:
|
1325 |
msgid "Purpose of this message:"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: ../custom-contact-forms-admin.php:
|
1329 |
msgid "Plugin Question"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
-
#: ../custom-contact-forms-admin.php:
|
1333 |
msgid "Send Message"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: ../custom-contact-forms-admin.php:
|
1337 |
msgid "Custom HTML Forms (Advanced)"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: ../custom-contact-forms-admin.php:
|
1341 |
msgid ""
|
1342 |
"If you know HTML and simply want to use this plugin to process form requests, this feature is for you. \n"
|
1343 |
"\t\t\t\t\tThe following HTML is a the framework to which you must adhere. In order for your form to work you MUST do the following: a) Keep the form action/method the same (yes the action is supposed to be empty), b) Include all the hidden fields shown below, c) provide a \n"
|
1344 |
"\t\t\t\t\thidden field with a success message or thank you page (both hidden fields are included below, you must choose one or the other and fill in the value part of the input field appropriately."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: ../custom-contact-forms-admin.php:
|
1348 |
msgid "Thank you for filling out our form!"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: ../custom-contact-forms-admin.php:
|
1352 |
msgid ""
|
1353 |
"Build your form in here. It is recommended you only use this feature if you are experienced with HTML. \n"
|
1354 |
"The success_message field will add a popover containing the message when the form is completed successfully, the thank_you_page field will force \n"
|
@@ -1356,79 +1356,79 @@ msgid ""
|
|
1356 |
"the field names you want required by commas. Remember to use underscores instead of spaces in field names!"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: ../custom-contact-forms-admin.php:
|
1360 |
msgid "Export"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: ../custom-contact-forms-admin.php:
|
1364 |
msgid ""
|
1365 |
"Preforming a Custom Contact Forms export will create a file of the form \n"
|
1366 |
"\t\t\t\t\t\tccf-export-xxxx.sql on your web server. The file created contains SQL that \n"
|
1367 |
"\t\t\t\t\t\twill recreate all the plugin data on any Wordpress installation. After Custom Contact Forms creates the export file, you will be prompted to download it. You can use this file as a backup in case your Wordpress database gets ruined."
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: ../custom-contact-forms-admin.php:
|
1371 |
msgid "Export All CCF Plugin Content"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: ../custom-contact-forms-admin.php:
|
1375 |
msgid "Import"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: ../custom-contact-forms-admin.php:
|
1379 |
msgid "Browse to a CCF .sql export file to import Custom Contact Form data from another Wordpress installation to this one. Pressing the 'Clear and Import' button deletes all current data and then imports the selected file; this will not work for merging to data!. Clearing all CCF data before importing prevents any conflicts from occuring. Before you attempt an import, you should always download a backup, by clicking the 'Export All' button."
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: ../custom-contact-forms-admin.php:
|
1383 |
msgid "Choose What You Want to Use from the Import File:"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: ../custom-contact-forms-admin.php:
|
1387 |
msgid "Use General Settings"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: ../custom-contact-forms-admin.php:
|
1391 |
-
#: ../custom-contact-forms-admin.php:
|
1392 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:8
|
1393 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:199
|
1394 |
msgid "Forms"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: ../custom-contact-forms-admin.php:
|
1398 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:26
|
1399 |
msgid "Form Submissions"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#: ../custom-contact-forms-admin.php:
|
1403 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:11
|
1404 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:49
|
1405 |
msgid "Fields"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: ../custom-contact-forms-admin.php:
|
1409 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:14
|
1410 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:171
|
1411 |
msgid "Field Options"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
-
#: ../custom-contact-forms-admin.php:
|
1415 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:17
|
1416 |
msgid "Styles"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: ../custom-contact-forms-admin.php:
|
1420 |
msgid "Choose an Import File:"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: ../custom-contact-forms-admin.php:
|
1424 |
msgid "Clear and Import"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#: ../custom-contact-forms-admin.php:
|
1428 |
msgid "Yes, I want to do this and have created a backup."
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: ../custom-contact-forms-admin.php:
|
1432 |
msgid "Custom Contact Forms Plugin News"
|
1433 |
msgstr ""
|
1434 |
|
@@ -1628,7 +1628,7 @@ msgid "Here, you can specify the text that shows on the submit button."
|
|
1628 |
msgstr ""
|
1629 |
|
1630 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:243
|
1631 |
-
msgid "Specify the email that should receive all form submissions. If you leave this blank it will revert to the default specified in general settings."
|
1632 |
msgstr ""
|
1633 |
|
1634 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:248
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: custom-contact-forms\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-11-03 18:08-0500\n"
|
6 |
+
"PO-Revision-Date: 2010-11-03 18:08-0500\n"
|
7 |
"Last-Translator: Taylor Lovett <sdfds@sfs.com>\n"
|
8 |
"Language-Team: TaylorLovett.com <admin@taylorlovett.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
61 |
msgstr ""
|
62 |
|
63 |
#: ../custom-contact-forms-admin.php:343
|
64 |
+
#: ../custom-contact-forms-admin.php:1134
|
65 |
msgid "General Settings"
|
66 |
msgstr ""
|
67 |
|
68 |
#: ../custom-contact-forms-admin.php:344
|
69 |
+
#: ../custom-contact-forms-admin.php:1381
|
70 |
msgid "Mail Settings"
|
71 |
msgstr ""
|
72 |
|
88 |
msgstr ""
|
89 |
|
90 |
#: ../custom-contact-forms-admin.php:349
|
91 |
+
#: ../custom-contact-forms-admin.php:918
|
92 |
msgid "Manage Forms"
|
93 |
msgstr ""
|
94 |
|
109 |
msgstr ""
|
110 |
|
111 |
#: ../custom-contact-forms-admin.php:354
|
112 |
+
#: ../custom-contact-forms-admin.php:2013
|
113 |
msgid "Suggest a Feature"
|
114 |
msgstr ""
|
115 |
|
116 |
#: ../custom-contact-forms-admin.php:355
|
117 |
+
#: ../custom-contact-forms-admin.php:2010
|
118 |
msgid "Bug Report"
|
119 |
msgstr ""
|
120 |
|
211 |
#: ../custom-contact-forms-admin.php:433
|
212 |
#: ../custom-contact-forms-admin.php:615
|
213 |
#: ../custom-contact-forms-admin.php:756
|
214 |
+
#: ../custom-contact-forms-admin.php:1148
|
215 |
+
#: ../custom-contact-forms-admin.php:1225
|
216 |
+
#: ../custom-contact-forms-admin.php:1257
|
217 |
msgid "No"
|
218 |
msgstr ""
|
219 |
|
221 |
#: ../custom-contact-forms-admin.php:612
|
222 |
#: ../custom-contact-forms-admin.php:753
|
223 |
#: ../custom-contact-forms-admin.php:763
|
224 |
+
#: ../custom-contact-forms-admin.php:1145
|
225 |
+
#: ../custom-contact-forms-admin.php:1222
|
226 |
+
#: ../custom-contact-forms-admin.php:1254
|
227 |
msgid "Yes"
|
228 |
msgstr ""
|
229 |
|
322 |
msgstr ""
|
323 |
|
324 |
#: ../custom-contact-forms-admin.php:531
|
325 |
+
#: ../custom-contact-forms-admin.php:1025
|
326 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:236
|
327 |
msgid "Custom Code:"
|
328 |
msgstr ""
|
380 |
#: ../custom-contact-forms-admin.php:806
|
381 |
#: ../custom-contact-forms-admin.php:824
|
382 |
#: ../custom-contact-forms-admin.php:867
|
383 |
+
#: ../custom-contact-forms-admin.php:924
|
384 |
+
#: ../custom-contact-forms-admin.php:1047
|
385 |
msgid "Slug"
|
386 |
msgstr ""
|
387 |
|
428 |
#: ../custom-contact-forms-admin.php:812
|
429 |
#: ../custom-contact-forms-admin.php:833
|
430 |
#: ../custom-contact-forms-admin.php:876
|
431 |
+
#: ../custom-contact-forms-admin.php:928
|
432 |
+
#: ../custom-contact-forms-admin.php:1051
|
433 |
+
#: ../custom-contact-forms-admin.php:1072
|
434 |
+
#: ../custom-contact-forms-admin.php:1126
|
435 |
msgid "Action"
|
436 |
msgstr ""
|
437 |
|
438 |
#: ../custom-contact-forms-admin.php:627
|
439 |
#: ../custom-contact-forms-admin.php:775
|
440 |
#: ../custom-contact-forms-admin.php:847
|
441 |
+
#: ../custom-contact-forms-admin.php:953
|
442 |
+
#: ../custom-contact-forms-admin.php:1762
|
443 |
msgid "Save"
|
444 |
msgstr ""
|
445 |
|
446 |
#: ../custom-contact-forms-admin.php:628
|
447 |
#: ../custom-contact-forms-admin.php:848
|
448 |
+
#: ../custom-contact-forms-admin.php:954
|
449 |
+
#: ../custom-contact-forms-admin.php:1095
|
450 |
msgid "Delete"
|
451 |
msgstr ""
|
452 |
|
469 |
msgstr ""
|
470 |
|
471 |
#: ../custom-contact-forms-admin.php:674
|
472 |
+
#: ../custom-contact-forms-admin.php:1016
|
473 |
msgid "create"
|
474 |
msgstr ""
|
475 |
|
483 |
|
484 |
#: ../custom-contact-forms-admin.php:739
|
485 |
#: ../custom-contact-forms-admin.php:770
|
486 |
+
#: ../custom-contact-forms-admin.php:1396
|
487 |
msgid "None"
|
488 |
msgstr ""
|
489 |
|
505 |
msgstr ""
|
506 |
|
507 |
#: ../custom-contact-forms-admin.php:891
|
508 |
+
msgid "Used to identify this option, solely for admin purposes; must be unique, and contain only letters, numbers, and underscores. Example: 'slug_one'"
|
509 |
msgstr ""
|
510 |
|
511 |
#: ../custom-contact-forms-admin.php:895
|
514 |
msgstr ""
|
515 |
|
516 |
#: ../custom-contact-forms-admin.php:899
|
517 |
+
msgid "This is what is shown to the user in the dropdown or radio field. Example: 'United States'"
|
518 |
msgstr ""
|
519 |
|
520 |
#: ../custom-contact-forms-admin.php:903
|
522 |
msgid "Option Value:"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: ../custom-contact-forms-admin.php:905
|
526 |
+
msgid "This is the actual value of the option which is not shown to the user. This can be the same thing as the label. An example pairing of label => value is: 'The color green' => 'green' or 'Yes' => '1'."
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
#: ../custom-contact-forms-admin.php:907
|
530 |
+
msgid "This is the actual value of the option which is not shown to the user. This can be the same thing as the label. An example pairing of label => value is: \"The color green\" => \"green\" or \"Yes\" => \"1\"."
|
531 |
msgstr ""
|
532 |
|
533 |
#: ../custom-contact-forms-admin.php:910
|
534 |
msgid "Create Field Option"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: ../custom-contact-forms-admin.php:923
|
|
|
|
|
|
|
|
|
538 |
msgid "Form Display Code"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: ../custom-contact-forms-admin.php:925
|
542 |
+
#: ../custom-contact-forms-admin.php:1048
|
543 |
msgid "Title"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: ../custom-contact-forms-admin.php:926
|
547 |
+
#: ../custom-contact-forms-admin.php:1049
|
548 |
msgid "Button Text"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: ../custom-contact-forms-admin.php:927
|
552 |
+
#: ../custom-contact-forms-admin.php:1050
|
553 |
msgid "Style"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: ../custom-contact-forms-admin.php:961
|
557 |
msgid "Method"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: ../custom-contact-forms-admin.php:962
|
561 |
msgid "Form Action"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: ../custom-contact-forms-admin.php:963
|
565 |
msgid "Destination Email"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: ../custom-contact-forms-admin.php:964
|
569 |
msgid "Success Message Title"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: ../custom-contact-forms-admin.php:965
|
573 |
msgid "Success Message"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: ../custom-contact-forms-admin.php:966
|
577 |
msgid "Custom Success URL"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: ../custom-contact-forms-admin.php:969
|
581 |
msgid "The Form Method is the method by which information is transfer through your form. If you aren't an expert with HTML and PHP, leave this as Post."
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: ../custom-contact-forms-admin.php:973
|
585 |
msgid "This lets you process your forms through alternate scripts. If you use a service like InfusionSoft or Aweber, set this to be the same form action as the code provided to you by that service, otherwise leave this blank."
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: ../custom-contact-forms-admin.php:975
|
589 |
+
msgid "Specify the email address(es) that you wish to receive form submission emails (provided that Email Form Submissions is set to Yes in general settings). Seperate multiple email addresses with semi-colons (ex: email1@gmail.com;email2@gmail.com;email3@gmail.com)."
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: ../custom-contact-forms-admin.php:977
|
593 |
msgid "This will be displayed as the header in a popover when the form is filled out successfully when no custom success page is specified; if left blank it will use the default specified in general settings."
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: ../custom-contact-forms-admin.php:979
|
597 |
msgid "This will be displayed in a popover when the form is filled out successfully when no custom success page is specified; if left blank it will use the default specified in general settings."
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: ../custom-contact-forms-admin.php:981
|
601 |
msgid "If this is filled out, users will be sent to this thank you page when they successfully fill out this form. If it is left blank, a popover showing the form's 'success message' will be displayed on form success."
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: ../custom-contact-forms-admin.php:986
|
605 |
msgid "Attached Fields:"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: ../custom-contact-forms-admin.php:1000
|
609 |
msgid "Dettach Field"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: ../custom-contact-forms-admin.php:1003
|
613 |
msgid "Attach fields in the order you want them displayed."
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: ../custom-contact-forms-admin.php:1006
|
617 |
msgid "Attach Field:"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: ../custom-contact-forms-admin.php:1011
|
621 |
msgid "Attach Field"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: ../custom-contact-forms-admin.php:1014
|
625 |
msgid "Attach fixed fields or ones you"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: ../custom-contact-forms-admin.php:1020
|
629 |
msgid "The form display code above ([customcontact form=x]) will only work in Wordpress pages and posts. If you want to display this form in a theme file such as page.php, header.php, index.php, category.php, etc, then insert this PHP snippet."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: ../custom-contact-forms-admin.php:1021
|
633 |
msgid "Code to Display Form in Theme Files:"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: ../custom-contact-forms-admin.php:1024
|
637 |
msgid "This field allows you to insert HTML directly after the starting <form> tag."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: ../custom-contact-forms-admin.php:1046
|
641 |
msgid "Form Code"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: ../custom-contact-forms-admin.php:1063
|
645 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:307
|
646 |
msgid "Saved Form Submissions"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: ../custom-contact-forms-admin.php:1068
|
650 |
+
#: ../custom-contact-forms-admin.php:1122
|
651 |
msgid "Date Submitted"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: ../custom-contact-forms-admin.php:1069
|
655 |
+
#: ../custom-contact-forms-admin.php:1123
|
656 |
msgid "Form Submitted"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: ../custom-contact-forms-admin.php:1070
|
660 |
+
#: ../custom-contact-forms-admin.php:1124
|
661 |
msgid "Form Page"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: ../custom-contact-forms-admin.php:1089
|
665 |
msgid "Custom HTML Form"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: ../custom-contact-forms-admin.php:1141
|
669 |
msgid "Email Form Submissions:"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: ../custom-contact-forms-admin.php:1153
|
673 |
msgid "When a user fills out one of your forms, the info submitted is saved in the Saved Form Submission section of the admin panel for you to view. If this is enabled, you will also be sent an email containing the submission info."
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: ../custom-contact-forms-admin.php:1157
|
677 |
msgid "Default Email:"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: ../custom-contact-forms-admin.php:1162
|
681 |
msgid "Form emails will be sent <span>to</span> this address, if no destination email is specified by the form."
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: ../custom-contact-forms-admin.php:1166
|
685 |
msgid "Front End JQuery:"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: ../custom-contact-forms-admin.php:1170
|
689 |
+
#: ../custom-contact-forms-admin.php:1238
|
690 |
+
#: ../custom-contact-forms-admin.php:1279
|
691 |
msgid "Enabled"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: ../custom-contact-forms-admin.php:1173
|
695 |
+
#: ../custom-contact-forms-admin.php:1241
|
696 |
+
#: ../custom-contact-forms-admin.php:1282
|
697 |
msgid "Disabled"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: ../custom-contact-forms-admin.php:1178
|
701 |
#, php-format
|
702 |
msgid "Some plugins don't setup JQuery correctly, so when any other plugin uses JQuery (whether correctly or not), JQuery works for neither plugin. This plugin uses JQuery correctly. If another plugin isn't using JQuery correctly but is more important to you than this one: disable this option. 99% of this plugin's functionality will work without JQuery, just no field instruction tooltips."
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: ../custom-contact-forms-admin.php:1182
|
706 |
msgid "Default From Email:"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: ../custom-contact-forms-admin.php:1187
|
710 |
msgid "Form emails will be sent <span>from</span> this address. It is recommended you provide a real email address that has been created through your host."
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: ../custom-contact-forms-admin.php:1191
|
714 |
msgid "Default Email Subject:"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: ../custom-contact-forms-admin.php:1196
|
718 |
msgid "Default subject to be included in all form emails."
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: ../custom-contact-forms-admin.php:1200
|
722 |
msgid "Default Form Success Message Title:"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: ../custom-contact-forms-admin.php:1205
|
726 |
msgid "If someone fills out a form for which a success message title is not provided and a custom success page is not provided, the plugin will show a popover using this field as the window title."
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: ../custom-contact-forms-admin.php:1209
|
730 |
msgid "Default Form Success Message:"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: ../custom-contact-forms-admin.php:1214
|
734 |
msgid "If someone fills out a form for which a success message is not provided and a custom success page is not provided, the plugin will show a popover containing this message."
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: ../custom-contact-forms-admin.php:1218
|
738 |
msgid "Remember Field Values:"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: ../custom-contact-forms-admin.php:1230
|
742 |
msgid "Selecting yes will make form fields remember how they were last filled out."
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: ../custom-contact-forms-admin.php:1234
|
746 |
msgid "Tooltips in Widget:"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: ../custom-contact-forms-admin.php:1246
|
750 |
msgid "Enabling this shows tooltips containing field instructions on forms in the widget."
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: ../custom-contact-forms-admin.php:1250
|
754 |
msgid "Hide Plugin Author Link in Code:"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: ../custom-contact-forms-admin.php:1263
|
758 |
msgid "Use Code Type:"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: ../custom-contact-forms-admin.php:1271
|
762 |
msgid "This lets you switch the form code between HTML and XHTML."
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: ../custom-contact-forms-admin.php:1275
|
766 |
msgid "Fancy Admin AJAX Abilities:"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: ../custom-contact-forms-admin.php:1287
|
770 |
msgid "If you enable this, creating, editing and modifying forms, fields, styles, etc in the admin panel will be done using AJAX. This means that clicking things like 'Edit' or 'Delete' will not cause the page to reload thus managing your forms will be much smoother and quicker. If you are having problems with things not saving, deleting, or inserting correctly, then disable this and fill out a bug report below."
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: ../custom-contact-forms-admin.php:1290
|
774 |
msgid "Show Sidebar Widget:"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: ../custom-contact-forms-admin.php:1295
|
778 |
msgid "On Homepage"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: ../custom-contact-forms-admin.php:1299
|
782 |
msgid "On Pages"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: ../custom-contact-forms-admin.php:1303
|
786 |
msgid "On Single Posts"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: ../custom-contact-forms-admin.php:1308
|
790 |
msgid "On Categories"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: ../custom-contact-forms-admin.php:1312
|
794 |
msgid "On Archives"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: ../custom-contact-forms-admin.php:1316
|
798 |
msgid "Update"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: ../custom-contact-forms-admin.php:1325
|
802 |
msgid "Instructions"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: ../custom-contact-forms-admin.php:1329
|
806 |
msgid "The default content will help you get a better feel of ways this plugin can be used and is the best way to learn."
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: ../custom-contact-forms-admin.php:1333
|
810 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:41
|
811 |
msgid "Insert Default Content"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: ../custom-contact-forms-admin.php:1337
|
815 |
msgid "1. Create a form."
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: ../custom-contact-forms-admin.php:1340
|
819 |
msgid "2. Create fields and attach those fields to the forms of your choice."
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: ../custom-contact-forms-admin.php:1342
|
823 |
msgid "Attach the fields in the order that you want them to show up in the form. If you mess up you can detach and reattach them. Create field options in the field option manager; field options should be attached to radio and dropdown fields."
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: ../custom-contact-forms-admin.php:1345
|
827 |
msgid "3. Display those forms in posts and pages by inserting the code: [customcontact form=<b>FORMID</b>]. Replace <b>FORMID</b> with the id listed to the left of the form slug next to the form of your choice above. You can also display forms in theme files; the code for this is provided within each forms admin section."
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: ../custom-contact-forms-admin.php:1348
|
831 |
msgid "4. Prevent spam by attaching the fixed field, captcha or ishuman. Captcha requires users to type in a number shown on an image. Ishuman requires users to check a box to prove they aren't a spam bot."
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: ../custom-contact-forms-admin.php:1351
|
835 |
msgid "5. Add a form to your sidebar, by dragging the Custom Contact Form widget in to your sidebar."
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: ../custom-contact-forms-admin.php:1354
|
839 |
msgid "6. Configure the General Settings appropriately; this is important if you want to receive your web form messages!"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: ../custom-contact-forms-admin.php:1357
|
843 |
msgid "7. Create form styles to change your forms appearances. The image below explains how each style field can change the look of your forms."
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: ../custom-contact-forms-admin.php:1360
|
847 |
msgid "8. (advanced) If you are confident in your HTML and CSS skills, you can use the"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: ../custom-contact-forms-admin.php:1362
|
851 |
msgid "Custom HTML Forms feature"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: ../custom-contact-forms-admin.php:1364
|
855 |
msgid "as a framework and write your forms from scratch. This allows you to use this plugin simply to process your form requests. The Custom HTML Forms feature will process and email any form variables sent to it regardless of whether they are created in the fields manager."
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: ../custom-contact-forms-admin.php:1367
|
859 |
msgid "These instructions briefly tell you in which order you should use forms, fields, field options, and styles."
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: ../custom-contact-forms-admin.php:1369
|
863 |
msgid "If you want to read in detail about using forms, fields, field options, styles and the rest of this plugin, click the button below."
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: ../custom-contact-forms-admin.php:1372
|
867 |
msgid "View Plugin Usage Popover"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: ../custom-contact-forms-admin.php:1385
|
871 |
msgid "There are two ways you can send emails: using the PHP mail() function or using SMTP (secure/insecure). If you choose to use the PHP mail() function you can ignore all the other options. For some people Wordpress's default way of sending mail does not work; if for some reason your mail is being sent you should try the SMTP option."
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: ../custom-contact-forms-admin.php:1386
|
875 |
msgid "* Send My Emails Using the Following:"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: ../custom-contact-forms-admin.php:1388
|
879 |
msgid "Wordpress Default"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: ../custom-contact-forms-admin.php:1389
|
883 |
msgid "SMTP"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: ../custom-contact-forms-admin.php:1390
|
887 |
msgid "(If mail isn't sending, try toggling this option.)"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: ../custom-contact-forms-admin.php:1393
|
891 |
msgid "SMTP Host:"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: ../custom-contact-forms-admin.php:1394
|
895 |
msgid "SMTP Port:"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: ../custom-contact-forms-admin.php:1395
|
899 |
msgid "Encryption:"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: ../custom-contact-forms-admin.php:1397
|
903 |
msgid "SSL"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: ../custom-contact-forms-admin.php:1398
|
907 |
msgid "TLS"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: ../custom-contact-forms-admin.php:1402
|
911 |
msgid "SMTP Authentication:"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: ../custom-contact-forms-admin.php:1402
|
915 |
msgid "None Needed"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: ../custom-contact-forms-admin.php:1402
|
919 |
msgid "Use SMTP Username/Password"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: ../custom-contact-forms-admin.php:1403
|
923 |
msgid "SMTP Username:"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: ../custom-contact-forms-admin.php:1404
|
927 |
msgid "SMTP Password:"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: ../custom-contact-forms-admin.php:1407
|
931 |
msgid "Save Mail Sending Options"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: ../custom-contact-forms-admin.php:1414
|
935 |
msgid "Create A Style for Your Forms"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: ../custom-contact-forms-admin.php:1418
|
939 |
msgid "Use this manager to create styles for your forms. Each field is already filled out with nice look defaults. It is recommended you simply input a slug and click create to see the defaults before you start changing values."
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: ../custom-contact-forms-admin.php:1424
|
943 |
msgid "Style Slug:"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: ../custom-contact-forms-admin.php:1427
|
947 |
msgid "(Must be unique)"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: ../custom-contact-forms-admin.php:1431
|
951 |
+
#: ../custom-contact-forms-admin.php:1832
|
952 |
+
#: ../custom-contact-forms-admin.php:1841
|
953 |
msgid "Title Font Size:"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: ../custom-contact-forms-admin.php:1434
|
957 |
msgid "(ex: 10pt, 10px, 1em)"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: ../custom-contact-forms-admin.php:1438
|
961 |
+
#: ../custom-contact-forms-admin.php:1880
|
962 |
+
#: ../custom-contact-forms-admin.php:1948
|
963 |
msgid "Title Font Color:"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: ../custom-contact-forms-admin.php:1441
|
967 |
+
#: ../custom-contact-forms-admin.php:1462
|
968 |
+
#: ../custom-contact-forms-admin.php:1526
|
969 |
+
#: ../custom-contact-forms-admin.php:1627
|
970 |
+
#: ../custom-contact-forms-admin.php:1634
|
971 |
+
#: ../custom-contact-forms-admin.php:1662
|
972 |
msgid "(ex: FF0000)"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: ../custom-contact-forms-admin.php:1445
|
976 |
+
#: ../custom-contact-forms-admin.php:1805
|
977 |
msgid "Label Width:"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: ../custom-contact-forms-admin.php:1448
|
981 |
msgid "(ex: 100px or 20%)"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: ../custom-contact-forms-admin.php:1452
|
985 |
+
#: ../custom-contact-forms-admin.php:1846
|
986 |
msgid "Label Font Size:"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: ../custom-contact-forms-admin.php:1455
|
990 |
+
#: ../custom-contact-forms-admin.php:1620
|
991 |
msgid "(ex: 10px, 10pt, 1em)"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: ../custom-contact-forms-admin.php:1459
|
995 |
+
#: ../custom-contact-forms-admin.php:1885
|
996 |
msgid "Label Font Color:"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: ../custom-contact-forms-admin.php:1466
|
1000 |
+
#: ../custom-contact-forms-admin.php:1772
|
1001 |
msgid "Text Field Width:"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: ../custom-contact-forms-admin.php:1469
|
1005 |
+
#: ../custom-contact-forms-admin.php:1476
|
1006 |
+
#: ../custom-contact-forms-admin.php:1483
|
1007 |
+
#: ../custom-contact-forms-admin.php:1563
|
1008 |
msgid "(ex: 100px or 100%)"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: ../custom-contact-forms-admin.php:1473
|
1012 |
msgid "Textarea Field Width:"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: ../custom-contact-forms-admin.php:1480
|
1016 |
msgid "Textarea Field Height:"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: ../custom-contact-forms-admin.php:1487
|
1020 |
+
#: ../custom-contact-forms-admin.php:1851
|
1021 |
msgid "Field Font Size:"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: ../custom-contact-forms-admin.php:1490
|
1025 |
msgid "(ex: 10px, 10pt, 1em"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: ../custom-contact-forms-admin.php:1494
|
1029 |
+
#: ../custom-contact-forms-admin.php:1890
|
1030 |
msgid "Field Font Color:"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: ../custom-contact-forms-admin.php:1497
|
1034 |
+
#: ../custom-contact-forms-admin.php:1533
|
1035 |
msgid "(ex: 333333)"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: ../custom-contact-forms-admin.php:1501
|
1039 |
+
#: ../custom-contact-forms-admin.php:1939
|
1040 |
msgid "Field Border Style:"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: ../custom-contact-forms-admin.php:1509
|
1044 |
+
#: ../custom-contact-forms-admin.php:1900
|
1045 |
msgid "Form Margin:"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: ../custom-contact-forms-admin.php:1512
|
1049 |
+
#: ../custom-contact-forms-admin.php:1519
|
1050 |
+
#: ../custom-contact-forms-admin.php:1641
|
1051 |
+
#: ../custom-contact-forms-admin.php:1648
|
1052 |
msgid "(ex: 5px or 1em)"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: ../custom-contact-forms-admin.php:1516
|
1056 |
+
#: ../custom-contact-forms-admin.php:1792
|
1057 |
msgid "Label Margin:"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: ../custom-contact-forms-admin.php:1523
|
1061 |
msgid "Textarea Background Color:"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: ../custom-contact-forms-admin.php:1530
|
1065 |
msgid "Success Popover Font Color:"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: ../custom-contact-forms-admin.php:1537
|
1069 |
msgid "Success Popover Title Font Size:"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: ../custom-contact-forms-admin.php:1540
|
1073 |
+
#: ../custom-contact-forms-admin.php:1547
|
1074 |
+
#: ../custom-contact-forms-admin.php:1669
|
1075 |
+
#: ../custom-contact-forms-admin.php:1692
|
1076 |
msgid "(ex: 12px, 1em, 100%)"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: ../custom-contact-forms-admin.php:1544
|
1080 |
+
#: ../custom-contact-forms-admin.php:1836
|
1081 |
msgid "Form Background Color:"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: ../custom-contact-forms-admin.php:1551
|
1085 |
msgid "Tooltip Background Color:"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: ../custom-contact-forms-admin.php:1554
|
1089 |
msgid "(ex: 000000 or black)"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: ../custom-contact-forms-admin.php:1560
|
1093 |
+
#: ../custom-contact-forms-admin.php:1934
|
1094 |
msgid "Field Border Color:"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: ../custom-contact-forms-admin.php:1567
|
1098 |
+
#: ../custom-contact-forms-admin.php:1917
|
1099 |
msgid "Form Border Style:"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: ../custom-contact-forms-admin.php:1575
|
1103 |
+
#: ../custom-contact-forms-admin.php:1929
|
1104 |
msgid "Form Border Color:"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: ../custom-contact-forms-admin.php:1578
|
1108 |
msgid "(ex: 000000)"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: ../custom-contact-forms-admin.php:1582
|
1112 |
+
#: ../custom-contact-forms-admin.php:1924
|
1113 |
msgid "Form Border Width:"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: ../custom-contact-forms-admin.php:1585
|
1117 |
msgid "(ex: 1px)"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: ../custom-contact-forms-admin.php:1589
|
1121 |
+
#: ../custom-contact-forms-admin.php:1767
|
1122 |
msgid "Form Width:"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: ../custom-contact-forms-admin.php:1592
|
1126 |
msgid "(ex: 100px or 50%)"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: ../custom-contact-forms-admin.php:1596
|
1130 |
msgid "Form Font Family:"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: ../custom-contact-forms-admin.php:1599
|
1134 |
msgid "(ex: Verdana, Tahoma, Arial)"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: ../custom-contact-forms-admin.php:1603
|
1138 |
+
#: ../custom-contact-forms-admin.php:1810
|
1139 |
msgid "Button Width:"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: ../custom-contact-forms-admin.php:1606
|
1143 |
msgid "(ex: 100px, 30%, auto)"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: ../custom-contact-forms-admin.php:1610
|
1147 |
+
#: ../custom-contact-forms-admin.php:1815
|
1148 |
msgid "Button Height:"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: ../custom-contact-forms-admin.php:1613
|
1152 |
msgid "(ex: 100px or 30%)"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: ../custom-contact-forms-admin.php:1617
|
1156 |
+
#: ../custom-contact-forms-admin.php:1856
|
1157 |
msgid "Button Font Size:"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: ../custom-contact-forms-admin.php:1624
|
1161 |
+
#: ../custom-contact-forms-admin.php:1895
|
1162 |
msgid "Button Font Color:"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: ../custom-contact-forms-admin.php:1631
|
1166 |
+
#: ../custom-contact-forms-admin.php:1820
|
1167 |
msgid "Field Background Color:"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: ../custom-contact-forms-admin.php:1638
|
1171 |
+
#: ../custom-contact-forms-admin.php:1861
|
1172 |
msgid "Form Padding:"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: ../custom-contact-forms-admin.php:1645
|
1176 |
+
#: ../custom-contact-forms-admin.php:1825
|
1177 |
msgid "Title Margin:"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: ../custom-contact-forms-admin.php:1652
|
1181 |
+
#: ../custom-contact-forms-admin.php:1787
|
1182 |
msgid "Dropdown Width:"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: ../custom-contact-forms-admin.php:1655
|
1186 |
msgid "(ex: 30px, 20%, or auto)"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: ../custom-contact-forms-admin.php:1659
|
1190 |
msgid "Success Popover Border Color:"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: ../custom-contact-forms-admin.php:1666
|
1194 |
msgid "Success Popover Font Size:"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: ../custom-contact-forms-admin.php:1673
|
1198 |
msgid "Success Popover Height:"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: ../custom-contact-forms-admin.php:1676
|
1202 |
msgid "(ex: 200px, 6em, 50%)"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: ../custom-contact-forms-admin.php:1680
|
1206 |
+
#: ../custom-contact-forms-admin.php:1953
|
1207 |
msgid "Field Border Roundness:"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: ../custom-contact-forms-admin.php:1683
|
1211 |
msgid "(ex: 6px, or 0px)"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: ../custom-contact-forms-admin.php:1687
|
1215 |
+
#: ../custom-contact-forms-admin.php:1756
|
1216 |
+
#: ../custom-contact-forms-admin.php:1873
|
1217 |
msgid "Tooltip"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: ../custom-contact-forms-admin.php:1688
|
1221 |
+
#: ../custom-contact-forms-admin.php:1757
|
1222 |
+
#: ../custom-contact-forms-admin.php:1874
|
1223 |
msgid "A tooltip is the little box that fades in displaying 'Field Instructions' when a user selects a particular field."
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: ../custom-contact-forms-admin.php:1689
|
1227 |
+
#: ../custom-contact-forms-admin.php:1868
|
1228 |
msgid "Font Size:"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: ../custom-contact-forms-admin.php:1696
|
1232 |
msgid "Tooltip Font Color:"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: ../custom-contact-forms-admin.php:1699
|
1236 |
msgid "(ex: ffffff or white)"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: ../custom-contact-forms-admin.php:1702
|
1240 |
msgid "Create Style"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: ../custom-contact-forms-admin.php:1710
|
1244 |
msgid "Manage Form Styles"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: ../custom-contact-forms-admin.php:1732
|
1248 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:125
|
1249 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:178
|
1250 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:206
|
1251 |
msgid "Slug:"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: ../custom-contact-forms-admin.php:1737
|
1255 |
msgid "Font Family:"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: ../custom-contact-forms-admin.php:1742
|
1259 |
msgid "Textarea Background"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: ../custom-contact-forms-admin.php:1744
|
1263 |
msgid "Color:"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: ../custom-contact-forms-admin.php:1749
|
1267 |
+
#: ../custom-contact-forms-admin.php:1797
|
1268 |
+
#: ../custom-contact-forms-admin.php:1830
|
1269 |
+
#: ../custom-contact-forms-admin.php:1866
|
1270 |
+
#: ../custom-contact-forms-admin.php:1905
|
1271 |
+
#: ../custom-contact-forms-admin.php:1946
|
1272 |
msgid "Success Popover"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: ../custom-contact-forms-admin.php:1751
|
1276 |
msgid "Border Color:"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: ../custom-contact-forms-admin.php:1758
|
1280 |
+
#: ../custom-contact-forms-admin.php:1907
|
1281 |
msgid "Font Color:"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: ../custom-contact-forms-admin.php:1764
|
1285 |
msgid "Delete Style"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: ../custom-contact-forms-admin.php:1777
|
1289 |
msgid "Textarea Width:"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: ../custom-contact-forms-admin.php:1782
|
1293 |
msgid "Textarea Height:"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: ../custom-contact-forms-admin.php:1799
|
1297 |
msgid "Height:"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: ../custom-contact-forms-admin.php:1875
|
1301 |
msgid "Background Color:"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: ../custom-contact-forms-admin.php:1912
|
1305 |
msgid "Tooltip Font Size:"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: ../custom-contact-forms-admin.php:1981
|
1309 |
msgid "Report a Bug/Suggest a Feature"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: ../custom-contact-forms-admin.php:1988
|
1313 |
msgid "Your Name:"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: ../custom-contact-forms-admin.php:1994
|
1317 |
msgid "Your Email:"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: ../custom-contact-forms-admin.php:2000
|
1321 |
msgid "Your Message:"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: ../custom-contact-forms-admin.php:2006
|
1325 |
msgid "Purpose of this message:"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: ../custom-contact-forms-admin.php:2016
|
1329 |
msgid "Plugin Question"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: ../custom-contact-forms-admin.php:2022
|
1333 |
msgid "Send Message"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: ../custom-contact-forms-admin.php:2030
|
1337 |
msgid "Custom HTML Forms (Advanced)"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: ../custom-contact-forms-admin.php:2034
|
1341 |
msgid ""
|
1342 |
"If you know HTML and simply want to use this plugin to process form requests, this feature is for you. \n"
|
1343 |
"\t\t\t\t\tThe following HTML is a the framework to which you must adhere. In order for your form to work you MUST do the following: a) Keep the form action/method the same (yes the action is supposed to be empty), b) Include all the hidden fields shown below, c) provide a \n"
|
1344 |
"\t\t\t\t\thidden field with a success message or thank you page (both hidden fields are included below, you must choose one or the other and fill in the value part of the input field appropriately."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: ../custom-contact-forms-admin.php:2041
|
1348 |
msgid "Thank you for filling out our form!"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: ../custom-contact-forms-admin.php:2046
|
1352 |
msgid ""
|
1353 |
"Build your form in here. It is recommended you only use this feature if you are experienced with HTML. \n"
|
1354 |
"The success_message field will add a popover containing the message when the form is completed successfully, the thank_you_page field will force \n"
|
1356 |
"the field names you want required by commas. Remember to use underscores instead of spaces in field names!"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: ../custom-contact-forms-admin.php:2057
|
1360 |
msgid "Export"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: ../custom-contact-forms-admin.php:2062
|
1364 |
msgid ""
|
1365 |
"Preforming a Custom Contact Forms export will create a file of the form \n"
|
1366 |
"\t\t\t\t\t\tccf-export-xxxx.sql on your web server. The file created contains SQL that \n"
|
1367 |
"\t\t\t\t\t\twill recreate all the plugin data on any Wordpress installation. After Custom Contact Forms creates the export file, you will be prompted to download it. You can use this file as a backup in case your Wordpress database gets ruined."
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: ../custom-contact-forms-admin.php:2066
|
1371 |
msgid "Export All CCF Plugin Content"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: ../custom-contact-forms-admin.php:2072
|
1375 |
msgid "Import"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: ../custom-contact-forms-admin.php:2078
|
1379 |
msgid "Browse to a CCF .sql export file to import Custom Contact Form data from another Wordpress installation to this one. Pressing the 'Clear and Import' button deletes all current data and then imports the selected file; this will not work for merging to data!. Clearing all CCF data before importing prevents any conflicts from occuring. Before you attempt an import, you should always download a backup, by clicking the 'Export All' button."
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: ../custom-contact-forms-admin.php:2081
|
1383 |
msgid "Choose What You Want to Use from the Import File:"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: ../custom-contact-forms-admin.php:2087
|
1387 |
msgid "Use General Settings"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: ../custom-contact-forms-admin.php:2093
|
1391 |
+
#: ../custom-contact-forms-admin.php:2111
|
1392 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:8
|
1393 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:199
|
1394 |
msgid "Forms"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: ../custom-contact-forms-admin.php:2099
|
1398 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:26
|
1399 |
msgid "Form Submissions"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: ../custom-contact-forms-admin.php:2105
|
1403 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:11
|
1404 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:49
|
1405 |
msgid "Fields"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: ../custom-contact-forms-admin.php:2117
|
1409 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:14
|
1410 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:171
|
1411 |
msgid "Field Options"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: ../custom-contact-forms-admin.php:2123
|
1415 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:17
|
1416 |
msgid "Styles"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: ../custom-contact-forms-admin.php:2129
|
1420 |
msgid "Choose an Import File:"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: ../custom-contact-forms-admin.php:2133
|
1424 |
msgid "Clear and Import"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: ../custom-contact-forms-admin.php:2135
|
1428 |
msgid "Yes, I want to do this and have created a backup."
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: ../custom-contact-forms-admin.php:2142
|
1432 |
msgid "Custom Contact Forms Plugin News"
|
1433 |
msgstr ""
|
1434 |
|
1628 |
msgstr ""
|
1629 |
|
1630 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:243
|
1631 |
+
msgid "Specify the email address(es) that should receive all form submissions. Seperate multiple email addresses with semi-colons (ex: email1@gmail.com;email2@gmail.com;email3@gmail.com). If you leave this blank it will revert to the default specified in general settings. You can set forms not to send email in General Settings."
|
1632 |
msgstr ""
|
1633 |
|
1634 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:248
|
modules/usage_popover/custom-contact-forms-usage-popover.php
CHANGED
@@ -240,7 +240,7 @@
|
|
240 |
<li><span>
|
241 |
<?php _e('Form Destination Email:', 'custom-contact-forms'); ?>
|
242 |
</span>
|
243 |
-
<?php _e("Specify the email that should receive all form submissions. If you leave this blank it will revert to the default specified in general settings.", 'custom-contact-forms'); ?>
|
244 |
</li>
|
245 |
<li><span>
|
246 |
<?php _e('Form Success Message:', 'custom-contact-forms'); ?>
|
240 |
<li><span>
|
241 |
<?php _e('Form Destination Email:', 'custom-contact-forms'); ?>
|
242 |
</span>
|
243 |
+
<?php _e("Specify the email address(es) that should receive all form submissions. Seperate multiple email addresses with semi-colons (ex: email1@gmail.com;email2@gmail.com;email3@gmail.com). If you leave this blank it will revert to the default specified in general settings. You can set forms not to send email in General Settings.", 'custom-contact-forms'); ?>
|
244 |
</li>
|
245 |
<li><span>
|
246 |
<?php _e('Form Success Message:', 'custom-contact-forms'); ?>
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.taylorlovett.com
|
|
4 |
Tags: contact form, web form, custom contact form, custom forms, captcha form, contact fields, form mailers
|
5 |
Requires at least: 2.8.1
|
6 |
Tested up to: 3.0.1
|
7 |
-
Stable tag: 4.0.
|
8 |
|
9 |
Gauranteed to be the most customizable and intuitive contact form plugin for Wordpress.
|
10 |
|
@@ -21,10 +21,10 @@ Custom Contact Forms 4.0 will revolutionize the idea of a Wordpress plugin.
|
|
21 |
* __NEW__ - This plugin can now be translated in to different languages.
|
22 |
* __NEW__ - Error messages can be customized for each field
|
23 |
* Choose between XHTML or HTML. All code is clean and valid!
|
24 |
-
* Create __unlimited__ forms
|
25 |
-
* Create __unlimited__ fields
|
26 |
* Required Fields
|
27 |
* Custom Contact Forms now uses PHPMailer and thus supports STMP and SSL
|
|
|
28 |
* Create text fields, textareas, checkboxs, and dropdown fields!
|
29 |
* Custom HTML Forms Feature - if you are a web developer you can write your own form html and __use this plugin simply to process your form requests__. Comes with a few useful features.
|
30 |
* __Displays forms in theme files__ as well as pages and posts.
|
@@ -101,6 +101,12 @@ Visit http://www.taylorlovett.com/wordpress-plugins for screenshots. Right now a
|
|
101 |
|
102 |
== Changelog ==
|
103 |
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
= 4.0.0 =
|
105 |
* custom-contact-forms.php - Saved form submissions manager, form background color added to style manager, import/export feature
|
106 |
* custom-contact-forms-user-data.php - Saved form submission
|
4 |
Tags: contact form, web form, custom contact form, custom forms, captcha form, contact fields, form mailers
|
5 |
Requires at least: 2.8.1
|
6 |
Tested up to: 3.0.1
|
7 |
+
Stable tag: 4.0.1
|
8 |
|
9 |
Gauranteed to be the most customizable and intuitive contact form plugin for Wordpress.
|
10 |
|
21 |
* __NEW__ - This plugin can now be translated in to different languages.
|
22 |
* __NEW__ - Error messages can be customized for each field
|
23 |
* Choose between XHTML or HTML. All code is clean and valid!
|
24 |
+
* Create __unlimited__ forms and fields
|
|
|
25 |
* Required Fields
|
26 |
* Custom Contact Forms now uses PHPMailer and thus supports STMP and SSL
|
27 |
+
* __NEW__ Have your contact forms send mail to multiple email addresses
|
28 |
* Create text fields, textareas, checkboxs, and dropdown fields!
|
29 |
* Custom HTML Forms Feature - if you are a web developer you can write your own form html and __use this plugin simply to process your form requests__. Comes with a few useful features.
|
30 |
* __Displays forms in theme files__ as well as pages and posts.
|
101 |
|
102 |
== Changelog ==
|
103 |
|
104 |
+
= 4.0.1 =
|
105 |
+
* custom-contact-forms.php
|
106 |
+
* custom-contact-forms-admin.php - support for multiple form destination emails added
|
107 |
+
* custom-contact-forms-front.php - Mail bug fixed, email validation bug fixed
|
108 |
+
* lang/custom-contact-forms.php - Phrases deleted/added
|
109 |
+
|
110 |
= 4.0.0 =
|
111 |
* custom-contact-forms.php - Saved form submissions manager, form background color added to style manager, import/export feature
|
112 |
* custom-contact-forms-user-data.php - Saved form submission
|