Version Description
- custom-contact-forms-admin.php - Admin panel updated, WP_PLUGIN_URL to plugins_url()
- custom-contact-forms-front.php - WP_PLUGIN_URL to plugins_url()
Download this release
Release Info
Developer | tlovett1 |
Plugin | Custom Contact Forms |
Version | 4.0.8 |
Comparing to | |
See all releases |
Code changes from version 4.0.7 to 4.0.8
- css/custom-contact-forms-admin.css +21 -0
- css/custom-contact-forms.css +1 -0
- custom-contact-forms-admin.php +40 -25
- custom-contact-forms-front.php +5 -5
- custom-contact-forms.php +1 -1
- lang/custom-contact-forms.mo +0 -0
- lang/custom-contact-forms.po +456 -456
- modules/db/custom-contact-forms-db.php +3 -1
- readme.txt +14 -2
css/custom-contact-forms-admin.css
CHANGED
@@ -32,6 +32,27 @@
|
|
32 |
line-height:normal;
|
33 |
}
|
34 |
#customcontactforms-admin .genesis span { color:red; font-weight:bold; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
#customcontactforms-admin input[type=button] {
|
36 |
-moz-background-clip:border;
|
37 |
-moz-background-inline-policy:continuous;
|
32 |
line-height:normal;
|
33 |
}
|
34 |
#customcontactforms-admin .genesis span { color:red; font-weight:bold; }
|
35 |
+
|
36 |
+
#customcontactforms-admin form.blog-horizontal-form {
|
37 |
+
background-color:#FFFEEB;
|
38 |
+
width:920px;
|
39 |
+
border:1px solid #cccccc;
|
40 |
+
padding:7px;
|
41 |
+
display:block;
|
42 |
+
height:30px;
|
43 |
+
text-align:center;
|
44 |
+
margin:.5em 0 .8em 5px;
|
45 |
+
-moz-border-radius:11px;
|
46 |
+
-webkit-border-radius:11px;
|
47 |
+
border-radius:11px;
|
48 |
+
font-size:11px;
|
49 |
+
line-height:normal;
|
50 |
+
}
|
51 |
+
|
52 |
+
#customcontactforms-admin form.blog-horizontal-form span { font-weight:bold; padding-right:4px; }
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
#customcontactforms-admin input[type=button] {
|
57 |
-moz-background-clip:border;
|
58 |
-moz-background-inline-policy:continuous;
|
css/custom-contact-forms.css
CHANGED
@@ -85,6 +85,7 @@ form.customcontactform-sidebar div select { width:auto; }
|
|
85 |
border-spacing:0;
|
86 |
width:480px;
|
87 |
height:200px;
|
|
|
88 |
padding:0px;
|
89 |
margin:0;
|
90 |
-moz-border-radius:10px;
|
85 |
border-spacing:0;
|
86 |
width:480px;
|
87 |
height:200px;
|
88 |
+
z-index:10000;
|
89 |
padding:0px;
|
90 |
margin:0;
|
91 |
-moz-border-radius:10px;
|
custom-contact-forms-admin.php
CHANGED
@@ -37,7 +37,7 @@ if (!class_exists('CustomContactFormsAdmin')) {
|
|
37 |
$transit = new CustomContactFormsExport(parent::getAdminOptionsName());
|
38 |
$transit->exportAll();
|
39 |
$file = $transit->exportToFile();
|
40 |
-
CustomContactFormsStatic::redirect(
|
41 |
}
|
42 |
}
|
43 |
|
@@ -143,9 +143,9 @@ if (!class_exists('CustomContactFormsAdmin')) {
|
|
143 |
}
|
144 |
|
145 |
function insertBackEndStyles() {
|
146 |
-
wp_register_style('CCFStandardsCSS',
|
147 |
-
wp_register_style('CCFAdminCSS',
|
148 |
-
wp_register_style('CCFColorPickerCSS',
|
149 |
wp_enqueue_style('CCFStandardsCSS');
|
150 |
wp_enqueue_style('CCFAdminCSS');
|
151 |
wp_enqueue_style('CCFColorPickerCSS');
|
@@ -163,23 +163,23 @@ if (!class_exists('CustomContactFormsAdmin')) {
|
|
163 |
var click_to_confirm = "<?php _e('Click to Confirm', 'custom-contact-forms'); ?>";
|
164 |
var delete_confirm = "<?php _e('Are you sure you want to delete this', 'custom-contact-forms'); ?>";
|
165 |
var error = "<?php _e('An error has occured. Please try again later.', 'custom-contact-forms'); ?>";
|
166 |
-
var ccf_plugin_dir = "<?php echo
|
167 |
var ccf_file = "<?php echo get_option('siteurl') . '/wp-admin/options-general.php?page=custom-contact-forms'; ?>";
|
168 |
</script>
|
169 |
<?php
|
170 |
wp_enqueue_script('jquery');
|
171 |
wp_enqueue_script('jquery-ui-core');
|
172 |
wp_enqueue_script('jquery-ui-tabs');
|
173 |
-
wp_enqueue_script('jquery-tools',
|
174 |
-
wp_enqueue_script('ccf-admin-inc',
|
175 |
-
wp_enqueue_script('ccf-admin',
|
176 |
if ($admin_options['admin_ajax'] == 1)
|
177 |
-
wp_enqueue_script('ccf-admin-ajax',
|
178 |
-
wp_enqueue_script('ccf-colorpicker',
|
179 |
-
wp_enqueue_script('ccf-eye',
|
180 |
-
wp_enqueue_script('ccf-utils',
|
181 |
-
wp_enqueue_script('ccf-layout',
|
182 |
-
wp_enqueue_script('ccf-pagination',
|
183 |
}
|
184 |
|
185 |
function printAdminPage() {
|
@@ -359,16 +359,22 @@ if (!class_exists('CustomContactFormsAdmin')) {
|
|
359 |
<li><a href="#import-export"><?php _e("Import / Export (New!)", 'custom-contact-forms'); ?></a></li>
|
360 |
<li class="last"><a href="#plugin-news"><?php _e("Plugin News", 'custom-contact-forms'); ?></a></li>
|
361 |
</ul>
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
372 |
</a> <a name="create-fields"></a>
|
373 |
<div id="create-fields" class="postbox">
|
374 |
<h3 class="hndle"><span>
|
@@ -916,7 +922,16 @@ if (!class_exists('CustomContactFormsAdmin')) {
|
|
916 |
</form>
|
917 |
</div>
|
918 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
919 |
<a name="manage-forms"></a>
|
|
|
920 |
<h3 class="manage-h3">
|
921 |
<?php _e("Manage Forms", 'custom-contact-forms'); ?>
|
922 |
</h3>
|
@@ -2046,7 +2061,7 @@ if (!class_exists('CustomContactFormsAdmin')) {
|
|
2046 |
<input type="hidden" name="destination_email" value="<?php echo $admin_options['default_to_email']; ?>" />
|
2047 |
<input type="hidden" name="required_fields" value="field_name1, field_name2" />
|
2048 |
|
2049 |
-
<!-- <?php _e("
|
2050 |
The success_message field will add a popover containing the message when the form is completed successfully, the thank_you_page field will force
|
2051 |
the user to be redirected to that specific page on successful form completion. The required_fields hidden field is optional; to use it seperate
|
2052 |
the field names you want required by commas. Remember to use underscores instead of spaces in field names!", 'custom-contact-forms'); ?> -->
|
37 |
$transit = new CustomContactFormsExport(parent::getAdminOptionsName());
|
38 |
$transit->exportAll();
|
39 |
$file = $transit->exportToFile();
|
40 |
+
CustomContactFormsStatic::redirect(plugins_url() . '/custom-contact-forms/download.php?location=export/' . $file);
|
41 |
}
|
42 |
}
|
43 |
|
143 |
}
|
144 |
|
145 |
function insertBackEndStyles() {
|
146 |
+
wp_register_style('CCFStandardsCSS', plugins_url() . '/custom-contact-forms/css/custom-contact-forms-standards.css');
|
147 |
+
wp_register_style('CCFAdminCSS', plugins_url() . '/custom-contact-forms/css/custom-contact-forms-admin.css');
|
148 |
+
wp_register_style('CCFColorPickerCSS', plugins_url() . '/custom-contact-forms/css/colorpicker.css');
|
149 |
wp_enqueue_style('CCFStandardsCSS');
|
150 |
wp_enqueue_style('CCFAdminCSS');
|
151 |
wp_enqueue_style('CCFColorPickerCSS');
|
163 |
var click_to_confirm = "<?php _e('Click to Confirm', 'custom-contact-forms'); ?>";
|
164 |
var delete_confirm = "<?php _e('Are you sure you want to delete this', 'custom-contact-forms'); ?>";
|
165 |
var error = "<?php _e('An error has occured. Please try again later.', 'custom-contact-forms'); ?>";
|
166 |
+
var ccf_plugin_dir = "<?php echo plugins_url() . '/custom-contact-forms'; ?>";
|
167 |
var ccf_file = "<?php echo get_option('siteurl') . '/wp-admin/options-general.php?page=custom-contact-forms'; ?>";
|
168 |
</script>
|
169 |
<?php
|
170 |
wp_enqueue_script('jquery');
|
171 |
wp_enqueue_script('jquery-ui-core');
|
172 |
wp_enqueue_script('jquery-ui-tabs');
|
173 |
+
wp_enqueue_script('jquery-tools', plugins_url() . '/custom-contact-forms/js/jquery.tools.min.js', array('jquery', 'jquery-ui-core', 'jquery-ui-tabs'), '1.0');
|
174 |
+
wp_enqueue_script('ccf-admin-inc', plugins_url() . '/custom-contact-forms/js/custom-contact-forms-admin-inc.js', array('jquery', 'jquery-ui-core', 'jquery-ui-tabs'), '1.0');
|
175 |
+
wp_enqueue_script('ccf-admin', plugins_url() . '/custom-contact-forms/js/custom-contact-forms-admin.js', array('jquery', 'jquery-ui-core', 'jquery-ui-tabs'), '1.0');
|
176 |
if ($admin_options['admin_ajax'] == 1)
|
177 |
+
wp_enqueue_script('ccf-admin-ajax', plugins_url() . '/custom-contact-forms/js/custom-contact-forms-admin-ajax.js', array('jquery', 'jquery-ui-core', 'jquery-ui-tabs'), '1.0');
|
178 |
+
wp_enqueue_script('ccf-colorpicker', plugins_url() . '/custom-contact-forms/js/colorpicker.js');
|
179 |
+
wp_enqueue_script('ccf-eye', plugins_url() . '/custom-contact-forms/js/eye.js');
|
180 |
+
wp_enqueue_script('ccf-utils', plugins_url() . '/custom-contact-forms/js/utils.js');
|
181 |
+
wp_enqueue_script('ccf-layout', plugins_url() . '/custom-contact-forms/js/layout.js?ver=1.0.2');
|
182 |
+
wp_enqueue_script('ccf-pagination', plugins_url() . '/custom-contact-forms/js/jquery.pagination.js');
|
183 |
}
|
184 |
|
185 |
function printAdminPage() {
|
359 |
<li><a href="#import-export"><?php _e("Import / Export (New!)", 'custom-contact-forms'); ?></a></li>
|
360 |
<li class="last"><a href="#plugin-news"><?php _e("Plugin News", 'custom-contact-forms'); ?></a></li>
|
361 |
</ul>
|
362 |
+
|
363 |
+
<a class="genesis" href="http://www.shareasale.com/r.cfm?b=241369&u=481196&m=28169&urllink=&afftrack=">Custom Contact Forms works best with any of the 20+ <span>Genesis</span> Wordpress child themes. The <span>Genesis Framework</span> empowers you to quickly and easily build incredible websites with WordPress.</a>
|
364 |
+
|
365 |
+
<form class="blog-horizontal-form" method="post" action="http://www.aweber.com/scripts/addlead.pl">
|
366 |
+
<input type="hidden" name="meta_web_form_id" value="1578604781" />
|
367 |
+
<input type="hidden" name="meta_split_id" value="" />
|
368 |
+
<input type="hidden" name="listname" value="ccf-plugin" />
|
369 |
+
<input type="hidden" name="redirect" value="http://www.taylorlovett.com/wordpress-plugins/tutorials-offers-tips/" id="redirect_5832e41084448adb07da67a35dc83c27" />
|
370 |
+
<input type="hidden" name="meta_adtracking" value="CCF_-_Wordpress_Plugins_Horizontal" />
|
371 |
+
<input type="hidden" name="meta_message" value="1" />
|
372 |
+
<input type="hidden" name="meta_required" value="name,email" />
|
373 |
+
<span>WordPress Plugin Offers & Exclusive Tutorials</span>
|
374 |
+
<input type="text" name="name" value="Your Name" onclick="value=''" />
|
375 |
+
<input type="text" name="email" value="Your Email" onclick="value=''" />
|
376 |
+
<input type="submit" value="Sign Up for Free" />
|
377 |
+
</form>
|
378 |
</a> <a name="create-fields"></a>
|
379 |
<div id="create-fields" class="postbox">
|
380 |
<h3 class="hndle"><span>
|
922 |
</form>
|
923 |
</div>
|
924 |
</div>
|
925 |
+
<form class="rate-me" action="https://www.paypal.com/cgi-bin/webscr" method="post">
|
926 |
+
<input type="hidden" name="cmd" value="_s-xclick">
|
927 |
+
<input type="hidden" name="hosted_button_id" value="TXYVDCH955V28">
|
928 |
+
<a href="http://wordpress.org/extend/plugins/custom-contact-forms" title="<?php _e("Rate This Plugin", 'custom-contact-forms'); ?>">
|
929 |
+
<?php _e("We need your help to continue development! Please <span>rate this plugin</span> to show your support.", 'custom-contact-forms'); ?></a>
|
930 |
+
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
|
931 |
+
<img alt="Donate to Custom Contact Forms plugin" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
|
932 |
+
</form>
|
933 |
<a name="manage-forms"></a>
|
934 |
+
|
935 |
<h3 class="manage-h3">
|
936 |
<?php _e("Manage Forms", 'custom-contact-forms'); ?>
|
937 |
</h3>
|
2061 |
<input type="hidden" name="destination_email" value="<?php echo $admin_options['default_to_email']; ?>" />
|
2062 |
<input type="hidden" name="required_fields" value="field_name1, field_name2" />
|
2063 |
|
2064 |
+
<!-- <?php _e("Paste all this code into a page or post and edit it to your liking. It is recommended you only use this feature if you are experienced with HTML.
|
2065 |
The success_message field will add a popover containing the message when the form is completed successfully, the thank_you_page field will force
|
2066 |
the user to be redirected to that specific page on successful form completion. The required_fields hidden field is optional; to use it seperate
|
2067 |
the field names you want required by commas. Remember to use underscores instead of spaces in field names!", 'custom-contact-forms'); ?> -->
|
custom-contact-forms-front.php
CHANGED
@@ -17,8 +17,8 @@ if (!class_exists('CustomContactFormsFront')) {
|
|
17 |
}
|
18 |
|
19 |
function insertFrontEndStyles() {
|
20 |
-
wp_register_style('CCFStandardsCSS',
|
21 |
-
wp_register_style('CCFFormsCSS',
|
22 |
wp_enqueue_style('CCFStandardsCSS');
|
23 |
wp_enqueue_style('CCFFormsCSS');
|
24 |
}
|
@@ -27,8 +27,8 @@ if (!class_exists('CustomContactFormsFront')) {
|
|
27 |
$admin_options = parent::getAdminOptions();
|
28 |
if ($admin_options['enable_jquery'] == 1) {
|
29 |
wp_enqueue_script('jquery');
|
30 |
-
wp_enqueue_script('jquery-tools',
|
31 |
-
wp_enqueue_script('ccf-main',
|
32 |
}
|
33 |
}
|
34 |
|
@@ -83,7 +83,7 @@ if (!class_exists('CustomContactFormsFront')) {
|
|
83 |
?>
|
84 |
<style type="text/css">
|
85 |
<!--
|
86 |
-
#ccf-form-success { border-color:#<?php echo parent::formatStyle($style->success_popover_bordercolor); ?>; height:<?php $style->success_popover_height; ?>; }
|
87 |
#ccf-form-success div { background-color:#<?php echo parent::formatStyle($style->success_popover_bordercolor); ?>; }
|
88 |
#ccf-form-success div h5 { color:#<?php echo parent::formatStyle($style->success_popover_title_fontcolor); ?>; font-size:<?php echo $style->success_popover_title_fontsize; ?>; }
|
89 |
#ccf-form-success div a { color:#<?php echo parent::formatStyle($style->success_popover_title_fontcolor); ?>; }
|
17 |
}
|
18 |
|
19 |
function insertFrontEndStyles() {
|
20 |
+
wp_register_style('CCFStandardsCSS', plugins_url() . '/custom-contact-forms/css/custom-contact-forms-standards.css');
|
21 |
+
wp_register_style('CCFFormsCSS', plugins_url() . '/custom-contact-forms/css/custom-contact-forms.css');
|
22 |
wp_enqueue_style('CCFStandardsCSS');
|
23 |
wp_enqueue_style('CCFFormsCSS');
|
24 |
}
|
27 |
$admin_options = parent::getAdminOptions();
|
28 |
if ($admin_options['enable_jquery'] == 1) {
|
29 |
wp_enqueue_script('jquery');
|
30 |
+
wp_enqueue_script('jquery-tools', plugins_url() . '/custom-contact-forms/js/jquery.tools.min.js');
|
31 |
+
wp_enqueue_script('ccf-main', plugins_url() . '/custom-contact-forms/js/custom-contact-forms.js', array('jquery', 'jquery-ui-core', 'jquery-ui-tabs', 'jquery-ui-resizable'), '1.0');
|
32 |
}
|
33 |
}
|
34 |
|
83 |
?>
|
84 |
<style type="text/css">
|
85 |
<!--
|
86 |
+
#ccf-form-success { z-index:10000; border-color:#<?php echo parent::formatStyle($style->success_popover_bordercolor); ?>; height:<?php $style->success_popover_height; ?>; }
|
87 |
#ccf-form-success div { background-color:#<?php echo parent::formatStyle($style->success_popover_bordercolor); ?>; }
|
88 |
#ccf-form-success div h5 { color:#<?php echo parent::formatStyle($style->success_popover_title_fontcolor); ?>; font-size:<?php echo $style->success_popover_title_fontsize; ?>; }
|
89 |
#ccf-form-success div a { color:#<?php echo parent::formatStyle($style->success_popover_title_fontcolor); ?>; }
|
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.8
|
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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Taylor Lovett <sdfds@sfs.com>\n"
|
8 |
"Language-Team: TaylorLovett.com <admin@taylorlovett.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -20,1415 +20,1415 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPath-4: ../modules/usage_popover\n"
|
21 |
"X-Poedit-SearchPath-5: ../modules/widget\n"
|
22 |
|
23 |
-
#: ../custom-contact-forms-admin.php:
|
24 |
msgid "Attaching"
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: ../custom-contact-forms-admin.php:
|
28 |
msgid "Dettaching"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: ../custom-contact-forms-admin.php:
|
32 |
msgid "Saving"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ../custom-contact-forms-admin.php:
|
36 |
msgid "More Options"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: ../custom-contact-forms-admin.php:
|
40 |
msgid "Expand"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: ../custom-contact-forms-admin.php:
|
44 |
msgid "Click to Confirm"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: ../custom-contact-forms-admin.php:
|
48 |
msgid "Are you sure you want to delete this"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: ../custom-contact-forms-admin.php:
|
52 |
msgid "An error has occured. Please try again later."
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: ../custom-contact-forms-admin.php:
|
56 |
msgid "Custom Contact Forms"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: ../custom-contact-forms-admin.php:
|
60 |
msgid "Plugin Instructions"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: ../custom-contact-forms-admin.php:
|
64 |
-
#: ../custom-contact-forms-admin.php:
|
65 |
msgid "General Settings"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: ../custom-contact-forms-admin.php:
|
69 |
-
#: ../custom-contact-forms-admin.php:
|
70 |
msgid "Mail Settings"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: ../custom-contact-forms-admin.php:
|
74 |
msgid "Create Fields"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: ../custom-contact-forms-admin.php:
|
78 |
msgid "Create Forms"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: ../custom-contact-forms-admin.php:
|
82 |
msgid "Manage Fields"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: ../custom-contact-forms-admin.php:
|
86 |
-
#: ../custom-contact-forms-admin.php:
|
87 |
msgid "Manage Fixed Fields"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: ../custom-contact-forms-admin.php:
|
91 |
-
#: ../custom-contact-forms-admin.php:
|
92 |
msgid "Manage Forms"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../custom-contact-forms-admin.php:
|
96 |
msgid "Saved Form Submissions (New!)"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: ../custom-contact-forms-admin.php:
|
100 |
msgid "Create Styles"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: ../custom-contact-forms-admin.php:
|
104 |
msgid "Manage Styles"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: ../custom-contact-forms-admin.php:
|
108 |
msgid "Manage Field Options"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: ../custom-contact-forms-admin.php:
|
112 |
-
#: ../custom-contact-forms-admin.php:
|
113 |
msgid "Suggest a Feature"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: ../custom-contact-forms-admin.php:
|
117 |
-
#: ../custom-contact-forms-admin.php:
|
118 |
msgid "Bug Report"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: ../custom-contact-forms-admin.php:
|
122 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:20
|
123 |
msgid "Custom HTML Forms"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: ../custom-contact-forms-admin.php:
|
127 |
msgid "Import / Export (New!)"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: ../custom-contact-forms-admin.php:
|
131 |
msgid "Plugin News"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: ../custom-contact-forms-admin.php:
|
135 |
-
msgid "Rate This Plugin"
|
136 |
-
msgstr ""
|
137 |
-
|
138 |
-
#: ../custom-contact-forms-admin.php:364
|
139 |
-
msgid "We need your help to continue development! Please <span>rate this plugin</span> to show your support."
|
140 |
-
msgstr ""
|
141 |
-
|
142 |
-
#: ../custom-contact-forms-admin.php:372
|
143 |
msgid "Create A Form Field"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: ../custom-contact-forms-admin.php:
|
147 |
msgid "Field Slug:"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: ../custom-contact-forms-admin.php:
|
151 |
msgid "This is just a unique way for CCF to refer to your field. Must be unique from other slugs and contain only underscores and alphanumeric characters."
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: ../custom-contact-forms-admin.php:
|
155 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:130
|
156 |
msgid "Field Label:"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: ../custom-contact-forms-admin.php:
|
160 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:132
|
161 |
msgid "The field label is displayed next to the field and is visible to the user."
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: ../custom-contact-forms-admin.php:
|
165 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:135
|
166 |
msgid "Field Type:"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: ../custom-contact-forms-admin.php:
|
170 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:140
|
171 |
msgid "Initial Value:"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: ../custom-contact-forms-admin.php:
|
175 |
msgid ""
|
176 |
"This is the initial value of the field. If you set the type as checkbox, it is recommend you set this to what the checkbox is implying. For example if I were creating the checkbox \n"
|
177 |
"\t\t\t\t\t\t'Are you human?', I would set the initial value to 'Yes'."
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: ../custom-contact-forms-admin.php:
|
181 |
msgid "If you set the field type as 'Dropdown' or 'Radio', you should enter the slug of the"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: ../custom-contact-forms-admin.php:
|
185 |
-
#: ../custom-contact-forms-admin.php:
|
186 |
msgid "Create a Field Option"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: ../custom-contact-forms-admin.php:
|
190 |
msgid "field option"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: ../custom-contact-forms-admin.php:
|
194 |
msgid "you would like initially selected."
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: ../custom-contact-forms-admin.php:
|
198 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:145
|
199 |
msgid "Max Length:"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: ../custom-contact-forms-admin.php:
|
203 |
msgid "0 for no limit; only applies to Text fields"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: ../custom-contact-forms-admin.php:
|
207 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:150
|
208 |
msgid "Required Field:"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: ../custom-contact-forms-admin.php:
|
212 |
-
#: ../custom-contact-forms-admin.php:
|
213 |
-
#: ../custom-contact-forms-admin.php:
|
214 |
-
#: ../custom-contact-forms-admin.php:
|
215 |
-
#: ../custom-contact-forms-admin.php:
|
216 |
-
#: ../custom-contact-forms-admin.php:
|
217 |
msgid "No"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: ../custom-contact-forms-admin.php:
|
221 |
-
#: ../custom-contact-forms-admin.php:
|
222 |
-
#: ../custom-contact-forms-admin.php:
|
223 |
-
#: ../custom-contact-forms-admin.php:
|
224 |
-
#: ../custom-contact-forms-admin.php:
|
225 |
-
#: ../custom-contact-forms-admin.php:
|
226 |
-
#: ../custom-contact-forms-admin.php:
|
227 |
msgid "Yes"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: ../custom-contact-forms-admin.php:
|
231 |
msgid "If a field is required and a user leaves it blank, the plugin will display an error message (which you can customize using 'Field Error') explaining the problem."
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: ../custom-contact-forms-admin.php:
|
235 |
-
#: ../custom-contact-forms-admin.php:
|
236 |
-
#: ../custom-contact-forms-admin.php:
|
237 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:155
|
238 |
msgid "Field Instructions:"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: ../custom-contact-forms-admin.php:
|
242 |
-
#: ../custom-contact-forms-admin.php:
|
243 |
-
#: ../custom-contact-forms-admin.php:
|
244 |
msgid "If this is filled out, a tooltip popover displaying this text will show when the field is selected."
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: ../custom-contact-forms-admin.php:
|
248 |
-
#: ../custom-contact-forms-admin.php:
|
249 |
-
#: ../custom-contact-forms-admin.php:
|
250 |
msgid "Field Class:"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: ../custom-contact-forms-admin.php:
|
254 |
msgid "If you manage your own .css stylesheet, you can use this to attach a class to this field. Leaving this blank will do nothing."
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: ../custom-contact-forms-admin.php:
|
258 |
-
#: ../custom-contact-forms-admin.php:
|
259 |
-
#: ../custom-contact-forms-admin.php:
|
260 |
msgid "Field Error:"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: ../custom-contact-forms-admin.php:
|
264 |
msgid "If a user leaves this field blank and the field is required, this error message will be shown. A generic default will show if left blank."
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: ../custom-contact-forms-admin.php:
|
268 |
msgid "Create Field"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../custom-contact-forms-admin.php:
|
272 |
msgid "Create A Form"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: ../custom-contact-forms-admin.php:
|
276 |
msgid "Form Slug:"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: ../custom-contact-forms-admin.php:
|
280 |
msgid "This is just a unique way for CCF to refer to your form. Must be unique from other slugs and contain only underscores and alphanumeric characters."
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: ../custom-contact-forms-admin.php:
|
284 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:211
|
285 |
msgid "Form Title:"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: ../custom-contact-forms-admin.php:
|
289 |
msgid "This text is displayed above the form as the heading."
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: ../custom-contact-forms-admin.php:
|
293 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:216
|
294 |
msgid "Form Method:"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: ../custom-contact-forms-admin.php:
|
298 |
msgid "If unsure, leave as is."
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: ../custom-contact-forms-admin.php:
|
302 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:221
|
303 |
msgid "Form Action:"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: ../custom-contact-forms-admin.php:
|
307 |
msgid "If unsure, leave blank. Enter a URL here, if and only if you want to process your forms somewhere else, for example with a service like Aweber or InfusionSoft."
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: ../custom-contact-forms-admin.php:
|
311 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:226
|
312 |
msgid "Form Style:"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ../custom-contact-forms-admin.php:
|
316 |
msgid "Click to create a style"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../custom-contact-forms-admin.php:
|
320 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:231
|
321 |
msgid "Submit Button Text:"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: ../custom-contact-forms-admin.php:
|
325 |
-
#: ../custom-contact-forms-admin.php:
|
326 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:236
|
327 |
msgid "Custom Code:"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: ../custom-contact-forms-admin.php:
|
331 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:238
|
332 |
msgid "If unsure, leave blank. This field allows you to insert custom HTML directly after the starting form tag."
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: ../custom-contact-forms-admin.php:
|
336 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:241
|
337 |
msgid "Form Destination Email:"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: ../custom-contact-forms-admin.php:
|
341 |
msgid "Will receive all submissions from this form; if left blank it will use the default specified in general settings."
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: ../custom-contact-forms-admin.php:
|
345 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:246
|
346 |
msgid "Form Success Message:"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: ../custom-contact-forms-admin.php:
|
350 |
-
#: ../custom-contact-forms-admin.php:
|
351 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:253
|
352 |
msgid "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."
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: ../custom-contact-forms-admin.php:
|
356 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:251
|
357 |
msgid "Form Success Message Title:"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: ../custom-contact-forms-admin.php:
|
361 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:256
|
362 |
msgid "Custom Success URL:"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: ../custom-contact-forms-admin.php:
|
366 |
msgid "If this is filled out, users will be sent to this 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."
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: ../custom-contact-forms-admin.php:
|
370 |
msgid "Create Form"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: ../custom-contact-forms-admin.php:
|
374 |
msgid "Manage User Fields"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: ../custom-contact-forms-admin.php:
|
378 |
-
#: ../custom-contact-forms-admin.php:
|
379 |
-
#: ../custom-contact-forms-admin.php:
|
380 |
-
#: ../custom-contact-forms-admin.php:
|
381 |
-
#: ../custom-contact-forms-admin.php:
|
382 |
-
#: ../custom-contact-forms-admin.php:
|
383 |
-
#: ../custom-contact-forms-admin.php:
|
384 |
-
#: ../custom-contact-forms-admin.php:
|
385 |
msgid "Slug"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: ../custom-contact-forms-admin.php:
|
389 |
-
#: ../custom-contact-forms-admin.php:
|
390 |
-
#: ../custom-contact-forms-admin.php:
|
391 |
-
#: ../custom-contact-forms-admin.php:
|
392 |
-
#: ../custom-contact-forms-admin.php:
|
393 |
-
#: ../custom-contact-forms-admin.php:
|
394 |
msgid "Label"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: ../custom-contact-forms-admin.php:
|
398 |
-
#: ../custom-contact-forms-admin.php:
|
399 |
-
#: ../custom-contact-forms-admin.php:
|
400 |
-
#: ../custom-contact-forms-admin.php:
|
401 |
msgid "Type"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: ../custom-contact-forms-admin.php:
|
405 |
-
#: ../custom-contact-forms-admin.php:
|
406 |
-
#: ../custom-contact-forms-admin.php:
|
407 |
-
#: ../custom-contact-forms-admin.php:
|
408 |
msgid "Initial Value"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: ../custom-contact-forms-admin.php:
|
412 |
-
#: ../custom-contact-forms-admin.php:
|
413 |
-
#: ../custom-contact-forms-admin.php:
|
414 |
-
#: ../custom-contact-forms-admin.php:
|
415 |
msgid "Required"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: ../custom-contact-forms-admin.php:
|
419 |
-
#: ../custom-contact-forms-admin.php:
|
420 |
-
#: ../custom-contact-forms-admin.php:
|
421 |
-
#: ../custom-contact-forms-admin.php:
|
422 |
msgid "Maxlength"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: ../custom-contact-forms-admin.php:
|
426 |
-
#: ../custom-contact-forms-admin.php:
|
427 |
-
#: ../custom-contact-forms-admin.php:
|
428 |
-
#: ../custom-contact-forms-admin.php:
|
429 |
-
#: ../custom-contact-forms-admin.php:
|
430 |
-
#: ../custom-contact-forms-admin.php:
|
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:
|
439 |
-
#: ../custom-contact-forms-admin.php:
|
440 |
-
#: ../custom-contact-forms-admin.php:
|
441 |
-
#: ../custom-contact-forms-admin.php:
|
442 |
-
#: ../custom-contact-forms-admin.php:
|
443 |
msgid "Save"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: ../custom-contact-forms-admin.php:
|
447 |
-
#: ../custom-contact-forms-admin.php:
|
448 |
-
#: ../custom-contact-forms-admin.php:
|
449 |
-
#: ../custom-contact-forms-admin.php:
|
450 |
msgid "Delete"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: ../custom-contact-forms-admin.php:
|
454 |
-
#: ../custom-contact-forms-admin.php:
|
455 |
msgid "If you manage a .CSS file for your theme, you could create a class in that file and add it to this field. If the form attaching this field is using a \"Form Style\" other than the default, styles inherited from the \"Field Class\" might be overwritten."
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: ../custom-contact-forms-admin.php:
|
459 |
-
#: ../custom-contact-forms-admin.php:
|
460 |
msgid "This lets you customize the error message displayed when this field is required and left blank."
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: ../custom-contact-forms-admin.php:
|
464 |
msgid "Dettach Field Option"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: ../custom-contact-forms-admin.php:
|
468 |
msgid "Dettach field options you"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: ../custom-contact-forms-admin.php:
|
472 |
-
#: ../custom-contact-forms-admin.php:
|
473 |
msgid "create"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: ../custom-contact-forms-admin.php:
|
477 |
msgid "Attach Field Option"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: ../custom-contact-forms-admin.php:
|
481 |
msgid "Attach field options in the order you want them to display."
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: ../custom-contact-forms-admin.php:
|
485 |
-
#: ../custom-contact-forms-admin.php:
|
486 |
-
#: ../custom-contact-forms-admin.php:
|
487 |
msgid "None"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: ../custom-contact-forms-admin.php:
|
491 |
msgid "Manage Field Options (for Dropdown and Radio Fields)"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: ../custom-contact-forms-admin.php:
|
495 |
-
#: ../custom-contact-forms-admin.php:
|
496 |
msgid "Value"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: ../custom-contact-forms-admin.php:
|
500 |
msgid "No field options have been created."
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: ../custom-contact-forms-admin.php:
|
504 |
msgid "Option Slug:"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: ../custom-contact-forms-admin.php:
|
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:
|
512 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:183
|
513 |
msgid "Option Label:"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: ../custom-contact-forms-admin.php:
|
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:
|
521 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:188
|
522 |
msgid "Option Value:"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: ../custom-contact-forms-admin.php:
|
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:
|
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:
|
534 |
msgid "Create Field Option"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ../custom-contact-forms-admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 "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:
|
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 |
-
"
|
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"
|
1355 |
"the user to be redirected to that specific page on successful form completion. The required_fields hidden field is optional; to use it seperate \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:
|
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: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:
|
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 |
|
@@ -1731,11 +1731,11 @@ msgstr ""
|
|
1731 |
msgid "More import/export methods will be added in the future. Always create a backup before attempting an import! * Note: If you are having problems getting the importer/exporter to work, try CHMODing the import/ and export/ directories to 0777."
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: ../modules/widget/custom-contact-forms-widget.php:
|
1735 |
msgid "Choose a Form:"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: ../modules/widget/custom-contact-forms-widget.php:
|
1739 |
msgid "Create a Form"
|
1740 |
msgstr ""
|
1741 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: custom-contact-forms\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-01-02 15:48-0500\n"
|
6 |
+
"PO-Revision-Date: 2011-01-02 15:49-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"
|
20 |
"X-Poedit-SearchPath-4: ../modules/usage_popover\n"
|
21 |
"X-Poedit-SearchPath-5: ../modules/widget\n"
|
22 |
|
23 |
+
#: ../custom-contact-forms-admin.php:158
|
24 |
msgid "Attaching"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: ../custom-contact-forms-admin.php:159
|
28 |
msgid "Dettaching"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: ../custom-contact-forms-admin.php:160
|
32 |
msgid "Saving"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ../custom-contact-forms-admin.php:161
|
36 |
msgid "More Options"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: ../custom-contact-forms-admin.php:162
|
40 |
msgid "Expand"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: ../custom-contact-forms-admin.php:163
|
44 |
msgid "Click to Confirm"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: ../custom-contact-forms-admin.php:164
|
48 |
msgid "Are you sure you want to delete this"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: ../custom-contact-forms-admin.php:165
|
52 |
msgid "An error has occured. Please try again later."
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: ../custom-contact-forms-admin.php:341
|
56 |
msgid "Custom Contact Forms"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: ../custom-contact-forms-admin.php:344
|
60 |
msgid "Plugin Instructions"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: ../custom-contact-forms-admin.php:345
|
64 |
+
#: ../custom-contact-forms-admin.php:1152
|
65 |
msgid "General Settings"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: ../custom-contact-forms-admin.php:346
|
69 |
+
#: ../custom-contact-forms-admin.php:1399
|
70 |
msgid "Mail Settings"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: ../custom-contact-forms-admin.php:347
|
74 |
msgid "Create Fields"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: ../custom-contact-forms-admin.php:348
|
78 |
msgid "Create Forms"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: ../custom-contact-forms-admin.php:349
|
82 |
msgid "Manage Fields"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: ../custom-contact-forms-admin.php:350
|
86 |
+
#: ../custom-contact-forms-admin.php:722
|
87 |
msgid "Manage Fixed Fields"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: ../custom-contact-forms-admin.php:351
|
91 |
+
#: ../custom-contact-forms-admin.php:936
|
92 |
msgid "Manage Forms"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: ../custom-contact-forms-admin.php:352
|
96 |
msgid "Saved Form Submissions (New!)"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: ../custom-contact-forms-admin.php:353
|
100 |
msgid "Create Styles"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: ../custom-contact-forms-admin.php:354
|
104 |
msgid "Manage Styles"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: ../custom-contact-forms-admin.php:355
|
108 |
msgid "Manage Field Options"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: ../custom-contact-forms-admin.php:356
|
112 |
+
#: ../custom-contact-forms-admin.php:2031
|
113 |
msgid "Suggest a Feature"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: ../custom-contact-forms-admin.php:357
|
117 |
+
#: ../custom-contact-forms-admin.php:2028
|
118 |
msgid "Bug Report"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: ../custom-contact-forms-admin.php:358
|
122 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:20
|
123 |
msgid "Custom HTML Forms"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: ../custom-contact-forms-admin.php:359
|
127 |
msgid "Import / Export (New!)"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: ../custom-contact-forms-admin.php:360
|
131 |
msgid "Plugin News"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: ../custom-contact-forms-admin.php:381
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
msgid "Create A Form Field"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: ../custom-contact-forms-admin.php:388
|
139 |
msgid "Field Slug:"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: ../custom-contact-forms-admin.php:392
|
143 |
msgid "This is just a unique way for CCF to refer to your field. Must be unique from other slugs and contain only underscores and alphanumeric characters."
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: ../custom-contact-forms-admin.php:396
|
147 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:130
|
148 |
msgid "Field Label:"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: ../custom-contact-forms-admin.php:400
|
152 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:132
|
153 |
msgid "The field label is displayed next to the field and is visible to the user."
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: ../custom-contact-forms-admin.php:404
|
157 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:135
|
158 |
msgid "Field Type:"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: ../custom-contact-forms-admin.php:417
|
162 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:140
|
163 |
msgid "Initial Value:"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: ../custom-contact-forms-admin.php:422
|
167 |
msgid ""
|
168 |
"This is the initial value of the field. If you set the type as checkbox, it is recommend you set this to what the checkbox is implying. For example if I were creating the checkbox \n"
|
169 |
"\t\t\t\t\t\t'Are you human?', I would set the initial value to 'Yes'."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: ../custom-contact-forms-admin.php:424
|
173 |
msgid "If you set the field type as 'Dropdown' or 'Radio', you should enter the slug of the"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: ../custom-contact-forms-admin.php:425
|
177 |
+
#: ../custom-contact-forms-admin.php:891
|
178 |
msgid "Create a Field Option"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: ../custom-contact-forms-admin.php:425
|
182 |
msgid "field option"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: ../custom-contact-forms-admin.php:426
|
186 |
msgid "you would like initially selected."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: ../custom-contact-forms-admin.php:430
|
190 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:145
|
191 |
msgid "Max Length:"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: ../custom-contact-forms-admin.php:434
|
195 |
msgid "0 for no limit; only applies to Text fields"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: ../custom-contact-forms-admin.php:438
|
199 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:150
|
200 |
msgid "Required Field:"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: ../custom-contact-forms-admin.php:442
|
204 |
+
#: ../custom-contact-forms-admin.php:624
|
205 |
+
#: ../custom-contact-forms-admin.php:765
|
206 |
+
#: ../custom-contact-forms-admin.php:1166
|
207 |
+
#: ../custom-contact-forms-admin.php:1243
|
208 |
+
#: ../custom-contact-forms-admin.php:1275
|
209 |
msgid "No"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: ../custom-contact-forms-admin.php:445
|
213 |
+
#: ../custom-contact-forms-admin.php:621
|
214 |
+
#: ../custom-contact-forms-admin.php:762
|
215 |
+
#: ../custom-contact-forms-admin.php:772
|
216 |
+
#: ../custom-contact-forms-admin.php:1163
|
217 |
+
#: ../custom-contact-forms-admin.php:1240
|
218 |
+
#: ../custom-contact-forms-admin.php:1272
|
219 |
msgid "Yes"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../custom-contact-forms-admin.php:449
|
223 |
msgid "If a field is required and a user leaves it blank, the plugin will display an error message (which you can customize using 'Field Error') explaining the problem."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: ../custom-contact-forms-admin.php:453
|
227 |
+
#: ../custom-contact-forms-admin.php:645
|
228 |
+
#: ../custom-contact-forms-admin.php:795
|
229 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:155
|
230 |
msgid "Field Instructions:"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: ../custom-contact-forms-admin.php:457
|
234 |
+
#: ../custom-contact-forms-admin.php:643
|
235 |
+
#: ../custom-contact-forms-admin.php:793
|
236 |
msgid "If this is filled out, a tooltip popover displaying this text will show when the field is selected."
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../custom-contact-forms-admin.php:461
|
240 |
+
#: ../custom-contact-forms-admin.php:650
|
241 |
+
#: ../custom-contact-forms-admin.php:789
|
242 |
msgid "Field Class:"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: ../custom-contact-forms-admin.php:465
|
246 |
msgid "If you manage your own .css stylesheet, you can use this to attach a class to this field. Leaving this blank will do nothing."
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: ../custom-contact-forms-admin.php:469
|
250 |
+
#: ../custom-contact-forms-admin.php:655
|
251 |
+
#: ../custom-contact-forms-admin.php:800
|
252 |
msgid "Field Error:"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: ../custom-contact-forms-admin.php:473
|
256 |
msgid "If a user leaves this field blank and the field is required, this error message will be shown. A generic default will show if left blank."
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ../custom-contact-forms-admin.php:477
|
260 |
msgid "Create Field"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: ../custom-contact-forms-admin.php:486
|
264 |
msgid "Create A Form"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: ../custom-contact-forms-admin.php:493
|
268 |
msgid "Form Slug:"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: ../custom-contact-forms-admin.php:497
|
272 |
msgid "This is just a unique way for CCF to refer to your form. Must be unique from other slugs and contain only underscores and alphanumeric characters."
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: ../custom-contact-forms-admin.php:501
|
276 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:211
|
277 |
msgid "Form Title:"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: ../custom-contact-forms-admin.php:504
|
281 |
msgid "This text is displayed above the form as the heading."
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: ../custom-contact-forms-admin.php:508
|
285 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:216
|
286 |
msgid "Form Method:"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: ../custom-contact-forms-admin.php:514
|
290 |
msgid "If unsure, leave as is."
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: ../custom-contact-forms-admin.php:518
|
294 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:221
|
295 |
msgid "Form Action:"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: ../custom-contact-forms-admin.php:522
|
299 |
msgid "If unsure, leave blank. Enter a URL here, if and only if you want to process your forms somewhere else, for example with a service like Aweber or InfusionSoft."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: ../custom-contact-forms-admin.php:526
|
303 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:226
|
304 |
msgid "Form Style:"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: ../custom-contact-forms-admin.php:531
|
308 |
msgid "Click to create a style"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: ../custom-contact-forms-admin.php:534
|
312 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:231
|
313 |
msgid "Submit Button Text:"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: ../custom-contact-forms-admin.php:540
|
317 |
+
#: ../custom-contact-forms-admin.php:1043
|
318 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:236
|
319 |
msgid "Custom Code:"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: ../custom-contact-forms-admin.php:544
|
323 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:238
|
324 |
msgid "If unsure, leave blank. This field allows you to insert custom HTML directly after the starting form tag."
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: ../custom-contact-forms-admin.php:548
|
328 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:241
|
329 |
msgid "Form Destination Email:"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: ../custom-contact-forms-admin.php:552
|
333 |
msgid "Will receive all submissions from this form; if left blank it will use the default specified in general settings."
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: ../custom-contact-forms-admin.php:556
|
337 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:246
|
338 |
msgid "Form Success Message:"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: ../custom-contact-forms-admin.php:560
|
342 |
+
#: ../custom-contact-forms-admin.php:568
|
343 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:253
|
344 |
msgid "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."
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: ../custom-contact-forms-admin.php:564
|
348 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:251
|
349 |
msgid "Form Success Message Title:"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: ../custom-contact-forms-admin.php:572
|
353 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:256
|
354 |
msgid "Custom Success URL:"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: ../custom-contact-forms-admin.php:576
|
358 |
msgid "If this is filled out, users will be sent to this 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."
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: ../custom-contact-forms-admin.php:579
|
362 |
msgid "Create Form"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: ../custom-contact-forms-admin.php:587
|
366 |
msgid "Manage User Fields"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: ../custom-contact-forms-admin.php:592
|
370 |
+
#: ../custom-contact-forms-admin.php:710
|
371 |
+
#: ../custom-contact-forms-admin.php:727
|
372 |
+
#: ../custom-contact-forms-admin.php:815
|
373 |
+
#: ../custom-contact-forms-admin.php:833
|
374 |
+
#: ../custom-contact-forms-admin.php:876
|
375 |
+
#: ../custom-contact-forms-admin.php:942
|
376 |
+
#: ../custom-contact-forms-admin.php:1065
|
377 |
msgid "Slug"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: ../custom-contact-forms-admin.php:593
|
381 |
+
#: ../custom-contact-forms-admin.php:711
|
382 |
+
#: ../custom-contact-forms-admin.php:728
|
383 |
+
#: ../custom-contact-forms-admin.php:816
|
384 |
+
#: ../custom-contact-forms-admin.php:836
|
385 |
+
#: ../custom-contact-forms-admin.php:879
|
386 |
msgid "Label"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: ../custom-contact-forms-admin.php:594
|
390 |
+
#: ../custom-contact-forms-admin.php:712
|
391 |
+
#: ../custom-contact-forms-admin.php:729
|
392 |
+
#: ../custom-contact-forms-admin.php:817
|
393 |
msgid "Type"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: ../custom-contact-forms-admin.php:595
|
397 |
+
#: ../custom-contact-forms-admin.php:713
|
398 |
+
#: ../custom-contact-forms-admin.php:730
|
399 |
+
#: ../custom-contact-forms-admin.php:818
|
400 |
msgid "Initial Value"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: ../custom-contact-forms-admin.php:596
|
404 |
+
#: ../custom-contact-forms-admin.php:714
|
405 |
+
#: ../custom-contact-forms-admin.php:731
|
406 |
+
#: ../custom-contact-forms-admin.php:819
|
407 |
msgid "Required"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: ../custom-contact-forms-admin.php:597
|
411 |
+
#: ../custom-contact-forms-admin.php:715
|
412 |
+
#: ../custom-contact-forms-admin.php:732
|
413 |
+
#: ../custom-contact-forms-admin.php:820
|
414 |
msgid "Maxlength"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: ../custom-contact-forms-admin.php:598
|
418 |
+
#: ../custom-contact-forms-admin.php:716
|
419 |
+
#: ../custom-contact-forms-admin.php:733
|
420 |
+
#: ../custom-contact-forms-admin.php:821
|
421 |
+
#: ../custom-contact-forms-admin.php:842
|
422 |
+
#: ../custom-contact-forms-admin.php:885
|
423 |
+
#: ../custom-contact-forms-admin.php:946
|
424 |
+
#: ../custom-contact-forms-admin.php:1069
|
425 |
+
#: ../custom-contact-forms-admin.php:1090
|
426 |
+
#: ../custom-contact-forms-admin.php:1144
|
427 |
msgid "Action"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: ../custom-contact-forms-admin.php:636
|
431 |
+
#: ../custom-contact-forms-admin.php:784
|
432 |
+
#: ../custom-contact-forms-admin.php:856
|
433 |
+
#: ../custom-contact-forms-admin.php:971
|
434 |
+
#: ../custom-contact-forms-admin.php:1780
|
435 |
msgid "Save"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: ../custom-contact-forms-admin.php:637
|
439 |
+
#: ../custom-contact-forms-admin.php:857
|
440 |
+
#: ../custom-contact-forms-admin.php:972
|
441 |
+
#: ../custom-contact-forms-admin.php:1113
|
442 |
msgid "Delete"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: ../custom-contact-forms-admin.php:648
|
446 |
+
#: ../custom-contact-forms-admin.php:788
|
447 |
msgid "If you manage a .CSS file for your theme, you could create a class in that file and add it to this field. If the form attaching this field is using a \"Form Style\" other than the default, styles inherited from the \"Field Class\" might be overwritten."
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: ../custom-contact-forms-admin.php:653
|
451 |
+
#: ../custom-contact-forms-admin.php:798
|
452 |
msgid "This lets you customize the error message displayed when this field is required and left blank."
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: ../custom-contact-forms-admin.php:678
|
456 |
msgid "Dettach Field Option"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: ../custom-contact-forms-admin.php:681
|
460 |
msgid "Dettach field options you"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: ../custom-contact-forms-admin.php:683
|
464 |
+
#: ../custom-contact-forms-admin.php:1034
|
465 |
msgid "create"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: ../custom-contact-forms-admin.php:693
|
469 |
msgid "Attach Field Option"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: ../custom-contact-forms-admin.php:697
|
473 |
msgid "Attach field options in the order you want them to display."
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: ../custom-contact-forms-admin.php:748
|
477 |
+
#: ../custom-contact-forms-admin.php:779
|
478 |
+
#: ../custom-contact-forms-admin.php:1414
|
479 |
msgid "None"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: ../custom-contact-forms-admin.php:828
|
483 |
msgid "Manage Field Options (for Dropdown and Radio Fields)"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: ../custom-contact-forms-admin.php:839
|
487 |
+
#: ../custom-contact-forms-admin.php:882
|
488 |
msgid "Value"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: ../custom-contact-forms-admin.php:868
|
492 |
msgid "No field options have been created."
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: ../custom-contact-forms-admin.php:896
|
496 |
msgid "Option Slug:"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: ../custom-contact-forms-admin.php:900
|
500 |
msgid "Used to identify this option, solely for admin purposes; must be unique, and contain only letters, numbers, and underscores. Example: 'slug_one'"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: ../custom-contact-forms-admin.php:904
|
504 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:183
|
505 |
msgid "Option Label:"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: ../custom-contact-forms-admin.php:908
|
509 |
msgid "This is what is shown to the user in the dropdown or radio field. Example: 'United States'"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: ../custom-contact-forms-admin.php:912
|
513 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:188
|
514 |
msgid "Option Value:"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: ../custom-contact-forms-admin.php:914
|
518 |
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'."
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: ../custom-contact-forms-admin.php:916
|
522 |
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\"."
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: ../custom-contact-forms-admin.php:919
|
526 |
msgid "Create Field Option"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: ../custom-contact-forms-admin.php:928
|
530 |
+
msgid "Rate This Plugin"
|
531 |
+
msgstr ""
|
532 |
+
|
533 |
+
#: ../custom-contact-forms-admin.php:929
|
534 |
+
msgid "We need your help to continue development! Please <span>rate this plugin</span> to show your support."
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
#: ../custom-contact-forms-admin.php:941
|
538 |
msgid "Form Display Code"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: ../custom-contact-forms-admin.php:943
|
542 |
+
#: ../custom-contact-forms-admin.php:1066
|
543 |
msgid "Title"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: ../custom-contact-forms-admin.php:944
|
547 |
+
#: ../custom-contact-forms-admin.php:1067
|
548 |
msgid "Button Text"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: ../custom-contact-forms-admin.php:945
|
552 |
+
#: ../custom-contact-forms-admin.php:1068
|
553 |
msgid "Style"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: ../custom-contact-forms-admin.php:979
|
557 |
msgid "Method"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: ../custom-contact-forms-admin.php:980
|
561 |
msgid "Form Action"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: ../custom-contact-forms-admin.php:981
|
565 |
msgid "Destination Email"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: ../custom-contact-forms-admin.php:982
|
569 |
msgid "Success Message Title"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: ../custom-contact-forms-admin.php:983
|
573 |
msgid "Success Message"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: ../custom-contact-forms-admin.php:984
|
577 |
msgid "Custom Success URL"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: ../custom-contact-forms-admin.php:987
|
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:991
|
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:993
|
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:995
|
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:997
|
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:999
|
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:1004
|
605 |
msgid "Attached Fields:"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: ../custom-contact-forms-admin.php:1018
|
609 |
msgid "Dettach Field"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: ../custom-contact-forms-admin.php:1021
|
613 |
msgid "Attach fields in the order you want them displayed."
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: ../custom-contact-forms-admin.php:1024
|
617 |
msgid "Attach Field:"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: ../custom-contact-forms-admin.php:1029
|
621 |
msgid "Attach Field"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: ../custom-contact-forms-admin.php:1032
|
625 |
msgid "Attach fixed fields or ones you"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: ../custom-contact-forms-admin.php:1038
|
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:1039
|
633 |
msgid "Code to Display Form in Theme Files:"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: ../custom-contact-forms-admin.php:1042
|
637 |
msgid "This field allows you to insert HTML directly after the starting <form> tag."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: ../custom-contact-forms-admin.php:1064
|
641 |
msgid "Form Code"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: ../custom-contact-forms-admin.php:1081
|
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:1086
|
650 |
+
#: ../custom-contact-forms-admin.php:1140
|
651 |
msgid "Date Submitted"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: ../custom-contact-forms-admin.php:1087
|
655 |
+
#: ../custom-contact-forms-admin.php:1141
|
656 |
msgid "Form Submitted"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: ../custom-contact-forms-admin.php:1088
|
660 |
+
#: ../custom-contact-forms-admin.php:1142
|
661 |
msgid "Form Page"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: ../custom-contact-forms-admin.php:1107
|
665 |
msgid "Custom HTML Form"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: ../custom-contact-forms-admin.php:1159
|
669 |
msgid "Email Form Submissions:"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: ../custom-contact-forms-admin.php:1171
|
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:1175
|
677 |
msgid "Default Email:"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: ../custom-contact-forms-admin.php:1180
|
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:1184
|
685 |
msgid "Front End JQuery:"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: ../custom-contact-forms-admin.php:1188
|
689 |
+
#: ../custom-contact-forms-admin.php:1256
|
690 |
+
#: ../custom-contact-forms-admin.php:1297
|
691 |
msgid "Enabled"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: ../custom-contact-forms-admin.php:1191
|
695 |
+
#: ../custom-contact-forms-admin.php:1259
|
696 |
+
#: ../custom-contact-forms-admin.php:1300
|
697 |
msgid "Disabled"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: ../custom-contact-forms-admin.php:1196
|
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:1200
|
706 |
msgid "Default From Email:"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: ../custom-contact-forms-admin.php:1205
|
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:1209
|
714 |
msgid "Default Email Subject:"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: ../custom-contact-forms-admin.php:1214
|
718 |
msgid "Default subject to be included in all form emails."
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: ../custom-contact-forms-admin.php:1218
|
722 |
msgid "Default Form Success Message Title:"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: ../custom-contact-forms-admin.php:1223
|
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:1227
|
730 |
msgid "Default Form Success Message:"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: ../custom-contact-forms-admin.php:1232
|
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:1236
|
738 |
msgid "Remember Field Values:"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: ../custom-contact-forms-admin.php:1248
|
742 |
msgid "Selecting yes will make form fields remember how they were last filled out."
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: ../custom-contact-forms-admin.php:1252
|
746 |
msgid "Tooltips in Widget:"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: ../custom-contact-forms-admin.php:1264
|
750 |
msgid "Enabling this shows tooltips containing field instructions on forms in the widget."
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: ../custom-contact-forms-admin.php:1268
|
754 |
msgid "Hide Plugin Author Link in Code:"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: ../custom-contact-forms-admin.php:1281
|
758 |
msgid "Use Code Type:"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: ../custom-contact-forms-admin.php:1289
|
762 |
msgid "This lets you switch the form code between HTML and XHTML."
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: ../custom-contact-forms-admin.php:1293
|
766 |
msgid "Fancy Admin AJAX Abilities:"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: ../custom-contact-forms-admin.php:1305
|
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:1308
|
774 |
msgid "Show Sidebar Widget:"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: ../custom-contact-forms-admin.php:1313
|
778 |
msgid "On Homepage"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: ../custom-contact-forms-admin.php:1317
|
782 |
msgid "On Pages"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: ../custom-contact-forms-admin.php:1321
|
786 |
msgid "On Single Posts"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: ../custom-contact-forms-admin.php:1326
|
790 |
msgid "On Categories"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: ../custom-contact-forms-admin.php:1330
|
794 |
msgid "On Archives"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: ../custom-contact-forms-admin.php:1334
|
798 |
msgid "Update"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: ../custom-contact-forms-admin.php:1343
|
802 |
msgid "Instructions"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: ../custom-contact-forms-admin.php:1347
|
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:1351
|
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:1355
|
815 |
msgid "1. Create a form."
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: ../custom-contact-forms-admin.php:1358
|
819 |
msgid "2. Create fields and attach those fields to the forms of your choice."
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: ../custom-contact-forms-admin.php:1360
|
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:1363
|
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:1366
|
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:1369
|
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:1372
|
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:1375
|
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:1378
|
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:1380
|
851 |
msgid "Custom HTML Forms feature"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: ../custom-contact-forms-admin.php:1382
|
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:1385
|
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:1387
|
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:1390
|
867 |
msgid "View Plugin Usage Popover"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: ../custom-contact-forms-admin.php:1403
|
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:1404
|
875 |
msgid "* Send My Emails Using the Following:"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: ../custom-contact-forms-admin.php:1406
|
879 |
msgid "Wordpress Default"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: ../custom-contact-forms-admin.php:1407
|
883 |
msgid "SMTP"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: ../custom-contact-forms-admin.php:1408
|
887 |
msgid "(If mail isn't sending, try toggling this option.)"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: ../custom-contact-forms-admin.php:1411
|
891 |
msgid "SMTP Host:"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: ../custom-contact-forms-admin.php:1412
|
895 |
msgid "SMTP Port:"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: ../custom-contact-forms-admin.php:1413
|
899 |
msgid "Encryption:"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: ../custom-contact-forms-admin.php:1415
|
903 |
msgid "SSL"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: ../custom-contact-forms-admin.php:1416
|
907 |
msgid "TLS"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: ../custom-contact-forms-admin.php:1420
|
911 |
msgid "SMTP Authentication:"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: ../custom-contact-forms-admin.php:1420
|
915 |
msgid "None Needed"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: ../custom-contact-forms-admin.php:1420
|
919 |
msgid "Use SMTP Username/Password"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: ../custom-contact-forms-admin.php:1421
|
923 |
msgid "SMTP Username:"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: ../custom-contact-forms-admin.php:1422
|
927 |
msgid "SMTP Password:"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: ../custom-contact-forms-admin.php:1425
|
931 |
msgid "Save Mail Sending Options"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: ../custom-contact-forms-admin.php:1432
|
935 |
msgid "Create A Style for Your Forms"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: ../custom-contact-forms-admin.php:1436
|
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:1442
|
943 |
msgid "Style Slug:"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: ../custom-contact-forms-admin.php:1445
|
947 |
msgid "(Must be unique)"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: ../custom-contact-forms-admin.php:1449
|
951 |
+
#: ../custom-contact-forms-admin.php:1850
|
952 |
+
#: ../custom-contact-forms-admin.php:1859
|
953 |
msgid "Title Font Size:"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: ../custom-contact-forms-admin.php:1452
|
957 |
msgid "(ex: 10pt, 10px, 1em)"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: ../custom-contact-forms-admin.php:1456
|
961 |
+
#: ../custom-contact-forms-admin.php:1898
|
962 |
+
#: ../custom-contact-forms-admin.php:1966
|
963 |
msgid "Title Font Color:"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: ../custom-contact-forms-admin.php:1459
|
967 |
+
#: ../custom-contact-forms-admin.php:1480
|
968 |
+
#: ../custom-contact-forms-admin.php:1544
|
969 |
+
#: ../custom-contact-forms-admin.php:1645
|
970 |
+
#: ../custom-contact-forms-admin.php:1652
|
971 |
+
#: ../custom-contact-forms-admin.php:1680
|
972 |
msgid "(ex: FF0000)"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: ../custom-contact-forms-admin.php:1463
|
976 |
+
#: ../custom-contact-forms-admin.php:1823
|
977 |
msgid "Label Width:"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: ../custom-contact-forms-admin.php:1466
|
981 |
msgid "(ex: 100px or 20%)"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: ../custom-contact-forms-admin.php:1470
|
985 |
+
#: ../custom-contact-forms-admin.php:1864
|
986 |
msgid "Label Font Size:"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: ../custom-contact-forms-admin.php:1473
|
990 |
+
#: ../custom-contact-forms-admin.php:1638
|
991 |
msgid "(ex: 10px, 10pt, 1em)"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: ../custom-contact-forms-admin.php:1477
|
995 |
+
#: ../custom-contact-forms-admin.php:1903
|
996 |
msgid "Label Font Color:"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: ../custom-contact-forms-admin.php:1484
|
1000 |
+
#: ../custom-contact-forms-admin.php:1790
|
1001 |
msgid "Text Field Width:"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: ../custom-contact-forms-admin.php:1487
|
1005 |
+
#: ../custom-contact-forms-admin.php:1494
|
1006 |
+
#: ../custom-contact-forms-admin.php:1501
|
1007 |
+
#: ../custom-contact-forms-admin.php:1581
|
1008 |
msgid "(ex: 100px or 100%)"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: ../custom-contact-forms-admin.php:1491
|
1012 |
msgid "Textarea Field Width:"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: ../custom-contact-forms-admin.php:1498
|
1016 |
msgid "Textarea Field Height:"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: ../custom-contact-forms-admin.php:1505
|
1020 |
+
#: ../custom-contact-forms-admin.php:1869
|
1021 |
msgid "Field Font Size:"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: ../custom-contact-forms-admin.php:1508
|
1025 |
msgid "(ex: 10px, 10pt, 1em"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: ../custom-contact-forms-admin.php:1512
|
1029 |
+
#: ../custom-contact-forms-admin.php:1908
|
1030 |
msgid "Field Font Color:"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: ../custom-contact-forms-admin.php:1515
|
1034 |
+
#: ../custom-contact-forms-admin.php:1551
|
1035 |
msgid "(ex: 333333)"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: ../custom-contact-forms-admin.php:1519
|
1039 |
+
#: ../custom-contact-forms-admin.php:1957
|
1040 |
msgid "Field Border Style:"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: ../custom-contact-forms-admin.php:1527
|
1044 |
+
#: ../custom-contact-forms-admin.php:1918
|
1045 |
msgid "Form Margin:"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: ../custom-contact-forms-admin.php:1530
|
1049 |
+
#: ../custom-contact-forms-admin.php:1537
|
1050 |
+
#: ../custom-contact-forms-admin.php:1659
|
1051 |
+
#: ../custom-contact-forms-admin.php:1666
|
1052 |
msgid "(ex: 5px or 1em)"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: ../custom-contact-forms-admin.php:1534
|
1056 |
+
#: ../custom-contact-forms-admin.php:1810
|
1057 |
msgid "Label Margin:"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: ../custom-contact-forms-admin.php:1541
|
1061 |
msgid "Textarea Background Color:"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: ../custom-contact-forms-admin.php:1548
|
1065 |
msgid "Success Popover Font Color:"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: ../custom-contact-forms-admin.php:1555
|
1069 |
msgid "Success Popover Title Font Size:"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: ../custom-contact-forms-admin.php:1558
|
1073 |
+
#: ../custom-contact-forms-admin.php:1565
|
1074 |
+
#: ../custom-contact-forms-admin.php:1687
|
1075 |
+
#: ../custom-contact-forms-admin.php:1710
|
1076 |
msgid "(ex: 12px, 1em, 100%)"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: ../custom-contact-forms-admin.php:1562
|
1080 |
+
#: ../custom-contact-forms-admin.php:1854
|
1081 |
msgid "Form Background Color:"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: ../custom-contact-forms-admin.php:1569
|
1085 |
msgid "Tooltip Background Color:"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: ../custom-contact-forms-admin.php:1572
|
1089 |
msgid "(ex: 000000 or black)"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: ../custom-contact-forms-admin.php:1578
|
1093 |
+
#: ../custom-contact-forms-admin.php:1952
|
1094 |
msgid "Field Border Color:"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: ../custom-contact-forms-admin.php:1585
|
1098 |
+
#: ../custom-contact-forms-admin.php:1935
|
1099 |
msgid "Form Border Style:"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: ../custom-contact-forms-admin.php:1593
|
1103 |
+
#: ../custom-contact-forms-admin.php:1947
|
1104 |
msgid "Form Border Color:"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: ../custom-contact-forms-admin.php:1596
|
1108 |
msgid "(ex: 000000)"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: ../custom-contact-forms-admin.php:1600
|
1112 |
+
#: ../custom-contact-forms-admin.php:1942
|
1113 |
msgid "Form Border Width:"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: ../custom-contact-forms-admin.php:1603
|
1117 |
msgid "(ex: 1px)"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: ../custom-contact-forms-admin.php:1607
|
1121 |
+
#: ../custom-contact-forms-admin.php:1785
|
1122 |
msgid "Form Width:"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: ../custom-contact-forms-admin.php:1610
|
1126 |
msgid "(ex: 100px or 50%)"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: ../custom-contact-forms-admin.php:1614
|
1130 |
msgid "Form Font Family:"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: ../custom-contact-forms-admin.php:1617
|
1134 |
msgid "(ex: Verdana, Tahoma, Arial)"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: ../custom-contact-forms-admin.php:1621
|
1138 |
+
#: ../custom-contact-forms-admin.php:1828
|
1139 |
msgid "Button Width:"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: ../custom-contact-forms-admin.php:1624
|
1143 |
msgid "(ex: 100px, 30%, auto)"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: ../custom-contact-forms-admin.php:1628
|
1147 |
+
#: ../custom-contact-forms-admin.php:1833
|
1148 |
msgid "Button Height:"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: ../custom-contact-forms-admin.php:1631
|
1152 |
msgid "(ex: 100px or 30%)"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: ../custom-contact-forms-admin.php:1635
|
1156 |
+
#: ../custom-contact-forms-admin.php:1874
|
1157 |
msgid "Button Font Size:"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: ../custom-contact-forms-admin.php:1642
|
1161 |
+
#: ../custom-contact-forms-admin.php:1913
|
1162 |
msgid "Button Font Color:"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: ../custom-contact-forms-admin.php:1649
|
1166 |
+
#: ../custom-contact-forms-admin.php:1838
|
1167 |
msgid "Field Background Color:"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: ../custom-contact-forms-admin.php:1656
|
1171 |
+
#: ../custom-contact-forms-admin.php:1879
|
1172 |
msgid "Form Padding:"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: ../custom-contact-forms-admin.php:1663
|
1176 |
+
#: ../custom-contact-forms-admin.php:1843
|
1177 |
msgid "Title Margin:"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: ../custom-contact-forms-admin.php:1670
|
1181 |
+
#: ../custom-contact-forms-admin.php:1805
|
1182 |
msgid "Dropdown Width:"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: ../custom-contact-forms-admin.php:1673
|
1186 |
msgid "(ex: 30px, 20%, or auto)"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: ../custom-contact-forms-admin.php:1677
|
1190 |
msgid "Success Popover Border Color:"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: ../custom-contact-forms-admin.php:1684
|
1194 |
msgid "Success Popover Font Size:"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: ../custom-contact-forms-admin.php:1691
|
1198 |
msgid "Success Popover Height:"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: ../custom-contact-forms-admin.php:1694
|
1202 |
msgid "(ex: 200px, 6em, 50%)"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: ../custom-contact-forms-admin.php:1698
|
1206 |
+
#: ../custom-contact-forms-admin.php:1971
|
1207 |
msgid "Field Border Roundness:"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: ../custom-contact-forms-admin.php:1701
|
1211 |
msgid "(ex: 6px, or 0px)"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: ../custom-contact-forms-admin.php:1705
|
1215 |
+
#: ../custom-contact-forms-admin.php:1774
|
1216 |
+
#: ../custom-contact-forms-admin.php:1891
|
1217 |
msgid "Tooltip"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: ../custom-contact-forms-admin.php:1706
|
1221 |
+
#: ../custom-contact-forms-admin.php:1775
|
1222 |
+
#: ../custom-contact-forms-admin.php:1892
|
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:1707
|
1227 |
+
#: ../custom-contact-forms-admin.php:1886
|
1228 |
msgid "Font Size:"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: ../custom-contact-forms-admin.php:1714
|
1232 |
msgid "Tooltip Font Color:"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: ../custom-contact-forms-admin.php:1717
|
1236 |
msgid "(ex: ffffff or white)"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: ../custom-contact-forms-admin.php:1720
|
1240 |
msgid "Create Style"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: ../custom-contact-forms-admin.php:1728
|
1244 |
msgid "Manage Form Styles"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: ../custom-contact-forms-admin.php:1750
|
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:1755
|
1255 |
msgid "Font Family:"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: ../custom-contact-forms-admin.php:1760
|
1259 |
msgid "Textarea Background"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: ../custom-contact-forms-admin.php:1762
|
1263 |
msgid "Color:"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: ../custom-contact-forms-admin.php:1767
|
1267 |
+
#: ../custom-contact-forms-admin.php:1815
|
1268 |
+
#: ../custom-contact-forms-admin.php:1848
|
1269 |
+
#: ../custom-contact-forms-admin.php:1884
|
1270 |
+
#: ../custom-contact-forms-admin.php:1923
|
1271 |
+
#: ../custom-contact-forms-admin.php:1964
|
1272 |
msgid "Success Popover"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: ../custom-contact-forms-admin.php:1769
|
1276 |
msgid "Border Color:"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: ../custom-contact-forms-admin.php:1776
|
1280 |
+
#: ../custom-contact-forms-admin.php:1925
|
1281 |
msgid "Font Color:"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: ../custom-contact-forms-admin.php:1782
|
1285 |
msgid "Delete Style"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: ../custom-contact-forms-admin.php:1795
|
1289 |
msgid "Textarea Width:"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: ../custom-contact-forms-admin.php:1800
|
1293 |
msgid "Textarea Height:"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: ../custom-contact-forms-admin.php:1817
|
1297 |
msgid "Height:"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: ../custom-contact-forms-admin.php:1893
|
1301 |
msgid "Background Color:"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: ../custom-contact-forms-admin.php:1930
|
1305 |
msgid "Tooltip Font Size:"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: ../custom-contact-forms-admin.php:1999
|
1309 |
msgid "Report a Bug/Suggest a Feature"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: ../custom-contact-forms-admin.php:2006
|
1313 |
msgid "Your Name:"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: ../custom-contact-forms-admin.php:2012
|
1317 |
msgid "Your Email:"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: ../custom-contact-forms-admin.php:2018
|
1321 |
msgid "Your Message:"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: ../custom-contact-forms-admin.php:2024
|
1325 |
msgid "Purpose of this message:"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: ../custom-contact-forms-admin.php:2034
|
1329 |
msgid "Plugin Question"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: ../custom-contact-forms-admin.php:2040
|
1333 |
msgid "Send Message"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: ../custom-contact-forms-admin.php:2048
|
1337 |
msgid "Custom HTML Forms (Advanced)"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: ../custom-contact-forms-admin.php:2052
|
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:2059
|
1348 |
msgid "Thank you for filling out our form!"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: ../custom-contact-forms-admin.php:2064
|
1352 |
msgid ""
|
1353 |
+
"Paste all this code into a page or post and edit it to your liking. 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"
|
1355 |
"the user to be redirected to that specific page on successful form completion. The required_fields hidden field is optional; to use it seperate \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:2075
|
1360 |
msgid "Export"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: ../custom-contact-forms-admin.php:2080
|
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:2084
|
1371 |
msgid "Export All CCF Plugin Content"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: ../custom-contact-forms-admin.php:2090
|
1375 |
msgid "Import"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: ../custom-contact-forms-admin.php:2096
|
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:2099
|
1383 |
msgid "Choose What You Want to Use from the Import File:"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: ../custom-contact-forms-admin.php:2105
|
1387 |
msgid "Use General Settings"
|
1388 |
msgstr ""
|
1389 |
|
|
|
1390 |
#: ../custom-contact-forms-admin.php:2111
|
1391 |
+
#: ../custom-contact-forms-admin.php:2129
|
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:2117
|
1398 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:26
|
1399 |
msgid "Form Submissions"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: ../custom-contact-forms-admin.php:2123
|
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:2135
|
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:2141
|
1415 |
#: ../modules/usage_popover/custom-contact-forms-usage-popover.php:17
|
1416 |
msgid "Styles"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: ../custom-contact-forms-admin.php:2147
|
1420 |
msgid "Choose an Import File:"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: ../custom-contact-forms-admin.php:2151
|
1424 |
msgid "Clear and Import"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: ../custom-contact-forms-admin.php:2153
|
1428 |
msgid "Yes, I want to do this and have created a backup."
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: ../custom-contact-forms-admin.php:2160
|
1432 |
msgid "Custom Contact Forms Plugin News"
|
1433 |
msgstr ""
|
1434 |
|
1731 |
msgid "More import/export methods will be added in the future. Always create a backup before attempting an import! * Note: If you are having problems getting the importer/exporter to work, try CHMODing the import/ and export/ directories to 0777."
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: ../modules/widget/custom-contact-forms-widget.php:43
|
1735 |
msgid "Choose a Form:"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
+
#: ../modules/widget/custom-contact-forms-widget.php:54
|
1739 |
msgid "Create a Form"
|
1740 |
msgstr ""
|
1741 |
|
modules/db/custom-contact-forms-db.php
CHANGED
@@ -158,7 +158,9 @@ if (!class_exists('CustomContactFormsDB')) {
|
|
158 |
$wpdb->query("ALTER TABLE `" . CCF_FIELDS_TABLE . "` ADD `field_class` VARCHAR( 50 ) NOT NULL");
|
159 |
if (!$this->columnExists('field_error', CCF_FIELDS_TABLE))
|
160 |
$wpdb->query("ALTER TABLE `" . CCF_FIELDS_TABLE . "` ADD `field_error` VARCHAR( 300 ) NOT NULL");
|
161 |
-
$wpdb->query("ALTER TABLE `" . CCF_FORMS_TABLE . "` CHANGE `form_email` `form_email`
|
|
|
|
|
162 |
$this->updateTableCharSets();
|
163 |
}
|
164 |
|
158 |
$wpdb->query("ALTER TABLE `" . CCF_FIELDS_TABLE . "` ADD `field_class` VARCHAR( 50 ) NOT NULL");
|
159 |
if (!$this->columnExists('field_error', CCF_FIELDS_TABLE))
|
160 |
$wpdb->query("ALTER TABLE `" . CCF_FIELDS_TABLE . "` ADD `field_error` VARCHAR( 300 ) NOT NULL");
|
161 |
+
$wpdb->query("ALTER TABLE `" . CCF_FORMS_TABLE . "` CHANGE `form_email` `form_email` TEXT NOT NULL");
|
162 |
+
$wpdb->query("ALTER TABLE `" . CCF_FORMS_TABLE . "` CHANGE `form_fields` `form_fields` TEXT NOT NULL");
|
163 |
+
$wpdb->query("ALTER TABLE `" . CCF_FIELDS_TABLE . "` CHANGE `field_label` `field_label` TEXT NOT NULL");
|
164 |
$this->updateTableCharSets();
|
165 |
}
|
166 |
|
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 |
|
@@ -56,6 +56,7 @@ Restrictions/Requirements:
|
|
56 |
* Works with Wordpress 2.8.1+, WPMU, and BuddyPress (Wordpress 3.0+ is highly recommended)
|
57 |
* PHP 5
|
58 |
* PHP register_globals and safe_mode should be set to "Off" (this is done in your php.ini file)
|
|
|
59 |
|
60 |
== Installation ==
|
61 |
1. Upload to /wp-content/plugins
|
@@ -89,10 +90,17 @@ I respond to emails same-day!
|
|
89 |
* Try filling out a form with the "Use Wordpress Mail Function" option set to "No".
|
90 |
* Make sure the "Default From" email you are using within General Settings actually exists on your server.
|
91 |
* Try deactivating other plugins to make sure there are no conflicts
|
|
|
92 |
|
93 |
-
= When I activate Custom Contact Forms, the Javascript for another plugin does not work. =
|
94 |
* Disable the "Frontend JQuery" option in General Settings. Custom Contact Forms will still work without JQuery but won't be as pretty.
|
95 |
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
== Upgrade Notice ==
|
97 |
We are planning to add popover forms and file attachments soon.
|
98 |
|
@@ -101,6 +109,10 @@ Visit http://www.taylorlovett.com/wordpress-plugins for screenshots. Right now a
|
|
101 |
|
102 |
== Changelog ==
|
103 |
|
|
|
|
|
|
|
|
|
104 |
= 4.0.7 =
|
105 |
* custom-contact-forms-admin.php - Admin panel updated
|
106 |
|
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
|
8 |
|
9 |
Gauranteed to be the most customizable and intuitive contact form plugin for Wordpress.
|
10 |
|
56 |
* Works with Wordpress 2.8.1+, WPMU, and BuddyPress (Wordpress 3.0+ is highly recommended)
|
57 |
* PHP 5
|
58 |
* PHP register_globals and safe_mode should be set to "Off" (this is done in your php.ini file)
|
59 |
+
* Your theme must call wp_head() and wp_footer()
|
60 |
|
61 |
== Installation ==
|
62 |
1. Upload to /wp-content/plugins
|
90 |
* Try filling out a form with the "Use Wordpress Mail Function" option set to "No".
|
91 |
* Make sure the "Default From" email you are using within General Settings actually exists on your server.
|
92 |
* Try deactivating other plugins to make sure there are no conflicts
|
93 |
+
* If there is still a problem, contact your host. This plugin utilizes existing mail functionality on your server, it doesn't create any new functions. If there is a problem, then it is with Wordpress or your host.
|
94 |
|
95 |
+
= When I activate Custom Contact Forms, the Javascript for another plugin or my theme does not work. =
|
96 |
* Disable the "Frontend JQuery" option in General Settings. Custom Contact Forms will still work without JQuery but won't be as pretty.
|
97 |
|
98 |
+
= I need even more customization in my forms. What can I do? =
|
99 |
+
* Use the Custom HTML Forms Feature (see admin panel) which allows you to write the HTML/CSS for each of your forms.
|
100 |
+
|
101 |
+
= The form success popover is not showing up. =
|
102 |
+
* The form success popover is included in wp_footer. If your theme does not call wp_footer(), it will not work.
|
103 |
+
|
104 |
== Upgrade Notice ==
|
105 |
We are planning to add popover forms and file attachments soon.
|
106 |
|
109 |
|
110 |
== Changelog ==
|
111 |
|
112 |
+
= 4.0.8 =
|
113 |
+
* custom-contact-forms-admin.php - Admin panel updated, WP_PLUGIN_URL to plugins_url()
|
114 |
+
* custom-contact-forms-front.php - WP_PLUGIN_URL to plugins_url()
|
115 |
+
|
116 |
= 4.0.7 =
|
117 |
* custom-contact-forms-admin.php - Admin panel updated
|
118 |
|