Custom Contact Forms - Version 4.0.0

Version Description

  • custom-contact-forms.php - Saved form submissions manager, form background color added to style manager, import/export feature
  • custom-contact-forms-user-data.php - Saved form submission
  • custom-contact-forms-db.php - DB methods reorganized for efficiency
  • custom-contact-forms-static.php - Methods added/removed for efficiency
  • custom-contact-forms-admin.php - Admin code seperated in to a different file
  • custom-contact-forms-popover.php - Popover code seperated in to a different file
  • custom-contact-forms-export.php - Functions for importing and exporting
  • css/custom-contact-forms-admin.css - AJAX abilities added
  • css/custom-contact-forms-standard.css - Classes renamed
  • js/custom-contact-forms-admin.js - AJAX abilities added to admin panel
  • download.php - Allows export file to be downloaded
  • lang/custom-contact-forms.po - Allows for translation to different languages
  • lang/custom-contact-forms.mo - Allows for translation to different languages
Download this release

Release Info

Developer tlovett1
Plugin Icon 128x128 Custom Contact Forms
Version 4.0.0
Comparing to
See all releases

Code changes from version 4.0.0.b9 to 4.0.0

css/custom-contact-forms-admin.css CHANGED
@@ -4,6 +4,23 @@
4
  overflow:visible;
5
  min-width:1020px;
6
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  #customcontactforms-admin label { font-weight:bold; }
8
  #customcontactforms-admin input, textarea, select {
9
  font-size:1em;
@@ -36,7 +53,7 @@
36
  width:520px;
37
  margin:5px 1em 1em 6px;
38
  }
39
- #customcontactforms-admin #custom-html p { margin: 4px 0 4px 0 ; }
40
  #customcontactforms-admin #custom-html #custom_html_textarea {
41
  width:495px;
42
  height:220px;
@@ -117,6 +134,7 @@
117
  width:1000px;
118
  margin:20px 1em 1em 5px;
119
  }
 
120
  #customcontactforms-admin #export p { padding:0; margin:0; }
121
  #customcontactforms-admin #import .choose_import { font-size:1.1em; clear:both; font-weight:bold; }
122
  #customcontactforms-admin #import input[type=file] { margin:6px; }
4
  overflow:visible;
5
  min-width:1020px;
6
  }
7
+ #customcontactforms-admin input[type=submit] {
8
+ -moz-background-clip:border;
9
+ -moz-background-inline-policy:continuous;
10
+ -moz-background-origin:padding;
11
+ background:#21759B url(../images/button-grad.png) repeat-x scroll left top;
12
+ border-color:#298CBA;
13
+ color:#FFFFFF;
14
+ font-weight:bold;
15
+ text-shadow:0 -1px 0 rgba(0, 0, 0, 0.3);
16
+ }
17
+ #customcontactforms-admin input[type=button] {
18
+ -moz-background-clip:border;
19
+ -moz-background-inline-policy:continuous;
20
+ -moz-background-origin:padding;
21
+ background:#F2F2F2 url(../images/white-grad.png) repeat-x scroll left top;
22
+ text-shadow:0 1px 0 #FFFFFF;
23
+ }
24
  #customcontactforms-admin label { font-weight:bold; }
25
  #customcontactforms-admin input, textarea, select {
26
  font-size:1em;
53
  width:520px;
54
  margin:5px 1em 1em 6px;
55
  }
56
+ #customcontactforms-admin #custom-html p { margin: 0; padding:0; }
57
  #customcontactforms-admin #custom-html #custom_html_textarea {
58
  width:495px;
59
  height:220px;
134
  width:1000px;
135
  margin:20px 1em 1em 5px;
136
  }
137
+ #customcontactforms-admin #export input { margin:7px; }
138
  #customcontactforms-admin #export p { padding:0; margin:0; }
139
  #customcontactforms-admin #import .choose_import { font-size:1.1em; clear:both; font-weight:bold; }
140
  #customcontactforms-admin #import input[type=file] { margin:6px; }
custom-contact-forms-admin.php CHANGED
@@ -32,7 +32,7 @@ if (!class_exists('CustomContactFormsAdmin')) {
32
 
33
  function downloadExportFile() {
34
  if ($_POST['ccf_export']) {
35
- chmod('export/', 0777);
36
  require_once('modules/export/custom-contact-forms-export.php');
37
  $transit = new CustomContactFormsExport(parent::getAdminOptionsName());
38
  $transit->exportAll();
@@ -43,7 +43,7 @@ if (!class_exists('CustomContactFormsAdmin')) {
43
 
44
  function runImport() {
45
  if ($_POST['ccf_clear_import'] || $_POST['ccf_merge_import']) {
46
- chmod('export/', 0777);
47
  require_once('modules/export/custom-contact-forms-export.php');
48
  $transit = new CustomContactFormsExport(parent::getAdminOptionsName());
49
  $settings['import_general_settings'] = ($_POST['ccf_import_overwrite_settings'] == 1) ? true : false;
@@ -341,6 +341,7 @@ if (!class_exists('CustomContactFormsAdmin')) {
341
  <ul id="plugin-nav">
342
  <li><a href="#instructions"><?php _e("Plugin Instructions", 'custom-contact-forms'); ?></a></li>
343
  <li><a href="#general-settings"><?php _e("General Settings", 'custom-contact-forms'); ?></a></li>
 
344
  <li><a href="#create-fields"><?php _e("Create Fields", 'custom-contact-forms'); ?></a></li>
345
  <li><a href="#create-forms"><?php _e("Create Forms", 'custom-contact-forms'); ?></a></li>
346
  <li><a href="#manage-fields"><?php _e("Manage Fields", 'custom-contact-forms'); ?></a></li>
@@ -1380,7 +1381,7 @@ if (!class_exists('CustomContactFormsAdmin')) {
1380
  <a name="configure-mail"></a>
1381
  <div id="configure-mail" class="postbox">
1382
  <h3 class="hndle"><span>
1383
- <?php _e("Configure Mail", 'custom-contact-forms'); ?>
1384
  </span></h3>
1385
  <div class="inside">
1386
  <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
@@ -1392,8 +1393,8 @@ if (!class_exists('CustomContactFormsAdmin')) {
1392
  </select> <?php _e("(If mail isn't sending, try toggling this option.)", 'custom-contact-forms'); ?>
1393
  <div>
1394
  <ul class="left">
1395
- <li><label for="smtp_host"><?php _e("SMTP Host:", 'custom-contact-forms'); ?></label> <input type="text" size="10" name="mail_config[smtp_host]" value="<?php echo $admin_options['smtp_host']; ?>" /></li>
1396
- <li><label for="smtp_port"><?php _e("SMTP Port:", 'custom-contact-forms'); ?></label> <input type="text" size="10" name="mail_config[smtp_port]" value="<?php echo $admin_options['smtp_port']; ?>" /></li>
1397
  <li><label for="smtp_encryption"><?php _e("Encryption:", 'custom-contact-forms'); ?></label> <select name="mail_config[smtp_encryption]">
1398
  <option value="none"><?php _e("None", 'custom-contact-forms'); ?></option>
1399
  <option <?php if ($admin_options['smtp_encryption'] == 'ssl') echo 'selected="selected"'; ?> value="ssl"><?php _e("SSL", 'custom-contact-forms'); ?></option>
@@ -1402,8 +1403,8 @@ if (!class_exists('CustomContactFormsAdmin')) {
1402
  </ul>
1403
  <ul class="right">
1404
  <li><label for="smtp_authentication"><?php _e("SMTP Authentication:", 'custom-contact-forms'); ?></label> <select name="mail_config[smtp_authentication]"><option value="0"><?php _e("None Needed", 'custom-contact-forms'); ?></option><option <?php if ($admin_options['smtp_authentication'] == 1) echo 'selected="selected"'; ?> value="1"><?php _e("Use SMTP Username/Password", 'custom-contact-forms'); ?></option></select></li>
1405
- <li><label for="smtp_username"><?php _e("SMTP Username:", 'custom-contact-forms'); ?></label> <input type="text" size="10" name="mail_config[smtp_username]" value="<?php echo $admin_options['smtp_username']; ?>" /></li>
1406
- <li><label for="smtp_password"><?php _e("SMTP Password:", 'custom-contact-forms'); ?></label> <input type="text" size="10" name="mail_config[smtp_password]" value="<?php echo $admin_options['smtp_password']; ?>" /></li>
1407
  </ul>
1408
  </div>
1409
  <input type="submit" name="configure_mail" value="<?php _e("Save Mail Sending Options", 'custom-contact-forms'); ?>" />
32
 
33
  function downloadExportFile() {
34
  if ($_POST['ccf_export']) {
35
+ //chmod('modules/export/', 0777);
36
  require_once('modules/export/custom-contact-forms-export.php');
37
  $transit = new CustomContactFormsExport(parent::getAdminOptionsName());
38
  $transit->exportAll();
43
 
44
  function runImport() {
45
  if ($_POST['ccf_clear_import'] || $_POST['ccf_merge_import']) {
46
+ //chmod('modules/export/', 0777);
47
  require_once('modules/export/custom-contact-forms-export.php');
48
  $transit = new CustomContactFormsExport(parent::getAdminOptionsName());
49
  $settings['import_general_settings'] = ($_POST['ccf_import_overwrite_settings'] == 1) ? true : false;
341
  <ul id="plugin-nav">
342
  <li><a href="#instructions"><?php _e("Plugin Instructions", 'custom-contact-forms'); ?></a></li>
343
  <li><a href="#general-settings"><?php _e("General Settings", 'custom-contact-forms'); ?></a></li>
344
+ <li><a href="#configure-mail"><?php _e("Mail Settings", 'custom-contact-forms'); ?></a></li>
345
  <li><a href="#create-fields"><?php _e("Create Fields", 'custom-contact-forms'); ?></a></li>
346
  <li><a href="#create-forms"><?php _e("Create Forms", 'custom-contact-forms'); ?></a></li>
347
  <li><a href="#manage-fields"><?php _e("Manage Fields", 'custom-contact-forms'); ?></a></li>
1381
  <a name="configure-mail"></a>
1382
  <div id="configure-mail" class="postbox">
1383
  <h3 class="hndle"><span>
1384
+ <?php _e("Mail Settings", 'custom-contact-forms'); ?>
1385
  </span></h3>
1386
  <div class="inside">
1387
  <form method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
1393
  </select> <?php _e("(If mail isn't sending, try toggling this option.)", 'custom-contact-forms'); ?>
1394
  <div>
1395
  <ul class="left">
1396
+ <li><label for="smtp_host"><?php _e("SMTP Host:", 'custom-contact-forms'); ?></label> <input class="width125" type="text" size="10" name="mail_config[smtp_host]" value="<?php echo $admin_options['smtp_host']; ?>" /></li>
1397
+ <li><label for="smtp_port"><?php _e("SMTP Port:", 'custom-contact-forms'); ?></label> <input class="width125" type="text" size="10" name="mail_config[smtp_port]" value="<?php echo $admin_options['smtp_port']; ?>" /></li>
1398
  <li><label for="smtp_encryption"><?php _e("Encryption:", 'custom-contact-forms'); ?></label> <select name="mail_config[smtp_encryption]">
1399
  <option value="none"><?php _e("None", 'custom-contact-forms'); ?></option>
1400
  <option <?php if ($admin_options['smtp_encryption'] == 'ssl') echo 'selected="selected"'; ?> value="ssl"><?php _e("SSL", 'custom-contact-forms'); ?></option>
1403
  </ul>
1404
  <ul class="right">
1405
  <li><label for="smtp_authentication"><?php _e("SMTP Authentication:", 'custom-contact-forms'); ?></label> <select name="mail_config[smtp_authentication]"><option value="0"><?php _e("None Needed", 'custom-contact-forms'); ?></option><option <?php if ($admin_options['smtp_authentication'] == 1) echo 'selected="selected"'; ?> value="1"><?php _e("Use SMTP Username/Password", 'custom-contact-forms'); ?></option></select></li>
1406
+ <li><label for="smtp_username"><?php _e("SMTP Username:", 'custom-contact-forms'); ?></label> <input class="width125" type="text" size="10" name="mail_config[smtp_username]" value="<?php echo $admin_options['smtp_username']; ?>" /></li>
1407
+ <li><label for="smtp_password"><?php _e("SMTP Password:", 'custom-contact-forms'); ?></label> <input class="width125" type="text" size="10" name="mail_config[smtp_password]" value="<?php echo $admin_options['smtp_password']; ?>" /></li>
1408
  </ul>
1409
  </div>
1410
  <input type="submit" name="configure_mail" value="<?php _e("Save Mail Sending Options", 'custom-contact-forms'); ?>" />
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.0.b9
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.0
7
  Author: Taylor Lovett
8
  Author URI: http://www.taylorlovett.com
9
  */
images/button-grad.png ADDED
Binary file
images/white-grad.png ADDED
Binary file
lang/custom-contact-forms.mo CHANGED
Binary file
lang/custom-contact-forms.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: custom-contact-forms\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-10-30 13:13-0500\n"
6
- "PO-Revision-Date: 2010-10-30 13:14-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"
@@ -14,1609 +14,1688 @@ msgstr ""
14
  "X-Poedit-Language: English\n"
15
  "X-Poedit-Country: UNITED STATES\n"
16
  "X-Poedit-SearchPath-0: ..\n"
 
 
 
 
 
17
 
18
- #: ../custom-contact-forms-admin.php:138
19
  msgid "Attaching"
20
  msgstr ""
21
 
22
- #: ../custom-contact-forms-admin.php:139
23
  msgid "Dettaching"
24
  msgstr ""
25
 
26
- #: ../custom-contact-forms-admin.php:140
27
  msgid "Saving"
28
  msgstr ""
29
 
30
- #: ../custom-contact-forms-admin.php:141
31
  msgid "More Options"
32
  msgstr ""
33
 
34
- #: ../custom-contact-forms-admin.php:142
35
  msgid "Expand"
36
  msgstr ""
37
 
38
- #: ../custom-contact-forms-admin.php:143
39
  msgid "Click to Confirm"
40
  msgstr ""
41
 
42
- #: ../custom-contact-forms-admin.php:144
43
  msgid "Are you sure you want to delete this"
44
  msgstr ""
45
 
46
- #: ../custom-contact-forms-admin.php:145
47
  msgid "An error has occured. Please try again later."
48
  msgstr ""
49
 
50
- #: ../custom-contact-forms-admin.php:318
51
  msgid "Custom Contact Forms"
52
  msgstr ""
53
 
54
- #: ../custom-contact-forms-admin.php:322
55
  msgid "Plugin Instructions"
56
  msgstr ""
57
 
58
- #: ../custom-contact-forms-admin.php:325
59
- #: ../custom-contact-forms-admin.php:1113
60
  msgid "General Settings"
61
  msgstr ""
62
 
63
- #: ../custom-contact-forms-admin.php:328
 
 
 
 
 
64
  msgid "Create Fields"
65
  msgstr ""
66
 
67
- #: ../custom-contact-forms-admin.php:331
68
  msgid "Create Forms"
69
  msgstr ""
70
 
71
- #: ../custom-contact-forms-admin.php:334
72
  msgid "Manage Fields"
73
  msgstr ""
74
 
75
- #: ../custom-contact-forms-admin.php:337
76
- #: ../custom-contact-forms-admin.php:697
77
  msgid "Manage Fixed Fields"
78
  msgstr ""
79
 
80
- #: ../custom-contact-forms-admin.php:340
81
- #: ../custom-contact-forms-admin.php:897
82
  msgid "Manage Forms"
83
  msgstr ""
84
 
85
- #: ../custom-contact-forms-admin.php:343
86
  msgid "Saved Form Submissions (New!)"
87
  msgstr ""
88
 
89
- #: ../custom-contact-forms-admin.php:346
90
  msgid "Create Styles"
91
  msgstr ""
92
 
93
- #: ../custom-contact-forms-admin.php:349
94
  msgid "Manage Styles"
95
  msgstr ""
96
 
97
- #: ../custom-contact-forms-admin.php:352
98
  msgid "Manage Field Options"
99
  msgstr ""
100
 
101
- #: ../custom-contact-forms-admin.php:355
102
- #: ../custom-contact-forms-admin.php:1975
103
  msgid "Suggest a Feature"
104
  msgstr ""
105
 
106
- #: ../custom-contact-forms-admin.php:358
107
- #: ../custom-contact-forms-admin.php:1972
108
  msgid "Bug Report"
109
  msgstr ""
110
 
111
- #: ../custom-contact-forms-admin.php:361
112
- #: ../custom-contact-forms-usage-popover.php:20
113
  msgid "Custom HTML Forms"
114
  msgstr ""
115
 
116
- #: ../custom-contact-forms-admin.php:364
117
  msgid "Import / Export (New!)"
118
  msgstr ""
119
 
120
- #: ../custom-contact-forms-admin.php:367
121
  msgid "Plugin News"
122
  msgstr ""
123
 
124
- #: ../custom-contact-forms-admin.php:370
125
  msgid "Rate This Plugin"
126
  msgstr ""
127
 
128
- #: ../custom-contact-forms-admin.php:371
129
  msgid "We need your help to continue development! Please <span>rate this plugin</span> to show your support."
130
  msgstr ""
131
 
132
- #: ../custom-contact-forms-admin.php:375
133
  msgid "Create A Form Field"
134
  msgstr ""
135
 
136
- #: ../custom-contact-forms-admin.php:382
137
- msgid "Slug (Name):"
138
  msgstr ""
139
 
140
- #: ../custom-contact-forms-admin.php:386
141
- msgid "(A slug is simply a way to identify your field. It can only contain underscores, letters, and numbers and must be unique.)"
142
  msgstr ""
143
 
144
- #: ../custom-contact-forms-admin.php:390
145
- #: ../custom-contact-forms-usage-popover.php:130
146
  msgid "Field Label:"
147
  msgstr ""
148
 
149
- #: ../custom-contact-forms-admin.php:394
150
- msgid "(The field label is displayed next to the field and is visible to the user.)"
 
151
  msgstr ""
152
 
153
- #: ../custom-contact-forms-admin.php:398
154
- #: ../custom-contact-forms-usage-popover.php:135
155
  msgid "Field Type:"
156
  msgstr ""
157
 
158
- #: ../custom-contact-forms-admin.php:411
159
- #: ../custom-contact-forms-usage-popover.php:140
160
  msgid "Initial Value:"
161
  msgstr ""
162
 
163
- #: ../custom-contact-forms-admin.php:416
164
  msgid ""
165
  "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"
166
  "\t\t\t\t\t\t'Are you human?', I would set the initial value to 'Yes'."
167
  msgstr ""
168
 
169
- #: ../custom-contact-forms-admin.php:418
170
  msgid "If you set the field type as 'Dropdown' or 'Radio', you should enter the slug of the"
171
  msgstr ""
172
 
173
- #: ../custom-contact-forms-admin.php:419
174
- #: ../custom-contact-forms-admin.php:858
175
  msgid "Create a Field Option"
176
  msgstr ""
177
 
178
- #: ../custom-contact-forms-admin.php:420
179
  msgid "field option"
180
  msgstr ""
181
 
182
- #: ../custom-contact-forms-admin.php:422
183
  msgid "you would like initially selected."
184
  msgstr ""
185
 
186
- #: ../custom-contact-forms-admin.php:426
187
- #: ../custom-contact-forms-usage-popover.php:145
188
  msgid "Max Length:"
189
  msgstr ""
190
 
191
- #: ../custom-contact-forms-admin.php:430
192
- msgid "(0 for no limit; only applies to Text fields)"
193
  msgstr ""
194
 
195
- #: ../custom-contact-forms-admin.php:434
196
- #: ../custom-contact-forms-usage-popover.php:150
197
  msgid "Required Field:"
198
  msgstr ""
199
 
200
- #: ../custom-contact-forms-admin.php:438
201
- #: ../custom-contact-forms-admin.php:606
202
- #: ../custom-contact-forms-admin.php:740
203
- #: ../custom-contact-forms-admin.php:1127
204
- #: ../custom-contact-forms-admin.php:1204
205
- #: ../custom-contact-forms-admin.php:1236
206
- #: ../custom-contact-forms-admin.php:1277
207
  msgid "No"
208
  msgstr ""
209
 
210
- #: ../custom-contact-forms-admin.php:441
211
- #: ../custom-contact-forms-admin.php:603
212
- #: ../custom-contact-forms-admin.php:737
213
- #: ../custom-contact-forms-admin.php:747
214
- #: ../custom-contact-forms-admin.php:1124
215
- #: ../custom-contact-forms-admin.php:1201
216
- #: ../custom-contact-forms-admin.php:1233
217
- #: ../custom-contact-forms-admin.php:1274
218
  msgid "Yes"
219
  msgstr ""
220
 
221
- #: ../custom-contact-forms-admin.php:445
222
- msgid "(If a field is required and a user leaves it blank, the plugin will display an error message explainging the problem.)"
223
  msgstr ""
224
 
225
- #: ../custom-contact-forms-admin.php:449
226
- #: ../custom-contact-forms-admin.php:625
227
- #: ../custom-contact-forms-admin.php:768
228
- #: ../custom-contact-forms-usage-popover.php:155
229
  msgid "Field Instructions:"
230
  msgstr ""
231
 
232
- #: ../custom-contact-forms-admin.php:453
233
- msgid "(If this is filled out, a tooltip popover displaying this text will show when the field is selected.)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234
  msgstr ""
235
 
236
- #: ../custom-contact-forms-admin.php:457
237
  msgid "Create Field"
238
  msgstr ""
239
 
240
- #: ../custom-contact-forms-admin.php:466
241
  msgid "Create A Form"
242
  msgstr ""
243
 
244
- #: ../custom-contact-forms-admin.php:473
245
  msgid "Form Slug:"
246
  msgstr ""
247
 
248
- #: ../custom-contact-forms-admin.php:477
249
- msgid "(Must be unique and contain only underscores and alphanumeric characters.)"
250
  msgstr ""
251
 
252
- #: ../custom-contact-forms-admin.php:481
253
- #: ../custom-contact-forms-usage-popover.php:211
254
  msgid "Form Title:"
255
  msgstr ""
256
 
257
- #: ../custom-contact-forms-admin.php:484
258
- msgid "(The form header text)"
259
  msgstr ""
260
 
261
- #: ../custom-contact-forms-admin.php:488
262
- #: ../custom-contact-forms-usage-popover.php:216
263
  msgid "Form Method:"
264
  msgstr ""
265
 
266
- #: ../custom-contact-forms-admin.php:494
267
- msgid "(If unsure, leave as is.)"
268
  msgstr ""
269
 
270
- #: ../custom-contact-forms-admin.php:498
271
- #: ../custom-contact-forms-usage-popover.php:221
272
  msgid "Form Action:"
273
  msgstr ""
274
 
275
- #: ../custom-contact-forms-admin.php:502
276
- 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.)"
277
  msgstr ""
278
 
279
- #: ../custom-contact-forms-admin.php:506
280
- #: ../custom-contact-forms-usage-popover.php:226
281
  msgid "Form Style:"
282
  msgstr ""
283
 
284
- #: ../custom-contact-forms-admin.php:512
285
  msgid "Click to create a style"
286
  msgstr ""
287
 
288
- #: ../custom-contact-forms-admin.php:516
289
- #: ../custom-contact-forms-usage-popover.php:231
290
  msgid "Submit Button Text:"
291
  msgstr ""
292
 
293
- #: ../custom-contact-forms-admin.php:522
294
- #: ../custom-contact-forms-admin.php:1004
295
- #: ../custom-contact-forms-usage-popover.php:236
296
  msgid "Custom Code:"
297
  msgstr ""
298
 
299
- #: ../custom-contact-forms-admin.php:526
300
- msgid "(If unsure, leave blank. This field allows you to insert custom HTML directly after the starting form tag.)"
 
301
  msgstr ""
302
 
303
- #: ../custom-contact-forms-admin.php:530
304
- #: ../custom-contact-forms-usage-popover.php:241
305
  msgid "Form Destination Email:"
306
  msgstr ""
307
 
308
- #: ../custom-contact-forms-admin.php:534
309
- msgid "(Will receive all submissions from this form; if left blank it will use the default specified in general settings.)"
310
  msgstr ""
311
 
312
- #: ../custom-contact-forms-admin.php:538
313
- #: ../custom-contact-forms-usage-popover.php:246
314
  msgid "Form Success Message:"
315
  msgstr ""
316
 
317
- #: ../custom-contact-forms-admin.php:542
318
- #: ../custom-contact-forms-admin.php:550
319
- 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.)"
 
320
  msgstr ""
321
 
322
- #: ../custom-contact-forms-admin.php:546
323
- #: ../custom-contact-forms-usage-popover.php:251
324
  msgid "Form Success Message Title:"
325
  msgstr ""
326
 
327
- #: ../custom-contact-forms-admin.php:554
328
- #: ../custom-contact-forms-usage-popover.php:256
329
  msgid "Custom Success URL:"
330
  msgstr ""
331
 
332
- #: ../custom-contact-forms-admin.php:558
333
- 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.)"
334
  msgstr ""
335
 
336
- #: ../custom-contact-forms-admin.php:561
337
  msgid "Create Form"
338
  msgstr ""
339
 
340
- #: ../custom-contact-forms-admin.php:569
341
  msgid "Manage User Fields"
342
  msgstr ""
343
 
344
- #: ../custom-contact-forms-admin.php:574
345
- #: ../custom-contact-forms-admin.php:685
346
- #: ../custom-contact-forms-admin.php:702
347
- #: ../custom-contact-forms-admin.php:782
348
- #: ../custom-contact-forms-admin.php:800
349
- #: ../custom-contact-forms-admin.php:843
350
- #: ../custom-contact-forms-admin.php:903
351
- #: ../custom-contact-forms-admin.php:1026
352
  msgid "Slug"
353
  msgstr ""
354
 
355
- #: ../custom-contact-forms-admin.php:575
356
- #: ../custom-contact-forms-admin.php:686
357
- #: ../custom-contact-forms-admin.php:703
358
- #: ../custom-contact-forms-admin.php:783
359
- #: ../custom-contact-forms-admin.php:803
360
- #: ../custom-contact-forms-admin.php:846
361
  msgid "Label"
362
  msgstr ""
363
 
364
- #: ../custom-contact-forms-admin.php:576
365
- #: ../custom-contact-forms-admin.php:687
366
- #: ../custom-contact-forms-admin.php:704
367
- #: ../custom-contact-forms-admin.php:784
368
  msgid "Type"
369
  msgstr ""
370
 
371
- #: ../custom-contact-forms-admin.php:577
372
- #: ../custom-contact-forms-admin.php:688
373
- #: ../custom-contact-forms-admin.php:705
374
- #: ../custom-contact-forms-admin.php:785
375
  msgid "Initial Value"
376
  msgstr ""
377
 
378
- #: ../custom-contact-forms-admin.php:578
379
- #: ../custom-contact-forms-admin.php:689
380
- #: ../custom-contact-forms-admin.php:706
381
- #: ../custom-contact-forms-admin.php:786
382
  msgid "Required"
383
  msgstr ""
384
 
385
- #: ../custom-contact-forms-admin.php:579
386
- #: ../custom-contact-forms-admin.php:690
387
- #: ../custom-contact-forms-admin.php:707
388
- #: ../custom-contact-forms-admin.php:787
389
  msgid "Maxlength"
390
  msgstr ""
391
 
392
- #: ../custom-contact-forms-admin.php:580
393
- #: ../custom-contact-forms-admin.php:691
394
- #: ../custom-contact-forms-admin.php:708
395
- #: ../custom-contact-forms-admin.php:788
396
- #: ../custom-contact-forms-admin.php:809
397
- #: ../custom-contact-forms-admin.php:852
398
- #: ../custom-contact-forms-admin.php:907
399
- #: ../custom-contact-forms-admin.php:1030
400
- #: ../custom-contact-forms-admin.php:1051
401
- #: ../custom-contact-forms-admin.php:1105
402
  msgid "Action"
403
  msgstr ""
404
 
405
- #: ../custom-contact-forms-admin.php:618
406
- #: ../custom-contact-forms-admin.php:759
407
- #: ../custom-contact-forms-admin.php:823
408
- #: ../custom-contact-forms-admin.php:932
409
- #: ../custom-contact-forms-admin.php:1724
410
  msgid "Save"
411
  msgstr ""
412
 
413
- #: ../custom-contact-forms-admin.php:619
414
- #: ../custom-contact-forms-admin.php:824
415
- #: ../custom-contact-forms-admin.php:933
416
- #: ../custom-contact-forms-admin.php:1074
417
  msgid "Delete"
418
  msgstr ""
419
 
420
- #: ../custom-contact-forms-admin.php:630
421
- #: ../custom-contact-forms-admin.php:763
422
- msgid "Field Class:"
423
  msgstr ""
424
 
425
- #: ../custom-contact-forms-admin.php:633
426
- 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."
 
427
  msgstr ""
428
 
429
- #: ../custom-contact-forms-admin.php:653
430
  msgid "Dettach Field Option"
431
  msgstr ""
432
 
433
- #: ../custom-contact-forms-admin.php:656
434
  msgid "Dettach field options you"
435
  msgstr ""
436
 
437
- #: ../custom-contact-forms-admin.php:658
438
- #: ../custom-contact-forms-admin.php:995
439
  msgid "create"
440
  msgstr ""
441
 
442
- #: ../custom-contact-forms-admin.php:668
443
  msgid "Attach Field Option"
444
  msgstr ""
445
 
446
- #: ../custom-contact-forms-admin.php:672
447
  msgid "Attach field options in the order you want them to display."
448
  msgstr ""
449
 
450
- #: ../custom-contact-forms-admin.php:723
451
- #: ../custom-contact-forms-admin.php:754
 
452
  msgid "None"
453
  msgstr ""
454
 
455
- #: ../custom-contact-forms-admin.php:795
456
  msgid "Manage Field Options (for Dropdown and Radio Fields)"
457
  msgstr ""
458
 
459
- #: ../custom-contact-forms-admin.php:806
460
- #: ../custom-contact-forms-admin.php:849
461
  msgid "Value"
462
  msgstr ""
463
 
464
- #: ../custom-contact-forms-admin.php:835
465
  msgid "No field options have been created."
466
  msgstr ""
467
 
468
- #: ../custom-contact-forms-admin.php:863
469
  msgid "Option Slug:"
470
  msgstr ""
471
 
472
- #: ../custom-contact-forms-admin.php:867
473
  msgid "(Used to identify this option, solely for admin purposes; must be unique, and contain only letters, numbers, and underscores. Example: 'slug_one')"
474
  msgstr ""
475
 
476
- #: ../custom-contact-forms-admin.php:871
477
- #: ../custom-contact-forms-usage-popover.php:183
478
  msgid "Option Label:"
479
  msgstr ""
480
 
481
- #: ../custom-contact-forms-admin.php:875
482
  msgid "(This is what is shown to the user in the dropdown or radio field. Example:)"
483
  msgstr ""
484
 
485
- #: ../custom-contact-forms-admin.php:879
486
- #: ../custom-contact-forms-usage-popover.php:188
487
  msgid "Option Value:"
488
  msgstr ""
489
 
490
- #: ../custom-contact-forms-admin.php:883
491
  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\".)"
492
  msgstr ""
493
 
494
- #: ../custom-contact-forms-admin.php:886
495
  msgid "Create Field Option"
496
  msgstr ""
497
 
498
- #: ../custom-contact-forms-admin.php:890
499
  msgid "The option value is behind the scences; unseen by the user, but when a user fills out the form, the option value is what is actually sent in the email to you. For dropdown fields the option value is optional, for radio fields it is required."
500
  msgstr ""
501
 
502
- #: ../custom-contact-forms-admin.php:902
503
  msgid "Form Display Code"
504
  msgstr ""
505
 
506
- #: ../custom-contact-forms-admin.php:904
507
- #: ../custom-contact-forms-admin.php:1027
508
  msgid "Title"
509
  msgstr ""
510
 
511
- #: ../custom-contact-forms-admin.php:905
512
- #: ../custom-contact-forms-admin.php:1028
513
  msgid "Button Text"
514
  msgstr ""
515
 
516
- #: ../custom-contact-forms-admin.php:906
517
- #: ../custom-contact-forms-admin.php:1029
518
  msgid "Style"
519
  msgstr ""
520
 
521
- #: ../custom-contact-forms-admin.php:940
522
  msgid "Method"
523
  msgstr ""
524
 
525
- #: ../custom-contact-forms-admin.php:941
526
  msgid "Form Action"
527
  msgstr ""
528
 
529
- #: ../custom-contact-forms-admin.php:942
530
  msgid "Destination Email"
531
  msgstr ""
532
 
533
- #: ../custom-contact-forms-admin.php:943
534
  msgid "Success Message Title"
535
  msgstr ""
536
 
537
- #: ../custom-contact-forms-admin.php:944
538
  msgid "Success Message"
539
  msgstr ""
540
 
541
- #: ../custom-contact-forms-admin.php:945
542
  msgid "Custom Success URL"
543
  msgstr ""
544
 
545
- #: ../custom-contact-forms-admin.php:948
546
  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."
547
  msgstr ""
548
 
549
- #: ../custom-contact-forms-admin.php:952
550
  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."
551
  msgstr ""
552
 
553
- #: ../custom-contact-forms-admin.php:954
554
  msgid "This email address will recieve form emails (provided that Email Form Submissions is set to Yes in general settings)."
555
  msgstr ""
556
 
557
- #: ../custom-contact-forms-admin.php:956
558
  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."
559
  msgstr ""
560
 
561
- #: ../custom-contact-forms-admin.php:958
562
  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."
563
  msgstr ""
564
 
565
- #: ../custom-contact-forms-admin.php:960
566
  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."
567
  msgstr ""
568
 
569
- #: ../custom-contact-forms-admin.php:965
570
  msgid "Attached Fields:"
571
  msgstr ""
572
 
573
- #: ../custom-contact-forms-admin.php:979
574
  msgid "Dettach Field"
575
  msgstr ""
576
 
577
- #: ../custom-contact-forms-admin.php:982
578
  msgid "Attach fields in the order you want them displayed."
579
  msgstr ""
580
 
581
- #: ../custom-contact-forms-admin.php:985
582
  msgid "Attach Field:"
583
  msgstr ""
584
 
585
- #: ../custom-contact-forms-admin.php:990
586
  msgid "Attach Field"
587
  msgstr ""
588
 
589
- #: ../custom-contact-forms-admin.php:993
590
  msgid "Attach fixed fields or ones you"
591
  msgstr ""
592
 
593
- #: ../custom-contact-forms-admin.php:999
594
  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."
595
  msgstr ""
596
 
597
- #: ../custom-contact-forms-admin.php:1000
598
  msgid "Code to Display Form in Theme Files:"
599
  msgstr ""
600
 
601
- #: ../custom-contact-forms-admin.php:1003
602
  msgid "This field allows you to insert HTML directly after the starting <form> tag."
603
  msgstr ""
604
 
605
- #: ../custom-contact-forms-admin.php:1025
606
  msgid "Form Code"
607
  msgstr ""
608
 
609
- #: ../custom-contact-forms-admin.php:1042
610
- #: ../custom-contact-forms-usage-popover.php:307
611
  msgid "Saved Form Submissions"
612
  msgstr ""
613
 
614
- #: ../custom-contact-forms-admin.php:1047
615
- #: ../custom-contact-forms-admin.php:1101
616
  msgid "Date Submitted"
617
  msgstr ""
618
 
619
- #: ../custom-contact-forms-admin.php:1048
620
- #: ../custom-contact-forms-admin.php:1102
621
  msgid "Form Submitted"
622
  msgstr ""
623
 
624
- #: ../custom-contact-forms-admin.php:1049
625
- #: ../custom-contact-forms-admin.php:1103
626
  msgid "Form Page"
627
  msgstr ""
628
 
629
- #: ../custom-contact-forms-admin.php:1068
630
  msgid "Custom HTML Form"
631
  msgstr ""
632
 
633
- #: ../custom-contact-forms-admin.php:1120
634
  msgid "Email Form Submissions:"
635
  msgstr ""
636
 
637
- #: ../custom-contact-forms-admin.php:1132
638
- msgid "When a user fills out one of your forms, the info he 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."
639
  msgstr ""
640
 
641
- #: ../custom-contact-forms-admin.php:1136
642
  msgid "Default Email:"
643
  msgstr ""
644
 
645
- #: ../custom-contact-forms-admin.php:1141
646
  msgid "Form emails will be sent <span>to</span> this address, if no destination email is specified by the form."
647
  msgstr ""
648
 
649
- #: ../custom-contact-forms-admin.php:1145
650
  msgid "Front End JQuery:"
651
  msgstr ""
652
 
653
- #: ../custom-contact-forms-admin.php:1149
654
- #: ../custom-contact-forms-admin.php:1217
655
- #: ../custom-contact-forms-admin.php:1258
656
  msgid "Enabled"
657
  msgstr ""
658
 
659
- #: ../custom-contact-forms-admin.php:1152
660
- #: ../custom-contact-forms-admin.php:1220
661
- #: ../custom-contact-forms-admin.php:1261
662
  msgid "Disabled"
663
  msgstr ""
664
 
665
- #: ../custom-contact-forms-admin.php:1157
666
  #, php-format
667
  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."
668
  msgstr ""
669
 
670
- #: ../custom-contact-forms-admin.php:1161
671
  msgid "Default From Email:"
672
  msgstr ""
673
 
674
- #: ../custom-contact-forms-admin.php:1166
675
  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."
676
  msgstr ""
677
 
678
- #: ../custom-contact-forms-admin.php:1170
679
  msgid "Default Email Subject:"
680
  msgstr ""
681
 
682
- #: ../custom-contact-forms-admin.php:1175
683
  msgid "Default subject to be included in all form emails."
684
  msgstr ""
685
 
686
- #: ../custom-contact-forms-admin.php:1179
687
  msgid "Default Form Success Message Title:"
688
  msgstr ""
689
 
690
- #: ../custom-contact-forms-admin.php:1184
691
  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."
692
  msgstr ""
693
 
694
- #: ../custom-contact-forms-admin.php:1188
695
  msgid "Default Form Success Message:"
696
  msgstr ""
697
 
698
- #: ../custom-contact-forms-admin.php:1193
699
  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."
700
  msgstr ""
701
 
702
- #: ../custom-contact-forms-admin.php:1197
703
  msgid "Remember Field Values:"
704
  msgstr ""
705
 
706
- #: ../custom-contact-forms-admin.php:1209
707
  msgid "Selecting yes will make form fields remember how they were last filled out."
708
  msgstr ""
709
 
710
- #: ../custom-contact-forms-admin.php:1213
711
  msgid "Tooltips in Widget:"
712
  msgstr ""
713
 
714
- #: ../custom-contact-forms-admin.php:1225
715
  msgid "Enabling this shows tooltips containing field instructions on forms in the widget."
716
  msgstr ""
717
 
718
- #: ../custom-contact-forms-admin.php:1229
719
  msgid "Hide Plugin Author Link in Code:"
720
  msgstr ""
721
 
722
- #: ../custom-contact-forms-admin.php:1242
723
  msgid "Use Code Type:"
724
  msgstr ""
725
 
726
- #: ../custom-contact-forms-admin.php:1250
727
  msgid "This lets you switch the form code between HTML and XHTML."
728
  msgstr ""
729
 
730
- #: ../custom-contact-forms-admin.php:1254
731
  msgid "Fancy Admin AJAX Abilities:"
732
  msgstr ""
733
 
734
- #: ../custom-contact-forms-admin.php:1266
735
  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."
736
  msgstr ""
737
 
738
- #: ../custom-contact-forms-admin.php:1270
739
- msgid "Use Wordpress Mail Function:"
740
- msgstr ""
741
-
742
- #: ../custom-contact-forms-admin.php:1282
743
- msgid "Setting this to no will use the PHP mail function. If your forms aren't sending mail properly try setting this to no."
744
- msgstr ""
745
-
746
- #: ../custom-contact-forms-admin.php:1285
747
  msgid "Show Sidebar Widget:"
748
  msgstr ""
749
 
750
- #: ../custom-contact-forms-admin.php:1290
751
  msgid "On Homepage"
752
  msgstr ""
753
 
754
- #: ../custom-contact-forms-admin.php:1294
755
  msgid "On Pages"
756
  msgstr ""
757
 
758
- #: ../custom-contact-forms-admin.php:1298
759
  msgid "On Single Posts"
760
  msgstr ""
761
 
762
- #: ../custom-contact-forms-admin.php:1303
763
  msgid "On Categories"
764
  msgstr ""
765
 
766
- #: ../custom-contact-forms-admin.php:1307
767
  msgid "On Archives"
768
  msgstr ""
769
 
770
- #: ../custom-contact-forms-admin.php:1311
771
  msgid "Update"
772
  msgstr ""
773
 
774
- #: ../custom-contact-forms-admin.php:1320
775
  msgid "Instructions"
776
  msgstr ""
777
 
778
- #: ../custom-contact-forms-admin.php:1324
779
  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."
780
  msgstr ""
781
 
782
- #: ../custom-contact-forms-admin.php:1328
783
- #: ../custom-contact-forms-usage-popover.php:41
784
  msgid "Insert Default Content"
785
  msgstr ""
786
 
787
- #: ../custom-contact-forms-admin.php:1332
788
  msgid "1. Create a form."
789
  msgstr ""
790
 
791
- #: ../custom-contact-forms-admin.php:1335
792
  msgid "2. Create fields and attach those fields to the forms of your choice."
793
  msgstr ""
794
 
795
- #: ../custom-contact-forms-admin.php:1337
796
  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."
797
  msgstr ""
798
 
799
- #: ../custom-contact-forms-admin.php:1340
800
  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."
801
  msgstr ""
802
 
803
- #: ../custom-contact-forms-admin.php:1343
804
  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."
805
  msgstr ""
806
 
807
- #: ../custom-contact-forms-admin.php:1346
808
  msgid "5. Add a form to your sidebar, by dragging the Custom Contact Form widget in to your sidebar."
809
  msgstr ""
810
 
811
- #: ../custom-contact-forms-admin.php:1349
812
  msgid "6. Configure the General Settings appropriately; this is important if you want to receive your web form messages!"
813
  msgstr ""
814
 
815
- #: ../custom-contact-forms-admin.php:1352
816
  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."
817
  msgstr ""
818
 
819
- #: ../custom-contact-forms-admin.php:1355
820
  msgid "8. (advanced) If you are confident in your HTML and CSS skills, you can use the"
821
  msgstr ""
822
 
823
- #: ../custom-contact-forms-admin.php:1357
824
  msgid "Custom HTML Forms feature"
825
  msgstr ""
826
 
827
- #: ../custom-contact-forms-admin.php:1359
828
  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."
829
  msgstr ""
830
 
831
- #: ../custom-contact-forms-admin.php:1362
832
  msgid "These instructions briefly tell you in which order you should use forms, fields, field options, and styles."
833
  msgstr ""
834
 
835
- #: ../custom-contact-forms-admin.php:1364
836
  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."
837
  msgstr ""
838
 
839
- #: ../custom-contact-forms-admin.php:1367
840
  msgid "View Plugin Usage Popover"
841
  msgstr ""
842
 
843
- #: ../custom-contact-forms-admin.php:1376
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
844
  msgid "Create A Style for Your Forms"
845
  msgstr ""
846
 
847
- #: ../custom-contact-forms-admin.php:1380
848
  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."
849
  msgstr ""
850
 
851
- #: ../custom-contact-forms-admin.php:1386
852
  msgid "Style Slug:"
853
  msgstr ""
854
 
855
- #: ../custom-contact-forms-admin.php:1389
856
  msgid "(Must be unique)"
857
  msgstr ""
858
 
859
- #: ../custom-contact-forms-admin.php:1393
860
- #: ../custom-contact-forms-admin.php:1794
861
- #: ../custom-contact-forms-admin.php:1803
862
  msgid "Title Font Size:"
863
  msgstr ""
864
 
865
- #: ../custom-contact-forms-admin.php:1396
866
  msgid "(ex: 10pt, 10px, 1em)"
867
  msgstr ""
868
 
869
- #: ../custom-contact-forms-admin.php:1400
870
- #: ../custom-contact-forms-admin.php:1842
871
- #: ../custom-contact-forms-admin.php:1910
872
  msgid "Title Font Color:"
873
  msgstr ""
874
 
875
- #: ../custom-contact-forms-admin.php:1403
876
- #: ../custom-contact-forms-admin.php:1424
877
- #: ../custom-contact-forms-admin.php:1488
878
- #: ../custom-contact-forms-admin.php:1589
879
- #: ../custom-contact-forms-admin.php:1596
880
- #: ../custom-contact-forms-admin.php:1624
881
  msgid "(ex: FF0000)"
882
  msgstr ""
883
 
884
- #: ../custom-contact-forms-admin.php:1407
885
- #: ../custom-contact-forms-admin.php:1767
886
  msgid "Label Width:"
887
  msgstr ""
888
 
889
- #: ../custom-contact-forms-admin.php:1410
890
  msgid "(ex: 100px or 20%)"
891
  msgstr ""
892
 
893
- #: ../custom-contact-forms-admin.php:1414
894
- #: ../custom-contact-forms-admin.php:1808
895
  msgid "Label Font Size:"
896
  msgstr ""
897
 
898
- #: ../custom-contact-forms-admin.php:1417
899
- #: ../custom-contact-forms-admin.php:1582
900
  msgid "(ex: 10px, 10pt, 1em)"
901
  msgstr ""
902
 
903
- #: ../custom-contact-forms-admin.php:1421
904
- #: ../custom-contact-forms-admin.php:1847
905
  msgid "Label Font Color:"
906
  msgstr ""
907
 
908
- #: ../custom-contact-forms-admin.php:1428
909
- #: ../custom-contact-forms-admin.php:1734
910
  msgid "Text Field Width:"
911
  msgstr ""
912
 
913
- #: ../custom-contact-forms-admin.php:1431
914
- #: ../custom-contact-forms-admin.php:1438
915
- #: ../custom-contact-forms-admin.php:1445
916
- #: ../custom-contact-forms-admin.php:1525
917
  msgid "(ex: 100px or 100%)"
918
  msgstr ""
919
 
920
- #: ../custom-contact-forms-admin.php:1435
921
  msgid "Textarea Field Width:"
922
  msgstr ""
923
 
924
- #: ../custom-contact-forms-admin.php:1442
925
  msgid "Textarea Field Height:"
926
  msgstr ""
927
 
928
- #: ../custom-contact-forms-admin.php:1449
929
- #: ../custom-contact-forms-admin.php:1813
930
  msgid "Field Font Size:"
931
  msgstr ""
932
 
933
- #: ../custom-contact-forms-admin.php:1452
934
  msgid "(ex: 10px, 10pt, 1em"
935
  msgstr ""
936
 
937
- #: ../custom-contact-forms-admin.php:1456
938
- #: ../custom-contact-forms-admin.php:1852
939
  msgid "Field Font Color:"
940
  msgstr ""
941
 
942
- #: ../custom-contact-forms-admin.php:1459
943
- #: ../custom-contact-forms-admin.php:1495
944
  msgid "(ex: 333333)"
945
  msgstr ""
946
 
947
- #: ../custom-contact-forms-admin.php:1463
948
- #: ../custom-contact-forms-admin.php:1901
949
  msgid "Field Border Style:"
950
  msgstr ""
951
 
952
- #: ../custom-contact-forms-admin.php:1471
953
- #: ../custom-contact-forms-admin.php:1862
954
  msgid "Form Margin:"
955
  msgstr ""
956
 
957
- #: ../custom-contact-forms-admin.php:1474
958
- #: ../custom-contact-forms-admin.php:1481
959
- #: ../custom-contact-forms-admin.php:1603
960
- #: ../custom-contact-forms-admin.php:1610
961
  msgid "(ex: 5px or 1em)"
962
  msgstr ""
963
 
964
- #: ../custom-contact-forms-admin.php:1478
965
- #: ../custom-contact-forms-admin.php:1754
966
  msgid "Label Margin:"
967
  msgstr ""
968
 
969
- #: ../custom-contact-forms-admin.php:1485
970
  msgid "Textarea Background Color:"
971
  msgstr ""
972
 
973
- #: ../custom-contact-forms-admin.php:1492
974
  msgid "Success Popover Font Color:"
975
  msgstr ""
976
 
977
- #: ../custom-contact-forms-admin.php:1499
978
  msgid "Success Popover Title Font Size:"
979
  msgstr ""
980
 
981
- #: ../custom-contact-forms-admin.php:1502
982
- #: ../custom-contact-forms-admin.php:1509
983
- #: ../custom-contact-forms-admin.php:1631
984
- #: ../custom-contact-forms-admin.php:1654
985
  msgid "(ex: 12px, 1em, 100%)"
986
  msgstr ""
987
 
988
- #: ../custom-contact-forms-admin.php:1506
989
- #: ../custom-contact-forms-admin.php:1798
990
  msgid "Form Background Color:"
991
  msgstr ""
992
 
993
- #: ../custom-contact-forms-admin.php:1513
994
  msgid "Tooltip Background Color:"
995
  msgstr ""
996
 
997
- #: ../custom-contact-forms-admin.php:1516
998
  msgid "(ex: 000000 or black)"
999
  msgstr ""
1000
 
1001
- #: ../custom-contact-forms-admin.php:1522
1002
- #: ../custom-contact-forms-admin.php:1896
1003
  msgid "Field Border Color:"
1004
  msgstr ""
1005
 
1006
- #: ../custom-contact-forms-admin.php:1529
1007
- #: ../custom-contact-forms-admin.php:1879
1008
  msgid "Form Border Style:"
1009
  msgstr ""
1010
 
1011
- #: ../custom-contact-forms-admin.php:1537
1012
- #: ../custom-contact-forms-admin.php:1891
1013
  msgid "Form Border Color:"
1014
  msgstr ""
1015
 
1016
- #: ../custom-contact-forms-admin.php:1540
1017
  msgid "(ex: 000000)"
1018
  msgstr ""
1019
 
1020
- #: ../custom-contact-forms-admin.php:1544
1021
- #: ../custom-contact-forms-admin.php:1886
1022
  msgid "Form Border Width:"
1023
  msgstr ""
1024
 
1025
- #: ../custom-contact-forms-admin.php:1547
1026
  msgid "(ex: 1px)"
1027
  msgstr ""
1028
 
1029
- #: ../custom-contact-forms-admin.php:1551
1030
- #: ../custom-contact-forms-admin.php:1729
1031
  msgid "Form Width:"
1032
  msgstr ""
1033
 
1034
- #: ../custom-contact-forms-admin.php:1554
1035
  msgid "(ex: 100px or 50%)"
1036
  msgstr ""
1037
 
1038
- #: ../custom-contact-forms-admin.php:1558
1039
  msgid "Form Font Family:"
1040
  msgstr ""
1041
 
1042
- #: ../custom-contact-forms-admin.php:1561
1043
  msgid "(ex: Verdana, Tahoma, Arial)"
1044
  msgstr ""
1045
 
1046
- #: ../custom-contact-forms-admin.php:1565
1047
- #: ../custom-contact-forms-admin.php:1772
1048
  msgid "Button Width:"
1049
  msgstr ""
1050
 
1051
- #: ../custom-contact-forms-admin.php:1568
1052
  msgid "(ex: 100px, 30%, auto)"
1053
  msgstr ""
1054
 
1055
- #: ../custom-contact-forms-admin.php:1572
1056
- #: ../custom-contact-forms-admin.php:1777
1057
  msgid "Button Height:"
1058
  msgstr ""
1059
 
1060
- #: ../custom-contact-forms-admin.php:1575
1061
  msgid "(ex: 100px or 30%)"
1062
  msgstr ""
1063
 
1064
- #: ../custom-contact-forms-admin.php:1579
1065
- #: ../custom-contact-forms-admin.php:1818
1066
  msgid "Button Font Size:"
1067
  msgstr ""
1068
 
1069
- #: ../custom-contact-forms-admin.php:1586
1070
- #: ../custom-contact-forms-admin.php:1857
1071
  msgid "Button Font Color:"
1072
  msgstr ""
1073
 
1074
- #: ../custom-contact-forms-admin.php:1593
1075
- #: ../custom-contact-forms-admin.php:1782
1076
  msgid "Field Background Color:"
1077
  msgstr ""
1078
 
1079
- #: ../custom-contact-forms-admin.php:1600
1080
- #: ../custom-contact-forms-admin.php:1823
1081
  msgid "Form Padding:"
1082
  msgstr ""
1083
 
1084
- #: ../custom-contact-forms-admin.php:1607
1085
- #: ../custom-contact-forms-admin.php:1787
1086
  msgid "Title Margin:"
1087
  msgstr ""
1088
 
1089
- #: ../custom-contact-forms-admin.php:1614
1090
- #: ../custom-contact-forms-admin.php:1749
1091
  msgid "Dropdown Width:"
1092
  msgstr ""
1093
 
1094
- #: ../custom-contact-forms-admin.php:1617
1095
  msgid "(ex: 30px, 20%, or auto)"
1096
  msgstr ""
1097
 
1098
- #: ../custom-contact-forms-admin.php:1621
1099
  msgid "Success Popover Border Color:"
1100
  msgstr ""
1101
 
1102
- #: ../custom-contact-forms-admin.php:1628
1103
  msgid "Success Popover Font Size:"
1104
  msgstr ""
1105
 
1106
- #: ../custom-contact-forms-admin.php:1635
1107
  msgid "Success Popover Height:"
1108
  msgstr ""
1109
 
1110
- #: ../custom-contact-forms-admin.php:1638
1111
  msgid "(ex: 200px, 6em, 50%)"
1112
  msgstr ""
1113
 
1114
- #: ../custom-contact-forms-admin.php:1642
1115
- #: ../custom-contact-forms-admin.php:1915
1116
  msgid "Field Border Roundness:"
1117
  msgstr ""
1118
 
1119
- #: ../custom-contact-forms-admin.php:1645
1120
  msgid "(ex: 6px, or 0px)"
1121
  msgstr ""
1122
 
1123
- #: ../custom-contact-forms-admin.php:1649
1124
- #: ../custom-contact-forms-admin.php:1718
1125
- #: ../custom-contact-forms-admin.php:1835
1126
  msgid "Tooltip"
1127
  msgstr ""
1128
 
1129
- #: ../custom-contact-forms-admin.php:1650
1130
- #: ../custom-contact-forms-admin.php:1719
1131
- #: ../custom-contact-forms-admin.php:1836
1132
  msgid "A tooltip is the little box that fades in displaying 'Field Instructions' when a user selects a particular field."
1133
  msgstr ""
1134
 
1135
- #: ../custom-contact-forms-admin.php:1651
1136
- #: ../custom-contact-forms-admin.php:1830
1137
  msgid "Font Size:"
1138
  msgstr ""
1139
 
1140
- #: ../custom-contact-forms-admin.php:1658
1141
  msgid "Tooltip Font Color:"
1142
  msgstr ""
1143
 
1144
- #: ../custom-contact-forms-admin.php:1661
1145
  msgid "(ex: ffffff or white)"
1146
  msgstr ""
1147
 
1148
- #: ../custom-contact-forms-admin.php:1664
1149
  msgid "Create Style"
1150
  msgstr ""
1151
 
1152
- #: ../custom-contact-forms-admin.php:1672
1153
  msgid "Manage Form Styles"
1154
  msgstr ""
1155
 
1156
- #: ../custom-contact-forms-admin.php:1694
1157
- #: ../custom-contact-forms-usage-popover.php:125
1158
- #: ../custom-contact-forms-usage-popover.php:178
1159
- #: ../custom-contact-forms-usage-popover.php:206
1160
  msgid "Slug:"
1161
  msgstr ""
1162
 
1163
- #: ../custom-contact-forms-admin.php:1699
1164
  msgid "Font Family:"
1165
  msgstr ""
1166
 
1167
- #: ../custom-contact-forms-admin.php:1704
1168
  msgid "Textarea Background"
1169
  msgstr ""
1170
 
1171
- #: ../custom-contact-forms-admin.php:1706
1172
  msgid "Color:"
1173
  msgstr ""
1174
 
1175
- #: ../custom-contact-forms-admin.php:1711
1176
- #: ../custom-contact-forms-admin.php:1759
1177
- #: ../custom-contact-forms-admin.php:1792
1178
- #: ../custom-contact-forms-admin.php:1828
1179
- #: ../custom-contact-forms-admin.php:1867
1180
  #: ../custom-contact-forms-admin.php:1908
 
1181
  msgid "Success Popover"
1182
  msgstr ""
1183
 
1184
- #: ../custom-contact-forms-admin.php:1713
1185
  msgid "Border Color:"
1186
  msgstr ""
1187
 
1188
- #: ../custom-contact-forms-admin.php:1720
1189
- #: ../custom-contact-forms-admin.php:1869
1190
  msgid "Font Color:"
1191
  msgstr ""
1192
 
1193
- #: ../custom-contact-forms-admin.php:1726
1194
  msgid "Delete Style"
1195
  msgstr ""
1196
 
1197
- #: ../custom-contact-forms-admin.php:1739
1198
  msgid "Textarea Width:"
1199
  msgstr ""
1200
 
1201
- #: ../custom-contact-forms-admin.php:1744
1202
  msgid "Textarea Height:"
1203
  msgstr ""
1204
 
1205
- #: ../custom-contact-forms-admin.php:1761
1206
  msgid "Height:"
1207
  msgstr ""
1208
 
1209
- #: ../custom-contact-forms-admin.php:1837
1210
  msgid "Background Color:"
1211
  msgstr ""
1212
 
1213
- #: ../custom-contact-forms-admin.php:1874
1214
  msgid "Tooltip Font Size:"
1215
  msgstr ""
1216
 
1217
- #: ../custom-contact-forms-admin.php:1943
1218
  msgid "Report a Bug/Suggest a Feature"
1219
  msgstr ""
1220
 
1221
- #: ../custom-contact-forms-admin.php:1950
1222
  msgid "Your Name:"
1223
  msgstr ""
1224
 
1225
- #: ../custom-contact-forms-admin.php:1956
1226
  msgid "Your Email:"
1227
  msgstr ""
1228
 
1229
- #: ../custom-contact-forms-admin.php:1962
1230
  msgid "Your Message:"
1231
  msgstr ""
1232
 
1233
- #: ../custom-contact-forms-admin.php:1968
1234
  msgid "Purpose of this message:"
1235
  msgstr ""
1236
 
1237
- #: ../custom-contact-forms-admin.php:1978
1238
  msgid "Plugin Question"
1239
  msgstr ""
1240
 
1241
- #: ../custom-contact-forms-admin.php:1984
1242
  msgid "Send Message"
1243
  msgstr ""
1244
 
1245
- #: ../custom-contact-forms-admin.php:1992
1246
  msgid "Custom HTML Forms (Advanced)"
1247
  msgstr ""
1248
 
1249
- #: ../custom-contact-forms-admin.php:1996
1250
  msgid ""
1251
  "If you know HTML and simply want to use this plugin to process form requests, this feature is for you. \n"
1252
  "\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"
1253
  "\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."
1254
  msgstr ""
1255
 
1256
- #: ../custom-contact-forms-admin.php:2003
1257
  msgid "Thank you for filling out our form!"
1258
  msgstr ""
1259
 
1260
- #: ../custom-contact-forms-admin.php:2008
1261
  msgid ""
1262
  "Build your form in here. It is recommended you only use this feature if you are experienced with HTML. \n"
1263
- "\t\t\tThe success_message field will add a popover containing the message when the form is completed successfully, the thank_you_page field will force \n"
1264
- "\t\t\tthe user to be redirected to that specific page on successful form completion. The required_fields hidden field is optional; to use it seperate \n"
1265
- "\t\t\tthe field names you want required by commas. Remember to use underscores instead of spaces in field names!"
1266
  msgstr ""
1267
 
1268
- #: ../custom-contact-forms-admin.php:2019
1269
  msgid "Export"
1270
  msgstr ""
1271
 
1272
- #: ../custom-contact-forms-admin.php:2024
1273
  msgid ""
1274
  "Preforming a Custom Contact Forms export will create a file of the form \n"
1275
  "\t\t\t\t\t\tccf-export-xxxx.sql on your web server. The file created contains SQL that \n"
1276
  "\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."
1277
  msgstr ""
1278
 
1279
- #: ../custom-contact-forms-admin.php:2028
1280
  msgid "Export All CCF Plugin Content"
1281
  msgstr ""
1282
 
1283
- #: ../custom-contact-forms-admin.php:2034
1284
  msgid "Import"
1285
  msgstr ""
1286
 
1287
- #: ../custom-contact-forms-admin.php:2040
1288
  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."
1289
  msgstr ""
1290
 
1291
- #: ../custom-contact-forms-admin.php:2043
1292
  msgid "Choose What You Want to Use from the Import File:"
1293
  msgstr ""
1294
 
1295
- #: ../custom-contact-forms-admin.php:2049
1296
  msgid "Use General Settings"
1297
  msgstr ""
1298
 
1299
- #: ../custom-contact-forms-admin.php:2055
1300
- #: ../custom-contact-forms-admin.php:2073
1301
- #: ../custom-contact-forms-usage-popover.php:8
1302
- #: ../custom-contact-forms-usage-popover.php:199
1303
  msgid "Forms"
1304
  msgstr ""
1305
 
1306
- #: ../custom-contact-forms-admin.php:2061
1307
- #: ../custom-contact-forms-usage-popover.php:26
1308
  msgid "Form Submissions"
1309
  msgstr ""
1310
 
1311
- #: ../custom-contact-forms-admin.php:2067
1312
- #: ../custom-contact-forms-usage-popover.php:11
1313
- #: ../custom-contact-forms-usage-popover.php:49
1314
  msgid "Fields"
1315
  msgstr ""
1316
 
1317
- #: ../custom-contact-forms-admin.php:2079
1318
- #: ../custom-contact-forms-usage-popover.php:14
1319
- #: ../custom-contact-forms-usage-popover.php:171
1320
  msgid "Field Options"
1321
  msgstr ""
1322
 
1323
- #: ../custom-contact-forms-admin.php:2085
1324
- #: ../custom-contact-forms-usage-popover.php:17
1325
  msgid "Styles"
1326
  msgstr ""
1327
 
1328
- #: ../custom-contact-forms-admin.php:2091
1329
  msgid "Choose an Import File:"
1330
  msgstr ""
1331
 
1332
- #: ../custom-contact-forms-admin.php:2095
1333
  msgid "Clear and Import"
1334
  msgstr ""
1335
 
1336
- #: ../custom-contact-forms-admin.php:2097
1337
  msgid "Yes, I want to do this and have created a backup."
1338
  msgstr ""
1339
 
1340
- #: ../custom-contact-forms-admin.php:2104
1341
  msgid "Custom Contact Forms Plugin News"
1342
  msgstr ""
1343
 
1344
- #: ../custom-contact-forms-usage-popover.php:3
1345
  msgid "How To Use Custom Contact Forms"
1346
  msgstr ""
1347
 
1348
- #: ../custom-contact-forms-usage-popover.php:23
1349
  msgid "Import/Export"
1350
  msgstr ""
1351
 
1352
- #: ../custom-contact-forms-usage-popover.php:30
1353
  msgid "Introduction"
1354
  msgstr ""
1355
 
1356
- #: ../custom-contact-forms-usage-popover.php:33
1357
  msgid ""
1358
  "CCF is an extremely intuitive plugin allowing you to create any type of contact form you can imagine. CCF is very user friendly but with possibilities comes complexity. It is recommend that you click the button below to create default fields, field options, and forms.\n"
1359
  " The default content will help you get a feel for the amazing things you can accomplish with this plugin. This popover only shows automatically the first time you visit the admin page;"
1360
  msgstr ""
1361
 
1362
- #: ../custom-contact-forms-usage-popover.php:36
1363
  msgid "if you want to view this popover again, click the 'Show Plugin Usage Popover'"
1364
  msgstr ""
1365
 
1366
- #: ../custom-contact-forms-usage-popover.php:38
1367
  msgid "in the instruction area of the admin page."
1368
  msgstr ""
1369
 
1370
- #: ../custom-contact-forms-usage-popover.php:44
1371
  msgid "Below is a basic usage outline of the four pillars of this plugin: fields, field options, styles, and forms. Another useful part of the plugin is the 'Custom HTML Feature' which allows you to write the form HTML yourself using the plugin simply as a form processor; this is great if you are a web developer with HTML experience. Also explained below is the 'Saved Form Submissions' feature which displays all form submissions in the admin panel."
1372
  msgstr ""
1373
 
1374
- #: ../custom-contact-forms-usage-popover.php:52
1375
  msgid "Fields are the actual input boxes in which users enter their information. There are six types of fields that you can attach to your forms.!"
1376
  msgstr ""
1377
 
1378
- #: ../custom-contact-forms-usage-popover.php:56
1379
  msgid "Text:"
1380
  msgstr ""
1381
 
1382
- #: ../custom-contact-forms-usage-popover.php:59
1383
- #: ../custom-contact-forms-usage-popover.php:66
1384
  msgid "This is a text field"
1385
  msgstr ""
1386
 
1387
- #: ../custom-contact-forms-usage-popover.php:63
1388
  msgid "Textarea:"
1389
  msgstr ""
1390
 
1391
- #: ../custom-contact-forms-usage-popover.php:70
1392
  msgid "Dropdown:"
1393
  msgstr ""
1394
 
1395
- #: ../custom-contact-forms-usage-popover.php:75
1396
  msgid "This is a dropdown field"
1397
  msgstr ""
1398
 
1399
- #: ../custom-contact-forms-usage-popover.php:78
1400
  msgid "Field Option 2!"
1401
  msgstr ""
1402
 
1403
- #: ../custom-contact-forms-usage-popover.php:81
1404
  msgid "Field Option 3!"
1405
  msgstr ""
1406
 
1407
- #: ../custom-contact-forms-usage-popover.php:84
1408
  msgid "Field Option 4!"
1409
  msgstr ""
1410
 
1411
- #: ../custom-contact-forms-usage-popover.php:87
1412
  msgid "Unlimited # of options allowed"
1413
  msgstr ""
1414
 
1415
- #: ../custom-contact-forms-usage-popover.php:93
1416
  msgid "Radio:"
1417
  msgstr ""
1418
 
1419
- #: ../custom-contact-forms-usage-popover.php:97
1420
  msgid "A radio field"
1421
  msgstr ""
1422
 
1423
- #: ../custom-contact-forms-usage-popover.php:99
1424
  msgid "Field Option 2"
1425
  msgstr ""
1426
 
1427
- #: ../custom-contact-forms-usage-popover.php:101
1428
  msgid "Field Option 3"
1429
  msgstr ""
1430
 
1431
- #: ../custom-contact-forms-usage-popover.php:105
1432
  msgid "Checkbox:"
1433
  msgstr ""
1434
 
1435
- #: ../custom-contact-forms-usage-popover.php:109
1436
  msgid "This is a checkbox field"
1437
  msgstr ""
1438
 
1439
- #: ../custom-contact-forms-usage-popover.php:113
1440
  msgid "(advanced) Hidden:"
1441
  msgstr ""
1442
 
1443
- #: ../custom-contact-forms-usage-popover.php:115
1444
  msgid "These fields are hidden (obviously), they allow you to pass hidden information within your forms. Great for using other form processors like Aweber or InfusionSoft."
1445
  msgstr ""
1446
 
1447
- #: ../custom-contact-forms-usage-popover.php:119
1448
  msgid "There are a variety of different options that you can use when creating a field,"
1449
  msgstr ""
1450
 
1451
- #: ../custom-contact-forms-usage-popover.php:121
1452
  msgid "denotes something required:"
1453
  msgstr ""
1454
 
1455
- #: ../custom-contact-forms-usage-popover.php:127
1456
  msgid "A slug is simply a way to identify your field. It can only contain underscores, letters, and numbers and must be unique."
1457
  msgstr ""
1458
 
1459
- #: ../custom-contact-forms-usage-popover.php:132
1460
- msgid "The field label is displayed next to the field and is visible to the user."
1461
- msgstr ""
1462
-
1463
- #: ../custom-contact-forms-usage-popover.php:137
1464
  msgid "The six field types you can choose from are explained above."
1465
  msgstr ""
1466
 
1467
- #: ../custom-contact-forms-usage-popover.php:142
1468
  msgid "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 'Are you human?', I would set the initial value to 'Yes'. If you set the field type as 'Dropdown' or 'Radio', you should enter the slug of the field option you would like initially selected (or just leave it blank and the first option attached will be selected)."
1469
  msgstr ""
1470
 
1471
- #: ../custom-contact-forms-usage-popover.php:147
1472
  msgid "This allows you to limit the amount of characters a user can enter in a field (does not apply to textareas as of version 3.5.5)"
1473
  msgstr ""
1474
 
1475
- #: ../custom-contact-forms-usage-popover.php:152
1476
  msgid "If a field is required and a user leaves it blank, the plugin will display an error message explaining the problem. The user will then have to go back and fill in the field properly."
1477
  msgstr ""
1478
 
1479
- #: ../custom-contact-forms-usage-popover.php:157
1480
  msgid "If this is filled out, a stylish tooltip popover displaying this text will show when the field is selected. This will only work if JQuery is enabled in general options."
1481
  msgstr ""
1482
 
1483
- #: ../custom-contact-forms-usage-popover.php:160
1484
  msgid "Field Options:"
1485
  msgstr ""
1486
 
1487
- #: ../custom-contact-forms-usage-popover.php:162
1488
  msgid "After you create a field, if it's field type is radio or dropdown, you can attach field options to the field. Field options are explained in the next section."
1489
  msgstr ""
1490
 
1491
- #: ../custom-contact-forms-usage-popover.php:166
1492
  msgid "The last important thing related to fields are <span>Fixed Fields</span>. Fixed Fields are special fields that come already created within the plugin such as the captcha spam blocker and email field. Fixed Fields do special things that you wouldn't be able to accomplish with normally; they cannot be deleted or created. If you use the fixedEmail field, as opposed to creating your own email field. the users email will be checked to make sure it is valid, if it isn't a form error will be displayed."
1493
  msgstr ""
1494
 
1495
- #: ../custom-contact-forms-usage-popover.php:174
1496
  msgid "In the field section above, look at the radio or dropdown fields. See how they have multiple options within the field? Those are called Field Options. Field Options have their own manager. There are only three things you must fill in to create a field option."
1497
  msgstr ""
1498
 
1499
- #: ../custom-contact-forms-usage-popover.php:180
1500
  msgid "Used to identify the field option, solely for admin purposes; must be unique, and contain only letters, numbers, and underscores. Example: 'slug_one'."
1501
  msgstr ""
1502
 
1503
- #: ../custom-contact-forms-usage-popover.php:185
1504
  msgid "This is what is shown to the user in the dropdown or radio field."
1505
  msgstr ""
1506
 
1507
- #: ../custom-contact-forms-usage-popover.php:190
1508
  msgid "This is the actual value of the option which isn't 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'. The option value is behind the scences; unseen by the user, but when a user fills out the form, the option value is what is actually emailed to you and stored in the database. For dropdown fields the option value is optional, <span>for radio fields it is required</span>."
1509
  msgstr ""
1510
 
1511
- #: ../custom-contact-forms-usage-popover.php:194
1512
  msgid "Once you create field options, you can attach them (in the field manager) to radio and dropdown fields (that are already created). It is important to remember that after you create a dropdown or radio field, they will not work until you attach one or more field options."
1513
  msgstr ""
1514
 
1515
- #: ../custom-contact-forms-usage-popover.php:202
1516
  msgid "Forms bring everything together. Each form you create in the form manager shows a code to display that form in posts/pages as well as theme files. The post/page form display code looks like: [customcontact id=FORMID]. There are a number of parameters that you can fill out when creating and managing each of your forms."
1517
  msgstr ""
1518
 
1519
- #: ../custom-contact-forms-usage-popover.php:208
1520
  msgid "A slug is simply a way to identify your form. It can only contain underscores, letters, and numbers and must be unique. Example 'my_contact_form'"
1521
  msgstr ""
1522
 
1523
- #: ../custom-contact-forms-usage-popover.php:213
1524
  msgid "The form title is heading text shown at the top of the form to users. Here's an example: 'My Contact Form'."
1525
  msgstr ""
1526
 
1527
- #: ../custom-contact-forms-usage-popover.php:218
1528
  msgid "If you don't know what this is leave it as 'Post'. This allows you to change the way a form sends user information."
1529
  msgstr ""
1530
 
1531
- #: ../custom-contact-forms-usage-popover.php:223
1532
  msgid "This allows you to process your forms using 3rd party services or your own scripts. If you don't know what this is, then leave it blank. This is useful if you use a service like Aweber or InfusionSoft."
1533
  msgstr ""
1534
 
1535
- #: ../custom-contact-forms-usage-popover.php:228
1536
  msgid "This allows you to apply styles you create in the style manager to your forms. If you haven't created a custom style yet, just choose 'Default'."
1537
  msgstr ""
1538
 
1539
- #: ../custom-contact-forms-usage-popover.php:233
1540
  msgid "Here, you can specify the text that shows on the submit button."
1541
  msgstr ""
1542
 
1543
- #: ../custom-contact-forms-usage-popover.php:238
1544
- msgid "If unsure, leave blank. This field allows you to insert custom HTML directly after the starting form tag."
1545
- msgstr ""
1546
-
1547
- #: ../custom-contact-forms-usage-popover.php:243
1548
  msgid "Specify the email that should receive all form submissions. If you leave this blank it will revert to the default specified in general settings."
1549
  msgstr ""
1550
 
1551
- #: ../custom-contact-forms-usage-popover.php:248
1552
  msgid "Will be displayed in a popover after 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."
1553
  msgstr ""
1554
 
1555
- #: ../custom-contact-forms-usage-popover.php:253
1556
- 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."
1557
- msgstr ""
1558
-
1559
- #: ../custom-contact-forms-usage-popover.php:258
1560
  msgid "If this is filled out, users will be sent to this page when they successfully fill out the form. If it is left blank, a popover showing the form's 'success message' will be displayed on successful form submission."
1561
  msgstr ""
1562
 
1563
- #: ../custom-contact-forms-usage-popover.php:261
1564
  msgid "Attach Fields:"
1565
  msgstr ""
1566
 
1567
- #: ../custom-contact-forms-usage-popover.php:263
1568
  msgid "After creating a form you are given the option to attach (and dettach) fields to that specific form. Forms are useless until you attach fields."
1569
  msgstr ""
1570
 
1571
- #: ../custom-contact-forms-usage-popover.php:267
1572
  msgid "The form success message and success title apply to a popover that fades in after someone successfully completes a form (that does not have a custom success URL provided). The image below will help to give you a feel to how the popover will look and where the title and message actually show up."
1573
  msgstr ""
1574
 
1575
- #: ../custom-contact-forms-usage-popover.php:273
1576
  msgid "Style Manager"
1577
  msgstr ""
1578
 
1579
- #: ../custom-contact-forms-usage-popover.php:276
1580
  msgid "The style manager allows you to customize the appearance of forms without any knowledge of CSS. There are a ton of parameters you can fill out with each style and all of them are pretty self-explanitory. After you create a style, you need to go to the form manager and set the form style to the new style you created (the slug will be what shows in the 'Form Style' dropdown)."
1581
  msgstr ""
1582
 
1583
- #: ../custom-contact-forms-usage-popover.php:279
1584
  msgid "The image below will help you better understand how each style option will change your forms."
1585
  msgstr ""
1586
 
1587
- #: ../custom-contact-forms-usage-popover.php:285
1588
  msgid "Custom HTML Forms Feature (advanced)"
1589
  msgstr ""
1590
 
1591
- #: ../custom-contact-forms-usage-popover.php:288
1592
  msgid "If you know HTML and simply want to use this plugin to process form requests, this feature is for you. The following HTML is a the framework to which you must adhere. In order for your form to work you MUST do the following:"
1593
  msgstr ""
1594
 
1595
- #: ../custom-contact-forms-usage-popover.php:292
1596
  msgid "Keep the form action/method the same (yes the action is supposed to be empty)."
1597
  msgstr ""
1598
 
1599
- #: ../custom-contact-forms-usage-popover.php:295
1600
  msgid "Include all the hidden fields shown below."
1601
  msgstr ""
1602
 
1603
- #: ../custom-contact-forms-usage-popover.php:298
1604
  msgid "Provide a hidden 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)."
1605
  msgstr ""
1606
 
1607
- #: ../custom-contact-forms-usage-popover.php:302
1608
  msgid "Just to be clear, you don't edit the code in the Custom HTML Forms feature within the admin panel. Instead, you copy the code in to the page, post, or theme file you want to display a form, then edit the code to look how you want following the guidelines provided above."
1609
  msgstr ""
1610
 
1611
- #: ../custom-contact-forms-usage-popover.php:310
1612
  msgid "This features saves each user form submission. All the fields attached to the form along with the time of submission and form URL are saved in the database and displayed in a stylish format in the admin panel."
1613
  msgstr ""
1614
 
1615
- #: ../custom-contact-forms-usage-popover.php:315
1616
  msgid "Import / Export"
1617
  msgstr ""
1618
 
1619
- #: ../custom-contact-forms-usage-popover.php:318
1620
  msgid ""
1621
  "Import/export is a new feature that allows you to transfer forms, fields, field options, styles and everything else saved by the plugin between Wordpress installations. Clicking the Export All button will create a .SQL file for download. With the .SQL export file you can use the importer within the CCF plugin admin page to import the .SQL file. The built-in importer is completely safe as long as you only import files that have been generated by the CCF exporter. \n"
1622
  " You can also use PHPMyAdmin or any other MySQL database administration tool to run the import file. Importing a .SQL file will never overwrite any existing data. \n"
@@ -1624,11 +1703,39 @@ msgid ""
1624
  " If you are importing without using the built-in importer (such as PHPMyAdmin), then note the following: You should only run the import file on Wordpress installations that already have Custom Contact Forms installed; also you will need to change the table prefix for each query within the .SQL file."
1625
  msgstr ""
1626
 
1627
- #: ../custom-contact-forms-widget.php:42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1628
  msgid "Choose a Form:"
1629
  msgstr ""
1630
 
1631
- #: ../custom-contact-forms-widget.php:53
1632
  msgid "Create a Form"
1633
  msgstr ""
1634
 
2
  msgstr ""
3
  "Project-Id-Version: custom-contact-forms\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-11-02 15:14-0500\n"
6
+ "PO-Revision-Date: 2010-11-02 15:14-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"
14
  "X-Poedit-Language: English\n"
15
  "X-Poedit-Country: UNITED STATES\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
+ "X-Poedit-SearchPath-1: ../modules/images\n"
18
+ "X-Poedit-SearchPath-2: ../modules/db\n"
19
+ "X-Poedit-SearchPath-3: ../modules/export\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:156
24
  msgid "Attaching"
25
  msgstr ""
26
 
27
+ #: ../custom-contact-forms-admin.php:157
28
  msgid "Dettaching"
29
  msgstr ""
30
 
31
+ #: ../custom-contact-forms-admin.php:158
32
  msgid "Saving"
33
  msgstr ""
34
 
35
+ #: ../custom-contact-forms-admin.php:159
36
  msgid "More Options"
37
  msgstr ""
38
 
39
+ #: ../custom-contact-forms-admin.php:160
40
  msgid "Expand"
41
  msgstr ""
42
 
43
+ #: ../custom-contact-forms-admin.php:161
44
  msgid "Click to Confirm"
45
  msgstr ""
46
 
47
+ #: ../custom-contact-forms-admin.php:162
48
  msgid "Are you sure you want to delete this"
49
  msgstr ""
50
 
51
+ #: ../custom-contact-forms-admin.php:163
52
  msgid "An error has occured. Please try again later."
53
  msgstr ""
54
 
55
+ #: ../custom-contact-forms-admin.php:339
56
  msgid "Custom Contact Forms"
57
  msgstr ""
58
 
59
+ #: ../custom-contact-forms-admin.php:342
60
  msgid "Plugin Instructions"
61
  msgstr ""
62
 
63
+ #: ../custom-contact-forms-admin.php:343
64
+ #: ../custom-contact-forms-admin.php:1137
65
  msgid "General Settings"
66
  msgstr ""
67
 
68
+ #: ../custom-contact-forms-admin.php:344
69
+ #: ../custom-contact-forms-admin.php:1384
70
+ msgid "Mail Settings"
71
+ msgstr ""
72
+
73
+ #: ../custom-contact-forms-admin.php:345
74
  msgid "Create Fields"
75
  msgstr ""
76
 
77
+ #: ../custom-contact-forms-admin.php:346
78
  msgid "Create Forms"
79
  msgstr ""
80
 
81
+ #: ../custom-contact-forms-admin.php:347
82
  msgid "Manage Fields"
83
  msgstr ""
84
 
85
+ #: ../custom-contact-forms-admin.php:348
86
+ #: ../custom-contact-forms-admin.php:713
87
  msgid "Manage Fixed Fields"
88
  msgstr ""
89
 
90
+ #: ../custom-contact-forms-admin.php:349
91
+ #: ../custom-contact-forms-admin.php:921
92
  msgid "Manage Forms"
93
  msgstr ""
94
 
95
+ #: ../custom-contact-forms-admin.php:350
96
  msgid "Saved Form Submissions (New!)"
97
  msgstr ""
98
 
99
+ #: ../custom-contact-forms-admin.php:351
100
  msgid "Create Styles"
101
  msgstr ""
102
 
103
+ #: ../custom-contact-forms-admin.php:352
104
  msgid "Manage Styles"
105
  msgstr ""
106
 
107
+ #: ../custom-contact-forms-admin.php:353
108
  msgid "Manage Field Options"
109
  msgstr ""
110
 
111
+ #: ../custom-contact-forms-admin.php:354
112
+ #: ../custom-contact-forms-admin.php:2016
113
  msgid "Suggest a Feature"
114
  msgstr ""
115
 
116
+ #: ../custom-contact-forms-admin.php:355
117
+ #: ../custom-contact-forms-admin.php:2013
118
  msgid "Bug Report"
119
  msgstr ""
120
 
121
+ #: ../custom-contact-forms-admin.php:356
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:357
127
  msgid "Import / Export (New!)"
128
  msgstr ""
129
 
130
+ #: ../custom-contact-forms-admin.php:358
131
  msgid "Plugin News"
132
  msgstr ""
133
 
134
+ #: ../custom-contact-forms-admin.php:363
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:379
147
+ msgid "Field Slug:"
148
  msgstr ""
149
 
150
+ #: ../custom-contact-forms-admin.php:383
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:387
155
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:130
156
  msgid "Field Label:"
157
  msgstr ""
158
 
159
+ #: ../custom-contact-forms-admin.php:391
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:395
165
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:135
166
  msgid "Field Type:"
167
  msgstr ""
168
 
169
+ #: ../custom-contact-forms-admin.php:408
170
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:140
171
  msgid "Initial Value:"
172
  msgstr ""
173
 
174
+ #: ../custom-contact-forms-admin.php:413
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:415
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:416
185
+ #: ../custom-contact-forms-admin.php:882
186
  msgid "Create a Field Option"
187
  msgstr ""
188
 
189
+ #: ../custom-contact-forms-admin.php:416
190
  msgid "field option"
191
  msgstr ""
192
 
193
+ #: ../custom-contact-forms-admin.php:417
194
  msgid "you would like initially selected."
195
  msgstr ""
196
 
197
+ #: ../custom-contact-forms-admin.php:421
198
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:145
199
  msgid "Max Length:"
200
  msgstr ""
201
 
202
+ #: ../custom-contact-forms-admin.php:425
203
+ msgid "0 for no limit; only applies to Text fields"
204
  msgstr ""
205
 
206
+ #: ../custom-contact-forms-admin.php:429
207
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:150
208
  msgid "Required Field:"
209
  msgstr ""
210
 
211
+ #: ../custom-contact-forms-admin.php:433
212
+ #: ../custom-contact-forms-admin.php:615
213
+ #: ../custom-contact-forms-admin.php:756
214
+ #: ../custom-contact-forms-admin.php:1151
215
+ #: ../custom-contact-forms-admin.php:1228
216
+ #: ../custom-contact-forms-admin.php:1260
 
217
  msgid "No"
218
  msgstr ""
219
 
220
+ #: ../custom-contact-forms-admin.php:436
221
+ #: ../custom-contact-forms-admin.php:612
222
+ #: ../custom-contact-forms-admin.php:753
223
+ #: ../custom-contact-forms-admin.php:763
224
+ #: ../custom-contact-forms-admin.php:1148
225
+ #: ../custom-contact-forms-admin.php:1225
226
+ #: ../custom-contact-forms-admin.php:1257
 
227
  msgid "Yes"
228
  msgstr ""
229
 
230
+ #: ../custom-contact-forms-admin.php:440
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:444
235
+ #: ../custom-contact-forms-admin.php:636
236
+ #: ../custom-contact-forms-admin.php:786
237
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:155
238
  msgid "Field Instructions:"
239
  msgstr ""
240
 
241
+ #: ../custom-contact-forms-admin.php:448
242
+ #: ../custom-contact-forms-admin.php:634
243
+ #: ../custom-contact-forms-admin.php:784
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:452
248
+ #: ../custom-contact-forms-admin.php:641
249
+ #: ../custom-contact-forms-admin.php:780
250
+ msgid "Field Class:"
251
+ msgstr ""
252
+
253
+ #: ../custom-contact-forms-admin.php:456
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:460
258
+ #: ../custom-contact-forms-admin.php:646
259
+ #: ../custom-contact-forms-admin.php:791
260
+ msgid "Field Error:"
261
+ msgstr ""
262
+
263
+ #: ../custom-contact-forms-admin.php:464
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:468
268
  msgid "Create Field"
269
  msgstr ""
270
 
271
+ #: ../custom-contact-forms-admin.php:477
272
  msgid "Create A Form"
273
  msgstr ""
274
 
275
+ #: ../custom-contact-forms-admin.php:484
276
  msgid "Form Slug:"
277
  msgstr ""
278
 
279
+ #: ../custom-contact-forms-admin.php:488
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:492
284
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:211
285
  msgid "Form Title:"
286
  msgstr ""
287
 
288
+ #: ../custom-contact-forms-admin.php:495
289
+ msgid "This text is displayed above the form as the heading."
290
  msgstr ""
291
 
292
+ #: ../custom-contact-forms-admin.php:499
293
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:216
294
  msgid "Form Method:"
295
  msgstr ""
296
 
297
+ #: ../custom-contact-forms-admin.php:505
298
+ msgid "If unsure, leave as is."
299
  msgstr ""
300
 
301
+ #: ../custom-contact-forms-admin.php:509
302
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:221
303
  msgid "Form Action:"
304
  msgstr ""
305
 
306
+ #: ../custom-contact-forms-admin.php:513
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:517
311
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:226
312
  msgid "Form Style:"
313
  msgstr ""
314
 
315
+ #: ../custom-contact-forms-admin.php:522
316
  msgid "Click to create a style"
317
  msgstr ""
318
 
319
+ #: ../custom-contact-forms-admin.php:525
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:531
325
+ #: ../custom-contact-forms-admin.php:1028
326
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:236
327
  msgid "Custom Code:"
328
  msgstr ""
329
 
330
+ #: ../custom-contact-forms-admin.php:535
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:539
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:543
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:547
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:551
350
+ #: ../custom-contact-forms-admin.php:559
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:555
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:563
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:567
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:570
370
  msgid "Create Form"
371
  msgstr ""
372
 
373
+ #: ../custom-contact-forms-admin.php:578
374
  msgid "Manage User Fields"
375
  msgstr ""
376
 
377
+ #: ../custom-contact-forms-admin.php:583
378
+ #: ../custom-contact-forms-admin.php:701
379
+ #: ../custom-contact-forms-admin.php:718
380
+ #: ../custom-contact-forms-admin.php:806
381
+ #: ../custom-contact-forms-admin.php:824
382
+ #: ../custom-contact-forms-admin.php:867
383
+ #: ../custom-contact-forms-admin.php:927
384
+ #: ../custom-contact-forms-admin.php:1050
385
  msgid "Slug"
386
  msgstr ""
387
 
388
+ #: ../custom-contact-forms-admin.php:584
389
+ #: ../custom-contact-forms-admin.php:702
390
+ #: ../custom-contact-forms-admin.php:719
391
+ #: ../custom-contact-forms-admin.php:807
392
+ #: ../custom-contact-forms-admin.php:827
393
+ #: ../custom-contact-forms-admin.php:870
394
  msgid "Label"
395
  msgstr ""
396
 
397
+ #: ../custom-contact-forms-admin.php:585
398
+ #: ../custom-contact-forms-admin.php:703
399
+ #: ../custom-contact-forms-admin.php:720
400
+ #: ../custom-contact-forms-admin.php:808
401
  msgid "Type"
402
  msgstr ""
403
 
404
+ #: ../custom-contact-forms-admin.php:586
405
+ #: ../custom-contact-forms-admin.php:704
406
+ #: ../custom-contact-forms-admin.php:721
407
+ #: ../custom-contact-forms-admin.php:809
408
  msgid "Initial Value"
409
  msgstr ""
410
 
411
+ #: ../custom-contact-forms-admin.php:587
412
+ #: ../custom-contact-forms-admin.php:705
413
+ #: ../custom-contact-forms-admin.php:722
414
+ #: ../custom-contact-forms-admin.php:810
415
  msgid "Required"
416
  msgstr ""
417
 
418
+ #: ../custom-contact-forms-admin.php:588
419
+ #: ../custom-contact-forms-admin.php:706
420
+ #: ../custom-contact-forms-admin.php:723
421
+ #: ../custom-contact-forms-admin.php:811
422
  msgid "Maxlength"
423
  msgstr ""
424
 
425
+ #: ../custom-contact-forms-admin.php:589
426
+ #: ../custom-contact-forms-admin.php:707
427
+ #: ../custom-contact-forms-admin.php:724
428
+ #: ../custom-contact-forms-admin.php:812
429
+ #: ../custom-contact-forms-admin.php:833
430
+ #: ../custom-contact-forms-admin.php:876
431
+ #: ../custom-contact-forms-admin.php:931
432
+ #: ../custom-contact-forms-admin.php:1054
433
+ #: ../custom-contact-forms-admin.php:1075
434
+ #: ../custom-contact-forms-admin.php:1129
435
  msgid "Action"
436
  msgstr ""
437
 
438
+ #: ../custom-contact-forms-admin.php:627
439
+ #: ../custom-contact-forms-admin.php:775
440
+ #: ../custom-contact-forms-admin.php:847
441
+ #: ../custom-contact-forms-admin.php:956
442
+ #: ../custom-contact-forms-admin.php:1765
443
  msgid "Save"
444
  msgstr ""
445
 
446
+ #: ../custom-contact-forms-admin.php:628
447
+ #: ../custom-contact-forms-admin.php:848
448
+ #: ../custom-contact-forms-admin.php:957
449
+ #: ../custom-contact-forms-admin.php:1098
450
  msgid "Delete"
451
  msgstr ""
452
 
453
+ #: ../custom-contact-forms-admin.php:639
454
+ #: ../custom-contact-forms-admin.php:779
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:644
459
+ #: ../custom-contact-forms-admin.php:789
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:669
464
  msgid "Dettach Field Option"
465
  msgstr ""
466
 
467
+ #: ../custom-contact-forms-admin.php:672
468
  msgid "Dettach field options you"
469
  msgstr ""
470
 
471
+ #: ../custom-contact-forms-admin.php:674
472
+ #: ../custom-contact-forms-admin.php:1019
473
  msgid "create"
474
  msgstr ""
475
 
476
+ #: ../custom-contact-forms-admin.php:684
477
  msgid "Attach Field Option"
478
  msgstr ""
479
 
480
+ #: ../custom-contact-forms-admin.php:688
481
  msgid "Attach field options in the order you want them to display."
482
  msgstr ""
483
 
484
+ #: ../custom-contact-forms-admin.php:739
485
+ #: ../custom-contact-forms-admin.php:770
486
+ #: ../custom-contact-forms-admin.php:1399
487
  msgid "None"
488
  msgstr ""
489
 
490
+ #: ../custom-contact-forms-admin.php:819
491
  msgid "Manage Field Options (for Dropdown and Radio Fields)"
492
  msgstr ""
493
 
494
+ #: ../custom-contact-forms-admin.php:830
495
+ #: ../custom-contact-forms-admin.php:873
496
  msgid "Value"
497
  msgstr ""
498
 
499
+ #: ../custom-contact-forms-admin.php:859
500
  msgid "No field options have been created."
501
  msgstr ""
502
 
503
+ #: ../custom-contact-forms-admin.php:887
504
  msgid "Option Slug:"
505
  msgstr ""
506
 
507
+ #: ../custom-contact-forms-admin.php:891
508
  msgid "(Used to identify this option, solely for admin purposes; must be unique, and contain only letters, numbers, and underscores. Example: 'slug_one')"
509
  msgstr ""
510
 
511
+ #: ../custom-contact-forms-admin.php:895
512
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:183
513
  msgid "Option Label:"
514
  msgstr ""
515
 
516
+ #: ../custom-contact-forms-admin.php:899
517
  msgid "(This is what is shown to the user in the dropdown or radio field. Example:)"
518
  msgstr ""
519
 
520
+ #: ../custom-contact-forms-admin.php:903
521
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:188
522
  msgid "Option Value:"
523
  msgstr ""
524
 
525
+ #: ../custom-contact-forms-admin.php:907
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:910
530
  msgid "Create Field Option"
531
  msgstr ""
532
 
533
+ #: ../custom-contact-forms-admin.php:914
534
  msgid "The option value is behind the scences; unseen by the user, but when a user fills out the form, the option value is what is actually sent in the email to you. For dropdown fields the option value is optional, for radio fields it is required."
535
  msgstr ""
536
 
537
+ #: ../custom-contact-forms-admin.php:926
538
  msgid "Form Display Code"
539
  msgstr ""
540
 
541
+ #: ../custom-contact-forms-admin.php:928
542
+ #: ../custom-contact-forms-admin.php:1051
543
  msgid "Title"
544
  msgstr ""
545
 
546
+ #: ../custom-contact-forms-admin.php:929
547
+ #: ../custom-contact-forms-admin.php:1052
548
  msgid "Button Text"
549
  msgstr ""
550
 
551
+ #: ../custom-contact-forms-admin.php:930
552
+ #: ../custom-contact-forms-admin.php:1053
553
  msgid "Style"
554
  msgstr ""
555
 
556
+ #: ../custom-contact-forms-admin.php:964
557
  msgid "Method"
558
  msgstr ""
559
 
560
+ #: ../custom-contact-forms-admin.php:965
561
  msgid "Form Action"
562
  msgstr ""
563
 
564
+ #: ../custom-contact-forms-admin.php:966
565
  msgid "Destination Email"
566
  msgstr ""
567
 
568
+ #: ../custom-contact-forms-admin.php:967
569
  msgid "Success Message Title"
570
  msgstr ""
571
 
572
+ #: ../custom-contact-forms-admin.php:968
573
  msgid "Success Message"
574
  msgstr ""
575
 
576
+ #: ../custom-contact-forms-admin.php:969
577
  msgid "Custom Success URL"
578
  msgstr ""
579
 
580
+ #: ../custom-contact-forms-admin.php:972
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:976
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:978
589
  msgid "This email address will recieve form emails (provided that Email Form Submissions is set to Yes in general settings)."
590
  msgstr ""
591
 
592
+ #: ../custom-contact-forms-admin.php:980
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:982
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:984
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:989
605
  msgid "Attached Fields:"
606
  msgstr ""
607
 
608
+ #: ../custom-contact-forms-admin.php:1003
609
  msgid "Dettach Field"
610
  msgstr ""
611
 
612
+ #: ../custom-contact-forms-admin.php:1006
613
  msgid "Attach fields in the order you want them displayed."
614
  msgstr ""
615
 
616
+ #: ../custom-contact-forms-admin.php:1009
617
  msgid "Attach Field:"
618
  msgstr ""
619
 
620
+ #: ../custom-contact-forms-admin.php:1014
621
  msgid "Attach Field"
622
  msgstr ""
623
 
624
+ #: ../custom-contact-forms-admin.php:1017
625
  msgid "Attach fixed fields or ones you"
626
  msgstr ""
627
 
628
+ #: ../custom-contact-forms-admin.php:1023
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:1024
633
  msgid "Code to Display Form in Theme Files:"
634
  msgstr ""
635
 
636
+ #: ../custom-contact-forms-admin.php:1027
637
  msgid "This field allows you to insert HTML directly after the starting <form> tag."
638
  msgstr ""
639
 
640
+ #: ../custom-contact-forms-admin.php:1049
641
  msgid "Form Code"
642
  msgstr ""
643
 
644
+ #: ../custom-contact-forms-admin.php:1066
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:1071
650
+ #: ../custom-contact-forms-admin.php:1125
651
  msgid "Date Submitted"
652
  msgstr ""
653
 
654
+ #: ../custom-contact-forms-admin.php:1072
655
+ #: ../custom-contact-forms-admin.php:1126
656
  msgid "Form Submitted"
657
  msgstr ""
658
 
659
+ #: ../custom-contact-forms-admin.php:1073
660
+ #: ../custom-contact-forms-admin.php:1127
661
  msgid "Form Page"
662
  msgstr ""
663
 
664
+ #: ../custom-contact-forms-admin.php:1092
665
  msgid "Custom HTML Form"
666
  msgstr ""
667
 
668
+ #: ../custom-contact-forms-admin.php:1144
669
  msgid "Email Form Submissions:"
670
  msgstr ""
671
 
672
+ #: ../custom-contact-forms-admin.php:1156
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:1160
677
  msgid "Default Email:"
678
  msgstr ""
679
 
680
+ #: ../custom-contact-forms-admin.php:1165
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:1169
685
  msgid "Front End JQuery:"
686
  msgstr ""
687
 
688
+ #: ../custom-contact-forms-admin.php:1173
689
+ #: ../custom-contact-forms-admin.php:1241
690
+ #: ../custom-contact-forms-admin.php:1282
691
  msgid "Enabled"
692
  msgstr ""
693
 
694
+ #: ../custom-contact-forms-admin.php:1176
695
+ #: ../custom-contact-forms-admin.php:1244
696
+ #: ../custom-contact-forms-admin.php:1285
697
  msgid "Disabled"
698
  msgstr ""
699
 
700
+ #: ../custom-contact-forms-admin.php:1181
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:1185
706
  msgid "Default From Email:"
707
  msgstr ""
708
 
709
+ #: ../custom-contact-forms-admin.php:1190
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:1194
714
  msgid "Default Email Subject:"
715
  msgstr ""
716
 
717
+ #: ../custom-contact-forms-admin.php:1199
718
  msgid "Default subject to be included in all form emails."
719
  msgstr ""
720
 
721
+ #: ../custom-contact-forms-admin.php:1203
722
  msgid "Default Form Success Message Title:"
723
  msgstr ""
724
 
725
+ #: ../custom-contact-forms-admin.php:1208
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:1212
730
  msgid "Default Form Success Message:"
731
  msgstr ""
732
 
733
+ #: ../custom-contact-forms-admin.php:1217
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:1221
738
  msgid "Remember Field Values:"
739
  msgstr ""
740
 
741
+ #: ../custom-contact-forms-admin.php:1233
742
  msgid "Selecting yes will make form fields remember how they were last filled out."
743
  msgstr ""
744
 
745
+ #: ../custom-contact-forms-admin.php:1237
746
  msgid "Tooltips in Widget:"
747
  msgstr ""
748
 
749
+ #: ../custom-contact-forms-admin.php:1249
750
  msgid "Enabling this shows tooltips containing field instructions on forms in the widget."
751
  msgstr ""
752
 
753
+ #: ../custom-contact-forms-admin.php:1253
754
  msgid "Hide Plugin Author Link in Code:"
755
  msgstr ""
756
 
757
+ #: ../custom-contact-forms-admin.php:1266
758
  msgid "Use Code Type:"
759
  msgstr ""
760
 
761
+ #: ../custom-contact-forms-admin.php:1274
762
  msgid "This lets you switch the form code between HTML and XHTML."
763
  msgstr ""
764
 
765
+ #: ../custom-contact-forms-admin.php:1278
766
  msgid "Fancy Admin AJAX Abilities:"
767
  msgstr ""
768
 
769
+ #: ../custom-contact-forms-admin.php:1290
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:1293
 
 
 
 
 
 
 
 
774
  msgid "Show Sidebar Widget:"
775
  msgstr ""
776
 
777
+ #: ../custom-contact-forms-admin.php:1298
778
  msgid "On Homepage"
779
  msgstr ""
780
 
781
+ #: ../custom-contact-forms-admin.php:1302
782
  msgid "On Pages"
783
  msgstr ""
784
 
785
+ #: ../custom-contact-forms-admin.php:1306
786
  msgid "On Single Posts"
787
  msgstr ""
788
 
789
+ #: ../custom-contact-forms-admin.php:1311
790
  msgid "On Categories"
791
  msgstr ""
792
 
793
+ #: ../custom-contact-forms-admin.php:1315
794
  msgid "On Archives"
795
  msgstr ""
796
 
797
+ #: ../custom-contact-forms-admin.php:1319
798
  msgid "Update"
799
  msgstr ""
800
 
801
+ #: ../custom-contact-forms-admin.php:1328
802
  msgid "Instructions"
803
  msgstr ""
804
 
805
+ #: ../custom-contact-forms-admin.php:1332
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:1336
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:1340
815
  msgid "1. Create a form."
816
  msgstr ""
817
 
818
+ #: ../custom-contact-forms-admin.php:1343
819
  msgid "2. Create fields and attach those fields to the forms of your choice."
820
  msgstr ""
821
 
822
+ #: ../custom-contact-forms-admin.php:1345
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:1348
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:1351
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:1354
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:1357
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:1360
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:1363
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:1365
851
  msgid "Custom HTML Forms feature"
852
  msgstr ""
853
 
854
+ #: ../custom-contact-forms-admin.php:1367
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:1370
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:1372
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:1375
867
  msgid "View Plugin Usage Popover"
868
  msgstr ""
869
 
870
+ #: ../custom-contact-forms-admin.php:1388
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:1389
875
+ msgid "* Send My Emails Using the Following:"
876
+ msgstr ""
877
+
878
+ #: ../custom-contact-forms-admin.php:1391
879
+ msgid "Wordpress Default"
880
+ msgstr ""
881
+
882
+ #: ../custom-contact-forms-admin.php:1392
883
+ msgid "SMTP"
884
+ msgstr ""
885
+
886
+ #: ../custom-contact-forms-admin.php:1393
887
+ msgid "(If mail isn't sending, try toggling this option.)"
888
+ msgstr ""
889
+
890
+ #: ../custom-contact-forms-admin.php:1396
891
+ msgid "SMTP Host:"
892
+ msgstr ""
893
+
894
+ #: ../custom-contact-forms-admin.php:1397
895
+ msgid "SMTP Port:"
896
+ msgstr ""
897
+
898
+ #: ../custom-contact-forms-admin.php:1398
899
+ msgid "Encryption:"
900
+ msgstr ""
901
+
902
+ #: ../custom-contact-forms-admin.php:1400
903
+ msgid "SSL"
904
+ msgstr ""
905
+
906
+ #: ../custom-contact-forms-admin.php:1401
907
+ msgid "TLS"
908
+ msgstr ""
909
+
910
+ #: ../custom-contact-forms-admin.php:1405
911
+ msgid "SMTP Authentication:"
912
+ msgstr ""
913
+
914
+ #: ../custom-contact-forms-admin.php:1405
915
+ msgid "None Needed"
916
+ msgstr ""
917
+
918
+ #: ../custom-contact-forms-admin.php:1405
919
+ msgid "Use SMTP Username/Password"
920
+ msgstr ""
921
+
922
+ #: ../custom-contact-forms-admin.php:1406
923
+ msgid "SMTP Username:"
924
+ msgstr ""
925
+
926
+ #: ../custom-contact-forms-admin.php:1407
927
+ msgid "SMTP Password:"
928
+ msgstr ""
929
+
930
+ #: ../custom-contact-forms-admin.php:1410
931
+ msgid "Save Mail Sending Options"
932
+ msgstr ""
933
+
934
+ #: ../custom-contact-forms-admin.php:1417
935
  msgid "Create A Style for Your Forms"
936
  msgstr ""
937
 
938
+ #: ../custom-contact-forms-admin.php:1421
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:1427
943
  msgid "Style Slug:"
944
  msgstr ""
945
 
946
+ #: ../custom-contact-forms-admin.php:1430
947
  msgid "(Must be unique)"
948
  msgstr ""
949
 
950
+ #: ../custom-contact-forms-admin.php:1434
951
+ #: ../custom-contact-forms-admin.php:1835
952
+ #: ../custom-contact-forms-admin.php:1844
953
  msgid "Title Font Size:"
954
  msgstr ""
955
 
956
+ #: ../custom-contact-forms-admin.php:1437
957
  msgid "(ex: 10pt, 10px, 1em)"
958
  msgstr ""
959
 
960
+ #: ../custom-contact-forms-admin.php:1441
961
+ #: ../custom-contact-forms-admin.php:1883
962
+ #: ../custom-contact-forms-admin.php:1951
963
  msgid "Title Font Color:"
964
  msgstr ""
965
 
966
+ #: ../custom-contact-forms-admin.php:1444
967
+ #: ../custom-contact-forms-admin.php:1465
968
+ #: ../custom-contact-forms-admin.php:1529
969
+ #: ../custom-contact-forms-admin.php:1630
970
+ #: ../custom-contact-forms-admin.php:1637
971
+ #: ../custom-contact-forms-admin.php:1665
972
  msgid "(ex: FF0000)"
973
  msgstr ""
974
 
975
+ #: ../custom-contact-forms-admin.php:1448
976
+ #: ../custom-contact-forms-admin.php:1808
977
  msgid "Label Width:"
978
  msgstr ""
979
 
980
+ #: ../custom-contact-forms-admin.php:1451
981
  msgid "(ex: 100px or 20%)"
982
  msgstr ""
983
 
984
+ #: ../custom-contact-forms-admin.php:1455
985
+ #: ../custom-contact-forms-admin.php:1849
986
  msgid "Label Font Size:"
987
  msgstr ""
988
 
989
+ #: ../custom-contact-forms-admin.php:1458
990
+ #: ../custom-contact-forms-admin.php:1623
991
  msgid "(ex: 10px, 10pt, 1em)"
992
  msgstr ""
993
 
994
+ #: ../custom-contact-forms-admin.php:1462
995
+ #: ../custom-contact-forms-admin.php:1888
996
  msgid "Label Font Color:"
997
  msgstr ""
998
 
999
+ #: ../custom-contact-forms-admin.php:1469
1000
+ #: ../custom-contact-forms-admin.php:1775
1001
  msgid "Text Field Width:"
1002
  msgstr ""
1003
 
1004
+ #: ../custom-contact-forms-admin.php:1472
1005
+ #: ../custom-contact-forms-admin.php:1479
1006
+ #: ../custom-contact-forms-admin.php:1486
1007
+ #: ../custom-contact-forms-admin.php:1566
1008
  msgid "(ex: 100px or 100%)"
1009
  msgstr ""
1010
 
1011
+ #: ../custom-contact-forms-admin.php:1476
1012
  msgid "Textarea Field Width:"
1013
  msgstr ""
1014
 
1015
+ #: ../custom-contact-forms-admin.php:1483
1016
  msgid "Textarea Field Height:"
1017
  msgstr ""
1018
 
1019
+ #: ../custom-contact-forms-admin.php:1490
1020
+ #: ../custom-contact-forms-admin.php:1854
1021
  msgid "Field Font Size:"
1022
  msgstr ""
1023
 
1024
+ #: ../custom-contact-forms-admin.php:1493
1025
  msgid "(ex: 10px, 10pt, 1em"
1026
  msgstr ""
1027
 
1028
+ #: ../custom-contact-forms-admin.php:1497
1029
+ #: ../custom-contact-forms-admin.php:1893
1030
  msgid "Field Font Color:"
1031
  msgstr ""
1032
 
1033
+ #: ../custom-contact-forms-admin.php:1500
1034
+ #: ../custom-contact-forms-admin.php:1536
1035
  msgid "(ex: 333333)"
1036
  msgstr ""
1037
 
1038
+ #: ../custom-contact-forms-admin.php:1504
1039
+ #: ../custom-contact-forms-admin.php:1942
1040
  msgid "Field Border Style:"
1041
  msgstr ""
1042
 
1043
+ #: ../custom-contact-forms-admin.php:1512
1044
+ #: ../custom-contact-forms-admin.php:1903
1045
  msgid "Form Margin:"
1046
  msgstr ""
1047
 
1048
+ #: ../custom-contact-forms-admin.php:1515
1049
+ #: ../custom-contact-forms-admin.php:1522
1050
+ #: ../custom-contact-forms-admin.php:1644
1051
+ #: ../custom-contact-forms-admin.php:1651
1052
  msgid "(ex: 5px or 1em)"
1053
  msgstr ""
1054
 
1055
+ #: ../custom-contact-forms-admin.php:1519
1056
+ #: ../custom-contact-forms-admin.php:1795
1057
  msgid "Label Margin:"
1058
  msgstr ""
1059
 
1060
+ #: ../custom-contact-forms-admin.php:1526
1061
  msgid "Textarea Background Color:"
1062
  msgstr ""
1063
 
1064
+ #: ../custom-contact-forms-admin.php:1533
1065
  msgid "Success Popover Font Color:"
1066
  msgstr ""
1067
 
1068
+ #: ../custom-contact-forms-admin.php:1540
1069
  msgid "Success Popover Title Font Size:"
1070
  msgstr ""
1071
 
1072
+ #: ../custom-contact-forms-admin.php:1543
1073
+ #: ../custom-contact-forms-admin.php:1550
1074
+ #: ../custom-contact-forms-admin.php:1672
1075
+ #: ../custom-contact-forms-admin.php:1695
1076
  msgid "(ex: 12px, 1em, 100%)"
1077
  msgstr ""
1078
 
1079
+ #: ../custom-contact-forms-admin.php:1547
1080
+ #: ../custom-contact-forms-admin.php:1839
1081
  msgid "Form Background Color:"
1082
  msgstr ""
1083
 
1084
+ #: ../custom-contact-forms-admin.php:1554
1085
  msgid "Tooltip Background Color:"
1086
  msgstr ""
1087
 
1088
+ #: ../custom-contact-forms-admin.php:1557
1089
  msgid "(ex: 000000 or black)"
1090
  msgstr ""
1091
 
1092
+ #: ../custom-contact-forms-admin.php:1563
1093
+ #: ../custom-contact-forms-admin.php:1937
1094
  msgid "Field Border Color:"
1095
  msgstr ""
1096
 
1097
+ #: ../custom-contact-forms-admin.php:1570
1098
+ #: ../custom-contact-forms-admin.php:1920
1099
  msgid "Form Border Style:"
1100
  msgstr ""
1101
 
1102
+ #: ../custom-contact-forms-admin.php:1578
1103
+ #: ../custom-contact-forms-admin.php:1932
1104
  msgid "Form Border Color:"
1105
  msgstr ""
1106
 
1107
+ #: ../custom-contact-forms-admin.php:1581
1108
  msgid "(ex: 000000)"
1109
  msgstr ""
1110
 
1111
+ #: ../custom-contact-forms-admin.php:1585
1112
+ #: ../custom-contact-forms-admin.php:1927
1113
  msgid "Form Border Width:"
1114
  msgstr ""
1115
 
1116
+ #: ../custom-contact-forms-admin.php:1588
1117
  msgid "(ex: 1px)"
1118
  msgstr ""
1119
 
1120
+ #: ../custom-contact-forms-admin.php:1592
1121
+ #: ../custom-contact-forms-admin.php:1770
1122
  msgid "Form Width:"
1123
  msgstr ""
1124
 
1125
+ #: ../custom-contact-forms-admin.php:1595
1126
  msgid "(ex: 100px or 50%)"
1127
  msgstr ""
1128
 
1129
+ #: ../custom-contact-forms-admin.php:1599
1130
  msgid "Form Font Family:"
1131
  msgstr ""
1132
 
1133
+ #: ../custom-contact-forms-admin.php:1602
1134
  msgid "(ex: Verdana, Tahoma, Arial)"
1135
  msgstr ""
1136
 
1137
+ #: ../custom-contact-forms-admin.php:1606
1138
+ #: ../custom-contact-forms-admin.php:1813
1139
  msgid "Button Width:"
1140
  msgstr ""
1141
 
1142
+ #: ../custom-contact-forms-admin.php:1609
1143
  msgid "(ex: 100px, 30%, auto)"
1144
  msgstr ""
1145
 
1146
+ #: ../custom-contact-forms-admin.php:1613
1147
+ #: ../custom-contact-forms-admin.php:1818
1148
  msgid "Button Height:"
1149
  msgstr ""
1150
 
1151
+ #: ../custom-contact-forms-admin.php:1616
1152
  msgid "(ex: 100px or 30%)"
1153
  msgstr ""
1154
 
1155
+ #: ../custom-contact-forms-admin.php:1620
1156
+ #: ../custom-contact-forms-admin.php:1859
1157
  msgid "Button Font Size:"
1158
  msgstr ""
1159
 
1160
+ #: ../custom-contact-forms-admin.php:1627
1161
+ #: ../custom-contact-forms-admin.php:1898
1162
  msgid "Button Font Color:"
1163
  msgstr ""
1164
 
1165
+ #: ../custom-contact-forms-admin.php:1634
1166
+ #: ../custom-contact-forms-admin.php:1823
1167
  msgid "Field Background Color:"
1168
  msgstr ""
1169
 
1170
+ #: ../custom-contact-forms-admin.php:1641
1171
+ #: ../custom-contact-forms-admin.php:1864
1172
  msgid "Form Padding:"
1173
  msgstr ""
1174
 
1175
+ #: ../custom-contact-forms-admin.php:1648
1176
+ #: ../custom-contact-forms-admin.php:1828
1177
  msgid "Title Margin:"
1178
  msgstr ""
1179
 
1180
+ #: ../custom-contact-forms-admin.php:1655
1181
+ #: ../custom-contact-forms-admin.php:1790
1182
  msgid "Dropdown Width:"
1183
  msgstr ""
1184
 
1185
+ #: ../custom-contact-forms-admin.php:1658
1186
  msgid "(ex: 30px, 20%, or auto)"
1187
  msgstr ""
1188
 
1189
+ #: ../custom-contact-forms-admin.php:1662
1190
  msgid "Success Popover Border Color:"
1191
  msgstr ""
1192
 
1193
+ #: ../custom-contact-forms-admin.php:1669
1194
  msgid "Success Popover Font Size:"
1195
  msgstr ""
1196
 
1197
+ #: ../custom-contact-forms-admin.php:1676
1198
  msgid "Success Popover Height:"
1199
  msgstr ""
1200
 
1201
+ #: ../custom-contact-forms-admin.php:1679
1202
  msgid "(ex: 200px, 6em, 50%)"
1203
  msgstr ""
1204
 
1205
+ #: ../custom-contact-forms-admin.php:1683
1206
+ #: ../custom-contact-forms-admin.php:1956
1207
  msgid "Field Border Roundness:"
1208
  msgstr ""
1209
 
1210
+ #: ../custom-contact-forms-admin.php:1686
1211
  msgid "(ex: 6px, or 0px)"
1212
  msgstr ""
1213
 
1214
+ #: ../custom-contact-forms-admin.php:1690
1215
+ #: ../custom-contact-forms-admin.php:1759
1216
+ #: ../custom-contact-forms-admin.php:1876
1217
  msgid "Tooltip"
1218
  msgstr ""
1219
 
1220
+ #: ../custom-contact-forms-admin.php:1691
1221
+ #: ../custom-contact-forms-admin.php:1760
1222
+ #: ../custom-contact-forms-admin.php:1877
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:1692
1227
+ #: ../custom-contact-forms-admin.php:1871
1228
  msgid "Font Size:"
1229
  msgstr ""
1230
 
1231
+ #: ../custom-contact-forms-admin.php:1699
1232
  msgid "Tooltip Font Color:"
1233
  msgstr ""
1234
 
1235
+ #: ../custom-contact-forms-admin.php:1702
1236
  msgid "(ex: ffffff or white)"
1237
  msgstr ""
1238
 
1239
+ #: ../custom-contact-forms-admin.php:1705
1240
  msgid "Create Style"
1241
  msgstr ""
1242
 
1243
+ #: ../custom-contact-forms-admin.php:1713
1244
  msgid "Manage Form Styles"
1245
  msgstr ""
1246
 
1247
+ #: ../custom-contact-forms-admin.php:1735
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:1740
1255
  msgid "Font Family:"
1256
  msgstr ""
1257
 
1258
+ #: ../custom-contact-forms-admin.php:1745
1259
  msgid "Textarea Background"
1260
  msgstr ""
1261
 
1262
+ #: ../custom-contact-forms-admin.php:1747
1263
  msgid "Color:"
1264
  msgstr ""
1265
 
1266
+ #: ../custom-contact-forms-admin.php:1752
1267
+ #: ../custom-contact-forms-admin.php:1800
1268
+ #: ../custom-contact-forms-admin.php:1833
1269
+ #: ../custom-contact-forms-admin.php:1869
 
1270
  #: ../custom-contact-forms-admin.php:1908
1271
+ #: ../custom-contact-forms-admin.php:1949
1272
  msgid "Success Popover"
1273
  msgstr ""
1274
 
1275
+ #: ../custom-contact-forms-admin.php:1754
1276
  msgid "Border Color:"
1277
  msgstr ""
1278
 
1279
+ #: ../custom-contact-forms-admin.php:1761
1280
+ #: ../custom-contact-forms-admin.php:1910
1281
  msgid "Font Color:"
1282
  msgstr ""
1283
 
1284
+ #: ../custom-contact-forms-admin.php:1767
1285
  msgid "Delete Style"
1286
  msgstr ""
1287
 
1288
+ #: ../custom-contact-forms-admin.php:1780
1289
  msgid "Textarea Width:"
1290
  msgstr ""
1291
 
1292
+ #: ../custom-contact-forms-admin.php:1785
1293
  msgid "Textarea Height:"
1294
  msgstr ""
1295
 
1296
+ #: ../custom-contact-forms-admin.php:1802
1297
  msgid "Height:"
1298
  msgstr ""
1299
 
1300
+ #: ../custom-contact-forms-admin.php:1878
1301
  msgid "Background Color:"
1302
  msgstr ""
1303
 
1304
+ #: ../custom-contact-forms-admin.php:1915
1305
  msgid "Tooltip Font Size:"
1306
  msgstr ""
1307
 
1308
+ #: ../custom-contact-forms-admin.php:1984
1309
  msgid "Report a Bug/Suggest a Feature"
1310
  msgstr ""
1311
 
1312
+ #: ../custom-contact-forms-admin.php:1991
1313
  msgid "Your Name:"
1314
  msgstr ""
1315
 
1316
+ #: ../custom-contact-forms-admin.php:1997
1317
  msgid "Your Email:"
1318
  msgstr ""
1319
 
1320
+ #: ../custom-contact-forms-admin.php:2003
1321
  msgid "Your Message:"
1322
  msgstr ""
1323
 
1324
+ #: ../custom-contact-forms-admin.php:2009
1325
  msgid "Purpose of this message:"
1326
  msgstr ""
1327
 
1328
+ #: ../custom-contact-forms-admin.php:2019
1329
  msgid "Plugin Question"
1330
  msgstr ""
1331
 
1332
+ #: ../custom-contact-forms-admin.php:2025
1333
  msgid "Send Message"
1334
  msgstr ""
1335
 
1336
+ #: ../custom-contact-forms-admin.php:2033
1337
  msgid "Custom HTML Forms (Advanced)"
1338
  msgstr ""
1339
 
1340
+ #: ../custom-contact-forms-admin.php:2037
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:2044
1348
  msgid "Thank you for filling out our form!"
1349
  msgstr ""
1350
 
1351
+ #: ../custom-contact-forms-admin.php:2049
1352
  msgid ""
1353
  "Build your form in here. It is recommended you only use this feature if you are experienced with HTML. \n"
1354
+ "The success_message field will add a popover containing the message when the form is completed successfully, the thank_you_page field will force \n"
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:2060
1360
  msgid "Export"
1361
  msgstr ""
1362
 
1363
+ #: ../custom-contact-forms-admin.php:2065
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:2069
1371
  msgid "Export All CCF Plugin Content"
1372
  msgstr ""
1373
 
1374
+ #: ../custom-contact-forms-admin.php:2075
1375
  msgid "Import"
1376
  msgstr ""
1377
 
1378
+ #: ../custom-contact-forms-admin.php:2081
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:2084
1383
  msgid "Choose What You Want to Use from the Import File:"
1384
  msgstr ""
1385
 
1386
+ #: ../custom-contact-forms-admin.php:2090
1387
  msgid "Use General Settings"
1388
  msgstr ""
1389
 
1390
+ #: ../custom-contact-forms-admin.php:2096
1391
+ #: ../custom-contact-forms-admin.php:2114
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:2102
1398
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:26
1399
  msgid "Form Submissions"
1400
  msgstr ""
1401
 
1402
+ #: ../custom-contact-forms-admin.php:2108
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:2120
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:2126
1415
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:17
1416
  msgid "Styles"
1417
  msgstr ""
1418
 
1419
+ #: ../custom-contact-forms-admin.php:2132
1420
  msgid "Choose an Import File:"
1421
  msgstr ""
1422
 
1423
+ #: ../custom-contact-forms-admin.php:2136
1424
  msgid "Clear and Import"
1425
  msgstr ""
1426
 
1427
+ #: ../custom-contact-forms-admin.php:2138
1428
  msgid "Yes, I want to do this and have created a backup."
1429
  msgstr ""
1430
 
1431
+ #: ../custom-contact-forms-admin.php:2145
1432
  msgid "Custom Contact Forms Plugin News"
1433
  msgstr ""
1434
 
1435
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:3
1436
  msgid "How To Use Custom Contact Forms"
1437
  msgstr ""
1438
 
1439
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:23
1440
  msgid "Import/Export"
1441
  msgstr ""
1442
 
1443
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:30
1444
  msgid "Introduction"
1445
  msgstr ""
1446
 
1447
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:33
1448
  msgid ""
1449
  "CCF is an extremely intuitive plugin allowing you to create any type of contact form you can imagine. CCF is very user friendly but with possibilities comes complexity. It is recommend that you click the button below to create default fields, field options, and forms.\n"
1450
  " The default content will help you get a feel for the amazing things you can accomplish with this plugin. This popover only shows automatically the first time you visit the admin page;"
1451
  msgstr ""
1452
 
1453
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:36
1454
  msgid "if you want to view this popover again, click the 'Show Plugin Usage Popover'"
1455
  msgstr ""
1456
 
1457
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:38
1458
  msgid "in the instruction area of the admin page."
1459
  msgstr ""
1460
 
1461
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:44
1462
  msgid "Below is a basic usage outline of the four pillars of this plugin: fields, field options, styles, and forms. Another useful part of the plugin is the 'Custom HTML Feature' which allows you to write the form HTML yourself using the plugin simply as a form processor; this is great if you are a web developer with HTML experience. Also explained below is the 'Saved Form Submissions' feature which displays all form submissions in the admin panel."
1463
  msgstr ""
1464
 
1465
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:52
1466
  msgid "Fields are the actual input boxes in which users enter their information. There are six types of fields that you can attach to your forms.!"
1467
  msgstr ""
1468
 
1469
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:56
1470
  msgid "Text:"
1471
  msgstr ""
1472
 
1473
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:59
1474
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:66
1475
  msgid "This is a text field"
1476
  msgstr ""
1477
 
1478
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:63
1479
  msgid "Textarea:"
1480
  msgstr ""
1481
 
1482
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:70
1483
  msgid "Dropdown:"
1484
  msgstr ""
1485
 
1486
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:75
1487
  msgid "This is a dropdown field"
1488
  msgstr ""
1489
 
1490
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:78
1491
  msgid "Field Option 2!"
1492
  msgstr ""
1493
 
1494
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:81
1495
  msgid "Field Option 3!"
1496
  msgstr ""
1497
 
1498
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:84
1499
  msgid "Field Option 4!"
1500
  msgstr ""
1501
 
1502
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:87
1503
  msgid "Unlimited # of options allowed"
1504
  msgstr ""
1505
 
1506
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:93
1507
  msgid "Radio:"
1508
  msgstr ""
1509
 
1510
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:97
1511
  msgid "A radio field"
1512
  msgstr ""
1513
 
1514
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:99
1515
  msgid "Field Option 2"
1516
  msgstr ""
1517
 
1518
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:101
1519
  msgid "Field Option 3"
1520
  msgstr ""
1521
 
1522
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:105
1523
  msgid "Checkbox:"
1524
  msgstr ""
1525
 
1526
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:109
1527
  msgid "This is a checkbox field"
1528
  msgstr ""
1529
 
1530
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:113
1531
  msgid "(advanced) Hidden:"
1532
  msgstr ""
1533
 
1534
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:115
1535
  msgid "These fields are hidden (obviously), they allow you to pass hidden information within your forms. Great for using other form processors like Aweber or InfusionSoft."
1536
  msgstr ""
1537
 
1538
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:119
1539
  msgid "There are a variety of different options that you can use when creating a field,"
1540
  msgstr ""
1541
 
1542
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:121
1543
  msgid "denotes something required:"
1544
  msgstr ""
1545
 
1546
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:127
1547
  msgid "A slug is simply a way to identify your field. It can only contain underscores, letters, and numbers and must be unique."
1548
  msgstr ""
1549
 
1550
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:137
 
 
 
 
1551
  msgid "The six field types you can choose from are explained above."
1552
  msgstr ""
1553
 
1554
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:142
1555
  msgid "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 'Are you human?', I would set the initial value to 'Yes'. If you set the field type as 'Dropdown' or 'Radio', you should enter the slug of the field option you would like initially selected (or just leave it blank and the first option attached will be selected)."
1556
  msgstr ""
1557
 
1558
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:147
1559
  msgid "This allows you to limit the amount of characters a user can enter in a field (does not apply to textareas as of version 3.5.5)"
1560
  msgstr ""
1561
 
1562
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:152
1563
  msgid "If a field is required and a user leaves it blank, the plugin will display an error message explaining the problem. The user will then have to go back and fill in the field properly."
1564
  msgstr ""
1565
 
1566
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:157
1567
  msgid "If this is filled out, a stylish tooltip popover displaying this text will show when the field is selected. This will only work if JQuery is enabled in general options."
1568
  msgstr ""
1569
 
1570
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:160
1571
  msgid "Field Options:"
1572
  msgstr ""
1573
 
1574
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:162
1575
  msgid "After you create a field, if it's field type is radio or dropdown, you can attach field options to the field. Field options are explained in the next section."
1576
  msgstr ""
1577
 
1578
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:166
1579
  msgid "The last important thing related to fields are <span>Fixed Fields</span>. Fixed Fields are special fields that come already created within the plugin such as the captcha spam blocker and email field. Fixed Fields do special things that you wouldn't be able to accomplish with normally; they cannot be deleted or created. If you use the fixedEmail field, as opposed to creating your own email field. the users email will be checked to make sure it is valid, if it isn't a form error will be displayed."
1580
  msgstr ""
1581
 
1582
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:174
1583
  msgid "In the field section above, look at the radio or dropdown fields. See how they have multiple options within the field? Those are called Field Options. Field Options have their own manager. There are only three things you must fill in to create a field option."
1584
  msgstr ""
1585
 
1586
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:180
1587
  msgid "Used to identify the field option, solely for admin purposes; must be unique, and contain only letters, numbers, and underscores. Example: 'slug_one'."
1588
  msgstr ""
1589
 
1590
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:185
1591
  msgid "This is what is shown to the user in the dropdown or radio field."
1592
  msgstr ""
1593
 
1594
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:190
1595
  msgid "This is the actual value of the option which isn't 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'. The option value is behind the scences; unseen by the user, but when a user fills out the form, the option value is what is actually emailed to you and stored in the database. For dropdown fields the option value is optional, <span>for radio fields it is required</span>."
1596
  msgstr ""
1597
 
1598
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:194
1599
  msgid "Once you create field options, you can attach them (in the field manager) to radio and dropdown fields (that are already created). It is important to remember that after you create a dropdown or radio field, they will not work until you attach one or more field options."
1600
  msgstr ""
1601
 
1602
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:202
1603
  msgid "Forms bring everything together. Each form you create in the form manager shows a code to display that form in posts/pages as well as theme files. The post/page form display code looks like: [customcontact id=FORMID]. There are a number of parameters that you can fill out when creating and managing each of your forms."
1604
  msgstr ""
1605
 
1606
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:208
1607
  msgid "A slug is simply a way to identify your form. It can only contain underscores, letters, and numbers and must be unique. Example 'my_contact_form'"
1608
  msgstr ""
1609
 
1610
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:213
1611
  msgid "The form title is heading text shown at the top of the form to users. Here's an example: 'My Contact Form'."
1612
  msgstr ""
1613
 
1614
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:218
1615
  msgid "If you don't know what this is leave it as 'Post'. This allows you to change the way a form sends user information."
1616
  msgstr ""
1617
 
1618
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:223
1619
  msgid "This allows you to process your forms using 3rd party services or your own scripts. If you don't know what this is, then leave it blank. This is useful if you use a service like Aweber or InfusionSoft."
1620
  msgstr ""
1621
 
1622
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:228
1623
  msgid "This allows you to apply styles you create in the style manager to your forms. If you haven't created a custom style yet, just choose 'Default'."
1624
  msgstr ""
1625
 
1626
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:233
1627
  msgid "Here, you can specify the text that shows on the submit button."
1628
  msgstr ""
1629
 
1630
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:243
 
 
 
 
1631
  msgid "Specify the email that should receive all form submissions. If you leave this blank it will revert to the default specified in general settings."
1632
  msgstr ""
1633
 
1634
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:248
1635
  msgid "Will be displayed in a popover after 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."
1636
  msgstr ""
1637
 
1638
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:258
 
 
 
 
1639
  msgid "If this is filled out, users will be sent to this page when they successfully fill out the form. If it is left blank, a popover showing the form's 'success message' will be displayed on successful form submission."
1640
  msgstr ""
1641
 
1642
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:261
1643
  msgid "Attach Fields:"
1644
  msgstr ""
1645
 
1646
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:263
1647
  msgid "After creating a form you are given the option to attach (and dettach) fields to that specific form. Forms are useless until you attach fields."
1648
  msgstr ""
1649
 
1650
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:267
1651
  msgid "The form success message and success title apply to a popover that fades in after someone successfully completes a form (that does not have a custom success URL provided). The image below will help to give you a feel to how the popover will look and where the title and message actually show up."
1652
  msgstr ""
1653
 
1654
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:273
1655
  msgid "Style Manager"
1656
  msgstr ""
1657
 
1658
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:276
1659
  msgid "The style manager allows you to customize the appearance of forms without any knowledge of CSS. There are a ton of parameters you can fill out with each style and all of them are pretty self-explanitory. After you create a style, you need to go to the form manager and set the form style to the new style you created (the slug will be what shows in the 'Form Style' dropdown)."
1660
  msgstr ""
1661
 
1662
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:279
1663
  msgid "The image below will help you better understand how each style option will change your forms."
1664
  msgstr ""
1665
 
1666
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:285
1667
  msgid "Custom HTML Forms Feature (advanced)"
1668
  msgstr ""
1669
 
1670
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:288
1671
  msgid "If you know HTML and simply want to use this plugin to process form requests, this feature is for you. The following HTML is a the framework to which you must adhere. In order for your form to work you MUST do the following:"
1672
  msgstr ""
1673
 
1674
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:292
1675
  msgid "Keep the form action/method the same (yes the action is supposed to be empty)."
1676
  msgstr ""
1677
 
1678
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:295
1679
  msgid "Include all the hidden fields shown below."
1680
  msgstr ""
1681
 
1682
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:298
1683
  msgid "Provide a hidden 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)."
1684
  msgstr ""
1685
 
1686
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:302
1687
  msgid "Just to be clear, you don't edit the code in the Custom HTML Forms feature within the admin panel. Instead, you copy the code in to the page, post, or theme file you want to display a form, then edit the code to look how you want following the guidelines provided above."
1688
  msgstr ""
1689
 
1690
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:310
1691
  msgid "This features saves each user form submission. All the fields attached to the form along with the time of submission and form URL are saved in the database and displayed in a stylish format in the admin panel."
1692
  msgstr ""
1693
 
1694
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:315
1695
  msgid "Import / Export"
1696
  msgstr ""
1697
 
1698
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:318
1699
  msgid ""
1700
  "Import/export is a new feature that allows you to transfer forms, fields, field options, styles and everything else saved by the plugin between Wordpress installations. Clicking the Export All button will create a .SQL file for download. With the .SQL export file you can use the importer within the CCF plugin admin page to import the .SQL file. The built-in importer is completely safe as long as you only import files that have been generated by the CCF exporter. \n"
1701
  " You can also use PHPMyAdmin or any other MySQL database administration tool to run the import file. Importing a .SQL file will never overwrite any existing data. \n"
1703
  " If you are importing without using the built-in importer (such as PHPMyAdmin), then note the following: You should only run the import file on Wordpress installations that already have Custom Contact Forms installed; also you will need to change the table prefix for each query within the .SQL file."
1704
  msgstr ""
1705
 
1706
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:323
1707
+ msgid "Custom Contact Forms allows you to import data in different ways."
1708
+ msgstr ""
1709
+
1710
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:325
1711
+ msgid "Clear and Import:"
1712
+ msgstr ""
1713
+
1714
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:325
1715
+ msgid "This is the safest way to import because it deletes all current content before importing. This is important because it prevents occurences of conflicting data ID's or slugs."
1716
+ msgstr ""
1717
+
1718
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:327
1719
+ msgid "You can also export data in different ways."
1720
+ msgstr ""
1721
+
1722
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:329
1723
+ msgid "Export All:"
1724
+ msgstr ""
1725
+
1726
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:329
1727
+ msgid "This exports all custom contact form data including your general settings in SQL format. This is allows you to easily create backups."
1728
+ msgstr ""
1729
+
1730
+ #: ../modules/usage_popover/custom-contact-forms-usage-popover.php:331
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:42
1735
  msgid "Choose a Form:"
1736
  msgstr ""
1737
 
1738
+ #: ../modules/widget/custom-contact-forms-widget.php:53
1739
  msgid "Create a Form"
1740
  msgstr ""
1741
 
modules/usage_popover/custom-contact-forms-usage-popover.php CHANGED
@@ -320,6 +320,15 @@
320
  It is strongly recommended that you import CCF .SQL files using the built-in importer with in the admin panel due to the added complexity of importing using alterative methods.
321
  If you are importing without using the built-in importer (such as PHPMyAdmin), then note the following: You should only run the import file on Wordpress installations that already have Custom Contact Forms installed; also you will need to change the table prefix for each query within the .SQL file.', 'custom-contact-forms'); ?>
322
  </p>
 
 
 
 
 
 
 
 
 
323
  </li>
324
  </ul>
325
  </div>
320
  It is strongly recommended that you import CCF .SQL files using the built-in importer with in the admin panel due to the added complexity of importing using alterative methods.
321
  If you are importing without using the built-in importer (such as PHPMyAdmin), then note the following: You should only run the import file on Wordpress installations that already have Custom Contact Forms installed; also you will need to change the table prefix for each query within the .SQL file.', 'custom-contact-forms'); ?>
322
  </p>
323
+ <p><?php _e('Custom Contact Forms allows you to import data in different ways.', 'custom-contact-forms'); ?></p>
324
+ <ul>
325
+ <li><b><?php _e('Clear and Import:', 'custom-contact-forms'); ?></b> <?php _e("This is the safest way to import because it deletes all current content before importing. This is important because it prevents occurences of conflicting data ID's or slugs.", 'custom-contact-forms'); ?></li>
326
+ </ul>
327
+ <p><?php _e('You can also export data in different ways.', 'custom-contact-forms'); ?></p>
328
+ <ul>
329
+ <li><b><?php _e('Export All:', 'custom-contact-forms'); ?></b> <?php _e("This exports all custom contact form data including your general settings in SQL format. This is allows you to easily create backups.", 'custom-contact-forms'); ?></li>
330
+ </ul>
331
+ <p><?php _e('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.', 'custom-contact-forms'); ?></p>
332
  </li>
333
  </ul>
334
  </div>
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.0.b9
8
 
9
  Gauranteed to be the most customizable and intuitive contact form plugin for Wordpress.
10
 
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.0
8
 
9
  Gauranteed to be the most customizable and intuitive contact form plugin for Wordpress.
10