Version Description
- Fix: When form actions were added at the same time with non-alphabetical naming, a new addon was replacing the first one
- Pro Version Forms
- Fix: Show update notifications more reliably on sites that don't save the transient expiration
- Fix: Allow script and style tags in the content boxes of views
Download this release
Release Info
Developer | sswells |
Plugin | Formidable Forms – Form Builder for WordPress |
Version | 2.05.05 |
Comparing to | |
See all releases |
Code changes from version 2.05.04 to 2.05.05
- classes/helpers/FrmAppHelper.php +1 -1
- classes/models/FrmAddon.php +32 -6
- classes/models/FrmEDD_SL_Plugin_Updater.php +3 -0
- formidable.php +1 -1
- js/formidable_admin.js +24 -16
- languages/formidable-az_AZ.mo +0 -0
- languages/formidable-az_AZ.po +0 -7838
- languages/formidable-da_DK.mo +0 -0
- languages/formidable-da_DK.po +0 -7997
- languages/formidable-fr_FR.mo +0 -0
- languages/formidable-fr_FR.po +0 -8163
- languages/formidable-hu_HU.mo +0 -0
- languages/formidable-hu_HU.po +0 -7838
- languages/formidable-ro_RO.mo +0 -0
- languages/formidable-ro_RO.po +0 -5573
classes/helpers/FrmAppHelper.php
CHANGED
@@ -10,7 +10,7 @@ class FrmAppHelper {
|
|
10 |
/**
|
11 |
* @since 2.0
|
12 |
*/
|
13 |
-
public static $plug_version = '2.05.
|
14 |
|
15 |
/**
|
16 |
* @since 1.07.02
|
10 |
/**
|
11 |
* @since 2.0
|
12 |
*/
|
13 |
+
public static $plug_version = '2.05.05';
|
14 |
|
15 |
/**
|
16 |
* @since 1.07.02
|
classes/models/FrmAddon.php
CHANGED
@@ -166,14 +166,10 @@ class FrmAddon {
|
|
166 |
unset( $transient->response[ $this->plugin_folder ] );
|
167 |
}
|
168 |
} else if ( isset( $transient->response ) && isset( $transient->response[ $this->plugin_folder ] ) ) {
|
169 |
-
$cache_key =
|
170 |
$version_info = get_transient( $cache_key );
|
171 |
|
172 |
-
$
|
173 |
-
if ( $expiration === false ) {
|
174 |
-
// make sure transients don't stick around on some sites
|
175 |
-
$version_info = false;
|
176 |
-
}
|
177 |
|
178 |
if ( $version_info !== false && version_compare( $version_info->new_version, $this->version, '>' ) ) {
|
179 |
$transient->response[ $this->plugin_folder ] = $version_info;
|
@@ -192,6 +188,36 @@ class FrmAddon {
|
|
192 |
return $transient;
|
193 |
}
|
194 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
195 |
private function is_current_version( $transient ) {
|
196 |
if ( empty( $transient->checked ) || ! isset( $transient->checked[ $this->plugin_folder ] ) ) {
|
197 |
return false;
|
166 |
unset( $transient->response[ $this->plugin_folder ] );
|
167 |
}
|
168 |
} else if ( isset( $transient->response ) && isset( $transient->response[ $this->plugin_folder ] ) ) {
|
169 |
+
$cache_key = $this->version_cache_key();
|
170 |
$version_info = get_transient( $cache_key );
|
171 |
|
172 |
+
$this->clear_old_plugin_version( $version_info );
|
|
|
|
|
|
|
|
|
173 |
|
174 |
if ( $version_info !== false && version_compare( $version_info->new_version, $this->version, '>' ) ) {
|
175 |
$transient->response[ $this->plugin_folder ] = $version_info;
|
188 |
return $transient;
|
189 |
}
|
190 |
|
191 |
+
|
192 |
+
/**
|
193 |
+
* @since 2.05.05
|
194 |
+
*/
|
195 |
+
private function version_cache_key() {
|
196 |
+
return 'edd_plugin_' . md5( sanitize_key( $this->license . $this->version ) . '_get_version' );
|
197 |
+
}
|
198 |
+
|
199 |
+
/**
|
200 |
+
* make sure transients don't stick around on sites that
|
201 |
+
* don't save the transient expiration
|
202 |
+
*
|
203 |
+
* @since 2.05.05
|
204 |
+
*/
|
205 |
+
private function clear_old_plugin_version( &$version_info ) {
|
206 |
+
if ( $version_info !== false ) {
|
207 |
+
|
208 |
+
$cache_key = $this->version_cache_key();
|
209 |
+
$expiration = get_option( '_transient_timeout_' . $cache_key );
|
210 |
+
|
211 |
+
if ( $expiration === false ) {
|
212 |
+
$last_checked = ( is_array( $version_info->sections ) && isset( $version_info->sections['last_checked'] ) ) ? $version_info->sections['last_checked'] : 0;
|
213 |
+
|
214 |
+
if ( $last_checked < strtotime('-48 hours') ) {
|
215 |
+
$version_info = false;
|
216 |
+
}
|
217 |
+
}
|
218 |
+
}
|
219 |
+
}
|
220 |
+
|
221 |
private function is_current_version( $transient ) {
|
222 |
if ( empty( $transient->checked ) || ! isset( $transient->checked[ $this->plugin_folder ] ) ) {
|
223 |
return false;
|
classes/models/FrmEDD_SL_Plugin_Updater.php
CHANGED
@@ -216,6 +216,9 @@ class FrmEDD_SL_Plugin_Updater {
|
|
216 |
|
217 |
if ( $request && isset( $request->sections ) ) {
|
218 |
$request->sections = maybe_unserialize( $request->sections );
|
|
|
|
|
|
|
219 |
set_transient( $cache_key, $request, DAY_IN_SECONDS );
|
220 |
} else {
|
221 |
$request = false;
|
216 |
|
217 |
if ( $request && isset( $request->sections ) ) {
|
218 |
$request->sections = maybe_unserialize( $request->sections );
|
219 |
+
if ( is_array( $request->sections ) ) {
|
220 |
+
$request->sections['last_checked'] = time();
|
221 |
+
}
|
222 |
set_transient( $cache_key, $request, DAY_IN_SECONDS );
|
223 |
} else {
|
224 |
$request = false;
|
formidable.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Formidable Forms
|
4 |
Description: Quickly and easily create drag-and-drop forms
|
5 |
-
Version: 2.05.
|
6 |
Plugin URI: https://formidableforms.com/
|
7 |
Author URI: https://formidableforms.com/
|
8 |
Author: Strategy11
|
2 |
/*
|
3 |
Plugin Name: Formidable Forms
|
4 |
Description: Quickly and easily create drag-and-drop forms
|
5 |
+
Version: 2.05.05
|
6 |
Plugin URI: https://formidableforms.com/
|
7 |
Author URI: https://formidableforms.com/
|
8 |
Author: Strategy11
|
js/formidable_admin.js
CHANGED
@@ -117,12 +117,11 @@ function frmAdminBuildJS(){
|
|
117 |
b = this;
|
118 |
}
|
119 |
popCalcFields(b);
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
if ( action_type ) {
|
126 |
cont.children('.widget-inside').html('<span class="spinner frm_spinner"></span>');
|
127 |
cont.find('.spinner').fadeIn('slow');
|
128 |
jQuery.ajax({
|
@@ -133,7 +132,6 @@ function frmAdminBuildJS(){
|
|
133 |
initiateMultiselect();
|
134 |
}
|
135 |
});
|
136 |
-
}
|
137 |
}
|
138 |
}
|
139 |
|
@@ -1415,24 +1413,21 @@ function frmAdminBuildJS(){
|
|
1415 |
}
|
1416 |
|
1417 |
function addFormAction(){
|
1418 |
-
|
1419 |
-
|
1420 |
-
//Get number of previous action
|
1421 |
-
len = jQuery('.frm_form_action_settings:last').attr('id').replace('frm_form_action_', '');
|
1422 |
-
}
|
1423 |
var type = jQuery(this).data('actiontype');
|
1424 |
var formId = this_form_id;
|
1425 |
|
1426 |
jQuery.ajax({
|
1427 |
type:'POST',url:ajaxurl,
|
1428 |
-
data:{action:'frm_add_form_action', type:type, list_id:
|
1429 |
success:function(html){
|
1430 |
jQuery('#frm_notification_settings .widget-inside').css('display','none');//Close any open actions first
|
1431 |
jQuery('#frm_notification_settings').append(html);
|
1432 |
jQuery('.frm_form_action_settings').fadeIn('slow');
|
1433 |
-
jQuery('#frm_form_action_' +
|
1434 |
-
jQuery('#frm_form_action_' +
|
1435 |
-
jQuery('#action_post_title_' +
|
1436 |
|
1437 |
//check if icon should be active
|
1438 |
checkActiveAction(type);
|
@@ -1441,6 +1436,19 @@ function frmAdminBuildJS(){
|
|
1441 |
});
|
1442 |
}
|
1443 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1444 |
function clickAction(obj){
|
1445 |
var $thisobj = jQuery(obj);
|
1446 |
if(obj.className.indexOf('selected') !== -1){
|
117 |
b = this;
|
118 |
}
|
119 |
popCalcFields(b);
|
120 |
+
var cont = jQuery(b).closest('.frm_form_action_settings');
|
121 |
+
if ( cont.length && cont.find('.form-table').length < 1 ) {
|
122 |
+
var action_id = cont.find('input[name$="[ID]"]').val();
|
123 |
+
var action_type = cont.find('input[name$="[post_excerpt]"]').val();
|
124 |
+
if ( action_type ) {
|
|
|
125 |
cont.children('.widget-inside').html('<span class="spinner frm_spinner"></span>');
|
126 |
cont.find('.spinner').fadeIn('slow');
|
127 |
jQuery.ajax({
|
132 |
initiateMultiselect();
|
133 |
}
|
134 |
});
|
|
|
135 |
}
|
136 |
}
|
137 |
|
1413 |
}
|
1414 |
|
1415 |
function addFormAction(){
|
1416 |
+
/*jshint validthis:true */
|
1417 |
+
var actionId = getNewActionId();
|
|
|
|
|
|
|
1418 |
var type = jQuery(this).data('actiontype');
|
1419 |
var formId = this_form_id;
|
1420 |
|
1421 |
jQuery.ajax({
|
1422 |
type:'POST',url:ajaxurl,
|
1423 |
+
data:{action:'frm_add_form_action', type:type, list_id:actionId, form_id:formId, nonce:frmGlobal.nonce},
|
1424 |
success:function(html){
|
1425 |
jQuery('#frm_notification_settings .widget-inside').css('display','none');//Close any open actions first
|
1426 |
jQuery('#frm_notification_settings').append(html);
|
1427 |
jQuery('.frm_form_action_settings').fadeIn('slow');
|
1428 |
+
jQuery('#frm_form_action_' + actionId + ' .widget-inside').css('display','block');
|
1429 |
+
jQuery('#frm_form_action_' + actionId).addClass('open');
|
1430 |
+
jQuery('#action_post_title_' + actionId).focus();
|
1431 |
|
1432 |
//check if icon should be active
|
1433 |
checkActiveAction(type);
|
1436 |
});
|
1437 |
}
|
1438 |
|
1439 |
+
function getNewActionId() {
|
1440 |
+
var len = 0;
|
1441 |
+
if ( jQuery('.frm_form_action_settings:last').length ) {
|
1442 |
+
//Get number of previous action
|
1443 |
+
len = jQuery('.frm_form_action_settings:last').attr('id').replace('frm_form_action_', '');
|
1444 |
+
}
|
1445 |
+
len = parseInt(len) + 1;
|
1446 |
+
if ( typeof document.getElementById( 'frm_form_action_'+ len ) !== 'undefined' ) {
|
1447 |
+
len = len + 100;
|
1448 |
+
}
|
1449 |
+
return len;
|
1450 |
+
}
|
1451 |
+
|
1452 |
function clickAction(obj){
|
1453 |
var $thisobj = jQuery(obj);
|
1454 |
if(obj.className.indexOf('selected') !== -1){
|
languages/formidable-az_AZ.mo
DELETED
Binary file
|
languages/formidable-az_AZ.po
DELETED
@@ -1,7838 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Formidable v2.05.02\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-09-01 03:07+0000\n"
|
6 |
-
"PO-Revision-Date: Wed Oct 25 2017 12:58:28 GMT-0700 (PDT)\n"
|
7 |
-
"Last-Translator: \n"
|
8 |
-
"Language-Team: \n"
|
9 |
-
"Language: Azerbaijani (Azerbaijan)\n"
|
10 |
-
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
11 |
-
"MIME-Version: 1.0\n"
|
12 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
-
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
-
"X-Generator: Loco - https://localise.biz/\n"
|
16 |
-
"X-Poedit-Basepath: .\n"
|
17 |
-
"X-Poedit-SearchPath-0: ..\n"
|
18 |
-
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
19 |
-
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
20 |
-
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
21 |
-
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
22 |
-
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
23 |
-
"X-Loco-Target-Locale: az_AZ"
|
24 |
-
|
25 |
-
#. Description of the plugin
|
26 |
-
msgid "Quickly and easily create drag-and-drop forms"
|
27 |
-
msgstr ""
|
28 |
-
|
29 |
-
#: ../classes/controllers/FrmAddonsController.php:6 ..
|
30 |
-
#: classes/controllers/FrmAddonsController.php:6
|
31 |
-
msgid "AddOns"
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#: ../classes/controllers/FrmAddonsController.php:27
|
35 |
-
msgid "There are no plugins on your site that require a license"
|
36 |
-
msgstr ""
|
37 |
-
|
38 |
-
#: ../classes/controllers/FrmAppController.php:63 ../classes/views/frm-forms/edit.
|
39 |
-
#: php:2
|
40 |
-
msgid "Build"
|
41 |
-
msgstr ""
|
42 |
-
|
43 |
-
#: ../classes/controllers/FrmAppController.php:77 ..
|
44 |
-
#: classes/controllers/FrmEntriesController.php:8 ..
|
45 |
-
#: classes/controllers/FrmEntriesController.php:8 ..
|
46 |
-
#: classes/controllers/FrmEntriesController.php:90 ..
|
47 |
-
#: classes/controllers/FrmFormsController.php:548 ..
|
48 |
-
#: classes/controllers/FrmXMLController.php:58 ../classes/models/FrmPointers.php:
|
49 |
-
#: 263 ../classes/views/frm-entries/list.php:2 ../pro/classes/views/frmpro-
|
50 |
-
#: fields/back-end/dynamic-field.php:14 ../pro/classes/views/frmpro-
|
51 |
-
#: statistics/show.php:66
|
52 |
-
msgid "Entries"
|
53 |
-
msgstr ""
|
54 |
-
|
55 |
-
#: ../classes/controllers/FrmAppController.php:114
|
56 |
-
#, php-format
|
57 |
-
msgid ""
|
58 |
-
"This site has been previously authorized to run Formidable Forms."
|
59 |
-
"<br/>%1$sInstall Formidable Pro%2$s or %3$sdeauthorize%4$s this site to "
|
60 |
-
"continue running the free version and remove this message."
|
61 |
-
msgstr ""
|
62 |
-
|
63 |
-
#: ../classes/controllers/FrmEntriesController.php:55
|
64 |
-
msgid ""
|
65 |
-
"This screen provides access to all of your entries. You can customize the "
|
66 |
-
"display of this screen to suit your workflow."
|
67 |
-
msgstr ""
|
68 |
-
|
69 |
-
#: ../classes/controllers/FrmEntriesController.php:55
|
70 |
-
msgid ""
|
71 |
-
"Hovering over a row in the entries list will display action links that allow "
|
72 |
-
"you to manage your entry."
|
73 |
-
msgstr ""
|
74 |
-
|
75 |
-
#: ../classes/controllers/FrmEntriesController.php:60
|
76 |
-
msgid "Documentation on Entries"
|
77 |
-
msgstr ""
|
78 |
-
|
79 |
-
#: ../classes/controllers/FrmEntriesController.php:72 ..
|
80 |
-
#: classes/controllers/FrmFormsController.php:718 ../classes/views/frm-
|
81 |
-
#: entries/form.php:46 ../classes/views/frm-entries/sidebar-shared.php:29 ..
|
82 |
-
#: pro/classes/helpers/FrmProFieldsHelper.php:2671 ..
|
83 |
-
#: pro/classes/views/xml/map_csv_fields.php:57 ..
|
84 |
-
#: pro/classes/views/xml/map_csv_fields.php:57
|
85 |
-
msgid "Entry Key"
|
86 |
-
msgstr ""
|
87 |
-
|
88 |
-
#: ../classes/controllers/FrmEntriesController.php:77 ..
|
89 |
-
#: classes/controllers/FrmFormsController.php:460 ../classes/views/frm-
|
90 |
-
#: forms/_publish_box.php:47 ../classes/widgets/FrmShowForm.php:45 ..
|
91 |
-
#: pro/classes/controllers/FrmProDisplaysController.php:137
|
92 |
-
msgid "Form"
|
93 |
-
msgstr ""
|
94 |
-
|
95 |
-
#: ../classes/controllers/FrmEntriesController.php:78
|
96 |
-
msgid "Entry Name"
|
97 |
-
msgstr ""
|
98 |
-
|
99 |
-
#: ../classes/controllers/FrmEntriesController.php:79 ..
|
100 |
-
#: classes/helpers/FrmCSVExportHelper.php:113
|
101 |
-
msgid "Created By"
|
102 |
-
msgstr ""
|
103 |
-
|
104 |
-
#: ../classes/controllers/FrmEntriesController.php:82 ..
|
105 |
-
#: pro/classes/helpers/FrmProEntriesListHelper.php:61 ..
|
106 |
-
#: pro/classes/helpers/FrmProEntriesListHelper.php:72 ..
|
107 |
-
#: pro/classes/helpers/FrmProFieldsHelper.php:2674 ..
|
108 |
-
#: pro/classes/views/displays/_calendar_options.php:4 ..
|
109 |
-
#: pro/classes/views/displays/_calendar_options.php:16 ..
|
110 |
-
#: pro/classes/views/displays/order_row.php:4 ..
|
111 |
-
#: pro/classes/views/displays/where_row.php:4
|
112 |
-
msgid "Entry creation date"
|
113 |
-
msgstr ""
|
114 |
-
|
115 |
-
#: ../classes/controllers/FrmEntriesController.php:83 ..
|
116 |
-
#: pro/classes/helpers/FrmProFieldsHelper.php:2675 ..
|
117 |
-
#: pro/classes/views/displays/_calendar_options.php:5 ..
|
118 |
-
#: pro/classes/views/displays/_calendar_options.php:17 ..
|
119 |
-
#: pro/classes/views/displays/order_row.php:5
|
120 |
-
msgid "Entry update date"
|
121 |
-
msgstr ""
|
122 |
-
|
123 |
-
#: ../classes/controllers/FrmEntriesController.php:334
|
124 |
-
msgid "Your import is complete"
|
125 |
-
msgstr ""
|
126 |
-
|
127 |
-
#: ../classes/controllers/FrmEntriesController.php:344
|
128 |
-
#, php-format
|
129 |
-
msgid ""
|
130 |
-
"This form is in the trash and is scheduled to be deleted permanently in %s "
|
131 |
-
"along with any entries."
|
132 |
-
msgstr ""
|
133 |
-
|
134 |
-
#: ../classes/controllers/FrmEntriesController.php:363
|
135 |
-
msgid "You are trying to view an entry that does not exist."
|
136 |
-
msgstr ""
|
137 |
-
|
138 |
-
#: ../classes/controllers/FrmEntriesController.php:392
|
139 |
-
msgid "Entry was Successfully Destroyed"
|
140 |
-
msgstr ""
|
141 |
-
|
142 |
-
#: ../classes/controllers/FrmEntriesController.php:426
|
143 |
-
msgid "Entries were Successfully Destroyed"
|
144 |
-
msgstr ""
|
145 |
-
|
146 |
-
#: ../classes/controllers/FrmEntriesController.php:429 ..
|
147 |
-
#: pro/classes/controllers/FrmProEntriesController.php:411
|
148 |
-
msgid "No entries were specified"
|
149 |
-
msgstr ""
|
150 |
-
|
151 |
-
#: ../classes/controllers/FrmFieldsController.php:224
|
152 |
-
msgid "New Option"
|
153 |
-
msgstr ""
|
154 |
-
|
155 |
-
#: ../classes/controllers/FrmFormActionsController.php:9 ../classes/views/frm-
|
156 |
-
#: forms/settings.php:30
|
157 |
-
msgid "Form Actions"
|
158 |
-
msgstr ""
|
159 |
-
|
160 |
-
#: ../classes/controllers/FrmFormsController.php:161
|
161 |
-
msgid "Settings Successfully Updated"
|
162 |
-
msgstr ""
|
163 |
-
|
164 |
-
#: ../classes/controllers/FrmFormsController.php:213 ..
|
165 |
-
#: classes/controllers/FrmFormsController.php:616
|
166 |
-
msgid "Form was Successfully Updated"
|
167 |
-
msgstr ""
|
168 |
-
|
169 |
-
#: ../classes/controllers/FrmFormsController.php:228 ..
|
170 |
-
#: classes/controllers/FrmFormsController.php:256
|
171 |
-
msgid "Form template was Successfully Created"
|
172 |
-
msgstr ""
|
173 |
-
|
174 |
-
#: ../classes/controllers/FrmFormsController.php:256
|
175 |
-
msgid "Form was Successfully Copied"
|
176 |
-
msgstr ""
|
177 |
-
|
178 |
-
#: ../classes/controllers/FrmFormsController.php:260
|
179 |
-
msgid "There was a problem creating the new template."
|
180 |
-
msgstr ""
|
181 |
-
|
182 |
-
#: ../classes/controllers/FrmFormsController.php:323 ..
|
183 |
-
#: classes/controllers/FrmFormsController.php:358
|
184 |
-
#, php-format
|
185 |
-
msgid "%1$s form restored from the Trash."
|
186 |
-
msgid_plural "%1$s forms restored from the Trash."
|
187 |
-
msgstr[0] ""
|
188 |
-
msgstr[1] ""
|
189 |
-
|
190 |
-
#: ../classes/controllers/FrmFormsController.php:359 ..
|
191 |
-
#: classes/controllers/FrmFormsController.php:377
|
192 |
-
#, php-format
|
193 |
-
msgid "%1$s form moved to the Trash. %2$sUndo%3$s"
|
194 |
-
msgid_plural "%1$s forms moved to the Trash. %2$sUndo%3$s"
|
195 |
-
msgstr[0] ""
|
196 |
-
msgstr[1] ""
|
197 |
-
|
198 |
-
#: ../classes/controllers/FrmFormsController.php:395 ..
|
199 |
-
#: classes/controllers/FrmFormsController.php:411 ..
|
200 |
-
#: classes/controllers/FrmFormsController.php:425
|
201 |
-
#, php-format
|
202 |
-
msgid "%1$s form permanently deleted."
|
203 |
-
msgid_plural "%1$s forms permanently deleted."
|
204 |
-
msgstr[0] ""
|
205 |
-
msgstr[1] ""
|
206 |
-
|
207 |
-
#: ../classes/controllers/FrmFormsController.php:444
|
208 |
-
msgid "Add forms and content"
|
209 |
-
msgstr ""
|
210 |
-
|
211 |
-
#: ../classes/controllers/FrmFormsController.php:460 ../classes/views/frm-
|
212 |
-
#: forms/insert_form_popup.php:24
|
213 |
-
msgid "Insert a Form"
|
214 |
-
msgstr ""
|
215 |
-
|
216 |
-
#: ../classes/controllers/FrmFormsController.php:487
|
217 |
-
msgid "Display form title"
|
218 |
-
msgstr ""
|
219 |
-
|
220 |
-
#: ../classes/controllers/FrmFormsController.php:488
|
221 |
-
msgid "Display form description"
|
222 |
-
msgstr ""
|
223 |
-
|
224 |
-
#: ../classes/controllers/FrmFormsController.php:489
|
225 |
-
msgid "Minimize form HTML"
|
226 |
-
msgstr ""
|
227 |
-
|
228 |
-
#: ../classes/controllers/FrmFormsController.php:543
|
229 |
-
msgid "Template Name"
|
230 |
-
msgstr ""
|
231 |
-
|
232 |
-
#: ../classes/controllers/FrmFormsController.php:547 ..
|
233 |
-
#: classes/controllers/FrmStylesController.php:357 ..
|
234 |
-
#: classes/views/styles/_sample_form.php:17 ../classes/views/styles/manage.php:15
|
235 |
-
msgid "Form Title"
|
236 |
-
msgstr ""
|
237 |
-
|
238 |
-
#: ../classes/controllers/FrmFormsController.php:550 ../classes/views/frm-
|
239 |
-
#: forms/_publish_box.php:47 ../pro/classes/views/displays/submitbox_actions.php:2
|
240 |
-
msgid "Shortcodes"
|
241 |
-
msgstr ""
|
242 |
-
|
243 |
-
#: ../classes/controllers/FrmFormsController.php:593
|
244 |
-
msgid "You are trying to edit a form that does not exist."
|
245 |
-
msgstr ""
|
246 |
-
|
247 |
-
#: ../classes/controllers/FrmFormsController.php:597
|
248 |
-
#, php-format
|
249 |
-
msgid "You are trying to edit a child form. Please edit from %1$shere%2$s"
|
250 |
-
msgstr ""
|
251 |
-
|
252 |
-
#: ../classes/controllers/FrmFormsController.php:618
|
253 |
-
msgid "Template was Successfully Updated"
|
254 |
-
msgstr ""
|
255 |
-
|
256 |
-
#: ../classes/controllers/FrmFormsController.php:624 ..
|
257 |
-
#: classes/controllers/FrmFormsController.php:645
|
258 |
-
msgid "That template cannot be edited"
|
259 |
-
msgstr ""
|
260 |
-
|
261 |
-
#: ../classes/controllers/FrmFormsController.php:695
|
262 |
-
msgid "Separator"
|
263 |
-
msgstr ""
|
264 |
-
|
265 |
-
#: ../classes/controllers/FrmFormsController.php:696
|
266 |
-
msgid "Use a different separator for checkbox fields"
|
267 |
-
msgstr ""
|
268 |
-
|
269 |
-
#: ../classes/controllers/FrmFormsController.php:699
|
270 |
-
msgid "Field Label"
|
271 |
-
msgstr ""
|
272 |
-
|
273 |
-
#: ../classes/controllers/FrmFormsController.php:701
|
274 |
-
msgid "No Auto P"
|
275 |
-
msgstr ""
|
276 |
-
|
277 |
-
#: ../classes/controllers/FrmFormsController.php:702
|
278 |
-
msgid "Do not automatically add any paragraphs or line breaks"
|
279 |
-
msgstr ""
|
280 |
-
|
281 |
-
#: ../classes/controllers/FrmFormsController.php:717 ../classes/views/frm-
|
282 |
-
#: entries/sidebar-shared.php:23 ../pro/classes/controllers/FrmProFormsController.
|
283 |
-
#: php:593 ../pro/classes/helpers/FrmProEntriesListHelper.php:62 ..
|
284 |
-
#: pro/classes/helpers/FrmProEntriesListHelper.php:73 ..
|
285 |
-
#: pro/classes/helpers/FrmProFieldsHelper.php:2670 ..
|
286 |
-
#: pro/classes/views/displays/order_row.php:3 ..
|
287 |
-
#: pro/classes/views/displays/where_row.php:6 ..
|
288 |
-
#: pro/classes/views/xml/map_csv_fields.php:56 ..
|
289 |
-
#: pro/classes/views/xml/map_csv_fields.php:56
|
290 |
-
msgid "Entry ID"
|
291 |
-
msgstr ""
|
292 |
-
|
293 |
-
#: ../classes/controllers/FrmFormsController.php:720 ..
|
294 |
-
#: pro/classes/helpers/FrmProFieldsHelper.php:2673
|
295 |
-
msgid "User IP"
|
296 |
-
msgstr ""
|
297 |
-
|
298 |
-
#: ../classes/controllers/FrmFormsController.php:721
|
299 |
-
msgid "Entry created"
|
300 |
-
msgstr ""
|
301 |
-
|
302 |
-
#: ../classes/controllers/FrmFormsController.php:722
|
303 |
-
msgid "Entry updated"
|
304 |
-
msgstr ""
|
305 |
-
|
306 |
-
#: ../classes/controllers/FrmFormsController.php:725 ..
|
307 |
-
#: pro/classes/helpers/FrmProFieldsHelper.php:2731
|
308 |
-
msgid "Site Name"
|
309 |
-
msgstr ""
|
310 |
-
|
311 |
-
#: ../classes/controllers/FrmFormsController.php:733
|
312 |
-
msgid "Default Msg"
|
313 |
-
msgstr ""
|
314 |
-
|
315 |
-
#: ../classes/controllers/FrmFormsController.php:734
|
316 |
-
msgid "Default HTML"
|
317 |
-
msgstr ""
|
318 |
-
|
319 |
-
#: ../classes/controllers/FrmFormsController.php:735
|
320 |
-
msgid "Default Plain"
|
321 |
-
msgstr ""
|
322 |
-
|
323 |
-
#: ../classes/controllers/FrmFormsController.php:737
|
324 |
-
msgid "Detail Link"
|
325 |
-
msgstr ""
|
326 |
-
|
327 |
-
#: ../classes/controllers/FrmFormsController.php:738
|
328 |
-
msgid "Edit Entry Link"
|
329 |
-
msgstr ""
|
330 |
-
|
331 |
-
#: ../classes/controllers/FrmFormsController.php:739
|
332 |
-
msgid "Even/Odd"
|
333 |
-
msgstr ""
|
334 |
-
|
335 |
-
#: ../classes/controllers/FrmFormsController.php:740
|
336 |
-
msgid "Entry Count"
|
337 |
-
msgstr ""
|
338 |
-
|
339 |
-
#: ../classes/controllers/FrmFormsController.php:741
|
340 |
-
msgid "Calendar Date"
|
341 |
-
msgstr ""
|
342 |
-
|
343 |
-
#: ../classes/controllers/FrmFormsController.php:820
|
344 |
-
msgid "No forms were specified"
|
345 |
-
msgstr ""
|
346 |
-
|
347 |
-
#: ../classes/controllers/FrmFormsController.php:967
|
348 |
-
msgid "Abnormal HTML characters prevented your form from saving correctly"
|
349 |
-
msgstr ""
|
350 |
-
|
351 |
-
#: ../classes/controllers/FrmFormsController.php:1013 ..
|
352 |
-
#: classes/controllers/FrmFormsController.php:1016
|
353 |
-
msgid "Edit Forms"
|
354 |
-
msgstr ""
|
355 |
-
|
356 |
-
#: ../classes/controllers/FrmFormsController.php:1025 ..
|
357 |
-
#: classes/helpers/FrmFormsHelper.php:60 ../classes/helpers/FrmFormsHelper.php:
|
358 |
-
#: 115 ../classes/helpers/FrmFormsHelper.php:597 ..
|
359 |
-
#: classes/helpers/FrmFormsListHelper.php:149 ..
|
360 |
-
#: classes/helpers/FrmFormsListHelper.php:335 ../classes/views/frm-entries/list.
|
361 |
-
#: php:24 ../classes/views/shared/form-nav.php:20 ../classes/views/styles/manage.
|
362 |
-
#: php:31 ../classes/views/xml/import_form.php:85 ..
|
363 |
-
#: pro/classes/controllers/FrmProDisplaysController.php:101 ..
|
364 |
-
#: pro/classes/controllers/FrmProFormsController.php:473 ..
|
365 |
-
#: pro/classes/views/xml/csv_opts.php:13
|
366 |
-
msgid "(no title)"
|
367 |
-
msgstr ""
|
368 |
-
|
369 |
-
#: ../classes/controllers/FrmFormsController.php:1065 ..
|
370 |
-
#: classes/controllers/FrmFormsController.php:1077
|
371 |
-
msgid "Please select a valid form"
|
372 |
-
msgstr ""
|
373 |
-
|
374 |
-
#: ../classes/controllers/FrmSettingsController.php:38 ..
|
375 |
-
#: classes/models/FrmPointers.php:314 ../classes/views/addons/settings.php:2
|
376 |
-
msgid "Plugin Licenses"
|
377 |
-
msgstr ""
|
378 |
-
|
379 |
-
#: ../classes/controllers/FrmStylesController.php:37
|
380 |
-
msgid "Create a New Style"
|
381 |
-
msgstr ""
|
382 |
-
|
383 |
-
#: ../classes/controllers/FrmStylesController.php:38
|
384 |
-
msgid "Edit Style"
|
385 |
-
msgstr ""
|
386 |
-
|
387 |
-
#: ../classes/controllers/FrmStylesController.php:206 ..
|
388 |
-
#: classes/controllers/FrmStylesController.php:290
|
389 |
-
msgid "Your styling settings have been saved."
|
390 |
-
msgstr ""
|
391 |
-
|
392 |
-
#: ../classes/controllers/FrmStylesController.php:265
|
393 |
-
msgid "Your form styles have been saved."
|
394 |
-
msgstr ""
|
395 |
-
|
396 |
-
#: ../classes/controllers/FrmStylesController.php:358 ../classes/views/frm-
|
397 |
-
#: forms/mb_html_tab.php:35
|
398 |
-
msgid "Form Description"
|
399 |
-
msgstr ""
|
400 |
-
|
401 |
-
#: ../classes/controllers/FrmStylesController.php:359
|
402 |
-
msgid "Field Labels"
|
403 |
-
msgstr ""
|
404 |
-
|
405 |
-
#: ../classes/controllers/FrmStylesController.php:360 ../classes/views/frm-
|
406 |
-
#: forms/mb_html_tab.php:9
|
407 |
-
msgid "Field Description"
|
408 |
-
msgstr ""
|
409 |
-
|
410 |
-
#: ../classes/controllers/FrmStylesController.php:361
|
411 |
-
msgid "Field Colors"
|
412 |
-
msgstr ""
|
413 |
-
|
414 |
-
#: ../classes/controllers/FrmStylesController.php:362
|
415 |
-
msgid "Field Settings"
|
416 |
-
msgstr ""
|
417 |
-
|
418 |
-
#: ../classes/controllers/FrmStylesController.php:363
|
419 |
-
msgid "Check Box & Radio Fields"
|
420 |
-
msgstr ""
|
421 |
-
|
422 |
-
#: ../classes/controllers/FrmStylesController.php:365
|
423 |
-
msgid "Form Messages"
|
424 |
-
msgstr ""
|
425 |
-
|
426 |
-
#: ../classes/controllers/FrmXMLController.php:81
|
427 |
-
msgid "Oops, you didn't select a file."
|
428 |
-
msgstr ""
|
429 |
-
|
430 |
-
#: ../classes/controllers/FrmXMLController.php:110
|
431 |
-
msgid "XML import is not enabled on your server."
|
432 |
-
msgstr ""
|
433 |
-
|
434 |
-
#: ../classes/controllers/FrmXMLController.php:282
|
435 |
-
msgid "Please select a form"
|
436 |
-
msgstr ""
|
437 |
-
|
438 |
-
#: ../classes/controllers/FrmXMLController.php:336
|
439 |
-
msgid "There are no entries for that form."
|
440 |
-
msgstr ""
|
441 |
-
|
442 |
-
#: ../classes/helpers/FrmAppHelper.php:614
|
443 |
-
msgid "View Forms and Templates"
|
444 |
-
msgstr ""
|
445 |
-
|
446 |
-
#: ../classes/helpers/FrmAppHelper.php:615
|
447 |
-
msgid "Add/Edit Forms and Templates"
|
448 |
-
msgstr ""
|
449 |
-
|
450 |
-
#: ../classes/helpers/FrmAppHelper.php:616
|
451 |
-
msgid "Delete Forms and Templates"
|
452 |
-
msgstr ""
|
453 |
-
|
454 |
-
#: ../classes/helpers/FrmAppHelper.php:617
|
455 |
-
msgid "Access this Settings Page"
|
456 |
-
msgstr ""
|
457 |
-
|
458 |
-
#: ../classes/helpers/FrmAppHelper.php:618
|
459 |
-
msgid "View Entries from Admin Area"
|
460 |
-
msgstr ""
|
461 |
-
|
462 |
-
#: ../classes/helpers/FrmAppHelper.php:619
|
463 |
-
msgid "Delete Entries from Admin Area"
|
464 |
-
msgstr ""
|
465 |
-
|
466 |
-
#: ../classes/helpers/FrmAppHelper.php:626
|
467 |
-
msgid "Add Entries from Admin Area"
|
468 |
-
msgstr ""
|
469 |
-
|
470 |
-
#: ../classes/helpers/FrmAppHelper.php:627
|
471 |
-
msgid "Edit Entries from Admin Area"
|
472 |
-
msgstr ""
|
473 |
-
|
474 |
-
#: ../classes/helpers/FrmAppHelper.php:628
|
475 |
-
msgid "View Reports"
|
476 |
-
msgstr ""
|
477 |
-
|
478 |
-
#: ../classes/helpers/FrmAppHelper.php:629
|
479 |
-
msgid "Add/Edit Views"
|
480 |
-
msgstr ""
|
481 |
-
|
482 |
-
#: ../classes/helpers/FrmAppHelper.php:1083 ../classes/helpers/FrmFieldsHelper.
|
483 |
-
#: php:176 ../pro/classes/controllers/FrmProFieldsController.php:1487
|
484 |
-
#, php-format
|
485 |
-
msgid "%s is invalid"
|
486 |
-
msgstr ""
|
487 |
-
|
488 |
-
#: ../classes/helpers/FrmAppHelper.php:1264
|
489 |
-
msgid "at"
|
490 |
-
msgstr ""
|
491 |
-
|
492 |
-
#: ../classes/helpers/FrmAppHelper.php:1313 ../classes/helpers/FrmAppHelper.php:
|
493 |
-
#: 1332
|
494 |
-
msgid "seconds"
|
495 |
-
msgstr ""
|
496 |
-
|
497 |
-
#: ../classes/helpers/FrmAppHelper.php:1326 ..
|
498 |
-
#: pro/classes/controllers/FrmProDisplaysController.php:741
|
499 |
-
msgid "year"
|
500 |
-
msgstr ""
|
501 |
-
|
502 |
-
#: ../classes/helpers/FrmAppHelper.php:1326 ..
|
503 |
-
#: pro/classes/controllers/FrmProDisplaysController.php:741
|
504 |
-
msgid "years"
|
505 |
-
msgstr ""
|
506 |
-
|
507 |
-
#: ../classes/helpers/FrmAppHelper.php:1327 ..
|
508 |
-
#: pro/classes/controllers/FrmProDisplaysController.php:741
|
509 |
-
msgid "month"
|
510 |
-
msgstr ""
|
511 |
-
|
512 |
-
#: ../classes/helpers/FrmAppHelper.php:1327 ..
|
513 |
-
#: pro/classes/controllers/FrmProDisplaysController.php:741
|
514 |
-
msgid "months"
|
515 |
-
msgstr ""
|
516 |
-
|
517 |
-
#: ../classes/helpers/FrmAppHelper.php:1328 ..
|
518 |
-
#: pro/classes/controllers/FrmProDisplaysController.php:741
|
519 |
-
msgid "week"
|
520 |
-
msgstr ""
|
521 |
-
|
522 |
-
#: ../classes/helpers/FrmAppHelper.php:1328 ..
|
523 |
-
#: pro/classes/controllers/FrmProDisplaysController.php:741
|
524 |
-
msgid "weeks"
|
525 |
-
msgstr ""
|
526 |
-
|
527 |
-
#: ../classes/helpers/FrmAppHelper.php:1329 ..
|
528 |
-
#: pro/classes/controllers/FrmProDisplaysController.php:741
|
529 |
-
msgid "day"
|
530 |
-
msgstr ""
|
531 |
-
|
532 |
-
#: ../classes/helpers/FrmAppHelper.php:1330
|
533 |
-
msgid "hour"
|
534 |
-
msgstr ""
|
535 |
-
|
536 |
-
#: ../classes/helpers/FrmAppHelper.php:1330 ../pro/classes/views/frmpro-
|
537 |
-
#: forms/add_form_options.php:41
|
538 |
-
msgid "hours"
|
539 |
-
msgstr ""
|
540 |
-
|
541 |
-
#: ../classes/helpers/FrmAppHelper.php:1331
|
542 |
-
msgid "minute"
|
543 |
-
msgstr ""
|
544 |
-
|
545 |
-
#: ../classes/helpers/FrmAppHelper.php:1331
|
546 |
-
msgid "minutes"
|
547 |
-
msgstr ""
|
548 |
-
|
549 |
-
#: ../classes/helpers/FrmAppHelper.php:1332
|
550 |
-
msgid "second"
|
551 |
-
msgstr ""
|
552 |
-
|
553 |
-
#: ../classes/helpers/FrmAppHelper.php:1540
|
554 |
-
msgid "Give this action a label for easy reference."
|
555 |
-
msgstr ""
|
556 |
-
|
557 |
-
#: ../classes/helpers/FrmAppHelper.php:1541
|
558 |
-
msgid ""
|
559 |
-
"Add one or more recipient addresses separated by a \",\". FORMAT: Name "
|
560 |
-
"<name@email.com> or name@email.com. [admin_email] is the address set in WP "
|
561 |
-
"General Settings."
|
562 |
-
msgstr ""
|
563 |
-
|
564 |
-
#: ../classes/helpers/FrmAppHelper.php:1542
|
565 |
-
msgid ""
|
566 |
-
"Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or "
|
567 |
-
"name@email.com."
|
568 |
-
msgstr ""
|
569 |
-
|
570 |
-
#: ../classes/helpers/FrmAppHelper.php:1543
|
571 |
-
msgid ""
|
572 |
-
"Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or "
|
573 |
-
"name@email.com."
|
574 |
-
msgstr ""
|
575 |
-
|
576 |
-
#: ../classes/helpers/FrmAppHelper.php:1544
|
577 |
-
msgid ""
|
578 |
-
"If you would like a different reply to address than the \"from\" address, add "
|
579 |
-
"a single address here. FORMAT: Name <name@email.com> or name@email.com."
|
580 |
-
msgstr ""
|
581 |
-
|
582 |
-
#: ../classes/helpers/FrmAppHelper.php:1545
|
583 |
-
msgid ""
|
584 |
-
"Enter the name and/or email address of the sender. FORMAT: John Bates "
|
585 |
-
"<john@example.com> or john@example.com."
|
586 |
-
msgstr ""
|
587 |
-
|
588 |
-
#: ../classes/helpers/FrmAppHelper.php:1546
|
589 |
-
#, php-format
|
590 |
-
msgid ""
|
591 |
-
"If you leave the subject blank, the default will be used: %1$s Form "
|
592 |
-
"submitted on %2$s"
|
593 |
-
msgstr ""
|
594 |
-
|
595 |
-
#: ../classes/helpers/FrmAppHelper.php:1723 ../classes/helpers/FrmAppHelper.php:
|
596 |
-
#: 1790
|
597 |
-
msgid "Please wait while your site updates."
|
598 |
-
msgstr ""
|
599 |
-
|
600 |
-
#: ../classes/helpers/FrmAppHelper.php:1724
|
601 |
-
msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
|
602 |
-
msgstr ""
|
603 |
-
|
604 |
-
#: ../classes/helpers/FrmAppHelper.php:1726 ../classes/helpers/FrmAppHelper.php:
|
605 |
-
#: 1752
|
606 |
-
msgid "Loading…"
|
607 |
-
msgstr ""
|
608 |
-
|
609 |
-
#: ../classes/helpers/FrmAppHelper.php:1757
|
610 |
-
msgid "No results match"
|
611 |
-
msgstr ""
|
612 |
-
|
613 |
-
#: ../classes/helpers/FrmAppHelper.php:1758
|
614 |
-
msgid "That file looks like Spam."
|
615 |
-
msgstr ""
|
616 |
-
|
617 |
-
#: ../classes/helpers/FrmAppHelper.php:1759
|
618 |
-
msgid "Please complete the preceding required fields before uploading a file."
|
619 |
-
msgstr ""
|
620 |
-
|
621 |
-
#: ../classes/helpers/FrmAppHelper.php:1765
|
622 |
-
msgid ""
|
623 |
-
"Are you sure you want to do this? Clicking OK will delete all forms, form "
|
624 |
-
"data, and all other Formidable data. There is no Undo."
|
625 |
-
msgstr ""
|
626 |
-
|
627 |
-
#: ../classes/helpers/FrmAppHelper.php:1766 ../classes/views/frm-forms/add_field.
|
628 |
-
#: php:81 ../classes/views/frm-forms/add_field.php:94 ../classes/views/frm-
|
629 |
-
#: forms/form.php:13 ../pro/classes/views/combo-fields/inplace-sub-label.php:2
|
630 |
-
msgid "(Click to add description)"
|
631 |
-
msgstr ""
|
632 |
-
|
633 |
-
#: ../classes/helpers/FrmAppHelper.php:1767 ../classes/views/frm-fields/single-
|
634 |
-
#: option.php:7 ../classes/views/frm-fields/single-option.php:11 ..
|
635 |
-
#: pro/classes/views/frmpro-fields/other-option.php:10
|
636 |
-
msgid "(Blank)"
|
637 |
-
msgstr ""
|
638 |
-
|
639 |
-
#: ../classes/helpers/FrmAppHelper.php:1768 ../classes/views/frm-forms/add_field.
|
640 |
-
#: php:63 ../pro/classes/views/frmpro-fields/field-selection.php:12 ..
|
641 |
-
#: pro/classes/views/lookup-fields/back-end/watch-row.php:10
|
642 |
-
msgid "(no label)"
|
643 |
-
msgstr ""
|
644 |
-
|
645 |
-
#: ../classes/helpers/FrmAppHelper.php:1774 ../classes/helpers/FrmFieldsHelper.
|
646 |
-
#: php:1187
|
647 |
-
msgid "Clear default value when typing"
|
648 |
-
msgstr ""
|
649 |
-
|
650 |
-
#: ../classes/helpers/FrmAppHelper.php:1775 ../classes/helpers/FrmFieldsHelper.
|
651 |
-
#: php:1187
|
652 |
-
msgid "Do not clear default value when typing"
|
653 |
-
msgstr ""
|
654 |
-
|
655 |
-
#: ../classes/helpers/FrmAppHelper.php:1776 ../classes/helpers/FrmFieldsHelper.
|
656 |
-
#: php:1196
|
657 |
-
msgid "Default value will pass form validation"
|
658 |
-
msgstr ""
|
659 |
-
|
660 |
-
#: ../classes/helpers/FrmAppHelper.php:1777 ../classes/helpers/FrmFieldsHelper.
|
661 |
-
#: php:1196
|
662 |
-
msgid "Default value will NOT pass form validation"
|
663 |
-
msgstr ""
|
664 |
-
|
665 |
-
#: ../classes/helpers/FrmAppHelper.php:1778
|
666 |
-
msgid "Are you sure?"
|
667 |
-
msgstr ""
|
668 |
-
|
669 |
-
#: ../classes/helpers/FrmAppHelper.php:1779
|
670 |
-
msgid "Are you sure you want to delete this field and all data associated with it?"
|
671 |
-
msgstr ""
|
672 |
-
|
673 |
-
#: ../classes/helpers/FrmAppHelper.php:1780
|
674 |
-
msgid "WARNING: This will delete all fields inside of the section as well."
|
675 |
-
msgstr ""
|
676 |
-
|
677 |
-
#: ../classes/helpers/FrmAppHelper.php:1781
|
678 |
-
msgid ""
|
679 |
-
"Warning: If you have entries with multiple rows, all but the first row will "
|
680 |
-
"be lost."
|
681 |
-
msgstr ""
|
682 |
-
|
683 |
-
#: ../classes/helpers/FrmAppHelper.php:1783 ../classes/helpers/FrmFieldsHelper.
|
684 |
-
#: php:173 ../pro/classes/helpers/FrmProFieldsHelper.php:696
|
685 |
-
msgid "The entered values do not match"
|
686 |
-
msgstr ""
|
687 |
-
|
688 |
-
#: ../classes/helpers/FrmAppHelper.php:1784
|
689 |
-
msgid "Enter Email"
|
690 |
-
msgstr ""
|
691 |
-
|
692 |
-
#: ../classes/helpers/FrmAppHelper.php:1785
|
693 |
-
msgid "Confirm Email"
|
694 |
-
msgstr ""
|
695 |
-
|
696 |
-
#: ../classes/helpers/FrmAppHelper.php:1786
|
697 |
-
msgid ""
|
698 |
-
"In certain browsers (e.g. Firefox) text will not display correctly if the "
|
699 |
-
"field height is too small relative to the field padding and text size. "
|
700 |
-
"Please increase your field height or decrease your field padding."
|
701 |
-
msgstr ""
|
702 |
-
|
703 |
-
#: ../classes/helpers/FrmAppHelper.php:1787
|
704 |
-
msgid "Enter Password"
|
705 |
-
msgstr ""
|
706 |
-
|
707 |
-
#: ../classes/helpers/FrmAppHelper.php:1788
|
708 |
-
msgid "Confirm Password"
|
709 |
-
msgstr ""
|
710 |
-
|
711 |
-
#: ../classes/helpers/FrmAppHelper.php:1789
|
712 |
-
msgid "Import Complete"
|
713 |
-
msgstr ""
|
714 |
-
|
715 |
-
#: ../classes/helpers/FrmAppHelper.php:1791
|
716 |
-
msgid "Warning: There is no way to retrieve unsaved entries."
|
717 |
-
msgstr ""
|
718 |
-
|
719 |
-
#: ../classes/helpers/FrmAppHelper.php:1792
|
720 |
-
msgid "Private"
|
721 |
-
msgstr ""
|
722 |
-
|
723 |
-
#: ../classes/helpers/FrmAppHelper.php:1794
|
724 |
-
msgid "No new licenses were found"
|
725 |
-
msgstr ""
|
726 |
-
|
727 |
-
#: ../classes/helpers/FrmAppHelper.php:1795
|
728 |
-
msgid "Please enter a Repeat Limit that is greater than 1."
|
729 |
-
msgstr ""
|
730 |
-
|
731 |
-
#: ../classes/helpers/FrmAppHelper.php:1816
|
732 |
-
msgid ""
|
733 |
-
"You are running an outdated version of Formidable. This plugin may not work "
|
734 |
-
"correctly if you do not update Formidable."
|
735 |
-
msgstr ""
|
736 |
-
|
737 |
-
#: ../classes/helpers/FrmAppHelper.php:1822
|
738 |
-
msgid "English/Western"
|
739 |
-
msgstr ""
|
740 |
-
|
741 |
-
#: ../classes/helpers/FrmAppHelper.php:1827
|
742 |
-
msgid "Chinese Hong Kong"
|
743 |
-
msgstr ""
|
744 |
-
|
745 |
-
#: ../classes/helpers/FrmAppHelper.php:1828
|
746 |
-
msgid "Chinese Simplified"
|
747 |
-
msgstr ""
|
748 |
-
|
749 |
-
#: ../classes/helpers/FrmAppHelper.php:1828
|
750 |
-
msgid "Chinese Traditional"
|
751 |
-
msgstr ""
|
752 |
-
|
753 |
-
#: ../classes/helpers/FrmAppHelper.php:1831
|
754 |
-
msgid "English/UK"
|
755 |
-
msgstr ""
|
756 |
-
|
757 |
-
#: ../classes/helpers/FrmAppHelper.php:1832
|
758 |
-
msgid "Faroese"
|
759 |
-
msgstr ""
|
760 |
-
|
761 |
-
#: ../classes/helpers/FrmAppHelper.php:1833
|
762 |
-
msgid "Farsi/Persian"
|
763 |
-
msgstr ""
|
764 |
-
|
765 |
-
#: ../classes/helpers/FrmAppHelper.php:1833
|
766 |
-
msgid "Filipino"
|
767 |
-
msgstr ""
|
768 |
-
|
769 |
-
#: ../classes/helpers/FrmAppHelper.php:1834
|
770 |
-
msgid "French"
|
771 |
-
msgstr ""
|
772 |
-
|
773 |
-
#: ../classes/helpers/FrmAppHelper.php:1835
|
774 |
-
msgid "French/Canadian"
|
775 |
-
msgstr ""
|
776 |
-
|
777 |
-
#: ../classes/helpers/FrmAppHelper.php:1835
|
778 |
-
msgid "French/Swiss"
|
779 |
-
msgstr ""
|
780 |
-
|
781 |
-
#: ../classes/helpers/FrmAppHelper.php:1836
|
782 |
-
msgid "German/Austria"
|
783 |
-
msgstr ""
|
784 |
-
|
785 |
-
#: ../classes/helpers/FrmAppHelper.php:1837
|
786 |
-
msgid "German/Switzerland"
|
787 |
-
msgstr ""
|
788 |
-
|
789 |
-
#: ../classes/helpers/FrmAppHelper.php:1837
|
790 |
-
msgid "Greek"
|
791 |
-
msgstr ""
|
792 |
-
|
793 |
-
#: ../classes/helpers/FrmAppHelper.php:1838 ../classes/helpers/FrmAppHelper.php:
|
794 |
-
#: 1838
|
795 |
-
msgid "Hebrew"
|
796 |
-
msgstr ""
|
797 |
-
|
798 |
-
#: ../classes/helpers/FrmAppHelper.php:1839
|
799 |
-
msgid "Hindi"
|
800 |
-
msgstr ""
|
801 |
-
|
802 |
-
#: ../classes/helpers/FrmAppHelper.php:1839
|
803 |
-
msgid "Hungarian"
|
804 |
-
msgstr ""
|
805 |
-
|
806 |
-
#: ../classes/helpers/FrmAppHelper.php:1840
|
807 |
-
msgid "Icelandic"
|
808 |
-
msgstr ""
|
809 |
-
|
810 |
-
#: ../classes/helpers/FrmAppHelper.php:1840
|
811 |
-
msgid "Indonesian"
|
812 |
-
msgstr ""
|
813 |
-
|
814 |
-
#: ../classes/helpers/FrmAppHelper.php:1841
|
815 |
-
msgid "Italian"
|
816 |
-
msgstr ""
|
817 |
-
|
818 |
-
#: ../classes/helpers/FrmAppHelper.php:1841
|
819 |
-
msgid "Japanese"
|
820 |
-
msgstr ""
|
821 |
-
|
822 |
-
#: ../classes/helpers/FrmAppHelper.php:1842
|
823 |
-
msgid "Korean"
|
824 |
-
msgstr ""
|
825 |
-
|
826 |
-
#: ../classes/helpers/FrmAppHelper.php:1842
|
827 |
-
msgid "Latvian"
|
828 |
-
msgstr ""
|
829 |
-
|
830 |
-
#: ../classes/helpers/FrmAppHelper.php:1843
|
831 |
-
msgid "Lithuanian"
|
832 |
-
msgstr ""
|
833 |
-
|
834 |
-
#: ../classes/helpers/FrmAppHelper.php:1843
|
835 |
-
msgid "Malaysian"
|
836 |
-
msgstr ""
|
837 |
-
|
838 |
-
#: ../classes/helpers/FrmAppHelper.php:1844
|
839 |
-
msgid "Norwegian"
|
840 |
-
msgstr ""
|
841 |
-
|
842 |
-
#: ../classes/helpers/FrmAppHelper.php:1844
|
843 |
-
msgid "Polish"
|
844 |
-
msgstr ""
|
845 |
-
|
846 |
-
#: ../classes/helpers/FrmAppHelper.php:1845
|
847 |
-
msgid "Portuguese"
|
848 |
-
msgstr ""
|
849 |
-
|
850 |
-
#: ../classes/helpers/FrmAppHelper.php:1845
|
851 |
-
msgid "Portuguese/Brazilian"
|
852 |
-
msgstr ""
|
853 |
-
|
854 |
-
#: ../classes/helpers/FrmAppHelper.php:1846
|
855 |
-
msgid "Portuguese/Portugal"
|
856 |
-
msgstr ""
|
857 |
-
|
858 |
-
#: ../classes/helpers/FrmAppHelper.php:1846
|
859 |
-
msgid "Romanian"
|
860 |
-
msgstr ""
|
861 |
-
|
862 |
-
#: ../classes/helpers/FrmAppHelper.php:1847
|
863 |
-
msgid "Russian"
|
864 |
-
msgstr ""
|
865 |
-
|
866 |
-
#: ../classes/helpers/FrmAppHelper.php:1847 ../classes/helpers/FrmAppHelper.php:
|
867 |
-
#: 1848
|
868 |
-
msgid "Serbian"
|
869 |
-
msgstr ""
|
870 |
-
|
871 |
-
#: ../classes/helpers/FrmAppHelper.php:1848
|
872 |
-
msgid "Slovak"
|
873 |
-
msgstr ""
|
874 |
-
|
875 |
-
#: ../classes/helpers/FrmAppHelper.php:1849
|
876 |
-
msgid "Slovenian"
|
877 |
-
msgstr ""
|
878 |
-
|
879 |
-
#: ../classes/helpers/FrmAppHelper.php:1849
|
880 |
-
msgid "Spanish"
|
881 |
-
msgstr ""
|
882 |
-
|
883 |
-
#: ../classes/helpers/FrmAppHelper.php:1850
|
884 |
-
msgid "Spanish/Latin America"
|
885 |
-
msgstr ""
|
886 |
-
|
887 |
-
#: ../classes/helpers/FrmAppHelper.php:1850
|
888 |
-
msgid "Swedish"
|
889 |
-
msgstr ""
|
890 |
-
|
891 |
-
#: ../classes/helpers/FrmAppHelper.php:1851
|
892 |
-
msgid "Tamil"
|
893 |
-
msgstr ""
|
894 |
-
|
895 |
-
#: ../classes/helpers/FrmAppHelper.php:1851
|
896 |
-
msgid "Thai"
|
897 |
-
msgstr ""
|
898 |
-
|
899 |
-
#: ../classes/helpers/FrmAppHelper.php:1853
|
900 |
-
msgid "Ukranian"
|
901 |
-
msgstr ""
|
902 |
-
|
903 |
-
#: ../classes/helpers/FrmAppHelper.php:1853
|
904 |
-
msgid "Vietnamese"
|
905 |
-
msgstr ""
|
906 |
-
|
907 |
-
#: ../classes/helpers/FrmCSVExportHelper.php:94
|
908 |
-
msgid "(label)"
|
909 |
-
msgstr ""
|
910 |
-
|
911 |
-
#: ../classes/helpers/FrmCSVExportHelper.php:105
|
912 |
-
msgid "Comment User"
|
913 |
-
msgstr ""
|
914 |
-
|
915 |
-
#: ../classes/helpers/FrmCSVExportHelper.php:106
|
916 |
-
msgid "Comment Date"
|
917 |
-
msgstr ""
|
918 |
-
|
919 |
-
#: ../classes/helpers/FrmCSVExportHelper.php:111 ..
|
920 |
-
#: pro/classes/views/xml/map_csv_fields.php:50
|
921 |
-
msgid "Timestamp"
|
922 |
-
msgstr ""
|
923 |
-
|
924 |
-
#: ../classes/helpers/FrmCSVExportHelper.php:114
|
925 |
-
msgid "Updated By"
|
926 |
-
msgstr ""
|
927 |
-
|
928 |
-
#: ../classes/helpers/FrmCSVExportHelper.php:116 ..
|
929 |
-
#: pro/classes/views/displays/where_row.php:15
|
930 |
-
msgid "IP"
|
931 |
-
msgstr ""
|
932 |
-
|
933 |
-
#: ../classes/helpers/FrmEntriesListHelper.php:59 ..
|
934 |
-
#: pro/classes/controllers/FrmProEntriesController.php:1719 ..
|
935 |
-
#: pro/classes/helpers/FrmProDisplaysHelper.php:59
|
936 |
-
msgid "No Entries Found"
|
937 |
-
msgstr ""
|
938 |
-
|
939 |
-
#: ../classes/helpers/FrmEntriesListHelper.php:82 ..
|
940 |
-
#: pro/classes/controllers/FrmProDisplaysController.php:63
|
941 |
-
msgid "View all forms"
|
942 |
-
msgstr ""
|
943 |
-
|
944 |
-
#: ../classes/helpers/FrmEntriesListHelper.php:83
|
945 |
-
msgid "Filter"
|
946 |
-
msgstr ""
|
947 |
-
|
948 |
-
#: ../classes/helpers/FrmEntriesListHelper.php:226
|
949 |
-
msgid "Are you sure you want to delete that?"
|
950 |
-
msgstr ""
|
951 |
-
|
952 |
-
#: ../classes/helpers/FrmFieldsHelper.php:42 ../classes/helpers/FrmFieldsHelper.
|
953 |
-
#: php:47 ../classes/views/styles/_sample_form.php:31 ..
|
954 |
-
#: classes/views/styles/_sample_form.php:60 ../classes/views/styles/_sample_form.
|
955 |
-
#: php:68 ../pro/classes/views/styles/_sample_form.php:16 ..
|
956 |
-
#: pro/classes/views/styles/_sample_form.php:24
|
957 |
-
msgid "Option 1"
|
958 |
-
msgstr ""
|
959 |
-
|
960 |
-
#: ../classes/helpers/FrmFieldsHelper.php:43 ../classes/views/styles/_sample_form.
|
961 |
-
#: php:61 ../classes/views/styles/_sample_form.php:69 ..
|
962 |
-
#: pro/classes/views/styles/_sample_form.php:17 ..
|
963 |
-
#: pro/classes/views/styles/_sample_form.php:25
|
964 |
-
msgid "Option 2"
|
965 |
-
msgstr ""
|
966 |
-
|
967 |
-
#: ../classes/helpers/FrmFieldsHelper.php:147 ../classes/helpers/FrmFieldsHelper.
|
968 |
-
#: php:176 ../pro/classes/models/FrmProFileField.php:372
|
969 |
-
msgid "This field is invalid"
|
970 |
-
msgstr ""
|
971 |
-
|
972 |
-
#: ../classes/helpers/FrmFieldsHelper.php:175
|
973 |
-
#, php-format
|
974 |
-
msgid "%s must be unique"
|
975 |
-
msgstr ""
|
976 |
-
|
977 |
-
#: ../classes/helpers/FrmFieldsHelper.php:578
|
978 |
-
#, php-format
|
979 |
-
msgid "Please add options from the WordPress \"%1$s\" page"
|
980 |
-
msgstr ""
|
981 |
-
|
982 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1275
|
983 |
-
msgid "Congo"
|
984 |
-
msgstr ""
|
985 |
-
|
986 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1276
|
987 |
-
msgid "Côte d'Ivoire"
|
988 |
-
msgstr ""
|
989 |
-
|
990 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1279
|
991 |
-
msgid "East Timor"
|
992 |
-
msgstr ""
|
993 |
-
|
994 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1313
|
995 |
-
msgid "Russia"
|
996 |
-
msgstr ""
|
997 |
-
|
998 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1316
|
999 |
-
msgid "Sao Tome and Principe"
|
1000 |
-
msgstr ""
|
1001 |
-
|
1002 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1317
|
1003 |
-
msgid "Serbia and Montenegro"
|
1004 |
-
msgstr ""
|
1005 |
-
|
1006 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1330
|
1007 |
-
msgid "Vatican City"
|
1008 |
-
msgstr ""
|
1009 |
-
|
1010 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1331
|
1011 |
-
msgid "Virgin Islands, British"
|
1012 |
-
msgstr ""
|
1013 |
-
|
1014 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1332
|
1015 |
-
msgid "Virgin Islands, U.S."
|
1016 |
-
msgstr ""
|
1017 |
-
|
1018 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1338
|
1019 |
-
msgid "Countries"
|
1020 |
-
msgstr ""
|
1021 |
-
|
1022 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1343
|
1023 |
-
msgid "U.S. State Abbreviations"
|
1024 |
-
msgstr ""
|
1025 |
-
|
1026 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1347
|
1027 |
-
msgid "U.S. States"
|
1028 |
-
msgstr ""
|
1029 |
-
|
1030 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1350
|
1031 |
-
msgid "Age"
|
1032 |
-
msgstr ""
|
1033 |
-
|
1034 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1351
|
1035 |
-
msgid "Under 18"
|
1036 |
-
msgstr ""
|
1037 |
-
|
1038 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1351
|
1039 |
-
msgid "18-24"
|
1040 |
-
msgstr ""
|
1041 |
-
|
1042 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1351
|
1043 |
-
msgid "25-34"
|
1044 |
-
msgstr ""
|
1045 |
-
|
1046 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1352
|
1047 |
-
msgid "35-44"
|
1048 |
-
msgstr ""
|
1049 |
-
|
1050 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1352
|
1051 |
-
msgid "45-54"
|
1052 |
-
msgstr ""
|
1053 |
-
|
1054 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1352
|
1055 |
-
msgid "55-64"
|
1056 |
-
msgstr ""
|
1057 |
-
|
1058 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1353
|
1059 |
-
msgid "65 or Above"
|
1060 |
-
msgstr ""
|
1061 |
-
|
1062 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1353
|
1063 |
-
msgid "Prefer Not to Answer"
|
1064 |
-
msgstr ""
|
1065 |
-
|
1066 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1356
|
1067 |
-
msgid "Satisfaction"
|
1068 |
-
msgstr ""
|
1069 |
-
|
1070 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1357
|
1071 |
-
msgid "Very Satisfied"
|
1072 |
-
msgstr ""
|
1073 |
-
|
1074 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1357
|
1075 |
-
msgid "Satisfied"
|
1076 |
-
msgstr ""
|
1077 |
-
|
1078 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1357 ../classes/helpers/FrmFieldsHelper.
|
1079 |
-
#: php:1362 ../classes/helpers/FrmFieldsHelper.php:1367
|
1080 |
-
msgid "Neutral"
|
1081 |
-
msgstr ""
|
1082 |
-
|
1083 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1358
|
1084 |
-
msgid "Unsatisfied"
|
1085 |
-
msgstr ""
|
1086 |
-
|
1087 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1358
|
1088 |
-
msgid "Very Unsatisfied"
|
1089 |
-
msgstr ""
|
1090 |
-
|
1091 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1361
|
1092 |
-
msgid "Importance"
|
1093 |
-
msgstr ""
|
1094 |
-
|
1095 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1362
|
1096 |
-
msgid "Very Important"
|
1097 |
-
msgstr ""
|
1098 |
-
|
1099 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1362
|
1100 |
-
msgid "Important"
|
1101 |
-
msgstr ""
|
1102 |
-
|
1103 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1363
|
1104 |
-
msgid "Somewhat Important"
|
1105 |
-
msgstr ""
|
1106 |
-
|
1107 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1363
|
1108 |
-
msgid "Not at all Important"
|
1109 |
-
msgstr ""
|
1110 |
-
|
1111 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1366
|
1112 |
-
msgid "Agreement"
|
1113 |
-
msgstr ""
|
1114 |
-
|
1115 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1367
|
1116 |
-
msgid "Strongly Agree"
|
1117 |
-
msgstr ""
|
1118 |
-
|
1119 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1367
|
1120 |
-
msgid "Agree"
|
1121 |
-
msgstr ""
|
1122 |
-
|
1123 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1368
|
1124 |
-
msgid "Disagree"
|
1125 |
-
msgstr ""
|
1126 |
-
|
1127 |
-
#: ../classes/helpers/FrmFieldsHelper.php:1368
|
1128 |
-
msgid "Strongly Disagree"
|
1129 |
-
msgstr ""
|
1130 |
-
|
1131 |
-
#: ../classes/helpers/FrmFormsHelper.php:60
|
1132 |
-
msgid " (child)"
|
1133 |
-
msgstr ""
|
1134 |
-
|
1135 |
-
#: ../classes/helpers/FrmFormsHelper.php:104
|
1136 |
-
msgid "Switch Form"
|
1137 |
-
msgstr ""
|
1138 |
-
|
1139 |
-
#: ../classes/helpers/FrmFormsHelper.php:609
|
1140 |
-
msgid "Restore from Trash"
|
1141 |
-
msgstr ""
|
1142 |
-
|
1143 |
-
#: ../classes/helpers/FrmFormsHelper.php:630
|
1144 |
-
msgid "Are you sure you want to delete this form and all its entries?"
|
1145 |
-
msgstr ""
|
1146 |
-
|
1147 |
-
#: ../classes/helpers/FrmFormsListHelper.php:74
|
1148 |
-
msgid "No Templates Found."
|
1149 |
-
msgstr ""
|
1150 |
-
|
1151 |
-
#: ../classes/helpers/FrmFormsListHelper.php:75
|
1152 |
-
msgid "To add a new template:"
|
1153 |
-
msgstr ""
|
1154 |
-
|
1155 |
-
#: ../classes/helpers/FrmFormsListHelper.php:76
|
1156 |
-
#, php-format
|
1157 |
-
msgid "Create a new %1$sform%2$s."
|
1158 |
-
msgstr ""
|
1159 |
-
|
1160 |
-
#: ../classes/helpers/FrmFormsListHelper.php:77
|
1161 |
-
#, php-format
|
1162 |
-
msgid "After your form is created, go to Formidable -> %1$sForms%2$s."
|
1163 |
-
msgstr ""
|
1164 |
-
|
1165 |
-
#: ../classes/helpers/FrmFormsListHelper.php:78
|
1166 |
-
msgid ""
|
1167 |
-
"Place your mouse over the name of the form you just created, and click the "
|
1168 |
-
"\"Create Template\" link."
|
1169 |
-
msgstr ""
|
1170 |
-
|
1171 |
-
#: ../classes/helpers/FrmFormsListHelper.php:81
|
1172 |
-
msgid "No Forms Found."
|
1173 |
-
msgstr ""
|
1174 |
-
|
1175 |
-
#: ../classes/helpers/FrmFormsListHelper.php:90
|
1176 |
-
msgid "Create Template"
|
1177 |
-
msgstr ""
|
1178 |
-
|
1179 |
-
#: ../classes/helpers/FrmFormsListHelper.php:140
|
1180 |
-
msgid "Create New Template"
|
1181 |
-
msgstr ""
|
1182 |
-
|
1183 |
-
#: ../classes/helpers/FrmFormsListHelper.php:144
|
1184 |
-
msgid ""
|
1185 |
-
"You have not created any forms yet. <br/>You must create a form before you "
|
1186 |
-
"can make a template."
|
1187 |
-
msgstr ""
|
1188 |
-
|
1189 |
-
#: ../classes/helpers/FrmFormsListHelper.php:164
|
1190 |
-
msgid "My Forms"
|
1191 |
-
msgstr ""
|
1192 |
-
|
1193 |
-
#: ../classes/helpers/FrmFormsListHelper.php:165 ../classes/views/frm-forms/edit.
|
1194 |
-
#: php:2 ../classes/views/frm-forms/list.php:4
|
1195 |
-
msgid "Templates"
|
1196 |
-
msgstr ""
|
1197 |
-
|
1198 |
-
#: ../classes/helpers/FrmFormsListHelper.php:166
|
1199 |
-
msgid "Drafts"
|
1200 |
-
msgstr ""
|
1201 |
-
|
1202 |
-
#: ../classes/helpers/FrmFormsListHelper.php:183
|
1203 |
-
#, php-format
|
1204 |
-
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1205 |
-
msgstr ""
|
1206 |
-
|
1207 |
-
#: ../classes/helpers/FrmFormsListHelper.php:299
|
1208 |
-
msgid "Are you sure you want to permanently delete that?"
|
1209 |
-
msgstr ""
|
1210 |
-
|
1211 |
-
#: ../classes/helpers/FrmFormsListHelper.php:310
|
1212 |
-
msgid "Create Form from Template"
|
1213 |
-
msgstr ""
|
1214 |
-
|
1215 |
-
#: ../classes/helpers/FrmListHelper.php:533 ../classes/helpers/FrmListHelper.php:
|
1216 |
-
#: 1066
|
1217 |
-
#, php-format
|
1218 |
-
msgid "%s item"
|
1219 |
-
msgid_plural "%s items"
|
1220 |
-
msgstr[0] ""
|
1221 |
-
msgstr[1] ""
|
1222 |
-
|
1223 |
-
#: ../classes/helpers/FrmStylesHelper.php:92
|
1224 |
-
msgid "Edit Styles"
|
1225 |
-
msgstr ""
|
1226 |
-
|
1227 |
-
#: ../classes/helpers/FrmStylesHelper.php:93
|
1228 |
-
msgid "Manage Form Styles"
|
1229 |
-
msgstr ""
|
1230 |
-
|
1231 |
-
#: ../classes/helpers/FrmStylesHelper.php:104 ..
|
1232 |
-
#: pro/classes/views/styles/_section-fields.php:76
|
1233 |
-
msgid "top"
|
1234 |
-
msgstr ""
|
1235 |
-
|
1236 |
-
#: ../classes/helpers/FrmStylesHelper.php:108
|
1237 |
-
msgid "inside"
|
1238 |
-
msgstr ""
|
1239 |
-
|
1240 |
-
#: ../classes/helpers/FrmStylesHelper.php:117
|
1241 |
-
msgid "Inline (left without a set width)"
|
1242 |
-
msgstr ""
|
1243 |
-
|
1244 |
-
#: ../classes/helpers/FrmStylesHelper.php:119
|
1245 |
-
msgid "Hidden (but leave the space)"
|
1246 |
-
msgstr ""
|
1247 |
-
|
1248 |
-
#: ../classes/helpers/FrmStylesHelper.php:120
|
1249 |
-
msgid "Placeholder inside the field"
|
1250 |
-
msgstr ""
|
1251 |
-
|
1252 |
-
#: ../classes/helpers/FrmTipsHelper.php:39
|
1253 |
-
msgid "Long forms can still be beautiful with sections."
|
1254 |
-
msgstr ""
|
1255 |
-
|
1256 |
-
#: ../classes/helpers/FrmTipsHelper.php:40 ../classes/helpers/FrmTipsHelper.php:
|
1257 |
-
#: 45 ../classes/helpers/FrmTipsHelper.php:60 ../classes/helpers/FrmTipsHelper.
|
1258 |
-
#: php:104 ../classes/helpers/FrmTipsHelper.php:109 ..
|
1259 |
-
#: classes/helpers/FrmTipsHelper.php:177 ../classes/helpers/FrmTipsHelper.php:189
|
1260 |
-
msgid "Upgrade to Pro."
|
1261 |
-
msgstr ""
|
1262 |
-
|
1263 |
-
#: ../classes/helpers/FrmTipsHelper.php:44
|
1264 |
-
msgid "Use conditional logic to shorten your forms and increase conversions."
|
1265 |
-
msgstr ""
|
1266 |
-
|
1267 |
-
#: ../classes/helpers/FrmTipsHelper.php:49
|
1268 |
-
msgid "Stop intimidating users with long forms."
|
1269 |
-
msgstr ""
|
1270 |
-
|
1271 |
-
#: ../classes/helpers/FrmTipsHelper.php:50
|
1272 |
-
msgid "Use page breaks."
|
1273 |
-
msgstr ""
|
1274 |
-
|
1275 |
-
#: ../classes/helpers/FrmTipsHelper.php:54
|
1276 |
-
msgid "Cut down on back-and-forth with clients."
|
1277 |
-
msgstr ""
|
1278 |
-
|
1279 |
-
#: ../classes/helpers/FrmTipsHelper.php:55
|
1280 |
-
msgid "Allow file uploads in your form."
|
1281 |
-
msgstr ""
|
1282 |
-
|
1283 |
-
#: ../classes/helpers/FrmTipsHelper.php:59
|
1284 |
-
msgid "Need to calculate a total?"
|
1285 |
-
msgstr ""
|
1286 |
-
|
1287 |
-
#: ../classes/helpers/FrmTipsHelper.php:64
|
1288 |
-
msgid "Save time."
|
1289 |
-
msgstr ""
|
1290 |
-
|
1291 |
-
#: ../classes/helpers/FrmTipsHelper.php:65
|
1292 |
-
msgid "Prefill fields with user info."
|
1293 |
-
msgstr ""
|
1294 |
-
|
1295 |
-
#: ../classes/helpers/FrmTipsHelper.php:77 ../classes/helpers/FrmTipsHelper.php:82
|
1296 |
-
msgid "A site with dynamic, user-generated content is within reach."
|
1297 |
-
msgstr ""
|
1298 |
-
|
1299 |
-
#: ../classes/helpers/FrmTipsHelper.php:78 ../classes/helpers/FrmTipsHelper.php:83
|
1300 |
-
msgid "Add front-end editing."
|
1301 |
-
msgstr ""
|
1302 |
-
|
1303 |
-
#: ../classes/helpers/FrmTipsHelper.php:87
|
1304 |
-
msgid "Have a long form that takes time to complete?"
|
1305 |
-
msgstr ""
|
1306 |
-
|
1307 |
-
#: ../classes/helpers/FrmTipsHelper.php:88
|
1308 |
-
msgid "Let logged-in users save a draft and return later."
|
1309 |
-
msgstr ""
|
1310 |
-
|
1311 |
-
#: ../classes/helpers/FrmTipsHelper.php:98
|
1312 |
-
msgid "Save time by sending the email to the right person automatically."
|
1313 |
-
msgstr ""
|
1314 |
-
|
1315 |
-
#: ../classes/helpers/FrmTipsHelper.php:99
|
1316 |
-
msgid "Add email routing."
|
1317 |
-
msgstr ""
|
1318 |
-
|
1319 |
-
#: ../classes/helpers/FrmTipsHelper.php:103
|
1320 |
-
msgid "Create blog posts or pages from the front-end."
|
1321 |
-
msgstr ""
|
1322 |
-
|
1323 |
-
#: ../classes/helpers/FrmTipsHelper.php:108
|
1324 |
-
msgid "Make front-end posting easy."
|
1325 |
-
msgstr ""
|
1326 |
-
|
1327 |
-
#: ../classes/helpers/FrmTipsHelper.php:113
|
1328 |
-
msgid "Grow your business with automated email follow-up."
|
1329 |
-
msgstr ""
|
1330 |
-
|
1331 |
-
#: ../classes/helpers/FrmTipsHelper.php:114
|
1332 |
-
msgid "Send leads straight to MailChimp."
|
1333 |
-
msgstr ""
|
1334 |
-
|
1335 |
-
#: ../classes/helpers/FrmTipsHelper.php:118
|
1336 |
-
msgid "Save hours and increase revenue by collecting payments with every submission."
|
1337 |
-
msgstr ""
|
1338 |
-
|
1339 |
-
#: ../classes/helpers/FrmTipsHelper.php:119 ../classes/helpers/FrmTipsHelper.php:
|
1340 |
-
#: 124
|
1341 |
-
msgid "Use PayPal with this form."
|
1342 |
-
msgstr ""
|
1343 |
-
|
1344 |
-
#: ../classes/helpers/FrmTipsHelper.php:123
|
1345 |
-
msgid "Increase revenue."
|
1346 |
-
msgstr ""
|
1347 |
-
|
1348 |
-
#: ../classes/helpers/FrmTipsHelper.php:128
|
1349 |
-
msgid "Get paid more quickly."
|
1350 |
-
msgstr ""
|
1351 |
-
|
1352 |
-
#: ../classes/helpers/FrmTipsHelper.php:129
|
1353 |
-
msgid "Use Paypal with this form."
|
1354 |
-
msgstr ""
|
1355 |
-
|
1356 |
-
#: ../classes/helpers/FrmTipsHelper.php:133
|
1357 |
-
msgid "Boost your site membership."
|
1358 |
-
msgstr ""
|
1359 |
-
|
1360 |
-
#: ../classes/helpers/FrmTipsHelper.php:134
|
1361 |
-
msgid "Automatically create user accounts."
|
1362 |
-
msgstr ""
|
1363 |
-
|
1364 |
-
#: ../classes/helpers/FrmTipsHelper.php:138
|
1365 |
-
msgid "Make front-end profile editing possible."
|
1366 |
-
msgstr ""
|
1367 |
-
|
1368 |
-
#: ../classes/helpers/FrmTipsHelper.php:139
|
1369 |
-
msgid "Add user registration."
|
1370 |
-
msgstr ""
|
1371 |
-
|
1372 |
-
#: ../classes/helpers/FrmTipsHelper.php:143
|
1373 |
-
msgid "Want a text when this form is submitted or when a payment is received?"
|
1374 |
-
msgstr ""
|
1375 |
-
|
1376 |
-
#: ../classes/helpers/FrmTipsHelper.php:144
|
1377 |
-
msgid "Use Twilio with this form."
|
1378 |
-
msgstr ""
|
1379 |
-
|
1380 |
-
#: ../classes/helpers/FrmTipsHelper.php:148
|
1381 |
-
msgid "Send a text when this form is submitted."
|
1382 |
-
msgstr ""
|
1383 |
-
|
1384 |
-
#: ../classes/helpers/FrmTipsHelper.php:149
|
1385 |
-
msgid "Get Twilio."
|
1386 |
-
msgstr ""
|
1387 |
-
|
1388 |
-
#: ../classes/helpers/FrmTipsHelper.php:160
|
1389 |
-
msgid "Make your sidebar or footer form stand out."
|
1390 |
-
msgstr ""
|
1391 |
-
|
1392 |
-
#: ../classes/helpers/FrmTipsHelper.php:161
|
1393 |
-
msgid "Use multiple style templates."
|
1394 |
-
msgstr ""
|
1395 |
-
|
1396 |
-
#: ../classes/helpers/FrmTipsHelper.php:171
|
1397 |
-
msgid "Want to edit or delete form submissions?"
|
1398 |
-
msgstr ""
|
1399 |
-
|
1400 |
-
#: ../classes/helpers/FrmTipsHelper.php:172
|
1401 |
-
msgid "Add entry management."
|
1402 |
-
msgstr ""
|
1403 |
-
|
1404 |
-
#: ../classes/helpers/FrmTipsHelper.php:176
|
1405 |
-
msgid "Want to search submitted entries?"
|
1406 |
-
msgstr ""
|
1407 |
-
|
1408 |
-
#: ../classes/helpers/FrmTipsHelper.php:188
|
1409 |
-
msgid "Want to import entries into your forms?"
|
1410 |
-
msgstr ""
|
1411 |
-
|
1412 |
-
#: ../classes/helpers/FrmTipsHelper.php:199
|
1413 |
-
msgid "Looking for more options to get professional results?"
|
1414 |
-
msgstr ""
|
1415 |
-
|
1416 |
-
#: ../classes/helpers/FrmTipsHelper.php:200
|
1417 |
-
msgid "Take your forms to the next level."
|
1418 |
-
msgstr ""
|
1419 |
-
|
1420 |
-
#: ../classes/helpers/FrmTipsHelper.php:204
|
1421 |
-
msgid "Increase conversions in your long forms."
|
1422 |
-
msgstr ""
|
1423 |
-
|
1424 |
-
#: ../classes/helpers/FrmTipsHelper.php:205
|
1425 |
-
msgid "Add conditional logic, page breaks, and section headings."
|
1426 |
-
msgstr ""
|
1427 |
-
|
1428 |
-
#: ../classes/helpers/FrmTipsHelper.php:209
|
1429 |
-
msgid "Automate your business and increase revenue."
|
1430 |
-
msgstr ""
|
1431 |
-
|
1432 |
-
#: ../classes/helpers/FrmTipsHelper.php:210
|
1433 |
-
msgid "Collect instant payments, and send leads to MailChimp."
|
1434 |
-
msgstr ""
|
1435 |
-
|
1436 |
-
#: ../classes/helpers/FrmXMLHelper.php:46
|
1437 |
-
msgid "Your server does not have XML enabled"
|
1438 |
-
msgstr ""
|
1439 |
-
|
1440 |
-
#: ../classes/helpers/FrmXMLHelper.php:52 ../classes/helpers/FrmXMLHelper.php:64
|
1441 |
-
msgid "There was an error when reading this XML file"
|
1442 |
-
msgstr ""
|
1443 |
-
|
1444 |
-
#: ../classes/helpers/FrmXMLHelper.php:56
|
1445 |
-
msgid "Your server is missing the simplexml_import_dom function"
|
1446 |
-
msgstr ""
|
1447 |
-
|
1448 |
-
#: ../classes/helpers/FrmXMLHelper.php:805
|
1449 |
-
msgid "Imported"
|
1450 |
-
msgstr ""
|
1451 |
-
|
1452 |
-
#: ../classes/helpers/FrmXMLHelper.php:806
|
1453 |
-
msgid "Updated"
|
1454 |
-
msgstr ""
|
1455 |
-
|
1456 |
-
#: ../classes/helpers/FrmXMLHelper.php:831
|
1457 |
-
msgid "Nothing was imported or updated"
|
1458 |
-
msgstr ""
|
1459 |
-
|
1460 |
-
#: ../classes/helpers/FrmXMLHelper.php:843
|
1461 |
-
#, php-format
|
1462 |
-
msgid "%1$s Form"
|
1463 |
-
msgid_plural "%1$s Forms"
|
1464 |
-
msgstr[0] ""
|
1465 |
-
msgstr[1] ""
|
1466 |
-
|
1467 |
-
#: ../classes/helpers/FrmXMLHelper.php:844
|
1468 |
-
#, php-format
|
1469 |
-
msgid "%1$s Field"
|
1470 |
-
msgid_plural "%1$s Fields"
|
1471 |
-
msgstr[0] ""
|
1472 |
-
msgstr[1] ""
|
1473 |
-
|
1474 |
-
#: ../classes/helpers/FrmXMLHelper.php:845
|
1475 |
-
#, php-format
|
1476 |
-
msgid "%1$s Entry"
|
1477 |
-
msgid_plural "%1$s Entries"
|
1478 |
-
msgstr[0] ""
|
1479 |
-
msgstr[1] ""
|
1480 |
-
|
1481 |
-
#: ../classes/helpers/FrmXMLHelper.php:846
|
1482 |
-
#, php-format
|
1483 |
-
msgid "%1$s View"
|
1484 |
-
msgid_plural "%1$s Views"
|
1485 |
-
msgstr[0] ""
|
1486 |
-
msgstr[1] ""
|
1487 |
-
|
1488 |
-
#: ../classes/helpers/FrmXMLHelper.php:847
|
1489 |
-
#, php-format
|
1490 |
-
msgid "%1$s Post"
|
1491 |
-
msgid_plural "%1$s Posts"
|
1492 |
-
msgstr[0] ""
|
1493 |
-
msgstr[1] ""
|
1494 |
-
|
1495 |
-
#: ../classes/helpers/FrmXMLHelper.php:848
|
1496 |
-
#, php-format
|
1497 |
-
msgid "%1$s Style"
|
1498 |
-
msgid_plural "%1$s Styles"
|
1499 |
-
msgstr[0] ""
|
1500 |
-
msgstr[1] ""
|
1501 |
-
|
1502 |
-
#: ../classes/helpers/FrmXMLHelper.php:849
|
1503 |
-
#, php-format
|
1504 |
-
msgid "%1$s Term"
|
1505 |
-
msgid_plural "%1$s Terms"
|
1506 |
-
msgstr[0] ""
|
1507 |
-
msgstr[1] ""
|
1508 |
-
|
1509 |
-
#: ../classes/helpers/FrmXMLHelper.php:850
|
1510 |
-
#, php-format
|
1511 |
-
msgid "%1$s Form Action"
|
1512 |
-
msgid_plural "%1$s Form Actions"
|
1513 |
-
msgstr[0] ""
|
1514 |
-
msgstr[1] ""
|
1515 |
-
|
1516 |
-
#: ../classes/helpers/FrmXMLHelper.php:944
|
1517 |
-
msgid "Create Posts"
|
1518 |
-
msgstr ""
|
1519 |
-
|
1520 |
-
#: ../classes/helpers/FrmXMLHelper.php:1053 ../classes/views/frm-form-
|
1521 |
-
#: actions/email_action.php:16
|
1522 |
-
msgid "Email Notification"
|
1523 |
-
msgstr ""
|
1524 |
-
|
1525 |
-
#: ../classes/models/FrmAddon.php:152
|
1526 |
-
#, php-format
|
1527 |
-
msgid "Your %1$s license key is missing. Please add it on the %2$slicenses page%3$s."
|
1528 |
-
msgstr ""
|
1529 |
-
|
1530 |
-
#: ../classes/models/FrmAddon.php:244
|
1531 |
-
msgid "Oops! You forgot to enter your license number."
|
1532 |
-
msgstr ""
|
1533 |
-
|
1534 |
-
#: ../classes/models/FrmAddon.php:315
|
1535 |
-
msgid "Your license has been activated. Enjoy!"
|
1536 |
-
msgstr ""
|
1537 |
-
|
1538 |
-
#: ../classes/models/FrmAddon.php:316 ../classes/models/FrmAddon.php:321
|
1539 |
-
msgid "That license key is invalid"
|
1540 |
-
msgstr ""
|
1541 |
-
|
1542 |
-
#: ../classes/models/FrmAddon.php:317
|
1543 |
-
msgid "That license is expired"
|
1544 |
-
msgstr ""
|
1545 |
-
|
1546 |
-
#: ../classes/models/FrmAddon.php:318
|
1547 |
-
msgid "That license has been refunded"
|
1548 |
-
msgstr ""
|
1549 |
-
|
1550 |
-
#: ../classes/models/FrmAddon.php:319
|
1551 |
-
msgid "That license has been used on too many sites"
|
1552 |
-
msgstr ""
|
1553 |
-
|
1554 |
-
#: ../classes/models/FrmAddon.php:320
|
1555 |
-
msgid "Oops! That is the wrong license key for this plugin."
|
1556 |
-
msgstr ""
|
1557 |
-
|
1558 |
-
#: ../classes/models/FrmAddon.php:340
|
1559 |
-
msgid "That license was removed successfully"
|
1560 |
-
msgstr ""
|
1561 |
-
|
1562 |
-
#: ../classes/models/FrmAddon.php:342
|
1563 |
-
msgid "There was an error deactivating your license."
|
1564 |
-
msgstr ""
|
1565 |
-
|
1566 |
-
#: ../classes/models/FrmAddon.php:376 ..
|
1567 |
-
#: pro/classes/controllers/FrmUpdatesController.php:349
|
1568 |
-
msgid "Your License Key was invalid"
|
1569 |
-
msgstr ""
|
1570 |
-
|
1571 |
-
#: ../classes/models/FrmAddon.php:378
|
1572 |
-
#, php-format
|
1573 |
-
msgid ""
|
1574 |
-
"You had an error communicating with the Formidable API. %1$sClick here%2$s "
|
1575 |
-
"for more information."
|
1576 |
-
msgstr ""
|
1577 |
-
|
1578 |
-
#: ../classes/models/FrmAddon.php:381
|
1579 |
-
msgid "You had an HTTP error connecting to the Formidable API"
|
1580 |
-
msgstr ""
|
1581 |
-
|
1582 |
-
#: ../classes/models/FrmAddon.php:391 ..
|
1583 |
-
#: pro/classes/controllers/FrmUpdatesController.php:345
|
1584 |
-
#, php-format
|
1585 |
-
msgid "There was a %1$s error: %2$s"
|
1586 |
-
msgstr ""
|
1587 |
-
|
1588 |
-
#: ../classes/models/FrmDb.php:579
|
1589 |
-
msgid "Use the query in an array format so it can be properly prepared."
|
1590 |
-
msgstr ""
|
1591 |
-
|
1592 |
-
#: ../classes/models/FrmDb.php:781
|
1593 |
-
msgid "Sending"
|
1594 |
-
msgstr ""
|
1595 |
-
|
1596 |
-
#: ../classes/models/FrmEDD_SL_Plugin_Updater.php:245
|
1597 |
-
msgid "You do not have permission to install plugin updates"
|
1598 |
-
msgstr ""
|
1599 |
-
|
1600 |
-
#: ../classes/models/FrmEmail.php:261
|
1601 |
-
#, php-format
|
1602 |
-
msgid "%1$s Form submitted on %2$s"
|
1603 |
-
msgstr ""
|
1604 |
-
|
1605 |
-
#: ../classes/models/FrmEmail.php:298 ../classes/views/frm-entries/sidebar-shared.
|
1606 |
-
#: php:53
|
1607 |
-
msgid "User Information"
|
1608 |
-
msgstr ""
|
1609 |
-
|
1610 |
-
#: ../classes/models/FrmEmail.php:300 ../classes/models/FrmEntryValues.php:225
|
1611 |
-
msgid "User-Agent (Browser/OS)"
|
1612 |
-
msgstr ""
|
1613 |
-
|
1614 |
-
#: ../classes/models/FrmEmail.php:301 ../classes/models/FrmEntryValues.php:230 ..
|
1615 |
-
#: classes/views/frm-entries/sidebar-shared.php:71
|
1616 |
-
msgid "Referrer"
|
1617 |
-
msgstr ""
|
1618 |
-
|
1619 |
-
#: ../classes/models/FrmEmail.php:317 ../classes/models/FrmEntryValues.php:220 ..
|
1620 |
-
#: classes/views/frm-entries/sidebar-shared.php:57 ..
|
1621 |
-
#: pro/classes/controllers/FrmProFormsController.php:86 ..
|
1622 |
-
#: pro/classes/views/frmpro-forms/add_form_options.php:31 ..
|
1623 |
-
#: pro/classes/views/xml/map_csv_fields.php:54
|
1624 |
-
msgid "IP Address"
|
1625 |
-
msgstr ""
|
1626 |
-
|
1627 |
-
#: ../classes/models/FrmEntryValidate.php:9
|
1628 |
-
msgid "There was a problem with your submission. Please try again."
|
1629 |
-
msgstr ""
|
1630 |
-
|
1631 |
-
#: ../classes/models/FrmEntryValidate.php:14 ../classes/models/FrmSettings.php:100
|
1632 |
-
msgid "You do not have permission to do that"
|
1633 |
-
msgstr ""
|
1634 |
-
|
1635 |
-
#: ../classes/models/FrmEntryValidate.php:159
|
1636 |
-
msgid "Please select a higher number"
|
1637 |
-
msgstr ""
|
1638 |
-
|
1639 |
-
#: ../classes/models/FrmEntryValidate.php:161
|
1640 |
-
msgid "Please select a lower number"
|
1641 |
-
msgstr ""
|
1642 |
-
|
1643 |
-
#: ../classes/models/FrmEntryValidate.php:248
|
1644 |
-
msgid "The captcha is missing from this form"
|
1645 |
-
msgstr ""
|
1646 |
-
|
1647 |
-
#: ../classes/models/FrmEntryValidate.php:268
|
1648 |
-
msgid "There was a problem verifying your recaptcha"
|
1649 |
-
msgstr ""
|
1650 |
-
|
1651 |
-
#: ../classes/models/FrmEntryValidate.php:286 ../classes/models/FrmEntryValidate.
|
1652 |
-
#: php:295
|
1653 |
-
msgid "Your entry appears to be spam!"
|
1654 |
-
msgstr ""
|
1655 |
-
|
1656 |
-
#: ../classes/models/FrmEntryValidate.php:290
|
1657 |
-
msgid "Your entry appears to be blacklist spam!"
|
1658 |
-
msgstr ""
|
1659 |
-
|
1660 |
-
#: ../classes/models/FrmField.php:13 ..
|
1661 |
-
#: pro/classes/controllers/FrmProLookupFieldsController.php:15
|
1662 |
-
msgid "Single Line Text"
|
1663 |
-
msgstr ""
|
1664 |
-
|
1665 |
-
#: ../classes/models/FrmField.php:14
|
1666 |
-
msgid "Paragraph Text"
|
1667 |
-
msgstr ""
|
1668 |
-
|
1669 |
-
#: ../classes/models/FrmField.php:15 ..
|
1670 |
-
#: pro/classes/controllers/FrmProLookupFieldsController.php:14 ..
|
1671 |
-
#: pro/classes/helpers/FrmProFieldsHelper.php:3825
|
1672 |
-
msgid "Checkboxes"
|
1673 |
-
msgstr ""
|
1674 |
-
|
1675 |
-
#: ../classes/models/FrmField.php:16 ../classes/views/styles/_sample_form.php:58 .
|
1676 |
-
#: ./pro/classes/controllers/FrmProLookupFieldsController.php:13 ..
|
1677 |
-
#: pro/classes/helpers/FrmProFieldsHelper.php:3824 ..
|
1678 |
-
#: pro/classes/views/styles/_sample_form.php:14
|
1679 |
-
msgid "Radio Buttons"
|
1680 |
-
msgstr ""
|
1681 |
-
|
1682 |
-
#: ../classes/models/FrmField.php:17 ..
|
1683 |
-
#: pro/classes/controllers/FrmProLookupFieldsController.php:12 ..
|
1684 |
-
#: pro/classes/helpers/FrmProFieldsHelper.php:3823
|
1685 |
-
msgid "Dropdown"
|
1686 |
-
msgstr ""
|
1687 |
-
|
1688 |
-
#: ../classes/models/FrmField.php:19
|
1689 |
-
msgid "Website/URL"
|
1690 |
-
msgstr ""
|
1691 |
-
|
1692 |
-
#: ../classes/models/FrmField.php:29
|
1693 |
-
msgid "End Section"
|
1694 |
-
msgstr ""
|
1695 |
-
|
1696 |
-
#: ../classes/models/FrmField.php:32 ../pro/classes/helpers/FrmProFieldsHelper.
|
1697 |
-
#: php:3811
|
1698 |
-
msgid "Section"
|
1699 |
-
msgstr ""
|
1700 |
-
|
1701 |
-
#: ../classes/models/FrmField.php:33
|
1702 |
-
msgid "Page Break"
|
1703 |
-
msgstr ""
|
1704 |
-
|
1705 |
-
#: ../classes/models/FrmField.php:34
|
1706 |
-
msgid "File Upload"
|
1707 |
-
msgstr ""
|
1708 |
-
|
1709 |
-
#: ../classes/models/FrmField.php:35
|
1710 |
-
msgid "Rich Text"
|
1711 |
-
msgstr ""
|
1712 |
-
|
1713 |
-
#: ../classes/models/FrmField.php:36
|
1714 |
-
msgid "Number"
|
1715 |
-
msgstr ""
|
1716 |
-
|
1717 |
-
#: ../classes/models/FrmField.php:41
|
1718 |
-
msgid "Scale"
|
1719 |
-
msgstr ""
|
1720 |
-
|
1721 |
-
#: ../classes/models/FrmField.php:42 ../pro/classes/helpers/FrmProFieldsHelper.
|
1722 |
-
#: php:3821
|
1723 |
-
msgid "Dynamic Field"
|
1724 |
-
msgstr ""
|
1725 |
-
|
1726 |
-
#: ../classes/models/FrmField.php:43 ..
|
1727 |
-
#: pro/classes/controllers/FrmProLookupFieldsController.php:27
|
1728 |
-
msgid "Lookup"
|
1729 |
-
msgstr ""
|
1730 |
-
|
1731 |
-
#: ../classes/models/FrmField.php:44
|
1732 |
-
msgid "Embed Form"
|
1733 |
-
msgstr ""
|
1734 |
-
|
1735 |
-
#: ../classes/models/FrmField.php:45
|
1736 |
-
msgid "Hidden Field"
|
1737 |
-
msgstr ""
|
1738 |
-
|
1739 |
-
#: ../classes/models/FrmField.php:46
|
1740 |
-
msgid "User ID (hidden)"
|
1741 |
-
msgstr ""
|
1742 |
-
|
1743 |
-
#: ../classes/models/FrmFormAction.php:37
|
1744 |
-
msgid "There are no options for this action."
|
1745 |
-
msgstr ""
|
1746 |
-
|
1747 |
-
#: ../classes/models/FrmFormAction.php:691 ../classes/views/frm-
|
1748 |
-
#: forms/_publish_box.php:9 ../pro/classes/controllers/FrmProFormsController.php:
|
1749 |
-
#: 242
|
1750 |
-
msgid "Save Draft"
|
1751 |
-
msgstr ""
|
1752 |
-
|
1753 |
-
#: ../classes/models/FrmFormAction.php:692 ../classes/views/frm-
|
1754 |
-
#: forms/add_field_links.php:6 ../classes/views/frm-forms/new.php:27 ..
|
1755 |
-
#: pro/classes/controllers/FrmProFormActionsController.php:35
|
1756 |
-
msgid "Create"
|
1757 |
-
msgstr ""
|
1758 |
-
|
1759 |
-
#: ../classes/models/FrmPointers.php:168
|
1760 |
-
msgid ""
|
1761 |
-
"Click “Start Tour” to view a quick introduction of this "
|
1762 |
-
"plugin’s core functionality."
|
1763 |
-
msgstr ""
|
1764 |
-
|
1765 |
-
#: ../classes/models/FrmPointers.php:174
|
1766 |
-
msgid "Start Tour"
|
1767 |
-
msgstr ""
|
1768 |
-
|
1769 |
-
#: ../classes/models/FrmPointers.php:181
|
1770 |
-
msgid "You’ve just installed a new form builder plugin!"
|
1771 |
-
msgstr ""
|
1772 |
-
|
1773 |
-
#: ../classes/models/FrmPointers.php:242
|
1774 |
-
msgid ""
|
1775 |
-
"All your forms will be listed on this page. Create your first form by "
|
1776 |
-
"clicking on the \"Add New\" button."
|
1777 |
-
msgstr ""
|
1778 |
-
|
1779 |
-
#: ../classes/models/FrmPointers.php:243
|
1780 |
-
msgid "Subscribe to our Newsletter"
|
1781 |
-
msgstr ""
|
1782 |
-
|
1783 |
-
#: ../classes/models/FrmPointers.php:244
|
1784 |
-
#, php-format
|
1785 |
-
msgid ""
|
1786 |
-
"If you would like to hear about new features and updates for %1$s, subscribe "
|
1787 |
-
"to our newsletter:"
|
1788 |
-
msgstr ""
|
1789 |
-
|
1790 |
-
#: ../classes/models/FrmPointers.php:264
|
1791 |
-
msgid ""
|
1792 |
-
"Each time one of your forms is submitted, an entry is created. You will find "
|
1793 |
-
"every form submission listed here so you will always have a backup if an "
|
1794 |
-
"email fails."
|
1795 |
-
msgstr ""
|
1796 |
-
|
1797 |
-
#: ../classes/models/FrmPointers.php:280
|
1798 |
-
msgid ""
|
1799 |
-
"Want to make changes to the way your forms look? Make all the changes you "
|
1800 |
-
"would like right here, and watch the sample form change before your eyes."
|
1801 |
-
msgstr ""
|
1802 |
-
|
1803 |
-
#: ../classes/models/FrmPointers.php:296
|
1804 |
-
msgid ""
|
1805 |
-
"Import and export forms and styles when copying from one site to another or "
|
1806 |
-
"sharing with someone else. Your entries can be exported to a CSV as well. "
|
1807 |
-
"The Premium version also includes the option to import entries to your site "
|
1808 |
-
"from a CSV."
|
1809 |
-
msgstr ""
|
1810 |
-
|
1811 |
-
#: ../classes/models/FrmPointers.php:313
|
1812 |
-
msgid ""
|
1813 |
-
"Turn stylesheets and scripts off, set which user roles have access to change "
|
1814 |
-
"and create forms, setup your reCaptcha, and set default messages for new "
|
1815 |
-
"forms and fields."
|
1816 |
-
msgstr ""
|
1817 |
-
|
1818 |
-
#: ../classes/models/FrmPointers.php:315
|
1819 |
-
#, php-format
|
1820 |
-
msgid ""
|
1821 |
-
"Once you’ve purchased %1$s or any addons, you’ll have to enter a "
|
1822 |
-
"license key to get access to all of their powerful features. A Plugin "
|
1823 |
-
"Licenses tab will appear here for you to enter your license key."
|
1824 |
-
msgstr ""
|
1825 |
-
|
1826 |
-
#: ../classes/models/FrmPointers.php:329
|
1827 |
-
msgid "Addons"
|
1828 |
-
msgstr ""
|
1829 |
-
|
1830 |
-
#: ../classes/models/FrmPointers.php:330
|
1831 |
-
#, php-format
|
1832 |
-
msgid ""
|
1833 |
-
"The powerful functions of %1$s can be extended with %2$spremium plugins%3$s. "
|
1834 |
-
"You can read all about the Formidable Premium Plugins %2$shere%3$s."
|
1835 |
-
msgstr ""
|
1836 |
-
|
1837 |
-
#: ../classes/models/FrmPointers.php:332
|
1838 |
-
msgid "Like this plugin?"
|
1839 |
-
msgstr ""
|
1840 |
-
|
1841 |
-
#: ../classes/models/FrmPointers.php:332
|
1842 |
-
#, php-format
|
1843 |
-
msgid ""
|
1844 |
-
"So, we’ve come to the end of the tour. If you like the plugin, please "
|
1845 |
-
"%1$srate it 5 stars on WordPress.org%2$s!"
|
1846 |
-
msgstr ""
|
1847 |
-
|
1848 |
-
#: ../classes/models/FrmPointers.php:333
|
1849 |
-
#, php-format
|
1850 |
-
msgid ""
|
1851 |
-
"Thank you for using our plugin and good luck with your forms!<br/><br/>Best,"
|
1852 |
-
"<br/>Team Formidable - %1$sformidableforms.com%2$s"
|
1853 |
-
msgstr ""
|
1854 |
-
|
1855 |
-
#: ../classes/models/FrmSettings.php:93
|
1856 |
-
msgid "Your responses were successfully submitted. Thank you!"
|
1857 |
-
msgstr ""
|
1858 |
-
|
1859 |
-
#: ../classes/models/FrmSettings.php:94
|
1860 |
-
msgid "This field cannot be blank."
|
1861 |
-
msgstr ""
|
1862 |
-
|
1863 |
-
#: ../classes/models/FrmSettings.php:95
|
1864 |
-
msgid "This value must be unique."
|
1865 |
-
msgstr ""
|
1866 |
-
|
1867 |
-
#: ../classes/models/FrmSettings.php:96
|
1868 |
-
msgid "There was a problem with your submission. Errors are marked below."
|
1869 |
-
msgstr ""
|
1870 |
-
|
1871 |
-
#: ../classes/models/FrmSettings.php:97
|
1872 |
-
msgid "We're sorry. It looks like you've already submitted that."
|
1873 |
-
msgstr ""
|
1874 |
-
|
1875 |
-
#: ../classes/models/FrmSettings.php:99
|
1876 |
-
msgid "You do not have permission to view this form."
|
1877 |
-
msgstr ""
|
1878 |
-
|
1879 |
-
#: ../classes/models/FrmSettings.php:167
|
1880 |
-
msgid "The reCAPTCHA was not entered correctly"
|
1881 |
-
msgstr ""
|
1882 |
-
|
1883 |
-
#: ../classes/models/FrmStyle.php:23
|
1884 |
-
msgid "New Style"
|
1885 |
-
msgstr ""
|
1886 |
-
|
1887 |
-
#: ../classes/models/FrmStyle.php:129
|
1888 |
-
msgid ""
|
1889 |
-
"WARNING: Any changes made to this file will be lost when your Formidable "
|
1890 |
-
"settings are updated"
|
1891 |
-
msgstr ""
|
1892 |
-
|
1893 |
-
#: ../classes/models/FrmStyle.php:208 ../pro/classes/models/FrmProDb.php:420
|
1894 |
-
msgid "Formidable Style"
|
1895 |
-
msgstr ""
|
1896 |
-
|
1897 |
-
#: ../classes/models/FrmStyle.php:440 ../classes/views/styles/_field-description.
|
1898 |
-
#: php:16
|
1899 |
-
msgid "normal"
|
1900 |
-
msgstr ""
|
1901 |
-
|
1902 |
-
#: ../classes/models/FrmStyle.php:442
|
1903 |
-
msgid "bold"
|
1904 |
-
msgstr ""
|
1905 |
-
|
1906 |
-
#: ../classes/views/addons/list.php:2
|
1907 |
-
msgid "Formidable AddOns"
|
1908 |
-
msgstr ""
|
1909 |
-
|
1910 |
-
#: ../classes/views/addons/list.php:19
|
1911 |
-
msgid "This plugin is already installed"
|
1912 |
-
msgstr ""
|
1913 |
-
|
1914 |
-
#: ../classes/views/addons/list.php:26 ../classes/views/addons/list.php:26
|
1915 |
-
msgid "View Docs"
|
1916 |
-
msgstr ""
|
1917 |
-
|
1918 |
-
#: ../classes/views/addons/settings.php:24
|
1919 |
-
msgid "Good to go!"
|
1920 |
-
msgstr ""
|
1921 |
-
|
1922 |
-
#: ../classes/views/addons/settings.php:40
|
1923 |
-
msgid "Autofill Licenses"
|
1924 |
-
msgstr ""
|
1925 |
-
|
1926 |
-
#: ../classes/views/frm-entries/_sidebar-shared-pub.php:10
|
1927 |
-
#, php-format
|
1928 |
-
msgid "Published on: <b>%1$s</b>"
|
1929 |
-
msgstr ""
|
1930 |
-
|
1931 |
-
#: ../classes/views/frm-entries/_sidebar-shared-pub.php:16
|
1932 |
-
#, php-format
|
1933 |
-
msgid "Updated on: <b>%1$s</b>"
|
1934 |
-
msgstr ""
|
1935 |
-
|
1936 |
-
#: ../classes/views/frm-entries/form.php:4 ../pro/classes/views/frmpro-
|
1937 |
-
#: entries/new.php:10
|
1938 |
-
msgid "Oops!"
|
1939 |
-
msgstr ""
|
1940 |
-
|
1941 |
-
#: ../classes/views/frm-entries/form.php:4 ../pro/classes/views/frmpro-
|
1942 |
-
#: entries/new.php:10
|
1943 |
-
#, php-format
|
1944 |
-
msgid "You did not add any fields to your form. %1$sGo back%2$s and add some."
|
1945 |
-
msgstr ""
|
1946 |
-
|
1947 |
-
#: ../classes/views/frm-entries/no_entries.php:4
|
1948 |
-
msgid "This form is not set to save any entries."
|
1949 |
-
msgstr ""
|
1950 |
-
|
1951 |
-
#: ../classes/views/frm-entries/no_entries.php:9
|
1952 |
-
#, php-format
|
1953 |
-
msgid "No Entries for form: %s"
|
1954 |
-
msgstr ""
|
1955 |
-
|
1956 |
-
#: ../classes/views/frm-entries/no_entries.php:10
|
1957 |
-
#, php-format
|
1958 |
-
msgid ""
|
1959 |
-
"For instructions on publishing your form see %1$sthe docs%2$s or click "
|
1960 |
-
"\"%3$sAdd New%4$s\" above to add an entry from here (Requires License)"
|
1961 |
-
msgstr ""
|
1962 |
-
|
1963 |
-
#: ../classes/views/frm-entries/no_entries.php:14
|
1964 |
-
msgid "You have not created any forms yet."
|
1965 |
-
msgstr ""
|
1966 |
-
|
1967 |
-
#: ../classes/views/frm-entries/no_entries.php:15
|
1968 |
-
#, php-format
|
1969 |
-
msgid "To view entries, you must first %1$sbuild a form%2$s"
|
1970 |
-
msgstr ""
|
1971 |
-
|
1972 |
-
#: ../classes/views/frm-entries/show.php:2
|
1973 |
-
msgid "View Entry"
|
1974 |
-
msgstr ""
|
1975 |
-
|
1976 |
-
#: ../classes/views/frm-entries/show.php:13 ..
|
1977 |
-
#: pro/classes/controllers/FrmProDisplaysController.php:138
|
1978 |
-
msgid "Entry"
|
1979 |
-
msgstr ""
|
1980 |
-
|
1981 |
-
#: ../classes/views/frm-entries/show.php:57 ..
|
1982 |
-
#: pro/classes/controllers/FrmProEntriesController.php:1683
|
1983 |
-
msgid "Parent Entry ID"
|
1984 |
-
msgstr ""
|
1985 |
-
|
1986 |
-
#: ../classes/views/frm-entries/sidebar-shared.php:3
|
1987 |
-
msgid "Entry Details"
|
1988 |
-
msgstr ""
|
1989 |
-
|
1990 |
-
#: ../classes/views/frm-entries/sidebar-shared.php:8 ..
|
1991 |
-
#: pro/classes/controllers/FrmProEntriesController.php:1681
|
1992 |
-
msgid "Post"
|
1993 |
-
msgstr ""
|
1994 |
-
|
1995 |
-
#: ../classes/views/frm-entries/sidebar-shared.php:37
|
1996 |
-
#, php-format
|
1997 |
-
msgid "Created by: %1$s"
|
1998 |
-
msgstr ""
|
1999 |
-
|
2000 |
-
#: ../classes/views/frm-entries/sidebar-shared.php:44
|
2001 |
-
#, php-format
|
2002 |
-
msgid "Updated by: %1$s"
|
2003 |
-
msgstr ""
|
2004 |
-
|
2005 |
-
#: ../classes/views/frm-entries/sidebar-shared.php:64
|
2006 |
-
msgid "Browser/OS"
|
2007 |
-
msgstr ""
|
2008 |
-
|
2009 |
-
#: ../classes/views/frm-entries/sidebar-show.php:3
|
2010 |
-
msgid "Entry Actions"
|
2011 |
-
msgstr ""
|
2012 |
-
|
2013 |
-
#: ../classes/views/frm-entries/sidebar-show.php:22 ..
|
2014 |
-
#: pro/classes/controllers/FrmProEntriesController.php:1720 ..
|
2015 |
-
#: pro/classes/controllers/FrmProEntriesController.php:2105 ..
|
2016 |
-
#: pro/classes/controllers/FrmProEntriesController.php:2179 ..
|
2017 |
-
#: pro/classes/controllers/FrmProEntriesController.php:2574
|
2018 |
-
msgid "Are you sure you want to delete that entry?"
|
2019 |
-
msgstr ""
|
2020 |
-
|
2021 |
-
#: ../classes/views/frm-entries/sidebar-show.php:26 ../pro/classes/views/frmpro-
|
2022 |
-
#: entries/sidebar-edit.php:27 ../pro/classes/views/frmpro-entries/sidebar-edit.
|
2023 |
-
#: php:29
|
2024 |
-
msgid "Are you sure you want to delete this entry?"
|
2025 |
-
msgstr ""
|
2026 |
-
|
2027 |
-
#: ../classes/views/frm-entries/sidebar-show.php:26 ../pro/classes/views/frmpro-
|
2028 |
-
#: entries/sidebar-edit.php:29
|
2029 |
-
msgid "Delete entry but leave the post"
|
2030 |
-
msgstr ""
|
2031 |
-
|
2032 |
-
#: ../classes/views/frm-entries/sidebar-show.php:27 ../pro/classes/views/frmpro-
|
2033 |
-
#: entries/sidebar-edit.php:29
|
2034 |
-
msgid "Delete without Post"
|
2035 |
-
msgstr ""
|
2036 |
-
|
2037 |
-
#: ../classes/views/frm-fields/back-end/automatic-width.php:2 ..
|
2038 |
-
#: classes/views/frm-fields/back-end/pixels-wide.php:3
|
2039 |
-
msgid "Field Size"
|
2040 |
-
msgstr ""
|
2041 |
-
|
2042 |
-
#: ../classes/views/frm-fields/back-end/automatic-width.php:6
|
2043 |
-
msgid "automatic width"
|
2044 |
-
msgstr ""
|
2045 |
-
|
2046 |
-
#: ../classes/views/frm-fields/back-end/max.php:1
|
2047 |
-
msgid "rows high"
|
2048 |
-
msgstr ""
|
2049 |
-
|
2050 |
-
#: ../classes/views/frm-fields/back-end/max.php:1
|
2051 |
-
msgid "characters maximum"
|
2052 |
-
msgstr ""
|
2053 |
-
|
2054 |
-
#: ../classes/views/frm-fields/back-end/pixels-wide.php:7
|
2055 |
-
msgid "pixels wide"
|
2056 |
-
msgstr ""
|
2057 |
-
|
2058 |
-
#: ../classes/views/frm-fields/import_choices.php:22
|
2059 |
-
msgid "Edit or add field options (one per line)"
|
2060 |
-
msgstr ""
|
2061 |
-
|
2062 |
-
#: ../classes/views/frm-fields/import_choices.php:51
|
2063 |
-
msgid "Update Field Choices"
|
2064 |
-
msgstr ""
|
2065 |
-
|
2066 |
-
#: ../classes/views/frm-fields/show-build.php:25
|
2067 |
-
#, php-format
|
2068 |
-
msgid ""
|
2069 |
-
"Your captcha will not appear on your form until you %1$sset up%2$s the Site "
|
2070 |
-
"and Secret Keys"
|
2071 |
-
msgstr ""
|
2072 |
-
|
2073 |
-
#: ../classes/views/frm-form-actions/_action_inside.php:30
|
2074 |
-
msgid "Action Triggers"
|
2075 |
-
msgstr ""
|
2076 |
-
|
2077 |
-
#: ../classes/views/frm-form-actions/_action_inside.php:32
|
2078 |
-
msgid "Trigger this action after"
|
2079 |
-
msgstr ""
|
2080 |
-
|
2081 |
-
#: ../classes/views/frm-form-actions/_action_inside.php:50
|
2082 |
-
#, php-format
|
2083 |
-
msgid "Action ID: %1$s"
|
2084 |
-
msgstr ""
|
2085 |
-
|
2086 |
-
#: ../classes/views/frm-form-actions/_email_settings.php:3
|
2087 |
-
msgid "To"
|
2088 |
-
msgstr ""
|
2089 |
-
|
2090 |
-
#: ../classes/views/frm-form-actions/_email_settings.php:10 ../classes/views/frm-
|
2091 |
-
#: form-actions/_email_settings.php:17
|
2092 |
-
msgid "CC"
|
2093 |
-
msgstr ""
|
2094 |
-
|
2095 |
-
#: ../classes/views/frm-form-actions/_email_settings.php:13 ../classes/views/frm-
|
2096 |
-
#: form-actions/_email_settings.php:26
|
2097 |
-
msgid "BCC"
|
2098 |
-
msgstr ""
|
2099 |
-
|
2100 |
-
#: ../classes/views/frm-form-actions/_email_settings.php:35
|
2101 |
-
msgid "Reply to"
|
2102 |
-
msgstr ""
|
2103 |
-
|
2104 |
-
#: ../classes/views/frm-form-actions/_email_settings.php:44
|
2105 |
-
msgid "From"
|
2106 |
-
msgstr ""
|
2107 |
-
|
2108 |
-
#: ../classes/views/frm-form-actions/_email_settings.php:60
|
2109 |
-
msgid "Append IP Address, Browser, and Referring URL to message"
|
2110 |
-
msgstr ""
|
2111 |
-
|
2112 |
-
#: ../classes/views/frm-form-actions/_email_settings.php:62
|
2113 |
-
msgid "Append Browser and Referring URL to message"
|
2114 |
-
msgstr ""
|
2115 |
-
|
2116 |
-
#: ../classes/views/frm-form-actions/_email_settings.php:66
|
2117 |
-
msgid "Send Emails in Plain Text"
|
2118 |
-
msgstr ""
|
2119 |
-
|
2120 |
-
#: ../classes/views/frm-form-actions/default_actions.php:8 ..
|
2121 |
-
#: pro/classes/views/frmpro-form-actions/post_action.php:14
|
2122 |
-
msgid "Create Post"
|
2123 |
-
msgstr ""
|
2124 |
-
|
2125 |
-
#: ../classes/views/frm-form-actions/default_actions.php:16
|
2126 |
-
msgid "Register User"
|
2127 |
-
msgstr ""
|
2128 |
-
|
2129 |
-
#: ../classes/views/frm-form-actions/default_actions.php:24
|
2130 |
-
msgid "Collect Payment"
|
2131 |
-
msgstr ""
|
2132 |
-
|
2133 |
-
#: ../classes/views/frm-form-actions/default_actions.php:32
|
2134 |
-
msgid "Aweber"
|
2135 |
-
msgstr ""
|
2136 |
-
|
2137 |
-
#: ../classes/views/frm-form-actions/default_actions.php:40
|
2138 |
-
msgid "MailChimp"
|
2139 |
-
msgstr ""
|
2140 |
-
|
2141 |
-
#: ../classes/views/frm-form-actions/default_actions.php:48
|
2142 |
-
msgid "Twilio"
|
2143 |
-
msgstr ""
|
2144 |
-
|
2145 |
-
#: ../classes/views/frm-form-actions/default_actions.php:56
|
2146 |
-
msgid "Highrise"
|
2147 |
-
msgstr ""
|
2148 |
-
|
2149 |
-
#: ../classes/views/frm-forms/_publish_box.php:28
|
2150 |
-
msgid "On Blank Page"
|
2151 |
-
msgstr ""
|
2152 |
-
|
2153 |
-
#: ../classes/views/frm-forms/_publish_box.php:29
|
2154 |
-
msgid "In Theme"
|
2155 |
-
msgstr ""
|
2156 |
-
|
2157 |
-
#: ../classes/views/frm-forms/_publish_box.php:50 ..
|
2158 |
-
#: pro/classes/views/displays/submitbox_actions.php:5
|
2159 |
-
msgid "Insert on a page, post, or text widget"
|
2160 |
-
msgstr ""
|
2161 |
-
|
2162 |
-
#: ../classes/views/frm-forms/_publish_box.php:55 ..
|
2163 |
-
#: pro/classes/views/displays/submitbox_actions.php:12
|
2164 |
-
msgid "Insert in a template"
|
2165 |
-
msgstr ""
|
2166 |
-
|
2167 |
-
#: ../classes/views/frm-forms/_publish_box.php:67
|
2168 |
-
msgid "Edit status"
|
2169 |
-
msgstr ""
|
2170 |
-
|
2171 |
-
#: ../classes/views/frm-forms/add_field.php:18
|
2172 |
-
msgid "Loading"
|
2173 |
-
msgstr ""
|
2174 |
-
|
2175 |
-
#: ../classes/views/frm-forms/add_field.php:51
|
2176 |
-
msgid "Move Field"
|
2177 |
-
msgstr ""
|
2178 |
-
|
2179 |
-
#: ../classes/views/frm-forms/add_field.php:52
|
2180 |
-
msgid "Delete Field"
|
2181 |
-
msgstr ""
|
2182 |
-
|
2183 |
-
#: ../classes/views/frm-forms/add_field.php:53
|
2184 |
-
msgid "Duplicate Section"
|
2185 |
-
msgstr ""
|
2186 |
-
|
2187 |
-
#: ../classes/views/frm-forms/add_field.php:53
|
2188 |
-
msgid "Duplicate Field"
|
2189 |
-
msgstr ""
|
2190 |
-
|
2191 |
-
#: ../classes/views/frm-forms/add_field.php:114
|
2192 |
-
msgid "Add Option"
|
2193 |
-
msgstr ""
|
2194 |
-
|
2195 |
-
#: ../classes/views/frm-forms/add_field.php:118
|
2196 |
-
msgid "Add \"Other\""
|
2197 |
-
msgstr ""
|
2198 |
-
|
2199 |
-
#: ../classes/views/frm-forms/add_field.php:124
|
2200 |
-
msgid "Field Choices"
|
2201 |
-
msgstr ""
|
2202 |
-
|
2203 |
-
#: ../classes/views/frm-forms/add_field.php:125
|
2204 |
-
msgid "Bulk Edit Options"
|
2205 |
-
msgstr ""
|
2206 |
-
|
2207 |
-
#: ../classes/views/frm-forms/add_field.php:146
|
2208 |
-
msgid "Field Options"
|
2209 |
-
msgstr ""
|
2210 |
-
|
2211 |
-
#: ../classes/views/frm-forms/add_field.php:151
|
2212 |
-
msgid "Field Type"
|
2213 |
-
msgstr ""
|
2214 |
-
|
2215 |
-
#: ../classes/views/frm-forms/add_field.php:176
|
2216 |
-
msgid ""
|
2217 |
-
"Unique: Do not allow the same response multiple times. For example, if one "
|
2218 |
-
"user enters 'Joe', then no one else will be allowed to enter the same name."
|
2219 |
-
msgstr ""
|
2220 |
-
|
2221 |
-
#: ../classes/views/frm-forms/add_field.php:176 ../classes/views/frm-
|
2222 |
-
#: forms/add_field.php:311
|
2223 |
-
msgid "Unique"
|
2224 |
-
msgstr ""
|
2225 |
-
|
2226 |
-
#: ../classes/views/frm-forms/add_field.php:185
|
2227 |
-
msgid ""
|
2228 |
-
"Read Only: Show this field but do not allow the field value to be edited "
|
2229 |
-
"from the front-end."
|
2230 |
-
msgstr ""
|
2231 |
-
|
2232 |
-
#: ../classes/views/frm-forms/add_field.php:187 ../classes/views/styles/_field-
|
2233 |
-
#: colors.php:13
|
2234 |
-
msgid "Read Only"
|
2235 |
-
msgstr ""
|
2236 |
-
|
2237 |
-
#: ../classes/views/frm-forms/add_field.php:197
|
2238 |
-
msgid "Indicate required field with"
|
2239 |
-
msgstr ""
|
2240 |
-
|
2241 |
-
#: ../classes/views/frm-forms/add_field.php:205
|
2242 |
-
msgid "The field key can be used as an alternative to the field ID in many cases."
|
2243 |
-
msgstr ""
|
2244 |
-
|
2245 |
-
#: ../classes/views/frm-forms/add_field.php:206 ../classes/views/frm-
|
2246 |
-
#: forms/mb_html_tab.php:7
|
2247 |
-
msgid "Field Key"
|
2248 |
-
msgstr ""
|
2249 |
-
|
2250 |
-
#: ../classes/views/frm-forms/add_field.php:216
|
2251 |
-
msgid "CSS layout classes"
|
2252 |
-
msgstr ""
|
2253 |
-
|
2254 |
-
#: ../classes/views/frm-forms/add_field.php:217
|
2255 |
-
msgid ""
|
2256 |
-
"Add a CSS class to the field container. Use our predefined classes to align "
|
2257 |
-
"multiple fields in single row."
|
2258 |
-
msgstr ""
|
2259 |
-
|
2260 |
-
#: ../classes/views/frm-forms/add_field.php:227 ../classes/views/frm-
|
2261 |
-
#: forms/mb_html_tab.php:10
|
2262 |
-
msgid "Label Position"
|
2263 |
-
msgstr ""
|
2264 |
-
|
2265 |
-
#: ../classes/views/frm-forms/add_field.php:256
|
2266 |
-
msgid "ReCaptcha Type"
|
2267 |
-
msgstr ""
|
2268 |
-
|
2269 |
-
#: ../classes/views/frm-forms/add_field.php:257
|
2270 |
-
msgid ""
|
2271 |
-
"Set the size of the captcha field. The compact option is best if your form "
|
2272 |
-
"is in a small area."
|
2273 |
-
msgstr ""
|
2274 |
-
|
2275 |
-
#: ../classes/views/frm-forms/add_field.php:262
|
2276 |
-
msgid "Normal"
|
2277 |
-
msgstr ""
|
2278 |
-
|
2279 |
-
#: ../classes/views/frm-forms/add_field.php:272
|
2280 |
-
msgid "reCAPTCHA Color"
|
2281 |
-
msgstr ""
|
2282 |
-
|
2283 |
-
#: ../classes/views/frm-forms/add_field.php:291
|
2284 |
-
msgid "Validation"
|
2285 |
-
msgstr ""
|
2286 |
-
|
2287 |
-
#: ../classes/views/frm-forms/add_field.php:303
|
2288 |
-
msgid "Invalid Format"
|
2289 |
-
msgstr ""
|
2290 |
-
|
2291 |
-
#: ../classes/views/frm-forms/add_field.php:319
|
2292 |
-
msgid "Confirmation"
|
2293 |
-
msgstr ""
|
2294 |
-
|
2295 |
-
#: ../classes/views/frm-forms/add_field.php:338
|
2296 |
-
msgid "Drag fields from your form or the sidebar into this section"
|
2297 |
-
msgstr ""
|
2298 |
-
|
2299 |
-
#: ../classes/views/frm-forms/add_field_links.php:18 ..
|
2300 |
-
#: pro/classes/controllers/FrmProGraphsController.php:1124
|
2301 |
-
msgid "Fields"
|
2302 |
-
msgstr ""
|
2303 |
-
|
2304 |
-
#: ../classes/views/frm-forms/add_field_links.php:19
|
2305 |
-
msgid ""
|
2306 |
-
"Open the Field Options and click on the CSS Layout Classes option to enable "
|
2307 |
-
"this tab"
|
2308 |
-
msgstr ""
|
2309 |
-
|
2310 |
-
#: ../classes/views/frm-forms/add_field_links.php:86
|
2311 |
-
msgid "1. Click inside the \"CSS layout classes\" field option in any field."
|
2312 |
-
msgstr ""
|
2313 |
-
|
2314 |
-
#: ../classes/views/frm-forms/add_field_links.php:87
|
2315 |
-
msgid "2. This box will activate and you can click to insert classes."
|
2316 |
-
msgstr ""
|
2317 |
-
|
2318 |
-
#: ../classes/views/frm-forms/add_field_links.php:92
|
2319 |
-
msgid ""
|
2320 |
-
"Add this to the first field in each row along with a width. ie frm_first "
|
2321 |
-
"frm_third"
|
2322 |
-
msgstr ""
|
2323 |
-
|
2324 |
-
#: ../classes/views/frm-forms/add_field_links.php:94
|
2325 |
-
msgid "1/2"
|
2326 |
-
msgstr ""
|
2327 |
-
|
2328 |
-
#: ../classes/views/frm-forms/add_field_links.php:95
|
2329 |
-
msgid "1/3"
|
2330 |
-
msgstr ""
|
2331 |
-
|
2332 |
-
#: ../classes/views/frm-forms/add_field_links.php:96
|
2333 |
-
msgid "2/3"
|
2334 |
-
msgstr ""
|
2335 |
-
|
2336 |
-
#: ../classes/views/frm-forms/add_field_links.php:97
|
2337 |
-
msgid "1/4"
|
2338 |
-
msgstr ""
|
2339 |
-
|
2340 |
-
#: ../classes/views/frm-forms/add_field_links.php:98
|
2341 |
-
msgid "3/4"
|
2342 |
-
msgstr ""
|
2343 |
-
|
2344 |
-
#: ../classes/views/frm-forms/add_field_links.php:99
|
2345 |
-
msgid "1/5"
|
2346 |
-
msgstr ""
|
2347 |
-
|
2348 |
-
#: ../classes/views/frm-forms/add_field_links.php:100
|
2349 |
-
msgid "2/5"
|
2350 |
-
msgstr ""
|
2351 |
-
|
2352 |
-
#: ../classes/views/frm-forms/add_field_links.php:101
|
2353 |
-
msgid "1/6"
|
2354 |
-
msgstr ""
|
2355 |
-
|
2356 |
-
#: ../classes/views/frm-forms/add_field_links.php:102
|
2357 |
-
msgid "1/7"
|
2358 |
-
msgstr ""
|
2359 |
-
|
2360 |
-
#: ../classes/views/frm-forms/add_field_links.php:103
|
2361 |
-
msgid "1/8"
|
2362 |
-
msgstr ""
|
2363 |
-
|
2364 |
-
#: ../classes/views/frm-forms/add_field_links.php:106 ../pro/classes/views/frmpro-
|
2365 |
-
#: fields/back-end/confirmation.php:8 ../pro/classes/views/frmpro-
|
2366 |
-
#: forms/add_form_button_options.php:29
|
2367 |
-
msgid "Inline"
|
2368 |
-
msgstr ""
|
2369 |
-
|
2370 |
-
#: ../classes/views/frm-forms/add_field_links.php:107
|
2371 |
-
msgid "Align fields in a row without a specific width."
|
2372 |
-
msgstr ""
|
2373 |
-
|
2374 |
-
#: ../classes/views/frm-forms/add_field_links.php:111
|
2375 |
-
msgid "100% width"
|
2376 |
-
msgstr ""
|
2377 |
-
|
2378 |
-
#: ../classes/views/frm-forms/add_field_links.php:112
|
2379 |
-
msgid "Force the field to fill the full space with 100% width."
|
2380 |
-
msgstr ""
|
2381 |
-
|
2382 |
-
#: ../classes/views/frm-forms/add_field_links.php:114
|
2383 |
-
msgid "First Grid Row"
|
2384 |
-
msgstr ""
|
2385 |
-
|
2386 |
-
#: ../classes/views/frm-forms/add_field_links.php:115
|
2387 |
-
msgid "Even Grid Row"
|
2388 |
-
msgstr ""
|
2389 |
-
|
2390 |
-
#: ../classes/views/frm-forms/add_field_links.php:116
|
2391 |
-
msgid "Odd Grid Row"
|
2392 |
-
msgstr ""
|
2393 |
-
|
2394 |
-
#: ../classes/views/frm-forms/add_field_links.php:117
|
2395 |
-
msgid "2 Col Options"
|
2396 |
-
msgstr ""
|
2397 |
-
|
2398 |
-
#: ../classes/views/frm-forms/add_field_links.php:117
|
2399 |
-
msgid "Put your radio button or checkbox options into two columns."
|
2400 |
-
msgstr ""
|
2401 |
-
|
2402 |
-
#: ../classes/views/frm-forms/add_field_links.php:118
|
2403 |
-
msgid "3 Col Options"
|
2404 |
-
msgstr ""
|
2405 |
-
|
2406 |
-
#: ../classes/views/frm-forms/add_field_links.php:118
|
2407 |
-
msgid "Put your radio button or checkbox options into three columns."
|
2408 |
-
msgstr ""
|
2409 |
-
|
2410 |
-
#: ../classes/views/frm-forms/add_field_links.php:119
|
2411 |
-
msgid "4 Col Options"
|
2412 |
-
msgstr ""
|
2413 |
-
|
2414 |
-
#: ../classes/views/frm-forms/add_field_links.php:119
|
2415 |
-
msgid "Put your radio button or checkbox options into four columns."
|
2416 |
-
msgstr ""
|
2417 |
-
|
2418 |
-
#: ../classes/views/frm-forms/add_field_links.php:120
|
2419 |
-
msgid ""
|
2420 |
-
"Add this to a read-only field to display the text in bold without a border "
|
2421 |
-
"or background."
|
2422 |
-
msgstr ""
|
2423 |
-
|
2424 |
-
#: ../classes/views/frm-forms/add_field_links.php:121
|
2425 |
-
msgid "Scroll Box"
|
2426 |
-
msgstr ""
|
2427 |
-
|
2428 |
-
#: ../classes/views/frm-forms/add_field_links.php:121
|
2429 |
-
msgid ""
|
2430 |
-
"If you have many checkbox or radio button options, you may add this class to "
|
2431 |
-
"allow your user to easily scroll through the options."
|
2432 |
-
msgstr ""
|
2433 |
-
|
2434 |
-
#: ../classes/views/frm-forms/add_field_links.php:122
|
2435 |
-
msgid "Align Option Text"
|
2436 |
-
msgstr ""
|
2437 |
-
|
2438 |
-
#: ../classes/views/frm-forms/add_field_links.php:122
|
2439 |
-
msgid ""
|
2440 |
-
"If you have a large amount of text in a checkbox or radio button field, use "
|
2441 |
-
"this class to align all the text in a block."
|
2442 |
-
msgstr ""
|
2443 |
-
|
2444 |
-
#: ../classes/views/frm-forms/add_field_links.php:123
|
2445 |
-
msgid "Capitalize"
|
2446 |
-
msgstr ""
|
2447 |
-
|
2448 |
-
#: ../classes/views/frm-forms/add_field_links.php:123
|
2449 |
-
msgid "Automatically capitalize the first letter in each word."
|
2450 |
-
msgstr ""
|
2451 |
-
|
2452 |
-
#: ../classes/views/frm-forms/form.php:10
|
2453 |
-
msgid "Form Key:"
|
2454 |
-
msgstr ""
|
2455 |
-
|
2456 |
-
#: ../classes/views/frm-forms/form.php:11
|
2457 |
-
msgid "Click to edit."
|
2458 |
-
msgstr ""
|
2459 |
-
|
2460 |
-
#: ../classes/views/frm-forms/form.php:24
|
2461 |
-
msgid "1. Name your form"
|
2462 |
-
msgstr ""
|
2463 |
-
|
2464 |
-
#: ../classes/views/frm-forms/form.php:28
|
2465 |
-
msgid "2. Click or drag a field to<br/>add it to your form"
|
2466 |
-
msgstr ""
|
2467 |
-
|
2468 |
-
#: ../classes/views/frm-forms/form.php:34
|
2469 |
-
msgid "Add Fields Here"
|
2470 |
-
msgstr ""
|
2471 |
-
|
2472 |
-
#: ../classes/views/frm-forms/form.php:36
|
2473 |
-
msgid "Or load fields from a template"
|
2474 |
-
msgstr ""
|
2475 |
-
|
2476 |
-
#: ../classes/views/frm-forms/form.php:42
|
2477 |
-
msgid "Load Template"
|
2478 |
-
msgstr ""
|
2479 |
-
|
2480 |
-
#: ../classes/views/frm-forms/form.php:46
|
2481 |
-
msgid "3. Save your form"
|
2482 |
-
msgstr ""
|
2483 |
-
|
2484 |
-
#: ../classes/views/frm-forms/insert_form_popup.php:5
|
2485 |
-
msgid "Close panel"
|
2486 |
-
msgstr ""
|
2487 |
-
|
2488 |
-
#: ../classes/views/frm-forms/insert_form_popup.php:40
|
2489 |
-
msgid "Insert into Post"
|
2490 |
-
msgstr ""
|
2491 |
-
|
2492 |
-
#: ../classes/views/frm-forms/mb_html_tab.php:6
|
2493 |
-
msgid "Field ID"
|
2494 |
-
msgstr ""
|
2495 |
-
|
2496 |
-
#: ../classes/views/frm-forms/mb_html_tab.php:8
|
2497 |
-
msgid "Field Name"
|
2498 |
-
msgstr ""
|
2499 |
-
|
2500 |
-
#: ../classes/views/frm-forms/mb_html_tab.php:11
|
2501 |
-
msgid "Required Label"
|
2502 |
-
msgstr ""
|
2503 |
-
|
2504 |
-
#: ../classes/views/frm-forms/mb_html_tab.php:12
|
2505 |
-
msgid "Input Field"
|
2506 |
-
msgstr ""
|
2507 |
-
|
2508 |
-
#: ../classes/views/frm-forms/mb_html_tab.php:13
|
2509 |
-
msgid "Single Option"
|
2510 |
-
msgstr ""
|
2511 |
-
|
2512 |
-
#: ../classes/views/frm-forms/mb_html_tab.php:13
|
2513 |
-
msgid ""
|
2514 |
-
"Show a single radio or checkbox option by replacing 1 with the order of the "
|
2515 |
-
"option"
|
2516 |
-
msgstr ""
|
2517 |
-
|
2518 |
-
#: ../classes/views/frm-forms/mb_html_tab.php:14
|
2519 |
-
msgid "Hide Option Label"
|
2520 |
-
msgstr ""
|
2521 |
-
|
2522 |
-
#: ../classes/views/frm-forms/mb_html_tab.php:15
|
2523 |
-
msgid "Required Class"
|
2524 |
-
msgstr ""
|
2525 |
-
|
2526 |
-
#: ../classes/views/frm-forms/mb_html_tab.php:15
|
2527 |
-
msgid "Add class name if field is required"
|
2528 |
-
msgstr ""
|
2529 |
-
|
2530 |
-
#: ../classes/views/frm-forms/mb_html_tab.php:16
|
2531 |
-
msgid "Error Class"
|
2532 |
-
msgstr ""
|
2533 |
-
|
2534 |
-
#: ../classes/views/frm-forms/mb_html_tab.php:16
|
2535 |
-
msgid "Add class name if field has an error on form submit"
|
2536 |
-
msgstr ""
|
2537 |
-
|
2538 |
-
#: ../classes/views/frm-forms/mb_html_tab.php:35
|
2539 |
-
msgid "Form Name"
|
2540 |
-
msgstr ""
|
2541 |
-
|
2542 |
-
#: ../classes/views/frm-forms/mb_html_tab.php:36
|
2543 |
-
msgid "Form Key"
|
2544 |
-
msgstr ""
|
2545 |
-
|
2546 |
-
#: ../classes/views/frm-forms/mb_html_tab.php:36
|
2547 |
-
msgid "Delete Entry Link"
|
2548 |
-
msgstr ""
|
2549 |
-
|
2550 |
-
#: ../classes/views/frm-forms/mb_html_tab.php:45
|
2551 |
-
msgid "Button Label"
|
2552 |
-
msgstr ""
|
2553 |
-
|
2554 |
-
#: ../classes/views/frm-forms/mb_html_tab.php:45
|
2555 |
-
msgid "Button Hook"
|
2556 |
-
msgstr ""
|
2557 |
-
|
2558 |
-
#: ../classes/views/frm-forms/mb_insert_fields.php:3 ..
|
2559 |
-
#: pro/classes/controllers/FrmProDisplaysController.php:289
|
2560 |
-
msgid "Customization"
|
2561 |
-
msgstr ""
|
2562 |
-
|
2563 |
-
#: ../classes/views/frm-forms/new.php:2
|
2564 |
-
msgid "Build New Form"
|
2565 |
-
msgstr ""
|
2566 |
-
|
2567 |
-
#: ../classes/views/frm-forms/settings.php:22
|
2568 |
-
msgid "Form Settings"
|
2569 |
-
msgstr ""
|
2570 |
-
|
2571 |
-
#: ../classes/views/frm-forms/settings.php:31
|
2572 |
-
msgid "Customize HTML"
|
2573 |
-
msgstr ""
|
2574 |
-
|
2575 |
-
#: ../classes/views/frm-forms/settings.php:49 ../classes/views/frm-forms/settings.
|
2576 |
-
#: php:169
|
2577 |
-
msgid "On Submit"
|
2578 |
-
msgstr ""
|
2579 |
-
|
2580 |
-
#: ../classes/views/frm-forms/settings.php:50
|
2581 |
-
msgid "Choose what will happen after the user submits this form."
|
2582 |
-
msgstr ""
|
2583 |
-
|
2584 |
-
#: ../classes/views/frm-forms/settings.php:52
|
2585 |
-
msgid " Upgrade to Formidable Pro to get access to all options in the dropdown."
|
2586 |
-
msgstr ""
|
2587 |
-
|
2588 |
-
#: ../classes/views/frm-forms/settings.php:61 ../pro/classes/views/frmpro-
|
2589 |
-
#: forms/add_form_options.php:95
|
2590 |
-
msgid "Show Message"
|
2591 |
-
msgstr ""
|
2592 |
-
|
2593 |
-
#: ../classes/views/frm-forms/settings.php:64 ../classes/views/frm-forms/settings.
|
2594 |
-
#: php:70 ../pro/classes/views/frmpro-forms/add_form_options.php:96
|
2595 |
-
msgid "Redirect to URL"
|
2596 |
-
msgstr ""
|
2597 |
-
|
2598 |
-
#: ../classes/views/frm-forms/settings.php:66 ../classes/views/frm-forms/settings.
|
2599 |
-
#: php:75 ../pro/classes/views/frmpro-forms/add_form_options.php:97
|
2600 |
-
msgid "Show Page Content"
|
2601 |
-
msgstr ""
|
2602 |
-
|
2603 |
-
#: ../classes/views/frm-forms/settings.php:71 ../classes/views/frm-forms/settings.
|
2604 |
-
#: php:76
|
2605 |
-
msgid "(Premium feature)"
|
2606 |
-
msgstr ""
|
2607 |
-
|
2608 |
-
#: ../classes/views/frm-forms/settings.php:91 ../pro/classes/views/frmpro-
|
2609 |
-
#: forms/add_form_options.php:105
|
2610 |
-
msgid "Use Content from Page"
|
2611 |
-
msgstr ""
|
2612 |
-
|
2613 |
-
#: ../classes/views/frm-forms/settings.php:99
|
2614 |
-
msgid "Show the form with the confirmation message"
|
2615 |
-
msgstr ""
|
2616 |
-
|
2617 |
-
#: ../classes/views/frm-forms/settings.php:103
|
2618 |
-
msgid "Do not store entries submitted from this form"
|
2619 |
-
msgstr ""
|
2620 |
-
|
2621 |
-
#: ../classes/views/frm-forms/settings.php:108
|
2622 |
-
msgid "Use Akismet to check entries for spam for"
|
2623 |
-
msgstr ""
|
2624 |
-
|
2625 |
-
#: ../classes/views/frm-forms/settings.php:110
|
2626 |
-
msgid "no one"
|
2627 |
-
msgstr ""
|
2628 |
-
|
2629 |
-
#: ../classes/views/frm-forms/settings.php:111
|
2630 |
-
msgid "everyone"
|
2631 |
-
msgstr ""
|
2632 |
-
|
2633 |
-
#: ../classes/views/frm-forms/settings.php:112
|
2634 |
-
msgid "visitors who are not logged in"
|
2635 |
-
msgstr ""
|
2636 |
-
|
2637 |
-
#: ../classes/views/frm-forms/settings.php:120
|
2638 |
-
msgid "AJAX"
|
2639 |
-
msgstr ""
|
2640 |
-
|
2641 |
-
#: ../classes/views/frm-forms/settings.php:121
|
2642 |
-
msgid "Make stuff happen in the background without a page refresh"
|
2643 |
-
msgstr ""
|
2644 |
-
|
2645 |
-
#: ../classes/views/frm-forms/settings.php:127
|
2646 |
-
msgid "Load and save form builder page with AJAX"
|
2647 |
-
msgstr ""
|
2648 |
-
|
2649 |
-
#: ../classes/views/frm-forms/settings.php:129
|
2650 |
-
msgid "Recommended for long forms."
|
2651 |
-
msgstr ""
|
2652 |
-
|
2653 |
-
#: ../classes/views/frm-forms/settings.php:139
|
2654 |
-
msgid "Styling & Buttons"
|
2655 |
-
msgstr ""
|
2656 |
-
|
2657 |
-
#: ../classes/views/frm-forms/settings.php:140
|
2658 |
-
msgid "Select a style for this form and set the text for your buttons."
|
2659 |
-
msgstr ""
|
2660 |
-
|
2661 |
-
#: ../classes/views/frm-forms/settings.php:144
|
2662 |
-
msgid "Style Template"
|
2663 |
-
msgstr ""
|
2664 |
-
|
2665 |
-
#: ../classes/views/frm-forms/settings.php:146
|
2666 |
-
msgid "Always use default"
|
2667 |
-
msgstr ""
|
2668 |
-
|
2669 |
-
#: ../classes/views/frm-forms/settings.php:152
|
2670 |
-
msgid "Do not use Formidable styling"
|
2671 |
-
msgstr ""
|
2672 |
-
|
2673 |
-
#: ../classes/views/frm-forms/settings.php:156 ../classes/views/frm-settings/form.
|
2674 |
-
#: php:159
|
2675 |
-
msgid "Submit Button Text"
|
2676 |
-
msgstr ""
|
2677 |
-
|
2678 |
-
#: ../classes/views/frm-forms/settings.php:163
|
2679 |
-
msgid "Messages"
|
2680 |
-
msgstr ""
|
2681 |
-
|
2682 |
-
#: ../classes/views/frm-forms/settings.php:164
|
2683 |
-
msgid "Set up your confirmation messages."
|
2684 |
-
msgstr ""
|
2685 |
-
|
2686 |
-
#: ../classes/views/frm-forms/settings.php:178 ../classes/views/frm-settings/form.
|
2687 |
-
#: php:167 ../pro/classes/views/settings/form.php:32
|
2688 |
-
msgid "Miscellaneous"
|
2689 |
-
msgstr ""
|
2690 |
-
|
2691 |
-
#: ../classes/views/frm-forms/settings.php:190
|
2692 |
-
msgid "Add New Action"
|
2693 |
-
msgstr ""
|
2694 |
-
|
2695 |
-
#: ../classes/views/frm-forms/settings.php:211
|
2696 |
-
msgid "Click an action to add it to this form"
|
2697 |
-
msgstr ""
|
2698 |
-
|
2699 |
-
#: ../classes/views/frm-forms/settings.php:220
|
2700 |
-
msgid "Form Classes"
|
2701 |
-
msgstr ""
|
2702 |
-
|
2703 |
-
#: ../classes/views/frm-forms/settings.php:225
|
2704 |
-
msgid "Before Fields"
|
2705 |
-
msgstr ""
|
2706 |
-
|
2707 |
-
#: ../classes/views/frm-forms/settings.php:241
|
2708 |
-
msgid "After Fields"
|
2709 |
-
msgstr ""
|
2710 |
-
|
2711 |
-
#: ../classes/views/frm-forms/settings.php:244
|
2712 |
-
msgid "Submit Button"
|
2713 |
-
msgstr ""
|
2714 |
-
|
2715 |
-
#: ../classes/views/frm-forms/shortcode_opts.php:4
|
2716 |
-
msgid "Select a form:"
|
2717 |
-
msgstr ""
|
2718 |
-
|
2719 |
-
#: ../classes/views/frm-settings/form.php:39 ../classes/views/frm-settings/form.
|
2720 |
-
#: php:213
|
2721 |
-
msgid "Update Options"
|
2722 |
-
msgstr ""
|
2723 |
-
|
2724 |
-
#: ../classes/views/frm-settings/form.php:42
|
2725 |
-
msgid "Styling & Scripts"
|
2726 |
-
msgstr ""
|
2727 |
-
|
2728 |
-
#: ../classes/views/frm-settings/form.php:44
|
2729 |
-
msgid "Load form styling"
|
2730 |
-
msgstr ""
|
2731 |
-
|
2732 |
-
#: ../classes/views/frm-settings/form.php:46
|
2733 |
-
msgid "on every page of your site"
|
2734 |
-
msgstr ""
|
2735 |
-
|
2736 |
-
#: ../classes/views/frm-settings/form.php:47
|
2737 |
-
msgid "only on applicable pages"
|
2738 |
-
msgstr ""
|
2739 |
-
|
2740 |
-
#: ../classes/views/frm-settings/form.php:48
|
2741 |
-
msgid "Don't use form styling on any page"
|
2742 |
-
msgstr ""
|
2743 |
-
|
2744 |
-
#: ../classes/views/frm-settings/form.php:54
|
2745 |
-
msgid "Use HTML5 in forms"
|
2746 |
-
msgstr ""
|
2747 |
-
|
2748 |
-
#: ../classes/views/frm-settings/form.php:56
|
2749 |
-
msgid ""
|
2750 |
-
"We recommend using HTML 5 for your forms. It adds some nifty options like "
|
2751 |
-
"placeholders, patterns, and autocomplete."
|
2752 |
-
msgstr ""
|
2753 |
-
|
2754 |
-
#: ../classes/views/frm-settings/form.php:61
|
2755 |
-
msgid "User Permissions"
|
2756 |
-
msgstr ""
|
2757 |
-
|
2758 |
-
#: ../classes/views/frm-settings/form.php:62
|
2759 |
-
msgid ""
|
2760 |
-
"Select users that are allowed access to Formidable. Without access to View "
|
2761 |
-
"Forms, users will be unable to see the Formidable menu."
|
2762 |
-
msgstr ""
|
2763 |
-
|
2764 |
-
#: ../classes/views/frm-settings/form.php:75
|
2765 |
-
msgid ""
|
2766 |
-
"reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books "
|
2767 |
-
"while blocking spam on your blog. reCAPTCHA asks commenters to retype two "
|
2768 |
-
"words scanned from a book to prove that they are a human. This verifies that "
|
2769 |
-
"they are not a spambot."
|
2770 |
-
msgstr ""
|
2771 |
-
|
2772 |
-
#: ../classes/views/frm-settings/form.php:79
|
2773 |
-
#, php-format
|
2774 |
-
msgid ""
|
2775 |
-
"reCAPTCHA requires a Site and Private API key. Sign up for a %1$sfree "
|
2776 |
-
"reCAPTCHA key%2$s."
|
2777 |
-
msgstr ""
|
2778 |
-
|
2779 |
-
#: ../classes/views/frm-settings/form.php:83 ../classes/views/frm-settings/form.
|
2780 |
-
#: php:86
|
2781 |
-
msgid "Optional"
|
2782 |
-
msgstr ""
|
2783 |
-
|
2784 |
-
#: ../classes/views/frm-settings/form.php:85
|
2785 |
-
msgid "Secret Key"
|
2786 |
-
msgstr ""
|
2787 |
-
|
2788 |
-
#: ../classes/views/frm-settings/form.php:88
|
2789 |
-
msgid "reCAPTCHA Type"
|
2790 |
-
msgstr ""
|
2791 |
-
|
2792 |
-
#: ../classes/views/frm-settings/form.php:91
|
2793 |
-
msgid "Checkbox (V2)"
|
2794 |
-
msgstr ""
|
2795 |
-
|
2796 |
-
#: ../classes/views/frm-settings/form.php:94
|
2797 |
-
msgid "Invisible"
|
2798 |
-
msgstr ""
|
2799 |
-
|
2800 |
-
#: ../classes/views/frm-settings/form.php:100
|
2801 |
-
msgid "Browser Default"
|
2802 |
-
msgstr ""
|
2803 |
-
|
2804 |
-
#: ../classes/views/frm-settings/form.php:107
|
2805 |
-
msgid "Multiple reCaptchas"
|
2806 |
-
msgstr ""
|
2807 |
-
|
2808 |
-
#: ../classes/views/frm-settings/form.php:110
|
2809 |
-
msgid "Allow multiple reCaptchas to be used on a single page"
|
2810 |
-
msgstr ""
|
2811 |
-
|
2812 |
-
#: ../classes/views/frm-settings/form.php:114
|
2813 |
-
msgid "Default Messages"
|
2814 |
-
msgstr ""
|
2815 |
-
|
2816 |
-
#: ../classes/views/frm-settings/form.php:115
|
2817 |
-
msgid ""
|
2818 |
-
"You can override the success message and submit button settings on "
|
2819 |
-
"individual forms."
|
2820 |
-
msgstr ""
|
2821 |
-
|
2822 |
-
#: ../classes/views/frm-settings/form.php:119
|
2823 |
-
msgid "Failed/Duplicate Entry"
|
2824 |
-
msgstr ""
|
2825 |
-
|
2826 |
-
#: ../classes/views/frm-settings/form.php:120
|
2827 |
-
msgid ""
|
2828 |
-
"The message seen when a form is submitted and passes validation, but "
|
2829 |
-
"something goes wrong."
|
2830 |
-
msgstr ""
|
2831 |
-
|
2832 |
-
#: ../classes/views/frm-settings/form.php:126
|
2833 |
-
msgid "Blank Field"
|
2834 |
-
msgstr ""
|
2835 |
-
|
2836 |
-
#: ../classes/views/frm-settings/form.php:127
|
2837 |
-
msgid "The message seen when a required field is left blank."
|
2838 |
-
msgstr ""
|
2839 |
-
|
2840 |
-
#: ../classes/views/frm-settings/form.php:133
|
2841 |
-
msgid "Incorrect Field"
|
2842 |
-
msgstr ""
|
2843 |
-
|
2844 |
-
#: ../classes/views/frm-settings/form.php:134
|
2845 |
-
msgid "The message seen when a field response is either incorrect or missing."
|
2846 |
-
msgstr ""
|
2847 |
-
|
2848 |
-
#: ../classes/views/frm-settings/form.php:141
|
2849 |
-
msgid "Unique Value"
|
2850 |
-
msgstr ""
|
2851 |
-
|
2852 |
-
#: ../classes/views/frm-settings/form.php:142
|
2853 |
-
msgid ""
|
2854 |
-
"The message seen when a user selects a value in a unique field that has "
|
2855 |
-
"already been used."
|
2856 |
-
msgstr ""
|
2857 |
-
|
2858 |
-
#: ../classes/views/frm-settings/form.php:153
|
2859 |
-
msgid "The default message seen after a form is submitted."
|
2860 |
-
msgstr ""
|
2861 |
-
|
2862 |
-
#: ../classes/views/frm-settings/form.php:172
|
2863 |
-
msgid "Preview Page"
|
2864 |
-
msgstr ""
|
2865 |
-
|
2866 |
-
#: ../classes/views/frm-settings/form.php:177
|
2867 |
-
msgid "IP storage"
|
2868 |
-
msgstr ""
|
2869 |
-
|
2870 |
-
#: ../classes/views/frm-settings/form.php:180
|
2871 |
-
msgid "Do not store IPs with form submissions. Check this box if you are in the UK."
|
2872 |
-
msgstr ""
|
2873 |
-
|
2874 |
-
#: ../classes/views/frm-settings/form.php:209
|
2875 |
-
msgid "Uninstall Formidable"
|
2876 |
-
msgstr ""
|
2877 |
-
|
2878 |
-
#: ../classes/views/frm-settings/license_box.php:5
|
2879 |
-
msgid ""
|
2880 |
-
"Get 15 more field types, including multiple file upload fields and cascading "
|
2881 |
-
"lookup fields. PLUS multi-page forms, calculations, repeatable sections, "
|
2882 |
-
"confirmation fields, conditional logic, front-end editing, views, data "
|
2883 |
-
"management, and graph & stat reporting."
|
2884 |
-
msgstr ""
|
2885 |
-
|
2886 |
-
#: ../classes/views/frm-settings/license_box.php:6
|
2887 |
-
#, php-format
|
2888 |
-
msgid "%1$sClick here%2$s to go Pro."
|
2889 |
-
msgstr ""
|
2890 |
-
|
2891 |
-
#: ../classes/views/frm-settings/license_box.php:9 ..
|
2892 |
-
#: pro/classes/controllers/FrmProEddController.php:133
|
2893 |
-
msgid "Click here"
|
2894 |
-
msgstr ""
|
2895 |
-
|
2896 |
-
#: ../classes/views/shared/head.php:2
|
2897 |
-
msgid "Use wp_enqueue_script and wp_enqueue_style."
|
2898 |
-
msgstr ""
|
2899 |
-
|
2900 |
-
#: ../classes/views/shared/mb_adv_info.php:3
|
2901 |
-
msgid "Insert Fields"
< |