Formidable Forms – Form Builder for WordPress - Version 3.04.01

Version Description

  • New: When a form includes a user ID field, include helpers in the Advanced tab to get data from the user profile for use in emails and other form actions.
  • Code: Refactor and clean up the code for the Advanced tab in the form settings sidebar
  • Code: Add frm_advanced_helpers hook to move some Advanced shortcode examples to Pro
  • Code: Add frm_field_code_tab hook to add extra shortcodes in the customization sidebar for a single field
  • Update translations
Download this release

Release Info

Developer sswells
Plugin Icon 128x128 Formidable Forms – Form Builder for WordPress
Version 3.04.01
Comparing to
See all releases

Code changes from version 3.04 to 3.04.01

classes/controllers/FrmFormsController.php CHANGED
@@ -786,13 +786,46 @@ class FrmFormsController {
786
  $settings_tab = FrmAppHelper::is_admin_page( 'formidable' ) ? true : false;
787
 
788
  $cond_shortcodes = apply_filters( 'frm_conditional_shortcodes', array() );
789
- $adv_shortcodes = self::get_advanced_shortcodes();
790
- $user_fields = apply_filters( 'frm_user_shortcodes', array() );
791
  $entry_shortcodes = self::get_shortcode_helpers( $settings_tab );
792
 
 
 
793
  include( FrmAppHelper::plugin_path() . '/classes/views/shared/mb_adv_info.php' );
794
  }
795
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
796
  /**
797
  * Get an array of the options to display in the advanced tab
798
  * of the customization panel
@@ -817,6 +850,23 @@ class FrmFormsController {
817
  return $adv_shortcodes;
818
  }
819
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
820
  /**
821
  * Get an array of the helper shortcodes to display in the customization panel
822
  * @since 2.0.6
786
  $settings_tab = FrmAppHelper::is_admin_page( 'formidable' ) ? true : false;
787
 
788
  $cond_shortcodes = apply_filters( 'frm_conditional_shortcodes', array() );
 
 
789
  $entry_shortcodes = self::get_shortcode_helpers( $settings_tab );
790
 
791
+ $advanced_helpers = self::advanced_helpers( compact( 'fields', 'form_id' ) );
792
+
793
  include( FrmAppHelper::plugin_path() . '/classes/views/shared/mb_adv_info.php' );
794
  }
795
 
796
+ /**
797
+ * @since 3.04.01
798
+ */
799
+ private static function advanced_helpers( $atts ) {
800
+ $advanced_helpers = array(
801
+ 'default' => array(
802
+ 'heading' => __( 'Customize the field values with the following parameters. Click to see a sample.', 'formidable' ),
803
+ 'codes' => self::get_advanced_shortcodes(),
804
+ ),
805
+ );
806
+
807
+ $user_fields = self::user_shortcodes();
808
+ if ( ! empty( $user_fields ) ) {
809
+ $user_helpers = array();
810
+ foreach ( $user_fields as $uk => $uf ) {
811
+ $user_helpers[ '|user_id| show="' . $uk . '"' ] = $uf;
812
+ unset( $uk, $uf );
813
+ }
814
+
815
+ $advanced_helpers['user_id'] = array(
816
+ 'heading' => __( 'Insert user information', 'formidable' ),
817
+ 'codes' => $user_helpers,
818
+ );
819
+ }
820
+
821
+ /**
822
+ * Add extra helper shortcodes on the Advanced tab in form settings and views
823
+ * @since 3.04.01
824
+ * @param array $atts - Includes fields and form_id
825
+ */
826
+ return apply_filters( 'frm_advanced_helpers', $advanced_helpers, $atts );
827
+ }
828
+
829
  /**
830
  * Get an array of the options to display in the advanced tab
831
  * of the customization panel
850
  return $adv_shortcodes;
851
  }
852
 
853
+ /**
854
+ * @since 3.04.01
855
+ */
856
+ private static function user_shortcodes() {
857
+ $options = array(
858
+ 'ID' => __( 'User ID', 'formidable' ),
859
+ 'first_name' => __( 'First Name', 'formidable' ),
860
+ 'last_name' => __( 'Last Name', 'formidable' ),
861
+ 'display_name' => __( 'Display Name', 'formidable' ),
862
+ 'user_login' => __( 'User Login', 'formidable' ),
863
+ 'user_email' => __( 'Email', 'formidable' ),
864
+ 'avatar' => __( 'Avatar', 'formidable' ),
865
+ 'author_link' => __( 'Author Link', 'formidable' ),
866
+ );
867
+ return apply_filters( 'frm_user_shortcodes', $options );
868
+ }
869
+
870
  /**
871
  * Get an array of the helper shortcodes to display in the customization panel
872
  * @since 2.0.6
classes/helpers/FrmAppHelper.php CHANGED
@@ -11,7 +11,7 @@ class FrmAppHelper {
11
  /**
12
  * @since 2.0
13
  */
14
- public static $plug_version = '3.04';
15
 
16
  /**
17
  * @since 1.07.02
11
  /**
12
  * @since 2.0
13
  */
14
+ public static $plug_version = '3.04.01';
15
 
16
  /**
17
  * @since 1.07.02
classes/models/FrmFieldFormHtml.php CHANGED
@@ -325,6 +325,10 @@ class FrmFieldFormHtml {
325
  unset( $shortcode_atts['class'] );
326
  }
327
 
 
 
 
 
328
  $this->field_obj->set_field_column( 'shortcodes', $shortcode_atts );
329
 
330
  return $shortcode_atts;
325
  unset( $shortcode_atts['class'] );
326
  }
327
 
328
+ if ( isset( $this->pass_args['errors'][ 'field' . $this->field_id ] ) ) {
329
+ $shortcode_atts['aria-invalid'] = 'true';
330
+ }
331
+
332
  $this->field_obj->set_field_column( 'shortcodes', $shortcode_atts );
333
 
334
  return $shortcode_atts;
classes/views/shared/errors.php CHANGED
@@ -12,7 +12,7 @@ if ( isset( $message ) && '' !== $message ) {
12
 
13
  if ( isset( $errors ) && is_array( $errors ) && count( $errors ) > 0 ) {
14
  ?>
15
- <div class="error">
16
  <ul id="frm_errors">
17
  <?php
18
  foreach ( $errors as $error ) {
12
 
13
  if ( isset( $errors ) && is_array( $errors ) && count( $errors ) > 0 ) {
14
  ?>
15
+ <div class="error" role="alert">
16
  <ul id="frm_errors">
17
  <?php
18
  foreach ( $errors as $error ) {
classes/views/shared/mb_adv_info.php CHANGED
@@ -23,14 +23,7 @@
23
  <ul class="frm_code_list frm_full_width frm_customize_field_list">
24
  <?php
25
  if ( ! empty( $fields ) ) {
26
- global $wpdb;
27
- $linked_forms[] = array();
28
-
29
  foreach ( $fields as $f ) {
30
- if ( FrmField::is_repeating_field( $f ) ) {
31
- $repeat_field = $f->id;
32
- }
33
-
34
  if ( FrmField::is_no_save_field( $f->type ) ) {
35
  continue;
36
  }
@@ -48,42 +41,12 @@
48
  )
49
  );
50
 
51
- if ( $f->type == 'data' ) {
52
- //get all fields from linked form
53
- if ( isset( $f->field_options['form_select'] ) && is_numeric( $f->field_options['form_select'] ) ) {
54
- $linked_form = FrmDb::get_var( $wpdb->prefix . 'frm_fields', array( 'id' => $f->field_options['form_select'] ), 'form_id' );
55
- if ( ! in_array( $linked_form, $linked_forms ) ) {
56
- $linked_forms[] = $linked_form;
57
- $linked_fields = FrmField::getAll(
58
- array(
59
- 'fi.type not' => FrmField::no_save_fields(),
60
- 'fi.form_id' => $linked_form,
61
- )
62
- );
63
- $ldfe = '';
64
- if ( $linked_fields ) {
65
- foreach ( $linked_fields as $linked_field ) {
66
- FrmAppHelper::insert_opt_html(
67
- array(
68
- 'id' => $f->id . ' show=' . $linked_field->id,
69
- 'key' => $f->field_key . ' show=' . $linked_field->field_key,
70
- 'name' => $linked_field->name,
71
- 'type' => $linked_field->type,
72
- )
73
- );
74
 
75
- $ldfe = $linked_field->id;
76
- unset( $linked_field );
77
- }
78
- }
79
- }
80
- }
81
- $dfe = $f->id;
82
- }
83
  unset( $f );
84
- }
85
  }
86
- ?>
 
87
  </ul>
88
 
89
  <p class="howto">
@@ -142,8 +105,6 @@
142
 
143
  if ( $f->type == 'user_id' ) {
144
  $uid = $f;
145
- } else if ( $f->type == 'file' ) {
146
- $file = $f;
147
  }
148
  unset( $f );
149
  }
@@ -170,89 +131,36 @@
170
  <?php } ?>
171
 
172
  <div id="frm-adv-info-tab" class="tabs-panel">
173
- <p class="howto">
174
- <?php esc_html_e( 'Customize the field values with the following parameters. Click to see a sample.', 'formidable' ) ?>
175
- </p>
176
- <ul class="frm_code_list">
177
- <?php
178
- $col = 'one';
179
- foreach ( $adv_shortcodes as $skey => $sname ) {
180
- ?>
181
- <li class="frm_col_<?php echo esc_attr( $col ) ?>">
182
- <a href="javascript:void(0)" class="frmbutton button frm_insert_code <?php echo is_array( $sname ) ? 'frm_help' : ''; ?>" data-code="x <?php echo esc_attr( $skey ) ?>" <?php echo is_array( $sname ) ? 'title="' . esc_attr( $sname['title'] ) . '"' : ''; ?>>
183
- <?php echo esc_html( is_array( $sname ) ? $sname['label'] : $sname ); ?>
184
- </a>
185
- </li>
186
  <?php
187
- $col = ( $col == 'one' ) ? 'two' : 'one';
188
- unset( $skey, $sname );
189
- }
190
- ?>
191
- <?php if ( isset( $file ) ) { ?>
192
- <li class="frm_col_<?php echo esc_attr( $col ) ?>">
193
- <a href="javascript:void(0)" class="frmbutton button frm_insert_code" data-code="<?php echo esc_attr( $file->id ); ?> show_image=1"><?php esc_html_e( 'Show image', 'formidable' ); ?></a>
194
- </li>
195
- <?php $col = ( $col == 'one' ? 'two' : 'one' ); ?>
196
- <li class="frm_col_<?php echo esc_attr( $col ) ?>">
197
- <a href="javascript:void(0)" class="frmbutton button frm_insert_code" data-code="<?php echo esc_attr( $file->id ); ?> show=id"><?php esc_html_e( 'Image ID', 'formidable' ); ?></a>
198
- </li>
199
- <?php $col = ( $col == 'one' ? 'two' : 'one' ); ?>
200
- <li class="frm_col_<?php echo esc_attr( $col ) ?>">
201
- <a href="javascript:void(0)" class="frmbutton button frm_insert_code" data-code="<?php echo esc_attr( $file->id ); ?> show_filename=1"><?php esc_html_e( 'Image Name', 'formidable' ); ?></a>
202
- </li>
203
- <?php } ?>
204
- </ul>
205
 
206
- <div class="clear"></div>
207
- <?php
 
 
208
 
209
- if ( isset( $uid ) && ! empty( $user_fields ) ) {
210
  $col = 'one';
211
  ?>
212
- <p class="howto"><?php esc_html_e( 'Insert user information', 'formidable' ); ?></p>
213
- <ul class="frm_code_list">
214
- <?php foreach ( $user_fields as $uk => $uf ) { ?>
215
- <li class="frm_col_<?php echo esc_attr( $col ) ?>">
216
- <a href="javascript:void(0)" class="frmbutton button frm_insert_code" data-code="<?php echo esc_attr( $uid->id . ' show="' . $uk . '"' ) ?>"><?php echo esc_html( $uf ) ?></a>
217
- </li>
218
  <?php
219
- $col = ( $col == 'one' ) ? 'two' : 'one';
220
- unset( $uf, $uk );
221
- }
222
- unset( $uid );
223
- ?>
224
- </ul>
 
 
 
 
 
 
 
 
225
  <?php
226
- }
227
-
228
- if ( isset( $repeat_field ) ) {
229
  ?>
230
- <div class="clear"></div>
231
- <p class="howto"><?php esc_html_e( 'Repeating field options', 'formidable' ) ?></p>
232
- <ul class="frm_code_list">
233
- <li class="frm_col_one">
234
- <a href="javascript:void(0)" class="frmbutton button frm_insert_code" data-code="<?php echo esc_attr( 'foreach ' . $repeat_field . '][/foreach' ) ?>"><?php esc_html_e( 'For Each', 'formidable' ); ?></a>
235
- </li>
236
- </ul>
237
- <?php
238
- }
239
-
240
- if ( isset( $dfe ) ) {
241
- ?>
242
-
243
- <div class="clear"></div>
244
- <p class="howto"><?php esc_html_e( 'Dynamic field options', 'formidable' ); ?></p>
245
- <ul class="frm_code_list">
246
- <li class="frm_col_one">
247
- <a href="javascript:void(0)" class="frmbutton button frm_insert_code" data-code="<?php echo esc_attr( $dfe . ' show="created-at"' ) ?>"><?php esc_html_e( 'Creation Date', 'formidable' ); ?></a>
248
- </li>
249
- <?php if ( isset( $ldfe ) ) { ?>
250
- <li class="frm_col_two">
251
- <a href="javascript:void(0)" class="frmbutton button frm_insert_code" data-code="<?php echo esc_attr( $dfe . ' show="' . $ldfe . '"' ) ?>"><?php esc_html_e( 'Field From Entry', 'formidable' ); ?></a>
252
- </li>
253
- <?php } ?>
254
- </ul>
255
- <?php } ?>
256
 
257
  </div>
258
 
23
  <ul class="frm_code_list frm_full_width frm_customize_field_list">
24
  <?php
25
  if ( ! empty( $fields ) ) {
 
 
 
26
  foreach ( $fields as $f ) {
 
 
 
 
27
  if ( FrmField::is_no_save_field( $f->type ) ) {
28
  continue;
29
  }
41
  )
42
  );
43
 
44
+ do_action( 'frm_field_code_tab', array( 'field' => $f ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
 
 
 
 
 
 
 
 
 
46
  unset( $f );
 
47
  }
48
+ }
49
+ ?>
50
  </ul>
51
 
52
  <p class="howto">
105
 
106
  if ( $f->type == 'user_id' ) {
107
  $uid = $f;
 
 
108
  }
109
  unset( $f );
110
  }
131
  <?php } ?>
132
 
133
  <div id="frm-adv-info-tab" class="tabs-panel">
 
 
 
 
 
 
 
 
 
 
 
 
 
134
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
135
 
136
+ foreach ( $advanced_helpers as $helper_type => $helper ) {
137
+ if ( 'user_id' === $helper_type && ! isset( $uid ) ) {
138
+ continue;
139
+ }
140
 
 
141
  $col = 'one';
142
  ?>
143
+ <div class="clear"></div>
144
+ <p class="howto"><?php echo esc_html( $helper['heading'] ); ?></p>
145
+ <ul class="frm_code_list">
 
 
 
146
  <?php
147
+ foreach ( $helper['codes'] as $code => $code_label ) {
148
+ $code = str_replace( '|user_id|', $uid->id, $code );
149
+ ?>
150
+ <li class="frm_col_<?php echo esc_attr( $col ) ?>">
151
+ <a href="javascript:void(0)" class="frmbutton button frm_insert_code <?php echo is_array( $code_label ) ? 'frm_help' : ''; ?>" data-code="x <?php echo esc_attr( $code ) ?>" <?php echo is_array( $code_label ) ? 'title="' . esc_attr( $code_label['title'] ) . '"' : ''; ?>>
152
+ <?php echo esc_html( is_array( $code_label ) ? $code_label['label'] : $code_label ); ?>
153
+ </a>
154
+ </li>
155
+ <?php
156
+ $col = ( $col == 'one' ) ? 'two' : 'one';
157
+ unset( $code );
158
+ }
159
+ ?>
160
+ </ul>
161
  <?php
162
+ }
 
 
163
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
 
165
  </div>
166
 
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: 3.04
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: 3.04.01
6
  Plugin URI: https://formidableforms.com/
7
  Author URI: https://formidableforms.com/
8
  Author: Strategy11
languages/formidable-az_AZ.mo CHANGED
Binary file
languages/formidable-az_AZ.po CHANGED
@@ -1,6 +1,6 @@
1
  msgid ""
2
  msgstr ""
3
- "PO-Revision-Date: 2018-09-12 16:45+0000\n"
4
  "MIME-Version: 1.0\n"
5
  "Content-Type: text/plain; charset=UTF-8\n"
6
  "Content-Transfer-Encoding: 8bit\n"
@@ -9,7 +9,7 @@ msgstr ""
9
  "Language: az_AZ\n"
10
  "Project-Id-Version: Formidable Forms\n"
11
  "Report-Msgid-Bugs-To: \n"
12
- "POT-Creation-Date: 2018-09-12 16:44+0000\n"
13
  "Last-Translator: Formidable Community\n"
14
  "Language-Team: Azerbaijani (Azerbaijan)"
15
 
@@ -25,17 +25,17 @@ msgstr "Pro versiyasına yüksəlt"
25
  msgid "There are no plugins on your site that require a license"
26
  msgstr ""
27
 
28
- #: classes/controllers/FrmAppController.php:91
29
  msgid "Build"
30
  msgstr ""
31
 
32
- #: classes/controllers/FrmAppController.php:98
33
  #: classes/helpers/FrmFormsListHelper.php:336
34
  #: classes/views/frm-forms/settings.php:10
35
  msgid "Settings"
36
  msgstr "Parametrlər"
37
 
38
- #: classes/controllers/FrmAppController.php:105
39
  #: classes/controllers/FrmEntriesController.php:8
40
  #: classes/controllers/FrmEntriesController.php:8
41
  #: classes/controllers/FrmEntriesController.php:126
@@ -45,11 +45,11 @@ msgstr "Parametrlər"
45
  msgid "Entries"
46
  msgstr ""
47
 
48
- #: classes/controllers/FrmAppController.php:121
49
  msgid "Build a Form"
50
  msgstr ""
51
 
52
- #: classes/controllers/FrmAppController.php:154
53
  #, php-format
54
  msgid ""
55
  "This site has been previously authorized to run Formidable Forms. "
@@ -57,7 +57,7 @@ msgid ""
57
  "running the free version and remove this message."
58
  msgstr ""
59
 
60
- #: classes/controllers/FrmAppController.php:513
61
  #, php-format
62
  msgid ""
63
  "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress."
@@ -93,7 +93,7 @@ msgid "Support"
93
  msgstr "Dəstək"
94
 
95
  #: classes/controllers/FrmEntriesController.php:105
96
- #: classes/controllers/FrmFormsController.php:827
97
  #: classes/views/frm-entries/form.php:43
98
  #: classes/views/frm-entries/sidebar-shared.php:38
99
  msgid "Entry Key"
@@ -149,11 +149,11 @@ msgstr ""
149
  msgid "No entries were specified"
150
  msgstr ""
151
 
152
- #: classes/controllers/FrmFieldsController.php:302
153
  msgid "Other"
154
  msgstr "Digər"
155
 
156
- #: classes/controllers/FrmFieldsController.php:305
157
  msgid "New Option"
158
  msgstr ""
159
 
@@ -162,7 +162,7 @@ msgstr ""
162
  msgid "Form Actions"
163
  msgstr ""
164
 
165
- #: classes/controllers/FrmFormActionsController.php:210
166
  #: classes/models/FrmEntryValidate.php:14 classes/models/FrmSettings.php:100
167
  msgid "You do not have permission to do that"
168
  msgstr ""
@@ -184,7 +184,7 @@ msgid "Form was Successfully Updated"
184
  msgstr ""
185
 
186
  #: classes/controllers/FrmFormsController.php:232
187
- #: classes/controllers/FrmFormsController.php:1662
188
  msgid "Form template was Successfully Created"
189
  msgstr ""
190
 
@@ -293,89 +293,133 @@ msgstr ""
293
  msgid "That template cannot be edited"
294
  msgstr ""
295
 
296
- #: classes/controllers/FrmFormsController.php:804
 
 
 
 
 
 
 
 
 
 
297
  msgid "Separator"
298
  msgstr ""
299
 
300
- #: classes/controllers/FrmFormsController.php:805
301
  msgid "Use a different separator for checkbox fields"
302
  msgstr ""
303
 
304
- #: classes/controllers/FrmFormsController.php:807
305
  msgid "Date Format"
306
  msgstr "Tarix Formatı"
307
 
308
- #: classes/controllers/FrmFormsController.php:808
309
  msgid "Field Label"
310
  msgstr ""
311
 
312
- #: classes/controllers/FrmFormsController.php:810
313
  msgid "No Auto P"
314
  msgstr ""
315
 
316
- #: classes/controllers/FrmFormsController.php:811
317
  msgid "Do not automatically add any paragraphs or line breaks"
318
  msgstr ""
319
 
320
- #: classes/controllers/FrmFormsController.php:826
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
321
  #: classes/views/frm-entries/sidebar-shared.php:32
322
  msgid "Entry ID"
323
  msgstr ""
324
 
325
- #: classes/controllers/FrmFormsController.php:828
326
  msgid "Post ID"
327
  msgstr "Yazı ID"
328
 
329
- #: classes/controllers/FrmFormsController.php:829
330
  msgid "User IP"
331
  msgstr ""
332
 
333
- #: classes/controllers/FrmFormsController.php:830
334
  msgid "Entry created"
335
  msgstr ""
336
 
337
- #: classes/controllers/FrmFormsController.php:831
338
  msgid "Entry updated"
339
  msgstr ""
340
 
341
- #: classes/controllers/FrmFormsController.php:833
342
  msgid "Site URL"
343
  msgstr "Sayt URL-i"
344
 
345
- #: classes/controllers/FrmFormsController.php:834
346
  msgid "Site Name"
347
  msgstr ""
348
 
349
- #: classes/controllers/FrmFormsController.php:842
350
  msgid "Default Msg"
351
  msgstr ""
352
 
353
- #: classes/controllers/FrmFormsController.php:843
354
  msgid "Default HTML"
355
  msgstr ""
356
 
357
- #: classes/controllers/FrmFormsController.php:844
358
  msgid "Default Plain"
359
  msgstr ""
360
 
361
- #: classes/controllers/FrmFormsController.php:932
362
  msgid "No forms were specified"
363
  msgstr ""
364
 
365
- #: classes/controllers/FrmFormsController.php:1079
366
  msgid "Abnormal HTML characters prevented your form from saving correctly"
367
  msgstr ""
368
 
369
- #: classes/controllers/FrmFormsController.php:1194
370
- #: classes/controllers/FrmFormsController.php:1208
371
  msgid "Please select a valid form"
372
  msgstr ""
373
 
374
- #: classes/controllers/FrmFormsController.php:1436
375
  msgid "Please wait while you are redirected."
376
  msgstr ""
377
 
378
- #: classes/controllers/FrmFormsController.php:1470
379
  #, php-format
380
  msgid "%1$sClick here%2$s if you are not automatically redirected."
381
  msgstr ""
@@ -2171,7 +2215,8 @@ msgstr "Zibil qutusu"
2171
  msgid "Delete Permanently"
2172
  msgstr "Birdəfəlik sil"
2173
 
2174
- #: classes/helpers/FrmFormsHelper.php:835 classes/models/FrmFormAction.php:703
 
2175
  msgid "Delete"
2176
  msgstr "Sil"
2177
 
@@ -2587,7 +2632,7 @@ msgid_plural "%1$s Forms"
2587
  msgstr[0] ""
2588
  msgstr[1] ""
2589
 
2590
- #: classes/helpers/FrmXMLHelper.php:853
2591
  #, php-format
2592
  msgid "%1$s Field"
2593
  msgid_plural "%1$s Fields"
@@ -2784,10 +2829,6 @@ msgstr ""
2784
  msgid "Dropdown"
2785
  msgstr ""
2786
 
2787
- #: classes/models/FrmField.php:34
2788
- msgid "Email"
2789
- msgstr "ايميل"
2790
-
2791
  #: classes/models/FrmField.php:38
2792
  msgid "Website/URL"
2793
  msgstr ""
@@ -2808,10 +2849,6 @@ msgstr "HTML"
2808
  msgid "Hidden Field"
2809
  msgstr ""
2810
 
2811
- #: classes/models/FrmField.php:58
2812
- msgid "User ID"
2813
- msgstr ""
2814
-
2815
  #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
2816
  msgid "reCAPTCHA"
2817
  msgstr "reCAPTCHA"
@@ -2898,18 +2935,18 @@ msgstr ""
2898
  msgid "There are no options for this action."
2899
  msgstr ""
2900
 
2901
- #: classes/models/FrmFormAction.php:700
2902
  #: classes/views/frm-forms/_publish_box.php:30
2903
  msgid "Save Draft"
2904
  msgstr ""
2905
 
2906
- #: classes/models/FrmFormAction.php:701
2907
  #: classes/views/frm-forms/add_field_links.php:7
2908
  #: classes/views/frm-forms/form.php:61
2909
  msgid "Create"
2910
  msgstr ""
2911
 
2912
- #: classes/models/FrmFormAction.php:702
2913
  #: classes/views/frm-forms/_publish_box.php:34
2914
  #: classes/views/frm-forms/_publish_box.php:38
2915
  #: classes/views/frm-forms/add_field_links.php:7
@@ -2918,10 +2955,22 @@ msgstr ""
2918
  msgid "Update"
2919
  msgstr "Yenilə"
2920
 
2921
- #: classes/models/FrmFormAction.php:704 classes/views/xml/import_form.php:10
2922
  msgid "Import"
2923
  msgstr "İdxal"
2924
 
 
 
 
 
 
 
 
 
 
 
 
 
2925
  #: classes/models/FrmMigrate.php:485
2926
  msgid "Sending"
2927
  msgstr ""
@@ -3283,6 +3332,10 @@ msgstr ""
3283
  msgid "Highrise"
3284
  msgstr ""
3285
 
 
 
 
 
3286
  #: classes/views/frm-forms/_publish_box.php:44
3287
  msgid "Preview"
3288
  msgstr "Ön izləmə"
@@ -3966,80 +4019,38 @@ msgid "HTML Tags"
3966
  msgstr ""
3967
 
3968
  #: classes/views/shared/mb_adv_info.php:15
3969
- #: classes/views/shared/mb_adv_info.php:124
3970
  msgid "IDs"
3971
  msgstr ""
3972
 
3973
  #: classes/views/shared/mb_adv_info.php:16
3974
- #: classes/views/shared/mb_adv_info.php:125
3975
  msgid "Keys"
3976
  msgstr ""
3977
 
3978
  #: classes/views/shared/mb_adv_info.php:18
3979
- #: classes/views/shared/mb_adv_info.php:127
3980
  msgid "Fields from your form"
3981
  msgstr ""
3982
 
3983
- #: classes/views/shared/mb_adv_info.php:90
3984
  msgid ""
3985
  "Click a button below to insert extra values from form entries or your site "
3986
  "settings."
3987
  msgstr ""
3988
 
3989
- #: classes/views/shared/mb_adv_info.php:93
3990
  msgid "Helpers"
3991
  msgstr ""
3992
 
3993
- #: classes/views/shared/mb_adv_info.php:137
3994
  msgid "Conditional text here"
3995
  msgstr ""
3996
 
3997
- #: classes/views/shared/mb_adv_info.php:154
3998
  msgid "Click a button below to insert sample logic into your view"
3999
  msgstr ""
4000
 
4001
- #: classes/views/shared/mb_adv_info.php:174
4002
- msgid ""
4003
- "Customize the field values with the following parameters. Click to see a "
4004
- "sample."
4005
- msgstr ""
4006
-
4007
- #: classes/views/shared/mb_adv_info.php:193
4008
- msgid "Show image"
4009
- msgstr ""
4010
-
4011
- #: classes/views/shared/mb_adv_info.php:197
4012
- msgid "Image ID"
4013
- msgstr "Təsvir ID"
4014
-
4015
- #: classes/views/shared/mb_adv_info.php:201
4016
- msgid "Image Name"
4017
- msgstr ""
4018
-
4019
- #: classes/views/shared/mb_adv_info.php:212
4020
- msgid "Insert user information"
4021
- msgstr ""
4022
-
4023
- #: classes/views/shared/mb_adv_info.php:231
4024
- msgid "Repeating field options"
4025
- msgstr ""
4026
-
4027
- #: classes/views/shared/mb_adv_info.php:234
4028
- msgid "For Each"
4029
- msgstr ""
4030
-
4031
- #: classes/views/shared/mb_adv_info.php:244
4032
- msgid "Dynamic field options"
4033
- msgstr ""
4034
-
4035
- #: classes/views/shared/mb_adv_info.php:247
4036
- msgid "Creation Date"
4037
- msgstr ""
4038
-
4039
- #: classes/views/shared/mb_adv_info.php:251
4040
- msgid "Field From Entry"
4041
- msgstr ""
4042
-
4043
  #: classes/views/styles/_buttons.php:4
4044
  msgid "Disable submit button styling"
4045
  msgstr ""
@@ -4404,23 +4415,23 @@ msgstr ""
4404
  msgid "Reset to Default"
4405
  msgstr ""
4406
 
4407
- #: classes/views/xml/import_form.php:12
4408
  msgid ""
4409
  "Upload your Formidable XML file to import forms into this site. If your "
4410
  "imported form key and creation date match a form on your site, that form "
4411
  "will be updated."
4412
  msgstr ""
4413
 
4414
- #: classes/views/xml/import_form.php:19
4415
  msgid "Choose a Formidable XML file"
4416
  msgstr ""
4417
 
4418
- #: classes/views/xml/import_form.php:20
4419
  #, php-format
4420
  msgid "Maximum size: %s"
4421
  msgstr "Maksimal ölçü: %s"
4422
 
4423
- #: classes/views/xml/import_form.php:28
4424
  msgid "Upload file and import"
4425
  msgstr "Fayl yüklə və idxal et"
4426
 
1
  msgid ""
2
  msgstr ""
3
+ "PO-Revision-Date: 2018-10-15 19:33+0000\n"
4
  "MIME-Version: 1.0\n"
5
  "Content-Type: text/plain; charset=UTF-8\n"
6
  "Content-Transfer-Encoding: 8bit\n"
9
  "Language: az_AZ\n"
10
  "Project-Id-Version: Formidable Forms\n"
11
  "Report-Msgid-Bugs-To: \n"
12
+ "POT-Creation-Date: 2018-10-15 19:32+0000\n"
13
  "Last-Translator: Formidable Community\n"
14
  "Language-Team: Azerbaijani (Azerbaijan)"
15
 
25
  msgid "There are no plugins on your site that require a license"
26
  msgstr ""
27
 
28
+ #: classes/controllers/FrmAppController.php:83
29
  msgid "Build"
30
  msgstr ""
31
 
32
+ #: classes/controllers/FrmAppController.php:90
33
  #: classes/helpers/FrmFormsListHelper.php:336
34
  #: classes/views/frm-forms/settings.php:10
35
  msgid "Settings"
36
  msgstr "Parametrlər"
37
 
38
+ #: classes/controllers/FrmAppController.php:97
39
  #: classes/controllers/FrmEntriesController.php:8
40
  #: classes/controllers/FrmEntriesController.php:8
41
  #: classes/controllers/FrmEntriesController.php:126
45
  msgid "Entries"
46
  msgstr ""
47
 
48
+ #: classes/controllers/FrmAppController.php:113
49
  msgid "Build a Form"
50
  msgstr ""
51
 
52
+ #: classes/controllers/FrmAppController.php:146
53
  #, php-format
54
  msgid ""
55
  "This site has been previously authorized to run Formidable Forms. "
57
  "running the free version and remove this message."
58
  msgstr ""
59
 
60
+ #: classes/controllers/FrmAppController.php:505
61
  #, php-format
62
  msgid ""
63
  "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress."
93
  msgstr "Dəstək"
94
 
95
  #: classes/controllers/FrmEntriesController.php:105
96
+ #: classes/controllers/FrmFormsController.php:877
97
  #: classes/views/frm-entries/form.php:43
98
  #: classes/views/frm-entries/sidebar-shared.php:38
99
  msgid "Entry Key"
149
  msgid "No entries were specified"
150
  msgstr ""
151
 
152
+ #: classes/controllers/FrmFieldsController.php:304
153
  msgid "Other"
154
  msgstr "Digər"
155
 
156
+ #: classes/controllers/FrmFieldsController.php:307
157
  msgid "New Option"
158
  msgstr ""
159
 
162
  msgid "Form Actions"
163
  msgstr ""
164
 
165
+ #: classes/controllers/FrmFormActionsController.php:213
166
  #: classes/models/FrmEntryValidate.php:14 classes/models/FrmSettings.php:100
167
  msgid "You do not have permission to do that"
168
  msgstr ""
184
  msgstr ""
185
 
186
  #: classes/controllers/FrmFormsController.php:232
187
+ #: classes/controllers/FrmFormsController.php:1712
188
  msgid "Form template was Successfully Created"
189
  msgstr ""
190
 
293
  msgid "That template cannot be edited"
294
  msgstr ""
295
 
296
+ #: classes/controllers/FrmFormsController.php:802
297
+ msgid ""
298
+ "Customize the field values with the following parameters. Click to see a "
299
+ "sample."
300
+ msgstr ""
301
+
302
+ #: classes/controllers/FrmFormsController.php:816
303
+ msgid "Insert user information"
304
+ msgstr ""
305
+
306
+ #: classes/controllers/FrmFormsController.php:837
307
  msgid "Separator"
308
  msgstr ""
309
 
310
+ #: classes/controllers/FrmFormsController.php:838
311
  msgid "Use a different separator for checkbox fields"
312
  msgstr ""
313
 
314
+ #: classes/controllers/FrmFormsController.php:840
315
  msgid "Date Format"
316
  msgstr "Tarix Formatı"
317
 
318
+ #: classes/controllers/FrmFormsController.php:841
319
  msgid "Field Label"
320
  msgstr ""
321
 
322
+ #: classes/controllers/FrmFormsController.php:843
323
  msgid "No Auto P"
324
  msgstr ""
325
 
326
+ #: classes/controllers/FrmFormsController.php:844
327
  msgid "Do not automatically add any paragraphs or line breaks"
328
  msgstr ""
329
 
330
+ #: classes/controllers/FrmFormsController.php:858
331
+ #: classes/models/FrmField.php:58
332
+ msgid "User ID"
333
+ msgstr ""
334
+
335
+ #: classes/controllers/FrmFormsController.php:859
336
+ msgid "First Name"
337
+ msgstr ""
338
+
339
+ #: classes/controllers/FrmFormsController.php:860
340
+ msgid "Last Name"
341
+ msgstr ""
342
+
343
+ #: classes/controllers/FrmFormsController.php:861
344
+ msgid "Display Name"
345
+ msgstr ""
346
+
347
+ #: classes/controllers/FrmFormsController.php:862
348
+ msgid "User Login"
349
+ msgstr ""
350
+
351
+ #: classes/controllers/FrmFormsController.php:863
352
+ #: classes/models/FrmField.php:34
353
+ msgid "Email"
354
+ msgstr "ايميل"
355
+
356
+ #: classes/controllers/FrmFormsController.php:864
357
+ msgid "Avatar"
358
+ msgstr ""
359
+
360
+ #: classes/controllers/FrmFormsController.php:865
361
+ msgid "Author Link"
362
+ msgstr ""
363
+
364
+ #: classes/controllers/FrmFormsController.php:876
365
  #: classes/views/frm-entries/sidebar-shared.php:32
366
  msgid "Entry ID"
367
  msgstr ""
368
 
369
+ #: classes/controllers/FrmFormsController.php:878
370
  msgid "Post ID"
371
  msgstr "Yazı ID"
372
 
373
+ #: classes/controllers/FrmFormsController.php:879
374
  msgid "User IP"
375
  msgstr ""
376
 
377
+ #: classes/controllers/FrmFormsController.php:880
378
  msgid "Entry created"
379
  msgstr ""
380
 
381
+ #: classes/controllers/FrmFormsController.php:881
382
  msgid "Entry updated"
383
  msgstr ""
384
 
385
+ #: classes/controllers/FrmFormsController.php:883
386
  msgid "Site URL"
387
  msgstr "Sayt URL-i"
388
 
389
+ #: classes/controllers/FrmFormsController.php:884
390
  msgid "Site Name"
391
  msgstr ""
392
 
393
+ #: classes/controllers/FrmFormsController.php:892
394
  msgid "Default Msg"
395
  msgstr ""
396
 
397
+ #: classes/controllers/FrmFormsController.php:893
398
  msgid "Default HTML"
399
  msgstr ""
400
 
401
+ #: classes/controllers/FrmFormsController.php:894
402
  msgid "Default Plain"
403
  msgstr ""
404
 
405
+ #: classes/controllers/FrmFormsController.php:982
406
  msgid "No forms were specified"
407
  msgstr ""
408
 
409
+ #: classes/controllers/FrmFormsController.php:1129
410
  msgid "Abnormal HTML characters prevented your form from saving correctly"
411
  msgstr ""
412
 
413
+ #: classes/controllers/FrmFormsController.php:1244
414
+ #: classes/controllers/FrmFormsController.php:1258
415
  msgid "Please select a valid form"
416
  msgstr ""
417
 
418
+ #: classes/controllers/FrmFormsController.php:1486
419
  msgid "Please wait while you are redirected."
420
  msgstr ""
421
 
422
+ #: classes/controllers/FrmFormsController.php:1520
423
  #, php-format
424
  msgid "%1$sClick here%2$s if you are not automatically redirected."
425
  msgstr ""
2215
  msgid "Delete Permanently"
2216
  msgstr "Birdəfəlik sil"
2217
 
2218
+ #: classes/helpers/FrmFormsHelper.php:835 classes/models/FrmFormAction.php:744
2219
+ #: classes/views/frm-form-actions/form_action.php:19
2220
  msgid "Delete"
2221
  msgstr "Sil"
2222
 
2632
  msgstr[0] ""
2633
  msgstr[1] ""
2634
 
2635
+ #: classes/helpers/FrmXMLHelper.php:853 classes/models/FrmFormMigrator.php:388
2636
  #, php-format
2637
  msgid "%1$s Field"
2638
  msgid_plural "%1$s Fields"
2829
  msgid "Dropdown"
2830
  msgstr ""
2831
 
 
 
 
 
2832
  #: classes/models/FrmField.php:38
2833
  msgid "Website/URL"
2834
  msgstr ""
2849
  msgid "Hidden Field"
2850
  msgstr ""
2851
 
 
 
 
 
2852
  #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
2853
  msgid "reCAPTCHA"
2854
  msgstr "reCAPTCHA"
2935
  msgid "There are no options for this action."
2936
  msgstr ""
2937
 
2938
+ #: classes/models/FrmFormAction.php:741
2939
  #: classes/views/frm-forms/_publish_box.php:30
2940
  msgid "Save Draft"
2941
  msgstr ""
2942
 
2943
+ #: classes/models/FrmFormAction.php:742
2944
  #: classes/views/frm-forms/add_field_links.php:7
2945
  #: classes/views/frm-forms/form.php:61
2946
  msgid "Create"
2947
  msgstr ""
2948
 
2949
+ #: classes/models/FrmFormAction.php:743
2950
  #: classes/views/frm-forms/_publish_box.php:34
2951
  #: classes/views/frm-forms/_publish_box.php:38
2952
  #: classes/views/frm-forms/add_field_links.php:7
2955
  msgid "Update"
2956
  msgstr "Yenilə"
2957
 
2958
+ #: classes/models/FrmFormAction.php:745 classes/views/xml/import_form.php:9
2959
  msgid "Import"
2960
  msgstr "İdxal"
2961
 
2962
+ #: classes/models/FrmFormMigrator.php:137
2963
+ msgid "No form fields found."
2964
+ msgstr ""
2965
+
2966
+ #: classes/models/FrmFormMigrator.php:229
2967
+ msgid "There was an error while creating a new form."
2968
+ msgstr ""
2969
+
2970
+ #: classes/models/FrmFormMigrator.php:360
2971
+ msgid "Default Form"
2972
+ msgstr ""
2973
+
2974
  #: classes/models/FrmMigrate.php:485
2975
  msgid "Sending"
2976
  msgstr ""
3332
  msgid "Highrise"
3333
  msgstr ""
3334
 
3335
+ #: classes/views/frm-form-actions/form_action.php:17
3336
+ msgid "Duplicate"
3337
+ msgstr ""
3338
+
3339
  #: classes/views/frm-forms/_publish_box.php:44
3340
  msgid "Preview"
3341
  msgstr "Ön izləmə"
4019
  msgstr ""
4020
 
4021
  #: classes/views/shared/mb_adv_info.php:15
4022
+ #: classes/views/shared/mb_adv_info.php:87
4023
  msgid "IDs"
4024
  msgstr ""
4025
 
4026
  #: classes/views/shared/mb_adv_info.php:16
4027
+ #: classes/views/shared/mb_adv_info.php:88
4028
  msgid "Keys"
4029
  msgstr ""
4030
 
4031
  #: classes/views/shared/mb_adv_info.php:18
4032
+ #: classes/views/shared/mb_adv_info.php:90
4033
  msgid "Fields from your form"
4034
  msgstr ""
4035
 
4036
+ #: classes/views/shared/mb_adv_info.php:53
4037
  msgid ""
4038
  "Click a button below to insert extra values from form entries or your site "
4039
  "settings."
4040
  msgstr ""
4041
 
4042
+ #: classes/views/shared/mb_adv_info.php:56
4043
  msgid "Helpers"
4044
  msgstr ""
4045
 
4046
+ #: classes/views/shared/mb_adv_info.php:100
4047
  msgid "Conditional text here"
4048
  msgstr ""
4049
 
4050
+ #: classes/views/shared/mb_adv_info.php:115
4051
  msgid "Click a button below to insert sample logic into your view"
4052
  msgstr ""
4053
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4054
  #: classes/views/styles/_buttons.php:4
4055
  msgid "Disable submit button styling"
4056
  msgstr ""
4415
  msgid "Reset to Default"
4416
  msgstr ""
4417
 
4418
+ #: classes/views/xml/import_form.php:11
4419
  msgid ""
4420
  "Upload your Formidable XML file to import forms into this site. If your "
4421
  "imported form key and creation date match a form on your site, that form "
4422
  "will be updated."
4423
  msgstr ""
4424
 
4425
+ #: classes/views/xml/import_form.php:18
4426
  msgid "Choose a Formidable XML file"
4427
  msgstr ""
4428
 
4429
+ #: classes/views/xml/import_form.php:19
4430
  #, php-format
4431
  msgid "Maximum size: %s"
4432
  msgstr "Maksimal ölçü: %s"
4433
 
4434
+ #: classes/views/xml/import_form.php:27
4435
  msgid "Upload file and import"
4436
  msgstr "Fayl yüklə və idxal et"
4437
 
languages/formidable-es_ES.mo CHANGED
Binary file
languages/formidable-es_ES.po CHANGED
@@ -1,6 +1,6 @@
1
  msgid ""
2
  msgstr ""
3
- "PO-Revision-Date: 2018-09-12 16:45+0000\n"
4
  "MIME-Version: 1.0\n"
5
  "Content-Type: text/plain; charset=UTF-8\n"
6
  "Content-Transfer-Encoding: 8bit\n"
@@ -9,7 +9,7 @@ msgstr ""
9
  "Language: es_ES\n"
10
  "Project-Id-Version: Formidable Forms\n"
11
  "Report-Msgid-Bugs-To: \n"
12
- "POT-Creation-Date: 2018-09-12 16:44+0000\n"
13
  "Last-Translator: Formidable Community\n"
14
  "Language-Team: Spanish (Spain)"
15
 
@@ -25,17 +25,17 @@ msgstr "Actualizar a Pro"
25
  msgid "There are no plugins on your site that require a license"
26
  msgstr "No hay plugins en su sitio que requieran una licencia"
27
 
28
- #: classes/controllers/FrmAppController.php:91
29
  msgid "Build"
30
  msgstr "Construir"
31
 
32
- #: classes/controllers/FrmAppController.php:98
33
  #: classes/helpers/FrmFormsListHelper.php:336
34
  #: classes/views/frm-forms/settings.php:10
35
  msgid "Settings"
36
  msgstr "Configuración"
37
 
38
- #: classes/controllers/FrmAppController.php:105
39
  #: classes/controllers/FrmEntriesController.php:8
40
  #: classes/controllers/FrmEntriesController.php:8
41
  #: classes/controllers/FrmEntriesController.php:126
@@ -45,11 +45,11 @@ msgstr "Configuración"
45
  msgid "Entries"
46
  msgstr "Entradas"
47
 
48
- #: classes/controllers/FrmAppController.php:121
49
  msgid "Build a Form"
50
  msgstr ""
51
 
52
- #: classes/controllers/FrmAppController.php:154
53
  #, php-format
54
  msgid ""
55
  "This site has been previously authorized to run Formidable Forms. "
@@ -57,7 +57,7 @@ msgid ""
57
  "running the free version and remove this message."
58
  msgstr ""
59
 
60
- #: classes/controllers/FrmAppController.php:513
61
  #, php-format
62
  msgid ""
63
  "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress."
@@ -93,7 +93,7 @@ msgid "Support"
93
  msgstr "Soporte"
94
 
95
  #: classes/controllers/FrmEntriesController.php:105
96
- #: classes/controllers/FrmFormsController.php:827
97
  #: classes/views/frm-entries/form.php:43
98
  #: classes/views/frm-entries/sidebar-shared.php:38
99
  msgid "Entry Key"
@@ -149,11 +149,11 @@ msgstr "Las entradas fueron destruidas con éxito"
149
  msgid "No entries were specified"
150
  msgstr "No se especificaron entradas"
151
 
152
- #: classes/controllers/FrmFieldsController.php:302
153
  msgid "Other"
154
  msgstr ""
155
 
156
- #: classes/controllers/FrmFieldsController.php:305
157
  msgid "New Option"
158
  msgstr "Nueva opción"
159
 
@@ -162,7 +162,7 @@ msgstr "Nueva opción"
162
  msgid "Form Actions"
163
  msgstr ""
164
 
165
- #: classes/controllers/FrmFormActionsController.php:210
166
  #: classes/models/FrmEntryValidate.php:14 classes/models/FrmSettings.php:100
167
  msgid "You do not have permission to do that"
168
  msgstr "Usted no tiene permiso para hacer eso"
@@ -184,7 +184,7 @@ msgid "Form was Successfully Updated"
184
  msgstr "El Formulario se ha actualizado correctamente"
185
 
186
  #: classes/controllers/FrmFormsController.php:232
187
- #: classes/controllers/FrmFormsController.php:1662
188
  msgid "Form template was Successfully Created"
189
  msgstr "La plantilla de formulario se creó correctamente"
190
 
@@ -293,90 +293,134 @@ msgstr "La plantilla ha sido actualizada con éxito"
293
  msgid "That template cannot be edited"
294
  msgstr "Esa plantilla no se puede editar"
295
 
296
- #: classes/controllers/FrmFormsController.php:804
 
 
 
 
 
 
 
 
 
 
297
  msgid "Separator"
298
  msgstr "Separador"
299
 
300
- #: classes/controllers/FrmFormsController.php:805
301
  msgid "Use a different separator for checkbox fields"
302
  msgstr ""
303
  "Utilice un separador diferente para los campos de casillas de verificación"
304
 
305
- #: classes/controllers/FrmFormsController.php:807
306
  msgid "Date Format"
307
  msgstr "Formato de fecha"
308
 
309
- #: classes/controllers/FrmFormsController.php:808
310
  msgid "Field Label"
311
  msgstr "Etiqueta campo"
312
 
313
- #: classes/controllers/FrmFormsController.php:810
314
  msgid "No Auto P"
315
  msgstr "Sin Auto P"
316
 
317
- #: classes/controllers/FrmFormsController.php:811
318
  msgid "Do not automatically add any paragraphs or line breaks"
319
  msgstr "No agregue automáticamente los párrafos o los saltos de línea"
320
 
321
- #: classes/controllers/FrmFormsController.php:826
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
322
  #: classes/views/frm-entries/sidebar-shared.php:32
323
  msgid "Entry ID"
324
  msgstr "ID de la Entrada"
325
 
326
- #: classes/controllers/FrmFormsController.php:828
327
  msgid "Post ID"
328
  msgstr "Identificación de la publicación"
329
 
330
- #: classes/controllers/FrmFormsController.php:829
331
  msgid "User IP"
332
  msgstr "IP del usuario"
333
 
334
- #: classes/controllers/FrmFormsController.php:830
335
  msgid "Entry created"
336
  msgstr "Entrada creada"
337
 
338
- #: classes/controllers/FrmFormsController.php:831
339
  msgid "Entry updated"
340
  msgstr "Entrada actualizada"
341
 
342
- #: classes/controllers/FrmFormsController.php:833
343
  msgid "Site URL"
344
  msgstr "URL del sitio"
345
 
346
- #: classes/controllers/FrmFormsController.php:834
347
  msgid "Site Name"
348
  msgstr "Nombre del sitio"
349
 
350
- #: classes/controllers/FrmFormsController.php:842
351
  msgid "Default Msg"
352
  msgstr "Mensaje por defecto"
353
 
354
- #: classes/controllers/FrmFormsController.php:843
355
  msgid "Default HTML"
356
  msgstr "HTML por defecto"
357
 
358
- #: classes/controllers/FrmFormsController.php:844
359
  msgid "Default Plain"
360
  msgstr "por defecto Llano"
361
 
362
- #: classes/controllers/FrmFormsController.php:932
363
  msgid "No forms were specified"
364
  msgstr "No se han especificado formularios"
365
 
366
- #: classes/controllers/FrmFormsController.php:1079
367
  msgid "Abnormal HTML characters prevented your form from saving correctly"
368
  msgstr ""
369
 
370
- #: classes/controllers/FrmFormsController.php:1194
371
- #: classes/controllers/FrmFormsController.php:1208
372
  msgid "Please select a valid form"
373
  msgstr "Por favor, seleccione una forma válida"
374
 
375
- #: classes/controllers/FrmFormsController.php:1436
376
  msgid "Please wait while you are redirected."
377
  msgstr "Por favor, espere mientras se le redirecciona."
378
 
379
- #: classes/controllers/FrmFormsController.php:1470
380
  #, php-format
381
  msgid "%1$sClick here%2$s if you are not automatically redirected."
382
  msgstr "%1$sClic aquí%2$s si no se le redirecciona automáticamente."
@@ -2184,7 +2228,8 @@ msgstr "Papelera"
2184
  msgid "Delete Permanently"
2185
  msgstr ""
2186
 
2187
- #: classes/helpers/FrmFormsHelper.php:835 classes/models/FrmFormAction.php:703
 
2188
  msgid "Delete"
2189
  msgstr "Eliminar"
2190
 
@@ -2614,7 +2659,7 @@ msgid_plural "%1$s Forms"
2614
  msgstr[0] ""
2615
  msgstr[1] ""
2616
 
2617
- #: classes/helpers/FrmXMLHelper.php:853
2618
  #, php-format
2619
  msgid "%1$s Field"
2620
  msgid_plural "%1$s Fields"
@@ -2811,10 +2856,6 @@ msgstr ""
2811
  msgid "Dropdown"
2812
  msgstr "Desplegable"
2813
 
2814
- #: classes/models/FrmField.php:34
2815
- msgid "Email"
2816
- msgstr "Correo electronico"
2817
-
2818
  #: classes/models/FrmField.php:38
2819
  msgid "Website/URL"
2820
  msgstr "Sitio Web/URL"
@@ -2835,10 +2876,6 @@ msgstr "HTML"
2835
  msgid "Hidden Field"
2836
  msgstr "Campo oculto"
2837
 
2838
- #: classes/models/FrmField.php:58
2839
- msgid "User ID"
2840
- msgstr "ID de usuario"
2841
-
2842
  #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
2843
  msgid "reCAPTCHA"
2844
  msgstr "reCAPTCHA"
@@ -2925,18 +2962,18 @@ msgstr ""
2925
  msgid "There are no options for this action."
2926
  msgstr ""
2927
 
2928
- #: classes/models/FrmFormAction.php:700
2929
  #: classes/views/frm-forms/_publish_box.php:30
2930
  msgid "Save Draft"
2931
  msgstr "Guardar borrador"
2932
 
2933
- #: classes/models/FrmFormAction.php:701
2934
  #: classes/views/frm-forms/add_field_links.php:7
2935
  #: classes/views/frm-forms/form.php:61
2936
  msgid "Create"
2937
  msgstr "Crear"
2938
 
2939
- #: classes/models/FrmFormAction.php:702
2940
  #: classes/views/frm-forms/_publish_box.php:34
2941
  #: classes/views/frm-forms/_publish_box.php:38
2942
  #: classes/views/frm-forms/add_field_links.php:7
@@ -2945,10 +2982,22 @@ msgstr "Crear"
2945
  msgid "Update"
2946
  msgstr "Actualizar"
2947
 
2948
- #: classes/models/FrmFormAction.php:704 classes/views/xml/import_form.php:10
2949
  msgid "Import"
2950
  msgstr "Importar"
2951
 
 
 
 
 
 
 
 
 
 
 
 
 
2952
  #: classes/models/FrmMigrate.php:485
2953
  msgid "Sending"
2954
  msgstr "Enviando"
@@ -3311,6 +3360,10 @@ msgstr "Twilio"
3311
  msgid "Highrise"
3312
  msgstr "Highrise"
3313
 
 
 
 
 
3314
  #: classes/views/frm-forms/_publish_box.php:44
3315
  msgid "Preview"
3316
  msgstr "Vista Previa"
@@ -4024,81 +4077,39 @@ msgid "HTML Tags"
4024
  msgstr "Etiquetas HTML"
4025
 
4026
  #: classes/views/shared/mb_adv_info.php:15
4027
- #: classes/views/shared/mb_adv_info.php:124
4028
  msgid "IDs"
4029
  msgstr "IDs"
4030
 
4031
  #: classes/views/shared/mb_adv_info.php:16
4032
- #: classes/views/shared/mb_adv_info.php:125
4033
  msgid "Keys"
4034
  msgstr "Claves"
4035
 
4036
  #: classes/views/shared/mb_adv_info.php:18
4037
- #: classes/views/shared/mb_adv_info.php:127
4038
  msgid "Fields from your form"
4039
  msgstr "Campos de su formulario"
4040
 
4041
- #: classes/views/shared/mb_adv_info.php:90
4042
  msgid ""
4043
  "Click a button below to insert extra values from form entries or your site "
4044
  "settings."
4045
  msgstr ""
4046
 
4047
- #: classes/views/shared/mb_adv_info.php:93
4048
  msgid "Helpers"
4049
  msgstr "Ayudantes"
4050
 
4051
- #: classes/views/shared/mb_adv_info.php:137
4052
  msgid "Conditional text here"
4053
  msgstr "Texto condicional aquí"
4054
 
4055
- #: classes/views/shared/mb_adv_info.php:154
4056
  msgid "Click a button below to insert sample logic into your view"
4057
  msgstr ""
4058
  "Haga clic en un botón de abajo para insertar la lógica de muestra en su vista"
4059
 
4060
- #: classes/views/shared/mb_adv_info.php:174
4061
- msgid ""
4062
- "Customize the field values with the following parameters. Click to see a "
4063
- "sample."
4064
- msgstr ""
4065
-
4066
- #: classes/views/shared/mb_adv_info.php:193
4067
- msgid "Show image"
4068
- msgstr "Mostrar imagen"
4069
-
4070
- #: classes/views/shared/mb_adv_info.php:197
4071
- msgid "Image ID"
4072
- msgstr "ID Imagen"
4073
-
4074
- #: classes/views/shared/mb_adv_info.php:201
4075
- msgid "Image Name"
4076
- msgstr "Nombre Imagen"
4077
-
4078
- #: classes/views/shared/mb_adv_info.php:212
4079
- msgid "Insert user information"
4080
- msgstr "Insertar información de usuario"
4081
-
4082
- #: classes/views/shared/mb_adv_info.php:231
4083
- msgid "Repeating field options"
4084
- msgstr ""
4085
-
4086
- #: classes/views/shared/mb_adv_info.php:234
4087
- msgid "For Each"
4088
- msgstr "Para Cada"
4089
-
4090
- #: classes/views/shared/mb_adv_info.php:244
4091
- msgid "Dynamic field options"
4092
- msgstr "Opciones de campo dinámico"
4093
-
4094
- #: classes/views/shared/mb_adv_info.php:247
4095
- msgid "Creation Date"
4096
- msgstr "Fecha de creación"
4097
-
4098
- #: classes/views/shared/mb_adv_info.php:251
4099
- msgid "Field From Entry"
4100
- msgstr "Campo De entrada"
4101
-
4102
  #: classes/views/styles/_buttons.php:4
4103
  msgid "Disable submit button styling"
4104
  msgstr "Desactivar estilo botón de enviar"
@@ -4470,7 +4481,7 @@ msgstr ""
4470
  msgid "Reset to Default"
4471
  msgstr "Restablecer valores predeterminados"
4472
 
4473
- #: classes/views/xml/import_form.php:12
4474
  msgid ""
4475
  "Upload your Formidable XML file to import forms into this site. If your "
4476
  "imported form key and creation date match a form on your site, that form "
@@ -4480,16 +4491,16 @@ msgstr ""
4480
  "su clave de formulario importada y la fecha de creación coinciden con un "
4481
  "formulario en su sitio, ese formulario se actualizará."
4482
 
4483
- #: classes/views/xml/import_form.php:19
4484
  msgid "Choose a Formidable XML file"
4485
  msgstr "Elija un archivo XML Formidable"
4486
 
4487
- #: classes/views/xml/import_form.php:20
4488
  #, php-format
4489
  msgid "Maximum size: %s"
4490
  msgstr "Tamaño Máximo: %s"
4491
 
4492
- #: classes/views/xml/import_form.php:28
4493
  msgid "Upload file and import"
4494
  msgstr "Cargar archivo e importar"
4495
 
1
  msgid ""
2
  msgstr ""
3
+ "PO-Revision-Date: 2018-10-15 19:33+0000\n"
4
  "MIME-Version: 1.0\n"
5
  "Content-Type: text/plain; charset=UTF-8\n"
6
  "Content-Transfer-Encoding: 8bit\n"
9
  "Language: es_ES\n"
10
  "Project-Id-Version: Formidable Forms\n"
11
  "Report-Msgid-Bugs-To: \n"
12
+ "POT-Creation-Date: 2018-10-15 19:32+0000\n"
13
  "Last-Translator: Formidable Community\n"
14
  "Language-Team: Spanish (Spain)"
15
 
25
  msgid "There are no plugins on your site that require a license"
26
  msgstr "No hay plugins en su sitio que requieran una licencia"
27
 
28
+ #: classes/controllers/FrmAppController.php:83
29
  msgid "Build"
30
  msgstr "Construir"
31
 
32
+ #: classes/controllers/FrmAppController.php:90
33
  #: classes/helpers/FrmFormsListHelper.php:336
34
  #: classes/views/frm-forms/settings.php:10
35
  msgid "Settings"
36
  msgstr "Configuración"
37
 
38
+ #: classes/controllers/FrmAppController.php:97
39
  #: classes/controllers/FrmEntriesController.php:8
40
  #: classes/controllers/FrmEntriesController.php:8
41
  #: classes/controllers/FrmEntriesController.php:126
45
  msgid "Entries"
46
  msgstr "Entradas"
47
 
48
+ #: classes/controllers/FrmAppController.php:113
49
  msgid "Build a Form"
50
  msgstr ""
51
 
52
+ #: classes/controllers/FrmAppController.php:146
53
  #, php-format
54
  msgid ""
55
  "This site has been previously authorized to run Formidable Forms. "
57
  "running the free version and remove this message."
58
  msgstr ""
59
 
60
+ #: classes/controllers/FrmAppController.php:505
61
  #, php-format
62
  msgid ""
63
  "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress."
93
  msgstr "Soporte"
94
 
95
  #: classes/controllers/FrmEntriesController.php:105
96
+ #: classes/controllers/FrmFormsController.php:877
97
  #: classes/views/frm-entries/form.php:43
98
  #: classes/views/frm-entries/sidebar-shared.php:38
99
  msgid "Entry Key"
149
  msgid "No entries were specified"
150
  msgstr "No se especificaron entradas"
151
 
152
+ #: classes/controllers/FrmFieldsController.php:304
153
  msgid "Other"
154
  msgstr ""
155
 
156
+ #: classes/controllers/FrmFieldsController.php:307
157
  msgid "New Option"
158
  msgstr "Nueva opción"
159
 
162
  msgid "Form Actions"
163
  msgstr ""
164
 
165
+ #: classes/controllers/FrmFormActionsController.php:213
166
  #: classes/models/FrmEntryValidate.php:14 classes/models/FrmSettings.php:100
167
  msgid "You do not have permission to do that"
168
  msgstr "Usted no tiene permiso para hacer eso"
184
  msgstr "El Formulario se ha actualizado correctamente"
185
 
186
  #: classes/controllers/FrmFormsController.php:232
187
+ #: classes/controllers/FrmFormsController.php:1712
188
  msgid "Form template was Successfully Created"
189
  msgstr "La plantilla de formulario se creó correctamente"
190
 
293
  msgid "That template cannot be edited"
294
  msgstr "Esa plantilla no se puede editar"
295
 
296
+ #: classes/controllers/FrmFormsController.php:802
297
+ msgid ""
298
+ "Customize the field values with the following parameters. Click to see a "
299
+ "sample."
300
+ msgstr ""
301
+
302
+ #: classes/controllers/FrmFormsController.php:816
303
+ msgid "Insert user information"
304
+ msgstr "Insertar información de usuario"
305
+
306
+ #: classes/controllers/FrmFormsController.php:837
307
  msgid "Separator"
308
  msgstr "Separador"
309
 
310
+ #: classes/controllers/FrmFormsController.php:838
311
  msgid "Use a different separator for checkbox fields"
312
  msgstr ""
313
  "Utilice un separador diferente para los campos de casillas de verificación"
314
 
315
+ #: classes/controllers/FrmFormsController.php:840
316
  msgid "Date Format"
317
  msgstr "Formato de fecha"
318
 
319
+ #: classes/controllers/FrmFormsController.php:841
320
  msgid "Field Label"
321
  msgstr "Etiqueta campo"
322
 
323
+ #: classes/controllers/FrmFormsController.php:843
324
  msgid "No Auto P"
325
  msgstr "Sin Auto P"
326
 
327
+ #: classes/controllers/FrmFormsController.php:844
328
  msgid "Do not automatically add any paragraphs or line breaks"
329
  msgstr "No agregue automáticamente los párrafos o los saltos de línea"
330
 
331
+ #: classes/controllers/FrmFormsController.php:858
332
+ #: classes/models/FrmField.php:58
333
+ msgid "User ID"
334
+ msgstr "ID de usuario"
335
+
336
+ #: classes/controllers/FrmFormsController.php:859
337
+ msgid "First Name"
338
+ msgstr ""
339
+
340
+ #: classes/controllers/FrmFormsController.php:860
341
+ msgid "Last Name"
342
+ msgstr ""
343
+
344
+ #: classes/controllers/FrmFormsController.php:861
345
+ msgid "Display Name"
346
+ msgstr ""
347
+
348
+ #: classes/controllers/FrmFormsController.php:862
349
+ msgid "User Login"
350
+ msgstr ""
351
+
352
+ #: classes/controllers/FrmFormsController.php:863
353
+ #: classes/models/FrmField.php:34
354
+ msgid "Email"
355
+ msgstr "Correo electronico"
356
+
357
+ #: classes/controllers/FrmFormsController.php:864
358
+ msgid "Avatar"
359
+ msgstr ""
360
+
361
+ #: classes/controllers/FrmFormsController.php:865
362
+ msgid "Author Link"
363
+ msgstr ""
364
+
365
+ #: classes/controllers/FrmFormsController.php:876
366
  #: classes/views/frm-entries/sidebar-shared.php:32
367
  msgid "Entry ID"
368
  msgstr "ID de la Entrada"
369
 
370
+ #: classes/controllers/FrmFormsController.php:878
371
  msgid "Post ID"
372
  msgstr "Identificación de la publicación"
373
 
374
+ #: classes/controllers/FrmFormsController.php:879
375
  msgid "User IP"
376
  msgstr "IP del usuario"
377
 
378
+ #: classes/controllers/FrmFormsController.php:880
379
  msgid "Entry created"
380
  msgstr "Entrada creada"
381
 
382
+ #: classes/controllers/FrmFormsController.php:881
383
  msgid "Entry updated"
384
  msgstr "Entrada actualizada"
385
 
386
+ #: classes/controllers/FrmFormsController.php:883
387
  msgid "Site URL"
388
  msgstr "URL del sitio"
389
 
390
+ #: classes/controllers/FrmFormsController.php:884
391
  msgid "Site Name"
392
  msgstr "Nombre del sitio"
393
 
394
+ #: classes/controllers/FrmFormsController.php:892
395
  msgid "Default Msg"
396
  msgstr "Mensaje por defecto"
397
 
398
+ #: classes/controllers/FrmFormsController.php:893
399
  msgid "Default HTML"
400
  msgstr "HTML por defecto"
401
 
402
+ #: classes/controllers/FrmFormsController.php:894
403
  msgid "Default Plain"
404
  msgstr "por defecto Llano"
405
 
406
+ #: classes/controllers/FrmFormsController.php:982
407
  msgid "No forms were specified"
408
  msgstr "No se han especificado formularios"
409
 
410
+ #: classes/controllers/FrmFormsController.php:1129
411
  msgid "Abnormal HTML characters prevented your form from saving correctly"
412
  msgstr ""
413
 
414
+ #: classes/controllers/FrmFormsController.php:1244
415
+ #: classes/controllers/FrmFormsController.php:1258
416
  msgid "Please select a valid form"
417
  msgstr "Por favor, seleccione una forma válida"
418
 
419
+ #: classes/controllers/FrmFormsController.php:1486
420
  msgid "Please wait while you are redirected."
421
  msgstr "Por favor, espere mientras se le redirecciona."
422
 
423
+ #: classes/controllers/FrmFormsController.php:1520
424
  #, php-format
425
  msgid "%1$sClick here%2$s if you are not automatically redirected."
426
  msgstr "%1$sClic aquí%2$s si no se le redirecciona automáticamente."
2228
  msgid "Delete Permanently"
2229
  msgstr ""
2230
 
2231
+ #: classes/helpers/FrmFormsHelper.php:835 classes/models/FrmFormAction.php:744
2232
+ #: classes/views/frm-form-actions/form_action.php:19
2233
  msgid "Delete"
2234
  msgstr "Eliminar"
2235
 
2659
  msgstr[0] ""
2660
  msgstr[1] ""
2661
 
2662
+ #: classes/helpers/FrmXMLHelper.php:853 classes/models/FrmFormMigrator.php:388
2663
  #, php-format
2664
  msgid "%1$s Field"
2665
  msgid_plural "%1$s Fields"
2856
  msgid "Dropdown"
2857
  msgstr "Desplegable"
2858
 
 
 
 
 
2859
  #: classes/models/FrmField.php:38
2860
  msgid "Website/URL"
2861
  msgstr "Sitio Web/URL"
2876
  msgid "Hidden Field"
2877
  msgstr "Campo oculto"
2878
 
 
 
 
 
2879
  #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
2880
  msgid "reCAPTCHA"
2881
  msgstr "reCAPTCHA"
2962
  msgid "There are no options for this action."
2963
  msgstr ""
2964
 
2965
+ #: classes/models/FrmFormAction.php:741
2966
  #: classes/views/frm-forms/_publish_box.php:30
2967
  msgid "Save Draft"
2968
  msgstr "Guardar borrador"
2969
 
2970
+ #: classes/models/FrmFormAction.php:742
2971
  #: classes/views/frm-forms/add_field_links.php:7
2972
  #: classes/views/frm-forms/form.php:61
2973
  msgid "Create"
2974
  msgstr "Crear"
2975
 
2976
+ #: classes/models/FrmFormAction.php:743
2977
  #: classes/views/frm-forms/_publish_box.php:34
2978
  #: classes/views/frm-forms/_publish_box.php:38
2979
  #: classes/views/frm-forms/add_field_links.php:7
2982
  msgid "Update"
2983
  msgstr "Actualizar"
2984
 
2985
+ #: classes/models/FrmFormAction.php:745 classes/views/xml/import_form.php:9
2986
  msgid "Import"
2987
  msgstr "Importar"
2988
 
2989
+ #: classes/models/FrmFormMigrator.php:137
2990
+ msgid "No form fields found."
2991
+ msgstr ""
2992
+
2993
+ #: classes/models/FrmFormMigrator.php:229
2994
+ msgid "There was an error while creating a new form."
2995
+ msgstr ""
2996
+
2997
+ #: classes/models/FrmFormMigrator.php:360
2998
+ msgid "Default Form"
2999
+ msgstr ""
3000
+
3001
  #: classes/models/FrmMigrate.php:485
3002
  msgid "Sending"
3003
  msgstr "Enviando"
3360
  msgid "Highrise"
3361
  msgstr "Highrise"
3362
 
3363
+ #: classes/views/frm-form-actions/form_action.php:17
3364
+ msgid "Duplicate"
3365
+ msgstr ""
3366
+
3367
  #: classes/views/frm-forms/_publish_box.php:44
3368
  msgid "Preview"
3369
  msgstr "Vista Previa"
4077
  msgstr "Etiquetas HTML"
4078
 
4079
  #: classes/views/shared/mb_adv_info.php:15
4080
+ #: classes/views/shared/mb_adv_info.php:87
4081
  msgid "IDs"
4082
  msgstr "IDs"
4083
 
4084
  #: classes/views/shared/mb_adv_info.php:16
4085
+ #: classes/views/shared/mb_adv_info.php:88
4086
  msgid "Keys"
4087
  msgstr "Claves"
4088
 
4089
  #: classes/views/shared/mb_adv_info.php:18
4090
+ #: classes/views/shared/mb_adv_info.php:90
4091
  msgid "Fields from your form"
4092
  msgstr "Campos de su formulario"
4093
 
4094
+ #: classes/views/shared/mb_adv_info.php:53
4095
  msgid ""
4096
  "Click a button below to insert extra values from form entries or your site "
4097
  "settings."
4098
  msgstr ""
4099
 
4100
+ #: classes/views/shared/mb_adv_info.php:56
4101
  msgid "Helpers"
4102
  msgstr "Ayudantes"
4103
 
4104
+ #: classes/views/shared/mb_adv_info.php:100
4105
  msgid "Conditional text here"
4106
  msgstr "Texto condicional aquí"
4107
 
4108
+ #: classes/views/shared/mb_adv_info.php:115
4109
  msgid "Click a button below to insert sample logic into your view"
4110
  msgstr ""
4111
  "Haga clic en un botón de abajo para insertar la lógica de muestra en su vista"
4112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4113
  #: classes/views/styles/_buttons.php:4
4114
  msgid "Disable submit button styling"
4115
  msgstr "Desactivar estilo botón de enviar"
4481
  msgid "Reset to Default"
4482
  msgstr "Restablecer valores predeterminados"
4483
 
4484
+ #: classes/views/xml/import_form.php:11
4485
  msgid ""
4486
  "Upload your Formidable XML file to import forms into this site. If your "
4487
  "imported form key and creation date match a form on your site, that form "
4491
  "su clave de formulario importada y la fecha de creación coinciden con un "
4492
  "formulario en su sitio, ese formulario se actualizará."
4493
 
4494
+ #: classes/views/xml/import_form.php:18
4495
  msgid "Choose a Formidable XML file"
4496
  msgstr "Elija un archivo XML Formidable"
4497
 
4498
+ #: classes/views/xml/import_form.php:19
4499
  #, php-format
4500
  msgid "Maximum size: %s"
4501
  msgstr "Tamaño Máximo: %s"
4502
 
4503
+ #: classes/views/xml/import_form.php:27
4504
  msgid "Upload file and import"
4505
  msgstr "Cargar archivo e importar"
4506
 
languages/formidable-hu_HU.mo CHANGED
Binary file
languages/formidable-hu_HU.po CHANGED
@@ -2,17 +2,17 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Formidable v2.05.02\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-02-06 20:24+0000\n"
6
- "PO-Revision-Date: 2018-02-06 20:24+0000\n"
7
- "Last-Translator: admin <steph@strategy11.com>\n"
8
  "Language-Team: Hungarian\n"
9
- "Language: hu-HU\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;"
@@ -22,34 +22,43 @@ msgstr ""
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: hu_HU"
24
 
25
- #: classes/controllers/FrmAddonsController.php:6
26
  #: classes/controllers/FrmAddonsController.php:6
27
  msgid "AddOns"
28
  msgstr ""
29
 
 
 
 
 
30
  #: classes/controllers/FrmAddonsController.php:27
31
  msgid "There are no plugins on your site that require a license"
32
  msgstr ""
33
 
34
- #: classes/controllers/FrmAppController.php:90
35
  msgid "Build"
36
  msgstr ""
37
 
38
- #: classes/controllers/FrmAppController.php:104
 
 
 
 
 
 
39
  #: classes/controllers/FrmEntriesController.php:8
40
  #: classes/controllers/FrmEntriesController.php:8
41
- #: classes/controllers/FrmEntriesController.php:118
42
- #: classes/controllers/FrmFormsController.php:652
43
  #: classes/controllers/FrmXMLController.php:57
44
- #: classes/models/FrmPointers.php:267 classes/views/frm-entries/list.php:4
45
  msgid "Entries"
46
  msgstr ""
47
 
48
- #: classes/controllers/FrmAppController.php:120
49
  msgid "Build a Form"
50
  msgstr ""
51
 
52
- #: classes/controllers/FrmAppController.php:152
53
  #, php-format
54
  msgid ""
55
  "This site has been previously authorized to run Formidable Forms. "
@@ -57,323 +66,380 @@ msgid ""
57
  "running the free version and remove this message."
58
  msgstr ""
59
 
60
- #: classes/controllers/FrmAppController.php:487
61
  #, php-format
62
  msgid ""
63
  "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress."
64
  "org%4$s. Thank you heaps!"
65
  msgstr ""
66
 
67
- #: classes/controllers/FrmEntriesController.php:66
68
  msgid "Overview"
69
  msgstr ""
70
 
71
- #: classes/controllers/FrmEntriesController.php:67
72
  msgid ""
73
  "This screen provides access to all of your entries. You can customize the "
74
  "display of this screen to suit your workflow."
75
  msgstr ""
76
 
77
- #: classes/controllers/FrmEntriesController.php:67
78
  msgid ""
79
  "Hovering over a row in the entries list will display action links that allow "
80
  "you to manage your entry."
81
  msgstr ""
82
 
83
- #: classes/controllers/FrmEntriesController.php:71
84
  msgid "For more information:"
85
  msgstr ""
86
 
87
- #: classes/controllers/FrmEntriesController.php:72
88
  msgid "Documentation on Entries"
89
  msgstr ""
90
 
91
- #: classes/controllers/FrmEntriesController.php:99
92
- #: classes/controllers/FrmFormsController.php:832
 
 
 
 
93
  #: classes/views/frm-entries/form.php:43
94
  #: classes/views/frm-entries/sidebar-shared.php:38
95
  msgid "Entry Key"
96
  msgstr ""
97
 
98
- #: classes/controllers/FrmEntriesController.php:104
99
- #: classes/controllers/FrmFormsController.php:554
100
  #: classes/widgets/FrmShowForm.php:53
101
  msgid "Form"
102
  msgstr ""
103
 
104
- #: classes/controllers/FrmEntriesController.php:105
105
  msgid "Entry Name"
106
  msgstr ""
107
 
108
- #: classes/controllers/FrmEntriesController.php:106
109
- #: classes/helpers/FrmCSVExportHelper.php:128
110
  msgid "Created By"
111
  msgstr ""
112
 
113
- #: classes/controllers/FrmEntriesController.php:109
114
  msgid "Entry creation date"
115
  msgstr ""
116
 
117
- #: classes/controllers/FrmEntriesController.php:110
118
  msgid "Entry update date"
119
  msgstr ""
120
 
121
- #: classes/controllers/FrmEntriesController.php:391
122
  msgid "Your import is complete"
123
  msgstr ""
124
 
125
- #: classes/controllers/FrmEntriesController.php:401
126
  #, php-format
127
  msgid ""
128
  "This form is in the trash and is scheduled to be deleted permanently in %s "
129
  "along with any entries."
130
  msgstr ""
131
 
132
- #: classes/controllers/FrmEntriesController.php:420
133
  msgid "You are trying to view an entry that does not exist."
134
  msgstr ""
135
 
136
- #: classes/controllers/FrmEntriesController.php:448
137
  msgid "Entry was Successfully Destroyed"
138
  msgstr ""
139
 
140
- #: classes/controllers/FrmEntriesController.php:482
141
  msgid "Entries were Successfully Destroyed"
142
  msgstr ""
143
 
144
- #: classes/controllers/FrmEntriesController.php:485
145
  msgid "No entries were specified"
146
  msgstr ""
147
 
148
- #: classes/controllers/FrmFieldsController.php:281
149
  msgid "Other"
150
  msgstr ""
151
 
152
- #: classes/controllers/FrmFieldsController.php:284
153
  msgid "New Option"
154
  msgstr ""
155
 
156
- #: classes/controllers/FrmFormActionsController.php:9
157
- #: classes/views/frm-forms/settings.php:33
158
  msgid "Form Actions"
159
  msgstr ""
160
 
 
 
 
 
 
161
  #: classes/controllers/FrmFormsController.php:6
162
- #: classes/controllers/FrmFormsController.php:660
163
  #: classes/controllers/FrmXMLController.php:56
164
- #: classes/models/FrmPointers.php:245 classes/views/frm-forms/list.php:4
165
  msgid "Forms"
166
  msgstr ""
167
 
168
- #: classes/controllers/FrmFormsController.php:162
169
  msgid "Settings Successfully Updated"
170
  msgstr ""
171
 
172
- #: classes/controllers/FrmFormsController.php:217
173
- #: classes/controllers/FrmFormsController.php:728
174
  msgid "Form was Successfully Updated"
175
  msgstr ""
176
 
177
- #: classes/controllers/FrmFormsController.php:250
178
- #: classes/controllers/FrmFormsController.php:1645
179
  msgid "Form template was Successfully Created"
180
  msgstr ""
181
 
182
- #: classes/controllers/FrmFormsController.php:250
183
  msgid "Form was Successfully Copied"
184
  msgstr ""
185
 
186
- #: classes/controllers/FrmFormsController.php:254
187
  msgid "There was a problem creating the new template."
188
  msgstr ""
189
 
190
- #: classes/controllers/FrmFormsController.php:357
191
  msgid "Form Preview"
192
  msgstr ""
193
 
194
- #: classes/controllers/FrmFormsController.php:407
195
- #: classes/controllers/FrmFormsController.php:453
196
  #, php-format
197
  msgid "%1$s form restored from the Trash."
198
  msgid_plural "%1$s forms restored from the Trash."
199
  msgstr[0] ""
200
  msgstr[1] ""
201
 
202
- #: classes/controllers/FrmFormsController.php:454
203
- #: classes/controllers/FrmFormsController.php:475
204
  #, php-format
205
  msgid "%1$s form moved to the Trash. %2$sUndo%3$s"
206
  msgid_plural "%1$s forms moved to the Trash. %2$sUndo%3$s"
207
  msgstr[0] ""
208
  msgstr[1] ""
209
 
210
- #: classes/controllers/FrmFormsController.php:493
211
- #: classes/controllers/FrmFormsController.php:509
212
- #: classes/controllers/FrmFormsController.php:523
213
  #, php-format
214
  msgid "%1$s form permanently deleted."
215
  msgid_plural "%1$s forms permanently deleted."
216
  msgstr[0] ""
217
  msgstr[1] ""
218
 
219
- #: classes/controllers/FrmFormsController.php:537
220
  msgid "Add forms and content"
221
  msgstr ""
222
 
223
- #: classes/controllers/FrmFormsController.php:555
224
  #: classes/views/frm-forms/insert_form_popup.php:24
225
  msgid "Insert a Form"
226
  msgstr ""
227
 
228
- #: classes/controllers/FrmFormsController.php:585
229
  msgid "Display form title"
230
  msgstr ""
231
 
232
- #: classes/controllers/FrmFormsController.php:589
233
  msgid "Display form description"
234
  msgstr ""
235
 
236
- #: classes/controllers/FrmFormsController.php:593
237
  msgid "Minimize form HTML"
238
  msgstr ""
239
 
240
- #: classes/controllers/FrmFormsController.php:647
241
  msgid "Template Name"
242
  msgstr ""
243
 
244
- #: classes/controllers/FrmFormsController.php:648
245
  msgid "Type"
246
  msgstr ""
247
 
248
- #: classes/controllers/FrmFormsController.php:649
249
- #: classes/controllers/FrmFormsController.php:653
250
- #: classes/helpers/FrmCSVExportHelper.php:133
251
  msgid "Key"
252
  msgstr ""
253
 
254
- #: classes/controllers/FrmFormsController.php:651
255
- #: classes/controllers/FrmStylesController.php:371
256
  #: classes/views/styles/_sample_form.php:17 classes/views/styles/manage.php:16
257
  msgid "Form Title"
258
  msgstr ""
259
 
260
- #: classes/controllers/FrmFormsController.php:654
261
  msgid "Shortcodes"
262
  msgstr ""
263
 
264
- #: classes/controllers/FrmFormsController.php:704
 
 
 
 
 
265
  msgid "You are trying to edit a form that does not exist."
266
  msgstr ""
267
 
268
- #: classes/controllers/FrmFormsController.php:708
269
  #, php-format
270
  msgid "You are trying to edit a child form. Please edit from %1$shere%2$s"
271
  msgstr ""
272
 
273
- #: classes/controllers/FrmFormsController.php:730
274
  msgid "Template was Successfully Updated"
275
  msgstr ""
276
 
277
- #: classes/controllers/FrmFormsController.php:736
278
- #: classes/controllers/FrmFormsController.php:757
279
  msgid "That template cannot be edited"
280
  msgstr ""
281
 
282
- #: classes/controllers/FrmFormsController.php:809
 
 
 
 
 
 
 
 
 
 
283
  msgid "Separator"
284
  msgstr ""
285
 
286
- #: classes/controllers/FrmFormsController.php:810
287
  msgid "Use a different separator for checkbox fields"
288
  msgstr ""
289
 
290
- #: classes/controllers/FrmFormsController.php:812
291
  msgid "Date Format"
292
  msgstr ""
293
 
294
- #: classes/controllers/FrmFormsController.php:813
295
  msgid "Field Label"
296
  msgstr ""
297
 
298
- #: classes/controllers/FrmFormsController.php:815
299
  msgid "No Auto P"
300
  msgstr ""
301
 
302
- #: classes/controllers/FrmFormsController.php:816
303
  msgid "Do not automatically add any paragraphs or line breaks"
304
  msgstr ""
305
 
306
- #: classes/controllers/FrmFormsController.php:831
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
307
  #: classes/views/frm-entries/sidebar-shared.php:32
308
  msgid "Entry ID"
309
  msgstr ""
310
 
311
- #: classes/controllers/FrmFormsController.php:833
312
  msgid "Post ID"
313
  msgstr ""
314
 
315
- #: classes/controllers/FrmFormsController.php:834
316
  msgid "User IP"
317
  msgstr ""
318
 
319
- #: classes/controllers/FrmFormsController.php:835
320
  msgid "Entry created"
321
  msgstr ""
322
 
323
- #: classes/controllers/FrmFormsController.php:836
324
  msgid "Entry updated"
325
  msgstr ""
326
 
327
- #: classes/controllers/FrmFormsController.php:838
328
  msgid "Site URL"
329
  msgstr ""
330
 
331
- #: classes/controllers/FrmFormsController.php:839
332
  msgid "Site Name"
333
  msgstr ""
334
 
335
- #: classes/controllers/FrmFormsController.php:847
336
  msgid "Default Msg"
337
  msgstr ""
338
 
339
- #: classes/controllers/FrmFormsController.php:848
340
  msgid "Default HTML"
341
  msgstr ""
342
 
343
- #: classes/controllers/FrmFormsController.php:849
344
  msgid "Default Plain"
345
  msgstr ""
346
 
347
- #: classes/controllers/FrmFormsController.php:935
348
  msgid "No forms were specified"
349
  msgstr ""
350
 
351
- #: classes/controllers/FrmFormsController.php:1078
352
  msgid "Abnormal HTML characters prevented your form from saving correctly"
353
  msgstr ""
354
 
355
- #: classes/controllers/FrmFormsController.php:1189
356
- #: classes/controllers/FrmFormsController.php:1203
357
  msgid "Please select a valid form"
358
  msgstr ""
359
 
360
- #: classes/controllers/FrmFormsController.php:1424
361
  msgid "Please wait while you are redirected."
362
  msgstr ""
363
 
364
- #: classes/controllers/FrmFormsController.php:1458
365
  #, php-format
366
  msgid "%1$sClick here%2$s if you are not automatically redirected."
367
  msgstr ""
368
 
369
  #: classes/controllers/FrmSettingsController.php:9
370
- #: classes/controllers/FrmSettingsController.php:9
371
- #: classes/models/FrmPointers.php:324 classes/views/frm-settings/form.php:2
372
  msgid "Global Settings"
373
  msgstr ""
374
 
375
  #: classes/controllers/FrmSettingsController.php:39
376
- #: classes/models/FrmPointers.php:327 classes/views/addons/settings.php:2
377
  msgid "Plugin Licenses"
378
  msgstr ""
379
 
@@ -382,642 +448,751 @@ msgstr ""
382
  msgid "Settings Saved"
383
  msgstr ""
384
 
385
- #: classes/controllers/FrmStylesController.php:15
386
- #: classes/controllers/FrmStylesController.php:33
387
- #: classes/controllers/FrmStylesController.php:44
388
- #: classes/controllers/FrmStylesController.php:44
389
- #: classes/models/FrmPointers.php:286
390
  msgid "Styles"
391
  msgstr ""
392
 
393
- #: classes/controllers/FrmStylesController.php:34
394
- #: classes/controllers/FrmStylesController.php:35
395
  #: classes/views/styles/_field-colors.php:44
396
  #: classes/views/styles/_field-colors.php:106
397
  #: classes/views/styles/_field-description.php:14
398
  msgid "Style"
399
  msgstr ""
400
 
401
- #: classes/controllers/FrmStylesController.php:37
402
  msgid "Create a New Style"
403
  msgstr ""
404
 
405
- #: classes/controllers/FrmStylesController.php:38
406
  msgid "Edit Style"
407
  msgstr ""
408
 
409
- #: classes/controllers/FrmStylesController.php:207
410
- #: classes/controllers/FrmStylesController.php:304
411
  msgid "Your styling settings have been saved."
412
  msgstr ""
413
 
414
- #: classes/controllers/FrmStylesController.php:266
415
  msgid "Your form styles have been saved."
416
  msgstr ""
417
 
418
- #: classes/controllers/FrmStylesController.php:372
 
 
 
 
 
 
419
  #: classes/views/frm-forms/mb_html_tab.php:49
420
- #: classes/views/frm-forms/settings.php:243
421
  msgid "Form Description"
422
  msgstr ""
423
 
424
- #: classes/controllers/FrmStylesController.php:373
425
  msgid "Field Labels"
426
  msgstr ""
427
 
428
- #: classes/controllers/FrmStylesController.php:374
429
  #: classes/views/frm-forms/mb_html_tab.php:13
430
  msgid "Field Description"
431
  msgstr ""
432
 
433
- #: classes/controllers/FrmStylesController.php:375
434
  msgid "Field Colors"
435
  msgstr ""
436
 
437
- #: classes/controllers/FrmStylesController.php:376
438
- #: classes/views/frm-forms/add_field.php:102
439
  msgid "Field Settings"
440
  msgstr ""
441
 
442
- #: classes/controllers/FrmStylesController.php:377
443
  msgid "Check Box & Radio Fields"
444
  msgstr ""
445
 
446
- #: classes/controllers/FrmStylesController.php:378
447
  msgid "Buttons"
448
  msgstr ""
449
 
450
- #: classes/controllers/FrmStylesController.php:379
451
  msgid "Form Messages"
452
  msgstr ""
453
 
454
- #: classes/controllers/FrmStylesController.php:580
455
  #: classes/views/frm-forms/mb_insert_fields.php:2
456
  msgid "Click to toggle"
457
  msgstr ""
458
 
459
  #: classes/controllers/FrmXMLController.php:6
460
- #: classes/controllers/FrmXMLController.php:6
461
- #: classes/models/FrmPointers.php:305 classes/views/xml/import_form.php:2
462
  msgid "Import/Export"
463
  msgstr ""
464
 
465
- #: classes/controllers/FrmXMLController.php:88
466
  msgid "Oops, you didn't select a file."
467
  msgstr ""
468
 
469
- #: classes/controllers/FrmXMLController.php:97
470
  msgid "The file does not exist, please try again."
471
  msgstr ""
472
 
473
- #: classes/controllers/FrmXMLController.php:121
474
  msgid ""
475
  "XML import is not enabled on your server with the "
476
  "libxml_disable_entity_loader function."
477
  msgstr ""
478
 
479
- #: classes/controllers/FrmXMLController.php:298
480
  msgid "Please select a form"
481
  msgstr ""
482
 
483
- #: classes/controllers/FrmXMLController.php:354
484
  msgid "There are no entries for that form."
485
  msgstr ""
486
 
487
- #: classes/helpers/FrmAppHelper.php:683
 
 
 
 
 
488
  msgid "View Forms and Templates"
489
  msgstr ""
490
 
491
- #: classes/helpers/FrmAppHelper.php:684
492
  msgid "Add/Edit Forms and Templates"
493
  msgstr ""
494
 
495
- #: classes/helpers/FrmAppHelper.php:685
496
  msgid "Delete Forms and Templates"
497
  msgstr ""
498
 
499
- #: classes/helpers/FrmAppHelper.php:686
500
  msgid "Access this Settings Page"
501
  msgstr ""
502
 
503
- #: classes/helpers/FrmAppHelper.php:687
504
  msgid "View Entries from Admin Area"
505
  msgstr ""
506
 
507
- #: classes/helpers/FrmAppHelper.php:688
508
  msgid "Delete Entries from Admin Area"
509
  msgstr ""
510
 
511
- #: classes/helpers/FrmAppHelper.php:695
512
  msgid "Add Entries from Admin Area"
513
  msgstr ""
514
 
515
- #: classes/helpers/FrmAppHelper.php:696
516
  msgid "Edit Entries from Admin Area"
517
  msgstr ""
518
 
519
- #: classes/helpers/FrmAppHelper.php:697
520
  msgid "View Reports"
521
  msgstr ""
522
 
523
- #: classes/helpers/FrmAppHelper.php:698
524
  msgid "Add/Edit Views"
525
  msgstr ""
526
 
527
- #: classes/helpers/FrmAppHelper.php:1284
528
  msgid "at"
529
  msgstr ""
530
 
531
- #: classes/helpers/FrmAppHelper.php:1333 classes/helpers/FrmAppHelper.php:1352
532
  msgid "seconds"
533
  msgstr ""
534
 
535
- #: classes/helpers/FrmAppHelper.php:1346
536
  msgid "year"
537
  msgstr ""
538
 
539
- #: classes/helpers/FrmAppHelper.php:1346
540
  msgid "years"
541
  msgstr ""
542
 
543
- #: classes/helpers/FrmAppHelper.php:1347
544
  msgid "month"
545
  msgstr ""
546
 
547
- #: classes/helpers/FrmAppHelper.php:1348
 
 
 
 
548
  msgid "week"
549
  msgstr ""
550
 
551
- #: classes/helpers/FrmAppHelper.php:1349
 
 
 
 
552
  msgid "day"
553
  msgstr ""
554
 
555
- #: classes/helpers/FrmAppHelper.php:1350
 
 
 
 
556
  msgid "hour"
557
  msgstr ""
558
 
559
- #: classes/helpers/FrmAppHelper.php:1350
560
  msgid "hours"
561
  msgstr ""
562
 
563
- #: classes/helpers/FrmAppHelper.php:1351
564
  msgid "minute"
565
  msgstr ""
566
 
567
- #: classes/helpers/FrmAppHelper.php:1351
568
  msgid "minutes"
569
  msgstr ""
570
 
571
- #: classes/helpers/FrmAppHelper.php:1352
572
  msgid "second"
573
  msgstr ""
574
 
575
- #: classes/helpers/FrmAppHelper.php:1444
576
  msgid "Give this action a label for easy reference."
577
  msgstr ""
578
 
579
- #: classes/helpers/FrmAppHelper.php:1445
580
  msgid ""
581
  "Add one or more recipient addresses separated by a \",\". FORMAT: Name "
582
  "<name@email.com> or name@email.com. [admin_email] is the address set in WP "
583
  "General Settings."
584
  msgstr ""
585
 
586
- #: classes/helpers/FrmAppHelper.php:1446
587
  msgid ""
588
  "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or "
589
  "name@email.com."
590
  msgstr ""
591
 
592
- #: classes/helpers/FrmAppHelper.php:1447
593
  msgid ""
594
  "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or "
595
  "name@email.com."
596
  msgstr ""
597
 
598
- #: classes/helpers/FrmAppHelper.php:1448
599
  msgid ""
600
  "If you would like a different reply to address than the \"from\" address, "
601
  "add a single address here. FORMAT: Name <name@email.com> or name@email.com."
602
  msgstr ""
603
 
604
- #: classes/helpers/FrmAppHelper.php:1449
605
  msgid ""
606
  "Enter the name and/or email address of the sender. FORMAT: John Bates "
607
  "<john@example.com> or john@example.com."
608
  msgstr ""
609
 
610
- #: classes/helpers/FrmAppHelper.php:1450
611
  #, php-format
612
  msgid ""
613
  "If you leave the subject blank, the default will be used: %1$s Form "
614
  "submitted on %2$s"
615
  msgstr ""
616
 
617
- #: classes/helpers/FrmAppHelper.php:1581 classes/helpers/FrmAppHelper.php:1648
618
  msgid "Please wait while your site updates."
619
  msgstr ""
620
 
621
- #: classes/helpers/FrmAppHelper.php:1582
622
  msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
623
  msgstr ""
624
 
625
- #: classes/helpers/FrmAppHelper.php:1611
626
  msgid "Remove"
627
  msgstr ""
628
 
629
- #: classes/helpers/FrmAppHelper.php:1614
630
- #: classes/helpers/FrmCSVExportHelper.php:132
631
  msgid "ID"
632
  msgstr ""
633
 
634
- #: classes/helpers/FrmAppHelper.php:1615
635
  msgid "No results match"
636
  msgstr ""
637
 
638
- #: classes/helpers/FrmAppHelper.php:1616
639
  msgid "That file looks like Spam."
640
  msgstr ""
641
 
642
- #: classes/helpers/FrmAppHelper.php:1617
 
 
 
 
643
  msgid "Please complete the preceding required fields before uploading a file."
644
  msgstr ""
645
 
646
- #: classes/helpers/FrmAppHelper.php:1623
647
  msgid ""
648
  "Are you sure you want to do this? Clicking OK will delete all forms, form "
649
  "data, and all other Formidable data. There is no Undo."
650
  msgstr ""
651
 
652
- #: classes/helpers/FrmAppHelper.php:1624
653
- #: classes/views/frm-forms/add_field.php:34
654
- #: classes/views/frm-forms/add_field.php:45
655
  msgid "(Click to add description)"
656
  msgstr ""
657
 
658
- #: classes/helpers/FrmAppHelper.php:1625
659
- #: classes/views/frm-fields/single-option.php:7
660
- #: classes/views/frm-fields/single-option.php:11
661
  msgid "(Blank)"
662
  msgstr ""
663
 
664
- #: classes/helpers/FrmAppHelper.php:1626
665
- #: classes/views/frm-forms/add_field.php:16
666
  msgid "(no label)"
667
  msgstr ""
668
 
669
- #: classes/helpers/FrmAppHelper.php:1627
670
  msgid "Saving"
671
  msgstr ""
672
 
673
- #: classes/helpers/FrmAppHelper.php:1628
674
  msgid "Saved"
675
  msgstr ""
676
 
677
- #: classes/helpers/FrmAppHelper.php:1632
678
- #: classes/helpers/FrmFieldsHelper.php:1111
 
 
 
 
 
 
 
 
 
 
 
 
679
  msgid "Clear default value when typing"
680
  msgstr ""
681
 
682
- #: classes/helpers/FrmAppHelper.php:1633
683
- #: classes/helpers/FrmFieldsHelper.php:1111
684
  msgid "Do not clear default value when typing"
685
  msgstr ""
686
 
687
- #: classes/helpers/FrmAppHelper.php:1634
688
- #: classes/helpers/FrmFieldsHelper.php:1121
689
  msgid "Default value will pass form validation"
690
  msgstr ""
691
 
692
- #: classes/helpers/FrmAppHelper.php:1635
693
- #: classes/helpers/FrmFieldsHelper.php:1121
694
  msgid "Default value will NOT pass form validation"
695
  msgstr ""
696
 
697
- #: classes/helpers/FrmAppHelper.php:1636
698
- #: classes/helpers/FrmEntriesListHelper.php:245
699
- #: classes/helpers/FrmFormsHelper.php:827 classes/views/styles/show.php:64
700
  msgid "Are you sure?"
701
  msgstr ""
702
 
703
- #: classes/helpers/FrmAppHelper.php:1637
704
  msgid ""
705
  "Are you sure you want to delete this field and all data associated with it?"
706
  msgstr ""
707
 
708
- #: classes/helpers/FrmAppHelper.php:1638
709
  msgid "WARNING: This will delete all fields inside of the section as well."
710
  msgstr ""
711
 
712
- #: classes/helpers/FrmAppHelper.php:1639
713
  msgid ""
714
  "Warning: If you have entries with multiple rows, all but the first row will "
715
  "be lost."
716
  msgstr ""
717
 
718
- #: classes/helpers/FrmAppHelper.php:1641
719
  #: classes/helpers/FrmFieldsHelper.php:268
720
  msgid "The entered values do not match"
721
  msgstr ""
722
 
723
- #: classes/helpers/FrmAppHelper.php:1642
724
  msgid "Enter Email"
725
  msgstr ""
726
 
727
- #: classes/helpers/FrmAppHelper.php:1643
728
  msgid "Confirm Email"
729
  msgstr ""
730
 
731
- #: classes/helpers/FrmAppHelper.php:1644
732
  msgid ""
733
  "In certain browsers (e.g. Firefox) text will not display correctly if the "
734
  "field height is too small relative to the field padding and text size. "
735
  "Please increase your field height or decrease your field padding."
736
  msgstr ""
737
 
738
- #: classes/helpers/FrmAppHelper.php:1645
739
  msgid "Enter Password"
740
  msgstr ""
741
 
742
- #: classes/helpers/FrmAppHelper.php:1647
 
 
 
 
743
  msgid "Import Complete"
744
  msgstr ""
745
 
746
- #: classes/helpers/FrmAppHelper.php:1649
747
  msgid "Warning: There is no way to retrieve unsaved entries."
748
  msgstr ""
749
 
750
- #: classes/helpers/FrmAppHelper.php:1652
751
  msgid "No new licenses were found"
752
  msgstr ""
753
 
754
- #: classes/helpers/FrmAppHelper.php:1653
 
 
 
 
 
 
 
 
 
 
 
 
 
 
755
  msgid "Please enter a Repeat Limit that is greater than 1."
756
  msgstr ""
757
 
758
- #: classes/helpers/FrmAppHelper.php:1674
759
  msgid ""
760
  "You are running an outdated version of Formidable. This plugin may not work "
761
  "correctly if you do not update Formidable."
762
  msgstr ""
763
 
764
- #: classes/helpers/FrmAppHelper.php:1681
 
 
 
 
765
  msgid "English/Western"
766
  msgstr ""
767
 
768
- #: classes/helpers/FrmAppHelper.php:1682
769
  msgid "Afrikaans"
770
  msgstr ""
771
 
772
- #: classes/helpers/FrmAppHelper.php:1683
773
  msgid "Albanian"
774
  msgstr ""
775
 
776
- #: classes/helpers/FrmAppHelper.php:1684
777
  msgid "Arabic"
778
  msgstr ""
779
 
780
- #: classes/helpers/FrmAppHelper.php:1685
781
  msgid "Armenian"
782
  msgstr ""
783
 
784
- #: classes/helpers/FrmAppHelper.php:1686
785
  msgid "Azerbaijani"
786
  msgstr ""
787
 
788
- #: classes/helpers/FrmAppHelper.php:1687
789
  msgid "Basque"
790
  msgstr ""
791
 
792
- #: classes/helpers/FrmAppHelper.php:1688
793
  msgid "Bosnian"
794
  msgstr ""
795
 
796
- #: classes/helpers/FrmAppHelper.php:1689
797
  msgid "Bulgarian"
798
  msgstr ""
799
 
800
- #: classes/helpers/FrmAppHelper.php:1690
801
  msgid "Catalan"
802
  msgstr ""
803
 
804
- #: classes/helpers/FrmAppHelper.php:1691
805
  msgid "Chinese Hong Kong"
806
  msgstr ""
807
 
808
- #: classes/helpers/FrmAppHelper.php:1692
809
  msgid "Chinese Simplified"
810
  msgstr ""
811
 
812
- #: classes/helpers/FrmAppHelper.php:1693
813
  msgid "Chinese Traditional"
814
  msgstr ""
815
 
816
- #: classes/helpers/FrmAppHelper.php:1694
817
  msgid "Croatian"
818
  msgstr ""
819
 
820
- #: classes/helpers/FrmAppHelper.php:1695
821
  msgid "Czech"
822
  msgstr ""
823
 
824
- #: classes/helpers/FrmAppHelper.php:1697
 
 
 
 
825
  msgid "Dutch"
826
  msgstr ""
827
 
828
- #: classes/helpers/FrmAppHelper.php:1698
829
  msgid "English/UK"
830
  msgstr ""
831
 
832
- #: classes/helpers/FrmAppHelper.php:1699
833
  msgid "Esperanto"
834
  msgstr ""
835
 
836
- #: classes/helpers/FrmAppHelper.php:1700
837
  msgid "Estonian"
838
  msgstr ""
839
 
840
- #: classes/helpers/FrmAppHelper.php:1701
841
  msgid "Faroese"
842
  msgstr ""
843
 
844
- #: classes/helpers/FrmAppHelper.php:1702
845
  msgid "Farsi/Persian"
846
  msgstr ""
847
 
848
- #: classes/helpers/FrmAppHelper.php:1703
849
  msgid "Filipino"
850
  msgstr ""
851
 
852
- #: classes/helpers/FrmAppHelper.php:1706
 
 
 
 
 
 
 
 
853
  msgid "French/Canadian"
854
  msgstr ""
855
 
856
- #: classes/helpers/FrmAppHelper.php:1707
857
  msgid "French/Swiss"
858
  msgstr ""
859
 
860
- #: classes/helpers/FrmAppHelper.php:1709
 
 
 
 
861
  msgid "German/Austria"
862
  msgstr ""
863
 
864
- #: classes/helpers/FrmAppHelper.php:1710
865
  msgid "German/Switzerland"
866
  msgstr ""
867
 
868
- #: classes/helpers/FrmAppHelper.php:1711
869
  msgid "Greek"
870
  msgstr ""
871
 
872
- #: classes/helpers/FrmAppHelper.php:1712 classes/helpers/FrmAppHelper.php:1713
873
  msgid "Hebrew"
874
  msgstr ""
875
 
876
- #: classes/helpers/FrmAppHelper.php:1714
877
  msgid "Hindi"
878
  msgstr ""
879
 
880
- #: classes/helpers/FrmAppHelper.php:1716
 
 
 
 
881
  msgid "Icelandic"
882
  msgstr ""
883
 
884
- #: classes/helpers/FrmAppHelper.php:1717
885
  msgid "Indonesian"
886
  msgstr ""
887
 
888
- #: classes/helpers/FrmAppHelper.php:1718
889
  msgid "Italian"
890
  msgstr ""
891
 
892
- #: classes/helpers/FrmAppHelper.php:1719
893
  msgid "Japanese"
894
  msgstr ""
895
 
896
- #: classes/helpers/FrmAppHelper.php:1720
897
  msgid "Korean"
898
  msgstr ""
899
 
900
- #: classes/helpers/FrmAppHelper.php:1721
901
  msgid "Latvian"
902
  msgstr ""
903
 
904
- #: classes/helpers/FrmAppHelper.php:1722
905
  msgid "Lithuanian"
906
  msgstr ""
907
 
908
- #: classes/helpers/FrmAppHelper.php:1723
909
  msgid "Malaysian"
910
  msgstr ""
911
 
912
- #: classes/helpers/FrmAppHelper.php:1724
913
  msgid "Norwegian"
914
  msgstr ""
915
 
916
- #: classes/helpers/FrmAppHelper.php:1725
917
  msgid "Polish"
918
  msgstr ""
919
 
920
- #: classes/helpers/FrmAppHelper.php:1726
921
  msgid "Portuguese"
922
  msgstr ""
923
 
924
- #: classes/helpers/FrmAppHelper.php:1727
925
  msgid "Portuguese/Brazilian"
926
  msgstr ""
927
 
928
- #: classes/helpers/FrmAppHelper.php:1728
929
  msgid "Portuguese/Portugal"
930
  msgstr ""
931
 
932
- #: classes/helpers/FrmAppHelper.php:1729
933
  msgid "Romanian"
934
  msgstr ""
935
 
936
- #: classes/helpers/FrmAppHelper.php:1731 classes/helpers/FrmAppHelper.php:1732
 
 
 
 
937
  msgid "Serbian"
938
  msgstr ""
939
 
940
- #: classes/helpers/FrmAppHelper.php:1733
941
  msgid "Slovak"
942
  msgstr ""
943
 
944
- #: classes/helpers/FrmAppHelper.php:1734
945
  msgid "Slovenian"
946
  msgstr ""
947
 
948
- #: classes/helpers/FrmAppHelper.php:1735
949
  msgid "Spanish"
950
  msgstr ""
951
 
952
- #: classes/helpers/FrmAppHelper.php:1736
953
  msgid "Spanish/Latin America"
954
  msgstr ""
955
 
956
- #: classes/helpers/FrmAppHelper.php:1737
957
  msgid "Swedish"
958
  msgstr ""
959
 
960
- #: classes/helpers/FrmAppHelper.php:1738
961
  msgid "Tamil"
962
  msgstr ""
963
 
964
- #: classes/helpers/FrmAppHelper.php:1739
965
  msgid "Thai"
966
  msgstr ""
967
 
968
- #: classes/helpers/FrmAppHelper.php:1740 classes/helpers/FrmAppHelper.php:1741
969
  msgid "Turkish"
970
  msgstr ""
971
 
972
- #: classes/helpers/FrmAppHelper.php:1742
973
  msgid "Ukranian"
974
  msgstr ""
975
 
976
- #: classes/helpers/FrmAppHelper.php:1743
977
  msgid "Vietnamese"
978
  msgstr ""
979
 
980
- #: classes/helpers/FrmCSVExportHelper.php:107
981
  msgid "(label)"
982
  msgstr ""
983
 
984
- #: classes/helpers/FrmCSVExportHelper.php:120
 
 
 
 
985
  msgid "Comment User"
986
  msgstr ""
987
 
988
- #: classes/helpers/FrmCSVExportHelper.php:121
989
  msgid "Comment Date"
990
  msgstr ""
991
 
992
- #: classes/helpers/FrmCSVExportHelper.php:129
 
 
 
 
 
 
 
 
993
  msgid "Updated By"
994
  msgstr ""
995
 
996
- #: classes/helpers/FrmEntriesHelper.php:453
997
- #: classes/helpers/FrmEntriesHelper.php:454
 
 
 
 
 
 
 
 
 
 
 
 
 
 
998
  msgid "Unknown"
999
  msgstr ""
1000
 
1001
- #: classes/helpers/FrmEntriesHelper.php:540
1002
  msgid "Really delete?"
1003
  msgstr ""
1004
 
1005
- #: classes/helpers/FrmEntriesListHelper.php:78
1006
  msgid "No Entries Found"
1007
  msgstr ""
1008
 
1009
- #: classes/helpers/FrmEntriesListHelper.php:101
1010
  msgid "View all forms"
1011
  msgstr ""
1012
 
1013
- #: classes/helpers/FrmEntriesListHelper.php:241
1014
  #: classes/views/frm-entries/sidebar-shared.php:24
1015
  msgid "View"
1016
  msgstr ""
1017
 
1018
  #: classes/helpers/FrmFieldsHelper.php:160
1019
  #: classes/helpers/FrmFieldsHelper.php:276
1020
- #: classes/models/fields/FrmFieldType.php:314
1021
  #, php-format
1022
  msgid "%s is invalid"
1023
  msgstr ""
@@ -1028,980 +1203,980 @@ msgid "%s must be unique"
1028
  msgstr ""
1029
 
1030
  #: classes/helpers/FrmFieldsHelper.php:275
1031
- #: classes/models/fields/FrmFieldType.php:312
1032
  msgid "This field is invalid"
1033
  msgstr ""
1034
 
1035
- #: classes/helpers/FrmFieldsHelper.php:461
1036
  #, php-format
1037
  msgid "Please add options from the WordPress \"%1$s\" page"
1038
  msgstr ""
1039
 
1040
- #: classes/helpers/FrmFieldsHelper.php:1226
1041
  msgid "Afghanistan"
1042
  msgstr ""
1043
 
1044
- #: classes/helpers/FrmFieldsHelper.php:1226
1045
  msgid "Albania"
1046
  msgstr ""
1047
 
1048
- #: classes/helpers/FrmFieldsHelper.php:1226
1049
  msgid "Algeria"
1050
  msgstr ""
1051
 
1052
- #: classes/helpers/FrmFieldsHelper.php:1226
1053
  msgid "American Samoa"
1054
  msgstr ""
1055
 
1056
- #: classes/helpers/FrmFieldsHelper.php:1226
1057
  msgid "Andorra"
1058
  msgstr ""
1059
 
1060
- #: classes/helpers/FrmFieldsHelper.php:1226
1061
  msgid "Angola"
1062
  msgstr ""
1063
 
1064
- #: classes/helpers/FrmFieldsHelper.php:1226
1065
  msgid "Anguilla"
1066
  msgstr ""
1067
 
1068
- #: classes/helpers/FrmFieldsHelper.php:1226
1069
  msgid "Antarctica"
1070
  msgstr ""
1071
 
1072
- #: classes/helpers/FrmFieldsHelper.php:1226
1073
  msgid "Antigua and Barbuda"
1074
  msgstr ""
1075
 
1076
- #: classes/helpers/FrmFieldsHelper.php:1226
1077
  msgid "Argentina"
1078
  msgstr ""
1079
 
1080
- #: classes/helpers/FrmFieldsHelper.php:1226
1081
  msgid "Armenia"
1082
  msgstr ""
1083
 
1084
- #: classes/helpers/FrmFieldsHelper.php:1226
1085
  msgid "Aruba"
1086
  msgstr ""
1087
 
1088
- #: classes/helpers/FrmFieldsHelper.php:1226
1089
  msgid "Australia"
1090
  msgstr ""
1091
 
1092
- #: classes/helpers/FrmFieldsHelper.php:1226
1093
  msgid "Austria"
1094
  msgstr ""
1095
 
1096
- #: classes/helpers/FrmFieldsHelper.php:1226
1097
  msgid "Azerbaijan"
1098
  msgstr ""
1099
 
1100
- #: classes/helpers/FrmFieldsHelper.php:1226
1101
  msgid "Bahamas"
1102
  msgstr ""
1103
 
1104
- #: classes/helpers/FrmFieldsHelper.php:1226
1105
  msgid "Bahrain"
1106
  msgstr ""
1107
 
1108
- #: classes/helpers/FrmFieldsHelper.php:1226
1109
  msgid "Bangladesh"
1110
  msgstr ""
1111
 
1112
- #: classes/helpers/FrmFieldsHelper.php:1226
1113
  msgid "Barbados"
1114
  msgstr ""
1115
 
1116
- #: classes/helpers/FrmFieldsHelper.php:1226
1117
  msgid "Belarus"
1118
  msgstr ""
1119
 
1120
- #: classes/helpers/FrmFieldsHelper.php:1226
1121
  msgid "Belgium"
1122
  msgstr ""
1123
 
1124
- #: classes/helpers/FrmFieldsHelper.php:1226
1125
  msgid "Belize"
1126
  msgstr ""
1127
 
1128
- #: classes/helpers/FrmFieldsHelper.php:1226
1129
  msgid "Benin"
1130
  msgstr ""
1131
 
1132
- #: classes/helpers/FrmFieldsHelper.php:1226
1133
  msgid "Bermuda"
1134
  msgstr ""
1135
 
1136
- #: classes/helpers/FrmFieldsHelper.php:1226
1137
  msgid "Bhutan"
1138
  msgstr ""
1139
 
1140
- #: classes/helpers/FrmFieldsHelper.php:1226
1141
  msgid "Bolivia"
1142
  msgstr ""
1143
 
1144
- #: classes/helpers/FrmFieldsHelper.php:1226
1145
  msgid "Bosnia and Herzegovina"
1146
  msgstr ""
1147
 
1148
- #: classes/helpers/FrmFieldsHelper.php:1226
1149
  msgid "Botswana"
1150
  msgstr ""
1151
 
1152
- #: classes/helpers/FrmFieldsHelper.php:1226
1153
  msgid "Brazil"
1154
  msgstr ""
1155
 
1156
- #: classes/helpers/FrmFieldsHelper.php:1226
1157
  msgid "Brunei"
1158
  msgstr ""
1159
 
1160
- #: classes/helpers/FrmFieldsHelper.php:1226
1161
  msgid "Bulgaria"
1162
  msgstr ""
1163
 
1164
- #: classes/helpers/FrmFieldsHelper.php:1226
1165
  msgid "Burkina Faso"
1166
  msgstr ""
1167
 
1168
- #: classes/helpers/FrmFieldsHelper.php:1226
1169
  msgid "Burundi"
1170
  msgstr ""
1171
 
1172
- #: classes/helpers/FrmFieldsHelper.php:1226
1173
  msgid "Cambodia"
1174
  msgstr ""
1175
 
1176
- #: classes/helpers/FrmFieldsHelper.php:1226
1177
  msgid "Cameroon"
1178
  msgstr ""
1179
 
1180
- #: classes/helpers/FrmFieldsHelper.php:1226
1181
  msgid "Canada"
1182
  msgstr ""
1183
 
1184
- #: classes/helpers/FrmFieldsHelper.php:1226
1185
  msgid "Cape Verde"
1186
  msgstr ""
1187
 
1188
- #: classes/helpers/FrmFieldsHelper.php:1226
1189
  msgid "Cayman Islands"
1190
  msgstr ""
1191
 
1192
- #: classes/helpers/FrmFieldsHelper.php:1226
1193
  msgid "Central African Republic"
1194
  msgstr ""
1195
 
1196
- #: classes/helpers/FrmFieldsHelper.php:1226
1197
  msgid "Chad"
1198
  msgstr ""
1199
 
1200
- #: classes/helpers/FrmFieldsHelper.php:1226
1201
  msgid "Chile"
1202
  msgstr ""
1203
 
1204
- #: classes/helpers/FrmFieldsHelper.php:1226
1205
  msgid "China"
1206
  msgstr ""
1207
 
1208
- #: classes/helpers/FrmFieldsHelper.php:1226
1209
  msgid "Colombia"
1210
  msgstr ""
1211
 
1212
- #: classes/helpers/FrmFieldsHelper.php:1226
1213
  msgid "Comoros"
1214
  msgstr ""
1215
 
1216
- #: classes/helpers/FrmFieldsHelper.php:1226
1217
  msgid "Congo"
1218
  msgstr ""
1219
 
1220
- #: classes/helpers/FrmFieldsHelper.php:1226
1221
  msgid "Costa Rica"
1222
  msgstr ""
1223
 
1224
- #: classes/helpers/FrmFieldsHelper.php:1226
1225
  msgid "C&ocirc;te d'Ivoire"
1226
  msgstr ""
1227
 
1228
- #: classes/helpers/FrmFieldsHelper.php:1226
1229
  msgid "Croatia"
1230
  msgstr ""
1231
 
1232
- #: classes/helpers/FrmFieldsHelper.php:1226
1233
  msgid "Cuba"
1234
  msgstr ""
1235
 
1236
- #: classes/helpers/FrmFieldsHelper.php:1226
1237
  msgid "Cyprus"
1238
  msgstr ""
1239
 
1240
- #: classes/helpers/FrmFieldsHelper.php:1226
1241
  msgid "Czech Republic"
1242
  msgstr ""
1243
 
1244
- #: classes/helpers/FrmFieldsHelper.php:1226
1245
  msgid "Denmark"
1246
  msgstr ""
1247
 
1248
- #: classes/helpers/FrmFieldsHelper.php:1226
1249
  msgid "Djibouti"
1250
  msgstr ""
1251
 
1252
- #: classes/helpers/FrmFieldsHelper.php:1226
1253
  msgid "Dominica"
1254
  msgstr ""
1255
 
1256
- #: classes/helpers/FrmFieldsHelper.php:1226
1257
  msgid "Dominican Republic"
1258
  msgstr ""
1259
 
1260
- #: classes/helpers/FrmFieldsHelper.php:1226
1261
  msgid "East Timor"
1262
  msgstr ""
1263
 
1264
- #: classes/helpers/FrmFieldsHelper.php:1226
1265
  msgid "Ecuador"
1266
  msgstr ""
1267
 
1268
- #: classes/helpers/FrmFieldsHelper.php:1226
1269
  msgid "Egypt"
1270
  msgstr ""
1271
 
1272
- #: classes/helpers/FrmFieldsHelper.php:1226
1273
  msgid "El Salvador"
1274
  msgstr ""
1275
 
1276
- #: classes/helpers/FrmFieldsHelper.php:1226
1277
  msgid "Equatorial Guinea"
1278
  msgstr ""
1279
 
1280
- #: classes/helpers/FrmFieldsHelper.php:1226
1281
  msgid "Eritrea"
1282
  msgstr ""
1283
 
1284
- #: classes/helpers/FrmFieldsHelper.php:1226
1285
  msgid "Estonia"
1286
  msgstr ""
1287
 
1288
- #: classes/helpers/FrmFieldsHelper.php:1226
1289
  msgid "Ethiopia"
1290
  msgstr ""
1291
 
1292
- #: classes/helpers/FrmFieldsHelper.php:1226
1293
  msgid "Fiji"
1294
  msgstr ""
1295
 
1296
- #: classes/helpers/FrmFieldsHelper.php:1226
1297
  msgid "Finland"
1298
  msgstr ""
1299
 
1300
- #: classes/helpers/FrmFieldsHelper.php:1226
1301
  msgid "France"
1302
  msgstr ""
1303
 
1304
- #: classes/helpers/FrmFieldsHelper.php:1226
1305
  msgid "French Guiana"
1306
  msgstr ""
1307
 
1308
- #: classes/helpers/FrmFieldsHelper.php:1226
1309
  msgid "French Polynesia"
1310
  msgstr ""
1311
 
1312
- #: classes/helpers/FrmFieldsHelper.php:1226
1313
  msgid "Gabon"
1314
  msgstr ""
1315
 
1316
- #: classes/helpers/FrmFieldsHelper.php:1226
1317
  msgid "Gambia"
1318
  msgstr ""
1319
 
1320
- #: classes/helpers/FrmFieldsHelper.php:1226
1321
  msgid "Georgia"
1322
  msgstr ""
1323
 
1324
- #: classes/helpers/FrmFieldsHelper.php:1226
1325
  msgid "Germany"
1326
  msgstr ""
1327
 
1328
- #: classes/helpers/FrmFieldsHelper.php:1226
1329
  msgid "Ghana"
1330
  msgstr ""
1331
 
1332
- #: classes/helpers/FrmFieldsHelper.php:1226
1333
  msgid "Gibraltar"
1334
  msgstr ""
1335
 
1336
- #: classes/helpers/FrmFieldsHelper.php:1226
1337
  msgid "Greece"
1338
  msgstr ""
1339
 
1340
- #: classes/helpers/FrmFieldsHelper.php:1226
1341
  msgid "Greenland"
1342
  msgstr ""
1343
 
1344
- #: classes/helpers/FrmFieldsHelper.php:1226
1345
  msgid "Grenada"
1346
  msgstr ""
1347
 
1348
- #: classes/helpers/FrmFieldsHelper.php:1226
1349
  msgid "Guam"
1350
  msgstr ""
1351
 
1352
- #: classes/helpers/FrmFieldsHelper.php:1226
1353
  msgid "Guatemala"
1354
  msgstr ""
1355
 
1356
- #: classes/helpers/FrmFieldsHelper.php:1226
1357
  msgid "Guinea"
1358
  msgstr ""
1359
 
1360
- #: classes/helpers/FrmFieldsHelper.php:1226
1361
  msgid "Guinea-Bissau"
1362
  msgstr ""
1363
 
1364
- #: classes/helpers/FrmFieldsHelper.php:1226
1365
  msgid "Guyana"
1366
  msgstr ""
1367
 
1368
- #: classes/helpers/FrmFieldsHelper.php:1226
1369
  msgid "Haiti"
1370
  msgstr ""
1371
 
1372
- #: classes/helpers/FrmFieldsHelper.php:1226
1373
  msgid "Honduras"
1374
  msgstr ""
1375
 
1376
- #: classes/helpers/FrmFieldsHelper.php:1226
1377
  msgid "Hong Kong"
1378
  msgstr ""
1379
 
1380
- #: classes/helpers/FrmFieldsHelper.php:1226
1381
  msgid "Hungary"
1382
  msgstr ""
1383
 
1384
- #: classes/helpers/FrmFieldsHelper.php:1226
1385
  msgid "Iceland"
1386
  msgstr ""
1387
 
1388
- #: classes/helpers/FrmFieldsHelper.php:1226
1389
  msgid "India"
1390
  msgstr ""
1391
 
1392
- #: classes/helpers/FrmFieldsHelper.php:1226
1393
  msgid "Indonesia"
1394
  msgstr ""
1395
 
1396
- #: classes/helpers/FrmFieldsHelper.php:1226
1397
  msgid "Iran"
1398
  msgstr ""
1399
 
1400
- #: classes/helpers/FrmFieldsHelper.php:1226
1401
  msgid "Iraq"
1402
  msgstr ""
1403
 
1404
- #: classes/helpers/FrmFieldsHelper.php:1226
1405
  msgid "Ireland"
1406
  msgstr ""
1407
 
1408
- #: classes/helpers/FrmFieldsHelper.php:1226
1409
  msgid "Israel"
1410
  msgstr ""
1411
 
1412
- #: classes/helpers/FrmFieldsHelper.php:1226
1413
  msgid "Italy"
1414
  msgstr ""
1415
 
1416
- #: classes/helpers/FrmFieldsHelper.php:1226
1417
  msgid "Jamaica"
1418
  msgstr ""
1419
 
1420
- #: classes/helpers/FrmFieldsHelper.php:1226
1421
  msgid "Japan"
1422
  msgstr ""
1423
 
1424
- #: classes/helpers/FrmFieldsHelper.php:1226
1425
  msgid "Jordan"
1426
  msgstr ""
1427
 
1428
- #: classes/helpers/FrmFieldsHelper.php:1226
1429
  msgid "Kazakhstan"
1430
  msgstr ""
1431
 
1432
- #: classes/helpers/FrmFieldsHelper.php:1226
1433
  msgid "Kenya"
1434
  msgstr ""
1435
 
1436
- #: classes/helpers/FrmFieldsHelper.php:1226
1437
  msgid "Kiribati"
1438
  msgstr ""
1439
 
1440
- #: classes/helpers/FrmFieldsHelper.php:1226
1441
  msgid "North Korea"
1442
  msgstr ""
1443
 
1444
- #: classes/helpers/FrmFieldsHelper.php:1226
1445
  msgid "South Korea"
1446
  msgstr ""
1447
 
1448
- #: classes/helpers/FrmFieldsHelper.php:1226
1449
  msgid "Kuwait"
1450
  msgstr ""
1451
 
1452
- #: classes/helpers/FrmFieldsHelper.php:1226
1453
  msgid "Kyrgyzstan"
1454
  msgstr ""
1455
 
1456
- #: classes/helpers/FrmFieldsHelper.php:1226
1457
  msgid "Laos"
1458
  msgstr ""
1459
 
1460
- #: classes/helpers/FrmFieldsHelper.php:1226
1461
  msgid "Latvia"
1462
  msgstr ""
1463
 
1464
- #: classes/helpers/FrmFieldsHelper.php:1226
1465
  msgid "Lebanon"
1466
  msgstr ""
1467
 
1468
- #: classes/helpers/FrmFieldsHelper.php:1226
1469
  msgid "Lesotho"
1470
  msgstr ""
1471
 
1472
- #: classes/helpers/FrmFieldsHelper.php:1226
1473
  msgid "Liberia"
1474
  msgstr ""
1475
 
1476
- #: classes/helpers/FrmFieldsHelper.php:1226
1477
  msgid "Libya"
1478
  msgstr ""
1479
 
1480
- #: classes/helpers/FrmFieldsHelper.php:1226
1481
  msgid "Liechtenstein"
1482
  msgstr ""
1483
 
1484
- #: classes/helpers/FrmFieldsHelper.php:1226
1485
  msgid "Lithuania"
1486
  msgstr ""
1487
 
1488
- #: classes/helpers/FrmFieldsHelper.php:1226
1489
  msgid "Luxembourg"
1490
  msgstr ""
1491
 
1492
- #: classes/helpers/FrmFieldsHelper.php:1226
1493
  msgid "Macedonia"
1494
  msgstr ""
1495
 
1496
- #: classes/helpers/FrmFieldsHelper.php:1226
1497
  msgid "Madagascar"
1498
  msgstr ""
1499
 
1500
- #: classes/helpers/FrmFieldsHelper.php:1226
1501
  msgid "Malawi"
1502
  msgstr ""
1503
 
1504
- #: classes/helpers/FrmFieldsHelper.php:1226
1505
  msgid "Malaysia"
1506
  msgstr ""
1507
 
1508
- #: classes/helpers/FrmFieldsHelper.php:1226
1509
  msgid "Maldives"
1510
  msgstr ""
1511
 
1512
- #: classes/helpers/FrmFieldsHelper.php:1226
1513
  msgid "Mali"
1514
  msgstr ""
1515
 
1516
- #: classes/helpers/FrmFieldsHelper.php:1226
1517
  msgid "Malta"
1518
  msgstr ""
1519
 
1520
- #: classes/helpers/FrmFieldsHelper.php:1226
1521
  msgid "Marshall Islands"
1522
  msgstr ""
1523
 
1524
- #: classes/helpers/FrmFieldsHelper.php:1226
1525
  msgid "Mauritania"
1526
  msgstr ""
1527
 
1528
- #: classes/helpers/FrmFieldsHelper.php:1226
1529
  msgid "Mauritius"
1530
  msgstr ""
1531
 
1532
- #: classes/helpers/FrmFieldsHelper.php:1226
1533
  msgid "Mexico"
1534
  msgstr ""
1535
 
1536
- #: classes/helpers/FrmFieldsHelper.php:1226
1537
  msgid "Micronesia"
1538
  msgstr ""
1539
 
1540
- #: classes/helpers/FrmFieldsHelper.php:1226
1541
  msgid "Moldova"
1542
  msgstr ""
1543
 
1544
- #: classes/helpers/FrmFieldsHelper.php:1226
1545
  msgid "Monaco"
1546
  msgstr ""
1547
 
1548
- #: classes/helpers/FrmFieldsHelper.php:1226
1549
  msgid "Mongolia"
1550
  msgstr ""
1551
 
1552
- #: classes/helpers/FrmFieldsHelper.php:1226
1553
  msgid "Montenegro"
1554
  msgstr ""
1555
 
1556
- #: classes/helpers/FrmFieldsHelper.php:1226
1557
  msgid "Montserrat"
1558
  msgstr ""
1559
 
1560
- #: classes/helpers/FrmFieldsHelper.php:1226
1561
  msgid "Morocco"
1562
  msgstr ""
1563
 
1564
- #: classes/helpers/FrmFieldsHelper.php:1226
1565
  msgid "Mozambique"
1566
  msgstr ""
1567
 
1568
- #: classes/helpers/FrmFieldsHelper.php:1226
1569
  msgid "Myanmar"
1570
  msgstr ""
1571
 
1572
- #: classes/helpers/FrmFieldsHelper.php:1226
1573
  msgid "Namibia"
1574
  msgstr ""
1575
 
1576
- #: classes/helpers/FrmFieldsHelper.php:1226
1577
  msgid "Nauru"
1578
  msgstr ""
1579
 
1580
- #: classes/helpers/FrmFieldsHelper.php:1226
1581
  msgid "Nepal"
1582
  msgstr ""
1583
 
1584
- #: classes/helpers/FrmFieldsHelper.php:1226
1585
  msgid "Netherlands"
1586
  msgstr ""
1587
 
1588
- #: classes/helpers/FrmFieldsHelper.php:1226
1589
  msgid "New Zealand"
1590
  msgstr ""
1591
 
1592
- #: classes/helpers/FrmFieldsHelper.php:1226
1593
  msgid "Nicaragua"
1594
  msgstr ""
1595
 
1596
- #: classes/helpers/FrmFieldsHelper.php:1226
1597
  msgid "Niger"
1598
  msgstr ""
1599
 
1600
- #: classes/helpers/FrmFieldsHelper.php:1226
1601
  msgid "Nigeria"
1602
  msgstr ""
1603
 
1604
- #: classes/helpers/FrmFieldsHelper.php:1226
1605
  msgid "Norway"
1606
  msgstr ""
1607
 
1608
- #: classes/helpers/FrmFieldsHelper.php:1226
1609
  msgid "Northern Mariana Islands"
1610
  msgstr ""
1611
 
1612
- #: classes/helpers/FrmFieldsHelper.php:1226
1613
  msgid "Oman"
1614
  msgstr ""
1615
 
1616
- #: classes/helpers/FrmFieldsHelper.php:1226
1617
  msgid "Pakistan"
1618
  msgstr ""
1619
 
1620
- #: classes/helpers/FrmFieldsHelper.php:1226
1621
  msgid "Palau"
1622
  msgstr ""
1623
 
1624
- #: classes/helpers/FrmFieldsHelper.php:1226
1625
  msgid "Palestine"
1626
  msgstr ""
1627
 
1628
- #: classes/helpers/FrmFieldsHelper.php:1226
1629
  msgid "Panama"
1630
  msgstr ""
1631
 
1632
- #: classes/helpers/FrmFieldsHelper.php:1226
1633
  msgid "Papua New Guinea"
1634
  msgstr ""
1635
 
1636
- #: classes/helpers/FrmFieldsHelper.php:1226
1637
  msgid "Paraguay"
1638
  msgstr ""
1639
 
1640
- #: classes/helpers/FrmFieldsHelper.php:1226
1641
  msgid "Peru"
1642
  msgstr ""
1643
 
1644
- #: classes/helpers/FrmFieldsHelper.php:1226
1645
  msgid "Philippines"
1646
  msgstr ""
1647
 
1648
- #: classes/helpers/FrmFieldsHelper.php:1226
1649
  msgid "Poland"
1650
  msgstr ""
1651
 
1652
- #: classes/helpers/FrmFieldsHelper.php:1226
1653
  msgid "Portugal"
1654
  msgstr ""
1655
 
1656
- #: classes/helpers/FrmFieldsHelper.php:1226
1657
  msgid "Puerto Rico"
1658
  msgstr ""
1659
 
1660
- #: classes/helpers/FrmFieldsHelper.php:1226
1661
  msgid "Qatar"
1662
  msgstr ""
1663
 
1664
- #: classes/helpers/FrmFieldsHelper.php:1226
1665
  msgid "Romania"
1666
  msgstr ""
1667
 
1668
- #: classes/helpers/FrmFieldsHelper.php:1226
1669
  msgid "Russia"
1670
  msgstr ""
1671
 
1672
- #: classes/helpers/FrmFieldsHelper.php:1226
1673
  msgid "Rwanda"
1674
  msgstr ""
1675
 
1676
- #: classes/helpers/FrmFieldsHelper.php:1226
1677
  msgid "Saint Kitts and Nevis"
1678
  msgstr ""
1679
 
1680
- #: classes/helpers/FrmFieldsHelper.php:1226
1681
  msgid "Saint Lucia"
1682
  msgstr ""
1683
 
1684
- #: classes/helpers/FrmFieldsHelper.php:1226
1685
  msgid "Saint Vincent and the Grenadines"
1686
  msgstr ""
1687
 
1688
- #: classes/helpers/FrmFieldsHelper.php:1226
1689
  msgid "Samoa"
1690
  msgstr ""
1691
 
1692
- #: classes/helpers/FrmFieldsHelper.php:1226
1693
  msgid "San Marino"
1694
  msgstr ""
1695
 
1696
- #: classes/helpers/FrmFieldsHelper.php:1226
1697
  msgid "Sao Tome and Principe"
1698
  msgstr ""
1699
 
1700
- #: classes/helpers/FrmFieldsHelper.php:1226
1701
  msgid "Saudi Arabia"
1702
  msgstr ""
1703
 
1704
- #: classes/helpers/FrmFieldsHelper.php:1226
1705
  msgid "Senegal"
1706
  msgstr ""
1707
 
1708
- #: classes/helpers/FrmFieldsHelper.php:1226
1709
  msgid "Serbia and Montenegro"
1710
  msgstr ""
1711
 
1712
- #: classes/helpers/FrmFieldsHelper.php:1226
1713
  msgid "Seychelles"
1714
  msgstr ""
1715
 
1716
- #: classes/helpers/FrmFieldsHelper.php:1226
1717
  msgid "Sierra Leone"
1718
  msgstr ""
1719
 
1720
- #: classes/helpers/FrmFieldsHelper.php:1226
1721
  msgid "Singapore"
1722
  msgstr ""
1723
 
1724
- #: classes/helpers/FrmFieldsHelper.php:1226
1725
  msgid "Slovakia"
1726
  msgstr ""
1727
 
1728
- #: classes/helpers/FrmFieldsHelper.php:1226
1729
  msgid "Slovenia"
1730
  msgstr ""
1731
 
1732
- #: classes/helpers/FrmFieldsHelper.php:1226
1733
  msgid "Solomon Islands"
1734
  msgstr ""
1735
 
1736
- #: classes/helpers/FrmFieldsHelper.php:1226
1737
  msgid "Somalia"
1738
  msgstr ""
1739
 
1740
- #: classes/helpers/FrmFieldsHelper.php:1226
1741
  msgid "South Africa"
1742
  msgstr ""
1743
 
1744
- #: classes/helpers/FrmFieldsHelper.php:1226
1745
  msgid "South Sudan"
1746
  msgstr ""
1747
 
1748
- #: classes/helpers/FrmFieldsHelper.php:1226
1749
  msgid "Spain"
1750
  msgstr ""
1751
 
1752
- #: classes/helpers/FrmFieldsHelper.php:1226
1753
  msgid "Sri Lanka"
1754
  msgstr ""
1755
 
1756
- #: classes/helpers/FrmFieldsHelper.php:1226
1757
  msgid "Sudan"
1758
  msgstr ""
1759
 
1760
- #: classes/helpers/FrmFieldsHelper.php:1226
1761
  msgid "Suriname"
1762
  msgstr ""
1763
 
1764
- #: classes/helpers/FrmFieldsHelper.php:1226
1765
  msgid "Swaziland"
1766
  msgstr ""
1767
 
1768
- #: classes/helpers/FrmFieldsHelper.php:1226
1769
  msgid "Sweden"
1770
  msgstr ""
1771
 
1772
- #: classes/helpers/FrmFieldsHelper.php:1226
1773
  msgid "Switzerland"
1774
  msgstr ""
1775
 
1776
- #: classes/helpers/FrmFieldsHelper.php:1226
1777
  msgid "Syria"
1778
  msgstr ""
1779
 
1780
- #: classes/helpers/FrmFieldsHelper.php:1226
1781
  msgid "Taiwan"
1782
  msgstr ""
1783
 
1784
- #: classes/helpers/FrmFieldsHelper.php:1226
1785
  msgid "Tajikistan"
1786
  msgstr ""
1787
 
1788
- #: classes/helpers/FrmFieldsHelper.php:1226
1789
  msgid "Tanzania"
1790
  msgstr ""
1791
 
1792
- #: classes/helpers/FrmFieldsHelper.php:1226
1793
  msgid "Thailand"
1794
  msgstr ""
1795
 
1796
- #: classes/helpers/FrmFieldsHelper.php:1226
1797
  msgid "Togo"
1798
  msgstr ""
1799
 
1800
- #: classes/helpers/FrmFieldsHelper.php:1226
1801
  msgid "Tonga"
1802
  msgstr ""
1803
 
1804
- #: classes/helpers/FrmFieldsHelper.php:1226
1805
  msgid "Trinidad and Tobago"
1806
  msgstr ""
1807
 
1808
- #: classes/helpers/FrmFieldsHelper.php:1226
1809
  msgid "Tunisia"
1810
  msgstr ""
1811
 
1812
- #: classes/helpers/FrmFieldsHelper.php:1226
1813
  msgid "Turkey"
1814
  msgstr ""
1815
 
1816
- #: classes/helpers/FrmFieldsHelper.php:1226
1817
  msgid "Turkmenistan"
1818
  msgstr ""
1819
 
1820
- #: classes/helpers/FrmFieldsHelper.php:1226
1821
  msgid "Tuvalu"
1822
  msgstr ""
1823
 
1824
- #: classes/helpers/FrmFieldsHelper.php:1226
1825
  msgid "Uganda"
1826
  msgstr ""
1827
 
1828
- #: classes/helpers/FrmFieldsHelper.php:1226
1829
  msgid "Ukraine"
1830
  msgstr ""
1831
 
1832
- #: classes/helpers/FrmFieldsHelper.php:1226
1833
  msgid "United Arab Emirates"
1834
  msgstr ""
1835
 
1836
- #: classes/helpers/FrmFieldsHelper.php:1226
1837
  msgid "United Kingdom"
1838
  msgstr ""
1839
 
1840
- #: classes/helpers/FrmFieldsHelper.php:1226
1841
  msgid "United States"
1842
  msgstr ""
1843
 
1844
- #: classes/helpers/FrmFieldsHelper.php:1226
1845
  msgid "Uruguay"
1846
  msgstr ""
1847
 
1848
- #: classes/helpers/FrmFieldsHelper.php:1226
1849
  msgid "Uzbekistan"
1850
  msgstr ""
1851
 
1852
- #: classes/helpers/FrmFieldsHelper.php:1226
1853
  msgid "Vanuatu"
1854
  msgstr ""
1855
 
1856
- #: classes/helpers/FrmFieldsHelper.php:1226
1857
  msgid "Vatican City"
1858
  msgstr ""
1859
 
1860
- #: classes/helpers/FrmFieldsHelper.php:1226
1861
  msgid "Venezuela"
1862
  msgstr ""
1863
 
1864
- #: classes/helpers/FrmFieldsHelper.php:1226
1865
  msgid "Vietnam"
1866
  msgstr ""
1867
 
1868
- #: classes/helpers/FrmFieldsHelper.php:1226
1869
  msgid "Virgin Islands, British"
1870
  msgstr ""
1871
 
1872
- #: classes/helpers/FrmFieldsHelper.php:1226
1873
  msgid "Virgin Islands, U.S."
1874
  msgstr ""
1875
 
1876
- #: classes/helpers/FrmFieldsHelper.php:1226
1877
  msgid "Yemen"
1878
  msgstr ""
1879
 
1880
- #: classes/helpers/FrmFieldsHelper.php:1226
1881
  msgid "Zambia"
1882
  msgstr ""
1883
 
1884
- #: classes/helpers/FrmFieldsHelper.php:1226
1885
  msgid "Zimbabwe"
1886
  msgstr ""
1887
 
1888
- #: classes/helpers/FrmFieldsHelper.php:1230
1889
  msgid "Countries"
1890
  msgstr ""
1891
 
1892
- #: classes/helpers/FrmFieldsHelper.php:1235
1893
  msgid "U.S. State Abbreviations"
1894
  msgstr ""
1895
 
1896
- #: classes/helpers/FrmFieldsHelper.php:1239
1897
  msgid "U.S. States"
1898
  msgstr ""
1899
 
1900
- #: classes/helpers/FrmFieldsHelper.php:1242
1901
  msgid "Age"
1902
  msgstr ""
1903
 
1904
- #: classes/helpers/FrmFieldsHelper.php:1243
1905
  msgid "Under 18"
1906
  msgstr ""
1907
 
1908
- #: classes/helpers/FrmFieldsHelper.php:1244
1909
  msgid "18-24"
1910
  msgstr ""
1911
 
1912
- #: classes/helpers/FrmFieldsHelper.php:1245
1913
  msgid "25-34"
1914
  msgstr ""
1915
 
1916
- #: classes/helpers/FrmFieldsHelper.php:1246
1917
  msgid "35-44"
1918
  msgstr ""
1919
 
1920
- #: classes/helpers/FrmFieldsHelper.php:1247
1921
  msgid "45-54"
1922
  msgstr ""
1923
 
1924
- #: classes/helpers/FrmFieldsHelper.php:1248
1925
  msgid "55-64"
1926
  msgstr ""
1927
 
1928
- #: classes/helpers/FrmFieldsHelper.php:1249
1929
  msgid "65 or Above"
1930
  msgstr ""
1931
 
1932
- #: classes/helpers/FrmFieldsHelper.php:1250
1933
  msgid "Prefer Not to Answer"
1934
  msgstr ""
1935
 
1936
- #: classes/helpers/FrmFieldsHelper.php:1253
1937
  msgid "Satisfaction"
1938
  msgstr ""
1939
 
1940
- #: classes/helpers/FrmFieldsHelper.php:1254
1941
  msgid "Very Satisfied"
1942
  msgstr ""
1943
 
1944
- #: classes/helpers/FrmFieldsHelper.php:1255
1945
  msgid "Satisfied"
1946
  msgstr ""
1947
 
1948
- #: classes/helpers/FrmFieldsHelper.php:1256
1949
- #: classes/helpers/FrmFieldsHelper.php:1265
1950
- #: classes/helpers/FrmFieldsHelper.php:1274
1951
  msgid "Neutral"
1952
  msgstr ""
1953
 
1954
- #: classes/helpers/FrmFieldsHelper.php:1257
1955
  msgid "Unsatisfied"
1956
  msgstr ""
1957
 
1958
- #: classes/helpers/FrmFieldsHelper.php:1258
1959
  msgid "Very Unsatisfied"
1960
  msgstr ""
1961
 
1962
- #: classes/helpers/FrmFieldsHelper.php:1259
1963
- #: classes/helpers/FrmFieldsHelper.php:1268
1964
- #: classes/helpers/FrmFieldsHelper.php:1277
1965
  msgid "N/A"
1966
  msgstr ""
1967
 
1968
- #: classes/helpers/FrmFieldsHelper.php:1262
1969
  msgid "Importance"
1970
  msgstr ""
1971
 
1972
- #: classes/helpers/FrmFieldsHelper.php:1263
1973
  msgid "Very Important"
1974
  msgstr ""
1975
 
1976
- #: classes/helpers/FrmFieldsHelper.php:1264
1977
  msgid "Important"
1978
  msgstr ""
1979
 
1980
- #: classes/helpers/FrmFieldsHelper.php:1266
1981
  msgid "Somewhat Important"
1982
  msgstr ""
1983
 
1984
- #: classes/helpers/FrmFieldsHelper.php:1267
1985
  msgid "Not at all Important"
1986
  msgstr ""
1987
 
1988
- #: classes/helpers/FrmFieldsHelper.php:1271
1989
  msgid "Agreement"
1990
  msgstr ""
1991
 
1992
- #: classes/helpers/FrmFieldsHelper.php:1272
1993
  msgid "Strongly Agree"
1994
  msgstr ""
1995
 
1996
- #: classes/helpers/FrmFieldsHelper.php:1273
1997
  msgid "Agree"
1998
  msgstr ""
1999
 
2000
- #: classes/helpers/FrmFieldsHelper.php:1275
2001
  msgid "Disagree"
2002
  msgstr ""
2003
 
2004
- #: classes/helpers/FrmFieldsHelper.php:1276
2005
  msgid "Strongly Disagree"
2006
  msgstr ""
2007
 
@@ -2017,215 +2192,237 @@ msgstr ""
2017
  msgid "Switch Form"
2018
  msgstr ""
2019
 
2020
- #: classes/helpers/FrmFormsHelper.php:727
2021
  msgid "Create Form from Template"
2022
  msgstr ""
2023
 
2024
- #: classes/helpers/FrmFormsHelper.php:733
2025
  msgid "Duplicate Form"
2026
  msgstr ""
2027
 
2028
- #: classes/helpers/FrmFormsHelper.php:818
2029
  msgid "Restore from Trash"
2030
  msgstr ""
2031
 
2032
  #: classes/helpers/FrmFormsHelper.php:823
 
 
 
 
 
2033
  msgid "Move Form to Trash"
2034
  msgstr ""
2035
 
2036
- #: classes/helpers/FrmFormsHelper.php:824
2037
- #: classes/helpers/FrmFormsHelper.php:923
2038
- #: classes/helpers/FrmFormsListHelper.php:180
2039
  msgid "Trash"
2040
  msgstr ""
2041
 
2042
- #: classes/helpers/FrmFormsHelper.php:830
2043
- #: classes/helpers/FrmFormsListHelper.php:110
2044
  msgid "Delete Permanently"
2045
  msgstr ""
2046
 
2047
- #: classes/helpers/FrmFormsHelper.php:833
 
 
 
 
 
2048
  msgid "Are you sure you want to delete this form and all its entries?"
2049
  msgstr ""
2050
 
2051
- #: classes/helpers/FrmFormsHelper.php:835
2052
  msgid "Delete form & entries?"
2053
  msgstr ""
2054
 
2055
- #: classes/helpers/FrmFormsHelper.php:847
 
 
 
 
2056
  msgid ""
2057
  "Add this to the first field in each row along with a width. ie frm_first frm4"
2058
  msgstr ""
2059
 
2060
- #: classes/helpers/FrmFormsHelper.php:849
2061
- #: classes/helpers/FrmStylesHelper.php:116
2062
  msgid "Right"
2063
  msgstr ""
2064
 
2065
- #: classes/helpers/FrmFormsHelper.php:851
2066
  msgid "Total"
2067
  msgstr ""
2068
 
2069
- #: classes/helpers/FrmFormsHelper.php:852
2070
  msgid ""
2071
  "Add this to a read-only field to display the text in bold without a border "
2072
  "or background."
2073
  msgstr ""
2074
 
2075
- #: classes/helpers/FrmFormsHelper.php:854
2076
  msgid "First Grid Row"
2077
  msgstr ""
2078
 
2079
- #: classes/helpers/FrmFormsHelper.php:855
2080
  msgid "Even Grid Row"
2081
  msgstr ""
2082
 
2083
- #: classes/helpers/FrmFormsHelper.php:856
2084
  msgid "Odd Grid Row"
2085
  msgstr ""
2086
 
2087
- #: classes/helpers/FrmFormsHelper.php:858
2088
  msgid "2 Col Options"
2089
  msgstr ""
2090
 
2091
- #: classes/helpers/FrmFormsHelper.php:859
2092
  msgid "Put your radio button or checkbox options into two columns."
2093
  msgstr ""
2094
 
2095
- #: classes/helpers/FrmFormsHelper.php:862
2096
  msgid "3 Col Options"
2097
  msgstr ""
2098
 
2099
- #: classes/helpers/FrmFormsHelper.php:863
2100
  msgid "Put your radio button or checkbox options into three columns."
2101
  msgstr ""
2102
 
2103
- #: classes/helpers/FrmFormsHelper.php:866
2104
  msgid "4 Col Options"
2105
  msgstr ""
2106
 
2107
- #: classes/helpers/FrmFormsHelper.php:867
2108
  msgid "Put your radio button or checkbox options into four columns."
2109
  msgstr ""
2110
 
2111
- #: classes/helpers/FrmFormsHelper.php:870
2112
  msgid "Scroll Box"
2113
  msgstr ""
2114
 
2115
- #: classes/helpers/FrmFormsHelper.php:871
2116
  msgid ""
2117
  "If you have many checkbox or radio button options, you may add this class to "
2118
  "allow your user to easily scroll through the options."
2119
  msgstr ""
2120
 
2121
- #: classes/helpers/FrmFormsHelper.php:874
2122
  msgid "Capitalize"
2123
  msgstr ""
2124
 
2125
- #: classes/helpers/FrmFormsHelper.php:875
2126
  msgid "Automatically capitalize the first letter in each word."
2127
  msgstr ""
2128
 
2129
- #: classes/helpers/FrmFormsHelper.php:924
2130
  msgid "Published"
2131
  msgstr ""
2132
 
2133
- #: classes/helpers/FrmFormsListHelper.php:92
2134
  msgid "No Templates Found."
2135
  msgstr ""
2136
 
2137
- #: classes/helpers/FrmFormsListHelper.php:94
2138
  msgid "No Forms Found."
2139
  msgstr ""
2140
 
2141
- #: classes/helpers/FrmFormsListHelper.php:113
2142
  msgid "Move to Trash"
2143
  msgstr ""
2144
 
2145
- #: classes/helpers/FrmFormsListHelper.php:151
2146
  msgid "Create New Template"
2147
  msgstr ""
2148
 
2149
- #: classes/helpers/FrmFormsListHelper.php:156
2150
  msgid ""
2151
  "You have not created any forms yet. You must create a form before you can "
2152
  "make a template."
2153
  msgstr ""
2154
 
2155
- #: classes/helpers/FrmFormsListHelper.php:177
2156
  msgid "My Forms"
2157
  msgstr ""
2158
 
2159
- #: classes/helpers/FrmFormsListHelper.php:178
2160
- #: classes/views/frm-forms/edit.php:9 classes/views/frm-forms/list.php:4
2161
- #: classes/views/frm-forms/new.php:9
2162
  msgid "Templates"
2163
  msgstr ""
2164
 
2165
- #: classes/helpers/FrmFormsListHelper.php:179
2166
  msgid "Drafts"
2167
  msgstr ""
2168
 
2169
- #: classes/helpers/FrmFormsListHelper.php:199
2170
  #, php-format
2171
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
2172
  msgstr ""
2173
 
2174
- #: classes/helpers/FrmStylesHelper.php:92
 
 
 
 
2175
  msgid "Edit Styles"
2176
  msgstr ""
2177
 
2178
- #: classes/helpers/FrmStylesHelper.php:93
2179
  msgid "Manage Form Styles"
2180
  msgstr ""
2181
 
2182
- #: classes/helpers/FrmStylesHelper.php:94
2183
  msgid "Custom CSS"
2184
  msgstr ""
2185
 
2186
- #: classes/helpers/FrmStylesHelper.php:104
2187
  msgid "top"
2188
  msgstr ""
2189
 
2190
- #: classes/helpers/FrmStylesHelper.php:105
2191
  #: classes/views/styles/_field-description.php:33
2192
  #: classes/views/styles/_field-labels.php:31
2193
  #: classes/views/styles/_general.php:11
2194
  msgid "left"
2195
  msgstr ""
2196
 
2197
- #: classes/helpers/FrmStylesHelper.php:106
2198
  #: classes/views/styles/_field-description.php:36
2199
  #: classes/views/styles/_field-labels.php:34
2200
  #: classes/views/styles/_general.php:14
2201
  msgid "right"
2202
  msgstr ""
2203
 
2204
- #: classes/helpers/FrmStylesHelper.php:107
2205
  msgid "none"
2206
  msgstr ""
2207
 
2208
- #: classes/helpers/FrmStylesHelper.php:108
2209
  msgid "inside"
2210
  msgstr ""
2211
 
2212
- #: classes/helpers/FrmStylesHelper.php:114
2213
  msgid "Top"
2214
  msgstr ""
2215
 
2216
- #: classes/helpers/FrmStylesHelper.php:115
2217
  msgid "Left"
2218
  msgstr ""
2219
 
2220
- #: classes/helpers/FrmStylesHelper.php:117
2221
  msgid "Inline (left without a set width)"
2222
  msgstr ""
2223
 
2224
- #: classes/helpers/FrmStylesHelper.php:119
 
 
 
 
2225
  msgid "Hidden (but leave the space)"
2226
  msgstr ""
2227
 
2228
- #: classes/helpers/FrmStylesHelper.php:120
2229
  msgid "Placeholder inside the field"
2230
  msgstr ""
2231
 
@@ -2233,6 +2430,13 @@ msgstr ""
2233
  msgid "Long forms can still be beautiful with sections."
2234
  msgstr ""
2235
 
 
 
 
 
 
 
 
2236
  #: classes/helpers/FrmTipsHelper.php:44
2237
  msgid "Use conditional logic to shorten your forms and increase conversions."
2238
  msgstr ""
@@ -2418,75 +2622,79 @@ msgstr ""
2418
  msgid "Your server is missing the simplexml_import_dom function"
2419
  msgstr ""
2420
 
2421
- #: classes/helpers/FrmXMLHelper.php:810
2422
  msgid "Imported"
2423
  msgstr ""
2424
 
2425
- #: classes/helpers/FrmXMLHelper.php:836
 
 
 
 
2426
  msgid "Nothing was imported or updated"
2427
  msgstr ""
2428
 
2429
- #: classes/helpers/FrmXMLHelper.php:848
2430
  #, php-format
2431
  msgid "%1$s Form"
2432
  msgid_plural "%1$s Forms"
2433
  msgstr[0] ""
2434
  msgstr[1] ""
2435
 
2436
- #: classes/helpers/FrmXMLHelper.php:849
2437
  #, php-format
2438
  msgid "%1$s Field"
2439
  msgid_plural "%1$s Fields"
2440
  msgstr[0] ""
2441
  msgstr[1] ""
2442
 
2443
- #: classes/helpers/FrmXMLHelper.php:850
2444
  #, php-format
2445
  msgid "%1$s Entry"
2446
  msgid_plural "%1$s Entries"
2447
  msgstr[0] ""
2448
  msgstr[1] ""
2449
 
2450
- #: classes/helpers/FrmXMLHelper.php:851
2451
  #, php-format
2452
  msgid "%1$s View"
2453
  msgid_plural "%1$s Views"
2454
  msgstr[0] ""
2455
  msgstr[1] ""
2456
 
2457
- #: classes/helpers/FrmXMLHelper.php:852
2458
  #, php-format
2459
  msgid "%1$s Post"
2460
  msgid_plural "%1$s Posts"
2461
  msgstr[0] ""
2462
  msgstr[1] ""
2463
 
2464
- #: classes/helpers/FrmXMLHelper.php:853
2465
  #, php-format
2466
  msgid "%1$s Style"
2467
  msgid_plural "%1$s Styles"
2468
  msgstr[0] ""
2469
  msgstr[1] ""
2470
 
2471
- #: classes/helpers/FrmXMLHelper.php:854
2472
  #, php-format
2473
  msgid "%1$s Term"
2474
  msgid_plural "%1$s Terms"
2475
  msgstr[0] ""
2476
  msgstr[1] ""
2477
 
2478
- #: classes/helpers/FrmXMLHelper.php:855
2479
  #, php-format
2480
  msgid "%1$s Form Action"
2481
  msgid_plural "%1$s Form Actions"
2482
  msgstr[0] ""
2483
  msgstr[1] ""
2484
 
2485
- #: classes/helpers/FrmXMLHelper.php:949
2486
  msgid "Create Posts"
2487
  msgstr ""
2488
 
2489
- #: classes/helpers/FrmXMLHelper.php:1054
2490
  #: classes/views/frm-form-actions/email_action.php:16
2491
  msgid "Email Notification"
2492
  msgstr ""
@@ -2497,58 +2705,58 @@ msgid ""
2497
  "Your %1$s license key is missing. Please add it on the %2$slicenses page%3$s."
2498
  msgstr ""
2499
 
2500
- #: classes/models/FrmAddon.php:288
2501
  msgid "Oops! You forgot to enter your license number."
2502
  msgstr ""
2503
 
2504
- #: classes/models/FrmAddon.php:362
2505
  msgid "Your license has been activated. Enjoy!"
2506
  msgstr ""
2507
 
2508
- #: classes/models/FrmAddon.php:363 classes/models/FrmAddon.php:368
2509
  msgid "That license key is invalid"
2510
  msgstr ""
2511
 
2512
- #: classes/models/FrmAddon.php:364
2513
  msgid "That license is expired"
2514
  msgstr ""
2515
 
2516
- #: classes/models/FrmAddon.php:365
2517
  msgid "That license has been refunded"
2518
  msgstr ""
2519
 
2520
- #: classes/models/FrmAddon.php:366
2521
  msgid "That license has been used on too many sites"
2522
  msgstr ""
2523
 
2524
- #: classes/models/FrmAddon.php:367
2525
  msgid "Oops! That is the wrong license key for this plugin."
2526
  msgstr ""
2527
 
2528
- #: classes/models/FrmAddon.php:390
2529
  msgid "That license was removed successfully"
2530
  msgstr ""
2531
 
2532
- #: classes/models/FrmAddon.php:392
2533
  msgid "There was an error deactivating your license."
2534
  msgstr ""
2535
 
2536
- #: classes/models/FrmAddon.php:426
2537
  msgid "Your License Key was invalid"
2538
  msgstr ""
2539
 
2540
- #: classes/models/FrmAddon.php:429
2541
  #, php-format
2542
  msgid ""
2543
  "You had an error communicating with the Formidable API. %1$sClick here%2$s "
2544
  "for more information."
2545
  msgstr ""
2546
 
2547
- #: classes/models/FrmAddon.php:432
2548
  msgid "You had an HTTP error connecting to the Formidable API"
2549
  msgstr ""
2550
 
2551
- #: classes/models/FrmAddon.php:443
2552
  #, php-format
2553
  msgid "There was a %1$s error: %2$s"
2554
  msgstr ""
@@ -2557,11 +2765,11 @@ msgstr ""
2557
  msgid "Use the query in an array format so it can be properly prepared."
2558
  msgstr ""
2559
 
2560
- #: classes/models/FrmEDD_SL_Plugin_Updater.php:296
2561
  msgid "You do not have permission to install plugin updates"
2562
  msgstr ""
2563
 
2564
- #: classes/models/FrmEDD_SL_Plugin_Updater.php:296
2565
  #: classes/views/styles/_field-colors.php:15
2566
  #: classes/views/styles/_form-messages.php:7
2567
  msgid "Error"
@@ -2572,44 +2780,35 @@ msgstr ""
2572
  msgid "%1$s Form submitted on %2$s"
2573
  msgstr ""
2574
 
2575
- #: classes/models/FrmEmail.php:299
2576
- #: classes/views/frm-entries/sidebar-shared.php:62
2577
  msgid "User Information"
2578
  msgstr ""
2579
 
2580
- #: classes/models/FrmEmail.php:301 classes/models/FrmEntryValues.php:207
2581
  msgid "User-Agent (Browser/OS)"
2582
  msgstr ""
2583
 
2584
- #: classes/models/FrmEmail.php:302 classes/models/FrmEntryValues.php:212
2585
- #: classes/views/frm-entries/sidebar-shared.php:80
2586
  msgid "Referrer"
2587
  msgstr ""
2588
 
 
 
 
 
 
2589
  #: classes/models/FrmEntryValidate.php:9
2590
  msgid "There was a problem with your submission. Please try again."
2591
  msgstr ""
2592
 
2593
- #: classes/models/FrmEntryValidate.php:14 classes/models/FrmSettings.php:100
2594
- msgid "You do not have permission to do that"
2595
- msgstr ""
2596
-
2597
- #: classes/models/FrmEntryValidate.php:250
2598
- #: classes/models/fields/FrmFieldCaptcha.php:149
2599
- msgid "The captcha is missing from this form"
2600
- msgstr ""
2601
-
2602
- #: classes/models/FrmEntryValidate.php:270
2603
- #: classes/models/fields/FrmFieldCaptcha.php:165
2604
- msgid "There was a problem verifying your recaptcha"
2605
- msgstr ""
2606
-
2607
  #: classes/models/FrmEntryValidate.php:288
2608
- #: classes/models/FrmEntryValidate.php:297
2609
  msgid "Your entry appears to be spam!"
2610
  msgstr ""
2611
 
2612
- #: classes/models/FrmEntryValidate.php:292
2613
  msgid "Your entry appears to be blacklist spam!"
2614
  msgstr ""
2615
 
@@ -2651,10 +2850,18 @@ msgstr ""
2651
  msgid "Phone"
2652
  msgstr ""
2653
 
 
 
 
 
2654
  #: classes/models/FrmField.php:54
2655
  msgid "Hidden Field"
2656
  msgstr ""
2657
 
 
 
 
 
2658
  #: classes/models/FrmField.php:73
2659
  msgid "File Upload"
2660
  msgstr ""
@@ -2667,6 +2874,10 @@ msgstr ""
2667
  msgid "Time"
2668
  msgstr ""
2669
 
 
 
 
 
2670
  #: classes/models/FrmField.php:93
2671
  msgid "Star Rating"
2672
  msgstr ""
@@ -2707,6 +2918,10 @@ msgstr ""
2707
  msgid "Embed Form"
2708
  msgstr ""
2709
 
 
 
 
 
2710
  #: classes/models/FrmField.php:137
2711
  msgid "Tags"
2712
  msgstr ""
@@ -2715,6 +2930,10 @@ msgstr ""
2715
  msgid "Credit Card"
2716
  msgstr ""
2717
 
 
 
 
 
2718
  #: classes/models/FrmFieldValue.php:144
2719
  msgid ""
2720
  "The display value has not been prepared. Please use the "
@@ -2725,113 +2944,62 @@ msgstr ""
2725
  msgid "There are no options for this action."
2726
  msgstr ""
2727
 
2728
- #: classes/models/FrmFormAction.php:694
2729
  #: classes/views/frm-forms/_publish_box.php:30
2730
  msgid "Save Draft"
2731
  msgstr ""
2732
 
2733
- #: classes/models/FrmFormAction.php:695
2734
  #: classes/views/frm-forms/add_field_links.php:7
2735
- #: classes/views/frm-forms/form.php:59
2736
  msgid "Create"
2737
  msgstr ""
2738
 
2739
- #: classes/models/FrmFormAction.php:698 classes/views/xml/import_form.php:10
2740
- msgid "Import"
2741
- msgstr ""
2742
-
2743
- #: classes/models/FrmMigrate.php:398
2744
- msgid "Sending"
2745
- msgstr ""
2746
-
2747
- #: classes/models/FrmPointers.php:169
2748
- msgid ""
2749
- "Click &#8220;Start Tour&#8221; to view a quick introduction of this "
2750
- "plugin&#8217;s core functionality."
2751
- msgstr ""
2752
-
2753
- #: classes/models/FrmPointers.php:185
2754
- msgid "You&#8217;ve just installed a new form builder plugin!"
2755
- msgstr ""
2756
-
2757
- #: classes/models/FrmPointers.php:246
2758
- msgid ""
2759
- "All your forms will be listed on this page. Create your first form by "
2760
- "clicking on the \"Add New\" button."
2761
- msgstr ""
2762
-
2763
- #: classes/models/FrmPointers.php:248
2764
- #, php-format
2765
- msgid ""
2766
- "If you would like to hear about new features and updates for %1$s, subscribe "
2767
- "to our newsletter:"
2768
- msgstr ""
2769
-
2770
- #: classes/models/FrmPointers.php:268
2771
- msgid ""
2772
- "Each time one of your forms is submitted, an entry is created. You will find "
2773
- "every form submission listed here so you will always have a backup if an "
2774
- "email fails."
2775
- msgstr ""
2776
-
2777
- #: classes/models/FrmPointers.php:287
2778
- msgid ""
2779
- "Want to make changes to the way your forms look? Make all the changes you "
2780
- "would like right here, and watch the sample form change before your eyes."
2781
- msgstr ""
2782
 
2783
- #: classes/models/FrmPointers.php:306
2784
- msgid ""
2785
- "Import and export forms and styles when copying from one site to another or "
2786
- "sharing with someone else. Your entries can be exported to a CSV as well. "
2787
- "The Premium version also includes the option to import entries to your site "
2788
- "from a CSV."
2789
  msgstr ""
2790
 
2791
- #: classes/models/FrmPointers.php:326
2792
- msgid ""
2793
- "Turn stylesheets and scripts off, set which user roles have access to change "
2794
- "and create forms, setup your reCaptcha, and set default messages for new "
2795
- "forms and fields."
2796
  msgstr ""
2797
 
2798
- #: classes/models/FrmPointers.php:328
2799
- #, php-format
2800
- msgid ""
2801
- "Once you&#8217;ve purchased %1$s or any addons, you&#8217;ll have to enter a "
2802
- "license key to get access to all of their powerful features. A Plugin "
2803
- "Licenses tab will appear here for you to enter your license key."
2804
  msgstr ""
2805
 
2806
- #: classes/models/FrmPointers.php:342
2807
- msgid "Addons"
2808
  msgstr ""
2809
 
2810
- #: classes/models/FrmPointers.php:343
2811
- #, php-format
2812
- msgid ""
2813
- "The powerful functions of %1$s can be extended with %2$spremium plugins%3$s. "
2814
- "You can read all about the Formidable Premium Plugins %2$shere%3$s."
2815
  msgstr ""
2816
 
2817
- #: classes/models/FrmPointers.php:345
2818
- #, php-format
2819
- msgid ""
2820
- "So, we&#8217;ve come to the end of the tour. If you like the plugin, please "
2821
- "%1$srate it 5 stars on WordPress.org%2$s!"
2822
  msgstr ""
2823
 
2824
- #: classes/models/FrmPointers.php:346
2825
- #, php-format
2826
- msgid ""
2827
- "Thank you for using our plugin and good luck with your forms!<br/><br/>Best,"
2828
- "<br/>Team Formidable - %1$sformidableforms.com%2$s"
2829
  msgstr ""
2830
 
2831
  #: classes/models/FrmSettings.php:93
2832
  msgid "Your responses were successfully submitted. Thank you!"
2833
  msgstr ""
2834
 
 
 
 
 
2835
  #: classes/models/FrmSettings.php:95
2836
  msgid "This value must be unique."
2837
  msgstr ""
@@ -2841,9 +3009,13 @@ msgid "There was a problem with your submission. Errors are marked below."
2841
  msgstr ""
2842
 
2843
  #: classes/models/FrmSettings.php:97
2844
- msgid "We're sorry. It looks like you've already submitted that."
2845
  msgstr ""
2846
 
 
 
 
 
2847
  #: classes/models/FrmSettings.php:99
2848
  msgid "You do not have permission to view this form."
2849
  msgstr ""
@@ -2856,22 +3028,22 @@ msgstr ""
2856
  msgid "New Style"
2857
  msgstr ""
2858
 
2859
- #: classes/models/FrmStyle.php:132
2860
  msgid ""
2861
  "WARNING: Any changes made to this file will be lost when your Formidable "
2862
  "settings are updated"
2863
  msgstr ""
2864
 
2865
- #: classes/models/FrmStyle.php:211
2866
  msgid "Formidable Style"
2867
  msgstr ""
2868
 
2869
- #: classes/models/FrmStyle.php:445
2870
  #: classes/views/styles/_field-description.php:17
2871
  msgid "normal"
2872
  msgstr ""
2873
 
2874
- #: classes/models/FrmStyle.php:448
2875
  msgid "bold"
2876
  msgstr ""
2877
 
@@ -2883,38 +3055,54 @@ msgstr ""
2883
  msgid "Formidable Form"
2884
  msgstr ""
2885
 
2886
- #: classes/widgets/FrmShowForm.php:66
 
 
 
 
2887
  msgid "Show Description"
2888
  msgstr ""
2889
 
2890
- #: classes/models/fields/FrmFieldCheckbox.php:39
2891
- #: classes/models/fields/FrmFieldRadio.php:46
2892
- #: classes/models/fields/FrmFieldSelect.php:34
 
 
 
 
 
 
 
 
2893
  #: classes/views/styles/_sample_form.php:32
2894
  #: classes/views/styles/_sample_form.php:61
2895
  #: classes/views/styles/_sample_form.php:69
2896
  msgid "Option 1"
2897
  msgstr ""
2898
 
2899
- #: classes/models/fields/FrmFieldCheckbox.php:40
2900
- #: classes/models/fields/FrmFieldRadio.php:47
2901
  #: classes/views/styles/_sample_form.php:62
2902
  #: classes/views/styles/_sample_form.php:70
2903
  msgid "Option 2"
2904
  msgstr ""
2905
 
2906
- #: classes/models/fields/FrmFieldNumber.php:58
2907
  msgid "Please select a higher number"
2908
  msgstr ""
2909
 
2910
- #: classes/models/fields/FrmFieldNumber.php:60
2911
  msgid "Please select a lower number"
2912
  msgstr ""
2913
 
2914
- #: classes/models/fields/FrmFieldType.php:321
2915
  msgid "Untitled"
2916
  msgstr ""
2917
 
 
 
 
 
2918
  #: classes/views/addons/list.php:2
2919
  msgid "Formidable AddOns"
2920
  msgstr ""
@@ -2923,7 +3111,19 @@ msgstr ""
2923
  msgid "This plugin is already installed"
2924
  msgstr ""
2925
 
2926
- #: classes/views/addons/list.php:26 classes/views/addons/list.php:26
 
 
 
 
 
 
 
 
 
 
 
 
2927
  msgid "View Docs"
2928
  msgstr ""
2929
 
@@ -2961,7 +3161,7 @@ msgstr ""
2961
  msgid "If you are human, leave this field blank."
2962
  msgstr ""
2963
 
2964
- #: classes/views/frm-entries/list.php:18 classes/views/frm-forms/list.php:20
2965
  #: classes/views/shared/mb_adv_info.php:21
2966
  msgid "Search"
2967
  msgstr ""
@@ -2998,16 +3198,16 @@ msgstr ""
2998
  msgid "To view entries, you must first %1$sbuild a form%2$s"
2999
  msgstr ""
3000
 
3001
- #: classes/views/frm-entries/show.php:9
3002
  #: classes/views/frm-entries/sidebar-shared.php:7
3003
  msgid "View Entry"
3004
  msgstr ""
3005
 
3006
- #: classes/views/frm-entries/show.php:19
3007
  msgid "Entry"
3008
  msgstr ""
3009
 
3010
- #: classes/views/frm-entries/show.php:66
3011
  msgid "Parent Entry ID"
3012
  msgstr ""
3013
 
@@ -3019,17 +3219,21 @@ msgstr ""
3019
  msgid "Post"
3020
  msgstr ""
3021
 
3022
- #: classes/views/frm-entries/sidebar-shared.php:46
 
 
 
 
3023
  #, php-format
3024
  msgid "Created by: %1$s"
3025
  msgstr ""
3026
 
3027
- #: classes/views/frm-entries/sidebar-shared.php:53
3028
  #, php-format
3029
  msgid "Updated by: %1$s"
3030
  msgstr ""
3031
 
3032
- #: classes/views/frm-entries/sidebar-shared.php:73
3033
  msgid "Browser/OS"
3034
  msgstr ""
3035
 
@@ -3045,19 +3249,23 @@ msgstr ""
3045
  msgid "Label"
3046
  msgstr ""
3047
 
3048
- #: classes/views/frm-form-actions/_action_inside.php:32
3049
  msgid "Action Triggers"
3050
  msgstr ""
3051
 
3052
- #: classes/views/frm-form-actions/_action_inside.php:34
3053
  msgid "Trigger this action after"
3054
  msgstr ""
3055
 
3056
- #: classes/views/frm-form-actions/_action_inside.php:57
3057
  #, php-format
3058
  msgid "Action ID: %1$s"
3059
  msgstr ""
3060
 
 
 
 
 
3061
  #: classes/views/frm-form-actions/_email_settings.php:10
3062
  #: classes/views/frm-form-actions/_email_settings.php:16
3063
  msgid "CC"
@@ -3080,6 +3288,14 @@ msgstr ""
3080
  msgid "Reply To"
3081
  msgstr ""
3082
 
 
 
 
 
 
 
 
 
3083
  #: classes/views/frm-form-actions/_email_settings.php:73
3084
  #: classes/views/frm-forms/shortcode_opts.php:12
3085
  msgid "Options"
@@ -3125,6 +3341,14 @@ msgstr ""
3125
  msgid "Highrise"
3126
  msgstr ""
3127
 
 
 
 
 
 
 
 
 
3128
  #: classes/views/frm-forms/_publish_box.php:49
3129
  msgid "On Blank Page"
3130
  msgstr ""
@@ -3153,122 +3377,134 @@ msgstr ""
3153
  msgid "Duplicate Field"
3154
  msgstr ""
3155
 
3156
- #: classes/views/frm-forms/add_field.php:68
3157
  msgid "Add Option"
3158
  msgstr ""
3159
 
3160
- #: classes/views/frm-forms/add_field.php:71
3161
  msgid "Add \"Other\""
3162
  msgstr ""
3163
 
3164
- #: classes/views/frm-forms/add_field.php:78
3165
  msgid "Field Choices"
3166
  msgstr ""
3167
 
3168
- #: classes/views/frm-forms/add_field.php:79
3169
  msgid "Bulk Edit Options"
3170
  msgstr ""
3171
 
3172
- #: classes/views/frm-forms/add_field.php:108
3173
  msgid "Field Type"
3174
  msgstr ""
3175
 
3176
- #: classes/views/frm-forms/add_field.php:124
3177
- #: classes/views/frm-forms/add_field.php:290
3178
  msgid "Required"
3179
  msgstr ""
3180
 
3181
- #: classes/views/frm-forms/add_field.php:134
3182
  msgid ""
3183
  "Unique: Do not allow the same response multiple times. For example, if one "
3184
  "user enters 'Joe', then no one else will be allowed to enter the same name."
3185
  msgstr ""
3186
 
3187
- #: classes/views/frm-forms/add_field.php:135
3188
- #: classes/views/frm-forms/add_field.php:309
3189
  msgid "Unique"
3190
  msgstr ""
3191
 
3192
- #: classes/views/frm-forms/add_field.php:145
3193
  msgid ""
3194
  "Read Only: Show this field but do not allow the field value to be edited "
3195
  "from the front-end."
3196
  msgstr ""
3197
 
3198
- #: classes/views/frm-forms/add_field.php:147
3199
  #: classes/views/styles/_field-colors.php:20
3200
  msgid "Read Only"
3201
  msgstr ""
3202
 
3203
- #: classes/views/frm-forms/add_field.php:157
3204
  msgid "Indicate required field with"
3205
  msgstr ""
3206
 
3207
- #: classes/views/frm-forms/add_field.php:165
3208
  msgid ""
3209
  "The field key can be used as an alternative to the field ID in many cases."
3210
  msgstr ""
3211
 
3212
- #: classes/views/frm-forms/add_field.php:166
3213
  #: classes/views/frm-forms/mb_html_tab.php:11
3214
  msgid "Field Key"
3215
  msgstr ""
3216
 
3217
- #: classes/views/frm-forms/add_field.php:175
3218
  msgid "CSS layout classes"
3219
  msgstr ""
3220
 
3221
- #: classes/views/frm-forms/add_field.php:176
3222
  msgid ""
3223
  "Add a CSS class to the field container. Use our predefined classes to align "
3224
  "multiple fields in single row."
3225
  msgstr ""
3226
 
3227
- #: classes/views/frm-forms/add_field.php:185
3228
  #: classes/views/frm-forms/mb_html_tab.php:14
3229
  msgid "Label Position"
3230
  msgstr ""
3231
 
3232
- #: classes/views/frm-forms/add_field.php:218
3233
  msgid "Show URL image"
3234
  msgstr ""
3235
 
3236
- #: classes/views/frm-forms/add_field.php:223
3237
  msgid ""
3238
  "If this URL points to an image, show to image on the entries listing page."
3239
  msgstr ""
3240
 
3241
- #: classes/views/frm-forms/add_field.php:232
3242
  msgid "ReCaptcha Type"
3243
  msgstr ""
3244
 
3245
- #: classes/views/frm-forms/add_field.php:233
3246
  msgid ""
3247
  "Set the size of the captcha field. The compact option is best if your form "
3248
  "is in a small area."
3249
  msgstr ""
3250
 
3251
- #: classes/views/frm-forms/add_field.php:238
3252
  msgid "Normal"
3253
  msgstr ""
3254
 
3255
- #: classes/views/frm-forms/add_field.php:249
 
 
 
 
3256
  msgid "reCAPTCHA Color"
3257
  msgstr ""
3258
 
3259
- #: classes/views/frm-forms/add_field.php:284
 
 
 
 
 
 
 
 
3260
  msgid "Validation"
3261
  msgstr ""
3262
 
3263
- #: classes/views/frm-forms/add_field.php:300
3264
  msgid "Invalid Format"
3265
  msgstr ""
3266
 
3267
- #: classes/views/frm-forms/add_field.php:318
3268
  msgid "Confirmation"
3269
  msgstr ""
3270
 
3271
- #: classes/views/frm-forms/add_field.php:340
3272
  msgid "Drag fields from your form or the sidebar into this section"
3273
  msgstr ""
3274
 
@@ -3297,7 +3533,7 @@ msgstr ""
3297
  msgid "Click on any box below to set the width for your selected field."
3298
  msgstr ""
3299
 
3300
- #: classes/views/frm-forms/edit.php:9 classes/views/frm-forms/new.php:9
3301
  msgid "Build Form"
3302
  msgstr ""
3303
 
@@ -3313,15 +3549,15 @@ msgstr ""
3313
  msgid "Add Fields Here"
3314
  msgstr ""
3315
 
3316
- #: classes/views/frm-forms/form.php:29
3317
  msgid "Or load fields from a template"
3318
  msgstr ""
3319
 
3320
- #: classes/views/frm-forms/form.php:35
3321
  msgid "Load Template"
3322
  msgstr ""
3323
 
3324
- #: classes/views/frm-forms/form.php:39
3325
  msgid "3. Save your form"
3326
  msgstr ""
3327
 
@@ -3388,7 +3624,7 @@ msgid "Form Name"
3388
  msgstr ""
3389
 
3390
  #: classes/views/frm-forms/mb_html_tab.php:50
3391
- #: classes/views/frm-forms/settings.php:235
3392
  msgid "Form Key"
3393
  msgstr ""
3394
 
@@ -3408,159 +3644,176 @@ msgstr ""
3408
  msgid "Customization"
3409
  msgstr ""
3410
 
3411
- #: classes/views/frm-forms/settings.php:36
3412
  msgid "Customize HTML"
3413
  msgstr ""
3414
 
3415
- #: classes/views/frm-forms/settings.php:59
3416
  msgid "Form Shortcodes"
3417
  msgstr ""
3418
 
3419
- #: classes/views/frm-forms/settings.php:63
 
 
 
 
3420
  msgid "Insert on a page, post, or text widget"
3421
  msgstr ""
3422
 
3423
- #: classes/views/frm-forms/settings.php:68
3424
  msgid "Insert in a template"
3425
  msgstr ""
3426
 
3427
- #: classes/views/frm-forms/settings.php:77
 
 
 
 
3428
  msgid "Form Settings"
3429
  msgstr ""
3430
 
3431
- #: classes/views/frm-forms/settings.php:88
3432
- #: classes/views/frm-forms/settings.php:223
3433
  msgid "On Submit"
3434
  msgstr ""
3435
 
3436
- #: classes/views/frm-forms/settings.php:89
3437
  msgid "Choose what will happen after the user submits this form."
3438
  msgstr ""
3439
 
3440
- #: classes/views/frm-forms/settings.php:98
3441
  msgid "Show Message"
3442
  msgstr ""
3443
 
3444
- #: classes/views/frm-forms/settings.php:101
3445
  msgid "Redirect to URL"
3446
  msgstr ""
3447
 
3448
- #: classes/views/frm-forms/settings.php:104
3449
  msgid "Show Page Content"
3450
  msgstr ""
3451
 
3452
- #: classes/views/frm-forms/settings.php:114
3453
  msgid "Use Content from Page"
3454
  msgstr ""
3455
 
3456
- #: classes/views/frm-forms/settings.php:124
3457
  msgid "Show the form with the confirmation message"
3458
  msgstr ""
3459
 
3460
- #: classes/views/frm-forms/settings.php:132
3461
  msgid "Do not store entries submitted from this form"
3462
  msgstr ""
3463
 
3464
- #: classes/views/frm-forms/settings.php:138
3465
  msgid "Use Akismet to check entries for spam for"
3466
  msgstr ""
3467
 
3468
- #: classes/views/frm-forms/settings.php:141
3469
  msgid "no one"
3470
  msgstr ""
3471
 
3472
- #: classes/views/frm-forms/settings.php:144
3473
  msgid "everyone"
3474
  msgstr ""
3475
 
3476
- #: classes/views/frm-forms/settings.php:147
3477
  msgid "visitors who are not logged in"
3478
  msgstr ""
3479
 
3480
- #: classes/views/frm-forms/settings.php:156
3481
  msgid "AJAX"
3482
  msgstr ""
3483
 
3484
- #: classes/views/frm-forms/settings.php:157
3485
  msgid "Make stuff happen in the background without a page refresh"
3486
  msgstr ""
3487
 
3488
- #: classes/views/frm-forms/settings.php:163
3489
  msgid "Load and save form builder page with AJAX"
3490
  msgstr ""
3491
 
3492
- #: classes/views/frm-forms/settings.php:165
3493
  msgid "Recommended for long forms."
3494
  msgstr ""
3495
 
3496
- #: classes/views/frm-forms/settings.php:173
3497
  msgid "Validate this form with javascript"
3498
  msgstr ""
3499
 
3500
- #: classes/views/frm-forms/settings.php:175
3501
  msgid ""
3502
  "Required fields, email format, and number format can be checked instantly in "
3503
  "your browser. You may want to turn this option off if you have any "
3504
  "customizations to remove validation messages on certain fields."
3505
  msgstr ""
3506
 
3507
- #: classes/views/frm-forms/settings.php:184
3508
  msgid "Styling & Buttons"
3509
  msgstr ""
3510
 
3511
- #: classes/views/frm-forms/settings.php:185
3512
  msgid "Select a style for this form and set the text for your buttons."
3513
  msgstr ""
3514
 
3515
- #: classes/views/frm-forms/settings.php:190
3516
  msgid "Style Template"
3517
  msgstr ""
3518
 
3519
- #: classes/views/frm-forms/settings.php:194
3520
  msgid "Always use default"
3521
  msgstr ""
3522
 
3523
- #: classes/views/frm-forms/settings.php:198 classes/views/styles/manage.php:43
3524
  msgid "default"
3525
  msgstr ""
3526
 
3527
- #: classes/views/frm-forms/settings.php:202
3528
  msgid "Do not use Formidable styling"
3529
  msgstr ""
3530
 
3531
- #: classes/views/frm-forms/settings.php:217
 
 
 
 
 
3532
  msgid "Messages"
3533
  msgstr ""
3534
 
3535
- #: classes/views/frm-forms/settings.php:218
3536
  msgid "Set up your confirmation messages."
3537
  msgstr ""
3538
 
3539
- #: classes/views/frm-forms/settings.php:231
3540
  #: classes/views/frm-settings/form.php:182
3541
  msgid "Miscellaneous"
3542
  msgstr ""
3543
 
3544
- #: classes/views/frm-forms/settings.php:257
3545
  msgid "Add New Action"
3546
  msgstr ""
3547
 
3548
- #: classes/views/frm-forms/settings.php:279
3549
  msgid "Click an action to add it to this form"
3550
  msgstr ""
3551
 
3552
- #: classes/views/frm-forms/settings.php:289
3553
  msgid "Form Classes"
3554
  msgstr ""
3555
 
3556
- #: classes/views/frm-forms/settings.php:295
3557
  msgid "Before Fields"
3558
  msgstr ""
3559
 
3560
- #: classes/views/frm-forms/settings.php:317
3561
  msgid "After Fields"
3562
  msgstr ""
3563
 
 
 
 
 
3564
  #: classes/views/frm-forms/shortcode_opts.php:4
3565
  msgid "Select a form:"
3566
  msgstr ""
@@ -3637,6 +3890,10 @@ msgid ""
3637
  "reCAPTCHA key%2$s."
3638
  msgstr ""
3639
 
 
 
 
 
3640
  #: classes/views/frm-settings/form.php:98
3641
  #: classes/views/frm-settings/form.php:101
3642
  msgid "Optional"
@@ -3771,88 +4028,46 @@ msgid "HTML Tags"
3771
  msgstr ""
3772
 
3773
  #: classes/views/shared/mb_adv_info.php:15
3774
- #: classes/views/shared/mb_adv_info.php:118
3775
  msgid "IDs"
3776
  msgstr ""
3777
 
3778
  #: classes/views/shared/mb_adv_info.php:16
3779
- #: classes/views/shared/mb_adv_info.php:119
3780
  msgid "Keys"
3781
  msgstr ""
3782
 
3783
  #: classes/views/shared/mb_adv_info.php:18
3784
- #: classes/views/shared/mb_adv_info.php:121
3785
  msgid "Fields from your form"
3786
  msgstr ""
3787
 
3788
- #: classes/views/shared/mb_adv_info.php:84
3789
  msgid ""
3790
  "Click a button below to insert extra values from form entries or your site "
3791
  "settings."
3792
  msgstr ""
3793
 
3794
- #: classes/views/shared/mb_adv_info.php:87
3795
  msgid "Helpers"
3796
  msgstr ""
3797
 
3798
- #: classes/views/shared/mb_adv_info.php:131
3799
  msgid "Conditional text here"
3800
  msgstr ""
3801
 
3802
- #: classes/views/shared/mb_adv_info.php:148
3803
  msgid "Click a button below to insert sample logic into your view"
3804
  msgstr ""
3805
 
3806
- #: classes/views/shared/mb_adv_info.php:168
3807
- msgid ""
3808
- "Customize the field values with the following parameters. Click to see a "
3809
- "sample."
3810
  msgstr ""
3811
 
3812
- #: classes/views/shared/mb_adv_info.php:187
3813
- msgid "Show image"
3814
- msgstr ""
3815
-
3816
- #: classes/views/shared/mb_adv_info.php:191
3817
- msgid "Image ID"
3818
- msgstr ""
3819
-
3820
- #: classes/views/shared/mb_adv_info.php:195
3821
- msgid "Image Name"
3822
- msgstr ""
3823
-
3824
- #: classes/views/shared/mb_adv_info.php:206
3825
- msgid "Insert user information"
3826
- msgstr ""
3827
-
3828
- #: classes/views/shared/mb_adv_info.php:225
3829
- msgid "Repeating field options"
3830
- msgstr ""
3831
-
3832
- #: classes/views/shared/mb_adv_info.php:228
3833
- msgid "For Each"
3834
- msgstr ""
3835
-
3836
- #: classes/views/shared/mb_adv_info.php:238
3837
- msgid "Dynamic field options"
3838
- msgstr ""
3839
-
3840
- #: classes/views/shared/mb_adv_info.php:241
3841
- msgid "Creation Date"
3842
- msgstr ""
3843
-
3844
- #: classes/views/shared/mb_adv_info.php:245
3845
- msgid "Field From Entry"
3846
- msgstr ""
3847
-
3848
- #: classes/views/styles/_buttons.php:4
3849
- msgid "Disable submit button styling"
3850
- msgstr ""
3851
-
3852
- #: classes/views/styles/_buttons.php:5
3853
- msgid ""
3854
- "Note: If disabled, you may not see the change take effect until you make 2 "
3855
- "more styling changes or click \"Update Options\"."
3856
  msgstr ""
3857
 
3858
  #: classes/views/styles/_buttons.php:15
@@ -3863,6 +4078,18 @@ msgstr ""
3863
  msgid "Click"
3864
  msgstr ""
3865
 
 
 
 
 
 
 
 
 
 
 
 
 
3866
  #: classes/views/styles/_buttons.php:29
3867
  #: classes/views/styles/_field-labels.php:40
3868
  #: classes/views/styles/_field-sizes.php:12
@@ -3964,6 +4191,10 @@ msgstr ""
3964
  msgid "Color"
3965
  msgstr ""
3966
 
 
 
 
 
3967
  #: classes/views/styles/_field-colors.php:47
3968
  #: classes/views/styles/_field-colors.php:109
3969
  msgid "solid"
@@ -3998,6 +4229,10 @@ msgstr ""
3998
  msgid "Align"
3999
  msgstr ""
4000
 
 
 
 
 
4001
  #: classes/views/styles/_field-labels.php:50
4002
  msgid "Required Indicator"
4003
  msgstr ""
@@ -4068,11 +4303,11 @@ msgstr ""
4068
  msgid "Right to Left"
4069
  msgstr ""
4070
 
4071
- #: classes/views/styles/_general.php:67
4072
  msgid "Override theme styling"
4073
  msgstr ""
4074
 
4075
- #: classes/views/styles/_general.php:67
4076
  msgid ""
4077
  "This will add !important to many of the lines in the Formidable styling to "
4078
  "make sure it will be used."
@@ -4144,6 +4379,10 @@ msgstr ""
4144
  msgid "You can add custom css here or in your theme style.css"
4145
  msgstr ""
4146
 
 
 
 
 
4147
  #: classes/views/styles/manage.php:5
4148
  msgid ""
4149
  "Easily change which template your forms are using by making changes below."
@@ -4185,23 +4424,23 @@ msgstr ""
4185
  msgid "Reset to Default"
4186
  msgstr ""
4187
 
4188
- #: classes/views/xml/import_form.php:12
4189
  msgid ""
4190
  "Upload your Formidable XML file to import forms into this site. If your "
4191
  "imported form key and creation date match a form on your site, that form "
4192
  "will be updated."
4193
  msgstr ""
4194
 
4195
- #: classes/views/xml/import_form.php:19
4196
  msgid "Choose a Formidable XML file"
4197
  msgstr ""
4198
 
4199
- #: classes/views/xml/import_form.php:20
4200
  #, php-format
4201
  msgid "Maximum size: %s"
4202
  msgstr ""
4203
 
4204
- #: classes/views/xml/import_form.php:28
4205
  msgid "Upload file and import"
4206
  msgstr ""
4207
 
@@ -4269,7 +4508,7 @@ msgstr ""
4269
  msgid "automatic width"
4270
  msgstr ""
4271
 
4272
- #: classes/views/frm-fields/back-end/field-captcha.php:4
4273
  #, php-format
4274
  msgid ""
4275
  "Your captcha will not appear on your form until you %1$sset up%2$s the Site "
@@ -4339,340 +4578,6 @@ msgid ""
4339
  "starting with ^ or an exact format like (999)999-9999."
4340
  msgstr ""
4341
 
4342
- #. Name of the plugin
4343
- msgid "Formidable Forms"
4344
- msgstr ""
4345
-
4346
  #. Description of the plugin
4347
  msgid "Quickly and easily create drag-and-drop forms"
4348
  msgstr ""
4349
-
4350
- #. URI of the plugin
4351
- #. Author URI of the plugin
4352
- msgid "https://formidableforms.com/"
4353
- msgstr ""
4354
-
4355
- #. Author of the plugin
4356
- msgid "Strategy11"
4357
- msgstr ""
4358
-
4359
- #: classes/controllers/FrmAddonsController.php:9
4360
- #: classes/controllers/FrmAddonsController.php:9
4361
- msgid "Upgrade to Pro"
4362
- msgstr "Frissítés a Pro verzióra"
4363
-
4364
- #: classes/controllers/FrmAppController.php:97
4365
- #: classes/helpers/FrmFormsListHelper.php:322
4366
- #: classes/views/frm-forms/settings.php:9
4367
- msgid "Settings"
4368
- msgstr "Beállítások"
4369
-
4370
- #: classes/controllers/FrmEntriesController.php:73
4371
- msgid "Support"
4372
- msgstr "Segítség"
4373
-
4374
- #: classes/controllers/FrmFormsController.php:657
4375
- #: classes/models/FrmField.php:81
4376
- msgid "Date"
4377
- msgstr "Dátum"
4378
-
4379
- #: classes/controllers/FrmStylesController.php:370
4380
- #: classes/models/FrmPointers.php:325 classes/views/frm-forms/settings.php:30
4381
- #: classes/views/frm-settings/form.php:17
4382
- msgid "General"
4383
- msgstr "Általános"
4384
-
4385
- #: classes/helpers/FrmAppHelper.php:562
4386
- #: classes/helpers/FrmFormsListHelper.php:96
4387
- msgid "Add New"
4388
- msgstr "Új hozzáadása"
4389
-
4390
- #: classes/helpers/FrmAppHelper.php:1347
4391
- msgid "months"
4392
- msgstr "hónap"
4393
-
4394
- #: classes/helpers/FrmAppHelper.php:1348
4395
- msgid "weeks"
4396
- msgstr "hét"
4397
-
4398
- #: classes/helpers/FrmAppHelper.php:1349
4399
- msgid "days"
4400
- msgstr "nap"
4401
-
4402
- #: classes/helpers/FrmAppHelper.php:1630
4403
- msgid "Cancel"
4404
- msgstr "Mégsem"
4405
-
4406
- #: classes/helpers/FrmAppHelper.php:1631
4407
- #: classes/helpers/FrmFormsListHelper.php:286
4408
- #: classes/views/frm-forms/add_field.php:189
4409
- #: classes/views/styles/_buttons.php:12
4410
- #: classes/views/styles/_field-colors.php:5
4411
- msgid "Default"
4412
- msgstr "Alapérték"
4413
-
4414
- #: classes/helpers/FrmAppHelper.php:1646
4415
- msgid "Confirm Password"
4416
- msgstr "Jelszó megerősítése"
4417
-
4418
- #: classes/helpers/FrmAppHelper.php:1680
4419
- msgid "English"
4420
- msgstr "angol"
4421
-
4422
- #: classes/helpers/FrmAppHelper.php:1696
4423
- msgid "Danish"
4424
- msgstr "dán"
4425
-
4426
- #: classes/helpers/FrmAppHelper.php:1704
4427
- msgid "Finnish"
4428
- msgstr "finn"
4429
-
4430
- #: classes/helpers/FrmAppHelper.php:1705
4431
- msgid "French"
4432
- msgstr "francia"
4433
-
4434
- #: classes/helpers/FrmAppHelper.php:1708
4435
- msgid "German"
4436
- msgstr "német"
4437
-
4438
- #: classes/helpers/FrmAppHelper.php:1715
4439
- msgid "Hungarian"
4440
- msgstr "magyar"
4441
-
4442
- #: classes/helpers/FrmAppHelper.php:1730
4443
- msgid "Russian"
4444
- msgstr "orosz"
4445
-
4446
- #: classes/helpers/FrmCSVExportHelper.php:119
4447
- msgid "Comment"
4448
- msgstr "Megjegyzés"
4449
-
4450
- #: classes/helpers/FrmCSVExportHelper.php:126
4451
- msgid "Timestamp"
4452
- msgstr "Időbélyeg"
4453
-
4454
- #: classes/helpers/FrmCSVExportHelper.php:127
4455
- msgid "Last Updated"
4456
- msgstr "Legutóbbi frissítés"
4457
-
4458
- #: classes/helpers/FrmCSVExportHelper.php:130
4459
- #: classes/helpers/FrmFormsHelper.php:922
4460
- #: classes/helpers/FrmFormsListHelper.php:363
4461
- msgid "Draft"
4462
- msgstr "Vázlat"
4463
-
4464
- #: classes/helpers/FrmCSVExportHelper.php:131
4465
- msgid "IP"
4466
- msgstr "IP"
4467
-
4468
- #: classes/helpers/FrmFormsHelper.php:819
4469
- #: classes/helpers/FrmFormsListHelper.php:106
4470
- msgid "Restore"
4471
- msgstr "Visszaállítás"
4472
-
4473
- #: classes/helpers/FrmFormsHelper.php:831 classes/models/FrmFormAction.php:697
4474
- msgid "Delete"
4475
- msgstr "Törlés"
4476
-
4477
- #: classes/helpers/FrmFormsHelper.php:846
4478
- msgid "First"
4479
- msgstr "Első"
4480
-
4481
- #: classes/helpers/FrmFormsListHelper.php:286
4482
- msgid "Custom"
4483
- msgstr "Egyedi"
4484
-
4485
- #: classes/helpers/FrmStylesHelper.php:118
4486
- msgid "None"
4487
- msgstr "Nincs"
4488
-
4489
- #: classes/helpers/FrmTipsHelper.php:40 classes/helpers/FrmTipsHelper.php:45
4490
- #: classes/helpers/FrmTipsHelper.php:60 classes/helpers/FrmTipsHelper.php:104
4491
- #: classes/helpers/FrmTipsHelper.php:109 classes/helpers/FrmTipsHelper.php:177
4492
- #: classes/helpers/FrmTipsHelper.php:189
4493
- msgid "Upgrade to Pro."
4494
- msgstr "Frissítés a Pro verzióra."
4495
-
4496
- #: classes/helpers/FrmXMLHelper.php:811
4497
- msgid "Updated"
4498
- msgstr "Frissítve"
4499
-
4500
- #: classes/models/FrmEmail.php:318 classes/models/FrmEntryValues.php:202
4501
- #: classes/views/frm-entries/sidebar-shared.php:66
4502
- msgid "IP Address"
4503
- msgstr "IP cím"
4504
-
4505
- #: classes/models/FrmField.php:34 classes/models/FrmPointers.php:251
4506
- msgid "Email"
4507
- msgstr "Email címed"
4508
-
4509
- #: classes/models/FrmField.php:50
4510
- msgid "HTML"
4511
- msgstr "HTML"
4512
-
4513
- #: classes/models/FrmField.php:58
4514
- msgid "User ID"
4515
- msgstr "Felhasználó azonosító"
4516
-
4517
- #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
4518
- msgid "reCAPTCHA"
4519
- msgstr "reCAPTCHA"
4520
-
4521
- #: classes/models/FrmField.php:89
4522
- msgid "Scale"
4523
- msgstr "Átméretezés"
4524
-
4525
- #: classes/models/FrmField.php:133
4526
- msgid "Password"
4527
- msgstr "Jelszó"
4528
-
4529
- #: classes/models/FrmField.php:145
4530
- msgid "Address"
4531
- msgstr "Cégnév"
4532
-
4533
- #: classes/models/FrmFormAction.php:696
4534
- #: classes/views/frm-forms/_publish_box.php:34
4535
- #: classes/views/frm-forms/_publish_box.php:38
4536
- #: classes/views/frm-forms/add_field_links.php:7
4537
- #: classes/views/frm-forms/edit.php:23 classes/views/frm-forms/form.php:59
4538
- #: classes/views/frm-forms/settings.php:354
4539
- msgid "Update"
4540
- msgstr "Frisítés"
4541
-
4542
- #: classes/models/FrmPointers.php:103
4543
- msgid "Close"
4544
- msgstr "Zárva"
4545
-
4546
- #: classes/models/FrmPointers.php:168
4547
- msgid "Congratulations!"
4548
- msgstr "Gratulálunk!"
4549
-
4550
- #: classes/models/FrmPointers.php:178
4551
- msgid "Start Tour"
4552
- msgstr "Túra indítása"
4553
-
4554
- #: classes/models/FrmPointers.php:220
4555
- msgid "Next"
4556
- msgstr "Következő"
4557
-
4558
- #: classes/models/FrmPointers.php:229
4559
- msgid "Previous"
4560
- msgstr "Előző"
4561
-
4562
- #: classes/models/FrmPointers.php:247
4563
- msgid "Subscribe to our Newsletter"
4564
- msgstr "Feliratkozás a hírlevelünkre"
4565
-
4566
- #: classes/models/FrmPointers.php:253
4567
- msgid "Subscribe"
4568
- msgstr "Feliratkozás"
4569
-
4570
- #: classes/models/FrmPointers.php:345
4571
- msgid "Like this plugin?"
4572
- msgstr "Kedveli ezt a bővítményt?"
4573
-
4574
- #: classes/models/FrmSettings.php:94
4575
- msgid "This field cannot be blank."
4576
- msgstr "Ez a mező nem maradhat üresen."
4577
-
4578
- #: classes/models/FrmSettings.php:98 classes/views/styles/_sample_form.php:77
4579
- msgid "Submit"
4580
- msgstr "Beküldés"
4581
-
4582
- #: classes/widgets/FrmShowForm.php:46
4583
- msgid "Title"
4584
- msgstr "Cím"
4585
-
4586
- #: classes/models/fields/FrmFieldUrl.php:34
4587
- msgid "Website"
4588
- msgstr "Weboldal"
4589
-
4590
- #: classes/views/addons/list.php:19
4591
- msgid "Installed"
4592
- msgstr "Telepítve"
4593
-
4594
- #: classes/views/addons/list.php:21 classes/views/addons/settings.php:32
4595
- msgid "Activate"
4596
- msgstr "Sikeresen regisztrált oldalunkra!"
4597
-
4598
- #: classes/views/addons/list.php:24 classes/views/addons/list.php:24
4599
- #: classes/views/addons/upgrade_to_pro.php:24
4600
- msgid "Get Started"
4601
- msgstr "Vágjon bele"
4602
-
4603
- #: classes/views/frm-entries/sidebar-shared.php:21
4604
- msgid "Edit"
4605
- msgstr "Szerkesztés"
4606
-
4607
- #: classes/views/frm-form-actions/_email_settings.php:4
4608
- msgid "To"
4609
- msgstr "Címzett"
4610
-
4611
- #: classes/views/frm-form-actions/_email_settings.php:63
4612
- msgid "Subject"
4613
- msgstr "Téma"
4614
-
4615
- #: classes/views/frm-form-actions/_email_settings.php:69
4616
- msgid "Message"
4617
- msgstr "Üzenet"
4618
-
4619
- #: classes/views/frm-forms/_publish_box.php:44
4620
- msgid "Preview"
4621
- msgstr "Előnézet"
4622
-
4623
- #: classes/views/frm-forms/add_field.php:241
4624
- msgid "Compact"
4625
- msgstr "Kompakt"
4626
-
4627
- #: classes/views/frm-forms/add_field.php:255
4628
- msgid "Light"
4629
- msgstr "Világos"
4630
-
4631
- #: classes/views/frm-forms/add_field.php:258
4632
- msgid "Dark"
4633
- msgstr "Sötét"
4634
-
4635
- #: classes/views/frm-forms/settings.php:61
4636
- msgid "Show"
4637
- msgstr "Megjelenít"
4638
-
4639
- #: classes/views/frm-forms/settings.php:71
4640
- msgid "Hide"
4641
- msgstr "Elrejtés"
4642
-
4643
- #: classes/views/frm-forms/settings.php:207
4644
- #: classes/views/frm-settings/form.php:174
4645
- msgid "Submit Button Text"
4646
- msgstr "Beküldés gomb szövege"
4647
-
4648
- #: classes/views/frm-forms/settings.php:320
4649
- msgid "Submit Button"
4650
- msgstr "Beküldés Gomb"
4651
-
4652
- #: classes/views/frm-settings/form.php:97
4653
- msgid "Site Key"
4654
- msgstr "Oldal kulcs"
4655
-
4656
- #: classes/views/styles/_buttons.php:24
4657
- #: classes/views/styles/_check-box-radio-fields.php:40
4658
- #: classes/views/styles/_field-description.php:26
4659
- #: classes/views/styles/_field-labels.php:14
4660
- #: classes/views/styles/_field-sizes.php:2
4661
- #: classes/views/styles/_form-description.php:2
4662
- #: classes/views/styles/_form-messages.php:27
4663
- #: classes/views/styles/_form-messages.php:51
4664
- #: classes/views/styles/_form-title.php:2
4665
- msgid "Size"
4666
- msgstr "Méret"
4667
-
4668
- #: classes/views/styles/_field-colors.php:10
4669
- msgid "Active"
4670
- msgstr "Bekapcsolva"
4671
-
4672
- #: classes/views/styles/_field-labels.php:19
4673
- msgid "Position"
4674
- msgstr "Elhelyezkedés"
4675
-
4676
- #: classes/views/styles/custom_css.php:39 classes/views/styles/manage.php:65
4677
- msgid "Save Changes"
4678
- msgstr "Módosítások mentése"
2
  msgstr ""
3
  "Project-Id-Version: Formidable v2.05.02\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-10-15 19:32+0000\n"
6
+ "PO-Revision-Date: 2018-10-15 19:33+0000\n"
7
+ "Last-Translator: Formidable Community\n"
8
  "Language-Team: Hungarian\n"
9
+ "Language: hu_HU\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;"
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: hu_HU"
24
 
 
25
  #: classes/controllers/FrmAddonsController.php:6
26
  msgid "AddOns"
27
  msgstr ""
28
 
29
+ #: classes/controllers/FrmAddonsController.php:9
30
+ msgid "Upgrade to Pro"
31
+ msgstr "Frissítés a Pro verzióra"
32
+
33
  #: classes/controllers/FrmAddonsController.php:27
34
  msgid "There are no plugins on your site that require a license"
35
  msgstr ""
36
 
37
+ #: classes/controllers/FrmAppController.php:83
38
  msgid "Build"
39
  msgstr ""
40
 
41
+ #: classes/controllers/FrmAppController.php:90
42
+ #: classes/helpers/FrmFormsListHelper.php:336
43
+ #: classes/views/frm-forms/settings.php:10
44
+ msgid "Settings"
45
+ msgstr "Beállítások"
46
+
47
+ #: classes/controllers/FrmAppController.php:97
48
  #: classes/controllers/FrmEntriesController.php:8
49
  #: classes/controllers/FrmEntriesController.php:8
50
+ #: classes/controllers/FrmEntriesController.php:126
51
+ #: classes/controllers/FrmFormsController.php:642
52
  #: classes/controllers/FrmXMLController.php:57
53
+ #: classes/views/frm-entries/list.php:5
54
  msgid "Entries"
55
  msgstr ""
56
 
57
+ #: classes/controllers/FrmAppController.php:113
58
  msgid "Build a Form"
59
  msgstr ""
60
 
61
+ #: classes/controllers/FrmAppController.php:146
62
  #, php-format
63
  msgid ""
64
  "This site has been previously authorized to run Formidable Forms. "
66
  "running the free version and remove this message."
67
  msgstr ""
68
 
69
+ #: classes/controllers/FrmAppController.php:505
70
  #, php-format
71
  msgid ""
72
  "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress."
73
  "org%4$s. Thank you heaps!"
74
  msgstr ""
75
 
76
+ #: classes/controllers/FrmEntriesController.php:67
77
  msgid "Overview"
78
  msgstr ""
79
 
80
+ #: classes/controllers/FrmEntriesController.php:69
81
  msgid ""
82
  "This screen provides access to all of your entries. You can customize the "
83
  "display of this screen to suit your workflow."
84
  msgstr ""
85
 
86
+ #: classes/controllers/FrmEntriesController.php:71
87
  msgid ""
88
  "Hovering over a row in the entries list will display action links that allow "
89
  "you to manage your entry."
90
  msgstr ""
91
 
92
+ #: classes/controllers/FrmEntriesController.php:77
93
  msgid "For more information:"
94
  msgstr ""
95
 
96
+ #: classes/controllers/FrmEntriesController.php:78
97
  msgid "Documentation on Entries"
98
  msgstr ""
99
 
100
+ #: classes/controllers/FrmEntriesController.php:79
101
+ msgid "Support"
102
+ msgstr "Segítség"
103
+
104
+ #: classes/controllers/FrmEntriesController.php:105
105
+ #: classes/controllers/FrmFormsController.php:877
106
  #: classes/views/frm-entries/form.php:43
107
  #: classes/views/frm-entries/sidebar-shared.php:38
108
  msgid "Entry Key"
109
  msgstr ""
110
 
111
+ #: classes/controllers/FrmEntriesController.php:110
112
+ #: classes/controllers/FrmFormsController.php:542
113
  #: classes/widgets/FrmShowForm.php:53
114
  msgid "Form"
115
  msgstr ""
116
 
117
+ #: classes/controllers/FrmEntriesController.php:111
118
  msgid "Entry Name"
119
  msgstr ""
120
 
121
+ #: classes/controllers/FrmEntriesController.php:112
122
+ #: classes/helpers/FrmCSVExportHelper.php:146
123
  msgid "Created By"
124
  msgstr ""
125
 
126
+ #: classes/controllers/FrmEntriesController.php:115
127
  msgid "Entry creation date"
128
  msgstr ""
129
 
130
+ #: classes/controllers/FrmEntriesController.php:116
131
  msgid "Entry update date"
132
  msgstr ""
133
 
134
+ #: classes/controllers/FrmEntriesController.php:416
135
  msgid "Your import is complete"
136
  msgstr ""
137
 
138
+ #: classes/controllers/FrmEntriesController.php:426
139
  #, php-format
140
  msgid ""
141
  "This form is in the trash and is scheduled to be deleted permanently in %s "
142
  "along with any entries."
143
  msgstr ""
144
 
145
+ #: classes/controllers/FrmEntriesController.php:445
146
  msgid "You are trying to view an entry that does not exist."
147
  msgstr ""
148
 
149
+ #: classes/controllers/FrmEntriesController.php:473
150
  msgid "Entry was Successfully Destroyed"
151
  msgstr ""
152
 
153
+ #: classes/controllers/FrmEntriesController.php:505
154
  msgid "Entries were Successfully Destroyed"
155
  msgstr ""
156
 
157
+ #: classes/controllers/FrmEntriesController.php:508
158
  msgid "No entries were specified"
159
  msgstr ""
160
 
161
+ #: classes/controllers/FrmFieldsController.php:304
162
  msgid "Other"
163
  msgstr ""
164
 
165
+ #: classes/controllers/FrmFieldsController.php:307
166
  msgid "New Option"
167
  msgstr ""
168
 
169
+ #: classes/controllers/FrmFormActionsController.php:11
170
+ #: classes/views/frm-forms/settings.php:36
171
  msgid "Form Actions"
172
  msgstr ""
173
 
174
+ #: classes/controllers/FrmFormActionsController.php:213
175
+ #: classes/models/FrmEntryValidate.php:14 classes/models/FrmSettings.php:100
176
+ msgid "You do not have permission to do that"
177
+ msgstr ""
178
+
179
  #: classes/controllers/FrmFormsController.php:6
180
+ #: classes/controllers/FrmFormsController.php:652
181
  #: classes/controllers/FrmXMLController.php:56
182
+ #: classes/views/frm-forms/list.php:5
183
  msgid "Forms"
184
  msgstr ""
185
 
186
+ #: classes/controllers/FrmFormsController.php:173
187
  msgid "Settings Successfully Updated"
188
  msgstr ""
189
 
190
+ #: classes/controllers/FrmFormsController.php:199
191
+ #: classes/controllers/FrmFormsController.php:723
192
  msgid "Form was Successfully Updated"
193
  msgstr ""
194
 
195
+ #: classes/controllers/FrmFormsController.php:232
196
+ #: classes/controllers/FrmFormsController.php:1712
197
  msgid "Form template was Successfully Created"
198
  msgstr ""
199
 
200
+ #: classes/controllers/FrmFormsController.php:232
201
  msgid "Form was Successfully Copied"
202
  msgstr ""
203
 
204
+ #: classes/controllers/FrmFormsController.php:236
205
  msgid "There was a problem creating the new template."
206
  msgstr ""
207
 
208
+ #: classes/controllers/FrmFormsController.php:343
209
  msgid "Form Preview"
210
  msgstr ""
211
 
212
+ #: classes/controllers/FrmFormsController.php:386
213
+ #: classes/controllers/FrmFormsController.php:434
214
  #, php-format
215
  msgid "%1$s form restored from the Trash."
216
  msgid_plural "%1$s forms restored from the Trash."
217
  msgstr[0] ""
218
  msgstr[1] ""
219
 
220
+ #: classes/controllers/FrmFormsController.php:435
221
+ #: classes/controllers/FrmFormsController.php:459
222
  #, php-format
223
  msgid "%1$s form moved to the Trash. %2$sUndo%3$s"
224
  msgid_plural "%1$s forms moved to the Trash. %2$sUndo%3$s"
225
  msgstr[0] ""
226
  msgstr[1] ""
227
 
228
+ #: classes/controllers/FrmFormsController.php:481
229
+ #: classes/controllers/FrmFormsController.php:497
230
+ #: classes/controllers/FrmFormsController.php:511
231
  #, php-format
232
  msgid "%1$s form permanently deleted."
233
  msgid_plural "%1$s forms permanently deleted."
234
  msgstr[0] ""
235
  msgstr[1] ""
236
 
237
+ #: classes/controllers/FrmFormsController.php:525
238
  msgid "Add forms and content"
239
  msgstr ""
240
 
241
+ #: classes/controllers/FrmFormsController.php:543
242
  #: classes/views/frm-forms/insert_form_popup.php:24
243
  msgid "Insert a Form"
244
  msgstr ""
245
 
246
+ #: classes/controllers/FrmFormsController.php:573
247
  msgid "Display form title"
248
  msgstr ""
249
 
250
+ #: classes/controllers/FrmFormsController.php:577
251
  msgid "Display form description"
252
  msgstr ""
253
 
254
+ #: classes/controllers/FrmFormsController.php:581
255
  msgid "Minimize form HTML"
256
  msgstr ""
257
 
258
+ #: classes/controllers/FrmFormsController.php:637
259
  msgid "Template Name"
260
  msgstr ""
261
 
262
+ #: classes/controllers/FrmFormsController.php:638
263
  msgid "Type"
264
  msgstr ""
265
 
266
+ #: classes/controllers/FrmFormsController.php:639
267
+ #: classes/controllers/FrmFormsController.php:643
268
+ #: classes/helpers/FrmCSVExportHelper.php:151
269
  msgid "Key"
270
  msgstr ""
271
 
272
+ #: classes/controllers/FrmFormsController.php:641
273
+ #: classes/controllers/FrmStylesController.php:372
274
  #: classes/views/styles/_sample_form.php:17 classes/views/styles/manage.php:16
275
  msgid "Form Title"
276
  msgstr ""
277
 
278
+ #: classes/controllers/FrmFormsController.php:644
279
  msgid "Shortcodes"
280
  msgstr ""
281
 
282
+ #: classes/controllers/FrmFormsController.php:647
283
+ #: classes/models/FrmField.php:81
284
+ msgid "Date"
285
+ msgstr "Dátum"
286
+
287
+ #: classes/controllers/FrmFormsController.php:699
288
  msgid "You are trying to edit a form that does not exist."
289
  msgstr ""
290
 
291
+ #: classes/controllers/FrmFormsController.php:703
292
  #, php-format
293
  msgid "You are trying to edit a child form. Please edit from %1$shere%2$s"
294
  msgstr ""
295
 
296
+ #: classes/controllers/FrmFormsController.php:725
297
  msgid "Template was Successfully Updated"
298
  msgstr ""
299
 
300
+ #: classes/controllers/FrmFormsController.php:731
301
+ #: classes/controllers/FrmFormsController.php:752
302
  msgid "That template cannot be edited"
303
  msgstr ""
304
 
305
+ #: classes/controllers/FrmFormsController.php:802
306
+ msgid ""
307
+ "Customize the field values with the following parameters. Click to see a "
308
+ "sample."
309
+ msgstr ""
310
+
311
+ #: classes/controllers/FrmFormsController.php:816
312
+ msgid "Insert user information"
313
+ msgstr ""
314
+
315
+ #: classes/controllers/FrmFormsController.php:837
316
  msgid "Separator"
317
  msgstr ""
318
 
319
+ #: classes/controllers/FrmFormsController.php:838
320
  msgid "Use a different separator for checkbox fields"
321
  msgstr ""
322
 
323
+ #: classes/controllers/FrmFormsController.php:840
324
  msgid "Date Format"
325
  msgstr ""
326
 
327
+ #: classes/controllers/FrmFormsController.php:841
328
  msgid "Field Label"
329
  msgstr ""
330
 
331
+ #: classes/controllers/FrmFormsController.php:843
332
  msgid "No Auto P"
333
  msgstr ""
334
 
335
+ #: classes/controllers/FrmFormsController.php:844
336
  msgid "Do not automatically add any paragraphs or line breaks"
337
  msgstr ""
338
 
339
+ #: classes/controllers/FrmFormsController.php:858
340
+ #: classes/models/FrmField.php:58
341
+ msgid "User ID"
342
+ msgstr "Felhasználó azonosító"
343
+
344
+ #: classes/controllers/FrmFormsController.php:859
345
+ msgid "First Name"
346
+ msgstr ""
347
+
348
+ #: classes/controllers/FrmFormsController.php:860
349
+ msgid "Last Name"
350
+ msgstr ""
351
+
352
+ #: classes/controllers/FrmFormsController.php:861
353
+ msgid "Display Name"
354
+ msgstr ""
355
+
356
+ #: classes/controllers/FrmFormsController.php:862
357
+ msgid "User Login"
358
+ msgstr ""
359
+
360
+ #: classes/controllers/FrmFormsController.php:863
361
+ #: classes/models/FrmField.php:34
362
+ msgid "Email"
363
+ msgstr "Email címed"
364
+
365
+ #: classes/controllers/FrmFormsController.php:864
366
+ msgid "Avatar"
367
+ msgstr ""
368
+
369
+ #: classes/controllers/FrmFormsController.php:865
370
+ msgid "Author Link"
371
+ msgstr ""
372
+
373
+ #: classes/controllers/FrmFormsController.php:876
374
  #: classes/views/frm-entries/sidebar-shared.php:32
375
  msgid "Entry ID"
376
  msgstr ""
377
 
378
+ #: classes/controllers/FrmFormsController.php:878
379
  msgid "Post ID"
380
  msgstr ""
381
 
382
+ #: classes/controllers/FrmFormsController.php:879
383
  msgid "User IP"
384
  msgstr ""
385
 
386
+ #: classes/controllers/FrmFormsController.php:880
387
  msgid "Entry created"
388
  msgstr ""
389
 
390
+ #: classes/controllers/FrmFormsController.php:881
391
  msgid "Entry updated"
392
  msgstr ""
393
 
394
+ #: classes/controllers/FrmFormsController.php:883
395
  msgid "Site URL"
396
  msgstr ""
397
 
398
+ #: classes/controllers/FrmFormsController.php:884
399
  msgid "Site Name"
400
  msgstr ""
401
 
402
+ #: classes/controllers/FrmFormsController.php:892
403
  msgid "Default Msg"
404
  msgstr ""
405
 
406
+ #: classes/controllers/FrmFormsController.php:893
407
  msgid "Default HTML"
408
  msgstr ""
409
 
410
+ #: classes/controllers/FrmFormsController.php:894
411
  msgid "Default Plain"
412
  msgstr ""
413
 
414
+ #: classes/controllers/FrmFormsController.php:982
415
  msgid "No forms were specified"
416
  msgstr ""
417
 
418
+ #: classes/controllers/FrmFormsController.php:1129
419
  msgid "Abnormal HTML characters prevented your form from saving correctly"
420
  msgstr ""
421
 
422
+ #: classes/controllers/FrmFormsController.php:1244
423
+ #: classes/controllers/FrmFormsController.php:1258
424
  msgid "Please select a valid form"
425
  msgstr ""
426
 
427
+ #: classes/controllers/FrmFormsController.php:1486
428
  msgid "Please wait while you are redirected."
429
  msgstr ""
430
 
431
+ #: classes/controllers/FrmFormsController.php:1520
432
  #, php-format
433
  msgid "%1$sClick here%2$s if you are not automatically redirected."
434
  msgstr ""
435
 
436
  #: classes/controllers/FrmSettingsController.php:9
437
+ #: classes/views/frm-settings/form.php:2
 
438
  msgid "Global Settings"
439
  msgstr ""
440
 
441
  #: classes/controllers/FrmSettingsController.php:39
442
+ #: classes/views/addons/settings.php:2
443
  msgid "Plugin Licenses"
444
  msgstr ""
445
 
448
  msgid "Settings Saved"
449
  msgstr ""
450
 
451
+ #: classes/controllers/FrmStylesController.php:17
452
+ #: classes/controllers/FrmStylesController.php:35
453
+ #: classes/controllers/FrmStylesController.php:47
454
+ #: classes/controllers/FrmStylesController.php:47
 
455
  msgid "Styles"
456
  msgstr ""
457
 
458
+ #: classes/controllers/FrmStylesController.php:36
459
+ #: classes/controllers/FrmStylesController.php:37
460
  #: classes/views/styles/_field-colors.php:44
461
  #: classes/views/styles/_field-colors.php:106
462
  #: classes/views/styles/_field-description.php:14
463
  msgid "Style"
464
  msgstr ""
465
 
466
+ #: classes/controllers/FrmStylesController.php:39
467
  msgid "Create a New Style"
468
  msgstr ""
469
 
470
+ #: classes/controllers/FrmStylesController.php:40
471
  msgid "Edit Style"
472
  msgstr ""
473
 
474
+ #: classes/controllers/FrmStylesController.php:213
475
+ #: classes/controllers/FrmStylesController.php:312
476
  msgid "Your styling settings have been saved."
477
  msgstr ""
478
 
479
+ #: classes/controllers/FrmStylesController.php:272
480
  msgid "Your form styles have been saved."
481
  msgstr ""
482
 
483
+ #: classes/controllers/FrmStylesController.php:371
484
+ #: classes/views/frm-forms/settings.php:33
485
+ #: classes/views/frm-settings/form.php:17
486
+ msgid "General"
487
+ msgstr "Általános"
488
+
489
+ #: classes/controllers/FrmStylesController.php:373
490
  #: classes/views/frm-forms/mb_html_tab.php:49
491
+ #: classes/views/frm-forms/settings.php:248
492
  msgid "Form Description"
493
  msgstr ""
494
 
495
+ #: classes/controllers/FrmStylesController.php:374
496
  msgid "Field Labels"
497
  msgstr ""
498
 
499
+ #: classes/controllers/FrmStylesController.php:375
500
  #: classes/views/frm-forms/mb_html_tab.php:13
501
  msgid "Field Description"
502
  msgstr ""
503
 
504
+ #: classes/controllers/FrmStylesController.php:376
505
  msgid "Field Colors"
506
  msgstr ""
507
 
508
+ #: classes/controllers/FrmStylesController.php:377
509
+ #: classes/views/frm-forms/add_field.php:110
510
  msgid "Field Settings"
511
  msgstr ""
512
 
513
+ #: classes/controllers/FrmStylesController.php:378
514
  msgid "Check Box & Radio Fields"
515
  msgstr ""
516
 
517
+ #: classes/controllers/FrmStylesController.php:379
518
  msgid "Buttons"
519
  msgstr ""
520
 
521
+ #: classes/controllers/FrmStylesController.php:380
522
  msgid "Form Messages"
523
  msgstr ""
524
 
525
+ #: classes/controllers/FrmStylesController.php:584
526
  #: classes/views/frm-forms/mb_insert_fields.php:2
527
  msgid "Click to toggle"
528
  msgstr ""
529
 
530
  #: classes/controllers/FrmXMLController.php:6
531
+ #: classes/views/xml/import_form.php:2
 
532
  msgid "Import/Export"
533
  msgstr ""
534
 
535
+ #: classes/controllers/FrmXMLController.php:90
536
  msgid "Oops, you didn't select a file."
537
  msgstr ""
538
 
539
+ #: classes/controllers/FrmXMLController.php:99
540
  msgid "The file does not exist, please try again."
541
  msgstr ""
542
 
543
+ #: classes/controllers/FrmXMLController.php:124
544
  msgid ""
545
  "XML import is not enabled on your server with the "
546
  "libxml_disable_entity_loader function."
547
  msgstr ""
548
 
549
+ #: classes/controllers/FrmXMLController.php:301
550
  msgid "Please select a form"
551
  msgstr ""
552
 
553
+ #: classes/controllers/FrmXMLController.php:357
554
  msgid "There are no entries for that form."
555
  msgstr ""
556
 
557
+ #: classes/helpers/FrmAppHelper.php:566
558
+ #: classes/helpers/FrmFormsListHelper.php:108
559
+ msgid "Add New"
560
+ msgstr "Új hozzáadása"
561
+
562
+ #: classes/helpers/FrmAppHelper.php:694
563
  msgid "View Forms and Templates"
564
  msgstr ""
565
 
566
+ #: classes/helpers/FrmAppHelper.php:695
567
  msgid "Add/Edit Forms and Templates"
568
  msgstr ""
569
 
570
+ #: classes/helpers/FrmAppHelper.php:696
571
  msgid "Delete Forms and Templates"
572
  msgstr ""
573
 
574
+ #: classes/helpers/FrmAppHelper.php:697
575
  msgid "Access this Settings Page"
576
  msgstr ""
577
 
578
+ #: classes/helpers/FrmAppHelper.php:698
579
  msgid "View Entries from Admin Area"
580
  msgstr ""
581
 
582
+ #: classes/helpers/FrmAppHelper.php:699
583
  msgid "Delete Entries from Admin Area"
584
  msgstr ""
585
 
586
+ #: classes/helpers/FrmAppHelper.php:706
587
  msgid "Add Entries from Admin Area"
588
  msgstr ""
589
 
590
+ #: classes/helpers/FrmAppHelper.php:707
591
  msgid "Edit Entries from Admin Area"
592
  msgstr ""
593
 
594
+ #: classes/helpers/FrmAppHelper.php:708
595
  msgid "View Reports"
596
  msgstr ""
597
 
598
+ #: classes/helpers/FrmAppHelper.php:709
599
  msgid "Add/Edit Views"
600
  msgstr ""
601
 
602
+ #: classes/helpers/FrmAppHelper.php:1308
603
  msgid "at"
604
  msgstr ""
605
 
606
+ #: classes/helpers/FrmAppHelper.php:1357 classes/helpers/FrmAppHelper.php:1376
607
  msgid "seconds"
608
  msgstr ""
609
 
610
+ #: classes/helpers/FrmAppHelper.php:1370
611
  msgid "year"
612
  msgstr ""
613
 
614
+ #: classes/helpers/FrmAppHelper.php:1370
615
  msgid "years"
616
  msgstr ""
617
 
618
+ #: classes/helpers/FrmAppHelper.php:1371
619
  msgid "month"
620
  msgstr ""
621
 
622
+ #: classes/helpers/FrmAppHelper.php:1371
623
+ msgid "months"
624
+ msgstr "hónap"
625
+
626
+ #: classes/helpers/FrmAppHelper.php:1372
627
  msgid "week"
628
  msgstr ""
629
 
630
+ #: classes/helpers/FrmAppHelper.php:1372
631
+ msgid "weeks"
632
+ msgstr "hét"
633
+
634
+ #: classes/helpers/FrmAppHelper.php:1373
635
  msgid "day"
636
  msgstr ""
637
 
638
+ #: classes/helpers/FrmAppHelper.php:1373
639
+ msgid "days"
640
+ msgstr "nap"
641
+
642
+ #: classes/helpers/FrmAppHelper.php:1374
643
  msgid "hour"
644
  msgstr ""
645
 
646
+ #: classes/helpers/FrmAppHelper.php:1374
647
  msgid "hours"
648
  msgstr ""
649
 
650
+ #: classes/helpers/FrmAppHelper.php:1375
651
  msgid "minute"
652
  msgstr ""
653
 
654
+ #: classes/helpers/FrmAppHelper.php:1375
655
  msgid "minutes"
656
  msgstr ""
657
 
658
+ #: classes/helpers/FrmAppHelper.php:1376
659
  msgid "second"
660
  msgstr ""
661
 
662
+ #: classes/helpers/FrmAppHelper.php:1468
663
  msgid "Give this action a label for easy reference."
664
  msgstr ""
665
 
666
+ #: classes/helpers/FrmAppHelper.php:1469
667
  msgid ""
668
  "Add one or more recipient addresses separated by a \",\". FORMAT: Name "
669
  "<name@email.com> or name@email.com. [admin_email] is the address set in WP "
670
  "General Settings."
671
  msgstr ""
672
 
673
+ #: classes/helpers/FrmAppHelper.php:1470
674
  msgid ""
675
  "Add CC addresses separated by a \",\". FORMAT: Name <name@email.com> or "
676
  "name@email.com."
677
  msgstr ""
678
 
679
+ #: classes/helpers/FrmAppHelper.php:1471
680
  msgid ""
681
  "Add BCC addresses separated by a \",\". FORMAT: Name <name@email.com> or "
682
  "name@email.com."
683
  msgstr ""
684
 
685
+ #: classes/helpers/FrmAppHelper.php:1472
686
  msgid ""
687
  "If you would like a different reply to address than the \"from\" address, "
688
  "add a single address here. FORMAT: Name <name@email.com> or name@email.com."
689
  msgstr ""
690
 
691
+ #: classes/helpers/FrmAppHelper.php:1473
692
  msgid ""
693
  "Enter the name and/or email address of the sender. FORMAT: John Bates "
694
  "<john@example.com> or john@example.com."
695
  msgstr ""
696
 
697
+ #: classes/helpers/FrmAppHelper.php:1474
698
  #, php-format
699
  msgid ""
700
  "If you leave the subject blank, the default will be used: %1$s Form "
701
  "submitted on %2$s"
702
  msgstr ""
703
 
704
+ #: classes/helpers/FrmAppHelper.php:1605 classes/helpers/FrmAppHelper.php:1675
705
  msgid "Please wait while your site updates."
706
  msgstr ""
707
 
708
+ #: classes/helpers/FrmAppHelper.php:1606
709
  msgid "Are you sure you want to deauthorize Formidable Forms on this site?"
710
  msgstr ""
711
 
712
+ #: classes/helpers/FrmAppHelper.php:1636
713
  msgid "Remove"
714
  msgstr ""
715
 
716
+ #: classes/helpers/FrmAppHelper.php:1639
717
+ #: classes/helpers/FrmCSVExportHelper.php:150
718
  msgid "ID"
719
  msgstr ""
720
 
721
+ #: classes/helpers/FrmAppHelper.php:1640
722
  msgid "No results match"
723
  msgstr ""
724
 
725
+ #: classes/helpers/FrmAppHelper.php:1641
726
  msgid "That file looks like Spam."
727
  msgstr ""
728
 
729
+ #: classes/helpers/FrmAppHelper.php:1642
730
+ msgid "There is an error in the calculation in the field with key"
731
+ msgstr ""
732
+
733
+ #: classes/helpers/FrmAppHelper.php:1643
734
  msgid "Please complete the preceding required fields before uploading a file."
735
  msgstr ""
736
 
737
+ #: classes/helpers/FrmAppHelper.php:1650
738
  msgid ""
739
  "Are you sure you want to do this? Clicking OK will delete all forms, form "
740
  "data, and all other Formidable data. There is no Undo."
741
  msgstr ""
742
 
743
+ #: classes/helpers/FrmAppHelper.php:1651
744
+ #: classes/views/frm-forms/add_field.php:37
745
+ #: classes/views/frm-forms/add_field.php:50
746
  msgid "(Click to add description)"
747
  msgstr ""
748
 
749
+ #: classes/helpers/FrmAppHelper.php:1652
750
+ #: classes/views/frm-fields/single-option.php:8
751
+ #: classes/views/frm-fields/single-option.php:14
752
  msgid "(Blank)"
753
  msgstr ""
754
 
755
+ #: classes/helpers/FrmAppHelper.php:1653
756
+ #: classes/views/frm-forms/add_field.php:17
757
  msgid "(no label)"
758
  msgstr ""
759
 
760
+ #: classes/helpers/FrmAppHelper.php:1654
761
  msgid "Saving"
762
  msgstr ""
763
 
764
+ #: classes/helpers/FrmAppHelper.php:1655
765
  msgid "Saved"
766
  msgstr ""
767
 
768
+ #: classes/helpers/FrmAppHelper.php:1657
769
+ msgid "Cancel"
770
+ msgstr "Mégsem"
771
+
772
+ #: classes/helpers/FrmAppHelper.php:1658
773
+ #: classes/helpers/FrmFormsListHelper.php:300
774
+ #: classes/views/frm-forms/add_field.php:197
775
+ #: classes/views/styles/_buttons.php:12
776
+ #: classes/views/styles/_field-colors.php:5
777
+ msgid "Default"
778
+ msgstr "Alapérték"
779
+
780
+ #: classes/helpers/FrmAppHelper.php:1659
781
+ #: classes/helpers/FrmFieldsHelper.php:1153
782
  msgid "Clear default value when typing"
783
  msgstr ""
784
 
785
+ #: classes/helpers/FrmAppHelper.php:1660
786
+ #: classes/helpers/FrmFieldsHelper.php:1153
787
  msgid "Do not clear default value when typing"
788
  msgstr ""
789
 
790
+ #: classes/helpers/FrmAppHelper.php:1661
791
+ #: classes/helpers/FrmFieldsHelper.php:1163
792
  msgid "Default value will pass form validation"
793
  msgstr ""
794
 
795
+ #: classes/helpers/FrmAppHelper.php:1662
796
+ #: classes/helpers/FrmFieldsHelper.php:1163
797
  msgid "Default value will NOT pass form validation"
798
  msgstr ""
799
 
800
+ #: classes/helpers/FrmAppHelper.php:1663
801
+ #: classes/helpers/FrmEntriesListHelper.php:257
802
+ #: classes/helpers/FrmFormsHelper.php:831 classes/views/styles/show.php:64
803
  msgid "Are you sure?"
804
  msgstr ""
805
 
806
+ #: classes/helpers/FrmAppHelper.php:1664
807
  msgid ""
808
  "Are you sure you want to delete this field and all data associated with it?"
809
  msgstr ""
810
 
811
+ #: classes/helpers/FrmAppHelper.php:1665
812
  msgid "WARNING: This will delete all fields inside of the section as well."
813
  msgstr ""
814
 
815
+ #: classes/helpers/FrmAppHelper.php:1666
816
  msgid ""
817
  "Warning: If you have entries with multiple rows, all but the first row will "
818
  "be lost."
819
  msgstr ""
820
 
821
+ #: classes/helpers/FrmAppHelper.php:1668
822
  #: classes/helpers/FrmFieldsHelper.php:268
823
  msgid "The entered values do not match"
824
  msgstr ""
825
 
826
+ #: classes/helpers/FrmAppHelper.php:1669
827
  msgid "Enter Email"
828
  msgstr ""
829
 
830
+ #: classes/helpers/FrmAppHelper.php:1670
831
  msgid "Confirm Email"
832
  msgstr ""
833
 
834
+ #: classes/helpers/FrmAppHelper.php:1671
835
  msgid ""
836
  "In certain browsers (e.g. Firefox) text will not display correctly if the "
837
  "field height is too small relative to the field padding and text size. "
838
  "Please increase your field height or decrease your field padding."
839
  msgstr ""
840
 
841
+ #: classes/helpers/FrmAppHelper.php:1672
842
  msgid "Enter Password"
843
  msgstr ""
844
 
845
+ #: classes/helpers/FrmAppHelper.php:1673
846
+ msgid "Confirm Password"
847
+ msgstr "Jelszó megerősítése"
848
+
849
+ #: classes/helpers/FrmAppHelper.php:1674
850
  msgid "Import Complete"
851
  msgstr ""
852
 
853
+ #: classes/helpers/FrmAppHelper.php:1676
854
  msgid "Warning: There is no way to retrieve unsaved entries."
855
  msgstr ""
856
 
857
+ #: classes/helpers/FrmAppHelper.php:1680
858
  msgid "No new licenses were found"
859
  msgstr ""
860
 
861
+ #: classes/helpers/FrmAppHelper.php:1681
862
+ msgid "This calculation has at least one unmatched ( ) { } [ ]."
863
+ msgstr ""
864
+
865
+ #: classes/helpers/FrmAppHelper.php:1682
866
+ msgid "This calculation may have shortcodes that work in Views but not forms."
867
+ msgstr ""
868
+
869
+ #: classes/helpers/FrmAppHelper.php:1683
870
+ msgid ""
871
+ "This calculation may have shortcodes that work in text calculations but not "
872
+ "numeric calculations."
873
+ msgstr ""
874
+
875
+ #: classes/helpers/FrmAppHelper.php:1684
876
  msgid "Please enter a Repeat Limit that is greater than 1."
877
  msgstr ""
878
 
879
+ #: classes/helpers/FrmAppHelper.php:1706
880
  msgid ""
881
  "You are running an outdated version of Formidable. This plugin may not work "
882
  "correctly if you do not update Formidable."
883
  msgstr ""
884
 
885
+ #: classes/helpers/FrmAppHelper.php:1712
886
+ msgid "English"
887
+ msgstr "angol"
888
+
889
+ #: classes/helpers/FrmAppHelper.php:1713
890
  msgid "English/Western"
891
  msgstr ""
892
 
893
+ #: classes/helpers/FrmAppHelper.php:1714
894
  msgid "Afrikaans"
895
  msgstr ""
896
 
897
+ #: classes/helpers/FrmAppHelper.php:1715
898
  msgid "Albanian"
899
  msgstr ""
900
 
901
+ #: classes/helpers/FrmAppHelper.php:1716
902
  msgid "Arabic"
903
  msgstr ""
904
 
905
+ #: classes/helpers/FrmAppHelper.php:1717
906
  msgid "Armenian"
907
  msgstr ""
908
 
909
+ #: classes/helpers/FrmAppHelper.php:1718
910
  msgid "Azerbaijani"
911
  msgstr ""
912
 
913
+ #: classes/helpers/FrmAppHelper.php:1719
914
  msgid "Basque"
915
  msgstr ""
916
 
917
+ #: classes/helpers/FrmAppHelper.php:1720
918
  msgid "Bosnian"
919
  msgstr ""
920
 
921
+ #: classes/helpers/FrmAppHelper.php:1721
922
  msgid "Bulgarian"
923
  msgstr ""
924
 
925
+ #: classes/helpers/FrmAppHelper.php:1722
926
  msgid "Catalan"
927
  msgstr ""
928
 
929
+ #: classes/helpers/FrmAppHelper.php:1723
930
  msgid "Chinese Hong Kong"
931
  msgstr ""
932
 
933
+ #: classes/helpers/FrmAppHelper.php:1724
934
  msgid "Chinese Simplified"
935
  msgstr ""
936
 
937
+ #: classes/helpers/FrmAppHelper.php:1725
938
  msgid "Chinese Traditional"
939
  msgstr ""
940
 
941
+ #: classes/helpers/FrmAppHelper.php:1726
942
  msgid "Croatian"
943
  msgstr ""
944
 
945
+ #: classes/helpers/FrmAppHelper.php:1727
946
  msgid "Czech"
947
  msgstr ""
948
 
949
+ #: classes/helpers/FrmAppHelper.php:1728
950
+ msgid "Danish"
951
+ msgstr "dán"
952
+
953
+ #: classes/helpers/FrmAppHelper.php:1729
954
  msgid "Dutch"
955
  msgstr ""
956
 
957
+ #: classes/helpers/FrmAppHelper.php:1730
958
  msgid "English/UK"
959
  msgstr ""
960
 
961
+ #: classes/helpers/FrmAppHelper.php:1731
962
  msgid "Esperanto"
963
  msgstr ""
964
 
965
+ #: classes/helpers/FrmAppHelper.php:1732
966
  msgid "Estonian"
967
  msgstr ""
968
 
969
+ #: classes/helpers/FrmAppHelper.php:1733
970
  msgid "Faroese"
971
  msgstr ""
972
 
973
+ #: classes/helpers/FrmAppHelper.php:1734
974
  msgid "Farsi/Persian"
975
  msgstr ""
976
 
977
+ #: classes/helpers/FrmAppHelper.php:1735
978
  msgid "Filipino"
979
  msgstr ""
980
 
981
+ #: classes/helpers/FrmAppHelper.php:1736
982
+ msgid "Finnish"
983
+ msgstr "finn"
984
+
985
+ #: classes/helpers/FrmAppHelper.php:1737
986
+ msgid "French"
987
+ msgstr "francia"
988
+
989
+ #: classes/helpers/FrmAppHelper.php:1738
990
  msgid "French/Canadian"
991
  msgstr ""
992
 
993
+ #: classes/helpers/FrmAppHelper.php:1739
994
  msgid "French/Swiss"
995
  msgstr ""
996
 
997
+ #: classes/helpers/FrmAppHelper.php:1740
998
+ msgid "German"
999
+ msgstr "német"
1000
+
1001
+ #: classes/helpers/FrmAppHelper.php:1741
1002
  msgid "German/Austria"
1003
  msgstr ""
1004
 
1005
+ #: classes/helpers/FrmAppHelper.php:1742
1006
  msgid "German/Switzerland"
1007
  msgstr ""
1008
 
1009
+ #: classes/helpers/FrmAppHelper.php:1743
1010
  msgid "Greek"
1011
  msgstr ""
1012
 
1013
+ #: classes/helpers/FrmAppHelper.php:1744 classes/helpers/FrmAppHelper.php:1745
1014
  msgid "Hebrew"
1015
  msgstr ""
1016
 
1017
+ #: classes/helpers/FrmAppHelper.php:1746
1018
  msgid "Hindi"
1019
  msgstr ""
1020
 
1021
+ #: classes/helpers/FrmAppHelper.php:1747
1022
+ msgid "Hungarian"
1023
+ msgstr "magyar"
1024
+
1025
+ #: classes/helpers/FrmAppHelper.php:1748
1026
  msgid "Icelandic"
1027
  msgstr ""
1028
 
1029
+ #: classes/helpers/FrmAppHelper.php:1749
1030
  msgid "Indonesian"
1031
  msgstr ""
1032
 
1033
+ #: classes/helpers/FrmAppHelper.php:1750
1034
  msgid "Italian"
1035
  msgstr ""
1036
 
1037
+ #: classes/helpers/FrmAppHelper.php:1751
1038
  msgid "Japanese"
1039
  msgstr ""
1040
 
1041
+ #: classes/helpers/FrmAppHelper.php:1752
1042
  msgid "Korean"
1043
  msgstr ""
1044
 
1045
+ #: classes/helpers/FrmAppHelper.php:1753
1046
  msgid "Latvian"
1047
  msgstr ""
1048
 
1049
+ #: classes/helpers/FrmAppHelper.php:1754
1050
  msgid "Lithuanian"
1051
  msgstr ""
1052
 
1053
+ #: classes/helpers/FrmAppHelper.php:1755
1054
  msgid "Malaysian"
1055
  msgstr ""
1056
 
1057
+ #: classes/helpers/FrmAppHelper.php:1756
1058
  msgid "Norwegian"
1059
  msgstr ""
1060
 
1061
+ #: classes/helpers/FrmAppHelper.php:1757
1062
  msgid "Polish"
1063
  msgstr ""
1064
 
1065
+ #: classes/helpers/FrmAppHelper.php:1758
1066
  msgid "Portuguese"
1067
  msgstr ""
1068
 
1069
+ #: classes/helpers/FrmAppHelper.php:1759
1070
  msgid "Portuguese/Brazilian"
1071
  msgstr ""
1072
 
1073
+ #: classes/helpers/FrmAppHelper.php:1760
1074
  msgid "Portuguese/Portugal"
1075
  msgstr ""
1076
 
1077
+ #: classes/helpers/FrmAppHelper.php:1761
1078
  msgid "Romanian"
1079
  msgstr ""
1080
 
1081
+ #: classes/helpers/FrmAppHelper.php:1762
1082
+ msgid "Russian"
1083
+ msgstr "orosz"
1084
+
1085
+ #: classes/helpers/FrmAppHelper.php:1763 classes/helpers/FrmAppHelper.php:1764
1086
  msgid "Serbian"
1087
  msgstr ""
1088
 
1089
+ #: classes/helpers/FrmAppHelper.php:1765
1090
  msgid "Slovak"
1091
  msgstr ""
1092
 
1093
+ #: classes/helpers/FrmAppHelper.php:1766
1094
  msgid "Slovenian"
1095
  msgstr ""
1096
 
1097
+ #: classes/helpers/FrmAppHelper.php:1767
1098
  msgid "Spanish"
1099
  msgstr ""
1100
 
1101
+ #: classes/helpers/FrmAppHelper.php:1768
1102
  msgid "Spanish/Latin America"
1103
  msgstr ""
1104
 
1105
+ #: classes/helpers/FrmAppHelper.php:1769
1106
  msgid "Swedish"
1107
  msgstr ""
1108
 
1109
+ #: classes/helpers/FrmAppHelper.php:1770
1110
  msgid "Tamil"
1111
  msgstr ""
1112
 
1113
+ #: classes/helpers/FrmAppHelper.php:1771
1114
  msgid "Thai"
1115
  msgstr ""
1116
 
1117
+ #: classes/helpers/FrmAppHelper.php:1772 classes/helpers/FrmAppHelper.php:1773
1118
  msgid "Turkish"
1119
  msgstr ""
1120
 
1121
+ #: classes/helpers/FrmAppHelper.php:1774
1122
  msgid "Ukranian"
1123
  msgstr ""
1124
 
1125
+ #: classes/helpers/FrmAppHelper.php:1775
1126
  msgid "Vietnamese"
1127
  msgstr ""
1128
 
1129
+ #: classes/helpers/FrmCSVExportHelper.php:121
1130
  msgid "(label)"
1131
  msgstr ""
1132
 
1133
+ #: classes/helpers/FrmCSVExportHelper.php:137
1134
+ msgid "Comment"
1135
+ msgstr "Megjegyzés"
1136
+
1137
+ #: classes/helpers/FrmCSVExportHelper.php:138
1138
  msgid "Comment User"
1139
  msgstr ""
1140
 
1141
+ #: classes/helpers/FrmCSVExportHelper.php:139
1142
  msgid "Comment Date"
1143
  msgstr ""
1144
 
1145
+ #: classes/helpers/FrmCSVExportHelper.php:144
1146
+ msgid "Timestamp"
1147
+ msgstr "Időbélyeg"
1148
+
1149
+ #: classes/helpers/FrmCSVExportHelper.php:145
1150
+ msgid "Last Updated"
1151
+ msgstr "Legutóbbi frissítés"
1152
+
1153
+ #: classes/helpers/FrmCSVExportHelper.php:147
1154
  msgid "Updated By"
1155
  msgstr ""
1156
 
1157
+ #: classes/helpers/FrmCSVExportHelper.php:148
1158
+ #: classes/helpers/FrmFormsHelper.php:945
1159
+ #: classes/helpers/FrmFormsListHelper.php:377
1160
+ msgid "Draft"
1161
+ msgstr "Vázlat"
1162
+
1163
+ #: classes/helpers/FrmCSVExportHelper.php:149
1164
+ msgid "IP"
1165
+ msgstr "IP"
1166
+
1167
+ #: classes/helpers/FrmCSVExportHelper.php:153
1168
+ msgid "Parent ID"
1169
+ msgstr ""
1170
+
1171
+ #: classes/helpers/FrmEntriesHelper.php:456
1172
+ #: classes/helpers/FrmEntriesHelper.php:457
1173
  msgid "Unknown"
1174
  msgstr ""
1175
 
1176
+ #: classes/helpers/FrmEntriesHelper.php:543
1177
  msgid "Really delete?"
1178
  msgstr ""
1179
 
1180
+ #: classes/helpers/FrmEntriesListHelper.php:90
1181
  msgid "No Entries Found"
1182
  msgstr ""
1183
 
1184
+ #: classes/helpers/FrmEntriesListHelper.php:113
1185
  msgid "View all forms"
1186
  msgstr ""
1187
 
1188
+ #: classes/helpers/FrmEntriesListHelper.php:253
1189
  #: classes/views/frm-entries/sidebar-shared.php:24
1190
  msgid "View"
1191
  msgstr ""
1192
 
1193
  #: classes/helpers/FrmFieldsHelper.php:160
1194
  #: classes/helpers/FrmFieldsHelper.php:276
1195
+ #: classes/models/fields/FrmFieldType.php:321
1196
  #, php-format
1197
  msgid "%s is invalid"
1198
  msgstr ""
1203
  msgstr ""
1204
 
1205
  #: classes/helpers/FrmFieldsHelper.php:275
1206
+ #: classes/models/fields/FrmFieldType.php:319
1207
  msgid "This field is invalid"
1208
  msgstr ""
1209
 
1210
+ #: classes/helpers/FrmFieldsHelper.php:479
1211
  #, php-format
1212
  msgid "Please add options from the WordPress \"%1$s\" page"
1213
  msgstr ""
1214
 
1215
+ #: classes/helpers/FrmFieldsHelper.php:1269
1216
  msgid "Afghanistan"
1217
  msgstr ""
1218
 
1219
+ #: classes/helpers/FrmFieldsHelper.php:1269
1220
  msgid "Albania"
1221
  msgstr ""
1222
 
1223
+ #: classes/helpers/FrmFieldsHelper.php:1269
1224
  msgid "Algeria"
1225
  msgstr ""
1226
 
1227
+ #: classes/helpers/FrmFieldsHelper.php:1269
1228
  msgid "American Samoa"
1229
  msgstr ""
1230
 
1231
+ #: classes/helpers/FrmFieldsHelper.php:1269
1232
  msgid "Andorra"
1233
  msgstr ""
1234
 
1235
+ #: classes/helpers/FrmFieldsHelper.php:1269
1236
  msgid "Angola"
1237
  msgstr ""
1238
 
1239
+ #: classes/helpers/FrmFieldsHelper.php:1269
1240
  msgid "Anguilla"
1241
  msgstr ""
1242
 
1243
+ #: classes/helpers/FrmFieldsHelper.php:1269
1244
  msgid "Antarctica"
1245
  msgstr ""
1246
 
1247
+ #: classes/helpers/FrmFieldsHelper.php:1269
1248
  msgid "Antigua and Barbuda"
1249
  msgstr ""
1250
 
1251
+ #: classes/helpers/FrmFieldsHelper.php:1269
1252
  msgid "Argentina"
1253
  msgstr ""
1254
 
1255
+ #: classes/helpers/FrmFieldsHelper.php:1269
1256
  msgid "Armenia"
1257
  msgstr ""
1258
 
1259
+ #: classes/helpers/FrmFieldsHelper.php:1269
1260
  msgid "Aruba"
1261
  msgstr ""
1262
 
1263
+ #: classes/helpers/FrmFieldsHelper.php:1269
1264
  msgid "Australia"
1265
  msgstr ""
1266
 
1267
+ #: classes/helpers/FrmFieldsHelper.php:1269
1268
  msgid "Austria"
1269
  msgstr ""
1270
 
1271
+ #: classes/helpers/FrmFieldsHelper.php:1269
1272
  msgid "Azerbaijan"
1273
  msgstr ""
1274
 
1275
+ #: classes/helpers/FrmFieldsHelper.php:1269
1276
  msgid "Bahamas"
1277
  msgstr ""
1278
 
1279
+ #: classes/helpers/FrmFieldsHelper.php:1269
1280
  msgid "Bahrain"
1281
  msgstr ""
1282
 
1283
+ #: classes/helpers/FrmFieldsHelper.php:1269
1284
  msgid "Bangladesh"
1285
  msgstr ""
1286
 
1287
+ #: classes/helpers/FrmFieldsHelper.php:1269
1288
  msgid "Barbados"
1289
  msgstr ""
1290
 
1291
+ #: classes/helpers/FrmFieldsHelper.php:1269
1292
  msgid "Belarus"
1293
  msgstr ""
1294
 
1295
+ #: classes/helpers/FrmFieldsHelper.php:1269
1296
  msgid "Belgium"
1297
  msgstr ""
1298
 
1299
+ #: classes/helpers/FrmFieldsHelper.php:1269
1300
  msgid "Belize"
1301
  msgstr ""
1302
 
1303
+ #: classes/helpers/FrmFieldsHelper.php:1269
1304
  msgid "Benin"
1305
  msgstr ""
1306
 
1307
+ #: classes/helpers/FrmFieldsHelper.php:1269
1308
  msgid "Bermuda"
1309
  msgstr ""
1310
 
1311
+ #: classes/helpers/FrmFieldsHelper.php:1269
1312
  msgid "Bhutan"
1313
  msgstr ""
1314
 
1315
+ #: classes/helpers/FrmFieldsHelper.php:1269
1316
  msgid "Bolivia"
1317
  msgstr ""
1318
 
1319
+ #: classes/helpers/FrmFieldsHelper.php:1269
1320
  msgid "Bosnia and Herzegovina"
1321
  msgstr ""
1322
 
1323
+ #: classes/helpers/FrmFieldsHelper.php:1269
1324
  msgid "Botswana"
1325
  msgstr ""
1326
 
1327
+ #: classes/helpers/FrmFieldsHelper.php:1269
1328
  msgid "Brazil"
1329
  msgstr ""
1330
 
1331
+ #: classes/helpers/FrmFieldsHelper.php:1269
1332
  msgid "Brunei"
1333
  msgstr ""
1334
 
1335
+ #: classes/helpers/FrmFieldsHelper.php:1269
1336
  msgid "Bulgaria"
1337
  msgstr ""
1338
 
1339
+ #: classes/helpers/FrmFieldsHelper.php:1269
1340
  msgid "Burkina Faso"
1341
  msgstr ""
1342
 
1343
+ #: classes/helpers/FrmFieldsHelper.php:1269
1344
  msgid "Burundi"
1345
  msgstr ""
1346
 
1347
+ #: classes/helpers/FrmFieldsHelper.php:1269
1348
  msgid "Cambodia"
1349
  msgstr ""
1350
 
1351
+ #: classes/helpers/FrmFieldsHelper.php:1269
1352
  msgid "Cameroon"
1353
  msgstr ""
1354
 
1355
+ #: classes/helpers/FrmFieldsHelper.php:1269
1356
  msgid "Canada"
1357
  msgstr ""
1358
 
1359
+ #: classes/helpers/FrmFieldsHelper.php:1269
1360
  msgid "Cape Verde"
1361
  msgstr ""
1362
 
1363
+ #: classes/helpers/FrmFieldsHelper.php:1269
1364
  msgid "Cayman Islands"
1365
  msgstr ""
1366
 
1367
+ #: classes/helpers/FrmFieldsHelper.php:1269
1368
  msgid "Central African Republic"
1369
  msgstr ""
1370
 
1371
+ #: classes/helpers/FrmFieldsHelper.php:1269
1372
  msgid "Chad"
1373
  msgstr ""
1374
 
1375
+ #: classes/helpers/FrmFieldsHelper.php:1269
1376
  msgid "Chile"
1377
  msgstr ""
1378
 
1379
+ #: classes/helpers/FrmFieldsHelper.php:1269
1380
  msgid "China"
1381
  msgstr ""
1382
 
1383
+ #: classes/helpers/FrmFieldsHelper.php:1269
1384
  msgid "Colombia"
1385
  msgstr ""
1386
 
1387
+ #: classes/helpers/FrmFieldsHelper.php:1269
1388
  msgid "Comoros"
1389
  msgstr ""
1390
 
1391
+ #: classes/helpers/FrmFieldsHelper.php:1269
1392
  msgid "Congo"
1393
  msgstr ""
1394
 
1395
+ #: classes/helpers/FrmFieldsHelper.php:1269
1396
  msgid "Costa Rica"
1397
  msgstr ""
1398
 
1399
+ #: classes/helpers/FrmFieldsHelper.php:1269
1400
  msgid "C&ocirc;te d'Ivoire"
1401
  msgstr ""
1402
 
1403
+ #: classes/helpers/FrmFieldsHelper.php:1269
1404
  msgid "Croatia"
1405
  msgstr ""
1406
 
1407
+ #: classes/helpers/FrmFieldsHelper.php:1269
1408
  msgid "Cuba"
1409
  msgstr ""
1410
 
1411
+ #: classes/helpers/FrmFieldsHelper.php:1269
1412
  msgid "Cyprus"
1413
  msgstr ""
1414
 
1415
+ #: classes/helpers/FrmFieldsHelper.php:1269
1416
  msgid "Czech Republic"
1417
  msgstr ""
1418
 
1419
+ #: classes/helpers/FrmFieldsHelper.php:1269
1420
  msgid "Denmark"
1421
  msgstr ""
1422
 
1423
+ #: classes/helpers/FrmFieldsHelper.php:1269
1424
  msgid "Djibouti"
1425
  msgstr ""
1426
 
1427
+ #: classes/helpers/FrmFieldsHelper.php:1269
1428
  msgid "Dominica"
1429
  msgstr ""
1430
 
1431
+ #: classes/helpers/FrmFieldsHelper.php:1269
1432
  msgid "Dominican Republic"
1433
  msgstr ""
1434
 
1435
+ #: classes/helpers/FrmFieldsHelper.php:1269
1436
  msgid "East Timor"
1437
  msgstr ""
1438
 
1439
+ #: classes/helpers/FrmFieldsHelper.php:1269
1440
  msgid "Ecuador"
1441
  msgstr ""
1442
 
1443
+ #: classes/helpers/FrmFieldsHelper.php:1269
1444
  msgid "Egypt"
1445
  msgstr ""
1446
 
1447
+ #: classes/helpers/FrmFieldsHelper.php:1269
1448
  msgid "El Salvador"
1449
  msgstr ""
1450
 
1451
+ #: classes/helpers/FrmFieldsHelper.php:1269
1452
  msgid "Equatorial Guinea"
1453
  msgstr ""
1454
 
1455
+ #: classes/helpers/FrmFieldsHelper.php:1269
1456
  msgid "Eritrea"
1457
  msgstr ""
1458
 
1459
+ #: classes/helpers/FrmFieldsHelper.php:1269
1460
  msgid "Estonia"
1461
  msgstr ""
1462
 
1463
+ #: classes/helpers/FrmFieldsHelper.php:1269
1464
  msgid "Ethiopia"
1465
  msgstr ""
1466
 
1467
+ #: classes/helpers/FrmFieldsHelper.php:1269
1468
  msgid "Fiji"
1469
  msgstr ""
1470
 
1471
+ #: classes/helpers/FrmFieldsHelper.php:1269
1472
  msgid "Finland"
1473
  msgstr ""
1474
 
1475
+ #: classes/helpers/FrmFieldsHelper.php:1269
1476
  msgid "France"
1477
  msgstr ""
1478
 
1479
+ #: classes/helpers/FrmFieldsHelper.php:1269
1480
  msgid "French Guiana"
1481
  msgstr ""
1482
 
1483
+ #: classes/helpers/FrmFieldsHelper.php:1269
1484
  msgid "French Polynesia"
1485
  msgstr ""
1486
 
1487
+ #: classes/helpers/FrmFieldsHelper.php:1269
1488
  msgid "Gabon"
1489
  msgstr ""
1490
 
1491
+ #: classes/helpers/FrmFieldsHelper.php:1269
1492
  msgid "Gambia"
1493
  msgstr ""
1494
 
1495
+ #: classes/helpers/FrmFieldsHelper.php:1269
1496
  msgid "Georgia"
1497
  msgstr ""
1498
 
1499
+ #: classes/helpers/FrmFieldsHelper.php:1269
1500
  msgid "Germany"
1501
  msgstr ""
1502
 
1503
+ #: classes/helpers/FrmFieldsHelper.php:1269
1504
  msgid "Ghana"
1505
  msgstr ""
1506
 
1507
+ #: classes/helpers/FrmFieldsHelper.php:1269
1508
  msgid "Gibraltar"
1509
  msgstr ""
1510
 
1511
+ #: classes/helpers/FrmFieldsHelper.php:1269
1512
  msgid "Greece"
1513
  msgstr ""
1514
 
1515
+ #: classes/helpers/FrmFieldsHelper.php:1269
1516
  msgid "Greenland"
1517
  msgstr ""
1518
 
1519
+ #: classes/helpers/FrmFieldsHelper.php:1269
1520
  msgid "Grenada"
1521
  msgstr ""
1522
 
1523
+ #: classes/helpers/FrmFieldsHelper.php:1269
1524
  msgid "Guam"
1525
  msgstr ""
1526
 
1527
+ #: classes/helpers/FrmFieldsHelper.php:1269
1528
  msgid "Guatemala"
1529
  msgstr ""
1530
 
1531
+ #: classes/helpers/FrmFieldsHelper.php:1269
1532
  msgid "Guinea"
1533
  msgstr ""
1534
 
1535
+ #: classes/helpers/FrmFieldsHelper.php:1269
1536
  msgid "Guinea-Bissau"
1537
  msgstr ""
1538
 
1539
+ #: classes/helpers/FrmFieldsHelper.php:1269
1540
  msgid "Guyana"
1541
  msgstr ""
1542
 
1543
+ #: classes/helpers/FrmFieldsHelper.php:1269
1544
  msgid "Haiti"
1545
  msgstr ""
1546
 
1547
+ #: classes/helpers/FrmFieldsHelper.php:1269
1548
  msgid "Honduras"
1549
  msgstr ""
1550
 
1551
+ #: classes/helpers/FrmFieldsHelper.php:1269
1552
  msgid "Hong Kong"
1553
  msgstr ""
1554
 
1555
+ #: classes/helpers/FrmFieldsHelper.php:1269
1556
  msgid "Hungary"
1557
  msgstr ""
1558
 
1559
+ #: classes/helpers/FrmFieldsHelper.php:1269
1560
  msgid "Iceland"
1561
  msgstr ""
1562
 
1563
+ #: classes/helpers/FrmFieldsHelper.php:1269
1564
  msgid "India"
1565
  msgstr ""
1566
 
1567
+ #: classes/helpers/FrmFieldsHelper.php:1269
1568
  msgid "Indonesia"
1569
  msgstr ""
1570
 
1571
+ #: classes/helpers/FrmFieldsHelper.php:1269
1572
  msgid "Iran"
1573
  msgstr ""
1574
 
1575
+ #: classes/helpers/FrmFieldsHelper.php:1269
1576
  msgid "Iraq"
1577
  msgstr ""
1578
 
1579
+ #: classes/helpers/FrmFieldsHelper.php:1269
1580
  msgid "Ireland"
1581
  msgstr ""
1582
 
1583
+ #: classes/helpers/FrmFieldsHelper.php:1269
1584
  msgid "Israel"
1585
  msgstr ""
1586
 
1587
+ #: classes/helpers/FrmFieldsHelper.php:1269
1588
  msgid "Italy"
1589
  msgstr ""
1590
 
1591
+ #: classes/helpers/FrmFieldsHelper.php:1269
1592
  msgid "Jamaica"
1593
  msgstr ""
1594
 
1595
+ #: classes/helpers/FrmFieldsHelper.php:1269
1596
  msgid "Japan"
1597
  msgstr ""
1598
 
1599
+ #: classes/helpers/FrmFieldsHelper.php:1269
1600
  msgid "Jordan"
1601
  msgstr ""
1602
 
1603
+ #: classes/helpers/FrmFieldsHelper.php:1269
1604
  msgid "Kazakhstan"
1605
  msgstr ""
1606
 
1607
+ #: classes/helpers/FrmFieldsHelper.php:1269
1608
  msgid "Kenya"
1609
  msgstr ""
1610
 
1611
+ #: classes/helpers/FrmFieldsHelper.php:1269
1612
  msgid "Kiribati"
1613
  msgstr ""
1614
 
1615
+ #: classes/helpers/FrmFieldsHelper.php:1269
1616
  msgid "North Korea"
1617
  msgstr ""
1618
 
1619
+ #: classes/helpers/FrmFieldsHelper.php:1269
1620
  msgid "South Korea"
1621
  msgstr ""
1622
 
1623
+ #: classes/helpers/FrmFieldsHelper.php:1269
1624
  msgid "Kuwait"
1625
  msgstr ""
1626
 
1627
+ #: classes/helpers/FrmFieldsHelper.php:1269
1628
  msgid "Kyrgyzstan"
1629
  msgstr ""
1630
 
1631
+ #: classes/helpers/FrmFieldsHelper.php:1269
1632
  msgid "Laos"
1633
  msgstr ""
1634
 
1635
+ #: classes/helpers/FrmFieldsHelper.php:1269
1636
  msgid "Latvia"
1637
  msgstr ""
1638
 
1639
+ #: classes/helpers/FrmFieldsHelper.php:1269
1640
  msgid "Lebanon"
1641
  msgstr ""
1642
 
1643
+ #: classes/helpers/FrmFieldsHelper.php:1269
1644
  msgid "Lesotho"
1645
  msgstr ""
1646
 
1647
+ #: classes/helpers/FrmFieldsHelper.php:1269
1648
  msgid "Liberia"
1649
  msgstr ""
1650
 
1651
+ #: classes/helpers/FrmFieldsHelper.php:1269
1652
  msgid "Libya"
1653
  msgstr ""
1654
 
1655
+ #: classes/helpers/FrmFieldsHelper.php:1269
1656
  msgid "Liechtenstein"
1657
  msgstr ""
1658
 
1659
+ #: classes/helpers/FrmFieldsHelper.php:1269
1660
  msgid "Lithuania"
1661
  msgstr ""
1662
 
1663
+ #: classes/helpers/FrmFieldsHelper.php:1269
1664
  msgid "Luxembourg"
1665
  msgstr ""
1666
 
1667
+ #: classes/helpers/FrmFieldsHelper.php:1269
1668
  msgid "Macedonia"
1669
  msgstr ""
1670
 
1671
+ #: classes/helpers/FrmFieldsHelper.php:1269
1672
  msgid "Madagascar"
1673
  msgstr ""
1674
 
1675
+ #: classes/helpers/FrmFieldsHelper.php:1269
1676
  msgid "Malawi"
1677
  msgstr ""
1678
 
1679
+ #: classes/helpers/FrmFieldsHelper.php:1269
1680
  msgid "Malaysia"
1681
  msgstr ""
1682
 
1683
+ #: classes/helpers/FrmFieldsHelper.php:1269
1684
  msgid "Maldives"
1685
  msgstr ""
1686
 
1687
+ #: classes/helpers/FrmFieldsHelper.php:1269
1688
  msgid "Mali"
1689
  msgstr ""
1690
 
1691
+ #: classes/helpers/FrmFieldsHelper.php:1269
1692
  msgid "Malta"
1693
  msgstr ""
1694
 
1695
+ #: classes/helpers/FrmFieldsHelper.php:1269
1696
  msgid "Marshall Islands"
1697
  msgstr ""
1698
 
1699
+ #: classes/helpers/FrmFieldsHelper.php:1269
1700
  msgid "Mauritania"
1701
  msgstr ""
1702
 
1703
+ #: classes/helpers/FrmFieldsHelper.php:1269
1704
  msgid "Mauritius"
1705
  msgstr ""
1706
 
1707
+ #: classes/helpers/FrmFieldsHelper.php:1269
1708
  msgid "Mexico"
1709
  msgstr ""
1710
 
1711
+ #: classes/helpers/FrmFieldsHelper.php:1269
1712
  msgid "Micronesia"
1713
  msgstr ""
1714
 
1715
+ #: classes/helpers/FrmFieldsHelper.php:1269
1716
  msgid "Moldova"
1717
  msgstr ""
1718
 
1719
+ #: classes/helpers/FrmFieldsHelper.php:1269
1720
  msgid "Monaco"
1721
  msgstr ""
1722
 
1723
+ #: classes/helpers/FrmFieldsHelper.php:1269
1724
  msgid "Mongolia"
1725
  msgstr ""
1726
 
1727
+ #: classes/helpers/FrmFieldsHelper.php:1269
1728
  msgid "Montenegro"
1729
  msgstr ""
1730
 
1731
+ #: classes/helpers/FrmFieldsHelper.php:1269
1732
  msgid "Montserrat"
1733
  msgstr ""
1734
 
1735
+ #: classes/helpers/FrmFieldsHelper.php:1269
1736
  msgid "Morocco"
1737
  msgstr ""
1738
 
1739
+ #: classes/helpers/FrmFieldsHelper.php:1269
1740
  msgid "Mozambique"
1741
  msgstr ""
1742
 
1743
+ #: classes/helpers/FrmFieldsHelper.php:1269
1744
  msgid "Myanmar"
1745
  msgstr ""
1746
 
1747
+ #: classes/helpers/FrmFieldsHelper.php:1269
1748
  msgid "Namibia"
1749
  msgstr ""
1750
 
1751
+ #: classes/helpers/FrmFieldsHelper.php:1269
1752
  msgid "Nauru"
1753
  msgstr ""
1754
 
1755
+ #: classes/helpers/FrmFieldsHelper.php:1269
1756
  msgid "Nepal"
1757
  msgstr ""
1758
 
1759
+ #: classes/helpers/FrmFieldsHelper.php:1269
1760
  msgid "Netherlands"
1761
  msgstr ""
1762
 
1763
+ #: classes/helpers/FrmFieldsHelper.php:1269
1764
  msgid "New Zealand"
1765
  msgstr ""
1766
 
1767
+ #: classes/helpers/FrmFieldsHelper.php:1269
1768
  msgid "Nicaragua"
1769
  msgstr ""
1770
 
1771
+ #: classes/helpers/FrmFieldsHelper.php:1269
1772
  msgid "Niger"
1773
  msgstr ""
1774
 
1775
+ #: classes/helpers/FrmFieldsHelper.php:1269
1776
  msgid "Nigeria"
1777
  msgstr ""
1778
 
1779
+ #: classes/helpers/FrmFieldsHelper.php:1269
1780
  msgid "Norway"
1781
  msgstr ""
1782
 
1783
+ #: classes/helpers/FrmFieldsHelper.php:1269
1784
  msgid "Northern Mariana Islands"
1785
  msgstr ""
1786
 
1787
+ #: classes/helpers/FrmFieldsHelper.php:1269
1788
  msgid "Oman"
1789
  msgstr ""
1790
 
1791
+ #: classes/helpers/FrmFieldsHelper.php:1269
1792
  msgid "Pakistan"
1793
  msgstr ""
1794
 
1795
+ #: classes/helpers/FrmFieldsHelper.php:1269
1796
  msgid "Palau"
1797
  msgstr ""
1798
 
1799
+ #: classes/helpers/FrmFieldsHelper.php:1269
1800
  msgid "Palestine"
1801
  msgstr ""
1802
 
1803
+ #: classes/helpers/FrmFieldsHelper.php:1269
1804
  msgid "Panama"
1805
  msgstr ""
1806
 
1807
+ #: classes/helpers/FrmFieldsHelper.php:1269
1808
  msgid "Papua New Guinea"
1809
  msgstr ""
1810
 
1811
+ #: classes/helpers/FrmFieldsHelper.php:1269
1812
  msgid "Paraguay"
1813
  msgstr ""
1814
 
1815
+ #: classes/helpers/FrmFieldsHelper.php:1269
1816
  msgid "Peru"
1817
  msgstr ""
1818
 
1819
+ #: classes/helpers/FrmFieldsHelper.php:1269
1820
  msgid "Philippines"
1821
  msgstr ""
1822
 
1823
+ #: classes/helpers/FrmFieldsHelper.php:1269
1824
  msgid "Poland"
1825
  msgstr ""
1826
 
1827
+ #: classes/helpers/FrmFieldsHelper.php:1269
1828
  msgid "Portugal"
1829
  msgstr ""
1830
 
1831
+ #: classes/helpers/FrmFieldsHelper.php:1269
1832
  msgid "Puerto Rico"
1833
  msgstr ""
1834
 
1835
+ #: classes/helpers/FrmFieldsHelper.php:1269
1836
  msgid "Qatar"
1837
  msgstr ""
1838
 
1839
+ #: classes/helpers/FrmFieldsHelper.php:1269
1840
  msgid "Romania"
1841
  msgstr ""
1842
 
1843
+ #: classes/helpers/FrmFieldsHelper.php:1269
1844
  msgid "Russia"
1845
  msgstr ""
1846
 
1847
+ #: classes/helpers/FrmFieldsHelper.php:1269
1848
  msgid "Rwanda"
1849
  msgstr ""
1850
 
1851
+ #: classes/helpers/FrmFieldsHelper.php:1269
1852
  msgid "Saint Kitts and Nevis"
1853
  msgstr ""
1854
 
1855
+ #: classes/helpers/FrmFieldsHelper.php:1269
1856
  msgid "Saint Lucia"
1857
  msgstr ""
1858
 
1859
+ #: classes/helpers/FrmFieldsHelper.php:1269
1860
  msgid "Saint Vincent and the Grenadines"
1861
  msgstr ""
1862
 
1863
+ #: classes/helpers/FrmFieldsHelper.php:1269
1864
  msgid "Samoa"
1865
  msgstr ""
1866
 
1867
+ #: classes/helpers/FrmFieldsHelper.php:1269
1868
  msgid "San Marino"
1869
  msgstr ""
1870
 
1871
+ #: classes/helpers/FrmFieldsHelper.php:1269
1872
  msgid "Sao Tome and Principe"
1873
  msgstr ""
1874
 
1875
+ #: classes/helpers/FrmFieldsHelper.php:1269
1876
  msgid "Saudi Arabia"
1877
  msgstr ""
1878
 
1879
+ #: classes/helpers/FrmFieldsHelper.php:1269
1880
  msgid "Senegal"
1881
  msgstr ""
1882
 
1883
+ #: classes/helpers/FrmFieldsHelper.php:1269
1884
  msgid "Serbia and Montenegro"
1885
  msgstr ""
1886
 
1887
+ #: classes/helpers/FrmFieldsHelper.php:1269
1888
  msgid "Seychelles"
1889
  msgstr ""
1890
 
1891
+ #: classes/helpers/FrmFieldsHelper.php:1269
1892
  msgid "Sierra Leone"
1893
  msgstr ""
1894
 
1895
+ #: classes/helpers/FrmFieldsHelper.php:1269
1896
  msgid "Singapore"
1897
  msgstr ""
1898
 
1899
+ #: classes/helpers/FrmFieldsHelper.php:1269
1900
  msgid "Slovakia"
1901
  msgstr ""
1902
 
1903
+ #: classes/helpers/FrmFieldsHelper.php:1269
1904
  msgid "Slovenia"
1905
  msgstr ""
1906
 
1907
+ #: classes/helpers/FrmFieldsHelper.php:1269
1908
  msgid "Solomon Islands"
1909
  msgstr ""
1910
 
1911
+ #: classes/helpers/FrmFieldsHelper.php:1269
1912
  msgid "Somalia"
1913
  msgstr ""
1914
 
1915
+ #: classes/helpers/FrmFieldsHelper.php:1269
1916
  msgid "South Africa"
1917
  msgstr ""
1918
 
1919
+ #: classes/helpers/FrmFieldsHelper.php:1269
1920
  msgid "South Sudan"
1921
  msgstr ""
1922
 
1923
+ #: classes/helpers/FrmFieldsHelper.php:1269
1924
  msgid "Spain"
1925
  msgstr ""
1926
 
1927
+ #: classes/helpers/FrmFieldsHelper.php:1269
1928
  msgid "Sri Lanka"
1929
  msgstr ""
1930
 
1931
+ #: classes/helpers/FrmFieldsHelper.php:1269
1932
  msgid "Sudan"
1933
  msgstr ""
1934
 
1935
+ #: classes/helpers/FrmFieldsHelper.php:1269
1936
  msgid "Suriname"
1937
  msgstr ""
1938
 
1939
+ #: classes/helpers/FrmFieldsHelper.php:1269
1940
  msgid "Swaziland"
1941
  msgstr ""
1942
 
1943
+ #: classes/helpers/FrmFieldsHelper.php:1269
1944
  msgid "Sweden"
1945
  msgstr ""
1946
 
1947
+ #: classes/helpers/FrmFieldsHelper.php:1269
1948
  msgid "Switzerland"
1949
  msgstr ""
1950
 
1951
+ #: classes/helpers/FrmFieldsHelper.php:1269
1952
  msgid "Syria"
1953
  msgstr ""
1954
 
1955
+ #: classes/helpers/FrmFieldsHelper.php:1269
1956
  msgid "Taiwan"
1957
  msgstr ""
1958
 
1959
+ #: classes/helpers/FrmFieldsHelper.php:1269
1960
  msgid "Tajikistan"
1961
  msgstr ""
1962
 
1963
+ #: classes/helpers/FrmFieldsHelper.php:1269
1964
  msgid "Tanzania"
1965
  msgstr ""
1966
 
1967
+ #: classes/helpers/FrmFieldsHelper.php:1269
1968
  msgid "Thailand"
1969
  msgstr ""
1970
 
1971
+ #: classes/helpers/FrmFieldsHelper.php:1269
1972
  msgid "Togo"
1973
  msgstr ""
1974
 
1975
+ #: classes/helpers/FrmFieldsHelper.php:1269
1976
  msgid "Tonga"
1977
  msgstr ""
1978
 
1979
+ #: classes/helpers/FrmFieldsHelper.php:1269
1980
  msgid "Trinidad and Tobago"
1981
  msgstr ""
1982
 
1983
+ #: classes/helpers/FrmFieldsHelper.php:1269
1984
  msgid "Tunisia"
1985
  msgstr ""
1986
 
1987
+ #: classes/helpers/FrmFieldsHelper.php:1269
1988
  msgid "Turkey"
1989
  msgstr ""
1990
 
1991
+ #: classes/helpers/FrmFieldsHelper.php:1269
1992
  msgid "Turkmenistan"
1993
  msgstr ""
1994
 
1995
+ #: classes/helpers/FrmFieldsHelper.php:1269
1996
  msgid "Tuvalu"
1997
  msgstr ""
1998
 
1999
+ #: classes/helpers/FrmFieldsHelper.php:1269
2000
  msgid "Uganda"
2001
  msgstr ""
2002
 
2003
+ #: classes/helpers/FrmFieldsHelper.php:1269
2004
  msgid "Ukraine"
2005
  msgstr ""
2006
 
2007
+ #: classes/helpers/FrmFieldsHelper.php:1269
2008
  msgid "United Arab Emirates"
2009
  msgstr ""
2010
 
2011
+ #: classes/helpers/FrmFieldsHelper.php:1269
2012
  msgid "United Kingdom"
2013
  msgstr ""
2014
 
2015
+ #: classes/helpers/FrmFieldsHelper.php:1269
2016
  msgid "United States"
2017
  msgstr ""
2018
 
2019
+ #: classes/helpers/FrmFieldsHelper.php:1269
2020
  msgid "Uruguay"
2021
  msgstr ""
2022
 
2023
+ #: classes/helpers/FrmFieldsHelper.php:1269
2024
  msgid "Uzbekistan"
2025
  msgstr ""
2026
 
2027
+ #: classes/helpers/FrmFieldsHelper.php:1269
2028
  msgid "Vanuatu"
2029
  msgstr ""
2030
 
2031
+ #: classes/helpers/FrmFieldsHelper.php:1269
2032
  msgid "Vatican City"
2033
  msgstr ""
2034
 
2035
+ #: classes/helpers/FrmFieldsHelper.php:1269
2036
  msgid "Venezuela"
2037
  msgstr ""
2038
 
2039
+ #: classes/helpers/FrmFieldsHelper.php:1269
2040
  msgid "Vietnam"
2041
  msgstr ""
2042
 
2043
+ #: classes/helpers/FrmFieldsHelper.php:1269
2044
  msgid "Virgin Islands, British"
2045
  msgstr ""
2046
 
2047
+ #: classes/helpers/FrmFieldsHelper.php:1269
2048
  msgid "Virgin Islands, U.S."
2049
  msgstr ""
2050
 
2051
+ #: classes/helpers/FrmFieldsHelper.php:1269
2052
  msgid "Yemen"
2053
  msgstr ""
2054
 
2055
+ #: classes/helpers/FrmFieldsHelper.php:1269
2056
  msgid "Zambia"
2057
  msgstr ""
2058
 
2059
+ #: classes/helpers/FrmFieldsHelper.php:1269
2060
  msgid "Zimbabwe"
2061
  msgstr ""
2062
 
2063
+ #: classes/helpers/FrmFieldsHelper.php:1273
2064
  msgid "Countries"
2065
  msgstr ""
2066
 
2067
+ #: classes/helpers/FrmFieldsHelper.php:1278
2068
  msgid "U.S. State Abbreviations"
2069
  msgstr ""
2070
 
2071
+ #: classes/helpers/FrmFieldsHelper.php:1282
2072
  msgid "U.S. States"
2073
  msgstr ""
2074
 
2075
+ #: classes/helpers/FrmFieldsHelper.php:1285
2076
  msgid "Age"
2077
  msgstr ""
2078
 
2079
+ #: classes/helpers/FrmFieldsHelper.php:1286
2080
  msgid "Under 18"
2081
  msgstr ""
2082
 
2083
+ #: classes/helpers/FrmFieldsHelper.php:1287
2084
  msgid "18-24"
2085
  msgstr ""
2086
 
2087
+ #: classes/helpers/FrmFieldsHelper.php:1288
2088
  msgid "25-34"
2089
  msgstr ""
2090
 
2091
+ #: classes/helpers/FrmFieldsHelper.php:1289
2092
  msgid "35-44"
2093
  msgstr ""
2094
 
2095
+ #: classes/helpers/FrmFieldsHelper.php:1290
2096
  msgid "45-54"
2097
  msgstr ""
2098
 
2099
+ #: classes/helpers/FrmFieldsHelper.php:1291
2100
  msgid "55-64"
2101
  msgstr ""
2102
 
2103
+ #: classes/helpers/FrmFieldsHelper.php:1292
2104
  msgid "65 or Above"
2105
  msgstr ""
2106
 
2107
+ #: classes/helpers/FrmFieldsHelper.php:1293
2108
  msgid "Prefer Not to Answer"
2109
  msgstr ""
2110
 
2111
+ #: classes/helpers/FrmFieldsHelper.php:1296
2112
  msgid "Satisfaction"
2113
  msgstr ""
2114
 
2115
+ #: classes/helpers/FrmFieldsHelper.php:1297
2116
  msgid "Very Satisfied"
2117
  msgstr ""
2118
 
2119
+ #: classes/helpers/FrmFieldsHelper.php:1298
2120
  msgid "Satisfied"
2121
  msgstr ""
2122
 
2123
+ #: classes/helpers/FrmFieldsHelper.php:1299
2124
+ #: classes/helpers/FrmFieldsHelper.php:1308
2125
+ #: classes/helpers/FrmFieldsHelper.php:1317
2126
  msgid "Neutral"
2127
  msgstr ""
2128
 
2129
+ #: classes/helpers/FrmFieldsHelper.php:1300
2130
  msgid "Unsatisfied"
2131
  msgstr ""
2132
 
2133
+ #: classes/helpers/FrmFieldsHelper.php:1301
2134
  msgid "Very Unsatisfied"
2135
  msgstr ""
2136
 
2137
+ #: classes/helpers/FrmFieldsHelper.php:1302
2138
+ #: classes/helpers/FrmFieldsHelper.php:1311
2139
+ #: classes/helpers/FrmFieldsHelper.php:1320
2140
  msgid "N/A"
2141
  msgstr ""
2142
 
2143
+ #: classes/helpers/FrmFieldsHelper.php:1305
2144
  msgid "Importance"
2145
  msgstr ""
2146
 
2147
+ #: classes/helpers/FrmFieldsHelper.php:1306
2148
  msgid "Very Important"
2149
  msgstr ""
2150
 
2151
+ #: classes/helpers/FrmFieldsHelper.php:1307
2152
  msgid "Important"
2153
  msgstr ""
2154
 
2155
+ #: classes/helpers/FrmFieldsHelper.php:1309
2156
  msgid "Somewhat Important"
2157
  msgstr ""
2158
 
2159
+ #: classes/helpers/FrmFieldsHelper.php:1310
2160
  msgid "Not at all Important"
2161
  msgstr ""
2162
 
2163
+ #: classes/helpers/FrmFieldsHelper.php:1314
2164
  msgid "Agreement"
2165
  msgstr ""
2166
 
2167
+ #: classes/helpers/FrmFieldsHelper.php:1315
2168
  msgid "Strongly Agree"
2169
  msgstr ""
2170
 
2171
+ #: classes/helpers/FrmFieldsHelper.php:1316
2172
  msgid "Agree"
2173
  msgstr ""
2174
 
2175
+ #: classes/helpers/FrmFieldsHelper.php:1318
2176
  msgid "Disagree"
2177
  msgstr ""
2178
 
2179
+ #: classes/helpers/FrmFieldsHelper.php:1319
2180
  msgid "Strongly Disagree"
2181
  msgstr ""
2182
 
2192
  msgid "Switch Form"
2193
  msgstr ""
2194
 
2195
+ #: classes/helpers/FrmFormsHelper.php:731
2196
  msgid "Create Form from Template"
2197
  msgstr ""
2198
 
2199
+ #: classes/helpers/FrmFormsHelper.php:737
2200
  msgid "Duplicate Form"
2201
  msgstr ""
2202
 
2203
+ #: classes/helpers/FrmFormsHelper.php:822
2204
  msgid "Restore from Trash"
2205
  msgstr ""
2206
 
2207
  #: classes/helpers/FrmFormsHelper.php:823
2208
+ #: classes/helpers/FrmFormsListHelper.php:118
2209
+ msgid "Restore"
2210
+ msgstr "Visszaállítás"
2211
+
2212
+ #: classes/helpers/FrmFormsHelper.php:827
2213
  msgid "Move Form to Trash"
2214
  msgstr ""
2215
 
2216
+ #: classes/helpers/FrmFormsHelper.php:828
2217
+ #: classes/helpers/FrmFormsHelper.php:946
2218
+ #: classes/helpers/FrmFormsListHelper.php:192
2219
  msgid "Trash"
2220
  msgstr ""
2221
 
2222
+ #: classes/helpers/FrmFormsHelper.php:834
2223
+ #: classes/helpers/FrmFormsListHelper.php:122
2224
  msgid "Delete Permanently"
2225
  msgstr ""
2226
 
2227
+ #: classes/helpers/FrmFormsHelper.php:835 classes/models/FrmFormAction.php:744
2228
+ #: classes/views/frm-form-actions/form_action.php:19
2229
+ msgid "Delete"
2230
+ msgstr "Törlés"
2231
+
2232
+ #: classes/helpers/FrmFormsHelper.php:837
2233
  msgid "Are you sure you want to delete this form and all its entries?"
2234
  msgstr ""
2235
 
2236
+ #: classes/helpers/FrmFormsHelper.php:839
2237
  msgid "Delete form & entries?"
2238
  msgstr ""
2239
 
2240
+ #: classes/helpers/FrmFormsHelper.php:850
2241
+ msgid "First"
2242
+ msgstr "Első"
2243
+
2244
+ #: classes/helpers/FrmFormsHelper.php:851
2245
  msgid ""
2246
  "Add this to the first field in each row along with a width. ie frm_first frm4"
2247
  msgstr ""
2248
 
2249
+ #: classes/helpers/FrmFormsHelper.php:853
2250
+ #: classes/helpers/FrmStylesHelper.php:140
2251
  msgid "Right"
2252
  msgstr ""
2253
 
2254
+ #: classes/helpers/FrmFormsHelper.php:855
2255
  msgid "Total"
2256
  msgstr ""
2257
 
2258
+ #: classes/helpers/FrmFormsHelper.php:856
2259
  msgid ""
2260
  "Add this to a read-only field to display the text in bold without a border "
2261
  "or background."
2262
  msgstr ""
2263
 
2264
+ #: classes/helpers/FrmFormsHelper.php:858
2265
  msgid "First Grid Row"
2266
  msgstr ""
2267
 
2268
+ #: classes/helpers/FrmFormsHelper.php:859
2269
  msgid "Even Grid Row"
2270
  msgstr ""
2271
 
2272
+ #: classes/helpers/FrmFormsHelper.php:860
2273
  msgid "Odd Grid Row"
2274
  msgstr ""
2275
 
2276
+ #: classes/helpers/FrmFormsHelper.php:862
2277
  msgid "2 Col Options"
2278
  msgstr ""
2279
 
2280
+ #: classes/helpers/FrmFormsHelper.php:863
2281
  msgid "Put your radio button or checkbox options into two columns."
2282
  msgstr ""
2283
 
2284
+ #: classes/helpers/FrmFormsHelper.php:866
2285
  msgid "3 Col Options"
2286
  msgstr ""
2287
 
2288
+ #: classes/helpers/FrmFormsHelper.php:867
2289
  msgid "Put your radio button or checkbox options into three columns."
2290
  msgstr ""
2291
 
2292
+ #: classes/helpers/FrmFormsHelper.php:870
2293
  msgid "4 Col Options"
2294
  msgstr ""
2295
 
2296
+ #: classes/helpers/FrmFormsHelper.php:871
2297
  msgid "Put your radio button or checkbox options into four columns."
2298
  msgstr ""
2299
 
2300
+ #: classes/helpers/FrmFormsHelper.php:874
2301
  msgid "Scroll Box"
2302
  msgstr ""
2303
 
2304
+ #: classes/helpers/FrmFormsHelper.php:875
2305
  msgid ""
2306
  "If you have many checkbox or radio button options, you may add this class to "
2307
  "allow your user to easily scroll through the options."
2308
  msgstr ""
2309
 
2310
+ #: classes/helpers/FrmFormsHelper.php:878
2311
  msgid "Capitalize"
2312
  msgstr ""
2313
 
2314
+ #: classes/helpers/FrmFormsHelper.php:879
2315
  msgid "Automatically capitalize the first letter in each word."
2316
  msgstr ""
2317
 
2318
+ #: classes/helpers/FrmFormsHelper.php:947
2319
  msgid "Published"
2320
  msgstr ""
2321
 
2322
+ #: classes/helpers/FrmFormsListHelper.php:104
2323
  msgid "No Templates Found."
2324
  msgstr ""
2325
 
2326
+ #: classes/helpers/FrmFormsListHelper.php:106
2327
  msgid "No Forms Found."
2328
  msgstr ""
2329
 
2330
+ #: classes/helpers/FrmFormsListHelper.php:125
2331
  msgid "Move to Trash"
2332
  msgstr ""
2333
 
2334
+ #: classes/helpers/FrmFormsListHelper.php:163
2335
  msgid "Create New Template"
2336
  msgstr ""
2337
 
2338
+ #: classes/helpers/FrmFormsListHelper.php:168
2339
  msgid ""
2340
  "You have not created any forms yet. You must create a form before you can "
2341
  "make a template."
2342
  msgstr ""
2343
 
2344
+ #: classes/helpers/FrmFormsListHelper.php:189
2345
  msgid "My Forms"
2346
  msgstr ""
2347
 
2348
+ #: classes/helpers/FrmFormsListHelper.php:190
2349
+ #: classes/views/frm-forms/edit.php:10 classes/views/frm-forms/list.php:5
2350
+ #: classes/views/frm-forms/new.php:10
2351
  msgid "Templates"
2352
  msgstr ""
2353
 
2354
+ #: classes/helpers/FrmFormsListHelper.php:191
2355
  msgid "Drafts"
2356
  msgstr ""
2357
 
2358
+ #: classes/helpers/FrmFormsListHelper.php:213
2359
  #, php-format
2360
  msgid "%1$s <span class=\"count\">(%2$s)</span>"
2361
  msgstr ""
2362
 
2363
+ #: classes/helpers/FrmFormsListHelper.php:300
2364
+ msgid "Custom"
2365
+ msgstr "Egyedi"
2366
+
2367
+ #: classes/helpers/FrmStylesHelper.php:116
2368
  msgid "Edit Styles"
2369
  msgstr ""
2370
 
2371
+ #: classes/helpers/FrmStylesHelper.php:117
2372
  msgid "Manage Form Styles"
2373
  msgstr ""
2374
 
2375
+ #: classes/helpers/FrmStylesHelper.php:118
2376
  msgid "Custom CSS"
2377
  msgstr ""
2378
 
2379
+ #: classes/helpers/FrmStylesHelper.php:128
2380
  msgid "top"
2381
  msgstr ""
2382
 
2383
+ #: classes/helpers/FrmStylesHelper.php:129
2384
  #: classes/views/styles/_field-description.php:33
2385
  #: classes/views/styles/_field-labels.php:31
2386
  #: classes/views/styles/_general.php:11
2387
  msgid "left"
2388
  msgstr ""
2389
 
2390
+ #: classes/helpers/FrmStylesHelper.php:130
2391
  #: classes/views/styles/_field-description.php:36
2392
  #: classes/views/styles/_field-labels.php:34
2393
  #: classes/views/styles/_general.php:14
2394
  msgid "right"
2395
  msgstr ""
2396
 
2397
+ #: classes/helpers/FrmStylesHelper.php:131
2398
  msgid "none"
2399
  msgstr ""
2400
 
2401
+ #: classes/helpers/FrmStylesHelper.php:132
2402
  msgid "inside"
2403
  msgstr ""
2404
 
2405
+ #: classes/helpers/FrmStylesHelper.php:138
2406
  msgid "Top"
2407
  msgstr ""
2408
 
2409
+ #: classes/helpers/FrmStylesHelper.php:139
2410
  msgid "Left"
2411
  msgstr ""
2412
 
2413
+ #: classes/helpers/FrmStylesHelper.php:141
2414
  msgid "Inline (left without a set width)"
2415
  msgstr ""
2416
 
2417
+ #: classes/helpers/FrmStylesHelper.php:142
2418
+ msgid "None"
2419
+ msgstr "Nincs"
2420
+
2421
+ #: classes/helpers/FrmStylesHelper.php:143
2422
  msgid "Hidden (but leave the space)"
2423
  msgstr ""
2424
 
2425
+ #: classes/helpers/FrmStylesHelper.php:144
2426
  msgid "Placeholder inside the field"
2427
  msgstr ""
2428
 
2430
  msgid "Long forms can still be beautiful with sections."
2431
  msgstr ""
2432
 
2433
+ #: classes/helpers/FrmTipsHelper.php:40 classes/helpers/FrmTipsHelper.php:45
2434
+ #: classes/helpers/FrmTipsHelper.php:60 classes/helpers/FrmTipsHelper.php:104
2435
+ #: classes/helpers/FrmTipsHelper.php:109 classes/helpers/FrmTipsHelper.php:177
2436
+ #: classes/helpers/FrmTipsHelper.php:189
2437
+ msgid "Upgrade to Pro."
2438
+ msgstr "Frissítés a Pro verzióra."
2439
+
2440
  #: classes/helpers/FrmTipsHelper.php:44
2441
  msgid "Use conditional logic to shorten your forms and increase conversions."
2442
  msgstr ""
2622
  msgid "Your server is missing the simplexml_import_dom function"
2623
  msgstr ""
2624
 
2625
+ #: classes/helpers/FrmXMLHelper.php:814
2626
  msgid "Imported"
2627
  msgstr ""
2628
 
2629
+ #: classes/helpers/FrmXMLHelper.php:815
2630
+ msgid "Updated"
2631
+ msgstr "Frissítve"
2632
+
2633
+ #: classes/helpers/FrmXMLHelper.php:840
2634
  msgid "Nothing was imported or updated"
2635
  msgstr ""
2636
 
2637
+ #: classes/helpers/FrmXMLHelper.php:852
2638
  #, php-format
2639
  msgid "%1$s Form"
2640
  msgid_plural "%1$s Forms"
2641
  msgstr[0] ""
2642
  msgstr[1] ""
2643
 
2644
+ #: classes/helpers/FrmXMLHelper.php:853 classes/models/FrmFormMigrator.php:388
2645
  #, php-format
2646
  msgid "%1$s Field"
2647
  msgid_plural "%1$s Fields"
2648
  msgstr[0] ""
2649
  msgstr[1] ""
2650
 
2651
+ #: classes/helpers/FrmXMLHelper.php:854
2652
  #, php-format
2653
  msgid "%1$s Entry"
2654
  msgid_plural "%1$s Entries"
2655
  msgstr[0] ""
2656
  msgstr[1] ""
2657
 
2658
+ #: classes/helpers/FrmXMLHelper.php:855
2659
  #, php-format
2660
  msgid "%1$s View"
2661
  msgid_plural "%1$s Views"
2662
  msgstr[0] ""
2663
  msgstr[1] ""
2664
 
2665
+ #: classes/helpers/FrmXMLHelper.php:856
2666
  #, php-format
2667
  msgid "%1$s Post"
2668
  msgid_plural "%1$s Posts"
2669
  msgstr[0] ""
2670
  msgstr[1] ""
2671
 
2672
+ #: classes/helpers/FrmXMLHelper.php:857
2673
  #, php-format
2674
  msgid "%1$s Style"
2675
  msgid_plural "%1$s Styles"
2676
  msgstr[0] ""
2677
  msgstr[1] ""
2678
 
2679
+ #: classes/helpers/FrmXMLHelper.php:858
2680
  #, php-format
2681
  msgid "%1$s Term"
2682
  msgid_plural "%1$s Terms"
2683
  msgstr[0] ""
2684
  msgstr[1] ""
2685
 
2686
+ #: classes/helpers/FrmXMLHelper.php:859
2687
  #, php-format
2688
  msgid "%1$s Form Action"
2689
  msgid_plural "%1$s Form Actions"
2690
  msgstr[0] ""
2691
  msgstr[1] ""
2692
 
2693
+ #: classes/helpers/FrmXMLHelper.php:953
2694
  msgid "Create Posts"
2695
  msgstr ""
2696
 
2697
+ #: classes/helpers/FrmXMLHelper.php:1060
2698
  #: classes/views/frm-form-actions/email_action.php:16
2699
  msgid "Email Notification"
2700
  msgstr ""
2705
  "Your %1$s license key is missing. Please add it on the %2$slicenses page%3$s."
2706
  msgstr ""
2707
 
2708
+ #: classes/models/FrmAddon.php:290
2709
  msgid "Oops! You forgot to enter your license number."
2710
  msgstr ""
2711
 
2712
+ #: classes/models/FrmAddon.php:366
2713
  msgid "Your license has been activated. Enjoy!"
2714
  msgstr ""
2715
 
2716
+ #: classes/models/FrmAddon.php:367 classes/models/FrmAddon.php:372
2717
  msgid "That license key is invalid"
2718
  msgstr ""
2719
 
2720
+ #: classes/models/FrmAddon.php:368
2721
  msgid "That license is expired"
2722
  msgstr ""
2723
 
2724
+ #: classes/models/FrmAddon.php:369
2725
  msgid "That license has been refunded"
2726
  msgstr ""
2727
 
2728
+ #: classes/models/FrmAddon.php:370
2729
  msgid "That license has been used on too many sites"
2730
  msgstr ""
2731
 
2732
+ #: classes/models/FrmAddon.php:371
2733
  msgid "Oops! That is the wrong license key for this plugin."
2734
  msgstr ""
2735
 
2736
+ #: classes/models/FrmAddon.php:394
2737
  msgid "That license was removed successfully"
2738
  msgstr ""
2739
 
2740
+ #: classes/models/FrmAddon.php:396
2741
  msgid "There was an error deactivating your license."
2742
  msgstr ""
2743
 
2744
+ #: classes/models/FrmAddon.php:429
2745
  msgid "Your License Key was invalid"
2746
  msgstr ""
2747
 
2748
+ #: classes/models/FrmAddon.php:432
2749
  #, php-format
2750
  msgid ""
2751
  "You had an error communicating with the Formidable API. %1$sClick here%2$s "
2752
  "for more information."
2753
  msgstr ""
2754
 
2755
+ #: classes/models/FrmAddon.php:435
2756
  msgid "You had an HTTP error connecting to the Formidable API"
2757
  msgstr ""
2758
 
2759
+ #: classes/models/FrmAddon.php:446
2760
  #, php-format
2761
  msgid "There was a %1$s error: %2$s"
2762
  msgstr ""
2765
  msgid "Use the query in an array format so it can be properly prepared."
2766
  msgstr ""
2767
 
2768
+ #: classes/models/FrmEDD_SL_Plugin_Updater.php:315
2769
  msgid "You do not have permission to install plugin updates"
2770
  msgstr ""
2771
 
2772
+ #: classes/models/FrmEDD_SL_Plugin_Updater.php:315
2773
  #: classes/views/styles/_field-colors.php:15
2774
  #: classes/views/styles/_form-messages.php:7
2775
  msgid "Error"
2780
  msgid "%1$s Form submitted on %2$s"
2781
  msgstr ""
2782
 
2783
+ #: classes/models/FrmEmail.php:302
2784
+ #: classes/views/frm-entries/sidebar-shared.php:72
2785
  msgid "User Information"
2786
  msgstr ""
2787
 
2788
+ #: classes/models/FrmEmail.php:304 classes/models/FrmEntryValues.php:207
2789
  msgid "User-Agent (Browser/OS)"
2790
  msgstr ""
2791
 
2792
+ #: classes/models/FrmEmail.php:305 classes/models/FrmEntryValues.php:212
2793
+ #: classes/views/frm-entries/sidebar-shared.php:90
2794
  msgid "Referrer"
2795
  msgstr ""
2796
 
2797
+ #: classes/models/FrmEmail.php:321 classes/models/FrmEntryValues.php:202
2798
+ #: classes/views/frm-entries/sidebar-shared.php:76
2799
+ msgid "IP Address"
2800
+ msgstr "IP cím"
2801
+
2802
  #: classes/models/FrmEntryValidate.php:9
2803
  msgid "There was a problem with your submission. Please try again."
2804
  msgstr ""
2805
 
2806
+ #: classes/models/FrmEntryValidate.php:279
 
 
 
 
 
 
 
 
 
 
 
 
 
2807
  #: classes/models/FrmEntryValidate.php:288
 
2808
  msgid "Your entry appears to be spam!"
2809
  msgstr ""
2810
 
2811
+ #: classes/models/FrmEntryValidate.php:283
2812
  msgid "Your entry appears to be blacklist spam!"
2813
  msgstr ""
2814
 
2850
  msgid "Phone"
2851
  msgstr ""
2852
 
2853
+ #: classes/models/FrmField.php:50
2854
+ msgid "HTML"
2855
+ msgstr "HTML"
2856
+
2857
  #: classes/models/FrmField.php:54
2858
  msgid "Hidden Field"
2859
  msgstr ""
2860
 
2861
+ #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
2862
+ msgid "reCAPTCHA"
2863
+ msgstr "reCAPTCHA"
2864
+
2865
  #: classes/models/FrmField.php:73
2866
  msgid "File Upload"
2867
  msgstr ""
2874
  msgid "Time"
2875
  msgstr ""
2876
 
2877
+ #: classes/models/FrmField.php:89
2878
+ msgid "Scale"
2879
+ msgstr "Átméretezés"
2880
+
2881
  #: classes/models/FrmField.php:93
2882
  msgid "Star Rating"
2883
  msgstr ""
2918
  msgid "Embed Form"
2919
  msgstr ""
2920
 
2921
+ #: classes/models/FrmField.php:133
2922
+ msgid "Password"
2923
+ msgstr "Jelszó"
2924
+
2925
  #: classes/models/FrmField.php:137
2926
  msgid "Tags"
2927
  msgstr ""
2930
  msgid "Credit Card"
2931
  msgstr ""
2932
 
2933
+ #: classes/models/FrmField.php:145
2934
+ msgid "Address"
2935
+ msgstr "Cégnév"
2936
+
2937
  #: classes/models/FrmFieldValue.php:144
2938
  msgid ""
2939
  "The display value has not been prepared. Please use the "
2944
  msgid "There are no options for this action."
2945
  msgstr ""
2946
 
2947
+ #: classes/models/FrmFormAction.php:741
2948
  #: classes/views/frm-forms/_publish_box.php:30
2949
  msgid "Save Draft"
2950
  msgstr ""
2951
 
2952
+ #: classes/models/FrmFormAction.php:742
2953
  #: classes/views/frm-forms/add_field_links.php:7
2954
+ #: classes/views/frm-forms/form.php:61
2955
  msgid "Create"
2956
  msgstr ""
2957
 
2958
+ #: classes/models/FrmFormAction.php:743
2959
+ #: classes/views/frm-forms/_publish_box.php:34
2960
+ #: classes/views/frm-forms/_publish_box.php:38
2961
+ #: classes/views/frm-forms/add_field_links.php:7
2962
+ #: classes/views/frm-forms/edit.php:25 classes/views/frm-forms/form.php:61
2963
+ #: classes/views/frm-forms/settings.php:361
2964
+ msgid "Update"
2965
+ msgstr "Frisítés"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2966
 
2967
+ #: classes/models/FrmFormAction.php:745 classes/views/xml/import_form.php:9
2968
+ msgid "Import"
 
 
 
 
2969
  msgstr ""
2970
 
2971
+ #: classes/models/FrmFormMigrator.php:137
2972
+ msgid "No form fields found."
 
 
 
2973
  msgstr ""
2974
 
2975
+ #: classes/models/FrmFormMigrator.php:229
2976
+ msgid "There was an error while creating a new form."
 
 
 
 
2977
  msgstr ""
2978
 
2979
+ #: classes/models/FrmFormMigrator.php:360
2980
+ msgid "Default Form"
2981
  msgstr ""
2982
 
2983
+ #: classes/models/FrmMigrate.php:485
2984
+ msgid "Sending"
 
 
 
2985
  msgstr ""
2986
 
2987
+ #: classes/models/FrmPersonalData.php:23
2988
+ msgid "Formidable Forms Exporter"
 
 
 
2989
  msgstr ""
2990
 
2991
+ #: classes/models/FrmPersonalData.php:61
2992
+ msgid "Form Submissions"
 
 
 
2993
  msgstr ""
2994
 
2995
  #: classes/models/FrmSettings.php:93
2996
  msgid "Your responses were successfully submitted. Thank you!"
2997
  msgstr ""
2998
 
2999
+ #: classes/models/FrmSettings.php:94
3000
+ msgid "This field cannot be blank."
3001
+ msgstr "Ez a mező nem maradhat üresen."
3002
+
3003
  #: classes/models/FrmSettings.php:95
3004
  msgid "This value must be unique."
3005
  msgstr ""
3009
  msgstr ""
3010
 
3011
  #: classes/models/FrmSettings.php:97
3012
+ msgid "We're sorry. It looks like you've already submitted that."
3013
  msgstr ""
3014
 
3015
+ #: classes/models/FrmSettings.php:98 classes/views/styles/_sample_form.php:77
3016
+ msgid "Submit"
3017
+ msgstr "Beküldés"
3018
+
3019
  #: classes/models/FrmSettings.php:99
3020
  msgid "You do not have permission to view this form."
3021
  msgstr ""
3028
  msgid "New Style"
3029
  msgstr ""
3030
 
3031
+ #: classes/models/FrmStyle.php:149
3032
  msgid ""
3033
  "WARNING: Any changes made to this file will be lost when your Formidable "
3034
  "settings are updated"
3035
  msgstr ""
3036
 
3037
+ #: classes/models/FrmStyle.php:228
3038
  msgid "Formidable Style"
3039
  msgstr ""
3040
 
3041
+ #: classes/models/FrmStyle.php:463
3042
  #: classes/views/styles/_field-description.php:17
3043
  msgid "normal"
3044
  msgstr ""
3045
 
3046
+ #: classes/models/FrmStyle.php:466
3047
  msgid "bold"
3048
  msgstr ""
3049
 
3055
  msgid "Formidable Form"
3056
  msgstr ""
3057
 
3058
+ #: classes/widgets/FrmShowForm.php:46
3059
+ msgid "Title"
3060
+ msgstr "Cím"
3061
+
3062
+ #: classes/widgets/FrmShowForm.php:70
3063
  msgid "Show Description"
3064
  msgstr ""
3065
 
3066
+ #: classes/models/fields/FrmFieldCaptcha.php:147
3067
+ msgid "The captcha is missing from this form"
3068
+ msgstr ""
3069
+
3070
+ #: classes/models/fields/FrmFieldCaptcha.php:163
3071
+ msgid "There was a problem verifying your recaptcha"
3072
+ msgstr ""
3073
+
3074
+ #: classes/models/fields/FrmFieldCheckbox.php:38
3075
+ #: classes/models/fields/FrmFieldRadio.php:45
3076
+ #: classes/models/fields/FrmFieldSelect.php:35
3077
  #: classes/views/styles/_sample_form.php:32
3078
  #: classes/views/styles/_sample_form.php:61
3079
  #: classes/views/styles/_sample_form.php:69
3080
  msgid "Option 1"
3081
  msgstr ""
3082
 
3083
+ #: classes/models/fields/FrmFieldCheckbox.php:39
3084
+ #: classes/models/fields/FrmFieldRadio.php:46
3085
  #: classes/views/styles/_sample_form.php:62
3086
  #: classes/views/styles/_sample_form.php:70
3087
  msgid "Option 2"
3088
  msgstr ""
3089
 
3090
+ #: classes/models/fields/FrmFieldNumber.php:65
3091
  msgid "Please select a higher number"
3092
  msgstr ""
3093
 
3094
+ #: classes/models/fields/FrmFieldNumber.php:67
3095
  msgid "Please select a lower number"
3096
  msgstr ""
3097
 
3098
+ #: classes/models/fields/FrmFieldType.php:328
3099
  msgid "Untitled"
3100
  msgstr ""
3101
 
3102
+ #: classes/models/fields/FrmFieldUrl.php:34
3103
+ msgid "Website"
3104
+ msgstr "Weboldal"
3105
+
3106
  #: classes/views/addons/list.php:2
3107
  msgid "Formidable AddOns"
3108
  msgstr ""
3111
  msgid "This plugin is already installed"
3112
  msgstr ""
3113
 
3114
+ #: classes/views/addons/list.php:19
3115
+ msgid "Installed"
3116
+ msgstr "Telepítve"
3117
+
3118
+ #: classes/views/addons/list.php:21 classes/views/addons/settings.php:32
3119
+ msgid "Activate"
3120
+ msgstr "Sikeresen regisztrált oldalunkra!"
3121
+
3122
+ #: classes/views/addons/list.php:24 classes/views/addons/upgrade_to_pro.php:24
3123
+ msgid "Get Started"
3124
+ msgstr "Vágjon bele"
3125
+
3126
+ #: classes/views/addons/list.php:26
3127
  msgid "View Docs"
3128
  msgstr ""
3129
 
3161
  msgid "If you are human, leave this field blank."
3162
  msgstr ""
3163
 
3164
+ #: classes/views/frm-entries/list.php:19 classes/views/frm-forms/list.php:21
3165
  #: classes/views/shared/mb_adv_info.php:21
3166
  msgid "Search"
3167
  msgstr ""
3198
  msgid "To view entries, you must first %1$sbuild a form%2$s"
3199
  msgstr ""
3200
 
3201
+ #: classes/views/frm-entries/show.php:10
3202
  #: classes/views/frm-entries/sidebar-shared.php:7
3203
  msgid "View Entry"
3204
  msgstr ""
3205
 
3206
+ #: classes/views/frm-entries/show.php:21
3207
  msgid "Entry"
3208
  msgstr ""
3209
 
3210
+ #: classes/views/frm-entries/show.php:68
3211
  msgid "Parent Entry ID"
3212
  msgstr ""
3213
 
3219
  msgid "Post"
3220
  msgstr ""
3221
 
3222
+ #: classes/views/frm-entries/sidebar-shared.php:21
3223
+ msgid "Edit"
3224
+ msgstr "Szerkesztés"
3225
+
3226
+ #: classes/views/frm-entries/sidebar-shared.php:48
3227
  #, php-format
3228
  msgid "Created by: %1$s"
3229
  msgstr ""
3230
 
3231
+ #: classes/views/frm-entries/sidebar-shared.php:60
3232
  #, php-format
3233
  msgid "Updated by: %1$s"
3234
  msgstr ""
3235
 
3236
+ #: classes/views/frm-entries/sidebar-shared.php:83
3237
  msgid "Browser/OS"
3238
  msgstr ""
3239
 
3249
  msgid "Label"
3250
  msgstr ""
3251
 
3252
+ #: classes/views/frm-form-actions/_action_inside.php:33
3253
  msgid "Action Triggers"
3254
  msgstr ""
3255
 
3256
+ #: classes/views/frm-form-actions/_action_inside.php:35
3257
  msgid "Trigger this action after"
3258
  msgstr ""
3259
 
3260
+ #: classes/views/frm-form-actions/_action_inside.php:59
3261
  #, php-format
3262
  msgid "Action ID: %1$s"
3263
  msgstr ""
3264
 
3265
+ #: classes/views/frm-form-actions/_email_settings.php:4
3266
+ msgid "To"
3267
+ msgstr "Címzett"
3268
+
3269
  #: classes/views/frm-form-actions/_email_settings.php:10
3270
  #: classes/views/frm-form-actions/_email_settings.php:16
3271
  msgid "CC"
3288
  msgid "Reply To"
3289
  msgstr ""
3290
 
3291
+ #: classes/views/frm-form-actions/_email_settings.php:63
3292
+ msgid "Subject"
3293
+ msgstr "Téma"
3294
+
3295
+ #: classes/views/frm-form-actions/_email_settings.php:69
3296
+ msgid "Message"
3297
+ msgstr "Üzenet"
3298
+
3299
  #: classes/views/frm-form-actions/_email_settings.php:73
3300
  #: classes/views/frm-forms/shortcode_opts.php:12
3301
  msgid "Options"
3341
  msgid "Highrise"
3342
  msgstr ""
3343
 
3344
+ #: classes/views/frm-form-actions/form_action.php:17
3345
+ msgid "Duplicate"
3346
+ msgstr ""
3347
+
3348
+ #: classes/views/frm-forms/_publish_box.php:44
3349
+ msgid "Preview"
3350
+ msgstr "Előnézet"
3351
+
3352
  #: classes/views/frm-forms/_publish_box.php:49
3353
  msgid "On Blank Page"
3354
  msgstr ""
3377
  msgid "Duplicate Field"
3378
  msgstr ""
3379
 
3380
+ #: classes/views/frm-forms/add_field.php:74
3381
  msgid "Add Option"
3382
  msgstr ""
3383
 
3384
+ #: classes/views/frm-forms/add_field.php:78
3385
  msgid "Add \"Other\""
3386
  msgstr ""
3387
 
3388
+ #: classes/views/frm-forms/add_field.php:86
3389
  msgid "Field Choices"
3390
  msgstr ""
3391
 
3392
+ #: classes/views/frm-forms/add_field.php:87
3393
  msgid "Bulk Edit Options"
3394
  msgstr ""
3395
 
3396
+ #: classes/views/frm-forms/add_field.php:116
3397
  msgid "Field Type"
3398
  msgstr ""
3399
 
3400
+ #: classes/views/frm-forms/add_field.php:132
3401
+ #: classes/views/frm-forms/add_field.php:304
3402
  msgid "Required"
3403
  msgstr ""
3404
 
3405
+ #: classes/views/frm-forms/add_field.php:142
3406
  msgid ""
3407
  "Unique: Do not allow the same response multiple times. For example, if one "
3408
  "user enters 'Joe', then no one else will be allowed to enter the same name."
3409
  msgstr ""
3410
 
3411
+ #: classes/views/frm-forms/add_field.php:143
3412
+ #: classes/views/frm-forms/add_field.php:323
3413
  msgid "Unique"
3414
  msgstr ""
3415
 
3416
+ #: classes/views/frm-forms/add_field.php:153
3417
  msgid ""
3418
  "Read Only: Show this field but do not allow the field value to be edited "
3419
  "from the front-end."
3420
  msgstr ""
3421
 
3422
+ #: classes/views/frm-forms/add_field.php:155
3423
  #: classes/views/styles/_field-colors.php:20
3424
  msgid "Read Only"
3425
  msgstr ""
3426
 
3427
+ #: classes/views/frm-forms/add_field.php:165
3428
  msgid "Indicate required field with"
3429
  msgstr ""
3430
 
3431
+ #: classes/views/frm-forms/add_field.php:173
3432
  msgid ""
3433
  "The field key can be used as an alternative to the field ID in many cases."
3434
  msgstr ""
3435
 
3436
+ #: classes/views/frm-forms/add_field.php:174
3437
  #: classes/views/frm-forms/mb_html_tab.php:11
3438
  msgid "Field Key"
3439
  msgstr ""
3440
 
3441
+ #: classes/views/frm-forms/add_field.php:183
3442
  msgid "CSS layout classes"
3443
  msgstr ""
3444
 
3445
+ #: classes/views/frm-forms/add_field.php:184
3446
  msgid ""
3447
  "Add a CSS class to the field container. Use our predefined classes to align "
3448
  "multiple fields in single row."
3449
  msgstr ""
3450
 
3451
+ #: classes/views/frm-forms/add_field.php:193
3452
  #: classes/views/frm-forms/mb_html_tab.php:14
3453
  msgid "Label Position"
3454
  msgstr ""
3455
 
3456
+ #: classes/views/frm-forms/add_field.php:232
3457
  msgid "Show URL image"
3458
  msgstr ""
3459
 
3460
+ #: classes/views/frm-forms/add_field.php:237
3461
  msgid ""
3462
  "If this URL points to an image, show to image on the entries listing page."
3463
  msgstr ""
3464
 
3465
+ #: classes/views/frm-forms/add_field.php:246
3466
  msgid "ReCaptcha Type"
3467
  msgstr ""
3468
 
3469
+ #: classes/views/frm-forms/add_field.php:247
3470
  msgid ""
3471
  "Set the size of the captcha field. The compact option is best if your form "
3472
  "is in a small area."
3473
  msgstr ""
3474
 
3475
+ #: classes/views/frm-forms/add_field.php:252
3476
  msgid "Normal"
3477
  msgstr ""
3478
 
3479
+ #: classes/views/frm-forms/add_field.php:255
3480
+ msgid "Compact"
3481
+ msgstr "Kompakt"
3482
+
3483
+ #: classes/views/frm-forms/add_field.php:263
3484
  msgid "reCAPTCHA Color"
3485
  msgstr ""
3486
 
3487
+ #: classes/views/frm-forms/add_field.php:269
3488
+ msgid "Light"
3489
+ msgstr "Világos"
3490
+
3491
+ #: classes/views/frm-forms/add_field.php:272
3492
+ msgid "Dark"
3493
+ msgstr "Sötét"
3494
+
3495
+ #: classes/views/frm-forms/add_field.php:298
3496
  msgid "Validation"
3497
  msgstr ""
3498
 
3499
+ #: classes/views/frm-forms/add_field.php:314
3500
  msgid "Invalid Format"
3501
  msgstr ""
3502
 
3503
+ #: classes/views/frm-forms/add_field.php:332
3504
  msgid "Confirmation"
3505
  msgstr ""
3506
 
3507
+ #: classes/views/frm-forms/add_field.php:354
3508
  msgid "Drag fields from your form or the sidebar into this section"
3509
  msgstr ""
3510
 
3533
  msgid "Click on any box below to set the width for your selected field."
3534
  msgstr ""
3535
 
3536
+ #: classes/views/frm-forms/edit.php:10 classes/views/frm-forms/new.php:10
3537
  msgid "Build Form"
3538
  msgstr ""
3539
 
3549
  msgid "Add Fields Here"
3550
  msgstr ""
3551
 
3552
+ #: classes/views/frm-forms/form.php:30
3553
  msgid "Or load fields from a template"
3554
  msgstr ""
3555
 
3556
+ #: classes/views/frm-forms/form.php:36
3557
  msgid "Load Template"
3558
  msgstr ""
3559
 
3560
+ #: classes/views/frm-forms/form.php:41
3561
  msgid "3. Save your form"
3562
  msgstr ""
3563
 
3624
  msgstr ""
3625
 
3626
  #: classes/views/frm-forms/mb_html_tab.php:50
3627
+ #: classes/views/frm-forms/settings.php:240
3628
  msgid "Form Key"
3629
  msgstr ""
3630
 
3644
  msgid "Customization"
3645
  msgstr ""
3646
 
3647
+ #: classes/views/frm-forms/settings.php:39
3648
  msgid "Customize HTML"
3649
  msgstr ""
3650
 
3651
+ #: classes/views/frm-forms/settings.php:64
3652
  msgid "Form Shortcodes"
3653
  msgstr ""
3654
 
3655
+ #: classes/views/frm-forms/settings.php:66
3656
+ msgid "Show"
3657
+ msgstr "Megjelenít"
3658
+
3659
+ #: classes/views/frm-forms/settings.php:68
3660
  msgid "Insert on a page, post, or text widget"
3661
  msgstr ""
3662
 
3663
+ #: classes/views/frm-forms/settings.php:73
3664
  msgid "Insert in a template"
3665
  msgstr ""
3666
 
3667
+ #: classes/views/frm-forms/settings.php:76
3668
+ msgid "Hide"
3669
+ msgstr "Elrejtés"
3670
+
3671
+ #: classes/views/frm-forms/settings.php:82
3672
  msgid "Form Settings"
3673
  msgstr ""
3674
 
3675
+ #: classes/views/frm-forms/settings.php:93
3676
+ #: classes/views/frm-forms/settings.php:228
3677
  msgid "On Submit"
3678
  msgstr ""
3679
 
3680
+ #: classes/views/frm-forms/settings.php:94
3681
  msgid "Choose what will happen after the user submits this form."
3682
  msgstr ""
3683
 
3684
+ #: classes/views/frm-forms/settings.php:103
3685
  msgid "Show Message"
3686
  msgstr ""
3687
 
3688
+ #: classes/views/frm-forms/settings.php:106
3689
  msgid "Redirect to URL"
3690
  msgstr ""
3691
 
3692
+ #: classes/views/frm-forms/settings.php:109
3693
  msgid "Show Page Content"
3694
  msgstr ""
3695
 
3696
+ #: classes/views/frm-forms/settings.php:119
3697
  msgid "Use Content from Page"
3698
  msgstr ""
3699
 
3700
+ #: classes/views/frm-forms/settings.php:129
3701
  msgid "Show the form with the confirmation message"
3702
  msgstr ""
3703
 
3704
+ #: classes/views/frm-forms/settings.php:137
3705
  msgid "Do not store entries submitted from this form"
3706
  msgstr ""
3707
 
3708
+ #: classes/views/frm-forms/settings.php:143
3709
  msgid "Use Akismet to check entries for spam for"
3710
  msgstr ""
3711
 
3712
+ #: classes/views/frm-forms/settings.php:146
3713
  msgid "no one"
3714
  msgstr ""
3715
 
3716
+ #: classes/views/frm-forms/settings.php:149
3717
  msgid "everyone"
3718
  msgstr ""
3719
 
3720
+ #: classes/views/frm-forms/settings.php:152
3721
  msgid "visitors who are not logged in"
3722
  msgstr ""
3723
 
3724
+ #: classes/views/frm-forms/settings.php:161
3725
  msgid "AJAX"
3726
  msgstr ""
3727
 
3728
+ #: classes/views/frm-forms/settings.php:162
3729
  msgid "Make stuff happen in the background without a page refresh"
3730
  msgstr ""
3731
 
3732
+ #: classes/views/frm-forms/settings.php:168
3733
  msgid "Load and save form builder page with AJAX"
3734
  msgstr ""
3735
 
3736
+ #: classes/views/frm-forms/settings.php:170
3737
  msgid "Recommended for long forms."
3738
  msgstr ""
3739
 
3740
+ #: classes/views/frm-forms/settings.php:178
3741
  msgid "Validate this form with javascript"
3742
  msgstr ""
3743
 
3744
+ #: classes/views/frm-forms/settings.php:180
3745
  msgid ""
3746
  "Required fields, email format, and number format can be checked instantly in "
3747
  "your browser. You may want to turn this option off if you have any "
3748
  "customizations to remove validation messages on certain fields."
3749
  msgstr ""
3750
 
3751
+ #: classes/views/frm-forms/settings.php:189
3752
  msgid "Styling & Buttons"
3753
  msgstr ""
3754
 
3755
+ #: classes/views/frm-forms/settings.php:190
3756
  msgid "Select a style for this form and set the text for your buttons."
3757
  msgstr ""
3758
 
3759
+ #: classes/views/frm-forms/settings.php:195
3760
  msgid "Style Template"
3761
  msgstr ""
3762
 
3763
+ #: classes/views/frm-forms/settings.php:199
3764
  msgid "Always use default"
3765
  msgstr ""
3766
 
3767
+ #: classes/views/frm-forms/settings.php:203 classes/views/styles/manage.php:43
3768
  msgid "default"
3769
  msgstr ""
3770
 
3771
+ #: classes/views/frm-forms/settings.php:207
3772
  msgid "Do not use Formidable styling"
3773
  msgstr ""
3774
 
3775
+ #: classes/views/frm-forms/settings.php:212
3776
+ #: classes/views/frm-settings/form.php:174
3777
+ msgid "Submit Button Text"
3778
+ msgstr "Beküldés gomb szövege"
3779
+
3780
+ #: classes/views/frm-forms/settings.php:222
3781
  msgid "Messages"
3782
  msgstr ""
3783
 
3784
+ #: classes/views/frm-forms/settings.php:223
3785
  msgid "Set up your confirmation messages."
3786
  msgstr ""
3787
 
3788
+ #: classes/views/frm-forms/settings.php:236
3789
  #: classes/views/frm-settings/form.php:182
3790
  msgid "Miscellaneous"
3791
  msgstr ""
3792
 
3793
+ #: classes/views/frm-forms/settings.php:262
3794
  msgid "Add New Action"
3795
  msgstr ""
3796
 
3797
+ #: classes/views/frm-forms/settings.php:284
3798
  msgid "Click an action to add it to this form"
3799
  msgstr ""
3800
 
3801
+ #: classes/views/frm-forms/settings.php:294
3802
  msgid "Form Classes"
3803
  msgstr ""
3804
 
3805
+ #: classes/views/frm-forms/settings.php:300
3806
  msgid "Before Fields"
3807
  msgstr ""
3808
 
3809
+ #: classes/views/frm-forms/settings.php:322
3810
  msgid "After Fields"
3811
  msgstr ""
3812
 
3813
+ #: classes/views/frm-forms/settings.php:326
3814
+ msgid "Submit Button"
3815
+ msgstr "Beküldés Gomb"
3816
+
3817
  #: classes/views/frm-forms/shortcode_opts.php:4
3818
  msgid "Select a form:"
3819
  msgstr ""
3890
  "reCAPTCHA key%2$s."
3891
  msgstr ""
3892
 
3893
+ #: classes/views/frm-settings/form.php:97
3894
+ msgid "Site Key"
3895
+ msgstr "Oldal kulcs"
3896
+
3897
  #: classes/views/frm-settings/form.php:98
3898
  #: classes/views/frm-settings/form.php:101
3899
  msgid "Optional"
4028
  msgstr ""
4029
 
4030
  #: classes/views/shared/mb_adv_info.php:15
4031
+ #: classes/views/shared/mb_adv_info.php:87
4032
  msgid "IDs"
4033
  msgstr ""
4034
 
4035
  #: classes/views/shared/mb_adv_info.php:16
4036
+ #: classes/views/shared/mb_adv_info.php:88
4037
  msgid "Keys"
4038
  msgstr ""
4039
 
4040
  #: classes/views/shared/mb_adv_info.php:18
4041
+ #: classes/views/shared/mb_adv_info.php:90
4042
  msgid "Fields from your form"
4043
  msgstr ""
4044
 
4045
+ #: classes/views/shared/mb_adv_info.php:53
4046
  msgid ""
4047
  "Click a button below to insert extra values from form entries or your site "
4048
  "settings."
4049
  msgstr ""
4050
 
4051
+ #: classes/views/shared/mb_adv_info.php:56
4052
  msgid "Helpers"
4053
  msgstr ""
4054
 
4055
+ #: classes/views/shared/mb_adv_info.php:100
4056
  msgid "Conditional text here"
4057
  msgstr ""
4058
 
4059
+ #: classes/views/shared/mb_adv_info.php:115
4060
  msgid "Click a button below to insert sample logic into your view"
4061
  msgstr ""
4062
 
4063
+ #: classes/views/styles/_buttons.php:4
4064
+ msgid "Disable submit button styling"
 
 
4065
  msgstr ""
4066
 
4067
+ #: classes/views/styles/_buttons.php:5
4068
+ msgid ""
4069
+ "Note: If disabled, you may not see the change take effect until you make 2 "
4070
+ "more styling changes or click \"Update Options\"."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4071
  msgstr ""
4072
 
4073
  #: classes/views/styles/_buttons.php:15
4078
  msgid "Click"
4079
  msgstr ""
4080
 
4081
+ #: classes/views/styles/_buttons.php:24
4082
+ #: classes/views/styles/_check-box-radio-fields.php:40
4083
+ #: classes/views/styles/_field-description.php:26
4084
+ #: classes/views/styles/_field-labels.php:14
4085
+ #: classes/views/styles/_field-sizes.php:2
4086
+ #: classes/views/styles/_form-description.php:2
4087
+ #: classes/views/styles/_form-messages.php:27
4088
+ #: classes/views/styles/_form-messages.php:51
4089
+ #: classes/views/styles/_form-title.php:2
4090
+ msgid "Size"
4091
+ msgstr "Méret"
4092
+
4093
  #: classes/views/styles/_buttons.php:29
4094
  #: classes/views/styles/_field-labels.php:40
4095
  #: classes/views/styles/_field-sizes.php:12
4191
  msgid "Color"
4192
  msgstr ""
4193
 
4194
+ #: classes/views/styles/_field-colors.php:10
4195
+ msgid "Active"
4196
+ msgstr "Bekapcsolva"
4197
+
4198
  #: classes/views/styles/_field-colors.php:47
4199
  #: classes/views/styles/_field-colors.php:109
4200
  msgid "solid"
4229
  msgid "Align"
4230
  msgstr ""
4231
 
4232
+ #: classes/views/styles/_field-labels.php:19
4233
+ msgid "Position"
4234
+ msgstr "Elhelyezkedés"
4235
+
4236
  #: classes/views/styles/_field-labels.php:50
4237
  msgid "Required Indicator"
4238
  msgstr ""
4303
  msgid "Right to Left"
4304
  msgstr ""
4305
 
4306
+ #: classes/views/styles/_general.php:68
4307
  msgid "Override theme styling"
4308
  msgstr ""
4309
 
4310
+ #: classes/views/styles/_general.php:68
4311
  msgid ""
4312
  "This will add !important to many of the lines in the Formidable styling to "
4313
  "make sure it will be used."
4379
  msgid "You can add custom css here or in your theme style.css"
4380
  msgstr ""
4381
 
4382
+ #: classes/views/styles/custom_css.php:39 classes/views/styles/manage.php:65
4383
+ msgid "Save Changes"
4384
+ msgstr "Módosítások mentése"
4385
+
4386
  #: classes/views/styles/manage.php:5
4387
  msgid ""
4388
  "Easily change which template your forms are using by making changes below."
4424
  msgid "Reset to Default"
4425
  msgstr ""
4426
 
4427
+ #: classes/views/xml/import_form.php:11
4428
  msgid ""
4429
  "Upload your Formidable XML file to import forms into this site. If your "
4430
  "imported form key and creation date match a form on your site, that form "
4431
  "will be updated."
4432
  msgstr ""
4433
 
4434
+ #: classes/views/xml/import_form.php:18
4435
  msgid "Choose a Formidable XML file"
4436
  msgstr ""
4437
 
4438
+ #: classes/views/xml/import_form.php:19
4439
  #, php-format
4440
  msgid "Maximum size: %s"
4441
  msgstr ""
4442
 
4443
+ #: classes/views/xml/import_form.php:27
4444
  msgid "Upload file and import"
4445
  msgstr ""
4446
 
4508
  msgid "automatic width"
4509
  msgstr ""
4510
 
4511
+ #: classes/views/frm-fields/back-end/field-captcha.php:5
4512
  #, php-format
4513
  msgid ""
4514
  "Your captcha will not appear on your form until you %1$sset up%2$s the Site "
4578
  "starting with ^ or an exact format like (999)999-9999."
4579
  msgstr ""
4580
 
 
 
 
 
4581
  #. Description of the plugin
4582
  msgid "Quickly and easily create drag-and-drop forms"
4583
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/formidable-it_IT.mo CHANGED
Binary file
languages/formidable-it_IT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Formidable v2.05.02\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-09-12 16:44+0000\n"
6
- "PO-Revision-Date: 2018-09-12 16:45+0000\n"
7
  "Last-Translator: Formidable Community\n"
8
  "Language-Team: Italian\n"
9
  "Language: it_IT\n"
@@ -34,17 +34,17 @@ msgstr "Aggiorna a Pro"
34
  msgid "There are no plugins on your site that require a license"
35
  msgstr "Non ci sono plugin nel tuo sito che richiedono una licenza"
36
 
37
- #: classes/controllers/FrmAppController.php:91
38
  msgid "Build"
39
  msgstr "Crea"
40
 
41
- #: classes/controllers/FrmAppController.php:98
42
  #: classes/helpers/FrmFormsListHelper.php:336
43
  #: classes/views/frm-forms/settings.php:10
44
  msgid "Settings"
45
  msgstr "Impostazioni"
46
 
47
- #: classes/controllers/FrmAppController.php:105
48
  #: classes/controllers/FrmEntriesController.php:8
49
  #: classes/controllers/FrmEntriesController.php:8
50
  #: classes/controllers/FrmEntriesController.php:126
@@ -54,11 +54,11 @@ msgstr "Impostazioni"
54
  msgid "Entries"
55
  msgstr "Voci"
56
 
57
- #: classes/controllers/FrmAppController.php:121
58
  msgid "Build a Form"
59
  msgstr ""
60
 
61
- #: classes/controllers/FrmAppController.php:154
62
  #, php-format
63
  msgid ""
64
  "This site has been previously authorized to run Formidable Forms. "
@@ -66,7 +66,7 @@ msgid ""
66
  "running the free version and remove this message."
67
  msgstr ""
68
 
69
- #: classes/controllers/FrmAppController.php:513
70
  #, php-format
71
  msgid ""
72
  "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress."
@@ -106,7 +106,7 @@ msgid "Support"
106
  msgstr "Supporto"
107
 
108
  #: classes/controllers/FrmEntriesController.php:105
109
- #: classes/controllers/FrmFormsController.php:827
110
  #: classes/views/frm-entries/form.php:43
111
  #: classes/views/frm-entries/sidebar-shared.php:38
112
  msgid "Entry Key"
@@ -164,11 +164,11 @@ msgstr "Le voci sono stati eliminate con successo"
164
  msgid "No entries were specified"
165
  msgstr "Non sono state specificate le voci"
166
 
167
- #: classes/controllers/FrmFieldsController.php:302
168
  msgid "Other"
169
  msgstr "Altro"
170
 
171
- #: classes/controllers/FrmFieldsController.php:305
172
  msgid "New Option"
173
  msgstr "Nuova opzione"
174
 
@@ -177,7 +177,7 @@ msgstr "Nuova opzione"
177
  msgid "Form Actions"
178
  msgstr "Azioni del modulo"
179
 
180
- #: classes/controllers/FrmFormActionsController.php:210
181
  #: classes/models/FrmEntryValidate.php:14 classes/models/FrmSettings.php:100
182
  msgid "You do not have permission to do that"
183
  msgstr "Non hai il permesso di farlo"
@@ -199,7 +199,7 @@ msgid "Form was Successfully Updated"
199
  msgstr "Il modulo è stato aggiornato con successo"
200
 
201
  #: classes/controllers/FrmFormsController.php:232
202
- #: classes/controllers/FrmFormsController.php:1662
203
  msgid "Form template was Successfully Created"
204
  msgstr "Il modello del modulo è stato creato con successo"
205
 
@@ -308,91 +308,135 @@ msgstr "Modello aggiornato con successo"
308
  msgid "That template cannot be edited"
309
  msgstr "Questo modello non può essere modificato"
310
 
311
- #: classes/controllers/FrmFormsController.php:804
 
 
 
 
 
 
 
 
 
 
312
  msgid "Separator"
313
  msgstr "Separatore"
314
 
315
- #: classes/controllers/FrmFormsController.php:805
316
  msgid "Use a different separator for checkbox fields"
317
  msgstr "Utilizzare un separatore diverso per i campi checkbox"
318
 
319
- #: classes/controllers/FrmFormsController.php:807
320
  msgid "Date Format"
321
  msgstr "Formato data"
322
 
323
- #: classes/controllers/FrmFormsController.php:808
324
  msgid "Field Label"
325
  msgstr "Campo etichetta"
326
 
327
- #: classes/controllers/FrmFormsController.php:810
328
  msgid "No Auto P"
329
  msgstr "Nessun P automatico"
330
 
331
- #: classes/controllers/FrmFormsController.php:811
332
  msgid "Do not automatically add any paragraphs or line breaks"
333
  msgstr "Non aggiungere automaticamente paragrafi o interruzioni di riga"
334
 
335
- #: classes/controllers/FrmFormsController.php:826
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
336
  #: classes/views/frm-entries/sidebar-shared.php:32
337
  msgid "Entry ID"
338
  msgstr "ID voce"
339
 
340
- #: classes/controllers/FrmFormsController.php:828
341
  msgid "Post ID"
342
  msgstr "ID articolo"
343
 
344
- #: classes/controllers/FrmFormsController.php:829
345
  msgid "User IP"
346
  msgstr "IP utente"
347
 
348
- #: classes/controllers/FrmFormsController.php:830
349
  msgid "Entry created"
350
  msgstr "Voce creata"
351
 
352
- #: classes/controllers/FrmFormsController.php:831
353
  msgid "Entry updated"
354
  msgstr "Voce aggiornata"
355
 
356
- #: classes/controllers/FrmFormsController.php:833
357
  msgid "Site URL"
358
  msgstr "URL sito"
359
 
360
- #: classes/controllers/FrmFormsController.php:834
361
  msgid "Site Name"
362
  msgstr "Nome sito"
363
 
364
- #: classes/controllers/FrmFormsController.php:842
365
  msgid "Default Msg"
366
  msgstr "Msg predefinito"
367
 
368
- #: classes/controllers/FrmFormsController.php:843
369
  msgid "Default HTML"
370
  msgstr "HTML predefinito"
371
 
372
- #: classes/controllers/FrmFormsController.php:844
373
  msgid "Default Plain"
374
  msgstr "Testo semplice predefinito"
375
 
376
- #: classes/controllers/FrmFormsController.php:932
377
  msgid "No forms were specified"
378
  msgstr "Non sono stati specificati moduli"
379
 
380
- #: classes/controllers/FrmFormsController.php:1079
381
  msgid "Abnormal HTML characters prevented your form from saving correctly"
382
  msgstr ""
383
  "Caratteri HTML anomali hanno impedito al modulo di essere salvato "
384
  "correttamente"
385
 
386
- #: classes/controllers/FrmFormsController.php:1194
387
- #: classes/controllers/FrmFormsController.php:1208
388
  msgid "Please select a valid form"
389
  msgstr "Seleziona un modulo valido"
390
 
391
- #: classes/controllers/FrmFormsController.php:1436
392
  msgid "Please wait while you are redirected."
393
  msgstr "Attendi di essere reindirizzato."
394
 
395
- #: classes/controllers/FrmFormsController.php:1470
396
  #, php-format
397
  msgid "%1$sClick here%2$s if you are not automatically redirected."
398
  msgstr "%1$sFai clic qui%2$s se non vieni reindirizzato automaticamente."
@@ -2215,7 +2259,8 @@ msgstr "Cestino"
2215
  msgid "Delete Permanently"
2216
  msgstr "Rimuovi definitivamente"
2217
 
2218
- #: classes/helpers/FrmFormsHelper.php:835 classes/models/FrmFormAction.php:703
 
2219
  msgid "Delete"
2220
  msgstr "Elimina"
2221
 
@@ -2649,7 +2694,7 @@ msgid_plural "%1$s Forms"
2649
  msgstr[0] "%1$s modulo"
2650
  msgstr[1] "%1$s moduli"
2651
 
2652
- #: classes/helpers/FrmXMLHelper.php:853
2653
  #, php-format
2654
  msgid "%1$s Field"
2655
  msgid_plural "%1$s Fields"
@@ -2848,10 +2893,6 @@ msgstr ""
2848
  msgid "Dropdown"
2849
  msgstr "Campo a discesa"
2850
 
2851
- #: classes/models/FrmField.php:34
2852
- msgid "Email"
2853
- msgstr "Email"
2854
-
2855
  #: classes/models/FrmField.php:38
2856
  msgid "Website/URL"
2857
  msgstr "Sito/URL"
@@ -2872,10 +2913,6 @@ msgstr "HTML"
2872
  msgid "Hidden Field"
2873
  msgstr "Campo nascosto"
2874
 
2875
- #: classes/models/FrmField.php:58
2876
- msgid "User ID"
2877
- msgstr "ID utente"
2878
-
2879
  #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
2880
  msgid "reCAPTCHA"
2881
  msgstr "reCAPTCHA"
@@ -2962,18 +2999,18 @@ msgstr ""
2962
  msgid "There are no options for this action."
2963
  msgstr "Non ci sono opzioni per questa azione"
2964
 
2965
- #: classes/models/FrmFormAction.php:700
2966
  #: classes/views/frm-forms/_publish_box.php:30
2967
  msgid "Save Draft"
2968
  msgstr "Salva bozza"
2969
 
2970
- #: classes/models/FrmFormAction.php:701
2971
  #: classes/views/frm-forms/add_field_links.php:7
2972
  #: classes/views/frm-forms/form.php:61
2973
  msgid "Create"
2974
  msgstr "Crea"
2975
 
2976
- #: classes/models/FrmFormAction.php:702
2977
  #: classes/views/frm-forms/_publish_box.php:34
2978
  #: classes/views/frm-forms/_publish_box.php:38
2979
  #: classes/views/frm-forms/add_field_links.php:7
@@ -2982,10 +3019,22 @@ msgstr "Crea"
2982
  msgid "Update"
2983
  msgstr "Aggiorna"
2984
 
2985
- #: classes/models/FrmFormAction.php:704 classes/views/xml/import_form.php:10
2986
  msgid "Import"
2987
  msgstr "Importa"
2988
 
 
 
 
 
 
 
 
 
 
 
 
 
2989
  #: classes/models/FrmMigrate.php:485
2990
  msgid "Sending"
2991
  msgstr "Invio in corso"
@@ -3352,6 +3401,10 @@ msgstr "Twilio"
3352
  msgid "Highrise"
3353
  msgstr "Highrise"
3354
 
 
 
 
 
3355
  #: classes/views/frm-forms/_publish_box.php:44
3356
  msgid "Preview"
3357
  msgstr "Anteprima"
@@ -4074,82 +4127,40 @@ msgid "HTML Tags"
4074
  msgstr "Tag HTML"
4075
 
4076
  #: classes/views/shared/mb_adv_info.php:15
4077
- #: classes/views/shared/mb_adv_info.php:124
4078
  msgid "IDs"
4079
  msgstr "ID"
4080
 
4081
  #: classes/views/shared/mb_adv_info.php:16
4082
- #: classes/views/shared/mb_adv_info.php:125
4083
  msgid "Keys"
4084
  msgstr "Chiavi"
4085
 
4086
  #: classes/views/shared/mb_adv_info.php:18
4087
- #: classes/views/shared/mb_adv_info.php:127
4088
  msgid "Fields from your form"
4089
  msgstr "Campi dal modulo"
4090
 
4091
- #: classes/views/shared/mb_adv_info.php:90
4092
  msgid ""
4093
  "Click a button below to insert extra values from form entries or your site "
4094
  "settings."
4095
  msgstr ""
4096
 
4097
- #: classes/views/shared/mb_adv_info.php:93
4098
  msgid "Helpers"
4099
  msgstr "Assistenti"
4100
 
4101
- #: classes/views/shared/mb_adv_info.php:137
4102
  msgid "Conditional text here"
4103
  msgstr "Testo condizionale qui"
4104
 
4105
- #: classes/views/shared/mb_adv_info.php:154
4106
  msgid "Click a button below to insert sample logic into your view"
4107
  msgstr ""
4108
  "Fai clic in uno dei campi qui sotto per inserire nella visualizzazione un "
4109
  "esempio di logica condizionale."
4110
 
4111
- #: classes/views/shared/mb_adv_info.php:174
4112
- msgid ""
4113
- "Customize the field values with the following parameters. Click to see a "
4114
- "sample."
4115
- msgstr ""
4116
-
4117
- #: classes/views/shared/mb_adv_info.php:193
4118
- msgid "Show image"
4119
- msgstr "Visualizza immagine"
4120
-
4121
- #: classes/views/shared/mb_adv_info.php:197
4122
- msgid "Image ID"
4123
- msgstr "ID immagine"
4124
-
4125
- #: classes/views/shared/mb_adv_info.php:201
4126
- msgid "Image Name"
4127
- msgstr "Nome immagine"
4128
-
4129
- #: classes/views/shared/mb_adv_info.php:212
4130
- msgid "Insert user information"
4131
- msgstr "Inserisci le informazioni dell'utente"
4132
-
4133
- #: classes/views/shared/mb_adv_info.php:231
4134
- msgid "Repeating field options"
4135
- msgstr "Opzioni campo ripetibile"
4136
-
4137
- #: classes/views/shared/mb_adv_info.php:234
4138
- msgid "For Each"
4139
- msgstr "Per ognuno"
4140
-
4141
- #: classes/views/shared/mb_adv_info.php:244
4142
- msgid "Dynamic field options"
4143
- msgstr "Campi opzioni dinamico "
4144
-
4145
- #: classes/views/shared/mb_adv_info.php:247
4146
- msgid "Creation Date"
4147
- msgstr "Data creazione"
4148
-
4149
- #: classes/views/shared/mb_adv_info.php:251
4150
- msgid "Field From Entry"
4151
- msgstr "Campo da voce"
4152
-
4153
  #: classes/views/styles/_buttons.php:4
4154
  msgid "Disable submit button styling"
4155
  msgstr "Disabilita lo stile del pulsante d'invio"
@@ -4521,7 +4532,7 @@ msgstr "Cancella Style"
4521
  msgid "Reset to Default"
4522
  msgstr "Ripristina predefiniti"
4523
 
4524
- #: classes/views/xml/import_form.php:12
4525
  msgid ""
4526
  "Upload your Formidable XML file to import forms into this site. If your "
4527
  "imported form key and creation date match a form on your site, that form "
@@ -4531,16 +4542,16 @@ msgstr ""
4531
  "la chiave del modulo importato e la data di creazione corrispondono a un "
4532
  "modulo sul tuo sito, questo verrà aggiornato."
4533
 
4534
- #: classes/views/xml/import_form.php:19
4535
  msgid "Choose a Formidable XML file"
4536
  msgstr "Scegli un file XML Formidable"
4537
 
4538
- #: classes/views/xml/import_form.php:20
4539
  #, php-format
4540
  msgid "Maximum size: %s"
4541
  msgstr "Dimensione massima: %s"
4542
 
4543
- #: classes/views/xml/import_form.php:28
4544
  msgid "Upload file and import"
4545
  msgstr "Carica file e importa"
4546
 
2
  msgstr ""
3
  "Project-Id-Version: Formidable v2.05.02\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-10-15 19:32+0000\n"
6
+ "PO-Revision-Date: 2018-10-15 19:34+0000\n"
7
  "Last-Translator: Formidable Community\n"
8
  "Language-Team: Italian\n"
9
  "Language: it_IT\n"
34
  msgid "There are no plugins on your site that require a license"
35
  msgstr "Non ci sono plugin nel tuo sito che richiedono una licenza"
36
 
37
+ #: classes/controllers/FrmAppController.php:83
38
  msgid "Build"
39
  msgstr "Crea"
40
 
41
+ #: classes/controllers/FrmAppController.php:90
42
  #: classes/helpers/FrmFormsListHelper.php:336
43
  #: classes/views/frm-forms/settings.php:10
44
  msgid "Settings"
45
  msgstr "Impostazioni"
46
 
47
+ #: classes/controllers/FrmAppController.php:97
48
  #: classes/controllers/FrmEntriesController.php:8
49
  #: classes/controllers/FrmEntriesController.php:8
50
  #: classes/controllers/FrmEntriesController.php:126
54
  msgid "Entries"
55
  msgstr "Voci"
56
 
57
+ #: classes/controllers/FrmAppController.php:113
58
  msgid "Build a Form"
59
  msgstr ""
60
 
61
+ #: classes/controllers/FrmAppController.php:146
62
  #, php-format
63
  msgid ""
64
  "This site has been previously authorized to run Formidable Forms. "
66
  "running the free version and remove this message."
67
  msgstr ""
68
 
69
+ #: classes/controllers/FrmAppController.php:505
70
  #, php-format
71
  msgid ""
72
  "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress."
106
  msgstr "Supporto"
107
 
108
  #: classes/controllers/FrmEntriesController.php:105
109
+ #: classes/controllers/FrmFormsController.php:877
110
  #: classes/views/frm-entries/form.php:43
111
  #: classes/views/frm-entries/sidebar-shared.php:38
112
  msgid "Entry Key"
164
  msgid "No entries were specified"
165
  msgstr "Non sono state specificate le voci"
166
 
167
+ #: classes/controllers/FrmFieldsController.php:304
168
  msgid "Other"
169
  msgstr "Altro"
170
 
171
+ #: classes/controllers/FrmFieldsController.php:307
172
  msgid "New Option"
173
  msgstr "Nuova opzione"
174
 
177
  msgid "Form Actions"
178
  msgstr "Azioni del modulo"
179
 
180
+ #: classes/controllers/FrmFormActionsController.php:213
181
  #: classes/models/FrmEntryValidate.php:14 classes/models/FrmSettings.php:100
182
  msgid "You do not have permission to do that"
183
  msgstr "Non hai il permesso di farlo"
199
  msgstr "Il modulo è stato aggiornato con successo"
200
 
201
  #: classes/controllers/FrmFormsController.php:232
202
+ #: classes/controllers/FrmFormsController.php:1712
203
  msgid "Form template was Successfully Created"
204
  msgstr "Il modello del modulo è stato creato con successo"
205
 
308
  msgid "That template cannot be edited"
309
  msgstr "Questo modello non può essere modificato"
310
 
311
+ #: classes/controllers/FrmFormsController.php:802
312
+ msgid ""
313
+ "Customize the field values with the following parameters. Click to see a "
314
+ "sample."
315
+ msgstr ""
316
+
317
+ #: classes/controllers/FrmFormsController.php:816
318
+ msgid "Insert user information"
319
+ msgstr "Inserisci le informazioni dell'utente"
320
+
321
+ #: classes/controllers/FrmFormsController.php:837
322
  msgid "Separator"
323
  msgstr "Separatore"
324
 
325
+ #: classes/controllers/FrmFormsController.php:838
326
  msgid "Use a different separator for checkbox fields"
327
  msgstr "Utilizzare un separatore diverso per i campi checkbox"
328
 
329
+ #: classes/controllers/FrmFormsController.php:840
330
  msgid "Date Format"
331
  msgstr "Formato data"
332
 
333
+ #: classes/controllers/FrmFormsController.php:841
334
  msgid "Field Label"
335
  msgstr "Campo etichetta"
336
 
337
+ #: classes/controllers/FrmFormsController.php:843
338
  msgid "No Auto P"
339
  msgstr "Nessun P automatico"
340
 
341
+ #: classes/controllers/FrmFormsController.php:844
342
  msgid "Do not automatically add any paragraphs or line breaks"
343
  msgstr "Non aggiungere automaticamente paragrafi o interruzioni di riga"
344
 
345
+ #: classes/controllers/FrmFormsController.php:858
346
+ #: classes/models/FrmField.php:58
347
+ msgid "User ID"
348
+ msgstr "ID utente"
349
+
350
+ #: classes/controllers/FrmFormsController.php:859
351
+ msgid "First Name"
352
+ msgstr ""
353
+
354
+ #: classes/controllers/FrmFormsController.php:860
355
+ msgid "Last Name"
356
+ msgstr ""
357
+
358
+ #: classes/controllers/FrmFormsController.php:861
359
+ msgid "Display Name"
360
+ msgstr ""
361
+
362
+ #: classes/controllers/FrmFormsController.php:862
363
+ msgid "User Login"
364
+ msgstr ""
365
+
366
+ #: classes/controllers/FrmFormsController.php:863
367
+ #: classes/models/FrmField.php:34
368
+ msgid "Email"
369
+ msgstr "Email"
370
+
371
+ #: classes/controllers/FrmFormsController.php:864
372
+ msgid "Avatar"
373
+ msgstr ""
374
+
375
+ #: classes/controllers/FrmFormsController.php:865
376
+ msgid "Author Link"
377
+ msgstr ""
378
+
379
+ #: classes/controllers/FrmFormsController.php:876
380
  #: classes/views/frm-entries/sidebar-shared.php:32
381
  msgid "Entry ID"
382
  msgstr "ID voce"
383
 
384
+ #: classes/controllers/FrmFormsController.php:878
385
  msgid "Post ID"
386
  msgstr "ID articolo"
387
 
388
+ #: classes/controllers/FrmFormsController.php:879
389
  msgid "User IP"
390
  msgstr "IP utente"
391
 
392
+ #: classes/controllers/FrmFormsController.php:880
393
  msgid "Entry created"
394
  msgstr "Voce creata"
395
 
396
+ #: classes/controllers/FrmFormsController.php:881
397
  msgid "Entry updated"
398
  msgstr "Voce aggiornata"
399
 
400
+ #: classes/controllers/FrmFormsController.php:883
401
  msgid "Site URL"
402
  msgstr "URL sito"
403
 
404
+ #: classes/controllers/FrmFormsController.php:884
405
  msgid "Site Name"
406
  msgstr "Nome sito"
407
 
408
+ #: classes/controllers/FrmFormsController.php:892
409
  msgid "Default Msg"
410
  msgstr "Msg predefinito"
411
 
412
+ #: classes/controllers/FrmFormsController.php:893
413
  msgid "Default HTML"
414
  msgstr "HTML predefinito"
415
 
416
+ #: classes/controllers/FrmFormsController.php:894
417
  msgid "Default Plain"
418
  msgstr "Testo semplice predefinito"
419
 
420
+ #: classes/controllers/FrmFormsController.php:982
421
  msgid "No forms were specified"
422
  msgstr "Non sono stati specificati moduli"
423
 
424
+ #: classes/controllers/FrmFormsController.php:1129
425
  msgid "Abnormal HTML characters prevented your form from saving correctly"
426
  msgstr ""
427
  "Caratteri HTML anomali hanno impedito al modulo di essere salvato "
428
  "correttamente"
429
 
430
+ #: classes/controllers/FrmFormsController.php:1244
431
+ #: classes/controllers/FrmFormsController.php:1258
432
  msgid "Please select a valid form"
433
  msgstr "Seleziona un modulo valido"
434
 
435
+ #: classes/controllers/FrmFormsController.php:1486
436
  msgid "Please wait while you are redirected."
437
  msgstr "Attendi di essere reindirizzato."
438
 
439
+ #: classes/controllers/FrmFormsController.php:1520
440
  #, php-format
441
  msgid "%1$sClick here%2$s if you are not automatically redirected."
442
  msgstr "%1$sFai clic qui%2$s se non vieni reindirizzato automaticamente."
2259
  msgid "Delete Permanently"
2260
  msgstr "Rimuovi definitivamente"
2261
 
2262
+ #: classes/helpers/FrmFormsHelper.php:835 classes/models/FrmFormAction.php:744
2263
+ #: classes/views/frm-form-actions/form_action.php:19
2264
  msgid "Delete"
2265
  msgstr "Elimina"
2266
 
2694
  msgstr[0] "%1$s modulo"
2695
  msgstr[1] "%1$s moduli"
2696
 
2697
+ #: classes/helpers/FrmXMLHelper.php:853 classes/models/FrmFormMigrator.php:388
2698
  #, php-format
2699
  msgid "%1$s Field"
2700
  msgid_plural "%1$s Fields"
2893
  msgid "Dropdown"
2894
  msgstr "Campo a discesa"
2895
 
 
 
 
 
2896
  #: classes/models/FrmField.php:38
2897
  msgid "Website/URL"
2898
  msgstr "Sito/URL"
2913
  msgid "Hidden Field"
2914
  msgstr "Campo nascosto"
2915
 
 
 
 
 
2916
  #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
2917
  msgid "reCAPTCHA"
2918
  msgstr "reCAPTCHA"
2999
  msgid "There are no options for this action."
3000
  msgstr "Non ci sono opzioni per questa azione"
3001
 
3002
+ #: classes/models/FrmFormAction.php:741
3003
  #: classes/views/frm-forms/_publish_box.php:30
3004
  msgid "Save Draft"
3005
  msgstr "Salva bozza"
3006
 
3007
+ #: classes/models/FrmFormAction.php:742
3008
  #: classes/views/frm-forms/add_field_links.php:7
3009
  #: classes/views/frm-forms/form.php:61
3010
  msgid "Create"
3011
  msgstr "Crea"
3012
 
3013
+ #: classes/models/FrmFormAction.php:743
3014
  #: classes/views/frm-forms/_publish_box.php:34
3015
  #: classes/views/frm-forms/_publish_box.php:38
3016
  #: classes/views/frm-forms/add_field_links.php:7
3019
  msgid "Update"
3020
  msgstr "Aggiorna"
3021
 
3022
+ #: classes/models/FrmFormAction.php:745 classes/views/xml/import_form.php:9
3023
  msgid "Import"
3024
  msgstr "Importa"
3025
 
3026
+ #: classes/models/FrmFormMigrator.php:137
3027
+ msgid "No form fields found."
3028
+ msgstr ""
3029
+
3030
+ #: classes/models/FrmFormMigrator.php:229
3031
+ msgid "There was an error while creating a new form."
3032
+ msgstr ""
3033
+
3034
+ #: classes/models/FrmFormMigrator.php:360
3035
+ msgid "Default Form"
3036
+ msgstr ""
3037
+
3038
  #: classes/models/FrmMigrate.php:485
3039
  msgid "Sending"
3040
  msgstr "Invio in corso"
3401
  msgid "Highrise"
3402
  msgstr "Highrise"
3403
 
3404
+ #: classes/views/frm-form-actions/form_action.php:17
3405
+ msgid "Duplicate"
3406
+ msgstr ""
3407
+
3408
  #: classes/views/frm-forms/_publish_box.php:44
3409
  msgid "Preview"
3410
  msgstr "Anteprima"
4127
  msgstr "Tag HTML"
4128
 
4129
  #: classes/views/shared/mb_adv_info.php:15
4130
+ #: classes/views/shared/mb_adv_info.php:87
4131
  msgid "IDs"
4132
  msgstr "ID"
4133
 
4134
  #: classes/views/shared/mb_adv_info.php:16
4135
+ #: classes/views/shared/mb_adv_info.php:88
4136
  msgid "Keys"
4137
  msgstr "Chiavi"
4138
 
4139
  #: classes/views/shared/mb_adv_info.php:18
4140
+ #: classes/views/shared/mb_adv_info.php:90
4141
  msgid "Fields from your form"
4142
  msgstr "Campi dal modulo"
4143
 
4144
+ #: classes/views/shared/mb_adv_info.php:53
4145
  msgid ""
4146
  "Click a button below to insert extra values from form entries or your site "
4147
  "settings."
4148
  msgstr ""
4149
 
4150
+ #: classes/views/shared/mb_adv_info.php:56
4151
  msgid "Helpers"
4152
  msgstr "Assistenti"
4153
 
4154
+ #: classes/views/shared/mb_adv_info.php:100
4155
  msgid "Conditional text here"
4156
  msgstr "Testo condizionale qui"
4157
 
4158
+ #: classes/views/shared/mb_adv_info.php:115
4159
  msgid "Click a button below to insert sample logic into your view"
4160
  msgstr ""
4161
  "Fai clic in uno dei campi qui sotto per inserire nella visualizzazione un "
4162
  "esempio di logica condizionale."
4163
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4164
  #: classes/views/styles/_buttons.php:4
4165
  msgid "Disable submit button styling"
4166
  msgstr "Disabilita lo stile del pulsante d'invio"
4532
  msgid "Reset to Default"
4533
  msgstr "Ripristina predefiniti"
4534
 
4535
+ #: classes/views/xml/import_form.php:11
4536
  msgid ""
4537
  "Upload your Formidable XML file to import forms into this site. If your "
4538
  "imported form key and creation date match a form on your site, that form "
4542
  "la chiave del modulo importato e la data di creazione corrispondono a un "
4543
  "modulo sul tuo sito, questo verrà aggiornato."
4544
 
4545
+ #: classes/views/xml/import_form.php:18
4546
  msgid "Choose a Formidable XML file"
4547
  msgstr "Scegli un file XML Formidable"
4548
 
4549
+ #: classes/views/xml/import_form.php:19
4550
  #, php-format
4551
  msgid "Maximum size: %s"
4552
  msgstr "Dimensione massima: %s"
4553
 
4554
+ #: classes/views/xml/import_form.php:27
4555
  msgid "Upload file and import"
4556
  msgstr "Carica file e importa"
4557
 
languages/formidable-ja.mo CHANGED
Binary file
languages/formidable-ja.po CHANGED
@@ -1,6 +1,6 @@
1
  msgid ""
2
  msgstr ""
3
- "PO-Revision-Date: 2018-09-12 16:45+0000\n"
4
  "MIME-Version: 1.0\n"
5
  "Content-Type: text/plain; charset=UTF-8\n"
6
  "Content-Transfer-Encoding: 8bit\n"
@@ -9,7 +9,7 @@ msgstr ""
9
  "Language: ja\n"
10
  "Project-Id-Version: Formidable Forms\n"
11
  "Report-Msgid-Bugs-To: \n"
12
- "POT-Creation-Date: 2018-09-12 16:44+0000\n"
13
  "Last-Translator: Formidable Community\n"
14
  "Language-Team: Japanese"
15
 
@@ -25,17 +25,17 @@ msgstr "Proへアップグレード"
25
  msgid "There are no plugins on your site that require a license"
26
  msgstr ""
27
 
28
- #: classes/controllers/FrmAppController.php:91
29
  msgid "Build"
30
  msgstr ""
31
 
32
- #: classes/controllers/FrmAppController.php:98
33
  #: classes/helpers/FrmFormsListHelper.php:336
34
  #: classes/views/frm-forms/settings.php:10
35
  msgid "Settings"
36
  msgstr "設定"
37
 
38
- #: classes/controllers/FrmAppController.php:105
39
  #: classes/controllers/FrmEntriesController.php:8
40
  #: classes/controllers/FrmEntriesController.php:8
41
  #: classes/controllers/FrmEntriesController.php:126
@@ -45,11 +45,11 @@ msgstr "設定"
45
  msgid "Entries"
46
  msgstr "投稿"
47
 
48
- #: classes/controllers/FrmAppController.php:121
49
  msgid "Build a Form"
50
  msgstr ""
51
 
52
- #: classes/controllers/FrmAppController.php:154
53
  #, php-format
54
  msgid ""
55
  "This site has been previously authorized to run Formidable Forms. "
@@ -57,7 +57,7 @@ msgid ""
57
  "running the free version and remove this message."
58
  msgstr ""
59
 
60
- #: classes/controllers/FrmAppController.php:513
61
  #, php-format
62
  msgid ""
63
  "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress."
@@ -93,7 +93,7 @@ msgid "Support"
93
  msgstr "作者を応援 "
94
 
95
  #: classes/controllers/FrmEntriesController.php:105
96
- #: classes/controllers/FrmFormsController.php:827
97
  #: classes/views/frm-entries/form.php:43
98
  #: classes/views/frm-entries/sidebar-shared.php:38
99
  msgid "Entry Key"
@@ -149,11 +149,11 @@ msgstr ""
149
  msgid "No entries were specified"
150
  msgstr ""
151
 
152
- #: classes/controllers/FrmFieldsController.php:302
153
  msgid "Other"
154
  msgstr "その他"
155
 
156
- #: classes/controllers/FrmFieldsController.php:305
157
  msgid "New Option"
158
  msgstr ""
159
 
@@ -162,7 +162,7 @@ msgstr ""
162
  msgid "Form Actions"
163
  msgstr ""
164
 
165
- #: classes/controllers/FrmFormActionsController.php:210
166
  #: classes/models/FrmEntryValidate.php:14 classes/models/FrmSettings.php:100
167
  msgid "You do not have permission to do that"
168
  msgstr ""
@@ -184,7 +184,7 @@ msgid "Form was Successfully Updated"
184
  msgstr ""
185
 
186
  #: classes/controllers/FrmFormsController.php:232
187
- #: classes/controllers/FrmFormsController.php:1662
188
  msgid "Form template was Successfully Created"
189
  msgstr ""
190
 
@@ -293,89 +293,133 @@ msgstr "テンプレートは正常に更新されました"
293
  msgid "That template cannot be edited"
294
  msgstr ""
295
 
296
- #: classes/controllers/FrmFormsController.php:804
 
 
 
 
 
 
 
 
 
 
297
  msgid "Separator"
298
  msgstr ""
299
 
300
- #: classes/controllers/FrmFormsController.php:805
301
  msgid "Use a different separator for checkbox fields"
302
  msgstr ""
303
 
304
- #: classes/controllers/FrmFormsController.php:807
305
  msgid "Date Format"
306
  msgstr "日付フォーマット"
307
 
308
- #: classes/controllers/FrmFormsController.php:808
309
  msgid "Field Label"
310
  msgstr "フィールドラベル"
311
 
312
- #: classes/controllers/FrmFormsController.php:810
313
  msgid "No Auto P"
314
  msgstr ""
315
 
316
- #: classes/controllers/FrmFormsController.php:811
317
  msgid "Do not automatically add any paragraphs or line breaks"
318
  msgstr ""
319
 
320
- #: classes/controllers/FrmFormsController.php:826
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
321
  #: classes/views/frm-entries/sidebar-shared.php:32
322
  msgid "Entry ID"
323
  msgstr ""
324
 
325
- #: classes/controllers/FrmFormsController.php:828
326
  msgid "Post ID"
327
  msgstr "投稿 ID"
328
 
329
- #: classes/controllers/FrmFormsController.php:829
330
  msgid "User IP"
331
  msgstr "ユーザー IP"
332
 
333
- #: classes/controllers/FrmFormsController.php:830
334
  msgid "Entry created"
335
  msgstr ""
336
 
337
- #: classes/controllers/FrmFormsController.php:831
338
  msgid "Entry updated"
339
  msgstr ""
340
 
341
- #: classes/controllers/FrmFormsController.php:833
342
  msgid "Site URL"
343
  msgstr "サイトURL"
344
 
345
- #: classes/controllers/FrmFormsController.php:834
346
  msgid "Site Name"
347
  msgstr "サイト名"
348
 
349
- #: classes/controllers/FrmFormsController.php:842
350
  msgid "Default Msg"
351
  msgstr ""
352
 
353
- #: classes/controllers/FrmFormsController.php:843
354
  msgid "Default HTML"
355
  msgstr "デフォルト HTML"
356
 
357
- #: classes/controllers/FrmFormsController.php:844
358
  msgid "Default Plain"
359
  msgstr ""
360
 
361
- #: classes/controllers/FrmFormsController.php:932
362
  msgid "No forms were specified"
363
  msgstr ""
364
 
365
- #: classes/controllers/FrmFormsController.php:1079
366
  msgid "Abnormal HTML characters prevented your form from saving correctly"
367
  msgstr ""
368
 
369
- #: classes/controllers/FrmFormsController.php:1194
370
- #: classes/controllers/FrmFormsController.php:1208
371
  msgid "Please select a valid form"
372
  msgstr ""
373
 
374
- #: classes/controllers/FrmFormsController.php:1436
375
  msgid "Please wait while you are redirected."
376
  msgstr ""
377
 
378
- #: classes/controllers/FrmFormsController.php:1470
379
  #, php-format
380
  msgid "%1$sClick here%2$s if you are not automatically redirected."
381
  msgstr ""
@@ -2171,7 +2215,8 @@ msgstr "ゴミ箱"
2171
  msgid "Delete Permanently"
2172
  msgstr "完全に削除"
2173
 
2174
- #: classes/helpers/FrmFormsHelper.php:835 classes/models/FrmFormAction.php:703
 
2175
  msgid "Delete"
2176
  msgstr "削除"
2177
 
@@ -2587,7 +2632,7 @@ msgid_plural "%1$s Forms"
2587
  msgstr[0] ""
2588
  msgstr[1] ""
2589
 
2590
- #: classes/helpers/FrmXMLHelper.php:853
2591
  #, php-format
2592
  msgid "%1$s Field"
2593
  msgid_plural "%1$s Fields"
@@ -2784,10 +2829,6 @@ msgstr ""
2784
  msgid "Dropdown"
2785
  msgstr "ドロップダウンリスト"
2786
 
2787
- #: classes/models/FrmField.php:34
2788
- msgid "Email"
2789
- msgstr "Email フィールド"
2790
-
2791
  #: classes/models/FrmField.php:38
2792
  msgid "Website/URL"
2793
  msgstr "サイト/URL"
@@ -2808,10 +2849,6 @@ msgstr "HTML"
2808
  msgid "Hidden Field"
2809
  msgstr "非表示フィールド"
2810
 
2811
- #: classes/models/FrmField.php:58
2812
- msgid "User ID"
2813
- msgstr ""
2814
-
2815
  #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
2816
  msgid "reCAPTCHA"
2817
  msgstr "reCAPTCHA"
@@ -2898,18 +2935,18 @@ msgstr ""
2898
  msgid "There are no options for this action."
2899
  msgstr ""
2900
 
2901
- #: classes/models/FrmFormAction.php:700
2902
  #: classes/views/frm-forms/_publish_box.php:30
2903
  msgid "Save Draft"
2904
  msgstr "下書きを保存"
2905
 
2906
- #: classes/models/FrmFormAction.php:701
2907
  #: classes/views/frm-forms/add_field_links.php:7
2908
  #: classes/views/frm-forms/form.php:61
2909
  msgid "Create"
2910
  msgstr "作成"
2911
 
2912
- #: classes/models/FrmFormAction.php:702
2913
  #: classes/views/frm-forms/_publish_box.php:34
2914
  #: classes/views/frm-forms/_publish_box.php:38
2915
  #: classes/views/frm-forms/add_field_links.php:7
@@ -2918,10 +2955,22 @@ msgstr "作成"
2918
  msgid "Update"
2919
  msgstr "更新"
2920
 
2921
- #: classes/models/FrmFormAction.php:704 classes/views/xml/import_form.php:10
2922
  msgid "Import"
2923
  msgstr "インポート"
2924
 
 
 
 
 
 
 
 
 
 
 
 
 
2925
  #: classes/models/FrmMigrate.php:485
2926
  msgid "Sending"
2927
  msgstr ""
@@ -3283,6 +3332,10 @@ msgstr "Twilio"
3283
  msgid "Highrise"
3284
  msgstr "Highrise"
3285
 
 
 
 
 
3286
  #: classes/views/frm-forms/_publish_box.php:44
3287
  msgid "Preview"
3288
  msgstr "プレビュー"
@@ -3966,80 +4019,38 @@ msgid "HTML Tags"
3966
  msgstr "HTML タグ"
3967
 
3968
  #: classes/views/shared/mb_adv_info.php:15
3969
- #: classes/views/shared/mb_adv_info.php:124
3970
  msgid "IDs"
3971
  msgstr ""
3972
 
3973
  #: classes/views/shared/mb_adv_info.php:16
3974
- #: classes/views/shared/mb_adv_info.php:125
3975
  msgid "Keys"
3976
  msgstr "キー"
3977
 
3978
  #: classes/views/shared/mb_adv_info.php:18
3979
- #: classes/views/shared/mb_adv_info.php:127
3980
  msgid "Fields from your form"
3981
  msgstr ""
3982
 
3983
- #: classes/views/shared/mb_adv_info.php:90
3984
  msgid ""
3985
  "Click a button below to insert extra values from form entries or your site "
3986
  "settings."
3987
  msgstr ""
3988
 
3989
- #: classes/views/shared/mb_adv_info.php:93
3990
  msgid "Helpers"
3991
  msgstr ""
3992
 
3993
- #: classes/views/shared/mb_adv_info.php:137
3994
  msgid "Conditional text here"
3995
  msgstr ""
3996
 
3997
- #: classes/views/shared/mb_adv_info.php:154
3998
  msgid "Click a button below to insert sample logic into your view"
3999
  msgstr ""
4000
 
4001
- #: classes/views/shared/mb_adv_info.php:174
4002
- msgid ""
4003
- "Customize the field values with the following parameters. Click to see a "
4004
- "sample."
4005
- msgstr ""
4006
-
4007
- #: classes/views/shared/mb_adv_info.php:193
4008
- msgid "Show image"
4009
- msgstr ""
4010
-
4011
- #: classes/views/shared/mb_adv_info.php:197
4012
- msgid "Image ID"
4013
- msgstr "画像 ID"
4014
-
4015
- #: classes/views/shared/mb_adv_info.php:201
4016
- msgid "Image Name"
4017
- msgstr "画像名"
4018
-
4019
- #: classes/views/shared/mb_adv_info.php:212
4020
- msgid "Insert user information"
4021
- msgstr ""
4022
-
4023
- #: classes/views/shared/mb_adv_info.php:231
4024
- msgid "Repeating field options"
4025
- msgstr ""
4026
-
4027
- #: classes/views/shared/mb_adv_info.php:234
4028
- msgid "For Each"
4029
- msgstr ""
4030
-
4031
- #: classes/views/shared/mb_adv_info.php:244
4032
- msgid "Dynamic field options"
4033
- msgstr ""
4034
-
4035
- #: classes/views/shared/mb_adv_info.php:247
4036
- msgid "Creation Date"
4037
- msgstr ""
4038
-
4039
- #: classes/views/shared/mb_adv_info.php:251
4040
- msgid "Field From Entry"
4041
- msgstr ""
4042
-
4043
  #: classes/views/styles/_buttons.php:4
4044
  msgid "Disable submit button styling"
4045
  msgstr ""
@@ -4404,23 +4415,23 @@ msgstr "スタイルを削除"
4404
  msgid "Reset to Default"
4405
  msgstr ""
4406
 
4407
- #: classes/views/xml/import_form.php:12
4408
  msgid ""
4409
  "Upload your Formidable XML file to import forms into this site. If your "
4410
  "imported form key and creation date match a form on your site, that form "
4411
  "will be updated."
4412
  msgstr ""
4413
 
4414
- #: classes/views/xml/import_form.php:19
4415
  msgid "Choose a Formidable XML file"
4416
  msgstr ""
4417
 
4418
- #: classes/views/xml/import_form.php:20
4419
  #, php-format
4420
  msgid "Maximum size: %s"
4421
  msgstr "最大サイズ: %s"
4422
 
4423
- #: classes/views/xml/import_form.php:28
4424
  msgid "Upload file and import"
4425
  msgstr "ファイルをアップロードしてインポート"
4426
 
1
  msgid ""
2
  msgstr ""
3
+ "PO-Revision-Date: 2018-10-15 19:34+0000\n"
4
  "MIME-Version: 1.0\n"
5
  "Content-Type: text/plain; charset=UTF-8\n"
6
  "Content-Transfer-Encoding: 8bit\n"
9
  "Language: ja\n"
10
  "Project-Id-Version: Formidable Forms\n"
11
  "Report-Msgid-Bugs-To: \n"
12
+ "POT-Creation-Date: 2018-10-15 19:32+0000\n"
13
  "Last-Translator: Formidable Community\n"
14
  "Language-Team: Japanese"
15
 
25
  msgid "There are no plugins on your site that require a license"
26
  msgstr ""
27
 
28
+ #: classes/controllers/FrmAppController.php:83
29
  msgid "Build"
30
  msgstr ""
31
 
32
+ #: classes/controllers/FrmAppController.php:90
33
  #: classes/helpers/FrmFormsListHelper.php:336
34
  #: classes/views/frm-forms/settings.php:10
35
  msgid "Settings"
36
  msgstr "設定"
37
 
38
+ #: classes/controllers/FrmAppController.php:97
39
  #: classes/controllers/FrmEntriesController.php:8
40
  #: classes/controllers/FrmEntriesController.php:8
41
  #: classes/controllers/FrmEntriesController.php:126
45
  msgid "Entries"
46
  msgstr "投稿"
47
 
48
+ #: classes/controllers/FrmAppController.php:113
49
  msgid "Build a Form"
50
  msgstr ""
51
 
52
+ #: classes/controllers/FrmAppController.php:146
53
  #, php-format
54
  msgid ""
55
  "This site has been previously authorized to run Formidable Forms. "
57
  "running the free version and remove this message."
58
  msgstr ""
59
 
60
+ #: classes/controllers/FrmAppController.php:505
61
  #, php-format
62
  msgid ""
63
  "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress."
93
  msgstr "作者を応援 "
94
 
95
  #: classes/controllers/FrmEntriesController.php:105
96
+ #: classes/controllers/FrmFormsController.php:877
97
  #: classes/views/frm-entries/form.php:43
98
  #: classes/views/frm-entries/sidebar-shared.php:38
99
  msgid "Entry Key"
149
  msgid "No entries were specified"
150
  msgstr ""
151
 
152
+ #: classes/controllers/FrmFieldsController.php:304
153
  msgid "Other"
154
  msgstr "その他"
155
 
156
+ #: classes/controllers/FrmFieldsController.php:307
157
  msgid "New Option"
158
  msgstr ""
159
 
162
  msgid "Form Actions"
163
  msgstr ""
164
 
165
+ #: classes/controllers/FrmFormActionsController.php:213
166
  #: classes/models/FrmEntryValidate.php:14 classes/models/FrmSettings.php:100
167
  msgid "You do not have permission to do that"
168
  msgstr ""
184
  msgstr ""
185
 
186
  #: classes/controllers/FrmFormsController.php:232
187
+ #: classes/controllers/FrmFormsController.php:1712
188
  msgid "Form template was Successfully Created"
189
  msgstr ""
190
 
293
  msgid "That template cannot be edited"
294
  msgstr ""
295
 
296
+ #: classes/controllers/FrmFormsController.php:802
297
+ msgid ""
298
+ "Customize the field values with the following parameters. Click to see a "
299
+ "sample."
300
+ msgstr ""
301
+
302
+ #: classes/controllers/FrmFormsController.php:816
303
+ msgid "Insert user information"
304
+ msgstr ""
305
+
306
+ #: classes/controllers/FrmFormsController.php:837
307
  msgid "Separator"
308
  msgstr ""
309
 
310
+ #: classes/controllers/FrmFormsController.php:838
311
  msgid "Use a different separator for checkbox fields"
312
  msgstr ""
313
 
314
+ #: classes/controllers/FrmFormsController.php:840
315
  msgid "Date Format"
316
  msgstr "日付フォーマット"
317
 
318
+ #: classes/controllers/FrmFormsController.php:841
319
  msgid "Field Label"
320
  msgstr "フィールドラベル"
321
 
322
+ #: classes/controllers/FrmFormsController.php:843
323
  msgid "No Auto P"
324
  msgstr ""
325
 
326
+ #: classes/controllers/FrmFormsController.php:844
327
  msgid "Do not automatically add any paragraphs or line breaks"
328
  msgstr ""
329
 
330
+ #: classes/controllers/FrmFormsController.php:858
331
+ #: classes/models/FrmField.php:58
332
+ msgid "User ID"
333
+ msgstr ""
334
+
335
+ #: classes/controllers/FrmFormsController.php:859
336
+ msgid "First Name"
337
+ msgstr ""
338
+
339
+ #: classes/controllers/FrmFormsController.php:860
340
+ msgid "Last Name"
341
+ msgstr ""
342
+
343
+ #: classes/controllers/FrmFormsController.php:861
344
+ msgid "Display Name"
345
+ msgstr ""
346
+
347
+ #: classes/controllers/FrmFormsController.php:862
348
+ msgid "User Login"
349
+ msgstr ""
350
+
351
+ #: classes/controllers/FrmFormsController.php:863
352
+ #: classes/models/FrmField.php:34
353
+ msgid "Email"
354
+ msgstr "Email フィールド"
355
+
356
+ #: classes/controllers/FrmFormsController.php:864
357
+ msgid "Avatar"
358
+ msgstr ""
359
+
360
+ #: classes/controllers/FrmFormsController.php:865
361
+ msgid "Author Link"
362
+ msgstr ""
363
+
364
+ #: classes/controllers/FrmFormsController.php:876
365
  #: classes/views/frm-entries/sidebar-shared.php:32
366
  msgid "Entry ID"
367
  msgstr ""
368
 
369
+ #: classes/controllers/FrmFormsController.php:878
370
  msgid "Post ID"
371
  msgstr "投稿 ID"
372
 
373
+ #: classes/controllers/FrmFormsController.php:879
374
  msgid "User IP"
375
  msgstr "ユーザー IP"
376
 
377
+ #: classes/controllers/FrmFormsController.php:880
378
  msgid "Entry created"
379
  msgstr ""
380
 
381
+ #: classes/controllers/FrmFormsController.php:881
382
  msgid "Entry updated"
383
  msgstr ""
384
 
385
+ #: classes/controllers/FrmFormsController.php:883
386
  msgid "Site URL"
387
  msgstr "サイトURL"
388
 
389
+ #: classes/controllers/FrmFormsController.php:884
390
  msgid "Site Name"
391
  msgstr "サイト名"
392
 
393
+ #: classes/controllers/FrmFormsController.php:892
394
  msgid "Default Msg"
395
  msgstr ""
396
 
397
+ #: classes/controllers/FrmFormsController.php:893
398
  msgid "Default HTML"
399
  msgstr "デフォルト HTML"
400
 
401
+ #: classes/controllers/FrmFormsController.php:894
402
  msgid "Default Plain"
403
  msgstr ""
404
 
405
+ #: classes/controllers/FrmFormsController.php:982
406
  msgid "No forms were specified"
407
  msgstr ""
408
 
409
+ #: classes/controllers/FrmFormsController.php:1129
410
  msgid "Abnormal HTML characters prevented your form from saving correctly"
411
  msgstr ""
412
 
413
+ #: classes/controllers/FrmFormsController.php:1244
414
+ #: classes/controllers/FrmFormsController.php:1258
415
  msgid "Please select a valid form"
416
  msgstr ""
417
 
418
+ #: classes/controllers/FrmFormsController.php:1486
419
  msgid "Please wait while you are redirected."
420
  msgstr ""
421
 
422
+ #: classes/controllers/FrmFormsController.php:1520
423
  #, php-format
424
  msgid "%1$sClick here%2$s if you are not automatically redirected."
425
  msgstr ""
2215
  msgid "Delete Permanently"
2216
  msgstr "完全に削除"
2217
 
2218
+ #: classes/helpers/FrmFormsHelper.php:835 classes/models/FrmFormAction.php:744
2219
+ #: classes/views/frm-form-actions/form_action.php:19
2220
  msgid "Delete"
2221
  msgstr "削除"
2222
 
2632
  msgstr[0] ""
2633
  msgstr[1] ""
2634
 
2635
+ #: classes/helpers/FrmXMLHelper.php:853 classes/models/FrmFormMigrator.php:388
2636
  #, php-format
2637
  msgid "%1$s Field"
2638
  msgid_plural "%1$s Fields"
2829
  msgid "Dropdown"
2830
  msgstr "ドロップダウンリスト"
2831
 
 
 
 
 
2832
  #: classes/models/FrmField.php:38
2833
  msgid "Website/URL"
2834
  msgstr "サイト/URL"
2849
  msgid "Hidden Field"
2850
  msgstr "非表示フィールド"
2851
 
 
 
 
 
2852
  #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
2853
  msgid "reCAPTCHA"
2854
  msgstr "reCAPTCHA"
2935
  msgid "There are no options for this action."
2936
  msgstr ""
2937
 
2938
+ #: classes/models/FrmFormAction.php:741
2939
  #: classes/views/frm-forms/_publish_box.php:30
2940
  msgid "Save Draft"
2941
  msgstr "下書きを保存"
2942
 
2943
+ #: classes/models/FrmFormAction.php:742
2944
  #: classes/views/frm-forms/add_field_links.php:7
2945
  #: classes/views/frm-forms/form.php:61
2946
  msgid "Create"
2947
  msgstr "作成"
2948
 
2949
+ #: classes/models/FrmFormAction.php:743
2950
  #: classes/views/frm-forms/_publish_box.php:34
2951
  #: classes/views/frm-forms/_publish_box.php:38
2952
  #: classes/views/frm-forms/add_field_links.php:7
2955
  msgid "Update"
2956
  msgstr "更新"
2957
 
2958
+ #: classes/models/FrmFormAction.php:745 classes/views/xml/import_form.php:9
2959
  msgid "Import"
2960
  msgstr "インポート"
2961
 
2962
+ #: classes/models/FrmFormMigrator.php:137
2963
+ msgid "No form fields found."
2964
+ msgstr ""
2965
+
2966
+ #: classes/models/FrmFormMigrator.php:229
2967
+ msgid "There was an error while creating a new form."
2968
+ msgstr ""
2969
+
2970
+ #: classes/models/FrmFormMigrator.php:360
2971
+ msgid "Default Form"
2972
+ msgstr ""
2973
+
2974
  #: classes/models/FrmMigrate.php:485
2975
  msgid "Sending"
2976
  msgstr ""
3332
  msgid "Highrise"
3333
  msgstr "Highrise"
3334
 
3335
+ #: classes/views/frm-form-actions/form_action.php:17
3336
+ msgid "Duplicate"
3337
+ msgstr ""
3338
+
3339
  #: classes/views/frm-forms/_publish_box.php:44
3340
  msgid "Preview"
3341
  msgstr "プレビュー"
4019
  msgstr "HTML タグ"
4020
 
4021
  #: classes/views/shared/mb_adv_info.php:15
4022
+ #: classes/views/shared/mb_adv_info.php:87
4023
  msgid "IDs"
4024
  msgstr ""
4025
 
4026
  #: classes/views/shared/mb_adv_info.php:16
4027
+ #: classes/views/shared/mb_adv_info.php:88
4028
  msgid "Keys"
4029
  msgstr "キー"
4030
 
4031
  #: classes/views/shared/mb_adv_info.php:18
4032
+ #: classes/views/shared/mb_adv_info.php:90
4033
  msgid "Fields from your form"
4034
  msgstr ""
4035
 
4036
+ #: classes/views/shared/mb_adv_info.php:53
4037
  msgid ""
4038
  "Click a button below to insert extra values from form entries or your site "
4039
  "settings."
4040
  msgstr ""
4041
 
4042
+ #: classes/views/shared/mb_adv_info.php:56
4043
  msgid "Helpers"
4044
  msgstr ""
4045
 
4046
+ #: classes/views/shared/mb_adv_info.php:100
4047
  msgid "Conditional text here"
4048
  msgstr ""
4049
 
4050
+ #: classes/views/shared/mb_adv_info.php:115
4051
  msgid "Click a button below to insert sample logic into your view"
4052
  msgstr ""
4053
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4054
  #: classes/views/styles/_buttons.php:4
4055
  msgid "Disable submit button styling"
4056
  msgstr ""
4415
  msgid "Reset to Default"
4416
  msgstr ""
4417
 
4418
+ #: classes/views/xml/import_form.php:11
4419
  msgid ""
4420
  "Upload your Formidable XML file to import forms into this site. If your "
4421
  "imported form key and creation date match a form on your site, that form "
4422
  "will be updated."
4423
  msgstr ""
4424
 
4425
+ #: classes/views/xml/import_form.php:18
4426
  msgid "Choose a Formidable XML file"
4427
  msgstr ""
4428
 
4429
+ #: classes/views/xml/import_form.php:19
4430
  #, php-format
4431
  msgid "Maximum size: %s"
4432
  msgstr "最大サイズ: %s"
4433
 
4434
+ #: classes/views/xml/import_form.php:27
4435
  msgid "Upload file and import"
4436
  msgstr "ファイルをアップロードしてインポート"
4437
 
languages/formidable-nb_NO.mo CHANGED
Binary file
languages/formidable-nb_NO.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Formidable v2.05.02\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-09-12 16:44+0000\n"
6
- "PO-Revision-Date: 2018-09-12 16:46+0000\n"
7
  "Last-Translator: Formidable Community\n"
8
  "Language-Team: Norwegian (Bokmål)\n"
9
  "Language: nb_NO\n"
@@ -34,17 +34,17 @@ msgstr "Oppgrader til Pro"
34
  msgid "There are no plugins on your site that require a license"
35
  msgstr "Det er ingen plugins på siden som krever en lisens"
36
 
37
- #: classes/controllers/FrmAppController.php:91
38
  msgid "Build"
39
  msgstr ""
40
 
41
- #: classes/controllers/FrmAppController.php:98
42
  #: classes/helpers/FrmFormsListHelper.php:336
43
  #: classes/views/frm-forms/settings.php:10
44
  msgid "Settings"
45
  msgstr "Innstillinger"
46
 
47
- #: classes/controllers/FrmAppController.php:105
48
  #: classes/controllers/FrmEntriesController.php:8
49
  #: classes/controllers/FrmEntriesController.php:8
50
  #: classes/controllers/FrmEntriesController.php:126
@@ -54,11 +54,11 @@ msgstr "Innstillinger"
54
  msgid "Entries"
55
  msgstr "Innsendinger"
56
 
57
- #: classes/controllers/FrmAppController.php:121
58
  msgid "Build a Form"
59
  msgstr ""
60
 
61
- #: classes/controllers/FrmAppController.php:154
62
  #, php-format
63
  msgid ""
64
  "This site has been previously authorized to run Formidable Forms. "
@@ -66,7 +66,7 @@ msgid ""
66
  "running the free version and remove this message."
67
  msgstr ""
68
 
69
- #: classes/controllers/FrmAppController.php:513
70
  #, php-format
71
  msgid ""
72
  "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress."
@@ -102,7 +102,7 @@ msgid "Support"
102
  msgstr "Støtte"
103
 
104
  #: classes/controllers/FrmEntriesController.php:105
105
- #: classes/controllers/FrmFormsController.php:827
106
  #: classes/views/frm-entries/form.php:43
107
  #: classes/views/frm-entries/sidebar-shared.php:38
108
  msgid "Entry Key"
@@ -158,11 +158,11 @@ msgstr ""
158
  msgid "No entries were specified"
159
  msgstr "Ingen innsending er valgt"
160
 
161
- #: classes/controllers/FrmFieldsController.php:302
162
  msgid "Other"
163
  msgstr ""
164
 
165
- #: classes/controllers/FrmFieldsController.php:305
166
  msgid "New Option"
167
  msgstr "Nytt Valg"
168
 
@@ -171,7 +171,7 @@ msgstr "Nytt Valg"
171
  msgid "Form Actions"
172
  msgstr ""
173
 
174
- #: classes/controllers/FrmFormActionsController.php:210
175
  #: classes/models/FrmEntryValidate.php:14 classes/models/FrmSettings.php:100
176
  msgid "You do not have permission to do that"
177
  msgstr "Du har ikke rettigheter til å gjøre det"
@@ -193,7 +193,7 @@ msgid "Form was Successfully Updated"
193
  msgstr "Skjemaet ble oppdatert"
194
 
195
  #: classes/controllers/FrmFormsController.php:232
196
- #: classes/controllers/FrmFormsController.php:1662
197
  msgid "Form template was Successfully Created"
198
  msgstr "Skjematemplate ble opprettet"
199
 
@@ -302,89 +302,133 @@ msgstr ""
302
  msgid "That template cannot be edited"
303
  msgstr "Templaten kan ikke endres"
304
 
305
- #: classes/controllers/FrmFormsController.php:804
 
 
 
 
 
 
 
 
 
 
306
  msgid "Separator"
307
  msgstr ""
308
 
309
- #: classes/controllers/FrmFormsController.php:805
310
  msgid "Use a different separator for checkbox fields"
311
  msgstr "Bruk en annen separator for checkbox felter"
312
 
313
- #: classes/controllers/FrmFormsController.php:807
314
  msgid "Date Format"
315
  msgstr ""
316
 
317
- #: classes/controllers/FrmFormsController.php:808
318
  msgid "Field Label"
319
  msgstr ""
320
 
321
- #: classes/controllers/FrmFormsController.php:810
322
  msgid "No Auto P"
323
  msgstr ""
324
 
325
- #: classes/controllers/FrmFormsController.php:811
326
  msgid "Do not automatically add any paragraphs or line breaks"
327
  msgstr ""
328
 
329
- #: classes/controllers/FrmFormsController.php:826
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
330
  #: classes/views/frm-entries/sidebar-shared.php:32
331
  msgid "Entry ID"
332
  msgstr "ElementID"
333
 
334
- #: classes/controllers/FrmFormsController.php:828
335
  msgid "Post ID"
336
  msgstr "InnleggsID"
337
 
338
- #: classes/controllers/FrmFormsController.php:829
339
  msgid "User IP"
340
  msgstr ""
341
 
342
- #: classes/controllers/FrmFormsController.php:830
343
  msgid "Entry created"
344
  msgstr ""
345
 
346
- #: classes/controllers/FrmFormsController.php:831
347
  msgid "Entry updated"
348
  msgstr ""
349
 
350
- #: classes/controllers/FrmFormsController.php:833
351
  msgid "Site URL"
352
  msgstr "Nettsteds-URL"
353
 
354
- #: classes/controllers/FrmFormsController.php:834
355
  msgid "Site Name"
356
  msgstr "Sidenavn"
357
 
358
- #: classes/controllers/FrmFormsController.php:842
359
  msgid "Default Msg"
360
  msgstr ""
361
 
362
- #: classes/controllers/FrmFormsController.php:843
363
  msgid "Default HTML"
364
  msgstr ""
365
 
366
- #: classes/controllers/FrmFormsController.php:844
367
  msgid "Default Plain"
368
  msgstr ""
369
 
370
- #: classes/controllers/FrmFormsController.php:932
371
  msgid "No forms were specified"
372
  msgstr ""
373
 
374
- #: classes/controllers/FrmFormsController.php:1079
375
  msgid "Abnormal HTML characters prevented your form from saving correctly"
376
  msgstr ""
377
 
378
- #: classes/controllers/FrmFormsController.php:1194
379
- #: classes/controllers/FrmFormsController.php:1208
380
  msgid "Please select a valid form"
381
  msgstr "Vennligst velg et gyldig skjema"
382
 
383
- #: classes/controllers/FrmFormsController.php:1436
384
  msgid "Please wait while you are redirected."
385
  msgstr ""
386
 
387
- #: classes/controllers/FrmFormsController.php:1470
388
  #, php-format
389
  msgid "%1$sClick here%2$s if you are not automatically redirected."
390
  msgstr ""
@@ -2192,7 +2236,8 @@ msgstr "Papirkurv"
2192
  msgid "Delete Permanently"
2193
  msgstr ""
2194
 
2195
- #: classes/helpers/FrmFormsHelper.php:835 classes/models/FrmFormAction.php:703
 
2196
  msgid "Delete"
2197
  msgstr "Slett"
2198
 
@@ -2613,7 +2658,7 @@ msgid_plural "%1$s Forms"
2613
  msgstr[0] "%1$s skjema"
2614
  msgstr[1] "%1$s skjemaer"
2615
 
2616
- #: classes/helpers/FrmXMLHelper.php:853
2617
  #, php-format
2618
  msgid "%1$s Field"
2619
  msgid_plural "%1$s Fields"
@@ -2811,10 +2856,6 @@ msgstr ""
2811
  msgid "Dropdown"
2812
  msgstr "Nedtrekksmeny"
2813
 
2814
- #: classes/models/FrmField.php:34
2815
- msgid "Email"
2816
- msgstr "E-post"
2817
-
2818
  #: classes/models/FrmField.php:38
2819
  msgid "Website/URL"
2820
  msgstr "Nettside/URL"
@@ -2835,10 +2876,6 @@ msgstr "HTML"
2835
  msgid "Hidden Field"
2836
  msgstr "Skjult felt"
2837
 
2838
- #: classes/models/FrmField.php:58
2839
- msgid "User ID"
2840
- msgstr "BrukerID"
2841
-
2842
  #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
2843
  msgid "reCAPTCHA"
2844
  msgstr "reCAPTCHA"
@@ -2925,18 +2962,18 @@ msgstr ""
2925
  msgid "There are no options for this action."
2926
  msgstr ""
2927
 
2928
- #: classes/models/FrmFormAction.php:700
2929
  #: classes/views/frm-forms/_publish_box.php:30
2930
  msgid "Save Draft"
2931
  msgstr ""
2932
 
2933
- #: classes/models/FrmFormAction.php:701
2934
  #: classes/views/frm-forms/add_field_links.php:7
2935
  #: classes/views/frm-forms/form.php:61
2936
  msgid "Create"
2937
  msgstr "Opprett"
2938
 
2939
- #: classes/models/FrmFormAction.php:702
2940
  #: classes/views/frm-forms/_publish_box.php:34
2941
  #: classes/views/frm-forms/_publish_box.php:38
2942
  #: classes/views/frm-forms/add_field_links.php:7
@@ -2945,10 +2982,22 @@ msgstr "Opprett"
2945
  msgid "Update"
2946
  msgstr "Oppdater"
2947
 
2948
- #: classes/models/FrmFormAction.php:704 classes/views/xml/import_form.php:10
2949
  msgid "Import"
2950
  msgstr "Importer"
2951
 
 
 
 
 
 
 
 
 
 
 
 
 
2952
  #: classes/models/FrmMigrate.php:485
2953
  msgid "Sending"
2954
  msgstr ""
@@ -3310,6 +3359,10 @@ msgstr "Twilio"
3310
  msgid "Highrise"
3311
  msgstr "Highrise"
3312
 
 
 
 
 
3313
  #: classes/views/frm-forms/_publish_box.php:44
3314
  msgid "Preview"
3315
  msgstr "Forhåndsvis"
@@ -4004,80 +4057,38 @@ msgid "HTML Tags"
4004
  msgstr ""
4005
 
4006
  #: classes/views/shared/mb_adv_info.php:15
4007
- #: classes/views/shared/mb_adv_info.php:124
4008
  msgid "IDs"
4009
  msgstr ""
4010
 
4011
  #: classes/views/shared/mb_adv_info.php:16
4012
- #: classes/views/shared/mb_adv_info.php:125
4013
  msgid "Keys"
4014
  msgstr ""
4015
 
4016
  #: classes/views/shared/mb_adv_info.php:18
4017
- #: classes/views/shared/mb_adv_info.php:127
4018
  msgid "Fields from your form"
4019
  msgstr ""
4020
 
4021
- #: classes/views/shared/mb_adv_info.php:90
4022
  msgid ""
4023
  "Click a button below to insert extra values from form entries or your site "
4024
  "settings."
4025
  msgstr ""
4026
 
4027
- #: classes/views/shared/mb_adv_info.php:93
4028
  msgid "Helpers"
4029
  msgstr "Hjelpere"
4030
 
4031
- #: classes/views/shared/mb_adv_info.php:137
4032
  msgid "Conditional text here"
4033
  msgstr ""
4034
 
4035
- #: classes/views/shared/mb_adv_info.php:154
4036
  msgid "Click a button below to insert sample logic into your view"
4037
  msgstr ""
4038
 
4039
- #: classes/views/shared/mb_adv_info.php:174
4040
- msgid ""
4041
- "Customize the field values with the following parameters. Click to see a "
4042
- "sample."
4043
- msgstr ""
4044
-
4045
- #: classes/views/shared/mb_adv_info.php:193
4046
- msgid "Show image"
4047
- msgstr "Vis bilde"
4048
-
4049
- #: classes/views/shared/mb_adv_info.php:197
4050
- msgid "Image ID"
4051
- msgstr ""
4052
-
4053
- #: classes/views/shared/mb_adv_info.php:201
4054
- msgid "Image Name"
4055
- msgstr ""
4056
-
4057
- #: classes/views/shared/mb_adv_info.php:212
4058
- msgid "Insert user information"
4059
- msgstr ""
4060
-
4061
- #: classes/views/shared/mb_adv_info.php:231
4062
- msgid "Repeating field options"
4063
- msgstr ""
4064
-
4065
- #: classes/views/shared/mb_adv_info.php:234
4066
- msgid "For Each"
4067
- msgstr ""
4068
-
4069
- #: classes/views/shared/mb_adv_info.php:244
4070
- msgid "Dynamic field options"
4071
- msgstr ""
4072
-
4073
- #: classes/views/shared/mb_adv_info.php:247
4074
- msgid "Creation Date"
4075
- msgstr ""
4076
-
4077
- #: classes/views/shared/mb_adv_info.php:251
4078
- msgid "Field From Entry"
4079
- msgstr ""
4080
-
4081
  #: classes/views/styles/_buttons.php:4
4082
  msgid "Disable submit button styling"
4083
  msgstr ""
@@ -4446,23 +4457,23 @@ msgstr "Slett stil"
4446
  msgid "Reset to Default"
4447
  msgstr ""
4448
 
4449
- #: classes/views/xml/import_form.php:12
4450
  msgid ""
4451
  "Upload your Formidable XML file to import forms into this site. If your "
4452
  "imported form key and creation date match a form on your site, that form "
4453
  "will be updated."
4454
  msgstr ""
4455
 
4456
- #: classes/views/xml/import_form.php:19
4457
  msgid "Choose a Formidable XML file"
4458
  msgstr ""
4459
 
4460
- #: classes/views/xml/import_form.php:20
4461
  #, php-format
4462
  msgid "Maximum size: %s"
4463
  msgstr ""
4464
 
4465
- #: classes/views/xml/import_form.php:28
4466
  msgid "Upload file and import"
4467
  msgstr ""
4468
 
2
  msgstr ""
3
  "Project-Id-Version: Formidable v2.05.02\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-10-15 19:32+0000\n"
6
+ "PO-Revision-Date: 2018-10-15 19:34+0000\n"
7
  "Last-Translator: Formidable Community\n"
8
  "Language-Team: Norwegian (Bokmål)\n"
9
  "Language: nb_NO\n"
34
  msgid "There are no plugins on your site that require a license"
35
  msgstr "Det er ingen plugins på siden som krever en lisens"
36
 
37
+ #: classes/controllers/FrmAppController.php:83
38
  msgid "Build"
39
  msgstr ""
40
 
41
+ #: classes/controllers/FrmAppController.php:90
42
  #: classes/helpers/FrmFormsListHelper.php:336
43
  #: classes/views/frm-forms/settings.php:10
44
  msgid "Settings"
45
  msgstr "Innstillinger"
46
 
47
+ #: classes/controllers/FrmAppController.php:97
48
  #: classes/controllers/FrmEntriesController.php:8
49
  #: classes/controllers/FrmEntriesController.php:8
50
  #: classes/controllers/FrmEntriesController.php:126
54
  msgid "Entries"
55
  msgstr "Innsendinger"
56
 
57
+ #: classes/controllers/FrmAppController.php:113
58
  msgid "Build a Form"
59
  msgstr ""
60
 
61
+ #: classes/controllers/FrmAppController.php:146
62
  #, php-format
63
  msgid ""
64
  "This site has been previously authorized to run Formidable Forms. "
66
  "running the free version and remove this message."
67
  msgstr ""
68
 
69
+ #: classes/controllers/FrmAppController.php:505
70
  #, php-format
71
  msgid ""
72
  "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress."
102
  msgstr "Støtte"
103
 
104
  #: classes/controllers/FrmEntriesController.php:105
105
+ #: classes/controllers/FrmFormsController.php:877
106
  #: classes/views/frm-entries/form.php:43
107
  #: classes/views/frm-entries/sidebar-shared.php:38
108
  msgid "Entry Key"
158
  msgid "No entries were specified"
159
  msgstr "Ingen innsending er valgt"
160
 
161
+ #: classes/controllers/FrmFieldsController.php:304
162
  msgid "Other"
163
  msgstr ""
164
 
165
+ #: classes/controllers/FrmFieldsController.php:307
166
  msgid "New Option"
167
  msgstr "Nytt Valg"
168
 
171
  msgid "Form Actions"
172
  msgstr ""
173
 
174
+ #: classes/controllers/FrmFormActionsController.php:213
175
  #: classes/models/FrmEntryValidate.php:14 classes/models/FrmSettings.php:100
176
  msgid "You do not have permission to do that"
177
  msgstr "Du har ikke rettigheter til å gjøre det"
193
  msgstr "Skjemaet ble oppdatert"
194
 
195
  #: classes/controllers/FrmFormsController.php:232
196
+ #: classes/controllers/FrmFormsController.php:1712
197
  msgid "Form template was Successfully Created"
198
  msgstr "Skjematemplate ble opprettet"
199
 
302
  msgid "That template cannot be edited"
303
  msgstr "Templaten kan ikke endres"
304
 
305
+ #: classes/controllers/FrmFormsController.php:802
306
+ msgid ""
307
+ "Customize the field values with the following parameters. Click to see a "
308
+ "sample."
309
+ msgstr ""
310
+
311
+ #: classes/controllers/FrmFormsController.php:816
312
+ msgid "Insert user information"
313
+ msgstr ""
314
+
315
+ #: classes/controllers/FrmFormsController.php:837
316
  msgid "Separator"
317
  msgstr ""
318
 
319
+ #: classes/controllers/FrmFormsController.php:838
320
  msgid "Use a different separator for checkbox fields"
321
  msgstr "Bruk en annen separator for checkbox felter"
322
 
323
+ #: classes/controllers/FrmFormsController.php:840
324
  msgid "Date Format"
325
  msgstr ""
326
 
327
+ #: classes/controllers/FrmFormsController.php:841
328
  msgid "Field Label"
329
  msgstr ""
330
 
331
+ #: classes/controllers/FrmFormsController.php:843
332
  msgid "No Auto P"
333
  msgstr ""
334
 
335
+ #: classes/controllers/FrmFormsController.php:844
336
  msgid "Do not automatically add any paragraphs or line breaks"
337
  msgstr ""
338
 
339
+ #: classes/controllers/FrmFormsController.php:858
340
+ #: classes/models/FrmField.php:58
341
+ msgid "User ID"
342
+ msgstr "BrukerID"
343
+
344
+ #: classes/controllers/FrmFormsController.php:859
345
+ msgid "First Name"
346
+ msgstr ""
347
+
348
+ #: classes/controllers/FrmFormsController.php:860
349
+ msgid "Last Name"
350
+ msgstr ""
351
+
352
+ #: classes/controllers/FrmFormsController.php:861
353
+ msgid "Display Name"
354
+ msgstr ""
355
+
356
+ #: classes/controllers/FrmFormsController.php:862
357
+ msgid "User Login"
358
+ msgstr ""
359
+
360
+ #: classes/controllers/FrmFormsController.php:863
361
+ #: classes/models/FrmField.php:34
362
+ msgid "Email"
363
+ msgstr "E-post"
364
+
365
+ #: classes/controllers/FrmFormsController.php:864
366
+ msgid "Avatar"
367
+ msgstr ""
368
+
369
+ #: classes/controllers/FrmFormsController.php:865
370
+ msgid "Author Link"
371
+ msgstr ""
372
+
373
+ #: classes/controllers/FrmFormsController.php:876
374
  #: classes/views/frm-entries/sidebar-shared.php:32
375
  msgid "Entry ID"
376
  msgstr "ElementID"
377
 
378
+ #: classes/controllers/FrmFormsController.php:878
379
  msgid "Post ID"
380
  msgstr "InnleggsID"
381
 
382
+ #: classes/controllers/FrmFormsController.php:879
383
  msgid "User IP"
384
  msgstr ""
385
 
386
+ #: classes/controllers/FrmFormsController.php:880
387
  msgid "Entry created"
388
  msgstr ""
389
 
390
+ #: classes/controllers/FrmFormsController.php:881
391
  msgid "Entry updated"
392
  msgstr ""
393
 
394
+ #: classes/controllers/FrmFormsController.php:883
395
  msgid "Site URL"
396
  msgstr "Nettsteds-URL"
397
 
398
+ #: classes/controllers/FrmFormsController.php:884
399
  msgid "Site Name"
400
  msgstr "Sidenavn"
401
 
402
+ #: classes/controllers/FrmFormsController.php:892
403
  msgid "Default Msg"
404
  msgstr ""
405
 
406
+ #: classes/controllers/FrmFormsController.php:893
407
  msgid "Default HTML"
408
  msgstr ""
409
 
410
+ #: classes/controllers/FrmFormsController.php:894
411
  msgid "Default Plain"
412
  msgstr ""
413
 
414
+ #: classes/controllers/FrmFormsController.php:982
415
  msgid "No forms were specified"
416
  msgstr ""
417
 
418
+ #: classes/controllers/FrmFormsController.php:1129
419
  msgid "Abnormal HTML characters prevented your form from saving correctly"
420
  msgstr ""
421
 
422
+ #: classes/controllers/FrmFormsController.php:1244
423
+ #: classes/controllers/FrmFormsController.php:1258
424
  msgid "Please select a valid form"
425
  msgstr "Vennligst velg et gyldig skjema"
426
 
427
+ #: classes/controllers/FrmFormsController.php:1486
428
  msgid "Please wait while you are redirected."
429
  msgstr ""
430
 
431
+ #: classes/controllers/FrmFormsController.php:1520
432
  #, php-format
433
  msgid "%1$sClick here%2$s if you are not automatically redirected."
434
  msgstr ""
2236
  msgid "Delete Permanently"
2237
  msgstr ""
2238
 
2239
+ #: classes/helpers/FrmFormsHelper.php:835 classes/models/FrmFormAction.php:744
2240
+ #: classes/views/frm-form-actions/form_action.php:19
2241
  msgid "Delete"
2242
  msgstr "Slett"
2243
 
2658
  msgstr[0] "%1$s skjema"
2659
  msgstr[1] "%1$s skjemaer"
2660
 
2661
+ #: classes/helpers/FrmXMLHelper.php:853 classes/models/FrmFormMigrator.php:388
2662
  #, php-format
2663
  msgid "%1$s Field"
2664
  msgid_plural "%1$s Fields"
2856
  msgid "Dropdown"
2857
  msgstr "Nedtrekksmeny"
2858
 
 
 
 
 
2859
  #: classes/models/FrmField.php:38
2860
  msgid "Website/URL"
2861
  msgstr "Nettside/URL"
2876
  msgid "Hidden Field"
2877
  msgstr "Skjult felt"
2878
 
 
 
 
 
2879
  #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
2880
  msgid "reCAPTCHA"
2881
  msgstr "reCAPTCHA"
2962
  msgid "There are no options for this action."
2963
  msgstr ""
2964
 
2965
+ #: classes/models/FrmFormAction.php:741
2966
  #: classes/views/frm-forms/_publish_box.php:30
2967
  msgid "Save Draft"
2968
  msgstr ""
2969
 
2970
+ #: classes/models/FrmFormAction.php:742
2971
  #: classes/views/frm-forms/add_field_links.php:7
2972
  #: classes/views/frm-forms/form.php:61
2973
  msgid "Create"
2974
  msgstr "Opprett"
2975
 
2976
+ #: classes/models/FrmFormAction.php:743
2977
  #: classes/views/frm-forms/_publish_box.php:34
2978
  #: classes/views/frm-forms/_publish_box.php:38
2979
  #: classes/views/frm-forms/add_field_links.php:7
2982
  msgid "Update"
2983
  msgstr "Oppdater"
2984
 
2985
+ #: classes/models/FrmFormAction.php:745 classes/views/xml/import_form.php:9
2986
  msgid "Import"
2987
  msgstr "Importer"
2988
 
2989
+ #: classes/models/FrmFormMigrator.php:137
2990
+ msgid "No form fields found."
2991
+ msgstr ""
2992
+
2993
+ #: classes/models/FrmFormMigrator.php:229
2994
+ msgid "There was an error while creating a new form."
2995
+ msgstr ""
2996
+
2997
+ #: classes/models/FrmFormMigrator.php:360
2998
+ msgid "Default Form"
2999
+ msgstr ""
3000
+
3001
  #: classes/models/FrmMigrate.php:485
3002
  msgid "Sending"
3003
  msgstr ""
3359
  msgid "Highrise"
3360
  msgstr "Highrise"
3361
 
3362
+ #: classes/views/frm-form-actions/form_action.php:17
3363
+ msgid "Duplicate"
3364
+ msgstr ""
3365
+
3366
  #: classes/views/frm-forms/_publish_box.php:44
3367
  msgid "Preview"
3368
  msgstr "Forhåndsvis"
4057
  msgstr ""
4058
 
4059
  #: classes/views/shared/mb_adv_info.php:15
4060
+ #: classes/views/shared/mb_adv_info.php:87
4061
  msgid "IDs"
4062
  msgstr ""
4063
 
4064
  #: classes/views/shared/mb_adv_info.php:16
4065
+ #: classes/views/shared/mb_adv_info.php:88
4066
  msgid "Keys"
4067
  msgstr ""
4068
 
4069
  #: classes/views/shared/mb_adv_info.php:18
4070
+ #: classes/views/shared/mb_adv_info.php:90
4071
  msgid "Fields from your form"
4072
  msgstr ""
4073
 
4074
+ #: classes/views/shared/mb_adv_info.php:53
4075
  msgid ""
4076
  "Click a button below to insert extra values from form entries or your site "
4077
  "settings."
4078
  msgstr ""
4079
 
4080
+ #: classes/views/shared/mb_adv_info.php:56
4081
  msgid "Helpers"
4082
  msgstr "Hjelpere"
4083
 
4084
+ #: classes/views/shared/mb_adv_info.php:100
4085
  msgid "Conditional text here"
4086
  msgstr ""
4087
 
4088
+ #: classes/views/shared/mb_adv_info.php:115
4089
  msgid "Click a button below to insert sample logic into your view"
4090
  msgstr ""
4091
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4092
  #: classes/views/styles/_buttons.php:4
4093
  msgid "Disable submit button styling"
4094
  msgstr ""
4457
  msgid "Reset to Default"
4458
  msgstr ""
4459
 
4460
+ #: classes/views/xml/import_form.php:11
4461
  msgid ""
4462
  "Upload your Formidable XML file to import forms into this site. If your "
4463
  "imported form key and creation date match a form on your site, that form "
4464
  "will be updated."
4465
  msgstr ""
4466
 
4467
+ #: classes/views/xml/import_form.php:18
4468
  msgid "Choose a Formidable XML file"
4469
  msgstr ""
4470
 
4471
+ #: classes/views/xml/import_form.php:19
4472
  #, php-format
4473
  msgid "Maximum size: %s"
4474
  msgstr ""
4475
 
4476
+ #: classes/views/xml/import_form.php:27
4477
  msgid "Upload file and import"
4478
  msgstr ""
4479
 
languages/formidable-nl_NL.mo CHANGED
Binary file
languages/formidable-nl_NL.po CHANGED
@@ -1,6 +1,6 @@
1
  msgid ""
2
  msgstr ""
3
- "PO-Revision-Date: 2018-09-12 16:46+0000\n"
4
  "MIME-Version: 1.0\n"
5
  "Content-Type: text/plain; charset=UTF-8\n"
6
  "Content-Transfer-Encoding: 8bit\n"
@@ -9,7 +9,7 @@ msgstr ""
9
  "Language: nl_NL\n"
10
  "Project-Id-Version: Formidable Forms\n"
11
  "Report-Msgid-Bugs-To: \n"
12
- "POT-Creation-Date: 2018-09-12 16:44+0000\n"
13
  "Last-Translator: Formidable Community\n"
14
  "Language-Team: Dutch"
15
 
@@ -25,17 +25,17 @@ msgstr "Upgrade naar Pro"
25
  msgid "There are no plugins on your site that require a license"
26
  msgstr ""
27
 
28
- #: classes/controllers/FrmAppController.php:91
29
  msgid "Build"
30
  msgstr "Bewerken"
31
 
32
- #: classes/controllers/FrmAppController.php:98
33
  #: classes/helpers/FrmFormsListHelper.php:336
34
  #: classes/views/frm-forms/settings.php:10
35
  msgid "Settings"
36
  msgstr "Instellingen"
37
 
38
- #: classes/controllers/FrmAppController.php:105
39
  #: classes/controllers/FrmEntriesController.php:8
40
  #: classes/controllers/FrmEntriesController.php:8
41
  #: classes/controllers/FrmEntriesController.php:126
@@ -45,11 +45,11 @@ msgstr "Instellingen"
45
  msgid "Entries"
46
  msgstr "Inzendingen"
47
 
48
- #: classes/controllers/FrmAppController.php:121
49
  msgid "Build a Form"
50
  msgstr ""
51
 
52
- #: classes/controllers/FrmAppController.php:154
53
  #, php-format
54
  msgid ""
55
  "This site has been previously authorized to run Formidable Forms. "
@@ -57,7 +57,7 @@ msgid ""
57
  "running the free version and remove this message."
58
  msgstr ""
59
 
60
- #: classes/controllers/FrmAppController.php:513
61
  #, php-format
62
  msgid ""
63
  "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress."
@@ -93,7 +93,7 @@ msgid "Support"
93
  msgstr "Ondersteuning"
94
 
95
  #: classes/controllers/FrmEntriesController.php:105
96
- #: classes/controllers/FrmFormsController.php:827
97
  #: classes/views/frm-entries/form.php:43
98
  #: classes/views/frm-entries/sidebar-shared.php:38
99
  msgid "Entry Key"
@@ -149,11 +149,11 @@ msgstr "Inzendingen zijn met succes verwijderd"
149
  msgid "No entries were specified"
150
  msgstr "Geen bijdragen gespecificeerd"
151
 
152
- #: classes/controllers/FrmFieldsController.php:302
153
  msgid "Other"
154
  msgstr ""
155
 
156
- #: classes/controllers/FrmFieldsController.php:305
157
  msgid "New Option"
158
  msgstr "Nieuwe Optie"
159
 
@@ -162,7 +162,7 @@ msgstr "Nieuwe Optie"
162
  msgid "Form Actions"
163
  msgstr ""
164
 
165
- #: classes/controllers/FrmFormActionsController.php:210
166
  #: classes/models/FrmEntryValidate.php:14 classes/models/FrmSettings.php:100
167
  msgid "You do not have permission to do that"
168
  msgstr "U heeft niet voldoende rechten om dit te doen"
@@ -184,7 +184,7 @@ msgid "Form was Successfully Updated"
184
  msgstr "Het formulier is met succes bijgewerkt"
185
 
186
  #: classes/controllers/FrmFormsController.php:232
187
- #: classes/controllers/FrmFormsController.php:1662
188
  msgid "Form template was Successfully Created"
189
  msgstr "Het formulier sjabloon is aangemaakt"
190
 
@@ -293,91 +293,135 @@ msgstr "Sjabloon succesvol bijgewerkt"
293
  msgid "That template cannot be edited"
294
  msgstr "Dit sjabloon kan niet veranderd worden"
295
 
296
- #: classes/controllers/FrmFormsController.php:804
 
 
 
 
 
 
 
 
 
 
297
  msgid "Separator"
298
  msgstr "Afscheider"
299
 
300
- #: classes/controllers/FrmFormsController.php:805
301
  msgid "Use a different separator for checkbox fields"
302
  msgstr ""
303
 
304
- #: classes/controllers/FrmFormsController.php:807
305
  msgid "Date Format"
306
  msgstr "Datumnotatie"
307
 
308
- #: classes/controllers/FrmFormsController.php:808
309
  msgid "Field Label"
310
  msgstr "Veld label"
311
 
312
- #: classes/controllers/FrmFormsController.php:810
313
  msgid "No Auto P"
314
  msgstr "Geen automatische p"
315
 
316
- #: classes/controllers/FrmFormsController.php:811
317
  msgid "Do not automatically add any paragraphs or line breaks"
318
  msgstr ""
319
 
320
- #: classes/controllers/FrmFormsController.php:826
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
321
  #: classes/views/frm-entries/sidebar-shared.php:32
322
  msgid "Entry ID"
323
  msgstr "Inzendings ID"
324
 
325
- #: classes/controllers/FrmFormsController.php:828
326
  msgid "Post ID"
327
  msgstr "Bericht ID"
328
 
329
- #: classes/controllers/FrmFormsController.php:829
330
  msgid "User IP"
331
  msgstr "User IP"
332
 
333
- #: classes/controllers/FrmFormsController.php:830
334
  msgid "Entry created"
335
  msgstr "Item aangemaakt"
336
 
337
- #: classes/controllers/FrmFormsController.php:831
338
  msgid "Entry updated"
339
  msgstr "Item bijgewerkt"
340
 
341
- #: classes/controllers/FrmFormsController.php:833
342
  msgid "Site URL"
343
  msgstr "Site URL"
344
 
345
- #: classes/controllers/FrmFormsController.php:834
346
  msgid "Site Name"
347
  msgstr "Site naam"
348
 
349
- #: classes/controllers/FrmFormsController.php:842
350
  msgid "Default Msg"
351
  msgstr "Standaardmelding"
352
 
353
- #: classes/controllers/FrmFormsController.php:843
354
  msgid "Default HTML"
355
  msgstr "Standaard HTML"
356
 
357
- #: classes/controllers/FrmFormsController.php:844
358
  msgid "Default Plain"
359
  msgstr "Standaard plat"
360
 
361
- #: classes/controllers/FrmFormsController.php:932
362
  msgid "No forms were specified"
363
  msgstr "Geen formulieren gespecificeerd"
364
 
365
- #: classes/controllers/FrmFormsController.php:1079
366
  msgid "Abnormal HTML characters prevented your form from saving correctly"
367
  msgstr ""
368
  "Ongewone HTML-karakters voorkomen dat het formulier op de juiste manier "
369
  "wordt bewaard"
370
 
371
- #: classes/controllers/FrmFormsController.php:1194
372
- #: classes/controllers/FrmFormsController.php:1208
373
  msgid "Please select a valid form"
374
  msgstr "Selecteer een geldig formulier"
375
 
376
- #: classes/controllers/FrmFormsController.php:1436
377
  msgid "Please wait while you are redirected."
378
  msgstr "Wacht terwijl je wordt doorverwezen"
379
 
380
- #: classes/controllers/FrmFormsController.php:1470
381
  #, php-format
382
  msgid "%1$sClick here%2$s if you are not automatically redirected."
383
  msgstr "%1$sClick hier%2$s voor het geval u niet automatisch wordt doorgeleid."
@@ -2180,7 +2224,8 @@ msgstr "Prullenbak"
2180
  msgid "Delete Permanently"
2181
  msgstr "Verwijder definitief"
2182
 
2183
- #: classes/helpers/FrmFormsHelper.php:835 classes/models/FrmFormAction.php:703
 
2184
  msgid "Delete"
2185
  msgstr "Verwijderen"
2186
 
@@ -2596,7 +2641,7 @@ msgid_plural "%1$s Forms"
2596
  msgstr[0] "%1$s formulier"
2597
  msgstr[1] "%1$s Formulieren"
2598
 
2599
- #: classes/helpers/FrmXMLHelper.php:853
2600
  #, php-format
2601
  msgid "%1$s Field"
2602
  msgid_plural "%1$s Fields"
@@ -2795,10 +2840,6 @@ msgstr ""
2795
  msgid "Dropdown"
2796
  msgstr "Uitklapbaar"
2797
 
2798
- #: classes/models/FrmField.php:34
2799
- msgid "Email"
2800
- msgstr "Email adres"
2801
-
2802
  #: classes/models/FrmField.php:38
2803
  msgid "Website/URL"
2804
  msgstr "Website"
@@ -2819,10 +2860,6 @@ msgstr "HTML"
2819
  msgid "Hidden Field"
2820
  msgstr "Verborgen veld"
2821
 
2822
- #: classes/models/FrmField.php:58
2823
- msgid "User ID"
2824
- msgstr "Gebruikers ID"
2825
-
2826
  #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
2827
  msgid "reCAPTCHA"
2828
  msgstr "reCAPTCHA"
@@ -2909,18 +2946,18 @@ msgstr ""
2909
  msgid "There are no options for this action."
2910
  msgstr "Er zijn geen opties voor deze actie."
2911
 
2912
- #: classes/models/FrmFormAction.php:700
2913
  #: classes/views/frm-forms/_publish_box.php:30
2914
  msgid "Save Draft"
2915
  msgstr "Concept opslaan"
2916
 
2917
- #: classes/models/FrmFormAction.php:701
2918
  #: classes/views/frm-forms/add_field_links.php:7
2919
  #: classes/views/frm-forms/form.php:61
2920
  msgid "Create"
2921
  msgstr "Publiceren"
2922
 
2923
- #: classes/models/FrmFormAction.php:702
2924
  #: classes/views/frm-forms/_publish_box.php:34
2925
  #: classes/views/frm-forms/_publish_box.php:38
2926
  #: classes/views/frm-forms/add_field_links.php:7
@@ -2929,10 +2966,22 @@ msgstr "Publiceren"
2929
  msgid "Update"
2930
  msgstr "Bijwerken"
2931
 
2932
- #: classes/models/FrmFormAction.php:704 classes/views/xml/import_form.php:10
2933
  msgid "Import"
2934
  msgstr "Importeren"
2935
 
 
 
 
 
 
 
 
 
 
 
 
 
2936
  #: classes/models/FrmMigrate.php:485
2937
  msgid "Sending"
2938
  msgstr "Bezig met versturen"
@@ -3297,6 +3346,10 @@ msgstr "Twilio"
3297
  msgid "Highrise"
3298
  msgstr "Highrise"
3299
 
 
 
 
 
3300
  #: classes/views/frm-forms/_publish_box.php:44
3301
  msgid "Preview"
3302
  msgstr "Vooraf bekijken"
@@ -4002,80 +4055,38 @@ msgid "HTML Tags"
4002
  msgstr "HTML tags"
4003
 
4004
  #: classes/views/shared/mb_adv_info.php:15
4005
- #: classes/views/shared/mb_adv_info.php:124
4006
  msgid "IDs"
4007
  msgstr "IDs"
4008
 
4009
  #: classes/views/shared/mb_adv_info.php:16
4010
- #: classes/views/shared/mb_adv_info.php:125
4011
  msgid "Keys"
4012
  msgstr "Sleutels"
4013
 
4014
  #: classes/views/shared/mb_adv_info.php:18
4015
- #: classes/views/shared/mb_adv_info.php:127
4016
  msgid "Fields from your form"
4017
  msgstr "Velden van het formulier"
4018
 
4019
- #: classes/views/shared/mb_adv_info.php:90
4020
  msgid ""
4021
  "Click a button below to insert extra values from form entries or your site "
4022
  "settings."
4023
  msgstr ""
4024
 
4025
- #: classes/views/shared/mb_adv_info.php:93
4026
  msgid "Helpers"
4027
  msgstr "Helpers"
4028
 
4029
- #: classes/views/shared/mb_adv_info.php:137
4030
  msgid "Conditional text here"
4031
  msgstr "Conditionele tekst hier"
4032
 
4033
- #: classes/views/shared/mb_adv_info.php:154
4034
  msgid "Click a button below to insert sample logic into your view"
4035
  msgstr "Klik hieronder op een knop om de voorbeeld logica in te voegen"
4036
 
4037
- #: classes/views/shared/mb_adv_info.php:174
4038
- msgid ""
4039
- "Customize the field values with the following parameters. Click to see a "
4040
- "sample."
4041
- msgstr ""
4042
-
4043
- #: classes/views/shared/mb_adv_info.php:193
4044
- msgid "Show image"
4045
- msgstr "Toon image"
4046
-
4047
- #: classes/views/shared/mb_adv_info.php:197
4048
- msgid "Image ID"
4049
- msgstr "Afbeelding ID"
4050
-
4051
- #: classes/views/shared/mb_adv_info.php:201
4052
- msgid "Image Name"
4053
- msgstr "Afbeeldingsnaam"
4054
-
4055
- #: classes/views/shared/mb_adv_info.php:212
4056
- msgid "Insert user information"
4057
- msgstr "Gebruikersinformatie invoeren"
4058
-
4059
- #: classes/views/shared/mb_adv_info.php:231
4060
- msgid "Repeating field options"
4061
- msgstr "Opties voor herhalend veld"
4062
-
4063
- #: classes/views/shared/mb_adv_info.php:234
4064
- msgid "For Each"
4065
- msgstr "Voor elk"
4066
-
4067
- #: classes/views/shared/mb_adv_info.php:244
4068
- msgid "Dynamic field options"
4069
- msgstr "Opties voor dynamisch veld"
4070
-
4071
- #: classes/views/shared/mb_adv_info.php:247
4072
- msgid "Creation Date"
4073
- msgstr "Aanmaak datum"
4074
-
4075
- #: classes/views/shared/mb_adv_info.php:251
4076
- msgid "Field From Entry"
4077
- msgstr "Veld van inzending"
4078
-
4079
  #: classes/views/styles/_buttons.php:4
4080
  msgid "Disable submit button styling"
4081
  msgstr "Schakel de Styling van de verzendknop uit"
@@ -4447,7 +4458,7 @@ msgstr "Verwijder Stijl"
4447
  msgid "Reset to Default"
4448
  msgstr "Herstel naar standaard"
4449
 
4450
- #: classes/views/xml/import_form.php:12
4451
  msgid ""
4452
  "Upload your Formidable XML file to import forms into this site. If your "
4453
  "imported form key and creation date match a form on your site, that form "
@@ -4457,16 +4468,16 @@ msgstr ""
4457
  "Wanneer je geïmporteerde formuliersleutel en aanmaakdatum hetzelfde zijn, "
4458
  "zal je formulier worden bijgewerkt. "
4459
 
4460
- #: classes/views/xml/import_form.php:19
4461
  msgid "Choose a Formidable XML file"
4462
  msgstr "Selecteer een Formidable XML bestand"
4463
 
4464
- #: classes/views/xml/import_form.php:20
4465
  #, php-format
4466
  msgid "Maximum size: %s"
4467
  msgstr "Maximale grootte: %s"
4468
 
4469
- #: classes/views/xml/import_form.php:28
4470
  msgid "Upload file and import"
4471
  msgstr "Upload en importeer bestand"
4472
 
1
  msgid ""
2
  msgstr ""
3
+ "PO-Revision-Date: 2018-10-15 19:34+0000\n"
4
  "MIME-Version: 1.0\n"
5
  "Content-Type: text/plain; charset=UTF-8\n"
6
  "Content-Transfer-Encoding: 8bit\n"
9
  "Language: nl_NL\n"
10
  "Project-Id-Version: Formidable Forms\n"
11
  "Report-Msgid-Bugs-To: \n"
12
+ "POT-Creation-Date: 2018-10-15 19:32+0000\n"
13
  "Last-Translator: Formidable Community\n"
14
  "Language-Team: Dutch"
15
 
25
  msgid "There are no plugins on your site that require a license"
26
  msgstr ""
27
 
28
+ #: classes/controllers/FrmAppController.php:83
29
  msgid "Build"
30
  msgstr "Bewerken"
31
 
32
+ #: classes/controllers/FrmAppController.php:90
33
  #: classes/helpers/FrmFormsListHelper.php:336
34
  #: classes/views/frm-forms/settings.php:10
35
  msgid "Settings"
36
  msgstr "Instellingen"
37
 
38
+ #: classes/controllers/FrmAppController.php:97
39
  #: classes/controllers/FrmEntriesController.php:8
40
  #: classes/controllers/FrmEntriesController.php:8
41
  #: classes/controllers/FrmEntriesController.php:126
45
  msgid "Entries"
46
  msgstr "Inzendingen"
47
 
48
+ #: classes/controllers/FrmAppController.php:113
49
  msgid "Build a Form"
50
  msgstr ""
51
 
52
+ #: classes/controllers/FrmAppController.php:146
53
  #, php-format
54
  msgid ""
55
  "This site has been previously authorized to run Formidable Forms. "
57
  "running the free version and remove this message."
58
  msgstr ""
59
 
60
+ #: classes/controllers/FrmAppController.php:505
61
  #, php-format
62
  msgid ""
63
  "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress."
93
  msgstr "Ondersteuning"
94
 
95
  #: classes/controllers/FrmEntriesController.php:105
96
+ #: classes/controllers/FrmFormsController.php:877
97
  #: classes/views/frm-entries/form.php:43
98
  #: classes/views/frm-entries/sidebar-shared.php:38
99
  msgid "Entry Key"
149
  msgid "No entries were specified"
150
  msgstr "Geen bijdragen gespecificeerd"
151
 
152
+ #: classes/controllers/FrmFieldsController.php:304
153
  msgid "Other"
154
  msgstr ""
155
 
156
+ #: classes/controllers/FrmFieldsController.php:307
157
  msgid "New Option"
158
  msgstr "Nieuwe Optie"
159
 
162
  msgid "Form Actions"
163
  msgstr ""
164
 
165
+ #: classes/controllers/FrmFormActionsController.php:213
166
  #: classes/models/FrmEntryValidate.php:14 classes/models/FrmSettings.php:100
167
  msgid "You do not have permission to do that"
168
  msgstr "U heeft niet voldoende rechten om dit te doen"
184
  msgstr "Het formulier is met succes bijgewerkt"
185
 
186
  #: classes/controllers/FrmFormsController.php:232
187
+ #: classes/controllers/FrmFormsController.php:1712
188
  msgid "Form template was Successfully Created"
189
  msgstr "Het formulier sjabloon is aangemaakt"
190
 
293
  msgid "That template cannot be edited"
294
  msgstr "Dit sjabloon kan niet veranderd worden"
295
 
296
+ #: classes/controllers/FrmFormsController.php:802
297
+ msgid ""
298
+ "Customize the field values with the following parameters. Click to see a "
299
+ "sample."
300
+ msgstr ""
301
+
302
+ #: classes/controllers/FrmFormsController.php:816
303
+ msgid "Insert user information"
304
+ msgstr "Gebruikersinformatie invoeren"
305
+
306
+ #: classes/controllers/FrmFormsController.php:837
307
  msgid "Separator"
308
  msgstr "Afscheider"
309
 
310
+ #: classes/controllers/FrmFormsController.php:838
311
  msgid "Use a different separator for checkbox fields"
312
  msgstr ""
313
 
314
+ #: classes/controllers/FrmFormsController.php:840
315
  msgid "Date Format"
316
  msgstr "Datumnotatie"
317
 
318
+ #: classes/controllers/FrmFormsController.php:841
319
  msgid "Field Label"
320
  msgstr "Veld label"
321
 
322
+ #: classes/controllers/FrmFormsController.php:843
323
  msgid "No Auto P"
324
  msgstr "Geen automatische p"
325
 
326
+ #: classes/controllers/FrmFormsController.php:844
327
  msgid "Do not automatically add any paragraphs or line breaks"
328
  msgstr ""
329
 
330
+ #: classes/controllers/FrmFormsController.php:858
331
+ #: classes/models/FrmField.php:58
332
+ msgid "User ID"
333
+ msgstr "Gebruikers ID"
334
+
335
+ #: classes/controllers/FrmFormsController.php:859
336
+ msgid "First Name"
337
+ msgstr ""
338
+
339
+ #: classes/controllers/FrmFormsController.php:860
340
+ msgid "Last Name"
341
+ msgstr ""
342
+
343
+ #: classes/controllers/FrmFormsController.php:861
344
+ msgid "Display Name"
345
+ msgstr ""
346
+
347
+ #: classes/controllers/FrmFormsController.php:862
348
+ msgid "User Login"
349
+ msgstr ""
350
+
351
+ #: classes/controllers/FrmFormsController.php:863
352
+ #: classes/models/FrmField.php:34
353
+ msgid "Email"
354
+ msgstr "Email adres"
355
+
356
+ #: classes/controllers/FrmFormsController.php:864
357
+ msgid "Avatar"
358
+ msgstr ""
359
+
360
+ #: classes/controllers/FrmFormsController.php:865
361
+ msgid "Author Link"
362
+ msgstr ""
363
+
364
+ #: classes/controllers/FrmFormsController.php:876
365
  #: classes/views/frm-entries/sidebar-shared.php:32
366
  msgid "Entry ID"
367
  msgstr "Inzendings ID"
368
 
369
+ #: classes/controllers/FrmFormsController.php:878
370
  msgid "Post ID"
371
  msgstr "Bericht ID"
372
 
373
+ #: classes/controllers/FrmFormsController.php:879
374
  msgid "User IP"
375
  msgstr "User IP"
376
 
377
+ #: classes/controllers/FrmFormsController.php:880
378
  msgid "Entry created"
379
  msgstr "Item aangemaakt"
380
 
381
+ #: classes/controllers/FrmFormsController.php:881
382
  msgid "Entry updated"
383
  msgstr "Item bijgewerkt"
384
 
385
+ #: classes/controllers/FrmFormsController.php:883
386
  msgid "Site URL"
387
  msgstr "Site URL"
388
 
389
+ #: classes/controllers/FrmFormsController.php:884
390
  msgid "Site Name"
391
  msgstr "Site naam"
392
 
393
+ #: classes/controllers/FrmFormsController.php:892
394
  msgid "Default Msg"
395
  msgstr "Standaardmelding"
396
 
397
+ #: classes/controllers/FrmFormsController.php:893
398
  msgid "Default HTML"
399
  msgstr "Standaard HTML"
400
 
401
+ #: classes/controllers/FrmFormsController.php:894
402
  msgid "Default Plain"
403
  msgstr "Standaard plat"
404
 
405
+ #: classes/controllers/FrmFormsController.php:982
406
  msgid "No forms were specified"
407
  msgstr "Geen formulieren gespecificeerd"
408
 
409
+ #: classes/controllers/FrmFormsController.php:1129
410
  msgid "Abnormal HTML characters prevented your form from saving correctly"
411
  msgstr ""
412
  "Ongewone HTML-karakters voorkomen dat het formulier op de juiste manier "
413
  "wordt bewaard"
414
 
415
+ #: classes/controllers/FrmFormsController.php:1244
416
+ #: classes/controllers/FrmFormsController.php:1258
417
  msgid "Please select a valid form"
418
  msgstr "Selecteer een geldig formulier"
419
 
420
+ #: classes/controllers/FrmFormsController.php:1486
421
  msgid "Please wait while you are redirected."
422
  msgstr "Wacht terwijl je wordt doorverwezen"
423
 
424
+ #: classes/controllers/FrmFormsController.php:1520
425
  #, php-format
426
  msgid "%1$sClick here%2$s if you are not automatically redirected."
427
  msgstr "%1$sClick hier%2$s voor het geval u niet automatisch wordt doorgeleid."
2224
  msgid "Delete Permanently"
2225
  msgstr "Verwijder definitief"
2226
 
2227
+ #: classes/helpers/FrmFormsHelper.php:835 classes/models/FrmFormAction.php:744
2228
+ #: classes/views/frm-form-actions/form_action.php:19
2229
  msgid "Delete"
2230
  msgstr "Verwijderen"
2231
 
2641
  msgstr[0] "%1$s formulier"
2642
  msgstr[1] "%1$s Formulieren"
2643
 
2644
+ #: classes/helpers/FrmXMLHelper.php:853 classes/models/FrmFormMigrator.php:388
2645
  #, php-format
2646
  msgid "%1$s Field"
2647
  msgid_plural "%1$s Fields"
2840
  msgid "Dropdown"
2841
  msgstr "Uitklapbaar"
2842
 
 
 
 
 
2843
  #: classes/models/FrmField.php:38
2844
  msgid "Website/URL"
2845
  msgstr "Website"
2860
  msgid "Hidden Field"
2861
  msgstr "Verborgen veld"
2862
 
 
 
 
 
2863
  #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
2864
  msgid "reCAPTCHA"
2865
  msgstr "reCAPTCHA"
2946
  msgid "There are no options for this action."
2947
  msgstr "Er zijn geen opties voor deze actie."
2948
 
2949
+ #: classes/models/FrmFormAction.php:741
2950
  #: classes/views/frm-forms/_publish_box.php:30
2951
  msgid "Save Draft"
2952
  msgstr "Concept opslaan"
2953
 
2954
+ #: classes/models/FrmFormAction.php:742
2955
  #: classes/views/frm-forms/add_field_links.php:7
2956
  #: classes/views/frm-forms/form.php:61
2957
  msgid "Create"
2958
  msgstr "Publiceren"
2959
 
2960
+ #: classes/models/FrmFormAction.php:743
2961
  #: classes/views/frm-forms/_publish_box.php:34
2962
  #: classes/views/frm-forms/_publish_box.php:38
2963
  #: classes/views/frm-forms/add_field_links.php:7
2966
  msgid "Update"
2967
  msgstr "Bijwerken"
2968
 
2969
+ #: classes/models/FrmFormAction.php:745 classes/views/xml/import_form.php:9
2970
  msgid "Import"
2971
  msgstr "Importeren"
2972
 
2973
+ #: classes/models/FrmFormMigrator.php:137
2974
+ msgid "No form fields found."
2975
+ msgstr ""
2976
+
2977
+ #: classes/models/FrmFormMigrator.php:229
2978
+ msgid "There was an error while creating a new form."
2979
+ msgstr ""
2980
+
2981
+ #: classes/models/FrmFormMigrator.php:360
2982
+ msgid "Default Form"
2983
+ msgstr ""
2984
+
2985
  #: classes/models/FrmMigrate.php:485
2986
  msgid "Sending"
2987
  msgstr "Bezig met versturen"
3346
  msgid "Highrise"
3347
  msgstr "Highrise"
3348
 
3349
+ #: classes/views/frm-form-actions/form_action.php:17
3350
+ msgid "Duplicate"
3351
+ msgstr ""
3352
+
3353
  #: classes/views/frm-forms/_publish_box.php:44
3354
  msgid "Preview"
3355
  msgstr "Vooraf bekijken"
4055
  msgstr "HTML tags"
4056
 
4057
  #: classes/views/shared/mb_adv_info.php:15
4058
+ #: classes/views/shared/mb_adv_info.php:87
4059
  msgid "IDs"
4060
  msgstr "IDs"
4061
 
4062
  #: classes/views/shared/mb_adv_info.php:16
4063
+ #: classes/views/shared/mb_adv_info.php:88
4064
  msgid "Keys"
4065
  msgstr "Sleutels"
4066
 
4067
  #: classes/views/shared/mb_adv_info.php:18
4068
+ #: classes/views/shared/mb_adv_info.php:90
4069
  msgid "Fields from your form"
4070
  msgstr "Velden van het formulier"
4071
 
4072
+ #: classes/views/shared/mb_adv_info.php:53
4073
  msgid ""
4074
  "Click a button below to insert extra values from form entries or your site "
4075
  "settings."
4076
  msgstr ""
4077
 
4078
+ #: classes/views/shared/mb_adv_info.php:56
4079
  msgid "Helpers"
4080
  msgstr "Helpers"
4081
 
4082
+ #: classes/views/shared/mb_adv_info.php:100
4083
  msgid "Conditional text here"
4084
  msgstr "Conditionele tekst hier"
4085
 
4086
+ #: classes/views/shared/mb_adv_info.php:115
4087
  msgid "Click a button below to insert sample logic into your view"
4088
  msgstr "Klik hieronder op een knop om de voorbeeld logica in te voegen"
4089
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4090
  #: classes/views/styles/_buttons.php:4
4091
  msgid "Disable submit button styling"
4092
  msgstr "Schakel de Styling van de verzendknop uit"
4458
  msgid "Reset to Default"
4459
  msgstr "Herstel naar standaard"
4460
 
4461
+ #: classes/views/xml/import_form.php:11
4462
  msgid ""
4463
  "Upload your Formidable XML file to import forms into this site. If your "
4464
  "imported form key and creation date match a form on your site, that form "
4468
  "Wanneer je geïmporteerde formuliersleutel en aanmaakdatum hetzelfde zijn, "
4469
  "zal je formulier worden bijgewerkt. "
4470
 
4471
+ #: classes/views/xml/import_form.php:18
4472
  msgid "Choose a Formidable XML file"
4473
  msgstr "Selecteer een Formidable XML bestand"
4474
 
4475
+ #: classes/views/xml/import_form.php:19
4476
  #, php-format
4477
  msgid "Maximum size: %s"
4478
  msgstr "Maximale grootte: %s"
4479
 
4480
+ #: classes/views/xml/import_form.php:27
4481
  msgid "Upload file and import"
4482
  msgstr "Upload en importeer bestand"
4483
 
languages/formidable-pl_PL.mo CHANGED
Binary file
languages/formidable-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Formidable v2.05.02\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-09-12 16:44+0000\n"
6
- "PO-Revision-Date: 2018-09-12 16:46+0000\n"
7
  "Last-Translator: Formidable Community\n"
8
  "Language-Team: Polish\n"
9
  "Language: pl_PL\n"
@@ -35,17 +35,17 @@ msgstr "Uaktualnij do Pro"
35
  msgid "There are no plugins on your site that require a license"
36
  msgstr ""
37
 
38
- #: classes/controllers/FrmAppController.php:91
39
  msgid "Build"
40
  msgstr "Tworzenie"
41
 
42
- #: classes/controllers/FrmAppController.php:98
43
  #: classes/helpers/FrmFormsListHelper.php:336
44
  #: classes/views/frm-forms/settings.php:10
45
  msgid "Settings"
46
  msgstr "Ustawienia"
47
 
48
- #: classes/controllers/FrmAppController.php:105
49
  #: classes/controllers/FrmEntriesController.php:8
50
  #: classes/controllers/FrmEntriesController.php:8
51
  #: classes/controllers/FrmEntriesController.php:126
@@ -55,11 +55,11 @@ msgstr "Ustawienia"
55
  msgid "Entries"
56
  msgstr "Wpisy"
57
 
58
- #: classes/controllers/FrmAppController.php:121
59
  msgid "Build a Form"
60
  msgstr ""
61
 
62
- #: classes/controllers/FrmAppController.php:154
63
  #, php-format
64
  msgid ""
65
  "This site has been previously authorized to run Formidable Forms. "
@@ -67,7 +67,7 @@ msgid ""
67
  "running the free version and remove this message."
68
  msgstr ""
69
 
70
- #: classes/controllers/FrmAppController.php:513
71
  #, php-format
72
  msgid ""
73
  "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress."
@@ -103,7 +103,7 @@ msgid "Support"
103
  msgstr "Wsparcie"
104
 
105
  #: classes/controllers/FrmEntriesController.php:105
106
- #: classes/controllers/FrmFormsController.php:827
107
  #: classes/views/frm-entries/form.php:43
108
  #: classes/views/frm-entries/sidebar-shared.php:38
109
  msgid "Entry Key"
@@ -159,11 +159,11 @@ msgstr "Wpisy zostały pomyślnie usunięte"
159
  msgid "No entries were specified"
160
  msgstr "Nie określono wpisów"
161
 
162
- #: classes/controllers/FrmFieldsController.php:302
163
  msgid "Other"
164
  msgstr ""
165
 
166
- #: classes/controllers/FrmFieldsController.php:305
167
  msgid "New Option"
168
  msgstr ""
169
 
@@ -172,7 +172,7 @@ msgstr ""
172
  msgid "Form Actions"
173
  msgstr ""
174
 
175
- #: classes/controllers/FrmFormActionsController.php:210
176
  #: classes/models/FrmEntryValidate.php:14 classes/models/FrmSettings.php:100
177
  msgid "You do not have permission to do that"
178
  msgstr "Nie masz uprawnień aby to zrobić"
@@ -194,7 +194,7 @@ msgid "Form was Successfully Updated"
194
  msgstr "Formularz został zaktualizowany"
195
 
196
  #: classes/controllers/FrmFormsController.php:232
197
- #: classes/controllers/FrmFormsController.php:1662
198
  msgid "Form template was Successfully Created"
199
  msgstr "Szablon formularza został utworzony"
200
 
@@ -306,89 +306,133 @@ msgstr "Szablon został zaktualizowany"
306
  msgid "That template cannot be edited"
307
  msgstr "Ten szablon nie może być edytowany"
308
 
309
- #: classes/controllers/FrmFormsController.php:804
 
 
 
 
 
 
 
 
 
 
310
  msgid "Separator"
311
  msgstr ""
312
 
313
- #: classes/controllers/FrmFormsController.php:805
314
  msgid "Use a different separator for checkbox fields"
315
  msgstr "Użyj różnych separatorów dla pól wyboru"
316
 
317
- #: classes/controllers/FrmFormsController.php:807
318
  msgid "Date Format"
319
  msgstr "Format daty"
320
 
321
- #: classes/controllers/FrmFormsController.php:808
322
  msgid "Field Label"
323
  msgstr ""
324
 
325
- #: classes/controllers/FrmFormsController.php:810
326
  msgid "No Auto P"
327
  msgstr ""
328
 
329
- #: classes/controllers/FrmFormsController.php:811
330
  msgid "Do not automatically add any paragraphs or line breaks"
331
  msgstr ""
332
 
333
- #: classes/controllers/FrmFormsController.php:826
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
334
  #: classes/views/frm-entries/sidebar-shared.php:32
335
  msgid "Entry ID"
336
  msgstr "ID wpisu"
337
 
338
- #: classes/controllers/FrmFormsController.php:828
339
  msgid "Post ID"
340
  msgstr "ID wpisu"
341
 
342
- #: classes/controllers/FrmFormsController.php:829
343
  msgid "User IP"
344
  msgstr "IP użytkownika"
345
 
346
- #: classes/controllers/FrmFormsController.php:830
347
  msgid "Entry created"
348
  msgstr ""
349
 
350
- #: classes/controllers/FrmFormsController.php:831
351
  msgid "Entry updated"
352
  msgstr ""
353
 
354
- #: classes/controllers/FrmFormsController.php:833
355
  msgid "Site URL"
356
  msgstr "Adres URL strony"
357
 
358
- #: classes/controllers/FrmFormsController.php:834
359
  msgid "Site Name"
360
  msgstr "Nazwa strony"
361
 
362
- #: classes/controllers/FrmFormsController.php:842
363
  msgid "Default Msg"
364
  msgstr ""
365
 
366
- #: classes/controllers/FrmFormsController.php:843
367
  msgid "Default HTML"
368
  msgstr ""
369
 
370
- #: classes/controllers/FrmFormsController.php:844
371
  msgid "Default Plain"
372
  msgstr ""
373
 
374
- #: classes/controllers/FrmFormsController.php:932
375
  msgid "No forms were specified"
376
  msgstr "Żaden formularz nie został wybrany"
377
 
378
- #: classes/controllers/FrmFormsController.php:1079
379
  msgid "Abnormal HTML characters prevented your form from saving correctly"
380
  msgstr ""
381
 
382
- #: classes/controllers/FrmFormsController.php:1194
383
- #: classes/controllers/FrmFormsController.php:1208
384
  msgid "Please select a valid form"
385
  msgstr "Wybierz właściwy formularz"
386
 
387
- #: classes/controllers/FrmFormsController.php:1436
388
  msgid "Please wait while you are redirected."
389
  msgstr "Proszę poczekać na przekierowanie."
390
 
391
- #: classes/controllers/FrmFormsController.php:1470
392
  #, php-format
393
  msgid "%1$sClick here%2$s if you are not automatically redirected."
394
  msgstr ""
@@ -2188,7 +2232,8 @@ msgstr ""
2188
  msgid "Delete Permanently"
2189
  msgstr ""
2190
 
2191
- #: classes/helpers/FrmFormsHelper.php:835 classes/models/FrmFormAction.php:703
 
2192
  msgid "Delete"
2193
  msgstr "Usuń"
2194
 
@@ -2605,7 +2650,7 @@ msgstr[0] ""
2605
  msgstr[1] ""
2606
  msgstr[2] ""
2607
 
2608
- #: classes/helpers/FrmXMLHelper.php:853
2609
  #, php-format
2610
  msgid "%1$s Field"
2611
  msgid_plural "%1$s Fields"
@@ -2809,10 +2854,6 @@ msgstr ""
2809
  msgid "Dropdown"
2810
  msgstr "Lista rozwijana"
2811
 
2812
- #: classes/models/FrmField.php:34
2813
- msgid "Email"
2814
- msgstr "Email"
2815
-
2816
  #: classes/models/FrmField.php:38
2817
  msgid "Website/URL"
2818
  msgstr "Strona www/URL"
@@ -2833,10 +2874,6 @@ msgstr "HTML"
2833
  msgid "Hidden Field"
2834
  msgstr "Pole ukryte"
2835
 
2836
- #: classes/models/FrmField.php:58
2837
- msgid "User ID"
2838
- msgstr "ID użytkownika"
2839
-
2840
  #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
2841
  msgid "reCAPTCHA"
2842
  msgstr "reCAPTCHA"
@@ -2923,18 +2960,18 @@ msgstr ""
2923
  msgid "There are no options for this action."
2924
  msgstr ""
2925
 
2926
- #: classes/models/FrmFormAction.php:700
2927
  #: classes/views/frm-forms/_publish_box.php:30
2928
  msgid "Save Draft"
2929
  msgstr ""
2930
 
2931
- #: classes/models/FrmFormAction.php:701
2932
  #: classes/views/frm-forms/add_field_links.php:7
2933
  #: classes/views/frm-forms/form.php:61
2934
  msgid "Create"
2935
  msgstr "Utwórz"
2936
 
2937
- #: classes/models/FrmFormAction.php:702
2938
  #: classes/views/frm-forms/_publish_box.php:34
2939
  #: classes/views/frm-forms/_publish_box.php:38
2940
  #: classes/views/frm-forms/add_field_links.php:7
@@ -2943,10 +2980,22 @@ msgstr "Utwórz"
2943
  msgid "Update"
2944
  msgstr "Aktualizuj"
2945
 
2946
- #: classes/models/FrmFormAction.php:704 classes/views/xml/import_form.php:10
2947
  msgid "Import"
2948
  msgstr "Import"
2949
 
 
 
 
 
 
 
 
 
 
 
 
 
2950
  #: classes/models/FrmMigrate.php:485
2951
  msgid "Sending"
2952
  msgstr ""
@@ -3310,6 +3359,10 @@ msgstr ""
3310
  msgid "Highrise"
3311
  msgstr ""
3312
 
 
 
 
 
3313
  #: classes/views/frm-forms/_publish_box.php:44
3314
  msgid "Preview"
3315
  msgstr "Podejrzyj"
@@ -4008,80 +4061,38 @@ msgid "HTML Tags"
4008
  msgstr ""
4009
 
4010
  #: classes/views/shared/mb_adv_info.php:15
4011
- #: classes/views/shared/mb_adv_info.php:124
4012
  msgid "IDs"
4013
  msgstr ""
4014
 
4015
  #: classes/views/shared/mb_adv_info.php:16
4016
- #: classes/views/shared/mb_adv_info.php:125
4017
  msgid "Keys"
4018
  msgstr "Klucze"
4019
 
4020
  #: classes/views/shared/mb_adv_info.php:18
4021
- #: classes/views/shared/mb_adv_info.php:127
4022
  msgid "Fields from your form"
4023
  msgstr ""
4024
 
4025
- #: classes/views/shared/mb_adv_info.php:90
4026
  msgid ""
4027
  "Click a button below to insert extra values from form entries or your site "
4028
  "settings."
4029
  msgstr ""
4030
 
4031
- #: classes/views/shared/mb_adv_info.php:93
4032
  msgid "Helpers"
4033
  msgstr "Pomoc"
4034
 
4035
- #: classes/views/shared/mb_adv_info.php:137
4036
  msgid "Conditional text here"
4037
  msgstr ""
4038
 
4039
- #: classes/views/shared/mb_adv_info.php:154
4040
  msgid "Click a button below to insert sample logic into your view"
4041
  msgstr ""
4042
 
4043
- #: classes/views/shared/mb_adv_info.php:174
4044
- msgid ""
4045
- "Customize the field values with the following parameters. Click to see a "
4046
- "sample."
4047
- msgstr ""
4048
-
4049
- #: classes/views/shared/mb_adv_info.php:193
4050
- msgid "Show image"
4051
- msgstr ""
4052
-
4053
- #: classes/views/shared/mb_adv_info.php:197
4054
- msgid "Image ID"
4055
- msgstr ""
4056
-
4057
- #: classes/views/shared/mb_adv_info.php:201
4058
- msgid "Image Name"
4059
- msgstr ""
4060
-
4061
- #: classes/views/shared/mb_adv_info.php:212
4062
- msgid "Insert user information"
4063
- msgstr ""
4064
-
4065
- #: classes/views/shared/mb_adv_info.php:231
4066
- msgid "Repeating field options"
4067
- msgstr ""
4068
-
4069
- #: classes/views/shared/mb_adv_info.php:234
4070
- msgid "For Each"
4071
- msgstr ""
4072
-
4073
- #: classes/views/shared/mb_adv_info.php:244
4074
- msgid "Dynamic field options"
4075
- msgstr ""
4076
-
4077
- #: classes/views/shared/mb_adv_info.php:247
4078
- msgid "Creation Date"
4079
- msgstr ""
4080
-
4081
- #: classes/views/shared/mb_adv_info.php:251
4082
- msgid "Field From Entry"
4083
- msgstr ""
4084
-
4085
  #: classes/views/styles/_buttons.php:4
4086
  msgid "Disable submit button styling"
4087
  msgstr "Wyłącz styl dla przycisków"
@@ -4450,23 +4461,23 @@ msgstr ""
4450
  msgid "Reset to Default"
4451
  msgstr ""
4452
 
4453
- #: classes/views/xml/import_form.php:12
4454
  msgid ""
4455
  "Upload your Formidable XML file to import forms into this site. If your "
4456
  "imported form key and creation date match a form on your site, that form "
4457
  "will be updated."
4458
  msgstr ""
4459
 
4460
- #: classes/views/xml/import_form.php:19
4461
  msgid "Choose a Formidable XML file"
4462
  msgstr ""
4463
 
4464
- #: classes/views/xml/import_form.php:20
4465
  #, php-format
4466
  msgid "Maximum size: %s"
4467
  msgstr ""
4468
 
4469
- #: classes/views/xml/import_form.php:28
4470
  msgid "Upload file and import"
4471
  msgstr ""
4472
 
2
  msgstr ""
3
  "Project-Id-Version: Formidable v2.05.02\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-10-15 19:32+0000\n"
6
+ "PO-Revision-Date: 2018-10-15 19:34+0000\n"
7
  "Last-Translator: Formidable Community\n"
8
  "Language-Team: Polish\n"
9
  "Language: pl_PL\n"
35
  msgid "There are no plugins on your site that require a license"
36
  msgstr ""
37
 
38
+ #: classes/controllers/FrmAppController.php:83
39
  msgid "Build"
40
  msgstr "Tworzenie"
41
 
42
+ #: classes/controllers/FrmAppController.php:90
43
  #: classes/helpers/FrmFormsListHelper.php:336
44
  #: classes/views/frm-forms/settings.php:10
45
  msgid "Settings"
46
  msgstr "Ustawienia"
47
 
48
+ #: classes/controllers/FrmAppController.php:97
49
  #: classes/controllers/FrmEntriesController.php:8
50
  #: classes/controllers/FrmEntriesController.php:8
51
  #: classes/controllers/FrmEntriesController.php:126
55
  msgid "Entries"
56
  msgstr "Wpisy"
57
 
58
+ #: classes/controllers/FrmAppController.php:113
59
  msgid "Build a Form"
60
  msgstr ""
61
 
62
+ #: classes/controllers/FrmAppController.php:146
63
  #, php-format
64
  msgid ""
65
  "This site has been previously authorized to run Formidable Forms. "
67
  "running the free version and remove this message."
68
  msgstr ""
69
 
70
+ #: classes/controllers/FrmAppController.php:505
71
  #, php-format
72
  msgid ""
73
  "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress."
103
  msgstr "Wsparcie"
104
 
105
  #: classes/controllers/FrmEntriesController.php:105
106
+ #: classes/controllers/FrmFormsController.php:877
107
  #: classes/views/frm-entries/form.php:43
108
  #: classes/views/frm-entries/sidebar-shared.php:38
109
  msgid "Entry Key"
159
  msgid "No entries were specified"
160
  msgstr "Nie określono wpisów"
161
 
162
+ #: classes/controllers/FrmFieldsController.php:304
163
  msgid "Other"
164
  msgstr ""
165
 
166
+ #: classes/controllers/FrmFieldsController.php:307
167
  msgid "New Option"
168
  msgstr ""
169
 
172
  msgid "Form Actions"
173
  msgstr ""
174
 
175
+ #: classes/controllers/FrmFormActionsController.php:213
176
  #: classes/models/FrmEntryValidate.php:14 classes/models/FrmSettings.php:100
177
  msgid "You do not have permission to do that"
178
  msgstr "Nie masz uprawnień aby to zrobić"
194
  msgstr "Formularz został zaktualizowany"
195
 
196
  #: classes/controllers/FrmFormsController.php:232
197
+ #: classes/controllers/FrmFormsController.php:1712
198
  msgid "Form template was Successfully Created"
199
  msgstr "Szablon formularza został utworzony"
200
 
306
  msgid "That template cannot be edited"
307
  msgstr "Ten szablon nie może być edytowany"
308
 
309
+ #: classes/controllers/FrmFormsController.php:802
310
+ msgid ""
311
+ "Customize the field values with the following parameters. Click to see a "
312
+ "sample."
313
+ msgstr ""
314
+
315
+ #: classes/controllers/FrmFormsController.php:816
316
+ msgid "Insert user information"
317
+ msgstr ""
318
+
319
+ #: classes/controllers/FrmFormsController.php:837
320
  msgid "Separator"
321
  msgstr ""
322
 
323
+ #: classes/controllers/FrmFormsController.php:838
324
  msgid "Use a different separator for checkbox fields"
325
  msgstr "Użyj różnych separatorów dla pól wyboru"
326
 
327
+ #: classes/controllers/FrmFormsController.php:840
328
  msgid "Date Format"
329
  msgstr "Format daty"
330
 
331
+ #: classes/controllers/FrmFormsController.php:841
332
  msgid "Field Label"
333
  msgstr ""
334
 
335
+ #: classes/controllers/FrmFormsController.php:843
336
  msgid "No Auto P"
337
  msgstr ""
338
 
339
+ #: classes/controllers/FrmFormsController.php:844
340
  msgid "Do not automatically add any paragraphs or line breaks"
341
  msgstr ""
342
 
343
+ #: classes/controllers/FrmFormsController.php:858
344
+ #: classes/models/FrmField.php:58
345
+ msgid "User ID"
346
+ msgstr "ID użytkownika"
347
+
348
+ #: classes/controllers/FrmFormsController.php:859
349
+ msgid "First Name"
350
+ msgstr ""
351
+
352
+ #: classes/controllers/FrmFormsController.php:860
353
+ msgid "Last Name"
354
+ msgstr ""
355
+
356
+ #: classes/controllers/FrmFormsController.php:861
357
+ msgid "Display Name"
358
+ msgstr ""
359
+
360
+ #: classes/controllers/FrmFormsController.php:862
361
+ msgid "User Login"
362
+ msgstr ""
363
+
364
+ #: classes/controllers/FrmFormsController.php:863
365
+ #: classes/models/FrmField.php:34
366
+ msgid "Email"
367
+ msgstr "Email"
368
+
369
+ #: classes/controllers/FrmFormsController.php:864
370
+ msgid "Avatar"
371
+ msgstr ""
372
+
373
+ #: classes/controllers/FrmFormsController.php:865
374
+ msgid "Author Link"
375
+ msgstr ""
376
+
377
+ #: classes/controllers/FrmFormsController.php:876
378
  #: classes/views/frm-entries/sidebar-shared.php:32
379
  msgid "Entry ID"
380
  msgstr "ID wpisu"
381
 
382
+ #: classes/controllers/FrmFormsController.php:878
383
  msgid "Post ID"
384
  msgstr "ID wpisu"
385
 
386
+ #: classes/controllers/FrmFormsController.php:879
387
  msgid "User IP"
388
  msgstr "IP użytkownika"
389
 
390
+ #: classes/controllers/FrmFormsController.php:880
391
  msgid "Entry created"
392
  msgstr ""
393
 
394
+ #: classes/controllers/FrmFormsController.php:881
395
  msgid "Entry updated"
396
  msgstr ""
397
 
398
+ #: classes/controllers/FrmFormsController.php:883
399
  msgid "Site URL"
400
  msgstr "Adres URL strony"
401
 
402
+ #: classes/controllers/FrmFormsController.php:884
403
  msgid "Site Name"
404
  msgstr "Nazwa strony"
405
 
406
+ #: classes/controllers/FrmFormsController.php:892
407
  msgid "Default Msg"
408
  msgstr ""
409
 
410
+ #: classes/controllers/FrmFormsController.php:893
411
  msgid "Default HTML"
412
  msgstr ""
413
 
414
+ #: classes/controllers/FrmFormsController.php:894
415
  msgid "Default Plain"
416
  msgstr ""
417
 
418
+ #: classes/controllers/FrmFormsController.php:982
419
  msgid "No forms were specified"
420
  msgstr "Żaden formularz nie został wybrany"
421
 
422
+ #: classes/controllers/FrmFormsController.php:1129
423
  msgid "Abnormal HTML characters prevented your form from saving correctly"
424
  msgstr ""
425
 
426
+ #: classes/controllers/FrmFormsController.php:1244
427
+ #: classes/controllers/FrmFormsController.php:1258
428
  msgid "Please select a valid form"
429
  msgstr "Wybierz właściwy formularz"
430
 
431
+ #: classes/controllers/FrmFormsController.php:1486
432
  msgid "Please wait while you are redirected."
433
  msgstr "Proszę poczekać na przekierowanie."
434
 
435
+ #: classes/controllers/FrmFormsController.php:1520
436
  #, php-format
437
  msgid "%1$sClick here%2$s if you are not automatically redirected."
438
  msgstr ""
2232
  msgid "Delete Permanently"
2233
  msgstr ""
2234
 
2235
+ #: classes/helpers/FrmFormsHelper.php:835 classes/models/FrmFormAction.php:744
2236
+ #: classes/views/frm-form-actions/form_action.php:19
2237
  msgid "Delete"
2238
  msgstr "Usuń"
2239
 
2650
  msgstr[1] ""
2651
  msgstr[2] ""
2652
 
2653
+ #: classes/helpers/FrmXMLHelper.php:853 classes/models/FrmFormMigrator.php:388
2654
  #, php-format
2655
  msgid "%1$s Field"
2656
  msgid_plural "%1$s Fields"
2854
  msgid "Dropdown"
2855
  msgstr "Lista rozwijana"
2856
 
 
 
 
 
2857
  #: classes/models/FrmField.php:38
2858
  msgid "Website/URL"
2859
  msgstr "Strona www/URL"
2874
  msgid "Hidden Field"
2875
  msgstr "Pole ukryte"
2876
 
 
 
 
 
2877
  #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
2878
  msgid "reCAPTCHA"
2879
  msgstr "reCAPTCHA"
2960
  msgid "There are no options for this action."
2961
  msgstr ""
2962
 
2963
+ #: classes/models/FrmFormAction.php:741
2964
  #: classes/views/frm-forms/_publish_box.php:30
2965
  msgid "Save Draft"
2966
  msgstr ""
2967
 
2968
+ #: classes/models/FrmFormAction.php:742
2969
  #: classes/views/frm-forms/add_field_links.php:7
2970
  #: classes/views/frm-forms/form.php:61
2971
  msgid "Create"
2972
  msgstr "Utwórz"
2973
 
2974
+ #: classes/models/FrmFormAction.php:743
2975
  #: classes/views/frm-forms/_publish_box.php:34
2976
  #: classes/views/frm-forms/_publish_box.php:38
2977
  #: classes/views/frm-forms/add_field_links.php:7
2980
  msgid "Update"
2981
  msgstr "Aktualizuj"
2982
 
2983
+ #: classes/models/FrmFormAction.php:745 classes/views/xml/import_form.php:9
2984
  msgid "Import"
2985
  msgstr "Import"
2986
 
2987
+ #: classes/models/FrmFormMigrator.php:137
2988
+ msgid "No form fields found."
2989
+ msgstr ""
2990
+
2991
+ #: classes/models/FrmFormMigrator.php:229
2992
+ msgid "There was an error while creating a new form."
2993
+ msgstr ""
2994
+
2995
+ #: classes/models/FrmFormMigrator.php:360
2996
+ msgid "Default Form"
2997
+ msgstr ""
2998
+
2999
  #: classes/models/FrmMigrate.php:485
3000
  msgid "Sending"
3001
  msgstr ""
3359
  msgid "Highrise"
3360
  msgstr ""
3361
 
3362
+ #: classes/views/frm-form-actions/form_action.php:17
3363
+ msgid "Duplicate"
3364
+ msgstr ""
3365
+
3366
  #: classes/views/frm-forms/_publish_box.php:44
3367
  msgid "Preview"
3368
  msgstr "Podejrzyj"
4061
  msgstr ""
4062
 
4063
  #: classes/views/shared/mb_adv_info.php:15
4064
+ #: classes/views/shared/mb_adv_info.php:87
4065
  msgid "IDs"
4066
  msgstr ""
4067
 
4068
  #: classes/views/shared/mb_adv_info.php:16
4069
+ #: classes/views/shared/mb_adv_info.php:88
4070
  msgid "Keys"
4071
  msgstr "Klucze"
4072
 
4073
  #: classes/views/shared/mb_adv_info.php:18
4074
+ #: classes/views/shared/mb_adv_info.php:90
4075
  msgid "Fields from your form"
4076
  msgstr ""
4077
 
4078
+ #: classes/views/shared/mb_adv_info.php:53
4079
  msgid ""
4080
  "Click a button below to insert extra values from form entries or your site "
4081
  "settings."
4082
  msgstr ""
4083
 
4084
+ #: classes/views/shared/mb_adv_info.php:56
4085
  msgid "Helpers"
4086
  msgstr "Pomoc"
4087
 
4088
+ #: classes/views/shared/mb_adv_info.php:100
4089
  msgid "Conditional text here"
4090
  msgstr ""
4091
 
4092
+ #: classes/views/shared/mb_adv_info.php:115
4093
  msgid "Click a button below to insert sample logic into your view"
4094
  msgstr ""
4095
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4096
  #: classes/views/styles/_buttons.php:4
4097
  msgid "Disable submit button styling"
4098
  msgstr "Wyłącz styl dla przycisków"
4461
  msgid "Reset to Default"
4462
  msgstr ""
4463
 
4464
+ #: classes/views/xml/import_form.php:11
4465
  msgid ""
4466
  "Upload your Formidable XML file to import forms into this site. If your "
4467
  "imported form key and creation date match a form on your site, that form "
4468
  "will be updated."
4469
  msgstr ""
4470
 
4471
+ #: classes/views/xml/import_form.php:18
4472
  msgid "Choose a Formidable XML file"
4473
  msgstr ""
4474
 
4475
+ #: classes/views/xml/import_form.php:19
4476
  #, php-format
4477
  msgid "Maximum size: %s"
4478
  msgstr ""
4479
 
4480
+ #: classes/views/xml/import_form.php:27
4481
  msgid "Upload file and import"
4482
  msgstr ""
4483
 
languages/formidable-ro_RO.mo CHANGED
Binary file
languages/formidable-ro_RO.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Formidable v2.05.02\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-09-12 16:44+0000\n"
6
- "PO-Revision-Date: 2018-09-12 16:46+0000\n"
7
  "Last-Translator: Formidable Community\n"
8
  "Language-Team: Romanian\n"
9
  "Language: ro_RO\n"
@@ -35,17 +35,17 @@ msgstr "Actualizează la Pro"
35
  msgid "There are no plugins on your site that require a license"
36
  msgstr ""
37
 
38
- #: classes/controllers/FrmAppController.php:91
39
  msgid "Build"
40
  msgstr ""
41
 
42
- #: classes/controllers/FrmAppController.php:98
43
  #: classes/helpers/FrmFormsListHelper.php:336
44
  #: classes/views/frm-forms/settings.php:10
45
  msgid "Settings"
46
  msgstr "Setări"
47
 
48
- #: classes/controllers/FrmAppController.php:105
49
  #: classes/controllers/FrmEntriesController.php:8
50
  #: classes/controllers/FrmEntriesController.php:8
51
  #: classes/controllers/FrmEntriesController.php:126
@@ -55,11 +55,11 @@ msgstr "Setări"
55
  msgid "Entries"
56
  msgstr "Intrări"
57
 
58
- #: classes/controllers/FrmAppController.php:121
59
  msgid "Build a Form"
60
  msgstr ""
61
 
62
- #: classes/controllers/FrmAppController.php:154
63
  #, php-format
64
  msgid ""
65
  "This site has been previously authorized to run Formidable Forms. "
@@ -67,7 +67,7 @@ msgid ""
67
  "running the free version and remove this message."
68
  msgstr ""
69
 
70
- #: classes/controllers/FrmAppController.php:513
71
  #, php-format
72
  msgid ""
73
  "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress."
@@ -103,7 +103,7 @@ msgid "Support"
103
  msgstr "Suport"
104
 
105
  #: classes/controllers/FrmEntriesController.php:105
106
- #: classes/controllers/FrmFormsController.php:827
107
  #: classes/views/frm-entries/form.php:43
108
  #: classes/views/frm-entries/sidebar-shared.php:38
109
  msgid "Entry Key"
@@ -159,11 +159,11 @@ msgstr ""
159
  msgid "No entries were specified"
160
  msgstr ""
161
 
162
- #: classes/controllers/FrmFieldsController.php:302
163
  msgid "Other"
164
  msgstr ""
165
 
166
- #: classes/controllers/FrmFieldsController.php:305
167
  msgid "New Option"
168
  msgstr ""
169
 
@@ -172,7 +172,7 @@ msgstr ""
172
  msgid "Form Actions"
173
  msgstr ""
174
 
175
- #: classes/controllers/FrmFormActionsController.php:210
176
  #: classes/models/FrmEntryValidate.php:14 classes/models/FrmSettings.php:100
177
  msgid "You do not have permission to do that"
178
  msgstr ""
@@ -194,7 +194,7 @@ msgid "Form was Successfully Updated"
194
  msgstr ""
195
 
196
  #: classes/controllers/FrmFormsController.php:232
197
- #: classes/controllers/FrmFormsController.php:1662
198
  msgid "Form template was Successfully Created"
199
  msgstr ""
200
 
@@ -306,89 +306,133 @@ msgstr ""
306
  msgid "That template cannot be edited"
307
  msgstr ""
308
 
309
- #: classes/controllers/FrmFormsController.php:804
 
 
 
 
 
 
 
 
 
 
310
  msgid "Separator"
311
  msgstr "Separator"
312
 
313
- #: classes/controllers/FrmFormsController.php:805
314
  msgid "Use a different separator for checkbox fields"
315
  msgstr ""
316
 
317
- #: classes/controllers/FrmFormsController.php:807
318
  msgid "Date Format"
319
  msgstr "Format dată"
320
 
321
- #: classes/controllers/FrmFormsController.php:808
322
  msgid "Field Label"
323
  msgstr "Etichetă câmp"
324
 
325
- #: classes/controllers/FrmFormsController.php:810
326
  msgid "No Auto P"
327
  msgstr ""
328
 
329
- #: classes/controllers/FrmFormsController.php:811
330
  msgid "Do not automatically add any paragraphs or line breaks"
331
  msgstr ""
332
 
333
- #: classes/controllers/FrmFormsController.php:826
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
334
  #: classes/views/frm-entries/sidebar-shared.php:32
335
  msgid "Entry ID"
336
  msgstr ""
337
 
338
- #: classes/controllers/FrmFormsController.php:828
339
  msgid "Post ID"
340
  msgstr "ID articol"
341
 
342
- #: classes/controllers/FrmFormsController.php:829
343
  msgid "User IP"
344
  msgstr "IP utilizator"
345
 
346
- #: classes/controllers/FrmFormsController.php:830
347
  msgid "Entry created"
348
  msgstr ""
349
 
350
- #: classes/controllers/FrmFormsController.php:831
351
  msgid "Entry updated"
352
  msgstr ""
353
 
354
- #: classes/controllers/FrmFormsController.php:833
355
  msgid "Site URL"
356
  msgstr "URL sit"
357
 
358
- #: classes/controllers/FrmFormsController.php:834
359
  msgid "Site Name"
360
  msgstr ""
361
 
362
- #: classes/controllers/FrmFormsController.php:842
363
  msgid "Default Msg"
364
  msgstr ""
365
 
366
- #: classes/controllers/FrmFormsController.php:843
367
  msgid "Default HTML"
368
  msgstr ""
369
 
370
- #: classes/controllers/FrmFormsController.php:844
371
  msgid "Default Plain"
372
  msgstr ""
373
 
374
- #: classes/controllers/FrmFormsController.php:932
375
  msgid "No forms were specified"
376
  msgstr ""
377
 
378
- #: classes/controllers/FrmFormsController.php:1079
379
  msgid "Abnormal HTML characters prevented your form from saving correctly"
380
  msgstr ""
381
 
382
- #: classes/controllers/FrmFormsController.php:1194
383
- #: classes/controllers/FrmFormsController.php:1208
384
  msgid "Please select a valid form"
385
  msgstr ""
386
 
387
- #: classes/controllers/FrmFormsController.php:1436
388
  msgid "Please wait while you are redirected."
389
  msgstr "Vă rugăm să așteptați până sunteți redirectat."
390
 
391
- #: classes/controllers/FrmFormsController.php:1470
392
  #, php-format
393
  msgid "%1$sClick here%2$s if you are not automatically redirected."
394
  msgstr ""
@@ -2184,7 +2228,8 @@ msgstr "Gunoi"
2184
  msgid "Delete Permanently"
2185
  msgstr "Șterge definitiv"
2186
 
2187
- #: classes/helpers/FrmFormsHelper.php:835 classes/models/FrmFormAction.php:703
 
2188
  msgid "Delete"
2189
  msgstr "Șterge"
2190
 
@@ -2601,7 +2646,7 @@ msgstr[0] ""
2601
  msgstr[1] ""
2602
  msgstr[2] ""
2603
 
2604
- #: classes/helpers/FrmXMLHelper.php:853
2605
  #, php-format
2606
  msgid "%1$s Field"
2607
  msgid_plural "%1$s Fields"
@@ -2805,10 +2850,6 @@ msgstr ""
2805
  msgid "Dropdown"
2806
  msgstr "Listă derulantă"
2807
 
2808
- #: classes/models/FrmField.php:34
2809
- msgid "Email"
2810
- msgstr "Adresa de email"
2811
-
2812
  #: classes/models/FrmField.php:38
2813
  msgid "Website/URL"
2814
  msgstr ""
@@ -2829,10 +2870,6 @@ msgstr "HTML"
2829
  msgid "Hidden Field"
2830
  msgstr "Câmp ascuns"
2831
 
2832
- #: classes/models/FrmField.php:58
2833
- msgid "User ID"
2834
- msgstr ""
2835
-
2836
  #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
2837
  msgid "reCAPTCHA"
2838
  msgstr "reCAPTCHA"
@@ -2919,18 +2956,18 @@ msgstr ""
2919
  msgid "There are no options for this action."
2920
  msgstr ""
2921
 
2922
- #: classes/models/FrmFormAction.php:700
2923
  #: classes/views/frm-forms/_publish_box.php:30
2924
  msgid "Save Draft"
2925
  msgstr "Salvare ciornă"
2926
 
2927
- #: classes/models/FrmFormAction.php:701
2928
  #: classes/views/frm-forms/add_field_links.php:7
2929
  #: classes/views/frm-forms/form.php:61
2930
  msgid "Create"
2931
  msgstr "Creează"
2932
 
2933
- #: classes/models/FrmFormAction.php:702
2934
  #: classes/views/frm-forms/_publish_box.php:34
2935
  #: classes/views/frm-forms/_publish_box.php:38
2936
  #: classes/views/frm-forms/add_field_links.php:7
@@ -2939,10 +2976,22 @@ msgstr "Creează"
2939
  msgid "Update"
2940
  msgstr "Actualizare"
2941
 
2942
- #: classes/models/FrmFormAction.php:704 classes/views/xml/import_form.php:10
2943
  msgid "Import"
2944
  msgstr "Import"
2945
 
 
 
 
 
 
 
 
 
 
 
 
 
2946
  #: classes/models/FrmMigrate.php:485
2947
  msgid "Sending"
2948
  msgstr ""
@@ -3304,6 +3353,10 @@ msgstr ""
3304
  msgid "Highrise"
3305
  msgstr ""
3306
 
 
 
 
 
3307
  #: classes/views/frm-forms/_publish_box.php:44
3308
  msgid "Preview"
3309
  msgstr "Previzualizare"
@@ -3987,80 +4040,38 @@ msgid "HTML Tags"
3987
  msgstr ""
3988
 
3989
  #: classes/views/shared/mb_adv_info.php:15
3990
- #: classes/views/shared/mb_adv_info.php:124
3991
  msgid "IDs"
3992
  msgstr "ID-uri"
3993
 
3994
  #: classes/views/shared/mb_adv_info.php:16
3995
- #: classes/views/shared/mb_adv_info.php:125
3996
  msgid "Keys"
3997
  msgstr "Chei"
3998
 
3999
  #: classes/views/shared/mb_adv_info.php:18
4000
- #: classes/views/shared/mb_adv_info.php:127
4001
  msgid "Fields from your form"
4002
  msgstr ""
4003
 
4004
- #: classes/views/shared/mb_adv_info.php:90
4005
  msgid ""
4006
  "Click a button below to insert extra values from form entries or your site "
4007
  "settings."
4008
  msgstr ""
4009
 
4010
- #: classes/views/shared/mb_adv_info.php:93
4011
  msgid "Helpers"
4012
  msgstr ""
4013
 
4014
- #: classes/views/shared/mb_adv_info.php:137
4015
  msgid "Conditional text here"
4016
  msgstr ""
4017
 
4018
- #: classes/views/shared/mb_adv_info.php:154
4019
  msgid "Click a button below to insert sample logic into your view"
4020
  msgstr ""
4021
 
4022
- #: classes/views/shared/mb_adv_info.php:174
4023
- msgid ""
4024
- "Customize the field values with the following parameters. Click to see a "
4025
- "sample."
4026
- msgstr ""
4027
-
4028
- #: classes/views/shared/mb_adv_info.php:193
4029
- msgid "Show image"
4030
- msgstr ""
4031
-
4032
- #: classes/views/shared/mb_adv_info.php:197
4033
- msgid "Image ID"
4034
- msgstr "ID imagine"
4035
-
4036
- #: classes/views/shared/mb_adv_info.php:201
4037
- msgid "Image Name"
4038
- msgstr ""
4039
-
4040
- #: classes/views/shared/mb_adv_info.php:212
4041
- msgid "Insert user information"
4042
- msgstr ""
4043
-
4044
- #: classes/views/shared/mb_adv_info.php:231
4045
- msgid "Repeating field options"
4046
- msgstr ""
4047
-
4048
- #: classes/views/shared/mb_adv_info.php:234
4049
- msgid "For Each"
4050
- msgstr ""
4051
-
4052
- #: classes/views/shared/mb_adv_info.php:244
4053
- msgid "Dynamic field options"
4054
- msgstr ""
4055
-
4056
- #: classes/views/shared/mb_adv_info.php:247
4057
- msgid "Creation Date"
4058
- msgstr ""
4059
-
4060
- #: classes/views/shared/mb_adv_info.php:251
4061
- msgid "Field From Entry"
4062
- msgstr ""
4063
-
4064
  #: classes/views/styles/_buttons.php:4
4065
  msgid "Disable submit button styling"
4066
  msgstr ""
@@ -4425,23 +4436,23 @@ msgstr ""
4425
  msgid "Reset to Default"
4426
  msgstr ""
4427
 
4428
- #: classes/views/xml/import_form.php:12
4429
  msgid ""
4430
  "Upload your Formidable XML file to import forms into this site. If your "
4431
  "imported form key and creation date match a form on your site, that form "
4432
  "will be updated."
4433
  msgstr ""
4434
 
4435
- #: classes/views/xml/import_form.php:19
4436
  msgid "Choose a Formidable XML file"
4437
  msgstr ""
4438
 
4439
- #: classes/views/xml/import_form.php:20
4440
  #, php-format
4441
  msgid "Maximum size: %s"
4442
  msgstr ""
4443
 
4444
- #: classes/views/xml/import_form.php:28
4445
  msgid "Upload file and import"
4446
  msgstr ""
4447
 
2
  msgstr ""
3
  "Project-Id-Version: Formidable v2.05.02\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-10-15 19:32+0000\n"
6
+ "PO-Revision-Date: 2018-10-15 19:34+0000\n"
7
  "Last-Translator: Formidable Community\n"
8
  "Language-Team: Romanian\n"
9
  "Language: ro_RO\n"
35
  msgid "There are no plugins on your site that require a license"
36
  msgstr ""
37
 
38
+ #: classes/controllers/FrmAppController.php:83
39
  msgid "Build"
40
  msgstr ""
41
 
42
+ #: classes/controllers/FrmAppController.php:90
43
  #: classes/helpers/FrmFormsListHelper.php:336
44
  #: classes/views/frm-forms/settings.php:10
45
  msgid "Settings"
46
  msgstr "Setări"
47
 
48
+ #: classes/controllers/FrmAppController.php:97
49
  #: classes/controllers/FrmEntriesController.php:8
50
  #: classes/controllers/FrmEntriesController.php:8
51
  #: classes/controllers/FrmEntriesController.php:126
55
  msgid "Entries"
56
  msgstr "Intrări"
57
 
58
+ #: classes/controllers/FrmAppController.php:113
59
  msgid "Build a Form"
60
  msgstr ""
61
 
62
+ #: classes/controllers/FrmAppController.php:146
63
  #, php-format
64
  msgid ""
65
  "This site has been previously authorized to run Formidable Forms. "
67
  "running the free version and remove this message."
68
  msgstr ""
69
 
70
+ #: classes/controllers/FrmAppController.php:505
71
  #, php-format
72
  msgid ""
73
  "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress."
103
  msgstr "Suport"
104
 
105
  #: classes/controllers/FrmEntriesController.php:105
106
+ #: classes/controllers/FrmFormsController.php:877
107
  #: classes/views/frm-entries/form.php:43
108
  #: classes/views/frm-entries/sidebar-shared.php:38
109
  msgid "Entry Key"
159
  msgid "No entries were specified"
160
  msgstr ""
161
 
162
+ #: classes/controllers/FrmFieldsController.php:304
163
  msgid "Other"
164
  msgstr ""
165
 
166
+ #: classes/controllers/FrmFieldsController.php:307
167
  msgid "New Option"
168
  msgstr ""
169
 
172
  msgid "Form Actions"
173
  msgstr ""
174
 
175
+ #: classes/controllers/FrmFormActionsController.php:213
176
  #: classes/models/FrmEntryValidate.php:14 classes/models/FrmSettings.php:100
177
  msgid "You do not have permission to do that"
178
  msgstr ""
194
  msgstr ""
195
 
196
  #: classes/controllers/FrmFormsController.php:232
197
+ #: classes/controllers/FrmFormsController.php:1712
198
  msgid "Form template was Successfully Created"
199
  msgstr ""
200
 
306
  msgid "That template cannot be edited"
307
  msgstr ""
308
 
309
+ #: classes/controllers/FrmFormsController.php:802
310
+ msgid ""
311
+ "Customize the field values with the following parameters. Click to see a "
312
+ "sample."
313
+ msgstr ""
314
+
315
+ #: classes/controllers/FrmFormsController.php:816
316
+ msgid "Insert user information"
317
+ msgstr ""
318
+
319
+ #: classes/controllers/FrmFormsController.php:837
320
  msgid "Separator"
321
  msgstr "Separator"
322
 
323
+ #: classes/controllers/FrmFormsController.php:838
324
  msgid "Use a different separator for checkbox fields"
325
  msgstr ""
326
 
327
+ #: classes/controllers/FrmFormsController.php:840
328
  msgid "Date Format"
329
  msgstr "Format dată"
330
 
331
+ #: classes/controllers/FrmFormsController.php:841
332
  msgid "Field Label"
333
  msgstr "Etichetă câmp"
334
 
335
+ #: classes/controllers/FrmFormsController.php:843
336
  msgid "No Auto P"
337
  msgstr ""
338
 
339
+ #: classes/controllers/FrmFormsController.php:844
340
  msgid "Do not automatically add any paragraphs or line breaks"
341
  msgstr ""
342
 
343
+ #: classes/controllers/FrmFormsController.php:858
344
+ #: classes/models/FrmField.php:58
345
+ msgid "User ID"
346
+ msgstr ""
347
+
348
+ #: classes/controllers/FrmFormsController.php:859
349
+ msgid "First Name"
350
+ msgstr ""
351
+
352
+ #: classes/controllers/FrmFormsController.php:860
353
+ msgid "Last Name"
354
+ msgstr ""
355
+
356
+ #: classes/controllers/FrmFormsController.php:861
357
+ msgid "Display Name"
358
+ msgstr ""
359
+
360
+ #: classes/controllers/FrmFormsController.php:862
361
+ msgid "User Login"
362
+ msgstr ""
363
+
364
+ #: classes/controllers/FrmFormsController.php:863
365
+ #: classes/models/FrmField.php:34
366
+ msgid "Email"
367
+ msgstr "Adresa de email"
368
+
369
+ #: classes/controllers/FrmFormsController.php:864
370
+ msgid "Avatar"
371
+ msgstr ""
372
+
373
+ #: classes/controllers/FrmFormsController.php:865
374
+ msgid "Author Link"
375
+ msgstr ""
376
+
377
+ #: classes/controllers/FrmFormsController.php:876
378
  #: classes/views/frm-entries/sidebar-shared.php:32
379
  msgid "Entry ID"
380
  msgstr ""
381
 
382
+ #: classes/controllers/FrmFormsController.php:878
383
  msgid "Post ID"
384
  msgstr "ID articol"
385
 
386
+ #: classes/controllers/FrmFormsController.php:879
387
  msgid "User IP"
388
  msgstr "IP utilizator"
389
 
390
+ #: classes/controllers/FrmFormsController.php:880
391
  msgid "Entry created"
392
  msgstr ""
393
 
394
+ #: classes/controllers/FrmFormsController.php:881
395
  msgid "Entry updated"
396
  msgstr ""
397
 
398
+ #: classes/controllers/FrmFormsController.php:883
399
  msgid "Site URL"
400
  msgstr "URL sit"
401
 
402
+ #: classes/controllers/FrmFormsController.php:884
403
  msgid "Site Name"
404
  msgstr ""
405
 
406
+ #: classes/controllers/FrmFormsController.php:892
407
  msgid "Default Msg"
408
  msgstr ""
409
 
410
+ #: classes/controllers/FrmFormsController.php:893
411
  msgid "Default HTML"
412
  msgstr ""
413
 
414
+ #: classes/controllers/FrmFormsController.php:894
415
  msgid "Default Plain"
416
  msgstr ""
417
 
418
+ #: classes/controllers/FrmFormsController.php:982
419
  msgid "No forms were specified"
420
  msgstr ""
421
 
422
+ #: classes/controllers/FrmFormsController.php:1129
423
  msgid "Abnormal HTML characters prevented your form from saving correctly"
424
  msgstr ""
425
 
426
+ #: classes/controllers/FrmFormsController.php:1244
427
+ #: classes/controllers/FrmFormsController.php:1258
428
  msgid "Please select a valid form"
429
  msgstr ""
430
 
431
+ #: classes/controllers/FrmFormsController.php:1486
432
  msgid "Please wait while you are redirected."
433
  msgstr "Vă rugăm să așteptați până sunteți redirectat."
434
 
435
+ #: classes/controllers/FrmFormsController.php:1520
436
  #, php-format
437
  msgid "%1$sClick here%2$s if you are not automatically redirected."
438
  msgstr ""
2228
  msgid "Delete Permanently"
2229
  msgstr "Șterge definitiv"
2230
 
2231
+ #: classes/helpers/FrmFormsHelper.php:835 classes/models/FrmFormAction.php:744
2232
+ #: classes/views/frm-form-actions/form_action.php:19
2233
  msgid "Delete"
2234
  msgstr "Șterge"
2235
 
2646
  msgstr[1] ""
2647
  msgstr[2] ""
2648
 
2649
+ #: classes/helpers/FrmXMLHelper.php:853 classes/models/FrmFormMigrator.php:388
2650
  #, php-format
2651
  msgid "%1$s Field"
2652
  msgid_plural "%1$s Fields"
2850
  msgid "Dropdown"
2851
  msgstr "Listă derulantă"
2852
 
 
 
 
 
2853
  #: classes/models/FrmField.php:38
2854
  msgid "Website/URL"
2855
  msgstr ""
2870
  msgid "Hidden Field"
2871
  msgstr "Câmp ascuns"
2872
 
 
 
 
 
2873
  #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
2874
  msgid "reCAPTCHA"
2875
  msgstr "reCAPTCHA"
2956
  msgid "There are no options for this action."
2957
  msgstr ""
2958
 
2959
+ #: classes/models/FrmFormAction.php:741
2960
  #: classes/views/frm-forms/_publish_box.php:30
2961
  msgid "Save Draft"
2962
  msgstr "Salvare ciornă"
2963
 
2964
+ #: classes/models/FrmFormAction.php:742
2965
  #: classes/views/frm-forms/add_field_links.php:7
2966
  #: classes/views/frm-forms/form.php:61
2967
  msgid "Create"
2968
  msgstr "Creează"
2969
 
2970
+ #: classes/models/FrmFormAction.php:743
2971
  #: classes/views/frm-forms/_publish_box.php:34
2972
  #: classes/views/frm-forms/_publish_box.php:38
2973
  #: classes/views/frm-forms/add_field_links.php:7
2976
  msgid "Update"
2977
  msgstr "Actualizare"
2978
 
2979
+ #: classes/models/FrmFormAction.php:745 classes/views/xml/import_form.php:9
2980
  msgid "Import"
2981
  msgstr "Import"
2982
 
2983
+ #: classes/models/FrmFormMigrator.php:137
2984
+ msgid "No form fields found."
2985
+ msgstr ""
2986
+
2987
+ #: classes/models/FrmFormMigrator.php:229
2988
+ msgid "There was an error while creating a new form."
2989
+ msgstr ""
2990
+
2991
+ #: classes/models/FrmFormMigrator.php:360
2992
+ msgid "Default Form"
2993
+ msgstr ""
2994
+
2995
  #: classes/models/FrmMigrate.php:485
2996
  msgid "Sending"
2997
  msgstr ""
3353
  msgid "Highrise"
3354
  msgstr ""
3355
 
3356
+ #: classes/views/frm-form-actions/form_action.php:17
3357
+ msgid "Duplicate"
3358
+ msgstr ""
3359
+
3360
  #: classes/views/frm-forms/_publish_box.php:44
3361
  msgid "Preview"
3362
  msgstr "Previzualizare"
4040
  msgstr ""
4041
 
4042
  #: classes/views/shared/mb_adv_info.php:15
4043
+ #: classes/views/shared/mb_adv_info.php:87
4044
  msgid "IDs"
4045
  msgstr "ID-uri"
4046
 
4047
  #: classes/views/shared/mb_adv_info.php:16
4048
+ #: classes/views/shared/mb_adv_info.php:88
4049
  msgid "Keys"
4050
  msgstr "Chei"
4051
 
4052
  #: classes/views/shared/mb_adv_info.php:18
4053
+ #: classes/views/shared/mb_adv_info.php:90
4054
  msgid "Fields from your form"
4055
  msgstr ""
4056
 
4057
+ #: classes/views/shared/mb_adv_info.php:53
4058
  msgid ""
4059
  "Click a button below to insert extra values from form entries or your site "
4060
  "settings."
4061
  msgstr ""
4062
 
4063
+ #: classes/views/shared/mb_adv_info.php:56
4064
  msgid "Helpers"
4065
  msgstr ""
4066
 
4067
+ #: classes/views/shared/mb_adv_info.php:100
4068
  msgid "Conditional text here"
4069
  msgstr ""
4070
 
4071
+ #: classes/views/shared/mb_adv_info.php:115
4072
  msgid "Click a button below to insert sample logic into your view"
4073
  msgstr ""
4074
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4075
  #: classes/views/styles/_buttons.php:4
4076
  msgid "Disable submit button styling"
4077
  msgstr ""
4436
  msgid "Reset to Default"
4437
  msgstr ""
4438
 
4439
+ #: classes/views/xml/import_form.php:11
4440
  msgid ""
4441
  "Upload your Formidable XML file to import forms into this site. If your "
4442
  "imported form key and creation date match a form on your site, that form "
4443
  "will be updated."
4444
  msgstr ""
4445
 
4446
+ #: classes/views/xml/import_form.php:18
4447
  msgid "Choose a Formidable XML file"
4448
  msgstr ""
4449
 
4450
+ #: classes/views/xml/import_form.php:19
4451
  #, php-format
4452
  msgid "Maximum size: %s"
4453
  msgstr ""
4454
 
4455
+ #: classes/views/xml/import_form.php:27
4456
  msgid "Upload file and import"
4457
  msgstr ""
4458
 
languages/formidable-sr_RS.mo CHANGED
Binary file
languages/formidable-sr_RS.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Formidable v2.05.02\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-09-12 16:44+0000\n"
6
- "PO-Revision-Date: 2018-09-12 16:47+0000\n"
7
  "Last-Translator: Formidable Community\n"
8
  "Language-Team: Serbian\n"
9
  "Language: sr_RS\n"
@@ -35,17 +35,17 @@ msgstr ""
35
  msgid "There are no plugins on your site that require a license"
36
  msgstr ""
37
 
38
- #: classes/controllers/FrmAppController.php:91
39
  msgid "Build"
40
  msgstr "Napraviti"
41
 
42
- #: classes/controllers/FrmAppController.php:98
43
  #: classes/helpers/FrmFormsListHelper.php:336
44
  #: classes/views/frm-forms/settings.php:10
45
  msgid "Settings"
46
  msgstr "Postavke"
47
 
48
- #: classes/controllers/FrmAppController.php:105
49
  #: classes/controllers/FrmEntriesController.php:8
50
  #: classes/controllers/FrmEntriesController.php:8
51
  #: classes/controllers/FrmEntriesController.php:126
@@ -55,11 +55,11 @@ msgstr "Postavke"
55
  msgid "Entries"
56
  msgstr "Unošenja"
57
 
58
- #: classes/controllers/FrmAppController.php:121
59
  msgid "Build a Form"
60
  msgstr ""
61
 
62
- #: classes/controllers/FrmAppController.php:154
63
  #, php-format
64
  msgid ""
65
  "This site has been previously authorized to run Formidable Forms. "
@@ -67,7 +67,7 @@ msgid ""
67
  "running the free version and remove this message."
68
  msgstr ""
69
 
70
- #: classes/controllers/FrmAppController.php:513
71
  #, php-format
72
  msgid ""
73
  "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress."
@@ -103,7 +103,7 @@ msgid "Support"
103
  msgstr "Podrška"
104
 
105
  #: classes/controllers/FrmEntriesController.php:105
106
- #: classes/controllers/FrmFormsController.php:827
107
  #: classes/views/frm-entries/form.php:43
108
  #: classes/views/frm-entries/sidebar-shared.php:38
109
  msgid "Entry Key"
@@ -159,11 +159,11 @@ msgstr "Unosi su uspešno uništeni "
159
  msgid "No entries were specified"
160
  msgstr "Nijedan unos nije odredjen"
161
 
162
- #: classes/controllers/FrmFieldsController.php:302
163
  msgid "Other"
164
  msgstr ""
165
 
166
- #: classes/controllers/FrmFieldsController.php:305
167
  msgid "New Option"
168
  msgstr ""
169
 
@@ -172,7 +172,7 @@ msgstr ""
172
  msgid "Form Actions"
173
  msgstr ""
174
 
175
- #: classes/controllers/FrmFormActionsController.php:210
176
  #: classes/models/FrmEntryValidate.php:14 classes/models/FrmSettings.php:100
177
  msgid "You do not have permission to do that"
178
  msgstr "Nemate dozvolu da uradito to."
@@ -194,7 +194,7 @@ msgid "Form was Successfully Updated"
194
  msgstr "Forme su uspešno update-ovane"
195
 
196
  #: classes/controllers/FrmFormsController.php:232
197
- #: classes/controllers/FrmFormsController.php:1662
198
  msgid "Form template was Successfully Created"
199
  msgstr "Template forme su uspešno kreirane"
200
 
@@ -306,89 +306,133 @@ msgstr "Template uspešno updateovana"
306
  msgid "That template cannot be edited"
307
  msgstr "Ova template ne može da se edituje"
308
 
309
- #: classes/controllers/FrmFormsController.php:804
 
 
 
 
 
 
 
 
 
 
310
  msgid "Separator"
311
  msgstr "Separator"
312
 
313
- #: classes/controllers/FrmFormsController.php:805
314
  msgid "Use a different separator for checkbox fields"
315
  msgstr "Koristite drugačiji separatora za potvrdu polja"
316
 
317
- #: classes/controllers/FrmFormsController.php:807
318
  msgid "Date Format"
319
  msgstr " Format datuma"
320
 
321
- #: classes/controllers/FrmFormsController.php:808
322
  msgid "Field Label"
323
  msgstr "Oznaka polja"
324
 
325
- #: classes/controllers/FrmFormsController.php:810
326
  msgid "No Auto P"
327
  msgstr "Nema auto p"
328
 
329
- #: classes/controllers/FrmFormsController.php:811
330
  msgid "Do not automatically add any paragraphs or line breaks"
331
  msgstr "Nemojte da automatski dodajete paragrafe ili zagrade"
332
 
333
- #: classes/controllers/FrmFormsController.php:826
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
334
  #: classes/views/frm-entries/sidebar-shared.php:32
335
  msgid "Entry ID"
336
  msgstr "Uneti ID"
337
 
338
- #: classes/controllers/FrmFormsController.php:828
339
  msgid "Post ID"
340
  msgstr "Post ID"
341
 
342
- #: classes/controllers/FrmFormsController.php:829
343
  msgid "User IP"
344
  msgstr "IP korisnika"
345
 
346
- #: classes/controllers/FrmFormsController.php:830
347
  msgid "Entry created"
348
  msgstr "Unos stvoren"
349
 
350
- #: classes/controllers/FrmFormsController.php:831
351
  msgid "Entry updated"
352
  msgstr "Unos updateovan"
353
 
354
- #: classes/controllers/FrmFormsController.php:833
355
  msgid "Site URL"
356
  msgstr "URL sajta"
357
 
358
- #: classes/controllers/FrmFormsController.php:834
359
  msgid "Site Name"
360
  msgstr "Ime sajta"
361
 
362
- #: classes/controllers/FrmFormsController.php:842
363
  msgid "Default Msg"
364
  msgstr "Default poruk"
365
 
366
- #: classes/controllers/FrmFormsController.php:843
367
  msgid "Default HTML"
368
  msgstr "Default HTML"
369
 
370
- #: classes/controllers/FrmFormsController.php:844
371
  msgid "Default Plain"
372
  msgstr "Default Plain"
373
 
374
- #: classes/controllers/FrmFormsController.php:932
375
  msgid "No forms were specified"
376
  msgstr "Nijedna forma nije odredjena"
377
 
378
- #: classes/controllers/FrmFormsController.php:1079
379
  msgid "Abnormal HTML characters prevented your form from saving correctly"
380
  msgstr ""
381
 
382
- #: classes/controllers/FrmFormsController.php:1194
383
- #: classes/controllers/FrmFormsController.php:1208
384
  msgid "Please select a valid form"
385
  msgstr "Izaberite validnu formu"
386
 
387
- #: classes/controllers/FrmFormsController.php:1436
388
  msgid "Please wait while you are redirected."
389
  msgstr "Sačekajte dok vas ne preusmerimo."
390
 
391
- #: classes/controllers/FrmFormsController.php:1470
392
  #, php-format
393
  msgid "%1$sClick here%2$s if you are not automatically redirected."
394
  msgstr "%1$sKlik ovde%2$s ako niste automatski preusmereni.."
@@ -2188,7 +2232,8 @@ msgstr ""
2188
  msgid "Delete Permanently"
2189
  msgstr ""
2190
 
2191
- #: classes/helpers/FrmFormsHelper.php:835 classes/models/FrmFormAction.php:703
 
2192
  msgid "Delete"
2193
  msgstr "Obrisati"
2194
 
@@ -2608,7 +2653,7 @@ msgstr[0] "%1$s Forma"
2608
  msgstr[1] "%1$s Forma"
2609
  msgstr[2] ""
2610
 
2611
- #: classes/helpers/FrmXMLHelper.php:853
2612
  #, php-format
2613
  msgid "%1$s Field"
2614
  msgid_plural "%1$s Fields"
@@ -2812,10 +2857,6 @@ msgstr ""
2812
  msgid "Dropdown"
2813
  msgstr "Dropdown"
2814
 
2815
- #: classes/models/FrmField.php:34
2816
- msgid "Email"
2817
- msgstr "Електронска пошта"
2818
-
2819
  #: classes/models/FrmField.php:38
2820
  msgid "Website/URL"
2821
  msgstr "Website/URL"
@@ -2836,10 +2877,6 @@ msgstr "HTML"
2836
  msgid "Hidden Field"
2837
  msgstr "Skrivena polja"
2838
 
2839
- #: classes/models/FrmField.php:58
2840
- msgid "User ID"
2841
- msgstr " ID korisnika"
2842
-
2843
  #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
2844
  msgid "reCAPTCHA"
2845
  msgstr "reCAPTCHA"
@@ -2926,18 +2963,18 @@ msgstr ""
2926
  msgid "There are no options for this action."
2927
  msgstr ""
2928
 
2929
- #: classes/models/FrmFormAction.php:700
2930
  #: classes/views/frm-forms/_publish_box.php:30
2931
  msgid "Save Draft"
2932
  msgstr "Sačuvati Draft"
2933
 
2934
- #: classes/models/FrmFormAction.php:701
2935
  #: classes/views/frm-forms/add_field_links.php:7
2936
  #: classes/views/frm-forms/form.php:61
2937
  msgid "Create"
2938
  msgstr "Napravite"
2939
 
2940
- #: classes/models/FrmFormAction.php:702
2941
  #: classes/views/frm-forms/_publish_box.php:34
2942
  #: classes/views/frm-forms/_publish_box.php:38
2943
  #: classes/views/frm-forms/add_field_links.php:7
@@ -2946,10 +2983,22 @@ msgstr "Napravite"
2946
  msgid "Update"
2947
  msgstr "Update"
2948
 
2949
- #: classes/models/FrmFormAction.php:704 classes/views/xml/import_form.php:10
2950
  msgid "Import"
2951
  msgstr "Uneti"
2952
 
 
 
 
 
 
 
 
 
 
 
 
 
2953
  #: classes/models/FrmMigrate.php:485
2954
  msgid "Sending"
2955
  msgstr "Šalje"
@@ -3312,6 +3361,10 @@ msgstr ""
3312
  msgid "Highrise"
3313
  msgstr ""
3314
 
 
 
 
 
3315
  #: classes/views/frm-forms/_publish_box.php:44
3316
  msgid "Preview"
3317
  msgstr "Pregledati"
@@ -4014,80 +4067,38 @@ msgid "HTML Tags"
4014
  msgstr "HTML Tagovi"
4015
 
4016
  #: classes/views/shared/mb_adv_info.php:15
4017
- #: classes/views/shared/mb_adv_info.php:124
4018
  msgid "IDs"
4019
  msgstr "IDs"
4020
 
4021
  #: classes/views/shared/mb_adv_info.php:16
4022
- #: classes/views/shared/mb_adv_info.php:125
4023
  msgid "Keys"
4024
  msgstr "Ključevi"
4025
 
4026
  #: classes/views/shared/mb_adv_info.php:18
4027
- #: classes/views/shared/mb_adv_info.php:127
4028
  msgid "Fields from your form"
4029
  msgstr "Polja sa tvoje forme"
4030
 
4031
- #: classes/views/shared/mb_adv_info.php:90
4032
  msgid ""
4033
  "Click a button below to insert extra values from form entries or your site "
4034
  "settings."
4035
  msgstr ""
4036
 
4037
- #: classes/views/shared/mb_adv_info.php:93
4038
  msgid "Helpers"
4039
  msgstr "Pomoćnici"
4040
 
4041
- #: classes/views/shared/mb_adv_info.php:137
4042
  msgid "Conditional text here"
4043
  msgstr "Uslovni tekst ovde"
4044
 
4045
- #: classes/views/shared/mb_adv_info.php:154
4046
  msgid "Click a button below to insert sample logic into your view"
4047
  msgstr "Klik na dugme ispod da biste uneli primer u vaš pregled"
4048
 
4049
- #: classes/views/shared/mb_adv_info.php:174
4050
- msgid ""
4051
- "Customize the field values with the following parameters. Click to see a "
4052
- "sample."
4053
- msgstr ""
4054
-
4055
- #: classes/views/shared/mb_adv_info.php:193
4056
- msgid "Show image"
4057
- msgstr "Prikazivanje slike"
4058
-
4059
- #: classes/views/shared/mb_adv_info.php:197
4060
- msgid "Image ID"
4061
- msgstr "ID slike"
4062
-
4063
- #: classes/views/shared/mb_adv_info.php:201
4064
- msgid "Image Name"
4065
- msgstr "Ime slike"
4066
-
4067
- #: classes/views/shared/mb_adv_info.php:212
4068
- msgid "Insert user information"
4069
- msgstr "Uneti informacije korisnika"
4070
-
4071
- #: classes/views/shared/mb_adv_info.php:231
4072
- msgid "Repeating field options"
4073
- msgstr ""
4074
-
4075
- #: classes/views/shared/mb_adv_info.php:234
4076
- msgid "For Each"
4077
- msgstr ""
4078
-
4079
- #: classes/views/shared/mb_adv_info.php:244
4080
- msgid "Dynamic field options"
4081
- msgstr ""
4082
-
4083
- #: classes/views/shared/mb_adv_info.php:247
4084
- msgid "Creation Date"
4085
- msgstr "Datum stvaranja"
4086
-
4087
- #: classes/views/shared/mb_adv_info.php:251
4088
- msgid "Field From Entry"
4089
- msgstr "Polja od unosa"
4090
-
4091
  #: classes/views/styles/_buttons.php:4
4092
  msgid "Disable submit button styling"
4093
  msgstr "Onemogućiti stilizovanje podnošenja dugmeta"
@@ -4456,7 +4467,7 @@ msgstr ""
4456
  msgid "Reset to Default"
4457
  msgstr "Resetujte na Default"
4458
 
4459
- #: classes/views/xml/import_form.php:12
4460
  msgid ""
4461
  "Upload your Formidable XML file to import forms into this site. If your "
4462
  "imported form key and creation date match a form on your site, that form "
@@ -4466,16 +4477,16 @@ msgstr ""
4466
  "vaš unosni ključ forme i datim stvaranja poklapaju na vašem sajtu, ta forme "
4467
  "će biti upload-ovana."
4468
 
4469
- #: classes/views/xml/import_form.php:19
4470
  msgid "Choose a Formidable XML file"
4471
  msgstr "Izaberite Formidable XML fajl"
4472
 
4473
- #: classes/views/xml/import_form.php:20
4474
  #, php-format
4475
  msgid "Maximum size: %s"
4476
  msgstr "Maksimalna veličina: %s"
4477
 
4478
- #: classes/views/xml/import_form.php:28
4479
  msgid "Upload file and import"
4480
  msgstr "Uploadij fajl i import"
4481
 
2
  msgstr ""
3
  "Project-Id-Version: Formidable v2.05.02\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-10-15 19:32+0000\n"
6
+ "PO-Revision-Date: 2018-10-15 19:35+0000\n"
7
  "Last-Translator: Formidable Community\n"
8
  "Language-Team: Serbian\n"
9
  "Language: sr_RS\n"
35
  msgid "There are no plugins on your site that require a license"
36
  msgstr ""
37
 
38
+ #: classes/controllers/FrmAppController.php:83
39
  msgid "Build"
40
  msgstr "Napraviti"
41
 
42
+ #: classes/controllers/FrmAppController.php:90
43
  #: classes/helpers/FrmFormsListHelper.php:336
44
  #: classes/views/frm-forms/settings.php:10
45
  msgid "Settings"
46
  msgstr "Postavke"
47
 
48
+ #: classes/controllers/FrmAppController.php:97
49
  #: classes/controllers/FrmEntriesController.php:8
50
  #: classes/controllers/FrmEntriesController.php:8
51
  #: classes/controllers/FrmEntriesController.php:126
55
  msgid "Entries"
56
  msgstr "Unošenja"
57
 
58
+ #: classes/controllers/FrmAppController.php:113
59
  msgid "Build a Form"
60
  msgstr ""
61
 
62
+ #: classes/controllers/FrmAppController.php:146
63
  #, php-format
64
  msgid ""
65
  "This site has been previously authorized to run Formidable Forms. "
67
  "running the free version and remove this message."
68
  msgstr ""
69
 
70
+ #: classes/controllers/FrmAppController.php:505
71
  #, php-format
72
  msgid ""
73
  "Help us spread the %1$sFormidable Forms%2$s love with %3$s %5$s on WordPress."
103
  msgstr "Podrška"
104
 
105
  #: classes/controllers/FrmEntriesController.php:105
106
+ #: classes/controllers/FrmFormsController.php:877
107
  #: classes/views/frm-entries/form.php:43
108
  #: classes/views/frm-entries/sidebar-shared.php:38
109
  msgid "Entry Key"
159
  msgid "No entries were specified"
160
  msgstr "Nijedan unos nije odredjen"
161
 
162
+ #: classes/controllers/FrmFieldsController.php:304
163
  msgid "Other"
164
  msgstr ""
165
 
166
+ #: classes/controllers/FrmFieldsController.php:307
167
  msgid "New Option"
168
  msgstr ""
169
 
172
  msgid "Form Actions"
173
  msgstr ""
174
 
175
+ #: classes/controllers/FrmFormActionsController.php:213
176
  #: classes/models/FrmEntryValidate.php:14 classes/models/FrmSettings.php:100
177
  msgid "You do not have permission to do that"
178
  msgstr "Nemate dozvolu da uradito to."
194
  msgstr "Forme su uspešno update-ovane"
195
 
196
  #: classes/controllers/FrmFormsController.php:232
197
+ #: classes/controllers/FrmFormsController.php:1712
198
  msgid "Form template was Successfully Created"
199
  msgstr "Template forme su uspešno kreirane"
200
 
306
  msgid "That template cannot be edited"
307
  msgstr "Ova template ne može da se edituje"
308
 
309
+ #: classes/controllers/FrmFormsController.php:802
310
+ msgid ""
311
+ "Customize the field values with the following parameters. Click to see a "
312
+ "sample."
313
+ msgstr ""
314
+
315
+ #: classes/controllers/FrmFormsController.php:816
316
+ msgid "Insert user information"
317
+ msgstr "Uneti informacije korisnika"
318
+
319
+ #: classes/controllers/FrmFormsController.php:837
320
  msgid "Separator"
321
  msgstr "Separator"
322
 
323
+ #: classes/controllers/FrmFormsController.php:838
324
  msgid "Use a different separator for checkbox fields"
325
  msgstr "Koristite drugačiji separatora za potvrdu polja"
326
 
327
+ #: classes/controllers/FrmFormsController.php:840
328
  msgid "Date Format"
329
  msgstr " Format datuma"
330
 
331
+ #: classes/controllers/FrmFormsController.php:841
332
  msgid "Field Label"
333
  msgstr "Oznaka polja"
334
 
335
+ #: classes/controllers/FrmFormsController.php:843
336
  msgid "No Auto P"
337
  msgstr "Nema auto p"
338
 
339
+ #: classes/controllers/FrmFormsController.php:844
340
  msgid "Do not automatically add any paragraphs or line breaks"
341
  msgstr "Nemojte da automatski dodajete paragrafe ili zagrade"
342
 
343
+ #: classes/controllers/FrmFormsController.php:858
344
+ #: classes/models/FrmField.php:58
345
+ msgid "User ID"
346
+ msgstr " ID korisnika"
347
+
348
+ #: classes/controllers/FrmFormsController.php:859
349
+ msgid "First Name"
350
+ msgstr ""
351
+
352
+ #: classes/controllers/FrmFormsController.php:860
353
+ msgid "Last Name"
354
+ msgstr ""
355
+
356
+ #: classes/controllers/FrmFormsController.php:861
357
+ msgid "Display Name"
358
+ msgstr ""
359
+
360
+ #: classes/controllers/FrmFormsController.php:862
361
+ msgid "User Login"
362
+ msgstr ""
363
+
364
+ #: classes/controllers/FrmFormsController.php:863
365
+ #: classes/models/FrmField.php:34
366
+ msgid "Email"
367
+ msgstr "Електронска пошта"
368
+
369
+ #: classes/controllers/FrmFormsController.php:864
370
+ msgid "Avatar"
371
+ msgstr ""
372
+
373
+ #: classes/controllers/FrmFormsController.php:865
374
+ msgid "Author Link"
375
+ msgstr ""
376
+
377
+ #: classes/controllers/FrmFormsController.php:876
378
  #: classes/views/frm-entries/sidebar-shared.php:32
379
  msgid "Entry ID"
380
  msgstr "Uneti ID"
381
 
382
+ #: classes/controllers/FrmFormsController.php:878
383
  msgid "Post ID"
384
  msgstr "Post ID"
385
 
386
+ #: classes/controllers/FrmFormsController.php:879
387
  msgid "User IP"
388
  msgstr "IP korisnika"
389
 
390
+ #: classes/controllers/FrmFormsController.php:880
391
  msgid "Entry created"
392
  msgstr "Unos stvoren"
393
 
394
+ #: classes/controllers/FrmFormsController.php:881
395
  msgid "Entry updated"
396
  msgstr "Unos updateovan"
397
 
398
+ #: classes/controllers/FrmFormsController.php:883
399
  msgid "Site URL"
400
  msgstr "URL sajta"
401
 
402
+ #: classes/controllers/FrmFormsController.php:884
403
  msgid "Site Name"
404
  msgstr "Ime sajta"
405
 
406
+ #: classes/controllers/FrmFormsController.php:892
407
  msgid "Default Msg"
408
  msgstr "Default poruk"
409
 
410
+ #: classes/controllers/FrmFormsController.php:893
411
  msgid "Default HTML"
412
  msgstr "Default HTML"
413
 
414
+ #: classes/controllers/FrmFormsController.php:894
415
  msgid "Default Plain"
416
  msgstr "Default Plain"
417
 
418
+ #: classes/controllers/FrmFormsController.php:982
419
  msgid "No forms were specified"
420
  msgstr "Nijedna forma nije odredjena"
421
 
422
+ #: classes/controllers/FrmFormsController.php:1129
423
  msgid "Abnormal HTML characters prevented your form from saving correctly"
424
  msgstr ""
425
 
426
+ #: classes/controllers/FrmFormsController.php:1244
427
+ #: classes/controllers/FrmFormsController.php:1258
428
  msgid "Please select a valid form"
429
  msgstr "Izaberite validnu formu"
430
 
431
+ #: classes/controllers/FrmFormsController.php:1486
432
  msgid "Please wait while you are redirected."
433
  msgstr "Sačekajte dok vas ne preusmerimo."
434
 
435
+ #: classes/controllers/FrmFormsController.php:1520
436
  #, php-format
437
  msgid "%1$sClick here%2$s if you are not automatically redirected."
438
  msgstr "%1$sKlik ovde%2$s ako niste automatski preusmereni.."
2232
  msgid "Delete Permanently"
2233
  msgstr ""
2234
 
2235
+ #: classes/helpers/FrmFormsHelper.php:835 classes/models/FrmFormAction.php:744
2236
+ #: classes/views/frm-form-actions/form_action.php:19
2237
  msgid "Delete"
2238
  msgstr "Obrisati"
2239
 
2653
  msgstr[1] "%1$s Forma"
2654
  msgstr[2] ""
2655
 
2656
+ #: classes/helpers/FrmXMLHelper.php:853 classes/models/FrmFormMigrator.php:388
2657
  #, php-format
2658
  msgid "%1$s Field"
2659
  msgid_plural "%1$s Fields"
2857
  msgid "Dropdown"
2858
  msgstr "Dropdown"
2859
 
 
 
 
 
2860
  #: classes/models/FrmField.php:38
2861
  msgid "Website/URL"
2862
  msgstr "Website/URL"
2877
  msgid "Hidden Field"
2878
  msgstr "Skrivena polja"
2879
 
 
 
 
 
2880
  #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
2881
  msgid "reCAPTCHA"
2882
  msgstr "reCAPTCHA"
2963
  msgid "There are no options for this action."
2964
  msgstr ""
2965
 
2966
+ #: classes/models/FrmFormAction.php:741
2967
  #: classes/views/frm-forms/_publish_box.php:30
2968
  msgid "Save Draft"
2969
  msgstr "Sačuvati Draft"
2970
 
2971
+ #: classes/models/FrmFormAction.php:742
2972
  #: classes/views/frm-forms/add_field_links.php:7
2973
  #: classes/views/frm-forms/form.php:61
2974
  msgid "Create"
2975
  msgstr "Napravite"
2976
 
2977
+ #: classes/models/FrmFormAction.php:743
2978
  #: classes/views/frm-forms/_publish_box.php:34
2979
  #: classes/views/frm-forms/_publish_box.php:38
2980
  #: classes/views/frm-forms/add_field_links.php:7
2983
  msgid "Update"
2984
  msgstr "Update"
2985
 
2986
+ #: classes/models/FrmFormAction.php:745 classes/views/xml/import_form.php:9
2987
  msgid "Import"
2988
  msgstr "Uneti"
2989
 
2990
+ #: classes/models/FrmFormMigrator.php:137
2991
+ msgid "No form fields found."
2992
+ msgstr ""
2993
+
2994
+ #: classes/models/FrmFormMigrator.php:229
2995
+ msgid "There was an error while creating a new form."
2996
+ msgstr ""
2997
+
2998
+ #: classes/models/FrmFormMigrator.php:360
2999
+ msgid "Default Form"
3000
+ msgstr ""
3001
+
3002
  #: classes/models/FrmMigrate.php:485
3003
  msgid "Sending"
3004
  msgstr "Šalje"
3361
  msgid "Highrise"
3362
  msgstr ""
3363
 
3364
+ #: classes/views/frm-form-actions/form_action.php:17
3365
+ msgid "Duplicate"
3366
+ msgstr ""
3367
+
3368
  #: classes/views/frm-forms/_publish_box.php:44
3369
  msgid "Preview"
3370
  msgstr "Pregledati"
4067
  msgstr "HTML Tagovi"
4068
 
4069
  #: classes/views/shared/mb_adv_info.php:15
4070
+ #: classes/views/shared/mb_adv_info.php:87
4071
  msgid "IDs"
4072
  msgstr "IDs"
4073
 
4074
  #: classes/views/shared/mb_adv_info.php:16
4075
+ #: classes/views/shared/mb_adv_info.php:88
4076
  msgid "Keys"
4077
  msgstr "Ključevi"
4078
 
4079
  #: classes/views/shared/mb_adv_info.php:18
4080
+ #: classes/views/shared/mb_adv_info.php:90
4081
  msgid "Fields from your form"
4082
  msgstr "Polja sa tvoje forme"
4083
 
4084
+ #: classes/views/shared/mb_adv_info.php:53
4085
  msgid ""
4086
  "Click a button below to insert extra values from form entries or your site "
4087
  "settings."
4088
  msgstr ""
4089
 
4090
+ #: classes/views/shared/mb_adv_info.php:56
4091
  msgid "Helpers"
4092
  msgstr "Pomoćnici"
4093
 
4094
+ #: classes/views/shared/mb_adv_info.php:100
4095
  msgid "Conditional text here"
4096
  msgstr "Uslovni tekst ovde"
4097
 
4098
+ #: classes/views/shared/mb_adv_info.php:115
4099
  msgid "Click a button below to insert sample logic into your view"
4100
  msgstr "Klik na dugme ispod da biste uneli primer u vaš pregled"
4101
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4102
  #: classes/views/styles/_buttons.php:4
4103
  msgid "Disable submit button styling"
4104
  msgstr "Onemogućiti stilizovanje podnošenja dugmeta"
4467
  msgid "Reset to Default"
4468
  msgstr "Resetujte na Default"
4469
 
4470
+ #: classes/views/xml/import_form.php:11
4471
  msgid ""
4472
  "Upload your Formidable XML file to import forms into this site. If your "
4473
  "imported form key and creation date match a form on your site, that form "
4477
  "vaš unosni ključ forme i datim stvaranja poklapaju na vašem sajtu, ta forme "
4478
  "će biti upload-ovana."
4479
 
4480
+ #: classes/views/xml/import_form.php:18
4481
  msgid "Choose a Formidable XML file"
4482
  msgstr "Izaberite Formidable XML fajl"
4483
 
4484
+ #: classes/views/xml/import_form.php:19
4485
  #, php-format
4486
  msgid "Maximum size: %s"
4487
  msgstr "Maksimalna veličina: %s"
4488
 
4489
+ #: classes/views/xml/import_form.php:27
4490
  msgid "Upload file and import"
4491
  msgstr "Uploadij fajl i import"
4492
 
languages/formidable.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Formidable v2.05\n"
5
  "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2018-10-10 19:29+0000\n"
7
  "POT-Revision-Date: Tue Sep 26 2017 16:06:46 GMT-0600 (MDT)\n"
8
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
9
  "Last-Translator: \n"
@@ -107,7 +107,7 @@ msgid "Support"
107
  msgstr ""
108
 
109
  #: classes/controllers/FrmEntriesController.php:105
110
- #: classes/controllers/FrmFormsController.php:827
111
  #: classes/views/frm-entries/form.php:43
112
  #: classes/views/frm-entries/sidebar-shared.php:38
113
  msgid "Entry Key"
@@ -198,7 +198,7 @@ msgid "Form was Successfully Updated"
198
  msgstr ""
199
 
200
  #: classes/controllers/FrmFormsController.php:232
201
- #: classes/controllers/FrmFormsController.php:1662
202
  msgid "Form template was Successfully Created"
203
  msgstr ""
204
 
@@ -307,89 +307,133 @@ msgstr ""
307
  msgid "That template cannot be edited"
308
  msgstr ""
309
 
310
- #: classes/controllers/FrmFormsController.php:804
 
 
 
 
 
 
 
 
 
 
311
  msgid "Separator"
312
  msgstr ""
313
 
314
- #: classes/controllers/FrmFormsController.php:805
315
  msgid "Use a different separator for checkbox fields"
316
  msgstr ""
317
 
318
- #: classes/controllers/FrmFormsController.php:807
319
  msgid "Date Format"
320
  msgstr ""
321
 
322
- #: classes/controllers/FrmFormsController.php:808
323
  msgid "Field Label"
324
  msgstr ""
325
 
326
- #: classes/controllers/FrmFormsController.php:810
327
  msgid "No Auto P"
328
  msgstr ""
329
 
330
- #: classes/controllers/FrmFormsController.php:811
331
  msgid "Do not automatically add any paragraphs or line breaks"
332
  msgstr ""
333
 
334
- #: classes/controllers/FrmFormsController.php:826
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
335
  #: classes/views/frm-entries/sidebar-shared.php:32
336
  msgid "Entry ID"
337
  msgstr ""
338
 
339
- #: classes/controllers/FrmFormsController.php:828
340
  msgid "Post ID"
341
  msgstr ""
342
 
343
- #: classes/controllers/FrmFormsController.php:829
344
  msgid "User IP"
345
  msgstr ""
346
 
347
- #: classes/controllers/FrmFormsController.php:830
348
  msgid "Entry created"
349
  msgstr ""
350
 
351
- #: classes/controllers/FrmFormsController.php:831
352
  msgid "Entry updated"
353
  msgstr ""
354
 
355
- #: classes/controllers/FrmFormsController.php:833
356
  msgid "Site URL"
357
  msgstr ""
358
 
359
- #: classes/controllers/FrmFormsController.php:834
360
  msgid "Site Name"
361
  msgstr ""
362
 
363
- #: classes/controllers/FrmFormsController.php:842
364
  msgid "Default Msg"
365
  msgstr ""
366
 
367
- #: classes/controllers/FrmFormsController.php:843
368
  msgid "Default HTML"
369
  msgstr ""
370
 
371
- #: classes/controllers/FrmFormsController.php:844
372
  msgid "Default Plain"
373
  msgstr ""
374
 
375
- #: classes/controllers/FrmFormsController.php:932
376
  msgid "No forms were specified"
377
  msgstr ""
378
 
379
- #: classes/controllers/FrmFormsController.php:1079
380
  msgid "Abnormal HTML characters prevented your form from saving correctly"
381
  msgstr ""
382
 
383
- #: classes/controllers/FrmFormsController.php:1194
384
- #: classes/controllers/FrmFormsController.php:1208
385
  msgid "Please select a valid form"
386
  msgstr ""
387
 
388
- #: classes/controllers/FrmFormsController.php:1436
389
  msgid "Please wait while you are redirected."
390
  msgstr ""
391
 
392
- #: classes/controllers/FrmFormsController.php:1470
393
  #, php-format
394
  msgid "%1$sClick here%2$s if you are not automatically redirected."
395
  msgstr ""
@@ -2799,10 +2843,6 @@ msgstr ""
2799
  msgid "Dropdown"
2800
  msgstr ""
2801
 
2802
- #: classes/models/FrmField.php:34
2803
- msgid "Email"
2804
- msgstr ""
2805
-
2806
  #: classes/models/FrmField.php:38
2807
  msgid "Website/URL"
2808
  msgstr ""
@@ -2823,10 +2863,6 @@ msgstr ""
2823
  msgid "Hidden Field"
2824
  msgstr ""
2825
 
2826
- #: classes/models/FrmField.php:58
2827
- msgid "User ID"
2828
- msgstr ""
2829
-
2830
  #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
2831
  msgid "reCAPTCHA"
2832
  msgstr ""
@@ -3997,80 +4033,38 @@ msgid "HTML Tags"
3997
  msgstr ""
3998
 
3999
  #: classes/views/shared/mb_adv_info.php:15
4000
- #: classes/views/shared/mb_adv_info.php:124
4001
  msgid "IDs"
4002
  msgstr ""
4003
 
4004
  #: classes/views/shared/mb_adv_info.php:16
4005
- #: classes/views/shared/mb_adv_info.php:125
4006
  msgid "Keys"
4007
  msgstr ""
4008
 
4009
  #: classes/views/shared/mb_adv_info.php:18
4010
- #: classes/views/shared/mb_adv_info.php:127
4011
  msgid "Fields from your form"
4012
  msgstr ""
4013
 
4014
- #: classes/views/shared/mb_adv_info.php:90
4015
  msgid ""
4016
  "Click a button below to insert extra values from form entries or your site "
4017
  "settings."
4018
  msgstr ""
4019
 
4020
- #: classes/views/shared/mb_adv_info.php:93
4021
  msgid "Helpers"
4022
  msgstr ""
4023
 
4024
- #: classes/views/shared/mb_adv_info.php:137
4025
  msgid "Conditional text here"
4026
  msgstr ""
4027
 
4028
- #: classes/views/shared/mb_adv_info.php:154
4029
  msgid "Click a button below to insert sample logic into your view"
4030
  msgstr ""
4031
 
4032
- #: classes/views/shared/mb_adv_info.php:174
4033
- msgid ""
4034
- "Customize the field values with the following parameters. Click to see a "
4035
- "sample."
4036
- msgstr ""
4037
-
4038
- #: classes/views/shared/mb_adv_info.php:193
4039
- msgid "Show image"
4040
- msgstr ""
4041
-
4042
- #: classes/views/shared/mb_adv_info.php:197
4043
- msgid "Image ID"
4044
- msgstr ""
4045
-
4046
- #: classes/views/shared/mb_adv_info.php:201
4047
- msgid "Image Name"
4048
- msgstr ""
4049
-
4050
- #: classes/views/shared/mb_adv_info.php:212
4051
- msgid "Insert user information"
4052
- msgstr ""
4053
-
4054
- #: classes/views/shared/mb_adv_info.php:231
4055
- msgid "Repeating field options"
4056
- msgstr ""
4057
-
4058
- #: classes/views/shared/mb_adv_info.php:234
4059
- msgid "For Each"
4060
- msgstr ""
4061
-
4062
- #: classes/views/shared/mb_adv_info.php:244
4063
- msgid "Dynamic field options"
4064
- msgstr ""
4065
-
4066
- #: classes/views/shared/mb_adv_info.php:247
4067
- msgid "Creation Date"
4068
- msgstr ""
4069
-
4070
- #: classes/views/shared/mb_adv_info.php:251
4071
- msgid "Field From Entry"
4072
- msgstr ""
4073
-
4074
  #: classes/views/styles/_buttons.php:4
4075
  msgid "Disable submit button styling"
4076
  msgstr ""
3
  msgstr ""
4
  "Project-Id-Version: Formidable v2.05\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2018-10-15 19:32+0000\n"
7
  "POT-Revision-Date: Tue Sep 26 2017 16:06:46 GMT-0600 (MDT)\n"
8
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
9
  "Last-Translator: \n"
107
  msgstr ""
108
 
109
  #: classes/controllers/FrmEntriesController.php:105
110
+ #: classes/controllers/FrmFormsController.php:877
111
  #: classes/views/frm-entries/form.php:43
112
  #: classes/views/frm-entries/sidebar-shared.php:38
113
  msgid "Entry Key"
198
  msgstr ""
199
 
200
  #: classes/controllers/FrmFormsController.php:232
201
+ #: classes/controllers/FrmFormsController.php:1712
202
  msgid "Form template was Successfully Created"
203
  msgstr ""
204
 
307
  msgid "That template cannot be edited"
308
  msgstr ""
309
 
310
+ #: classes/controllers/FrmFormsController.php:802
311
+ msgid ""
312
+ "Customize the field values with the following parameters. Click to see a "
313
+ "sample."
314
+ msgstr ""
315
+
316
+ #: classes/controllers/FrmFormsController.php:816
317
+ msgid "Insert user information"
318
+ msgstr ""
319
+
320
+ #: classes/controllers/FrmFormsController.php:837
321
  msgid "Separator"
322
  msgstr ""
323
 
324
+ #: classes/controllers/FrmFormsController.php:838
325
  msgid "Use a different separator for checkbox fields"
326
  msgstr ""
327
 
328
+ #: classes/controllers/FrmFormsController.php:840
329
  msgid "Date Format"
330
  msgstr ""
331
 
332
+ #: classes/controllers/FrmFormsController.php:841
333
  msgid "Field Label"
334
  msgstr ""
335
 
336
+ #: classes/controllers/FrmFormsController.php:843
337
  msgid "No Auto P"
338
  msgstr ""
339
 
340
+ #: classes/controllers/FrmFormsController.php:844
341
  msgid "Do not automatically add any paragraphs or line breaks"
342
  msgstr ""
343
 
344
+ #: classes/controllers/FrmFormsController.php:858
345
+ #: classes/models/FrmField.php:58
346
+ msgid "User ID"
347
+ msgstr ""
348
+
349
+ #: classes/controllers/FrmFormsController.php:859
350
+ msgid "First Name"
351
+ msgstr ""
352
+
353
+ #: classes/controllers/FrmFormsController.php:860
354
+ msgid "Last Name"
355
+ msgstr ""
356
+
357
+ #: classes/controllers/FrmFormsController.php:861
358
+ msgid "Display Name"
359
+ msgstr ""
360
+
361
+ #: classes/controllers/FrmFormsController.php:862
362
+ msgid "User Login"
363
+ msgstr ""
364
+
365
+ #: classes/controllers/FrmFormsController.php:863
366
+ #: classes/models/FrmField.php:34
367
+ msgid "Email"
368
+ msgstr ""
369
+
370
+ #: classes/controllers/FrmFormsController.php:864
371
+ msgid "Avatar"
372
+ msgstr ""
373
+
374
+ #: classes/controllers/FrmFormsController.php:865
375
+ msgid "Author Link"
376
+ msgstr ""
377
+
378
+ #: classes/controllers/FrmFormsController.php:876
379
  #: classes/views/frm-entries/sidebar-shared.php:32
380
  msgid "Entry ID"
381
  msgstr ""
382
 
383
+ #: classes/controllers/FrmFormsController.php:878
384
  msgid "Post ID"
385
  msgstr ""
386
 
387
+ #: classes/controllers/FrmFormsController.php:879
388
  msgid "User IP"
389
  msgstr ""
390
 
391
+ #: classes/controllers/FrmFormsController.php:880
392
  msgid "Entry created"
393
  msgstr ""
394
 
395
+ #: classes/controllers/FrmFormsController.php:881
396
  msgid "Entry updated"
397
  msgstr ""
398
 
399
+ #: classes/controllers/FrmFormsController.php:883
400
  msgid "Site URL"
401
  msgstr ""
402
 
403
+ #: classes/controllers/FrmFormsController.php:884
404
  msgid "Site Name"
405
  msgstr ""
406
 
407
+ #: classes/controllers/FrmFormsController.php:892
408
  msgid "Default Msg"
409
  msgstr ""
410
 
411
+ #: classes/controllers/FrmFormsController.php:893
412
  msgid "Default HTML"
413
  msgstr ""
414
 
415
+ #: classes/controllers/FrmFormsController.php:894
416
  msgid "Default Plain"
417
  msgstr ""
418
 
419
+ #: classes/controllers/FrmFormsController.php:982
420
  msgid "No forms were specified"
421
  msgstr ""
422
 
423
+ #: classes/controllers/FrmFormsController.php:1129
424
  msgid "Abnormal HTML characters prevented your form from saving correctly"
425
  msgstr ""
426
 
427
+ #: classes/controllers/FrmFormsController.php:1244
428
+ #: classes/controllers/FrmFormsController.php:1258
429
  msgid "Please select a valid form"
430
  msgstr ""
431
 
432
+ #: classes/controllers/FrmFormsController.php:1486
433
  msgid "Please wait while you are redirected."
434
  msgstr ""
435
 
436
+ #: classes/controllers/FrmFormsController.php:1520
437
  #, php-format
438
  msgid "%1$sClick here%2$s if you are not automatically redirected."
439
  msgstr ""
2843
  msgid "Dropdown"
2844
  msgstr ""
2845
 
 
 
 
 
2846
  #: classes/models/FrmField.php:38
2847
  msgid "Website/URL"
2848
  msgstr ""
2863
  msgid "Hidden Field"
2864
  msgstr ""
2865
 
 
 
 
 
2866
  #: classes/models/FrmField.php:62 classes/views/frm-settings/form.php:89
2867
  msgid "reCAPTCHA"
2868
  msgstr ""
4033
  msgstr ""
4034
 
4035
  #: classes/views/shared/mb_adv_info.php:15
4036
+ #: classes/views/shared/mb_adv_info.php:87
4037
  msgid "IDs"
4038
  msgstr ""
4039
 
4040
  #: classes/views/shared/mb_adv_info.php:16
4041
+ #: classes/views/shared/mb_adv_info.php:88
4042
  msgid "Keys"
4043
  msgstr ""
4044
 
4045
  #: classes/views/shared/mb_adv_info.php:18
4046
+ #: classes/views/shared/mb_adv_info.php:90
4047
  msgid "Fields from your form"
4048
  msgstr ""
4049
 
4050
+ #: classes/views/shared/mb_adv_info.php:53
4051
  msgid ""
4052
  "Click a button below to insert extra values from form entries or your site "
4053
  "settings."
4054
  msgstr ""
4055
 
4056
+ #: classes/views/shared/mb_adv_info.php:56
4057
  msgid "Helpers"
4058
  msgstr ""
4059
 
4060
+ #: classes/views/shared/mb_adv_info.php:100
4061
  msgid "Conditional text here"
4062
  msgstr ""
4063
 
4064
+ #: classes/views/shared/mb_adv_info.php:115
4065
  msgid "Click a button below to insert sample logic into your view"
4066
  msgstr ""
4067
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4068
  #: classes/views/styles/_buttons.php:4
4069
  msgid "Disable submit button styling"
4070
  msgstr ""
readme.txt CHANGED
@@ -1,23 +1,37 @@
1
- === Formidable Forms - Form Builder for WordPress ===
2
  Contributors: formidableforms, sswells, srwells, jamie.wahlin
3
  Tags: contact form, form builder, custom form, forms, form, form maker, form creator
4
  Requires at least: 4.4
5
- Tested up to: 4.9.5
6
  Requires PHP: 5.3
7
- Stable tag: 3.04
8
 
9
- The best WordPress forms plugin for custom forms. Go beyond contact forms with a drag & drop form builder, HTML control & form style generator
10
 
11
  == Description ==
12
- = The best WordPress form builder plugin for custom forms =
13
- Formidable Forms is a flexible and free WordPress forms plugin. Easily create contact forms, polls and surveys, lead generation forms, email forms, and any other forms you imagine. Start with a pre-built contact form template or create totally custom forms. From the smallest sidebar opt-in form to large job and employment application forms, Formidable Forms is built to do it all. Learn more about Formidable Forms at [FormidableForms.com](https://formidableforms.com/ "FormidableForms.com")
14
 
15
- Create a professional WordPress contact form without any code. Get mobile-friendly and responsive forms that look great on any screen size. Additionally, it's simple to change the form layout with included layout classes. For more advanced customizations, take control of the form HTML and CSS.
16
 
17
- [View form builder Documentation](https://formidableforms.com/knowledgebase/ "View form builder Documentation")
18
 
19
- = All the features you need for beautiful WordPress forms =
20
- Create unlimited forms with all the essential field types.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
 
22
  * Single line text (for names, phone numbers, addresses, and more)
23
  * Email
@@ -31,104 +45,228 @@ Create unlimited forms with all the essential field types.
31
  * Hidden fields
32
  * User ID
33
  * HTML block
34
- * reCaptcha (Invisible or one-click checkbox)
35
 
36
- = Form templates =
37
- Create forms in seconds with [pre-built form templates](https://formidableforms.com/features/wordpress-form-templates/). Or add your own form templates and export the forms to share. A free contact form template is included when you install Formidable Forms. We also have a growing library of [downloadable form templates](https://formidableforms.com/downloads/category/form-templates/).
38
 
39
- = Customize your WordPress forms =
40
- Whether you start from scratch or from a form template, customize your forms however you would like.
41
 
42
- * Send **unlimited form email notifications and autoresponders**.
43
- * Use **input placeholder text** in form fields that clear when typing starts.
44
- * Use our ready-made CSS classes (or your own custom CSS classes) to arrange your form fields and create **multi-column forms**
45
- * **Modify the form HTML** for your individual needs.
46
- * Customize the form success message and submit button text.
47
- * Redirect to another page after submit or show content from a protected page.
48
 
49
- = Style your WordPress contact forms with no code =
50
- Use the built-in [visual form style generator](https://formidableforms.com/features/wordpress-visual-form-styler/) to instantly customize the look and feel of your WordPress forms. With just a few clicks, your forms can be transformed to match your personal style. A single form styling template will be applied to all the forms on your site. But if you decide you need different styles for different forms, Formidable Forms Pro is waiting.
51
 
52
- = Publish WordPress forms with ease =
53
- Once your WP form is built and designed just the way you like it, publish with an easy-to-use **shortcode builder** UI. Direct links are also available on a blank page for **form previews** and **email surveys**.
54
 
55
- **Honeypot spam protection** is included in every website form. Or add Invisible reCAPTCHA, one-click reCAPTCHA, and Akismet for extra Spam control in your contact forms.
56
 
57
- = Save every form submission =
58
- You may already know it, but sending emails with your self-hosted WordPress website isn't 100% reliable. But every lead captured in your online contact forms is important. Don't lose a single one! This is why Formidable saves every contact form submission in your WordPress database and lists them on your Formidable -> Entries page. Now even if a form email notification fails, you won’t lose a lead.
59
 
60
- Looking for **GDPR compliance for forms**? No problem. Turn off IP tracking or stop saving form submissions. Or add a checkbox field to your form to collect consent.
61
 
62
- Need to import your leads to another service like MailChimp? No problem. **Export form leads to a CSV** then open it in Excel or import anywhere.
63
 
64
- Plus, don't lose leads by accidentally deleting a form. **Send forms to the trash** and recover them if needed.
65
 
66
- https://www.youtube.com/watch?v=d2IPmicn2x8
67
 
68
- = Pro Form Builder Plugin Features =
69
- Formidable Forms Pro is an upgrade that adds even more power to your free forms. Multi-page forms, conditional logic, payment form integrations, data management, front-end post submissions for user-generated content, front-end editing, and boat loads more.
70
 
71
- Other WordPress form builder plugins only let you collect data. But our Pro forms also add options to display form submissions on the front-end of your site. Input, display, edit and filter data on the front-end without any additional plugins. Formidable Forms is a powerful solution for purchase forms, order forms, member directories, user registration forms, event calendars, and more.
72
 
73
- * **Even more field types**: Page breaks, section headings, repeating field groups (repeaters), multiple file uploads, rich text, datepicker, time, scale, star ratings, slider, toggle, dynamic fields populated from other forms, password, tags, address, and more.
74
- * <a href="https://formidableforms.com/features/wordpress-multi-step-form/">Multi-Step forms with progress bar</a>: Create beautiful paged forms with rootline and progress indicators. Use conditional logic on page breaks for branching forms.
75
- * <a href="https://formidableforms.com/features/wordpress-multi-step-form/">Conditional logic for smart forms</a>: Show or hide fields in your form based on user selections or the role of the user.
76
- * Email routing: Conditionally send multiple autoresponder emails and notifications based on values in your form.
77
- * <a href="https://formidableforms.com/features/wordpress-calculated-fields-form/">Calculated Fields</a>: create basic and complex calculations, and even combine text from multiple fields.
78
- * <a href="https://formidableforms.com/features/wordpress-visual-form-styler/">Visual form styler with multiple templates</a>: Create multiple form styling templates and assign them to any of your forms. Need Bootstrap form styling? We’ve got you covered.
79
- * Entry management: Flexibly and powerfully display, edit, and delete entries from anywhere on your site, and specify who has permission to do so.
80
- * [Display form data with Views](https://formidableforms.com/features/display-form-data-views/ "Display form data with Views"): Format, filter and display the data submitted in your WordPress forms in custom Views.
81
- * <a href="https://formidableforms.com/features/create-a-graph-wordpress-forms/">Graphs and charts for data visualization</a>: Display statistics from form entries, and graph your data in a variety of eye catching styles with graphs that automatically update as new data is submitted.
82
- * <a href="https://formidableforms.com/features/user-submitted-posts-wordpress-forms/">User submitted front-end posts and pages</a>: Create and edit WordPress posts, pages, and even custom post types from front-end online forms.
83
- * <a href="https://formidableforms.com/features/front-end-editing-wordpress/">Front-end editing</a>: allow users to edit their form entries and posts from the front-end of your site.
84
- * <a href="https://formidableforms.com/features/save-and-continue-partial-submissions/">Saved and continue partial submissions</a>: logged-in users can save form progress and return later.
85
- * Form permission settings: limit form visibility based on user role.
86
- * Conditionally redirect after form submission.
87
- * [Fill out forms automatically](https://formidableforms.com/features/fill-out-forms-automatically/) with user meta or values from your posts including custom fields.
88
- * <a href="https://formidableforms.com/features/importing-exporting-wordpress-forms/">Import and Export form submissions</a> with CSV.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  * Limit the number of form entries per user, IP, or cookie.
90
- * Import our <a href="https://formidableforms.com/demos/">pre-built form/view demo templates</a> as a starting point or a final product.
91
- * [White labeling](https://formidableforms.com/features/white-label-form-builder-wordpress/ "White labeling"): Replace the Formidable branding with your own in the admin area. Plus, we never show "powered by" links in your free online forms.
92
- * [World Class Support](https://formidableforms.com/support/): have questions or need guidance on how to set up your application? We are happy to help. Our purpose with Formidable Forms is to help you **take on bigger projects, earn more clients, and grow your business**.
93
-
94
- = Form add-on library =
95
- * [User registration Forms](https://formidableforms.com/downloads/user-registration/ "User registration forms"). Register users and create subdomains when using WordPress multisite.
96
- * [Form action automation](https://formidableforms.com/downloads/autoresponder/ "Form action automation"). Schedule email notifications, SMS messages, and API actions.
97
- * [Digital Signature Forms](https://formidableforms.com/downloads/signature/ "Digital Signature Forms"). Add a signature field to your form. The user may write their signature with a trackpad/mouse or just type it.
98
- * [Formidable Forms API](https://formidableforms.com/downloads/formidable-api/ "Formidable Forms API"). Send entry results to any other site that has a Rest API. This includes the option of sending entries from one Formidable site to another.
99
- * [PayPal Forms](https://formidableforms.com/downloads/paypal-standard/ "PayPal Forms"). Automate your business by collecting instant payments from your clients. Collect information, calculate a total, and send clients on to PayPal.
100
- * [Stripe Forms](https://formidableforms.com/downloads/stripe/ "Stripe Forms"). Any Formidable forms on your site can accept credit card payments without users ever leaving your site.
101
- * [Authorize.net AIM Forms](https://formidableforms.com/downloads/authorize-net-aim/ "Authorize.net AIM Forms"). Accept one-time payments directly on your site, using Authorize.net AIM.
102
- * [MailChimp Forms](https://formidableforms.com/downloads/mailchimp/ "MailChimp Forms"). Add leads to a MailChimp mailing list when they submit forms and update their information along with the entry.
103
- * [Aweber Forms](https://formidableforms.com/downloads/aweber/ "Aweber Forms"). Subscribe users to an AWeber mailing list when they submit a form. AWeber is a powerful email marketing service.
104
- * [Highrise Forms](https://formidableforms.com/downloads/highrise/ "Highrise Forms"). Add your leads to your Highrise CRM account any time a Formidable form is submitted.
105
- * [Twilio for SMS Forms](https://formidableforms.com/downloads/twilio/ "Twilio for SMS Forms"). Allow users to text their votes for polls created by Formidable Forms, or send SMS notifications when form entries are submitted or updated.
106
- * [WPML Forms](https://formidableforms.com/downloads/wp-multilingual/ "WPML Forms"). Translate your forms into multiple languages using the Formidable-integrated WPML plugin.
107
- * [Polylang Forms](https://formidableforms.com/downloads/polylang/ "Polylang Forms"). Create bilingual or multilingual forms with help from Polylang.
108
- * [Bootstrap Form Styles](https://formidableforms.com/downloads/bootstrap/ "Bootstrap Form Styles"). Instantly add Bootstrap styling to all your Formidable forms.
109
- * [Bootstrap Modal Form](https://formidableforms.com/downloads/bootstrap-modal/ "Bootstrap Modal Form"). Open forms, views, other shortcodes, or sections of content in a Bootstrap modal popup.
110
- * [Salesforce Forms](https://formidableforms.com/downloads/salesforce/ "Salesforce Forms"). Create leads, contacts, and any other Salesforce objects directly from your WordPress forms.
111
- * [Zapier Forms](https://formidableforms.com/downloads/zapier/ "Zapier Forms"). Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or add a new Dropbox file with your form.
112
-
113
- Learn more at [Formidable Forms](https://formidableforms.com/ "Formidable Forms")
114
-
115
- [Contribute on Github](https://github.com/Strategy11/formidable-forms "Contribute on Github")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116
 
117
  == Installation ==
118
- 1. Go to your Plugins -> Add New page in your WordPress admin
119
  2. Search for 'Formidable'
120
  3. Click the 'Install Now' button
121
  4. Activate the plugin through the 'Plugins' menu
122
  5. Go to the Formidable Forms menu
123
- 6. Click the 'Add New' button to create a new form
124
- 7. Insert your forms on a page, post, or widget using a shortcode [formidable id=x], Alternatively use `<?php echo FrmFormsController::show_form(2, $key = '', $title=true, $description=true); ?>` in your page template
125
 
126
  == Screenshots ==
127
- 1. Build professional WordPress forms without any code.
128
- 2. Form builder plugin page
129
  3. Field Options and CSS Layout Classes in the form creator
130
  4. Field Options for checkbox fields in the form maker
131
- 5. Manage form entries from the back end
132
  6. Add a WordPress contact form into your sidebar with a widget
133
 
134
  == Frequently Asked Questions ==
@@ -138,2379 +276,100 @@ The fastest way to build a contact form is to use the contact form template we b
138
 
139
  Want to make a new contact form? Go to the Formidable -> Forms page and click "add new". Choose the Contact Us form template and click "Load Template". Now Save your contact form.
140
 
141
- Next, go to edit the page where you would like to publish your contact form. Click the "Formidable" button to open the shortcode builder. Choose your contact form and insert it into your WordPress page. Save your page, and you're done.
142
 
143
- Get more detail on [using the contact form template](https://formidableforms.com/wordpress-contact-form-template-to-unique/ "using the contact form template") in our blog.
144
 
145
  = My contact forms are not sending emails. Why not? =
146
 
147
- Try the following steps:
148
 
149
  1. Double check to make sure your email address is present and correct in your Email form action on the form "Settings" page. The [admin_email] shortcode uses the email address from your WordPress Settings -> General page.
150
  2. Make sure you are receiving other emails from your site (ie comment notifications, forgot password...). If these emails don't work on your site, form emails will not work either.
151
  3. Check your SPAM box
152
  4. Try a different email address in your contact form settings.
153
- 5. Install Postman SMPT or another similar plugin and configure the SMTP settings.
154
- 6. If none of these steps fix the problem with your form emails, and other site emails are not going out, please contact your web host. You can also [read more about WordPress emails not sending](https://formidableforms.com/wordpress-not-sending-emails-smtp/ "read more about WordPress emails not sending") in our blog.
155
-
156
- = How do I edit the field names in my forms? =
157
-
158
- The field and form names and descriptions are all changed with in-place edit. Just click on the text you would like to change, and it will turn into a text field.
159
-
160
- [See more FAQs](https://formidableforms.com/formidable-faqs/ "Formidable Form FAQs")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
161
 
162
  == Changelog ==
 
 
 
 
 
 
 
163
  = 3.04 =
164
  * New: Add option to duplicate a form action
165
  * New: Add option to turn form actions on or off
166
  * New: Add frm_is_multiple_select hook
167
 
168
- = 3.03.03 =
169
- * Improve the appearance of the import/export page
170
- * Move the admin menu position below the post comments
171
- * Remove unused CSS including CSS for login forms in the user registration plugin
172
- * Override theme styling for box shadows on inputs
173
- * Add a new migrator class that will serve as a base for migrations from other form builder plugins
174
- * Add a prepare_field_value function for altering the value show inside a form field that can be overridden in extension classes for fields
175
-
176
- = 3.03.02 =
177
- * Fix: When syntax highlighting was turned off in the user profile, the custom CSS box didn't appear.
178
- * Fix: Allow 'aside' tags in the form widget. Don't remove it when sanitizing.
179
- * Fix: When a form includes a reCaptcha, the loading indicator on the submit button wasn't triggered on submit.
180
- * Fix: The reCaptcha label was orphaned and didn't pass WCAG compliance. This fix applies to new reCaptcha fields. For existing fields, delete it and add it again.
181
- * Fix: Automatically scroll the form builder window when a field is dragged and dropped in the form.
182
- * Fix: Use a percentage for left labels instead of a fixed with to ensure the margin isn't too big for small spaces.
183
-
184
- = 3.03.01 =
185
- * Fix: Allow the section html in the form widget. Don't remove it when sanitizing.
186
- * Fix: Show the scrollbar for the list of fields in Chrome on the form builder. Some devices don't allow scrolling without it.
187
-
188
- = 3.03 =
189
- * Fix: Custom css like #frm_field_196_container > label was being sanitized and preventing the > from working correctly
190
- * Fix: Allow <i icon="something"> to pass sanitization in checkbox and radio field options
191
- * Fix: A warning message in the form style builder was sometimes appearing multiple times and not closing
192
- * Move datepicker css and images to Pro form builder
193
-
194
- = 3.02.02 =
195
- * Update PO file for translation
196
-
197
- = 3.02.01 =
198
- * Fix: Allow the heading class and ids to stay for the sidebar form widget. The headings were missing a class and not the same as other headings in some themes.
199
- * Fix: If all form templates are deleted, keep the 'templates' nav item so new templates can still be created.
200
- * Fix: When creating a new form, don't include trashed form templates in the form template options
201
- * Fix: Remove outdated sslverify references
202
- * Fix: The sample form for the form styler didn't have a great layout when CSS grids were turned on
203
-
204
- = 3.02 =
205
- * New: Add support for WordPress export and erase personal data options for easier GDPR support
206
- * Fix: HTML was getting stripped in field labels when a form was edited on the form builder page
207
- * Fix: If a field option includes HTML, allow the HTML rather than sanitizing it with entities
208
- * Fix: When the 'add option' button on the form builder is clicked multiple times, add the options correctly if the previous option isn't yes showing in the form maker
209
- * Fix: The HTML for the link to the user profile was showing in the sidebar when editing or viewing an entry
210
- * Code change: Move input classes into the field object class so it can be more easily overridden and amended. The FrmFieldType->get_input_class() function can be overridden in sub classes
211
-
212
- = 3.01.03 =
213
- * Fix: Add responsive styling for the .frm_four_col class when grids are disabled
214
- * Fix: Fix number field HTML5 min, max, and step. This code was still in the pro form builder
215
- * Fix: More escaping for translated strings, and whitelist false positives for code security tools
216
- * Fix: When form builder is loaded with ajax, prevent errors when the default value is an array
217
- * Fix: Add a nonce check when updating settings for a form
218
- * Removed: Get rid of the start tour. We will add this back in a less annoying way.
219
-
220
- = 3.01.02 =
221
- * New: Add frm_sanitize_shortcodes hook. This hook allows shortcodes in field values to be processed rather than shown on the page.
222
- * Fix: Stylesheets weren't saving correctly when multiple styles were used for forms
223
-
224
- = 3.01.01 =
225
- * New: Replace the jQuery colorpicker with the WordPress colorpicker in the visual form styler
226
- * New: Process shortcodes in the redirect url after form submission
227
- * New: frm_override_default_styles and frm_default_style_settings hooks
228
- * Fix: Prevent shortcodes inside field values from being processed in more places including the redirect url. This is a security precaution.
229
- * Fix: A default contact form was being added with each update. This update ensures the contact form is only generated once.
230
- * Fix: Allow the visual form styler to show instant changes to the sample contact form since server limits of url size were being hit in some cases.
231
- * Fix: HTML was being stripped from some form field settings on the form creator page like validation messages
232
-
233
- = 3.01 =
234
- * New: Added frm_js_location hook for saving the combined javascript file in a different location
235
- * New: Added frm_include_field_in_content hook for excluding fields in the default email message
236
- * Tweak: Process shortcodes inside the form validation messages
237
- * Tweak: Reduce page load time by not autoloading the saved form styling from the database. In most cases, this data is saved in the CSS file, and doesn't need to be retrieved from the database.
238
- * Fix: The Invisible reCaptcha wasn't being validated correctly in contact forms when the Pro version was not running.
239
- * Fix: Run the server-side form validation on a number field that uses 0 for the minimum value. This was being skipped.
240
- * Fix: Show the label above a dropdown field if the label position is set to inside since dropdown placeholders are not yet supported. Plus, don't show the Inside label position option for any fields that don't allow placeholders.
241
- * Fix: If there is an error during a database update, make sure it can try again in the future
242
- * Fix: Prevent more conflicts with Divi when editing some posts with forms
243
- * Fix: Form fields without CSS grids were not aligning correctly with left, right, or inline labels
244
-
245
- = 3.0.06 =
246
- * New: Include the option to duplicate a form in the free form maker
247
- * Fix: If the reply to address in the email is not specified, use only the from email without the from name to increase receivability
248
- * Fix: Improve form styling without CSS grids when using left, right, and inline labels
249
- * Fix: Make the frmFrontForm.fieldValueChanged function public in the javascript so it can be triggered by scripts in other plugins
250
-
251
- = 3.0.05 =
252
- * Fix: The visual form styler didn't look good when CSS grids were turned off
253
- * Fix: Prevent past database migrations from being run again. This was making some field sizes much larger.
254
- * Fix: If field sizes are extra long, reverse them because it most likely happened in the last release.
255
- * Fix: Sort by a number field on the entries page was ordering by text instead of number
256
- * Fix: The export page was showing weird styling for the form selector on some sites
257
- * Fix: If CSS grids are off, don't force the width to 100% for form fields like before
258
-
259
- = 3.0.04 =
260
- * Fix required validation: URL and number fields were requiring a value when the field was not required
261
- * Fix double recaptcha validation which was causing it to fail validation
262
-
263
- = 3.0.03 =
264
- * Enhancement: Use relative path in the form css now that the css is inside the plugin. Now font icons will continue working without a style save when the site url is changed.
265
- * Fix: Save a different stylesheet file for each site in a network to prevent them from saving over eachother
266
- * Fix: Use auto field height when grids are off to prevent tiny form fields on some sites
267
- * Fix: Correctly set default email message to 100% width
268
- * Fix: Fields with a layout class and labels set to right or left were not aligned right with CSS grids off
269
- * Fix: Some field shortcodes weren't being processed when the whitespace was abnormal from some cases of copy/paste
270
- * Fix: Set the width of the box with field types on form builder page a bit differently to prevent it from being too small when the page includes a lot of admin notices at the top
271
- * Remove a few 100% translations from the plugin so WordPress can handle it
272
-
273
- = 3.0.02 =
274
- * Tweak: Move the forms css inside the plugin rather than saving it in the uploads folder so it will always be reset after updates
275
- * New: Add frm_fields_container_class hook for changing the new form container class attributes
276
- * Fix: More form styling fixes for css grids. Fixes cover layouts with frm_alignright and smoother responsive layouts.
277
- * Fix: Combine the old and new form css, and include the old layout CSS by default
278
- * Fix: Trigger the activation install right when the plugin is installed
279
- * Fix: Don't add label position styling to fields that don't include the option to change the label position
280
- * Fix: Correctly limit the number of fields returned when using the FrmField::get_all_for_form function with a limit set
281
- * **Pro Version Forms**
282
- * New: Show a generated screenshot of the embedded form in the form builder rather than the first few fields
283
- * Fix: Auto updates with the nested version going from 3.0 were failing and updating to lite
284
- * Fix: Some default values were overiding non defaults when the form was displayed. This included user ID fields and other ifelds with separate values.
285
- * Fix: Recompile the combined javascript file any time the pro version number changes
286
- * Fix: Embedded forms were being changed when the parent form was saved
287
- * Fix: Dynamic fields showing the entry key were blank with [25 show=key].
288
- * Fix: More reliably run calculations in hidden fields inside of a section on multi paged forms
289
- * Fix: Don't apply auto layout classes to inline forms with more than 12 fields
290
- * Fix: When checking if an inline form needs layout classes added, check for non-numeric classes like frm_half
291
- * Fix: Prevent the comment box on the entries page from closing immediately
292
-
293
- = 3.0.01 =
294
- * Fix: Trigger style update when a form is loaded instead of only when an admin page is visited
295
- * Fix: A few various form styling and layout fixes
296
- * Fix: Prevent screenreader text for accessibility from showing on sites with older cached css
297
- * Fix: Prevent conflict with Divi when a form shortcode with a recaptcha is included in page editor
298
- * Fix: Use 'readfile' instead of 'include' for css files for extra safety precautions
299
- * Fix: Load the field options before frm_new_fields_vars hook for reverse compatibility
300
- * **Pro Version Forms**
301
- * New: Use toggle fields in calculations and conditional logic
302
- * Fix: Some conditional logic based on empty radio fields wasn't functioning
303
- * Fix: Require time fields at the correct times
304
-
305
- = 3.0 =
306
- * Move features into the free form builder: redirect and show page after save, javascript validation, field format options with HTML5 pattern validation, and phone number, number, user ID, hidden field, and HTML fields
307
- * Possibly breaking change: Remove code that has been deprecated since before v2.02
308
- * Save a combined js file to use on the front-end with a fallback if the file fails to generate. This file is updated when the plugin is activated or updated.
309
- * A UI pick-me-up in preparation of things to come in 4.0.
310
- * New: Use CSS grids for better layouts. If you would like your column layouts to show in Internet Explorer, you'll need to turn on the old styling in the Formidable -> Global settings. The grids use a 12-column layout with classes that range from frm1 (1 column of 12) to frm12 (span all 12 columns). (Thanks for the feedback from our feedback group!)
311
- * New: Search for fields by name, id, and key in the customization panel
312
- * Improved RTL styling in backend
313
- * Enhancement: Add frm_rtl class to forms with styles set to RTL for easier styling.
314
- * Enhancement: Customize the invalid message when a custom format is set on text fields
315
- * Better a11y/WCAG support: hidden labels where required, "for" tag on most labels, and link the field to its description for screenreaders.
316
- * Move form shortcodes from the sidebar to the form settings page
317
- * Change "field options" to "field settings" on the form builder page
318
- * Update the Print styling for the entries page
319
- * Remove frm_text_block class and do it by default. Radio buttons and checkboxes with wrapping text should look good by default.
320
- * Add a link in the footer to review Formidable
321
- * New: field object class to make it easy to make new field types. We don't have docs yet, but developers can take a look at the FrmFieldType class. But we've gone to great efforts to make sure fields done the old way will continue to function.
322
- * New hook: Add frm_output_single_style hook to add extra css into the generated stylesheet
323
- * New hook: Add frm_before_get_form hook for enqueueing form scripts
324
- * New hook: Add frm_enqueue_builder_scripts hook to load extra scripts on the form builder page
325
- * New hook: Add frm_show_entry_defaults hook to add extra atts to the frm_show_entry shortcode
326
- * Tweak: Include 'original_default' in the field array for new entries so we can compare and prevent double processing later
327
- * Fix: quotation marks were being escaped in frm_form_attributes and frm_form_div_attributes hooks
328
- * Removed: The preview page option in the global settings is no longer used. The form preview page is now generated.
329
- * Removed: The placeholder fallback javascript for old versions of IE is gone. No need to give everyone extra scripts to load.
330
- * Deprecated the accordion javascript checkbox in global settings since it isn't used by the plugin. If you had this box checked, you'll still see it. Once you uncheck it the option will no longer appear.
331
- * **Pro Version Forms**
332
- * New: Move Formidable Pro to its own plugin during update or install. Wahoo!
333
- * New: If the Pro version is installed without the lite forms, install it automatically. Prevent errors if pro is running alone or is also nested inside of lite.
334
- * Add range slider and toggle fields
335
- * Add visibility option to HTML and section fields
336
- * Move repeater field to its own field button
337
- * Combine image and URL fields
338
- * Add readonly option to time fields
339
- * Star rating fields: Separate from scale fields and remove the jquery rating js and replace with mostly html and css
340
- * Show frm-stats as stars with straight html/css (no more js)
341
- * New: Make it easier to show star values. Show the stars by default on the View entry page and show stars in a view with [25 html=1].
342
- * New: Added param checking to inline conditionals: [if 25 equals='param' param='set-name-here'] and [if get param="level" equals="gold"]
343
- * New: Add entry_position shortcode for incremental content in views. For example, this gives the option to show more or different information for the first entry in the view or insert ads after the third entry.
344
- * New: Automatically adjust fields to fit equally in an inline form
345
- * Separate Pro and Lite translations
346
- * Enhancement: If a form creates posts and is set to not save entries, save the created post.
347
- * Enhancement: Run form install on an API route instead of the admin ajax route and make sure there won't be multiple instances of the install running at once.
348
- * Enhancement: Use the options instead of transients for checking for updates. Some types of caching store transients indefinitely.
349
- * Enhancement: Get the shortcodes for a view more concisely. Check for any numeric shortcode instead of checking the database for the field ids
350
- * Tweak: Open files in the form upload field in a new tab
351
- * Tweak: Don't show the reports nav if the form has no entries
352
- * Tweak: Add .do-calculation class on a form to run calculations even if they are not on the current page of the form
353
- * Tweak: Add $atts with $atts['view'] to all pagination hooks
354
- * Fix: calculations in hidden fields inside of sections were not calculating
355
- * Fix: Add validation for the year range in date fields
356
- * Fix: Don't use conditional logic in form actions when the field isn't selected
357
- * Fix: Show address fields without <br> in dynamic fields
358
- * Fix: Require the credit card field when editing a draft
359
- * Fix: Only show the user login for a user id field when the display name is empty. Don't show it as a fallback for other user values.
360
- * Fix: Return 403 instead of 401 when a file type isn't allowed to be uploaded.
361
- * Fix: Install the wp_frm_copies table during the first multisite installation, and prevent it from checking tables before they exist.
362
- * Fix: Do not process a shortcode that is inserted into a field.
363
- * Fix: Conditionals that check user meta were always returning true
364
- * Fix: Autocomplete for dynamic fields was too small
365
- * Fix: If a field includes regex, keep the slashes when the field is duplicated
366
- * Fix: Correctly check conditional logic when comparing 0 to blank.
367
- * Fix: Prevent double filtering shortcodes in a nested view
368
- * Fix: Allow a view to not be filtered on the same page as a filtered view
369
- * Fix: Searching dynamic fields were returning extra, incorrect results
370
- * Fix: Searching for a decimal value was dropping the value after the decimal
371
- * Fix: Searching for a number with post entries and frm-search wasn't correctly checking the posts
372
- * Fix: datepicker settings weren't loading correctly in an ajax form with date fields that aren't on the first form page
373
- * Fix: Correctly hide and show fields in embedded forms with the frm-show-entry shortcode
374
- * Fix: When a field immediately follows an embedded form, it was showing up when include_fields included the embedded form
375
- * Removed the option to bulk create templates from forms
376
- * Removed the list of users on the reports page for quicker report loading.
377
-
378
- = 2.05.09 =
379
- * Fix: Read only background and border colors weren't showing in the form correctly
380
- * Fix: A PHP warning was showing with validation messages in the form
381
- * **Pro Version Forms**
382
- * Fix: Autocomplete dropdowns were looking for a space before the typed value
383
- * Fix: /r was showing in conditional multi-line default values
384
- * Fix: Add error styling to single option autocomplete dropdowns
385
- * Fix: Check conditional logic on html fields inside a repeating section
386
- * Fix: Prevent database errors on the first install in a multisite network
387
-
388
- = 2.05.08 =
389
- * Fix: Hide extra columns on the Formidable -> Entries page more accurately
390
- * Fix: Prevent WP confirmation messages from showing when saving a form
391
- * Fix: Some tooltips were partially covered by the admin menu
392
- * **Pro Version Forms**
393
- * Enhancement: When [auto_id start=100] is higher than the last value in the entry, use 100.
394
- * Enhancement: Remove type="text/javascript" for new HTML5 validation requirements
395
- * Fix: The Formidable -> Views page didn't look good on small screens
396
- * Fix: All custom field rows were being removed in post settings when one was removed
397
- * Fix: Lookup calculations in repeating sections were returning javascript errors
398
-
399
- = 2.05.07 =
400
- * New: Limit the number of field columns in the entry listing page to a max of 11 fields
401
- * Security Fix: Fix an SQL injection vulnerability on the Form listing page on the backend. Vulnerability discovered by the static code analysis solution RIPS (www.ripstech.com)
402
- * **Pro Version Forms**
403
- * New: Add links to edit views and post entry in the top admin bar
404
- * Tweak: Show default val/placeholder text icons for any item in an address field and confirmation fields
405
- * Tweak: Apply the frm_csv_sep hook when importing addresses. This allows for a difference separator to be specified for values in an address field
406
- * Fix: View pagination was being ignored when is wasn't overridden from the view shortcode
407
- * Fix: Prevent errors with hitting server limits for a long regex when processing shortcodes in a view with a long form
408
- * Fix: Set dependencies on the datepicker locale js. This solves the problem with the scripts getting out of order on some sites.
409
-
410
- = 2.05.06 =
411
- * Tweak: Move database functions from FrmAppHelper to FrmDb
412
- * Tweak: Move install/update/migrate functions from FrmDb to FrmMigrate
413
- * Tweak: Remove unused check_cache_and_transient function
414
- * Fix: Rename ja_JP translation to ja
415
- * **Pro Version Forms**
416
- * New: Add frm_load_ajax_field_scripts hook to allow custom field types to load scripts on the first page of the ajax form
417
- * Tweak: Only check for shortcodes in calculations if it includes a bracket [ to reduce processing time
418
- * Tweak: Speed up load time for long forms with field calculations by preventing the calculations from running when the total field is not on the current page.
419
- * Fix: Better sanitizing before running view query
420
- * Fix: Save the HTML in the "no entries" message for views
421
- * Fix: Save all filter settings correctly in the view
422
- * Tweak: A few adjustments for the entry shortcode array. Use the child entry id in the returned entry array and include the child form id in the entry array. This fixes issues with API entry updating.
423
-
424
- = 2.05.05 =
425
- * Fix: When form actions were added at the same time with non-alphabetical naming, a new addon was replacing the first one
426
- * **Pro Version Forms**
427
- * Fix: Show update notifications more reliably on sites that don't save the transient expiration
428
- * Fix: Allow script and style tags in the content boxes of views
429
-
430
- = 2.05.04 =
431
- * Tweak: Remove recaptcha and website fields from sample Contact us form template since most people don't need them
432
- * Fix: Updates for WP 4.9 compatibility. This includes preventing double filtering on contact form widgets and using the WordPress Codemirror scripts for the form CSS page.
433
- * Fix: Prevent "are you sure" message that has started occuring from WordPress when saving a WordPress form
434
- * Fix: Correctly validate form fields with an Inside field label when HTML5 forms are not enabled
435
- * Fix: Set the background color on loading form submit button. Depending on the hover button covers, the loading spinner may have been the same color as the button
436
- * Fix: Additional security checks when getting POST or GET values in some places
437
- * Fix: Return int rather than string from FrmForm::getIdByKey
438
- * **Pro Version Forms**
439
- * New: Allow normal WordPress shortcodes in the field calculations box
440
- * Fix: Strip commas during form validation in non-HTML5 number fields
441
- * Fix: Correctly order the views dropdown in the shortcode builder
442
-
443
- = 2.05.03 =
444
- * Enhancement: Clean up BCC and CC email buttons on small screens
445
- * Security enhancement: Use wp_kses instead of wp_kses_post for showing entries
446
- * Enhancement: Add more HTML options to the wp_kses filters
447
- * Fix: Correctly show the list of trashed forms after one is permanently deleted
448
- * **Pro Version Forms**
449
- * New: Add frm_xml_field_export_value hook
450
- * Fix: PHP error when editing an entry with a date field set as the post date
451
- * Fix: Field value formatting when exporting XML
452
- * Fix: Allow striphtml=1 to work for array values
453
- * Fix: Prevent confirmation field from moving down on small screens
454
-
455
- = 2.05.02 =
456
- * New: Add frm_affiliate_id hook for theme author affiliates
457
- * Fix: XSS vulnerability on form preview page. Don't check POST values before displaying the form
458
- * Enhancement: Speed up the Formidable > Entries listing page for large forms
459
- * Fix: Don't add slashes to default field values
460
- * Fix: Replace the arrows in the settings sections that disappeared in WP 4.8
461
- * **Pro Version Forms**
462
- * Enhancement: Add frmCalSeparation jQuery event for changing the comma in text calculations to something else
463
- * Fix: Prevent more themes from overriding the progress bar styling when the option to override theme styling is checked
464
- * Fix: More reliably hide and show the buttons for adding taxonomies and custom fields in the create post settings
465
- * Fix: Several issues with calculations with both fields inside and outside of repeating sections. Fixed issue with conditional radio fields used in repeating calculations.
466
- * Fix: Prevent endless loops in conditional logic when fields are dependent on each other
467
- * Fix: Searching number field values with LIKE was causing issues
468
- * Fix: Use secure cookies on SSL sites
469
- * Fix: Convert dates in certain formats more realibly before save
470
- * Fix: Correctly duplicate fields inside a repeating section
471
-
472
- = 2.05.01 =
473
- * Fix: Let the new label position option override the setting in the styles
474
- * Fix: Trigger an update for the styling settings so a manual save isn't required to get new updates
475
- * Fix: Prevent an undefined php warning when viewing the form page
476
- * **Pro Version Forms**
477
- * Fix: Revert the functionality behind filter=1 in views, and instead add a new filter=limited option for compatibility mode
478
-
479
- = 2.05 =
480
- * New: Add option to not save IP address with entries for GDPR compliant forms
481
- * New: Add a new label position option: Inside. This option automatically uses the field labels as placeholders.
482
- * Enhancement: Prevent jumping when selecting field to edit on form builder.
483
- * Enhancement: Trigger frm_after_entry_processed hook after save when the action is set to show a message. This affects deleting entries automatically.
484
- * Enhancement: Allow text colors like "red" in frm-show-entry.
485
- * Enhancement: Increase minimum WP version requirement to 4.0.
486
- * Enhancement: Add array_key option to entry shortcode to set whether an ID or key is used when an array is returned.
487
- * Fix: Restore Default Plain button for filling email content.
488
- * Fix: Set dependency on reCaptcha script to ensure it loads after the Formidable script when defer fails.
489
- * Fix: Add frm_entries_list_query hook to filter queries on the Formidable -> Entries page.
490
- * Fix: Improve field duplication on form builder.
491
- * Fix: Remove deprecated notification settings on import.
492
- * Fix: Allow multiple invisible recaptchas to work on the same page.
493
- * Fix: Make sure licenses tab loads if navigating to it directly.
494
- * **Pro Version Forms**
495
- * New: Add Repeat Limit option to Repeatable Sections.
496
- * New: Add target="_blank" option to file upload shortcodes with new_page=1 param.
497
- * New: Add frm_before_entries_table hook to display extra content on the Formidable -> Entries page.
498
- * New: Add frm_lookup_is_current_user_filter_needed filter to allow the options in a lookup field to be conditionally limited.
499
- * Enhancement: Allow repeating fields to be excluded from show entry shortcode.
500
- * Enhancement: Improve calculated fields that include fields both inside and outside a repeating section
501
- * Enhancement: Add RTL form support for time fields.
502
- * Enhancement: Conditionally allow int, rather than string, comparison in Lookup fields.
503
- * Enhancement: Add frm_main_feedback hook to messages shown after draft and edit.
504
- * Enhancement: Display zip code on the same line with city and state when an address is displayed.
505
- * Enhancement: Improve searching Dynamic field values on Entries tab
506
- * Fix: Improve compatibility with page builders and membership plugins. Don't run the_content filter on the View content. Instead, filter the content by calling those functions directly.
507
- * Fix: Delete temporary files after no less than 3 hours, regardless of time zone.
508
- * Fix: Append the media meta_query rather than replacing it. This resolves a conflict with files in WooCommerce.
509
- * Fix: Trim logic and actual value in conditional logic comparison.
510
- * Fix: Improve layout of confirmation field with a left label.
511
- * Fix: Allow a default value for checkbox fields on any form page.
512
- * Fix: Prevent Hidden fields from retaining "Clear default value when typing" setting when the field type changes.
513
- * Fix: Prevent errors when searching Dynamic fields with frm-search bar.
514
- * Fix: Do not send update emails when a draft is converted to an entry.
515
- * Fix: Do not show editable entry after submitting a draft, even though users can save and continue partial submissions.
516
- * Fix: Ensure the setting to not save credit card values is respected for draft entries too.
517
- * Fix: Do not show full address if [x show="line_2"] is empty.
518
- * Fix: Fix undefined index error for section ID shortcode.
519
- * Fix: Prevent jQuery from being loaded an extra time with edit in-place.
520
- * Fix: Correctly validate required field in embedded form on multi-page form.
521
- * Fix: Error messages were appearing in some server configurations when credit card numbers includes spaces.
522
-
523
- = 2.04.01 =
524
- * Fix: Prevent php warning when 'show' attr is missing.
525
- * **Pro Version Forms**
526
- * Fix: Prevent get_post_field() call on null.
527
-
528
- = 2.04 =
529
- * New: Add FrmEntryValues and FrmFieldValue classes, which should be widely reusable.
530
- * New: Add ready-to-use contact form. Use it anywhere with [formidable id=contact-form]. It will only be created on new installs.
531
- * Enhancement: Load global settings tabs with AJAX to improve the load speed.
532
- * Enhancement: Add form and entry to frm_email_message filter.
533
- * Fix: Changed blank title processing in the form widget to match WordPress core widgets.
534
- * **Pro Version Forms**
535
- * New: Add FrmProEntryValues and FrmProFieldValue classes, which should be widely reusable.
536
- * New: Add frm_validate_file and frm_response_after_upload hooks.
537
- * Enhancement: Set license keys in wp-config.php. Use define('FRM_PRO_LICENSE', 'license-key-here');
538
- * Enhancement: Prevent the submit button from being clicked while Lookup fields are processing.
539
- * Fix: If a field is in a section in an embedded form, it will now be included in the default email message.
540
- * Fix: Entry array passed to API and Zapier includes repeating fields with their own value arrays.
541
- * Fix: Include_fields parameter applies in show entry shortcode.
542
- * Fix: Some repeating or embedded fields were duplicated in the default emails and the show entry shortcode.
543
- * Fix: Only show section headings in email if there are values submitted inside the section.
544
- * Fix: Calculation error occurred when calculation contained fields inside and outside repeating section.
545
- * Fix: Make sure [input opt=1] works when "other" options are present in radio fields.
546
- * Fix: Prevent JS error for calc with no trigger field.
547
- * Fix: Show loading icon when updating a field with update link.
548
- * Fix: Allow "3" in the title of a collapsible section
549
- * Fix: Only check get_user_locale in admin area to stay in step with WordPress.
550
- * Fix: Keep Lookup option with special characters selected when editing entry.
551
- * Fix: Prevent fields from returning validation errors when they're in a hidden section.
552
- * Fix: Fix "Array" showing for the options in post status View filter.
553
- * Fix: Filter fields autopopulated by lookup based on parent settings.
554
- * Fix: Don't set cookie during API request.
555
- * Fix: Fix entry ID greater than and less than filters.
556
- * Fix: Close the file type limit selection box when clicking away.
557
- * Fix: Remove autoclear from masks.
558
-
559
- = 2.03.10 =
560
- * New: Add <a href="https://formidableforms.com/wordpress-anti-spam-invisible-recaptcha/">invisible recaptcha to your WordPress forms</a>
561
- * New: Add frm_form_div_attributes action hook
562
- * Enhancement: Replace is_super_admin calls per WordPress recommendations
563
- * Enhancement: Add duplicated field right below original instead of at the end of the form for easier drag and drop form building with long forms
564
- * Fix: When importing entries, save the IP from the imported CSV rather than the IP of the person running the import
565
- * Fix: Fix duplicate frm_verify ID HTML vaildation error in forms
566
- * Fix: Fix squished customization panel showing up when clicking into some field settings
567
- * Fix: Run frm_validate_entry when there are errors
568
- * **Pro Version Forms**
569
- * New: Add format option to Text Lookup fields
570
- * Enhancement: Make file upload errors translatable
571
- * Enhancement: Pull translations based on the user locale in the WordPress profile
572
- * Enhancement: Allow show=city in frm-field-value shortcode
573
- * Fix: Immediate update dropdown appearance on the form builder page when multi-select dropdown setting is changed
574
- * Fix: Don’t run JavaScript form validation on page load
575
- * Fix: Don’t force form placeholders in combo fields
576
- * Fix: Attach files from repeating sections to form emails when the option is checked
577
- * Fix: Update rewrite endpoints when the view parameter changes to prevent 404s
578
- * Fix: Assume equals=1 when is_draft shortcode is missing the equals parameter
579
- * Fix: Import form data correctly into Lookup Checkbox fields
580
-
581
- = 2.03.09 =
582
- * New: Add frmStartFormLoading and frmEndFormLoading jQuery events.
583
- * **Pro Version Forms**
584
- * New: Add frm_set_and_or_for_lookup filter to allow for filtering lookups that match every value.
585
- * Fix: Do not clear values in form fields when previous page is conditionally hidden.
586
- * Fix: Don't include combo field description html with empty description.
587
-
588
- = 2.03.08 =
589
- * New: Add frm_label_justify CSS layout class to justify text in long labels
590
- * Fix: Prevent XSS error messages in Chrome when saving a form on the back-end
591
- * Fix: Remove extra space between textarea and description.
592
- * Fix: Resolve errors in frm_entries_footer_scripts action call.
593
- * Fix: Decrease size of file path for automatic updates to avoid hitting file path limits on Windows servers.
594
- * Fix: Improve checkbox and radio styling with Bootstrap active.
595
- * Fix: Remove Bootstrap error class with js validation.
596
- * **Pro Version Forms**
597
- * New: Add unique date/time validation back to time fields in your forms.
598
- * New: Add custom jQuery events that fire before form redirect (frmBeforeFormRedirect) and after deleting/adding a row (frmAfterRemoveRow/frmAfterAddRow).
599
- * New: Add frm_full_upload CSS Layout Class.
600
- * Enhancement: Remove deprecated safe_mode references.
601
- * Enhancement: Allow field descriptions to be set in all sub fields.
602
- * Enhancement: Display a 0 in numeric calculations rather than a blank value.
603
- * Enhancement: Add [event_date] shortcode in View sidebar.
604
- * Enhancement: Check required fields before allowing a file to be uploaded.
605
- * Enhancement: Add Parent Entry ID column to entry listing page.
606
- * Enhancement: Allow Formidable forms shortcodes as auto_id prefix or suffix.
607
- * Fix: Improve styling for Other text box in horizontal radio or checkbox field
608
- * Fix: Switch Cancel Link back to Edit after entry is updated in-place.
609
- * Fix: Allow quotes in update link value.
610
- * Fix: Prevent other option from showing when using [input opt=1].
611
- * Fix: Skip content shortcode checks that have already been run.
612
- * Fix: Do not treat 0 value as empty in conditional shortcode.
613
- * Fix: Calculate median properly for stats.
614
- * Fix: Do not rely on field order to check if a field is conditionally hidden.
615
- * Fix: Include the html to set a dynamic field to multiple on the form builder page.
616
- * Fix: Get form and section ID correctly when existing field is dragged into a section.
617
- * Fix: Do not replace values in fields watching Lookups on edit.
618
-
619
- = 2.03.07 =
620
- * New: Add frm_after_import_view hook.
621
- * New: Add frmPageChanged, frmFormComplete, and frmFormErrors jQuery events.
622
- * Fix: Include full where query in cache key to avoid identical keys for different queries.
623
- * Fix: Show entries from all forms on the entry listing page.
624
- * Fix: Remove IE8-specific CSS causing errors in stylesheet.
625
- * **Pro Version Forms**
626
- * New: Add frm_before_create_post hook.
627
- * Enhancement: Add frm_final_submit class to submit button for easier form styling.
628
- * Fix: Allow star rating statistics to work for non-scale fields.
629
- * Fix: Add more file upload spam protection to stop spam files in your forms.
630
- * Fix: Prevent file uploads from some specific headless browsers.
631
- * Fix: Clear options when switching to Lookup field type to prevent conditional logic conflicts.
632
- * Fix: Convert show=id to show=ID in user ID shortcodes to prevent error messages.
633
- * Fix: Make sure Entry Status filter works.
634
- * Fix: Include Lookup Checkboxes in calculations.
635
-
636
- = 2.03.06 =
637
- * **Pro Version Forms**
638
- * Fix: Add nonce check for uploads
639
- * Fix: Decrease maximum number of orphaned files that can be deleted at one time
640
- * Fix: Carry page titles across on import
641
-
642
- = 2.03.05 =
643
- * New: Add <a href="https://formidableforms.com/defeat-spambots-honeypot-spam-protection/">Honeypot spam protection to your WordPress forms</a>
644
- * Enhancement: Add frm_form_attributes hook
645
- * Enhancement: Make field value dropdown code available in the free form builder plugin
646
- * Enhancement: Add deprecated notice for old globals such as $frm_form, $frm_entry, $frm_entry_meta, and $frmdb
647
- * Fix: Set default menu name to Formidable
648
- * Fix: Allow Date column to be toggled on form listing page
649
- * **Pro Version Forms**
650
- * New: Add Honeypot spam protection on file uploads in your forms.
651
- * New: Add option to get oldest or newest unique values in Views.
652
- * New: Add custom frmDrawChart event for customizing graphs.
653
- * Enhancement: Delete temporary files after 6 hours.
654
- * Enhancement: Add more comparison types for Lookup field queries. Affects frm_set_comparison_type_for_lookup hook options.
655
- * Enhancement: Add frm_pro_value_selector_options hook for customizing options available in field value dropdown.
656
- * Enhancement: Trigger frmLookupOptionsLoaded event when options are loaded in Lookup field.
657
- * Fix: Separate multiple files with comma for Zapier.
658
- * Fix: Start and end date not applying to repeating date fields.
659
- * Fix: Do not clear hidden form field in conditionally hidden Repeatable Section.
660
- * Fix: Create queue for fields watching cascading Lookups so the value set is always the correct value.
661
- * Fix: If a field doesn't have separate values, simplify the options array to include only the key and displayed value.
662
- * Fix: Delete child entries when a Repeating fields are conditionally hidden and entry is updated.
663
-
664
- = 2.03.04 =
665
- * Fix: Allow quotes within shortcodes in email settings
666
- * Fix: Check if an option is "other" a little more reliably. Instead of checking for 'other' anywhere in the option key, check for other_ at the beginning.
667
- * Fix: Correctly use default version number for jquery ui URL if query string is not included
668
- * Fix: Increase room for ids in the database. Increase from 11 to 20 to match the WordPress DB fields
669
- * Fix: Resolve a conflict with themes adding display:block; as the default for all input elements that is causing checkboxes and radio buttons to look bad
670
- * Code: Email code refactoring
671
- * **Pro Version Forms**
672
- * Fix: text calculations using a single dropdown time field
673
- * Fix: issue with duplicate headings after a repeating section in the default email message and the frm-show-entry shortcode
674
- * Fix: Prevent blank lines when headings are excluded in the default email message and the frm-show-entry shortcode
675
- * Fix: Remove the non-functional search box from the Formidable -> Entries page for all forms
676
- * Fix: invalid HTML when displaying paragraph field text in a Dynamic List field
677
- * Fix: Prevent a php error message when showing an empty table from the formresults shortcode
678
- * Fix: & was converting to &amp; in fields watching Lookups
679
- * Fix: Remove fields within section from section's logic options to help prevent logic loops
680
- * Fix: Time field conditional statements weren't showing content when they should
681
- * Fix: Time Field validation was having trouble when the start or end settings didn't include the leading zero (7:30 instead of 07:30)
682
- * Fix: Unique time fields were causing errors on submit
683
-
684
- = 2.03.03 =
685
- * Fix: Update the minified JS to match the non-minified version. This fixes issues with calculations.
686
- * Fix: Allow the first form action label to be clickable
687
-
688
- = 2.03.02 =
689
- * Fix: javascript error in Safari in form builder
690
- * Fix: Prevent null values from leaving a white space on the entries listing page
691
- * Fix: Form shortcode parameters were also affecting the forms in a widget
692
- * Fix: Prevent action trigger options from getting cut off at the bottom of the page
693
- * **Pro Version Forms**
694
- * New: Add an option on the Global settings page to fade in forms with conditional logic. This fixes issues on sites with javascript errors causing the form to never show.
695
- * Tweak: don't show the section headings in email by default
696
- * Tweak: Force Ajax submit when editing entry inline
697
- * Enhancement: Add time range validation when submitting the form based on settings for each time field
698
- * Fix: prevent duplicate form submissions with ajax submit
699
- * Fix: Entries on listing page were showing a php warning for entries submitted by logged out users
700
- * Fix: Prevent form submission while Lookups are loading options
701
- * Fix: Prevent two common calculation errors
702
- * Fix: Hide the child entries in repeating fields on the page that lists all entries
703
- * Fix: After selecting a form in the view settings, it wasn't possible to show the field keys in the sidebar
704
- * Fix: Lookup Checkboxes weren't saving in embedded form
705
- * Fix: Lookup fields weren't getting enabled if change triggered repeatedly
706
- * Fix: Time fields with missing settings were showing php warnings on the page
707
- * Fix: Make rootline look nice in Edge
708
- * Fix: Autosave values with the non-ajax autosave on page turn
709
- * Fix: Prevent multipage forms from submitting on the first page when redirecting after submit
710
- * Fix: "Array" was showing in the default emails for checkbox fields inside a repeating section
711
- * Fix: Prevent autocomplete dropdown from showing twice when editing in place
712
-
713
- = 2.03.01 =
714
- * Fix: Some colors were not being used correctly in the visual form styler settings
715
- * **Pro Version Forms**
716
- * New: Added an option to use the old time field with one dropdown
717
- * Fix: Syntax error on entry submit in older versions of PHP
718
- * Fix: [25 show=value] was returning the displayed value instead of the saved value
719
- * Fix: Conditional fields were showing after ajax save or ajax page turn
720
- * Fix: Save Rich Text value when form is submitted with button and ajax
721
- * Fix: Prevent button styling from applying to buttons inside a rich text field
722
- * Fix: Only include one column on the entries listing page for post status
723
- * Fix: Fields with conditional logic depending on time fields weren't showing correctly
724
- * Fix: PM was always saving as AM in time fields
725
- * Fix: Time fields sometimes had no minute options depending on the start time and minute step settings
726
- * Fix: Lookup Checkboxes were not saving in embedded forms
727
- * Fix: Removed the section descriptions and duplicate section headings in default email message
728
- * Fix: Prevent double submissions with ajax submit enabled with redirect after submit
729
- * Fix: Default Emails were coming through empty if the form only had embedded forms
730
-
731
- = 2.03 =
732
- * New: Add a combined list of all entries on the Formidable -> Entries page instead of defaulting to the first form
733
- * New: Replace submit input with button HTML for new forms. This allows us to show the loading indicator on top of the button instead of outside. This applies to new forms only. Existing forms will need the submit button HTML adjusted to see this new styling. But we decided it was best for reverse compatibility if we don't change it automatically
734
- * New: Add frm_after_title hook for inserting content between the title and form fields
735
- * Enhancement: Speed up adding and editing field options and conditional logic in the form builder
736
- * Enhancement: Don't save the field options until the whole form is saved
737
- * Tweak: Pass error array in frm_get_paged_fields instead of true/false. If you are using the frm_get_paged_fields hook, it's possible your code may need to be adjusted.
738
- * Fix: styling issue when select field moves when changing between a blank and not blank option
739
- * Fix: Make sure "Activate" button for add-ons is specific to subsite in multisite network
740
- * Removed: pro fields and styling options from the visual styler, extra pro version css, and registering pro scripts. We don't need unused options.
741
- * **Pro Version Forms**
742
- * New: Add multi page progress bars and rootline to jump to different pages
743
- * New: Add a page number parameter to the url when the form page changes
744
- * New: Auto-save drafts on page turn when drafts are enabled in the form maker settings
745
- * New: Add save button to back-end entries. This allows an entry to be saved from any page when editing.
746
- * New: Break out repeating sections in the email and frm-single-entry shortcode. Now they repeat instead of separate with commas.
747
- * New: Add options for email content/single entry shortcode: include_extras="section,page,html", include_fields="10,15", exclude_fields="10,15"
748
- * New: Change the time field to multiple dropdowns that always save in hh:mm format. This allows for secondary sorting by time fields in views. Using h:i A for the time format in a shortcode will be forced to g:i A.
749
- * Enhancement: Switch the unique time functionality from front-end disabling to back-end validation
750
- * Enhancement: Hide form on page load and fade it in to prevent conditional fields flashing
751
- * Enhancement: Order the post type dropdown by post key instead of defaulting to the order of post type creation
752
- * Enhancement: Make the custom field options more helpful by including custom fields only for the selected post type
753
- * Enhancement: Add .frm_loading_form class on the form tag while the form is processing
754
- * Enhancement: Show the dropzone error message all the time instead of only on hover
755
- * Tweak: Use css to make the conditional logic field options shorter instead of truncating in the form builder
756
- * Tweak: Use function to convert field object to array during in_section migration.
757
- * Tweak: Avoid errors after Lookup field is deleted and other fields watched that Lookup field.
758
- * Fix: Do not delete values in frm_item_metas table for all fields selected in create front-end Post action (such as the conditional logic).
759
- * Fix: Show the correct option label for a blank value. Previously option label for "0" saved value was displaying.
760
- * Fix: Compact file upload field wasn't aligned with other fields in the row
761
- * Fix: Evaluate date strings the same way in view filters and inline conditions for date fields
762
- * Removed: Old auto updating code. If you are running addons you haven't updated since before November 2015, they will no longer auto update.
763
-
764
- = 2.02.13 =
765
- * New: Add frm_send_separate_emails filter. If there are multiple emails in the "to" box, this hook will send one email per address.
766
- * Fixed: Prevent field option reset when a style is included with the imported form
767
- * **Pro Version Forms**
768
- * New: Add dynamic Lookup population options to paragraph fields
769
- * New: Allow no_link=1 for [25 truncate=20 no_link=1]. By default, when a value is truncated in a view, it shows a link to show more content. This shortcode option can remove the link.
770
- * New: Add does_not_contain filter to stats shortcode
771
- * New: Add frm_filter_view hook for modifying View object
772
- * New: Add frm_graph_default_colors hook
773
- * Tweak: Replace all formidablepro.com links with formidableforms.com
774
- * Improved: Remove arrows on read-only HTML5 number field
775
- * Improved: Apply Formidable styling to Dynamic List fields
776
- * Improved: Allow Lookup fields with repeating section values to filter based on parent value
777
- * Fixed: Do not enable read-only dependent Lookup fields
778
- * Fixed: Form scrolls correctly on page turn
779
- * Fixed: JavaScript errors caused by file upload field in Woocommerce form
780
- * Fixed: Allow ajax submit if there are no file fields on the page with a value
781
- * Fixed: Correctly import address values into Address field
782
- * Fixed: [created_at] conditionals take timezone into account
783
- * Fixed: Do not urlencode GET variables that are set in form shortcode
784
- * Fixed: Prevent WordPress auto paragraphs from adding unwanted paragraph tags in calendar View headings
785
- * Fixed: Removed repeating fields from non-repeating field logic
786
-
787
- = 2.02.12 =
788
- * Fixed: PHP 7.1 illegal string offset warnings addressed.
789
- * **Pro Version Forms**
790
- * New: Add frm_order_lookup_options hook to adjust the order of options in a Lookup field.
791
- * Fixed: JavaScript errors were occurring when illegal file type was uploaded and Woocommerce was active.
792
- * Fixed: Make sure PDF files display correctly with show_image=1 in WP 4.7.
793
- * Fixed: Scroll error when switching pages with Ajax submit.
794
- * Fixed: Make sure dependent autocomplete Lookup fields aren't disabled permanently.
795
- * Fixed: Make sure GET variables set in View shortcodes work correctly.
796
-
797
- = 2.02.11 =
798
- * New: Added frm_create_default_email_action hook to prevent default email action creation.
799
- * New: Added frm_inline_submit CSS Layout Class to use in the form generator.
800
- * Improved: Include IP for checking comment blacklist.
801
- * Improved: Load minified themepicker js and placeholder js when possible.
802
- * Improved: Better spam checking with Akismet.
803
- * Improved: Update placeholder JS for old browsers to v2.3.1.
804
- * Fixed: Don’t force fields created by a add-on to a text field when Pro is not installed.
805
- * Fixed: Style success message text color now applies to nested paragraph tags.
806
- * Fixed: Prevent PHP warning messages some sites are seeing during cache key retrieval.
807
- * Fixed: -1 offset in frm_scroll_offset hook now stops auto-scrolling.
808
- * Fixed: Invalid Portuguese translation for field is invalid message.
809
- * Fixed: A few HTML errors on form Settings page are resolved.
810
- * Fixed: Set default margin on checkbox and radio divs. This resolves conflicts with Bootstrap styling and frm_two_col and frm_three_col classes.
811
- * Fixed: If same form is published multiple times on the same page, make sure success message shows with the right occurrence of the form. Auto-scroll to the correct form as well.
812
- * **Pro Version Forms**
813
- * New: Add time_ago=2 and time_ago=3 to created_at shortcode options. The number used here will determine how many time levels are shown, e.g. time_ago=1 will show “2 years”, time_ago=2 will show “2 years 3 months”, time_ago=3 will show "2 years 3 months 15 days”.
814
- * New: Allow time comparisons with NOW, e.g. [if x less_than="NOW"]Show this content[/if x]
815
- * New: Added author_link parameter to userID shortcode options. [25 show=author_link] will include a link to the WordPress author page.
816
- * New: Added frm_allow_date_mismatch hook to improve validation for certain date formats. This may be needed if you are using a custom format in your date fields that include non-English text.
817
- * New: Added greater than or equal to and less than or equal to filter to stats and graphs.
818
- * Improved: Added comma between values in text calculation when multiple values come from the same field.
819
- * Improved: RTL indented sub-category styling for checkboxes and radio buttons.
820
- * Improved: Include the hidden Dropzone field inside the form instead of in the footer.
821
- * Improved: Remove entry div from the page after fadeout when deleting an entry.
822
- * Improved: Order post type dropdown in Create Post action by post key.
823
- * Improved: Allow repeating fields to be selected in a field's Lookup population options.
824
- * Improved: Repeating entry keys are now randomly generated.
825
- * Improved: Allow dynamic default value shortcodes in calculation box.
826
- * Fixed: Do not filter shortcodes submitted in entry when editing the entry. Process external shortcodes before replacing [input].
827
- * Fixed: The default value is now set correctly in dependent Lookup radio and checkbox fields.
828
- * Fixed: Style font now applies to section headings.
829
- * Fixed: Unnecessary urlencode removed from $_GET variable. Allows searching with + symbol in query string now.
830
- * Fixed: Endless loop prevented when new child form is given same ID as parent from XML.
831
- * Fixed: Allow updating of read-only dropdown in back-end Entries.
832
- * Fixed: Lookup field options wouldn't update while dropdown was open in Chrome on Windows. Dropdown is now disabled until options are completely loaded.
833
- * Fixed: Ensure that autocomplete text shows in dropdown when theme styling is overridden in Style.
834
- * Fixed: UserID field now autopopulates correctly when creating an entry in the WordPress dashboard.
835
- * Fixed: Errors on entries page when file didn't exist.
836
- * Fixed: The include_zero parameter in graphs caused errors with certain WordPress date formats. This now works with any date format.
837
- * Fixed: Using "hours" in a Creation Date View filter would result in erroneous results.
838
- * Fixed: Data was duplicated in the frm_item_metas and post meta or taxonomies table. It is now only present in the post meta or taxonomies table.
839
- * Fixed: Do not force html=1 on file upload field in frm-field-value shortcode.
840
- * Fixed: Prevent errors when a hidden field or text field is used for post status.
841
-
842
- = 2.02.10 =
843
- * Add frm_form_error_class hook
844
- * Fix db error when updating title in some forms
845
- * Fix unclickable keys in Customization Panel
846
- * Fix print styling on entries page
847
- * Clear entry cache after delete all entries
848
- * **Pro Form Features**
849
- * Add frm_time_ago_levels hook for drilling down time_ago
850
- * Fix adding new file after removal when editing
851
- * In multi-site, only copy forms if copy form setting is checked
852
- * Make sure detaillink works if View is on home page
853
-
854
- = 2.02.09 =
855
- * Add frm_before_install hook
856
- * Trigger a database update to flush permalinks
857
- * Fix PHP 5.4 syntax error
858
- * **Pro Form Features**
859
- * Fix single post page content
860
-
861
- = 2.02.08 =
862
- * Fix recaptcha error (change default to normal)
863
- * Prevent double submit clicks
864
- * Make sure recaptcha English language setting applies
865
- * Add placeholder color CSS
866
- * Add frm_after_import_form action hook
867
- * Add frm_send_email hook for stopping the email
868
- * Add frm_upgrade_page hook
869
- * Include field object in frm_prepare_data_before_db hook
870
- * Fix nav errors when trying to edit form that doesn't exist
871
- * Replace specific cache key deletion with group cache delete for more cache clearing fixes
872
- * **Pro Form Features**
873
- * Added pretty URLs to views
874
- * Added month and year labels in credit card dropdowns
875
- * Show user options for admin when editing user-limited dynamic field
876
- * Added frm_load_dropzone hook for disabling dropzone
877
- * Added frm_dynamic_field_user hook for dynamic fields.
878
- * Load pro translations in plugin instead of allowing translations from wp.org to trump
879
- * Fix error when editing a multi-page form with blank repeating section on separate page
880
- * Add space next to collapsible section icons
881
- * Fix required file error when file is present
882
- * Fix clearing dependent autocomplete dropdown in repeating sections
883
- * Update EDD updater
884
-
885
- = 2.02.07 =
886
- * Improve cache clearing in order to make Formidable compatible with persistent object caching
887
- * Add vertical-align:baseline to radio and checkboxes to prevent styling conflicts
888
- * Add hook for invalid form entry error message
889
- * Add form id to 'frm_include_meta_keys' hook
890
- * Fix IE11 and Edge form builder issues with editing field options
891
- * Allow localhost to pass URL validation
892
- * Remove frm_field_input_html calls for fields on form builder page
893
- * **Pro Forms Features**
894
- * Add option to send emails on import
895
- * Allow default style to export with form
896
- * Fix form importing with a style (make sure style is selected in form's settings)
897
- * Fix exporting Views without form
898
- * Fix adding subfield types in Chrome
899
- * Make sure "Remove" link still shows when frm_compact is used in file upload field
900
- * Make sure actions only trigger on import when import is selected
901
- * Check if transient timeout has been deleted to prevent expired update links
902
- * Fix conditional logic in a section after removing and re-adding a row
903
- * Make sure repeating section is cleared after a form is submitted
904
- * Move repeating section form to trash when parent is trashed
905
- * Make sure collapsible icon uses section color
906
- * Fix errors when "Show page content" is selected in form's settings
907
- * If repeating form entries page is accessed directly, go to parent's entries page
908
- * Fix editing entries with file upload in repeating section
909
- * Allow translation of more file upload messages and no results message in autocomplete dropdown
910
- * Fix donut graphs
911
- * Fix PHP 5.2 graph errors
912
- * Adjust lowercase value sorting in Lookup fields
913
- * Fix auto_id errors with WPML
914
- * Prevent multiple View filters from being added during migration
915
- * Fix Phone Number mask on ajax submission form
916
- * Fix exclude_fields option with editlink
917
- * Fix truncating in place so it doesn't cut words in half
918
- * Make sure autocomplete, multi-select, and read-only attributes are included for category dropdowns
919
- * Remove "Unique" option from userID fields
920
- * Fix hidden row_ids field name (in repeating section)
921
- * Make sure character limit, read-only, etc do not apply on form builder page
922
- * Make sure second and third level Lookup fields correctly limit options to the current user
923
- * Fix HTML validation errors for checkboxes in repeating fields
924
-
925
- = 2.02.06 =
926
- * Prevent styling conflict with field buttons on form builder
927
- * **Pro Forms Features**
928
- * Add styling for left and right labels in combo fields
929
- * Fix PHP 5.2 error in graphs controller
930
- * Add taxonomy support to graphs and stats
931
- * A couple other graph fixes
932
- * Fix entry_id and created_at issue with stats
933
- * Fix lowercase text sorting in Lookup fields
934
- * Make sure conditional logic works on embedded form fields when editing
935
- * Fix conditional logic dependent on hidden embedded form field
936
- * Make sure time field displays correctly by default with frm-field-value shortcode
937
- * Add Format option to Text fields
938
-
939
- = 2.02.05 =
940
- * Clear caching when updating styling settings
941
- * Add frm_field_div_classes hook
942
- * Remove deprecated safe_mode check
943
- * Warning added for invalid height/padding styling combination
944
- * **Pro Forms Features**
945
- * Added several new graph types and options
946
- * Prevent repeating field value duplication when saving drafts
947
- * Add migration to remove duplicated repeating section data
948
- * Show child forms in CSV export options
949
- * Allow 2 decimal places for max file size
950
- * Fix frm-stats y=""
951
- * Allow time fields to be used in calculations
952
- * Add a Country label option for Address fields
953
- * Remove a few graph filters
954
- * Make sure address fields display error messages
955
- * Make sure category fields keep value when saving a draft
956
- * Other bug fixes
957
-
958
- = 2.02.04 =
959
- * Add field description margin option
960
- * Fixes for submitting forms in <IE10
961
- * **Pro Forms Features**
962
- * Prevent star styling conflict with some themes
963
- * Fix conditional logic dependent on numeric checkboxes
964
- * Allow arrays in Lookup checkbox field default value
965
- * Make sure Lookup fields load correctly with ajax in repeating section on form builder
966
- * Fix field errors showing on dependent Dynamic fields
967
- * Only validate on change when js validation is on
968
- * Make sure address field errors show up correctly
969
- * Include confirmation field classes for old HTML
970
- * Make repeating fields work with frm_date_field_js hook
971
- * Don't show long decimal for allowed file size
972
- * Fix conditional logic with ampersands
973
- * Fix left label with autocomplete dropdown
974
- * Don't allow switching between sections and HTML field types
975
- * Fix JS error when multi-select logic field has no options selected
976
- * Make sure WP errors are returned correctly in file upload field
977
- * Allow use of show_image, add_link, and show_filename with frm-field-value
978
- * Don't show date pop-up for read-only date field
979
- * Fix ordering by number fields mapped to a custom field
980
-
981
-
982
- = 2.02.03 =
983
- * Update translations
984
- * **Pro Forms Features**
985
- * Fix file upload field display with an ID ending in 0
986
- * Fix file upload fields in a repeating section when editing entries
987
- * Don't trigger update on all repeating Lookup fields when new row is added
988
- * Don't clear Lookup dropdown values when editing
989
- * Fix showing the error message on confirmation fields
990
- * Fix conditional shortcodes for embedded file upload fields
991
- * Make sure visible repeating dependent Dynamic field values are not cleared
992
-
993
- = 2.02.02 =
994
- * Fix clicking the undo link after bulk trash forms
995
- * Add submitFormManual function for custom scripts
996
- * HTML5 error fields now have styling
997
- * **Pro Forms Features**
998
- * Fix conditional logic on radio fields in an embedded form
999
- * Add download link to files in uploader
1000
- * Fix undefined message in Address fields
1001
- * Make sure new file upload field works in repeating sections
1002
- * Show credit card errors
1003
- * Make sure date fields show the correct format in repeating sections when editing
1004
- * Make sure incorporated upload importer works correctly
1005
- * Fix file upload field on multi-page ajax submission form
1006
- * Exclude credit cards and passwords from default email
1007
- * Fix phone number field JS issues in firefox
1008
- * Add loading text to Lookup fields
1009
- * Improve reverse compatibility for file upload field ID shortcode
1010
- * Allow specific user ID and entry ID searching in form entries tab
1011
-
1012
- = 2.02.01 =
1013
- * **Pro Forms Features**
1014
- * Add styling for uploader with left label
1015
- * Add styling for rich text field with left label
1016
- * Make new file upload strings translatable
1017
- * Fix default date issue in Firefox
1018
- * Search post fields in admin entries tab
1019
- * Allow searching by IP address in admin entries tab
1020
- * Fixed showing default avatars if there is none selected in the form
1021
- * Fixed issue with newly uploaded files getting dropped when there are validation errors while editing an entry
1022
- * Fixed issue with showing the url of the icon instead of the uploaded file by default
1023
-
1024
- = 2.02 =
1025
- * Improve user role dropdowns in global settings
1026
- * Remove some deprecated functions
1027
- * More output escaping
1028
- * Move file creation for stylesheet to its own file for an easier API
1029
- * **Pro Forms Features**
1030
- * Add drag and drop file uploading
1031
- * Add options to set the file size and count limits
1032
- * Merge the upload importer plugin into main plugin
1033
- * Filter the media library so uploads in forms can only be viewed by those with permission to edit entries
1034
- * Don't allow direct viewing of attachment pages
1035
- * Add file protection options per form to prevent direct access to files
1036
- * Add a prefix to the attachment slug to prevent the attachments from using top-level slugs that would be better used elsewhere
1037
- * Process files during validation if javascript errors on the page, or if browser doesn't support the in-place file uploader
1038
- * Include the error message at the top of the page when there are ajax validation errors
1039
- * Add frm_image_html_array hook so we can tie in with modals soon
1040
- * Add an option to use text calculations for combining values instead of requiring math operations
1041
- * Add age shortcode for use in calculations. Use [age id=25] in a calculation, where 25 is the id of the date field.
1042
- * If a calculation doesn't have any field triggers, trigger it on load
1043
- * Fixed calculations using multiselect fields across page breaks
1044
- * Fixed date calculations with an empty date field. The calculation will now wait until any date fields have been filled.
1045
- * Only use ajax validation when ajax submit is turned on to prevent double validation checks
1046
- * Allow recaptcha to be dragged into section
1047
- * Fixed issue with html showing in rich text
1048
- * Fixed filtering conditionals from parent form inside of a foreach loop
1049
- * Change default sep for images displayed in View
1050
- * Don't force links when displaying a non-image file
1051
- * Make sure repeating fields watching Lookups keep custom value
1052
- * Fix undefined index error with date field calendar style setting
1053
- * Make sure page size and limit work together well in Views
1054
- * Don't run date calculations until all dates are selected
1055
- * Allow address field labels to be edited when field is initially added
1056
- * Fix single row Lookup field checkboxes styling
1057
-
1058
- = 2.01.03 =
1059
- * **Pro Forms Features**
1060
- * Make sure HTML entities don't show in rich text fields
1061
-
1062
- = 2.01.02 =
1063
- * Increased minimum required WordPress version to 3.8
1064
- * Added frm_skip_form_action hook. This hook can be used to change whether the action is skipped or not
1065
- * Added border radius settings to success and error messages
1066
- * Fixed issue allowing a trashed form shortcode to still show the form
1067
- * Fixed issue causing &amp; to show instead of & when editing paragraph fields
1068
- * Removes French and Swedish translations since they are complete online
1069
- * Update for better cache deletion in WP 4.0+
1070
- * Allow a specific field type to change the value for emails and entry array
1071
- * Prevent errors with Redis cache plugin
1072
- * Improve styling for submit buttons on mobile devices
1073
- * Don't let imported style override default
1074
- * Add frm_clean_[field-type-here]_field_options_before_update hook
1075
- * Fix &, >, and other character comparison issues
1076
- * **Pro Forms Features:**
1077
- * Added frm_combo_dropdown_label filter. This hook can be used to add a label to the blank option in combo field dropdowns (state, and country, Credit card month, year)
1078
- * Added frm_use_embedded_form_actions hook. If this hook is used to return the value "true", form actions for embedded forms will be fired
1079
- * Make sure the view page number is not 0
1080
- * When getting the entry array, address fields will no longer be sent as an array
1081
- * Don't load more than 500 options in a lookup field on the form builder page
1082
- * Fixed rich text fields with in place edit
1083
- * Fixed javascript error when submitting an entry from the back-end
1084
- * Use the correct calendar locale when editing an entry from the back-end
1085
- * Fixed issue with the unique message being replaced if it was the same as the global unique message
1086
- * Fixed issue with dependent dynamic field change events not getting triggered
1087
- * Exclude password and credit card fields from the default email message
1088
- * Add views parameter to frm-search shortcode
1089
- * Fix error that appeared when using a date field in a calculation in multi-page form
1090
- * Fix issue with switching from a dropdown to a Lookup field
1091
- * Fix issue with loading icon replacing Lookup field options
1092
- * Set confirmation field description correctly
1093
- * Allow post fields in form action conditional logic
1094
- * Set default value correctly when address field is shown
1095
- * Don't let spaces break conditional logic
1096
- * Fix JS error after in-place edit
1097
- * Fix PHP warning message for Lookup fields
1098
- * Fix ambiguous form ID SQL error
1099
- * Don't require credit card fields when editing
1100
- * Make sure ampersand doesn't break Lookup fields
1101
- * Add autopopulate option to Image URL, time, and hidden fields
1102
- * Add hook to allow LIKE comparison with Lookup fields
1103
-
1104
- = 2.01.01 =
1105
- * Use a different email regex to allow more characters, and longer TLDs
1106
- * Only load custom styles on the styler. Don't include it on the manage styles, or custom css tabs. Bad custom css can make the page uneditable.
1107
- * Fix issue preventing the option to Allow the multiple recaptchas to be turned off
1108
- * Fixed issue with white space allowed in field options when bulk editing
1109
- * Use javascript instead of jQuery to scroll after submit
1110
- * Add missing styling to make inline labels work with checkbox/radio fields
1111
- * **Pro Forms Features:**
1112
- * Add checkbox option to Lookup fields
1113
- * Hide empty radio/checkbox Lookup fields
1114
- * Allow autocomplete Lookup fields to populate text fields
1115
- * Add filter for setting field type used for logic 'frm_logic_FIELDTYPE_input_type'
1116
- * Prevent duplicate submissions during in-place-edit or ajax-loaded forms
1117
- * Make sure post fields show up correctly on edit
1118
- * Always show the number range options in a number field
1119
- * Fixed issue with dynamic list fields not saving a value when the visibility is set to administrator
1120
- * check for __frmDatepicker before using it. This resolves issues when using a date field with custom code.
1121
- * Strip slashes shown in an entry right after POSTing
1122
- * If a field in calculation is missing, don't break the js
1123
- * Prevent conditional loops with dropdown fields
1124
- * Fixed issue with Dynamic fields not showing up when expected, and when editing 3+ level Dynamic fields
1125
- * Remove the country field when the "other" address option is selected
1126
- * Fixed issue with required Address field on conditionally hidden page. They were still required, even when skipped.
1127
- * Fixed star fields on multi-paged ajax forms. Going back a page was showing radio buttons.
1128
- * Fixed issue with small autocomplete field, when it is hidden on page load.
1129
- * Fixed issue that allowed conditional fields to show right after hitting "save draft"
1130
- * Fixed default values inside of conditional logic
1131
- * Fixed issue preventing "none" from being selected for the date styling in the styles
1132
-
1133
- = 2.01.0 =
1134
- * Allow shortcodes for the submit button label
1135
- * Increase the timeout for activating a license
1136
- * Add a couple static functions to use in add-ons with form actions
1137
- * Don't show templates on the addons page
1138
- * Add frm_switch_field_types hook for specifying which fields can be switched to/from
1139
- * Add Authorize, Stripe, WOO, and copy icons
1140
- * Some back-end styling improvements
1141
- * Additional bug fixes
1142
- * **Pro Forms Feature:**
1143
- * Add new "Lookup" field type
1144
- * Add "Lookup value" option to several field types
1145
- * Add clear on focus and default blank option to Address fields
1146
- * Move form submit js to js file
1147
- * Add repeating field args to new and edit fields hooks
1148
- * Refactor conditional logic
1149
- * Improve and limit post redirection
1150
- * Cut down on View query size when no field filters are set
1151
- * Additional bug fixes
1152
-
1153
- = 2.0.25 =
1154
- * Add an option to allow multiple recaptchas. This is off by default to avoid new conflicts.
1155
- * Use the recaptcha size setting when displaying multiple recaptchas per page.
1156
- * Add frm_after_field_is_imported and frm_prepare_single_field_for_duplication hooks
1157
- * Add property="stylesheet" to the stylehsheets when HTML5 is enabled
1158
- * **Pro Forms Features**
1159
- * Redirect to post when View detail page is linked to post
1160
- * Make sure entry ID is unique filter does not get used
1161
- * Make sure limit applies to a View's pagination
1162
- * Add dynamic field to frm_data_sort hook
1163
- * Add a message when the file upload field is included before a page break
1164
- * Fix the issue with the frm_first class applying to the confirmation field
1165
- * Remove the invalid email message used when the email confirmation doesn't match
1166
-
1167
- = 2.0.24 =
1168
- * Add option to use the dark reCaptcha
1169
- * Show a helpful error message when recaptcha communication fails
1170
- * Fix the clear on focus setting to not switch to the default blank
1171
- * **Pro Forms Features:**
1172
- * Validate recaptcha during the javascript validation checks
1173
- * Make sure required credit card fields are required
1174
- * Add option to removes names from credit card fields to prevent the values from being posted to the server (most secure)
1175
- * Don't require address fields when conditionally hidden
1176
- * Exclude linked dynamic fields from calculation fields dropdown since they aren't functional
1177
- * Improve third-party shortcode filtering in Views
1178
- * Ignore View filters with no value selected for where field
1179
- * Fix the file upload background color setting
1180
- * Include a flag on the field to indicate if it is inside a section or not
1181
-
1182
- = 2.0.23 =
1183
- * Add support for multiple reCaptchas on a page
1184
- * Make sure the screen options for the form listings only shows when needed
1185
- * Make sure a value is selected when it includes an &
1186
- * Load grid CSS on the back-end entries and form builder pages
1187
- * Allow transparent background color on fields and form
1188
- * Don't update clear on click options until whole form is saved
1189
- * Don't force an array to be a string before going through get_display_value function
1190
- * Added frm_trigger_create_action hook to alter action triggering
1191
- * Added frm_csv_format hook for changing the exported CSV format
1192
- * Added frm_is_field_required hook for allowing a field to be conditionally required
1193
- * Added frm_field_options_to_update hook for setting more field options to update
1194
- * Added frm_display_FIELDTYPE_value_custom hook
1195
- * Added frm_get_FIELDTYPE_display_value
1196
- * Added frm_csv_field_columns hook. Once the columns are added, if a field value is an array, it will automatically fill added csv columns
1197
- * **Pro Forms Features:**
1198
- * Added straight up client-side validation
1199
- * Added Credit card and Address field types. Enable the Credit card field with add_filter( 'frm_include_credit_card', '__return_true' );
1200
- * Allow actions to be triggered when a draft is saved
1201
- * Allow free text in user id field filtering in views
1202
- * Improved the unique filter in Views
1203
- * Add Entry ID filter to all existing single entry Views instead of always checking for the entry param in the url
1204
- * Allow "any" for the number step
1205
- * Updated Chosen script to 1.5.1
1206
- * Correctly check for multisite sitewide activation
1207
- * Fixed the problem with the file upload attachment option not staying checked
1208
- * Fixed filtering by entry ID and fields together in Views
1209
- * Make sure the limit setting doesn't affect calendar Views, and show empty calendar for Calendar views with no entries
1210
- * Make sure closing shortcodes in After Content are filtered
1211
- * Make sure Dynamic List fields show up in default html email
1212
- * Make sure we are jumping to the first field in the form after validation instead of the field with the lowest id
1213
- * Fix field ID issue in repeating sections across pages
1214
-
1215
- = 2.0.22 =
1216
- * Add an upgrade banner when affiliate links are active
1217
- * Add permission checks in addition to nonce for several actions for extra security
1218
- * Don't allow javascript to be saved in field choices
1219
- * Include the admin_url params inside the function to resolve a conflict with WPML
1220
- * Prevent XML breaking with US character
1221
- * Fix rand() error with float some users are seeing with PHP7
1222
- * **Pro Forms Features:**
1223
- * Add the option to automatically delete files when a file is replaced, and and entry is deleted
1224
- * Allow a prefix and/or suffix along with the [auto_id] shortcode
1225
- * Add is_draft shortcode for views. This allows [is_draft], [if is_draft equals="1"]-draft-[/if is_draft], and [if is_draft equals="0"]-complete-[/if is_draft]
1226
- * Add frm_no_entries_message filter to adjust the output when there are no entries found
1227
- * Add frm_search_for_dynamic_text hook for searching numeric values in Dynamic fields
1228
- * Add the saved value into the array and json response. The entries fetched using FrmEntriesController::show_entry_shortcode were only returning the displayed value. This adds the saved value to the array as well. This covers user id, dynamic fields, radio, dropdown, and checkbox fields anytime the saved and displayed values are different.
1229
- * Add filter on add/remove fields to allow translations
1230
- * Default new number fields to use "any" step
1231
- * Fix conditional logic dependent on a paragraph field
1232
- * Fix date fields inside form loaded with in-place-edit
1233
-
1234
- = 2.0.21 =
1235
- * Add a timestamp to the css file instead of plugin version number to improve issues with styling caching
1236
- * Add pro tips & upgrade calls
1237
- * Fix bug with importing old forms with no custom style
1238
- * **Pro Forms Features:**
1239
- * Remove autoinsertion options from the view settings. Any views that were set to be inserted automatically will have their shortcodes saved onto that page.
1240
- * Allow the delete link to work after an ajax load
1241
- * Apply styling settings to HTML fields
1242
- * Randomize entry key on CSV import
1243
- * Make sure the old transient doesn't delay automatic update
1244
- * Allow forced plugin update check if it hasn't been forced before
1245
- * Fix CSV import form dropdown with only 1 item
1246
- * Fix bug with importing data in embed form fields
1247
- * Fix time_ago issue with blank value
1248
- * Fix missing pro license message to link to global settings
1249
- * Fix a fatal error when a non-Site Admin visits the Global settings page in multisite
1250
-
1251
- = 2.0.20 =
1252
- * Added more styling options: box-shadow, font-weight, Form Title, and Form Description
1253
- * Fixed a couple issues with activating and deactivating licences
1254
- * A few improvements for importing styles
1255
- * Add a hook for approved theme authors to add affiliate links. If the free version is packaged with a theme, the theme author can get commissions on upgrades.
1256
- * **Pro Forms Features:**
1257
- * Added Parent entry ID to view filters
1258
- * Added a button to autofill addon licenses
1259
- * Improve accuracy of time_ago for leap years
1260
-
1261
- = 2.0.19 =
1262
- * Add CSV export to free version
1263
- * Add page with list of add-ons
1264
- * Set up base for allowing affiliate links inside the free version
1265
- * **Pro Forms Features:**
1266
- * Updating improvements
1267
- * Add show_image=1 and add_link=1 to file upload field shortcode
1268
- * Show draft, pending, and private posts for creator and admin in frm-entry-links shortcode
1269
- * Make sure Number fields perform calc when shown
1270
- * Deprecate the frm_csv_field_ids filter
1271
- * Fix graph bug
1272
- * Fix Dynamic Field filtering in Views
1273
- * Fix JavaScript error in repeating section
1274
- * Fix showing errors in collapsible sections
1275
- * Hide the end divider field when needed
1276
- * Fix inline label for Dynamic dropdowns
1277
- * Make LIKE logic case-insensitive in field ID shortcode
1278
- * Make sure multiple file upload fields save on edit when all files are removed
1279
- * Fix conditional logic issues with extra white space
1280
- * Fix LIKE conditional logic issues with arrays and number values
1281
- * Fix calcs with edit in-place
1282
- * Include embedded fields in CSV export
1283
-
1284
- = 2.0.18 =
1285
- * PHP 7 updates
1286
- * Add frm_field_extra_html hook
1287
- * Prevent specific html entity from breaking email message
1288
- * Add filter for removing wpautop from form success message
1289
- * Fix HTML error on form builder page
1290
- * Change the "Licenses" submenu to "Plugin Licenses"
1291
- * **Pro Forms Features:**
1292
- * Allow ? and * in Phone Number Format
1293
- * Remove child form from export options
1294
- * Fix LIKE conditional logic bug
1295
- * Some auto-update adjustments
1296
- * Add frm_search_any_terms filter
1297
- * Fix file upload issue in CSV export
1298
- * Fix issue with duplicate classes in HTML field
1299
- * Fix filtering with user_id=current in graphs
1300
- * Fix Dynamic List field with value like 9.99
1301
- * Make sure userID field doesn't lose value when conditionally hidden/shown
1302
-
1303
- = 2.0.17 =
1304
- * **Pro Forms Features:**
1305
- * Fix post update bug
1306
-
1307
- = 2.0.16 =
1308
- * Escape font family correctly for quotation marks
1309
- * Only check for updates every 24 hours
1310
- * Allow emails to be separated by a space
1311
- * Prevent old versions of Akismet from causing errors
1312
- * Add unit tests for XML import
1313
- * Styling updates for WP 4.4
1314
- * Save form action settings even if they aren't in the default options
1315
- * More contrast on form builder page
1316
- * Use normal font weight for from builder
1317
- * **Pro Forms Features:**
1318
- * Allow Styles to be duplicated
1319
- * Allow the form key in the CSV download url
1320
- * Make like/not like conditional logic not case-sensitive
1321
- * Fix multiple conditional logics on a Dynamic field
1322
- * Fix XML import with repeating fields
1323
- * Fix notice for old dfe fields
1324
- * Make sure integer is being used for auto_id
1325
- * Fix read-only dependent Dynamic field with a default value
1326
- * Fix conditional radio button default value issue
1327
- * Fixes for conditional logic on sections
1328
- * Fix autoupdating for add-ons
1329
- * Show a message if no license has been entered for an add-on
1330
-
1331
- = 2.0.15 =
1332
- * Send plugin updates through formidableforms.com
1333
- * Update Swedish translation
1334
- * Use media_buttons hook instead of deprecated media_buttons_context hook
1335
- * Unit test updates
1336
- * Fix Portuguese translation error
1337
- * Allow more characters in field description
1338
- * Prevent plugin styling conflict with user roles dropdown
1339
- * Fix installing when the plugin is activated
1340
- * Get rid of ambiguity in FrmField::getAll function
1341
- * Fix the plugin url when used in the mu-plugins folder
1342
- * Make selected values show on form builder page before refresh
1343
- * Minor styling changes to frm_total class
1344
- * Update stylesheet after import
1345
- * Make long text wrap in Chrome cb/radio fields
1346
- * Add 'compact' option to Recaptcha
1347
- * **Pro Forms Features:**
1348
- * Fix conditional logic bug
1349
- * Fix calculations in repeating sections with visibility admin
1350
- * Fix dynamic list fields in repeating sections
1351
- * Fix JS error when removing row w/ read only field
1352
- * Add JavaScript hook for removeRow function
1353
- * Fix error for ordering view by time
1354
- * Fix error with no posted values in embedded forms
1355
- * Escape CSV cells with ' if they start with = (this is to prevent a vulnerability in Excel)
1356
- * Prevent array keys from being appended to user meta vals
1357
- * Switch autoupdating to EDD at formidableforms.com
1358
- * Prevent frm_display_id from switching when View is updated
1359
- * Fix multi-file upload display for embedded forms
1360
- * Allow text value to autopopulate dynamic fields
1361
- * Make embedded fields show up in View filters
1362
- * Don't let userID field affect css class in repeating section
1363
- * Don't check for shortcodes if no brackets are present
1364
- * A few auto updating fixes for multisite
1365
- * Switch [foreach 25] when form is duplicated
1366
-
1367
-
1368
- = 2.0.14 =
1369
- * Stripslashes in Other field
1370
- * Prevent collapse icon from being inserted inside of section
1371
- * Make sure roles dropdowns show correctly after clicking update (in Global Settings)
1372
- * Make form listing and entry listing pages responsive
1373
- * Don't truncate form name in excerpt mode
1374
- * Fix validating embedded forms
1375
- * Fix filtering by repeating fields in Dynamic Views > Detail Page
1376
- * Fix dependent Dynamic autocomplete fields with default values
1377
- * Fix logic on embedded forms and multiselect dd
1378
- * Some readonly field fixes
1379
- * Read-only improvements for multiselect dropdown
1380
- * Improve JavaScript for multiple forms on a page
1381
- * Use the minified css for jQuery UI styling
1382
- * Allow view filtering with time fields using NOW
1383
- * Allow times to be formatted with [25 format='g:i A']
1384
-
1385
- = 2.0.13 =
1386
- * Allow recaptcha to be conditionally hidden on previous pages of form
1387
- * Fix error with embedded form on a conditionally hidden page
1388
- * Show the editlink after an entry is edited in place
1389
- * Make sure collapsible section icons show regardless of characters in the section title
1390
- * Don't require conditionally hidden dynamic category fields
1391
- * Add fields attribute to [editlink] shortcode
1392
- * Fix calculations using repeating checkboxes
1393
- * Prevent double click on Add button in repeating section
1394
- * Clear conditionally hidden fields even if they aren't visible
1395
- * Make sure pro form templates get imported in multisite
1396
- * Use separate values by default for post status fields
1397
- * Make sure the separate values option is allows for post status fields
1398
- * Show the frmcal-week-end class consistently
1399
- * Fix default values in repeating Dynamic fields
1400
- * Make Private Views show up in shortcode builder
1401
- * Don't do calculations in conditionally hidden repeating fields
1402
- * Do calcs in repeating fields when adding a row
1403
- * Improve JS for IE8
1404
- * Fix unique time error
1405
- * Fix default date in jQuery calendar
1406
- * Allow entry key with frm-field-value shortcode
1407
- * Fix unique time error
1408
- * Improve calculations across page breaks
1409
- * Prevent clearing default values when hiding/showing sections
1410
- * Run calculations in collapsible sections
1411
- * Fix duplicating regular sections
1412
- * Add post ID View filter
1413
- * Fix empty graphs
1414
- * Allow frm-entry-update-field, editlink, and deletelink inside foreach loop
1415
- * Fix importing parent_form_id on child forms
1416
- * Allow css file updating if FTP creds are present
1417
- * A few jshint fixes
1418
- * Add 'frm_ajax_url' hook
1419
- * Allow layout classes to be used with submit button
1420
- * Remove frm_last class
1421
- * Prevent get_filesystem_method error in multisite after update
1422
- * Conditionally use ssl for the ajax url for form submission
1423
-
1424
-
1425
- = 2.0.12 =
1426
- * Add option to center form on page
1427
- * Improve styling classes for more consistency across different field classes, and make all classes responsive
1428
- * Added a few more styling classes: frm_three_fourths, frm_two_fifths, frm_three_fifths
1429
- * Remove in-place-editing from the field keys on the form builder page
1430
- * Add 'frm_after_update_field_name' hook for changing a field name during editing
1431
- * Update Bootstrap multiselect to v0.9.13
1432
- * Add license page to prepare for add-ons. Big things are coming.
1433
- * Fix: Prevent loading icon from being huge in some themes
1434
- * Fix: When the jQuery UI css is loaded by another plugin on the form builder page, the required icon looked the same whether required or not. This styling conflict is resolved.
1435
- * Fix: Make sure the form description size can be changed in the styling settings.
1436
- * **Pro Forms Features:**
1437
- * Views can now be filtered by fields in the repeating sections.
1438
- * Added [parent_id] shortcode for use in views. This shortcode will only have a value when the displaying entries in repeating sections.
1439
- * Allow views to be created using the repeated entries. Since each repeating row is an entry in a hidden form, we can allow views to be created using those repeating rows for more flexability.
1440
- * Added order parameter to frm-entry-links
1441
- * Allow options in a post status field to come from the form builder. The options should have separate values and the saved values can include 'publish', 'draft', 'private', 'scheduled'.
1442
- * Remove the option to lock field and form keys. This is more of a hassle than a feature.
1443
- * Allow the entry key to be used with the frm-field-value shortcode instead of forcing the entry
1444
- * Replaced inline 50px height for image fields with .frm_image_from_url class for easier control
1445
- * Improve file upload field in Chrome to prevent extra space from showing.
1446
- * Added 'frm_save_post_name' filter. This can be used for custom form actions that create posts.
1447
- * Added 'frm_display_data_opts' filter.
1448
- * Prevent frm_display_id custom field from saving when a field is selected in the create post settings instead of customized content
1449
- * Fix: When forms were submitted without ajax, the redirect wasn't working consistently.
1450
- * Fix: The shortcodes weren't processing in the message shown after an entry is updated.
1451
- * Fix: When we prevented the PayPal action from triggering on import, we stopped all actions. This is now fixed so an action can be set (in the code) to be triggered on import. Posts will now be created on import again.
1452
- * Fix: The dynamic list field was showing the entry ID in the entries tab instead of the value.
1453
- * Fix: The Add row button wasn't showing in a repeating section when returning to edit an entry if there were more than two rows in the section.
1454
- * Fix: Improve dropping a field between two sections.
1455
- * Fix: Remove nonce check for frm-entry-update-field shortode. Page caching gives front-end nonce checks issues.
1456
- * Fix: We changed the parameters sent to the frm_after_update_field hook without realizing it. The 'field_id' attribute was sometimes an object, but was previously always an integer. This has been updated for reverse compatibility, and 'field' has been added with the full field object.
1457
- * Fix: If you put -100 for the start date in a date field, -100 would show in the date field instead of 1915. This is now working correctly for dynamic values like this with three digits.
1458
- * Fix: When filtering a view with a Dynamic field, NOT EQUAL TO will work correctly.
1459
- * Fix: Double quotes were causing trouble when included inside an error message returned by the frm_validate_field_entry hook
1460
- * Fix: Graphs using x_axis and start_date were having trouble
1461
- * Fix: The js error after selecting an option in autocomplete field is fixed when there are calculations in the form.
1462
-
1463
- = 2.0.11 =
1464
- * Fix issue with clearing array keys when sanitizing an array when displaying entry values
1465
- * When the email "reply to" value uses the "from" setting, only use the email address without the name
1466
- * Switch the form action events to dropdown instead of checkboxes
1467
- * Shrink the reCaptcha on small screens
1468
- * Add font-weight 100-900 options to styler
1469
- * Add frm_email_message filter
1470
- * Fixes for javascript errors while form building in IE8
1471
- * Only load font.css for the admin bar when user can edit forms
1472
- * Add frm_include_form_tag filter for using div instead of form tag
1473
- * Add frm_show_submit_button filter for hiding and showing the submit button
1474
- * Fix date calculations using date formats that begin with the year
1475
- * Allow classes to be included on a hidden input
1476
- * Process the entry a little sooner (wp_loaded instead of wp)
1477
- * Add frm_capitalize layout class
1478
- * Make frm_customize class work for more field types
1479
- * **Pro Forms Features:**
1480
- * Set new views to private by default
1481
- * Allow clickable=1 in the frm-show-entry shortcode
1482
- * Make sure to show the Add row button for repeating sections in IE9
1483
- * Correctly require a password before showing password protected views
1484
- * Add update_single_field function for easier updating of a single field
1485
- * Add frm_datepicker_formats hook for adding format additional options on the Formidable -> global settings page
1486
- * Add frm_csv_row hook for adding data to a row in the CSV
1487
- * Keep the Pending status selected after save in the post settings
1488
- * Add frm_is_dynamic_field_empty filter for overriding whether a dependent dynamic field is available for validation or if the value should be cleared
1489
- * Improve dragging and dropping large sections of fields
1490
- * Don't trigger form actions while importing
1491
- * Make sure $entry_ids is still intact for the frm_after_content hook
1492
- * Replace m/d/Y format option
1493
- * Fix updating a field with the frm-entry-update-field shortcode
1494
- * Work on calculating different combinations of fields inside and outside a repeating section
1495
- * Only return unique values when a list field is displayed based on checkboxes
1496
- * Fix searching entries with a trailing space
1497
- * Fix truncating in the dynamic content
1498
-
1499
- = 2.0.10 =
1500
- * Add frm_action_triggers hook for adding custom triggers into the actions
1501
- * Add frm_{action name here}_action_options hook so any action can be altered
1502
- * Prevent extra form actions when a form is duplicated
1503
- * Load correct version of formidable.js based on wp-config debugging constant (Thanks @naomicbush for the contributions!)
1504
- * Revert get_sortable_columns changes for < WP 4.0 support
1505
- * **Pro Forms Features:**
1506
- * Allow calculations inside repeating sections and embedded forms
1507
- * Set default values for conditional checkboxes and radio fields and inside conditional sections
1508
- * A few changes to the way section fields create divs
1509
-
1510
- = 2.0.09 =
1511
- * Add frm_time_to_check duplicate entries filter
1512
- * Allow custom JavaScript validation
1513
- * Add frm_do_html_shortcodes fiter
1514
- * Fix the duplicate entry check
1515
- * Include get_columns function in list tables for 4.3
1516
- * Use relative URLs in the stylesheet
1517
- * Make frm_fifth classes responsive
1518
- * Allow 0 to be saved in a checkbox field
1519
- * Fix saving forms as drafts
1520
- * **Pro Forms Features:**
1521
- * Reduce database calls for Views
1522
- * Allow format for default [time] and [date] shortcodes ie [time format='H:i A' round=5]
1523
- * Include Dynamic List fields in calculation options
1524
- * Make file upload fields more responsive
1525
- * Improve repeating section styling
1526
- * Improve calculation triggering when fields involved are conditionally hidden
1527
- * Don't clear readonly fields or default values when hidden conditionally
1528
- * Don't trigger dynamic field values if there is other logic telling the field to be hidden
1529
- * Include Indonesian option for datepicker
1530
- * Allow the post author to be changed by the user ID field on edit
1531
- * Trigger calculations at the time a conditional field is shown
1532
- * Keep the value submitted in a dynamic list field
1533
- * Fix graphs that show multiple fields and define the x-axis
1534
- * Allow graphs to be included in the success message after ajax submit
1535
- * Conditionally show the max character setting in number fields based on whether HTML5 is enabled
1536
- * Allow scale fields to work in calculations across multiple pages
1537
- * Turn off ajax submit if repeating section includes a file
1538
- * Fix entry creation date format on import
1539
- * Fix filtering by a checkbox field in the frm-stats shortcode
1540
- * Fix logic for third-level fields with conditional logic inside a repeating section
1541
- * Make sure conditional logic only affects the newly added row when triggered after a row is added
1542
- * Make sure orphaned data is deleted when switching divider to repeating/non-repeating
1543
- * Allow drafts=both with user_id filter in View shortcode
1544
- * Fix conditionally required fields when option includes quote
1545
- * Fix date field errors on multi-page form that submits with Ajax
1546
- * Prevent the JetPack conflict with the shortcodes module
1547
- * Fix sorting in dependent Dynamic fields
1548
- * Registration add-on login form styling
1549
- * Fix inline scale field labels
1550
- * Fix spacing issue with repeating section grid
1551
- * Fix truncation with special characters
1552
- * Fix importing repeating sections and embedded forms
1553
- * Fix readonly checkboxes in calculations
1554
- * Don't show empty custom field rows in the post settings
1555
- * A few fixes to the formresults shortcode including the file display
1556
- * Fix error when duplicating a section without any included fields
1557
- * Fix timezones for searching by entry creation and updated dates in a view
1558
-
1559
- = 2.0.08 =
1560
- * Fix security vulnerability allowing shortcodes to be excuted inside a form https://research.g0blin.co.uk/?p=618&d=i4ziyggqao0oz0L0vpUTd8KZwrO2P9Mw
1561
- * Added frm_filter_final_form hook. This will need to be used to cover shortcodes that span multiple blocks of field HTML since we can't do a general shortcode replacement on the rendered form
1562
- * Revert change that prevented scripts from firing in the form success message
1563
- * Fix timestamp timezone on view/edit entry page
1564
- * Added frm_entries_{$col_name}_column hook to allow custom columns on the entries listing page
1565
- * Pro: Allow the last page of a form to be conditional
1566
- * Pro: When a field is conditionally hidden, clear the value and trigger calculations and child logic
1567
- * Pro: Improved accuracy of calculations using the other option, and across page breaks
1568
- * Pro: Added frm_calendar_day_names hook for displaying the full weekday name in calendar view
1569
- * Pro: Allow a comma-separated list of ids when filtering by entry id in the view settings
1570
- * Pro: Include the remove link on multiple file uploads
1571
- * Pro: Display a view row correctly right after a quick-edit
1572
- * Pro: Delete views when their form is permanently deleted
1573
- * Pro: Only show the ID column in google table when specified
1574
- * Pro: Fix boolean values in google entry table
1575
- * Pro: Reduce the memory usage when exporting a CSV by preventing entry caching
1576
- * Pro: Fix dependent taxonomies
1577
- * Pro: Fix the graph tooltips and wrap the text on graphs so it doesn't go beyond the width of the graph
1578
- * Pro: Allow the frm_user_can_edit hook to fire when loading a form with the entry id in the form shortcode
1579
- * Pro: Fix backslash removal in the phone format option when the form is saved
1580
- * Pro: Make sure validation is always performed even if there are only radio fields on the page, before showing a message that the entry failed
1581
- * Pro: Fix Dynamic List fields dependent on Dynamic checkboxes
1582
- * Pro: Keep the user on the last page when a draft is saved and there is only one field on the last page
1583
- * Pro: Export the category name in the CSV instead of the id
1584
- * Pro: Save user ID even if it's in a conditional section/page
1585
-
1586
- = 2.0.07 =
1587
- * Don't escape urls in ajax
1588
- * Correctly save all the options on the form settings page
1589
-
1590
- = 2.0.06 =
1591
- * Fix an XSS vulnerability in the lite version. When the pro version is active, the vulnerability was resolved.
1592
- * Increased security
1593
- * Fix the shortcode display on form listing page
1594
- * Add frm_helper_shortcode filter
1595
- * Prevent javascript error on form settings page when WooThemes Helper plugin is active
1596
- * Prevent conflict from unknown plugin/theme that was modifying the post excerpt in form actions, which prevented them from showing
1597
- * Only scroll to the errored field and success message if they are not already in view
1598
- * Make sure admins always have permission to view menus
1599
- * Pro: Fix datepicker field when the jQuery CSS is set to load on all pages
1600
- * Pro: Added frm_footer_scripts hook
1601
- * Pro: Don't autoselect 0 in scale fields
1602
-
1603
- = 2.0.05 =
1604
- * Remove deprecated jQuery toggle() calls
1605
- * Add html ids to hidden fields
1606
- * Make sure the entry name doesn't exceed allowed database field size
1607
- * Adjust user agent displayed values
1608
- * Update Bootstrap javascript to v3.3.4
1609
- * Clear more caching for forms, fields, and entries when changes are made
1610
- * Lite only: Remove the entry search box on the entries page since the functionality is in pro
1611
- * Pro: Fix issue with the CSV export on the Import/Export page
1612
- * Pro: Allow for FRMRULES to be on the page multiple times for ajax-loaded forms
1613
- * Pro: Add frmThemeOverride_jsErrors function hook
1614
- * Pro: Conditionally require fields in a conditional embedded form
1615
- * Pro: Fix date calculations and calculations across multiple pages
1616
- * Pro: Show the user display name by default with dynamic fields using a user ID field
1617
- * Pro: Fix read-only date fields on form submitted with ajax
1618
- * Pro: Fix issue with browsing view revisions
1619
- * Pro: Fix numeric phone formats without other characters
1620
- * Pro: Update masked input js to v1.4
1621
- * Pro: Fix issue with NaN showing instead of 0 in values without a number
1622
- * Pro: Fix conflict with Easy Digital download auto-updating
1623
- * Pro: Include list dynamic fields in the CSV and default email message
1624
- * Pro: Match up logic when an option with & is selected
1625
-
1626
- = 2.0.04 =
1627
- * Fix XSS vulnerability from add_query_args and remove_query_args
1628
- * Remove unneeded options from the form widget and switch old styling setting width from 400px to 100%
1629
- * Fix the new form class box in the customizable HTML
1630
- * Remove WP support for v3.5 and lower
1631
- * Don't require the captcha if the keys haven't been configured
1632
- * Styling enhancements for left and right label settings
1633
- * Deactivate plugin after uninstall to prevent tables from being added back
1634
- * Add frm_text_block class to Layout tab
1635
- * Fix migration of email settigns that haven't been updated in over two years
1636
- * Fix emailing from only a multiple word name with no email
1637
- * Send emails for WordPress default if trying to send from Yahoo
1638
- * Pro: Trigger calculation update each time a row is added or removed from repeating section
1639
- * Pro: Allow phone format inside of repeating sections
1640
- * Pro: Add allow=everyone option to frm-entry-update-field shortcode to prevent permission checking when updating a single field
1641
- * Pro: Fix graph limit defaulting to 10 and the min and max options
1642
- * Pro: Fix CSV download vulnerability without permission check
1643
- * Pro: Fix searching by field on entry listing page
1644
- * Pro: Fix exporting multiple entries with the bulk CSV export option
1645
- * Pro: Fix Entry ID filter in views when using a comma separated list of ids
1646
- * Pro: Fix 3+ level dynamic fields to hide the last field when the first is changed
1647
- * Pro: Fix apostraphes in form action logic
1648
-
1649
- = 2.0.03 =
1650
- * Use frm_clear instead of clear to minimize conflicts
1651
- * Add js fallback for database update on sites without CURL
1652
- * Fix issues with emails migrating to actions in php 5.3, and t showing in some emails after updating settings
1653
- * Pro: Add frm_date_format filter
1654
- * Pro: If a comma separated list of dates is sent for formatting, explode it before formatting
1655
- * Pro: Increase the backtrack limit when needed when replacing shortcodes in the view content if server has the limit below default
1656
- * Pro: Fix issue causing csv export error
1657
- * Pro: Fix the issue cuasing new posts to not be linked to a view if a field is selected for the post content
1658
- * Pro: Fix issue some users are having with blank date fields
1659
- * Pro: Fix ending collapsible sections at the end of a section instead of waiting for the next section
1660
- * Pro: Fix firing calculations on page load when there are multiple calculations
1661
- * Pro: Don't allow theme to affect the font size of stars
1662
-
1663
- = 2.0.02 =
1664
- * Make sure frm_to_email hook is reverse compatible
1665
- * Fix php example in the shortcode examples
1666
- * Add styling for frm_half classes combined with left or right labels
1667
- * Add a fallback if dbDelta is missing
1668
- * Remove inline js from the draft button in the default HTML to prevent 404/403 errors on some servers. This change only applies to new forms
1669
- * Move the legend tag into the customizable HTML, but without a migration so it won't be added to existing forms
1670
- * Move the "before fields" HTML into the fieldset to it will be parallell with the "After fields" HTML
1671
- * Make sure partial form transients aren't saved for long forms. Make sure it's all or nothing.
1672
- * Make sure the parent_form_id column was added, and try to add it again if it's not there
1673
- * Pro: Allow [25 show=count]. This shortcode will return a count of items instead of the items themselves. Intended for use with a repeating section field, but would work with anything.
1674
- * Pro: Fix filtering by text from a dynamic field
1675
- * Pro: Make sure conditional logic doesn't apply to fields that follow a section with logic
1676
- * Pro: Make sure any post fields used in custom code are included when the post is created
1677
- * Pro: Load the datepicker localization file from the new hosted location
1678
- * Pro: Rework the CSV export generation with lower memory usage and more hooks for easily removing columns
1679
- * Pro: Fix exporting checkbox fields inside a CSV
1680
- * Pro: Update the pagination for Genesis the '...'
1681
- * Pro: Hopefully fix the missing date format issue some users are running into with the datepicker. Unverified since we couldn't replicate.
1682
- * Pro: When creating a new view, make sure the filter and order rows include the fields from the selected form
1683
-
1684
- = 2.0.01 =
1685
- * Break transients into chunks for large forms ( > 200 fields )
1686
- * Remove the upgrade link and perform the upgrade automatically
1687
- * Allow upgrades to be done automatically in WordPress multisite with the 'Upgrade Network' option
1688
- * Updated translations
1689
- * Only add one line in the email headers for cc and bcc
1690
- * Added frm_include_meta_keys hook for including the previously included meta values referenced by field key
1691
- * Delete transients with uninstall
1692
- * Make sure the legend stays hidden after opening form in a popup
1693
- * Pro: Fixed issue with losing conditional logic on fields loaded with ajax on the form builder page
1694
- * Pro: Fixed the auto field reordering when adding end sections to old forms
1695
- * Pro: Fixed the daily entries graph on the reports page
1696
- * Pro: Allow the post author to be overridden with hooks
1697
- * Pro: Fixed the [get-param] shortcode for reverse compatibility
1698
-
1699
- = 2.0 =
1700
- * Move visual form styler into the free WordPress form plugin
1701
- * Added multiple emails to free version
1702
- * Added BCC, CC, and reply to options to emails
1703
- * Replaced the reCaptcha with the new no-captcha recaptcha
1704
- * Allow multiple roles to be selected for the permissions on the global settings page
1705
- * Updated the UI
1706
- * Added a trash can for forms as well as draft forms
1707
- * Extra security with sanitizing output and prepare database queries extra just to be sure
1708
- * Switch to frm_first frm_last frm_half classes for more flexibility
1709
- * Added more responsiveness to the styling classes
1710
- * Change the field width option from characters to pixels
1711
- * Change the user browser info into a more easily readable format, and include it in the lite version
1712
- * Add (hidden) legend tag for accessibility
1713
- * Fix preview page with 2015 theme
1714
- * Reduce duplicate entry check to 1 minute
1715
- * Remove a bunch of upgrade messages in the lite version
1716
- * Reduce size of indexed db columns for utf8mb4 in WordPress 4.2
1717
- * Fixed a SQL vulnerability. Thanks @KacperSzurek for finding it!
1718
- * Pro: Added multiple form styling templates, more styling options, and updated the default styling
1719
- * Pro: Added repeatable fields and embedded forms
1720
- * Pro: Created form actions and consolidated notifications and add-ons
1721
- * Pro: All form actions can use conditional logic
1722
- * Pro: Added confirmation fields
1723
- * Pro: Added read-only radio and check box fields
1724
- * Pro: View pagination will automatically take on Genesis theme styling
1725
- * Pro: Entire sections can be moved and duplicated
1726
- * Pro: Add frm_repeat_start_rows filter to allow the form to start with multiple rows in a repeating section
1727
- * Pro: Make the query work for custom code returning a string query on the frm_where_filter hook for reverse compatibility
1728
- * Pro: Escape all quotes in CSV
1729
- * Pro: Don't require dynamic fields with no options
1730
- * Pro: Remove stray div in the calendar view
1731
- * Pro: Remove 'no files selected' text if files are selected
1732
- * Pro: Add decimal option to calculations
1733
- * Pro: Add starts with, ends with, and group by options in View filters
1734
- * Pro: Add IP option to view filters
1735
- * Pro: Added entry ID to view order options
1736
- * Pro: Added hooks: frm_selectable_dates, frm_main_feedback, frm_allowed_times, frm_view_order, frm_csv_headers, frm_map_csv_field
1737
- * Pro: Allow min or max in the graph shortcode to be equal to 0
1738
- * Pro: Keep users on current page when they click "Save Draft"
1739
- * Pro: Add pending for post status options in the post settings
1740
- * Pro: Include JS with form when editing in place
1741
- * Pro: Fix displaying stats accuracy with partial stars
1742
- * Pro: Enqueued scripts right before they are printed for easier integration with more popup plugins
1743
- * Pro: Allow slashes in Phone Number Format option
1744
- * Pro: Allow default templates to be deleted
1745
- * Pro: Reduce the baseline memory load
1746
- * Pro: Load the form styling on view pages when set to only load styling on applicable pages
1747
- * Pro: Change deletelink so it deletes with ajax
1748
- * Pro: Add [user_role] shortcode for current user's role
1749
- * Pro: Add read-only option to Dynamic fields
1750
- * Pro: Add single row and multiple row options to Dynamic Radio and Checkbox fields
1751
- * Pro: Allow arrays in View filters
1752
- * Pro: Allow drafts to be searched with the frm-search form
1753
- * Pro: Fix sql error when searching by Hebrew characters
1754
- * Pro: Allow the use of field keys in the frm-stats shortcode
1755
- * Pro: Force tooltip wrapping in graphs
1756
- * Pro: Improve frm_total class for number fields
1757
- * Lots of other small features, bug fixes, and code cleanup. Too many little features to list!
1758
-
1759
- = 1.07.12 =
1760
- * Add a bunch more caching
1761
- * Scroll to field on click in form builder
1762
-
1763
- = 1.07.11 =
1764
- * Added hook: frm_check_blacklist for disabling the comment blacklist spam check
1765
- * Make nonce id unique per form
1766
- * Make sure there is at least one word before truncation
1767
- * Pro: Check conditional logic when importing dependent data from entries data
1768
- * Pro: Added number field min and max settings to php validation
1769
- * Pro: Added dynamic height to the chosen search field
1770
- * Pro: Allow HTML in the message for the frm-entry-update-field shortcode
1771
- * Pro: Added title parameter to frm-entry-update-field, frm-entry-edit-link, and frm-entry-delete-link
1772
- * Pro: Added end_date parameter to frm-stats shortcode
1773
- * Pro: Added hook: frm_display_value_atts
1774
- * Pro: Added hook: frm_after_duplicate_entry
1775
- * Pro: Added hook: frm_show_it
1776
- * Pro: Add nonce check for importing entries
1777
- * Pro: Fixed display of files with an icon when editing an entry
1778
-
1779
- = 1.07.10 =
1780
- * Improve ajax form load speed on form builder page
1781
- * Added 4.0 compatibility for deprecated like_escape function
1782
- * Remove label html in radio and checkbox fields when label=0 is used on the [input] tag in the customizable HTML
1783
- * Fix Akismet integration for current version of Akismet
1784
- * Added Italian translation
1785
- * Added a few ajax nonce checks but don't require valid nonce for logged-out users for caching reasons
1786
- * Allow data-something="value" inside the [input] short code
1787
- * Pro: Allow [default-message] to have short code parameters to set rtl (direction=rtl), font size (font_size="14px"), and styling (text_color="000" border_width="1px" border_color="000" bg_color="fff" alt_bg_color="eee").
1788
- * Pro: Added frm_html_scoll_box class for scrolling content in an HTML field
1789
- * Pro: Allow recurring entries using values like "Third Wednesday of [frmcal-date]"
1790
- * Pro: Allow comma separated view filters for entry key and id
1791
- * Pro: Allow drafts=both in view short code and form results short code
1792
- * Pro: Added created_at and updated_at support to the frm-stats short code
1793
- * Pro: Added column separation option to csv export
1794
- * Pro: Added hook: frm_csv_column_sep for changing the , separation between columns in csv
1795
- * Pro: Added hook: frm_csv_field_ids to specify fields to export in CSV
1796
- * Pro: Added hook: frm_filter_where_val and frm_filter_dfe_where_val for filtering only the value instead of the full WHERE statement
1797
- * Pro: Added hook: frm_rte_options for adding options to the TinyMce editor
1798
- * Pro: Added hook: frm_show_form_after_edit to show or hide the form differently from create
1799
- * Pro: Added hook: frm_scroll_offset to change the point of scroll after submit to allow for static headers
1800
- * Pro: Added hook: frm_ajax_load_styles for allowing additional styles on ajax loaded form pages
1801
- * Pro: Added hook: frm_create_cookies for preventing cookie creation
1802
- * Pro: Added hook: frm_filter_auto_content to prevent filtering on auto-inserted views
1803
- * Pro: Added hook: frm_file_icon to change what is displayed for a upload field when editing
1804
- * Pro: Import CSV values for a taxonomy field correctly when the term name is in the CSV instead of requiring the ID
1805
- * Pro: Import CSV dates correctly in entries if format has been changed to a day-first format
1806
- * Pro: Added Post ID into the view filtering options
1807
- * Pro: Added support for multiselect drop downs in calculations
1808
- * Pro: Updated the way templates are fetched for wpmu copying
1809
- * Pro: Show any additional info on the entry view page that is stored in the entry description
1810
- * Pro: Update to Chosen 1.1.0
1811
- * Pro: Allow comma-separated values to populate a checkbox field
1812
- * Pro: Make fields and exclude_fields parameter work with multi-page forms (required fields are still a limitation)
1813
- * Pro: Allow drafts=1 or drafts=both in stats shortcode
1814
- * Pro: Allow field keys in stats filtering
1815
- * Miscellaneous bug fixes
1816
-
1817
- = 1.07.09 =
1818
- * Added hook: frm_bulk_field_choices for adding custom prepopulated options
1819
- * Cleanup styling on bulk option popup
1820
- * Fixed submission error affecting some sites
1821
- * PRO: Don't reload javascripts after ajax submit
1822
- * PRO: Improve no conflict styling mode
1823
- * PRO: Fixed cascading calculations
1824
- * PRO: Allow HTML for the label and cancel links in the edit link shortcodes
1825
-
1826
- = 1.07.08 =
1827
- * Check the words on the WordPress blacklist before submitting an entry
1828
- * PRO: Added server dynamic default value for getting values from the PHP SERVER array like the current url
1829
- * PRO: Added hook: frm_csv_sep for changing , to a different separator for checkbox fields
1830
- * PRO: Exclude child categories in regular dropdown fields
1831
- * PRO: Added drafts parameter to formresults shortcode
1832
- * PRO: Added x_order parameter to graph shortcode and modified graphs to work correctly with checkboxes
1833
- * PRO: Added hook: frm_delete_message to customize the message shown after an entry is deleted
1834
- * PRO: Added != option to frm-stats shortcode options
1835
- * PRO: Added repeating events
1836
- * PRO: Improved database call for Views.
1837
- * PRO: Added a no conflict styling mode for overriding theme styling in the styling settings
1838
-
1839
- = 1.07.07 =
1840
- * Added clarity to message in license box when pro is not installed
1841
- * Added Spanish and Serbian translations. Thank you Ognjen Djuraskovic!
1842
- * Fixed XML form export in free version
1843
- * PRO: Added import_csv function back in with deprecated message and fallback
1844
- * PRO: Improved conditional statement replacing
1845
- * PRO: Minimize search form HTML
1846
- * PRO: Prevent comments on the view entry page from being deleted when the entry is updated
1847
- * PRO: Only run before delete entry hook on delete all button if posts are turned on
1848
- * PRO: Switch out ids for dependent fields after importing forms
1849
- * PRO: Added x_axis=month and x_axis=quarter option to graph shortcode
1850
-
1851
- = 1.07.06 =
1852
- * Return graceful error message if no DOMDocument enabled
1853
- * Allow fields to be updated via XML import by field key for non-templates
1854
- * Added minimize=1 option to the [formidable] short code to minimize the form HTML to prevent wpautop interference
1855
- * Correctly return fallbacks on a couple deprecated functions
1856
- * PRO: Allow field keys in the frm-stats shortcode for fieldid=value
1857
- * PRO: Fixed attaching file upload to entries when using single files
1858
-
1859
- = 1.07.05 =
1860
- * Added XML import/export
1861
- * Moved more email settings and bulk form delete to free version
1862
- * Added form edit links to admin bar
1863
- * Removed .required class from required form inputs to minimize conflicts
1864
- * Revert to random entry keys now that data from entries values can be used in filtering views
1865
- * Encode email subject with frm_encode_subject hook to prevent encoding
1866
- * PRO: Allow entries to be edited via csv import when entry ID is included
1867
- * PRO: Expanded conditional logic for email notifications
1868
- * PRO: Allow the frm-field-value shortcode to get the entry ID from the URL. [frm-field-value field_id=x entry_id=id]. Replace "id" with the name of the parameter in your URL
1869
- * PRO: Added separate set of confirmation options for editing
1870
- * PRO: Added option to disable visual tab on each view
1871
- * PRO: Added 'action' parameter back to the frm_redirect_url hook
1872
- * PRO: Added drafts parameter to view shortcode to show draft entries. [display-frm-data id=40 drafts=1]
1873
- * PRO: Switched star ratings to icon font
1874
- * PRO: Added multiple="multiple" into multiple file upload fields
1875
- * PRO: Allow field keys in the exlude_fields shortcode option
1876
- * PRO: Allow updated-at, created-at, updated-by to by used in conditional statements
1877
- * PRO: Added update message and button to global default messages
1878
- * PRO: Added progress bar to csv import
1879
- * PRO: Added hook: frm_csv_line_break filter for changing line breaks in csv export
1880
- * PRO: Change the updated_at and updated_by values when a field is changed with the edit field link
1881
- * PRO: Fixed adding new conditional logic to newly added notifications
1882
- * PRO: Allow "GROUP BY" addition to form in frm_where_filter by rearranging SQL
1883
- * PRO: Don't apply custom display filters to single post page
1884
- * PRO: Fixed showing only file name in views
1885
- * PRO: Removed Pretty Link plugin integration to be placed in an add-on
1886
- * PRO: Added delete_link and confirm parameter to formresults shortcode
1887
- * PRO: Added entry_id, x_title, y_title, start_date, and tooltip_label to graph shortcode options
1888
- * PRO: Allow data from entries fields to be used as x_axis in graphs
1889
- * PRO: Allow field keys in graph shortcode
1890
- * PRO: Add height and line-height to Global Settings
1891
- * PRO: Filter the empty_msg for Views
1892
- * PRO: Added draft status to csv export/import
1893
- * PRO: Check for valid file type when saving a draft
1894
- * PRO: Added sorting on entry listing table for non-post fields
1895
- * PRO: Fixed form pagination with errors and no ajax validation
1896
- * PRO: Changed image to a link when editing an entry with an image
1897
- * PRO: Moved the frm_setup_new_fields_vars hook to fire later when dynamically getting options from a dependent data from entries field
1898
- * PRO: Added frm_get_categories hook
1899
- * PRO: Added frm_jquery_themes hook for creating custom jQuery calendar themes
1900
- * PRO: Added frm_no_data_graph hook for customizing "No Data" message for graphs
1901
-
1902
- = 1.07.04 =
1903
- * Minor back-end styling fixes
1904
- * PRO: Added frm_show_delete_all hook to hide the "delete all entries" button, and show by default for those with back-end entry editing capabilities
1905
- * PRO: Fixed inserting conditional examples from the sidebar box
1906
- * PRO: Fixed viewing single post with some view configurations
1907
- * PRO: Fixed detailed view for calendar displays when entries are not posts
1908
- * PRO: Fixed conditional logic on page load for radio buttons
1909
- * PRO: Make sure entries aren't deleted in another form if using the form switcher right after deleting all entries in a form
1910
- * PRO: Fixed error when saving a field with conditional logic with no field selected
1911
- * PRO: Allow subscribers and below to add custom taxonomies to posts
1912
- * PRO: Fixed conditional data from entries fields across multiple pages in an ajax form
1913
-
1914
- = 1.07.03 =
1915
- * Removed auto updating from free version
1916
- * PRO: Added secondary ordering options in Views
1917
- * PRO: Allow newly added custom fields on the "Create posts" tab to be selected from existing options
1918
- * PRO: Allow html=1 and show_filename=1 to be used together for showing a filename linking to the file
1919
- * PRO: If not using show_filename=1, default to show the file type icon or non-image file types
1920
- * PRO: Fixed ordering in a view set to show a single entry
1921
- * PRO: Fixed adding new filters to views
1922
- * PRO: Allow a low-level user to edit entries submitted by another user when the setting is turned on, even if they have not submitted an entry themselves
1923
- * PRO: Fixed data from entries fields across multiple pages
1924
- * PRO: Added [updated-by] shortcode for use in views
1925
- * PRO: Send the detail page of a view through any set filters
1926
- * PRO: In a view, use limit over page size if limit is lower
1927
- * PRO: Fixed going backwards in a multi-paged form, when 2 or more pages are skipped at a time
1928
-
1929
- = 1.07.02 =
1930
- * Added form switcher to nav and other UI enhancements
1931
- * Remove slashes from a single entry retrieved from cache
1932
- * Remove slashes added by ajax before saving to db
1933
- * Fixed naming so plugin info and change log links are correct on plugins page
1934
- * Updated default submit button HTML to include [frmurl] for a dynamic url
1935
- * Added nonce fields and checking for increased security
1936
- * Switched to placeholder with IE fallback for those using HTML5
1937
- * Updated duplicate entry checking for more accuracy
1938
- * Improved long form load time and usability
1939
- * Added French translation
1940
- * Removed unnecessary definitions: FRM_IMAGES_URL, IS_WPMU, FRMPRO_IMAGES_URL
1941
- * Dropped support for < jQuery 1.7 (< WP 3.3)
1942
- * Added frm_radio_class, frm_checkbox_class, and frm_submit_button_class hooks
1943
- * Moved radio and checkbox inputs inside the label tags
1944
- * Updated default styling
1945
- * Added frm_text_block and frm_clearfix styling classes
1946
- * Added force_balance_tags on the in-place-editing fields on the form builder page to prevent issues with adding bad HTML
1947
- * PRO: Switch field IDs in email settings in duplicated form
1948
- * PRO: Added option to save drafts in forms. Users can save and continue partial subissions on the front-end.
1949
- * PRO: Added phone format option, including an input mask if format is not a regular expression
1950
- * PRO: Added exclude_fields to the form shortcode. Ex [formidable id=2 exclude_fields="25,26"]
1951
- * PRO: Added styling reset button on styling page
1952
- * PRO: Switch "Custom Display" terminology to "View"
1953
- * PRO: Allow any values in the form shortcode to set $_GET values. [formidable id=x get="something"]. Then use [get param="get"] in a field
1954
- * PRO: Allow the field value to be used to filter data from entries values in custom displays, statistics, and graphs
1955
- * PRO: Increased CSV export efficiency
1956
- * PRO: Allow for quotation marks in values used to get stats in the frm-stats shortcode
1957
- * PRO: Fixed entry listing widget to get values from stats for more accuracy
1958
- * PRO: Updated form template export to include all form settings
1959
- * PRO: Drop WP_List_Table fallback for < WP 3.1
1960
- * PRO: Make custom display pagination unique to allow multiple paginated displays on a single page
1961
- * PRO: Remove WPML-related translating options, and move to the add-on
1962
- * PRO: Added [entry_count] for use in custom displays
1963
- * PRO: Allow a blank option for multiselect data from entries fields when set to autocomplete
1964
- * PRO: Adjust imported created and updated times from server setting to UTC
1965
- * PRO: Switch time field generation from javascript to php
1966
- * PRO: Allow [if created-at less_than="-1 month"]
1967
- * PRO: Added frm_default_field_opts hook
1968
- * PRO: Added frm_send_to_not_email hook for notifications that are triggered on non-emails
1969
- * PRO: Updated file uploading progress bar with frm_uploading_files hook added to text
1970
- * PRO: Only show "create entry in form" box if user has permission to create entries
1971
- * PRO: Removed icons from error message
1972
- * PRO: Fixed collapsable entry list bullets
1973
- * PRO: Fixed dependent multi-select data from entries fields on edit
1974
- * PRO: Added frm_back_button_class hook
1975
- * PRO: Fixed quotation marks in conditional logic
1976
- * PRO: Allow filtering by a field value in graphs
1977
- * PRO: Make x_axis=created_at work in graphs
1978
- * PRO: Added if statements to Default HTML button in email message
1979
- * PRO: Added show_filename option to file upload fields
1980
- * PRO: Allow dropdown data from entries fields to be set as read only
1981
-
1982
- = 1.07.01 =
1983
- * Added for attribute to labels for newly created fields
1984
- * Fixed issue with slashes showing in content if retrieved from cache
1985
- * Prevent multiple checks for updates when pro is authorized, but free version is installed
1986
- * Added frm_form_fields_class hook
1987
- * PRO: Fixed days events are shown on the calendar with months starting on Sunday and week start day set to Monday
1988
- * PRO: Added option to not load a JQuery UI stylesheet
1989
- * PRO: Added "Entry ID" option to the back-end entry search options
1990
- * PRO: Added frm_csv_filename hook for changing the csv file name
1991
- * PRO: Allow siteurl and sitename in after content box in custom display
1992
- * PRO: Allow autocomplete selection to be unselected on front-end
1993
- * PRO: Fixed conditional validation for fields in a conditional section heading beyond page 1
1994
-
1995
- = 1.07.0 =
1996
- * Submit build form in one input with ajax to prevent max_input_vars limitations
1997
- * Load fields on the build page with ajax for long forms and other form builder page optimization
1998
- * Added submit button to customizable HTML
1999
- * Added clickable styling classes to form builder sidebar
2000
- * Create entry key from first required text field
2001
- * Set the default name of a field to the field type instead of "Untitled"
2002
- * Added minified version of formidable.js
2003
- * Added warning message if a non-unique value is added as a field value
2004
- * Removed messages for strict standards
2005
- * Fixed inline and left labels for checkboxes
2006
- * PRO: Added back button on multi-paged forms
2007
- * PRO: Added conditional logic on page breaks for skipping pages
2008
- * PRO: Added loading indicator by submit button and on dependent data from entries fields
2009
- * PRO: Switched out username and passwords for license numbers
2010
- * PRO: Updated timestamp in CSV to adjust for WordPress timezone selection
2011
- * PRO: Updated value in CSV for file upload fields
2012
- * PRO: Include comments in the CSV export
2013
- * PRO: Made dynamic default values clickable on form builder page
2014
- * PRO: Added column in CSV for value for fields that are set to use separate values
2015
- * PRO: Allow for quotation marks in field labels for the CSV export
2016
- * PRO: Added frm_import_val hook for CSV importing
2017
- * PRO: Removed border styling from the container around radio and checkbox fields
2018
- * PRO: Added frm_order_display hook
2019
- * PRO: Added utf8 support to sanitize_url=1 option
2020
- * PRO: Added "confirm" option to frm-entry-links shortocode that is used before an entry is deleted
2021
- * PRO: Copy conditional logic and field calculations into duplicated forms
2022
- * PRO: Allow clickable=1 and images to be used with Google formresults shortcode
2023
- * PRO: Allow [25 show="user_email"] for data from entries fields to get user info from the user ID from the linked form, and [25 show="30" show_info="user_email"] to get values from a field linked through 2 data from entries fields
2024
- * PRO: Allow tags fields to be used with hierarchal taxonomies
2025
- * PRO: No longer require fields in a conditionally hidden section heading
2026
- * PRO: Added option for frmThemeOverride_frmAfterSubmit function for custom javascript after ajax submit
2027
- * PRO: Updated star rating javascript version
2028
- * PRO: Check field key when creating a form from a template to see if the trailing "2" can be removed
2029
- * PRO: Don't show custom display content for password protected posts until allowed
2030
- * PRO: Switch the cancel link to edit link after a form is submitted with in-place-edit and ajax
2031
- * PRO: Switched front-end ajax to use hooks (frm_ajax_{controller}_{action})
2032
- * PRO: Call ajax later on the init hook to prevent php notices when WooCommerce is active
2033
- * PRO: Delete entries on the same page as the frm-entry-links shortcode, and added a confirmation message: confirm="Are you sure?"
2034
- * PRO: Correctly check if jQuery on() function exists
2035
- * PRO: Fixed calendar display for months starting on Sunday when the week start day is set to Monday
2036
- * PRO: Removed "custom display" from the post type options on the "create posts" settings tab
2037
- * PRO: Allow multiple values to be imported into an entry via csv in a multi-select dropdown field
2038
-
2039
- = 1.06.11 =
2040
- * Added styling classes: two thirds, scroll box, columns (frm_first_two_thirds, frm_last_two_thirds, frm_scroll_box, frm_total, frm_two_col, frm_three_col, frm_four_col, )
2041
- * Added container in default html for new check box and radio fields
2042
- * PRO: Added a print link on the view entry page in the back-end
2043
- * PRO: Added support for category stats in the frm-stats shortcode
2044
- * PRO: Allow the edit link to dynamically get the id of the entry when used on a post page. Ex: [frm-entry-edit-link id=current label="Edit" page_id=92]
2045
- * PRO: Allow non-admin users to see the user ID drop down in the back-end when they have permission to edit entries from the back-end
2046
- * PRO: Added frm_data_sort hook for sorting data from entries options
2047
- * PRO: Allow dropdown fields to be selected as the post title
2048
- * PRO: Switched data from entries drop downs to use field key in the html id instead of the field id for consistency
2049
- * PRO: When importing templates, use the path shown in the box whether it has been saved or not
2050
- * PRO: Fixed admin-only fields to still save to created post
2051
- * PRO: Fixed issue preventing required multiple file upload fields from being required
2052
- * PRO: Updated input mask script to 1.3.1
2053
- * PRO: Added hooks for entries in the admin: frm_row_actions, frm_edit_entry_publish_box, frm_show_entry_publish_box, frm_edit_entry_sidebar
2054
-
2055
- = 1.06.10 =
2056
- * Allow the usage of any html attributes inside the [input] tag in the customizable HTML
2057
- * PRO: Added "Chosen" autocomplete to dropdown fields
2058
- * PRO: Added automatic width option to data from entries fields
2059
- * PRO: Extended the "admin only" field option to all user roles, or only logged-in or logged-out users
2060
- * PRO: Added multiple-select to data from entries dropdowns
2061
- * PRO: Added more info to the form settings sidebar
2062
- * PRO: Resolved conflict between ajax submit and plugins/themes with whitespace in php files
2063
- * PRO: Fixed form template export to properly serialize and escape for multiple choice fields
2064
-
2065
- = 1.06.09 =
2066
- * DROPPED PHP4 SUPPORT. Do not update if you run PHP4.
2067
- * Added the "create template" link into the free version
2068
- * Added quotes around the menu position number to minimize menu position conflicts with other plugins
2069
- * Moved all stripslashes to the point the data is retrieved from the database
2070
- * Switched the field options bulk edit to use the admin ajax url to minimize plugin conflicts
2071
- * Changed all occurrences of .live() to .on() for jQuery 1.9 compatibility
2072
- * PRO: Added AJAX form submit
2073
- * PRO: Dropped Open Flash Chart support due to security vulnerabilities
2074
- * PRO: Added multiple option to dropdown fields
2075
- * PRO: Added unique error message into global and field settings
2076
- * PRO: Added option to limit by ranges in the frm-stats shortcode. Ex: [frm-stats id=50 '-1 month'<45<'-3 days']
2077
- * PRO: Automatically strip javascript before displaying entries through a custom display
2078
- * PRO: Added striphtml=1 and keepjs=1 options for use in custom displays
2079
- * PRO: Added option to get the field description with [125 show="description"]
2080
- * PRO: Added separate value column on entries page
2081
- * PRO: Added link to delete entry only and leave post
2082
- * PRO: Added box for custom css in the styling settings
2083
- * PRO: Added buttons to insert default HTML or plain text for those who wish to modify the default message without starting from scratch
2084
- * PRO: Added link to uploaded files in the entry edit form
2085
- * PRO: Added "like" and "not like" options to the conditional logic for hiding and showing fields
2086
- * PRO: Switched section headings to use h3 tags by default instead of h2
2087
- * PRO: Migrated "Allow Only One Entry for Each" fields to the unique checkbox on each field
2088
- * PRO: Allow for multiple uses of frm-entry-update-field for the same field and entry
2089
- * PRO: Allow external short codes in the email recipients box
2090
- * PRO: Allow the frm-search shortcode to be used in text widgets
2091
- * PRO: Switched conditional fields to show and hide instead of fadeIn and fadeOut
2092
- * PRO: Switched rich text fields to default to TinyMCE
2093
- * PRO: Correctly send emails to [admin_email], and allow the same email address to receive multiple notifications from the same form
2094
- * PRO: Filter shortcodes in success message when the form is limited to one entry per user and editable
2095
- * PRO: Correctly show the taxonomy name even if it is not linked to a post
2096
- * PRO: Fixed read-only option to work with dropdown fields
2097
- * PRO: Fixed post password setting
2098
- * PRO: Fixed post content replacement when entry is updated instead of only on creation
2099
- * PRO: Fixed frm-stats shortcode to allow field keys when using the value option
2100
- * PRO: Fixed custom displays getting used if they are in the trash
2101
- * PRO: Fixed custom display pages to not include the unfiltered post content when there are no entries to display
2102
- * PRO: Fixed the bulk delete option showing for users without permission to delete in the bulk actions dropdown on the admin entry listing page
2103
- * PRO: Fixed the delete link in entry edit links shortcode to prevent it from going to a blank form when using the page_id param
2104
- * PRO: Fixed calendar to show the correct number of extra boxes when not starting on Sunday
2105
- * PRO: Fixed repeated, inline conditional logic in custom displays
2106
- * PRO: Fixed option to copy forms to other sites in multi-site installs, so they will no longer be copied when the box is unchecked
2107
- * PRO: Fixed admin-only fields to not validate for users who can't see the field
2108
-
2109
- = 1.06.08 =
2110
- * Changed class names on action links on the form listing table to prevent conflicts with themes and other plugins
2111
- * PRO: Filter shortcodes if any in the login message
2112
- * PRO: Fixed order of fields shown in default email notification
2113
- * PRO: Keep files attached to the post when editing the entry and using multiple file upload option
2114
- * PRO: Attach file uploads to WP post even if the upload field is not set as a custom field
2115
- * PRO: Fixed bug forcing site name and admin email as the email "from" info when a custom name/email is selected
2116
- * PRO: Send a notification even if the notification before it is empty
2117
- * PRO: Fixed conditional logic on email notifications to make sure they are stopped when they should be
2118
- * PRO: Automatically send emails to the saved value of a field when used in the "Email recipients" box without requiring show=field_value
2119
-
2120
- = 1.06.07 =
2121
- * Added mb_split fallback for servers without mbstring installed
2122
- * Changed menu position to prevent override from other plugins and themes
2123
- * PRO: Fixed issue with the form shortcode showing if using multiple forms with default values on the same page
2124
- * PRO: Fixed javascript error in frm-entry-update-field shortcode
2125
- * PRO: Send the "read more" link to the single entry page instead of showing in-place for dynamic displays
2126
-
2127
- = 1.06.06 =
2128
- * Removed generic classes from input fields like "text" and "date"
2129
- * Correctly jump down to form with error messages
2130
- * Added frm_setup_new_entry hook for overriding defaults for all fields in one hook when presenting a blank form
2131
- * Added "This field cannot be blank" message to global settings
2132
- * Changed substr to mb_substr for language-safe truncation
2133
- * WP 3.5 compatibility
2134
- * Fixed conflict with W3TC that was adding slashes into options on the form settings page
2135
- * Show a message on the form builder page if a reCaptcha is included in the form, but not set up
2136
- * Switch from add_object_page to add_menu_page to prevent menu position conflicts
2137
- * (Free only) Allow emails to be sent from the admin email instead of forcing an email address from the submitted entry
2138
- * PRO: Added multiple-image upload
2139
- * PRO: Added unlimited emails per form and conditional routing
2140
- * PRO: Use the "customized content" box to save the actual content if no field is selected for the post content
2141
- * PRO: Added frm-field-value shortcode to get the value of a field in another form. [frm-field-value field_id=25 user_id=current entry_id=140 ip=1]
2142
- * PRO: Added frm-show-entry shortcode to show an entry in the same formats as the default email message. [frm-show-entry id=100 plain_text=1 user_info=1]
2143
- * PRO: Added frm_set_get shortcode to artificially set $_GET values for use in custom displays or dynamic defaults values. [frm-set-get any_param="any value" another="value 2"] This can be fetched with [get param="any_param"] [get param="another"]
2144
- * PRO: Extended conditional logic for displaying fields to include text, number, email, website, and time fields
2145
- * PRO: Added support for the [frm-search] shortcode into the [formresults] table
2146
- * PRO: Updated NicEdit
2147
- * PRO: If http isn't included in a url or image field, automatically add it during validation
2148
- * PRO: Added "wrap" parameter to the frm-graph shortcode to wrap the text in long questions
2149
- * PRO: Added localization to custom display calendar to start on day of the week selected in WordPress settings
2150
- * PRO: Added entry updated dates to custom display shortcodes
2151
- * PRO: Correctly check uniqueness of post fields when there are no other error messages
2152
- * PRO: If using a number field with the value "0" that is linked through a data from entries field, show 0 instead of nothing
2153
- * PRO: Update for more accurate checking for hierarchal taxonomies when saving posts
2154
- * PRO: Evaluate numbers as numeric instead of a string for conditional logic for hiding and showing fields
2155
- * PRO: Fix to allow tags fields and other fields in the same form that are mapped to the same taxonomy
2156
- * PRO: Fixed conditional logic to work correctly when dependent on the value "0"
2157
- * PRO: Fixed display of shortcodes inside the before or after content areas of the custom display if nesting [get param=something]
2158
- * PRO: Fixed calculations for multiple-paged calculations with checkbox fields that may not be checked
2159
- * PRO: Fixed checkbox fields linked through another field to display properly in a custom display
2160
- * PRO: Fixed separate values to work with sending to email addresses
2161
- * PRO: Show a max of 500 options in a data from entries field in the admin to prevent server limits from making the form inaccessible
2162
- * PRO: Make sure the graphs printed from the reports page are not split when printing
2163
- * PRO: Fixed the link to show more text in the custom display to show the text in place or link to the single page correctly depending on the custom display type
2164
- * PRO: Removed "just show it" data from entries fields in the email checkbox settings
2165
- * PRO: Remove post custom fields from database if blank
2166
- * PRO: Fixed frm-stats shortcode to work with post custom fields combined with the value parameter
2167
- * PRO: Fixed div nesting issue when using collapsible section headings followed by non-collapsible sections headings
2168
- * PRO: Removed separate values checkbox for post status and taxonomy fields
2169
- * PRO: Fixed double filtering forms if inserted in the dynamic box of a custom display used for posts
2170
- * PRO: Fixed page size and limit overriding single entry displays
2171
-
2172
- = 1.06.05 =
2173
- * Fixed WP 3.4 layout issues with missing sidebars
2174
- * Added responsive css for WP 3.4 to keep the form builder sidebar box showing on small screens
2175
- * Updated the delete option trash can to appear more easily
2176
- * Use absolute path for php includes() and requires() to prevent them from using files from other plugins or themes
2177
- * Updated translations
2178
- * PRO: Prevent wp_redirect from stripping square brackets from urls
2179
- * PRO: Fixed calculations for fields hidden in a collapsible section
2180
- * PRO: Fixed delete link to work on pages without forms
2181
- * PRO: Added support to import checkbox field values in multiple columns
2182
-
2183
- = 1.06.04 =
2184
- * Moved form processing to avoid multiple submissions when some plugins are activated and remove the page before redirection
2185
- * Removed BuddyPress filters from the email notifications to avoid forcing them to send from noreply@domain.com
2186
- * Allow blank required indicator and to email in forms
2187
- * Fix to allow access to form, entry, and display pages for WordPress versions < 3.1
2188
- * Fixed default checkbox or radio field values for fields with separate option values
2189
- * Corrected Arkansas abbreviation in templates and bulk edit options
2190
- * Fixed display of radio field values from fields with separate values
2191
- * PRO: Added custom display content box into "create posts" settings tab
2192
- * PRO: Added options to auto-create fields for post status and post categories/taxonomies
2193
- * PRO: Added link to de-authorize a site to use your Pro credentials
2194
- * PRO: Added meta box on posts with link to automatically create a form entry linked to the post
2195
- * PRO: Hide pro credentials settings form when pro is active
2196
- * PRO: Fixed redirect URL to correctly replace shortcodes for forms set to not save any entries
2197
- * PRO: Fixed regular dropdown field taxonomies to trigger conditional logic and use the auto width option
2198
- * PRO: Allow searching by user login when selecting a user ID field to search by on the admin entries page
2199
- * PRO: Updated the auto_id default value to continue functioning correctly even if there are non-numeric values in entries
2200
- * PRO: Added an index.php file into the uploads/formidable folder to prevent file browsing for those without an htaccess file
2201
- * PRO: Allow field IDs as dynamic default values ie [25]. This will ONLY work when the value has just been posted.
2202
- * PRO: Added the display object into the args array to pass to the frm_where_filter hook
2203
- * PRO: Allow for negative numbers in calculations
2204
- * PRO: Allow for unlimited GET parameter setting in the custom display shortcode. [display-frm-data id=2 whatever=value whatever2=value2]
2205
- * PRO: Switched phone field to HTML5 "tel" input type
2206
- * PRO: Added a frm_cookie_expiration hook to change the cookie expiration time
2207
- * PRO: Added cookie expiration option
2208
- * PRO: Added frm_used_dates hook for blocked out dates in unique datepickers
2209
- * PRO: Added frm_redirect_url hook
2210
- * PRO: Fixed forms submit button labels for forms in add entry mode that follow a form in edit mode on the same page
2211
- * PRO: Fixed CSV import for delimiters other than a comma
2212
- * PRO: Added three icons to the error icon setting
2213
- * PRO: Fixed duplicate deletion messages when using [deletelink] in the form customizable HTML
2214
- * PRO: Updated calculations and conditional logic to work across multi-paged forms
2215
- * PRO: Added basic support for data from entries csv import
2216
- * PRO: Show image for data from entries fields using upload fields
2217
-
2218
- = 1.06.03 =
2219
- * Added option to not store entries in the database from a specific form
2220
- * Added option to skip Akismet spam check for logged in users
2221
- * The forms, entries, and custom display page columns that are shown and entries per page are now customizable for those running at least v3.1 of WordPress
2222
- * Added a css class option to the field options with predefined CSS classes for multi-column forms: frm_first_half, frm_last_half, frm_first_third, frm_third, frm_last_third, frm_first_fourth, frm_fourth, frm_last_fourth, frm_first_inline, frm_inline, frm_last_inline, frm_full, frm_grid_first, frm_grid, frm_grid_odd
2223
- * Added the option to add a class to an input. In the customizable HTML, change [input] to [input class="your_class_here"]
2224
- * Added "inline" option to label position options to have a label to the left without the width restriction
2225
- * Switched the "action" parameter to "frm_action" to prevent conflicts. If no "frm_action" value is present, "action" will still be used
2226
- * Updated form templates (including the contact us form template) with new styling classes
2227
- * Show quotation marks instead of entities in the site name in email notifications
2228
- * Added Polish translation
2229
- * PRO: Removed a vulnerable Open Flash Charts file. If you do not update, be sure to REMOVE THIS FILE! (pro/js/ofc-library/ofc_upload_image.php)
2230
- * PRO: Added option to use a separate value for the radio, checkbox, and select choices
2231
- * PRO: Added option to use dynamic default values for radio, checkbox, dropdown, and user ID fields
2232
- * PRO: Added option to use Google charts and automatically fall back to them on mobile devices [frm-graph id=x type=bar google=1]
2233
- * PRO: Added data from entry field support to graphs
2234
- * PRO: Added option to use Google tables for easy pagination and sorting [formresults id=x google=1]
2235
- * PRO: Added edit link option to formresults shortcode. [formresults id=x edit_link="Edit" page_id=5]
2236
- * PRO: Added date support to built-in calculations for date1-date2 types of calculations
2237
- * PRO: Added checking for disabled used dates for fields set as post fields in date picker for dates marked as unique
2238
- * PRO: Added not_like, less_than, and greater_than options to conditional custom display statements. Ex [if 25 not_like="hello"]...[/if 25]
2239
- * PRO: Allow [if created-at less_than='-1 month'] type of statements in the custom display for date fields, created-at, and updated-at
2240
- * PRO: Added option to display the field label in custom displays. Ex [25 show="field_label"]
2241
- * PRO: Added option to turn off auto paragraphs for paragraph fields. Ex [25 wpautop=0]
2242
- * PRO: Added options to custom display shortcode: [display-frm-data id=5 get="whatever" get_value="value"]. This allows the use of [get param="whatever"] in the custom display.
2243
- * PRO: Updated the frm-entry-links shortcode to use show_delete with type=list
2244
- * PRO: Updated custom display where options to fetch entries more accurately when "not like" and "not equal to" are used
2245
- * PRO: Fixed image upload naming for uploads with numeric names like 1.png
2246
- * PRO: Fixed issue with multiple editable forms on the same page when one is set to only allow one entry per user
2247
- * PRO: Added a check for automatically inserted custom displays to make sure we are in the loop to avoid the need for increasing the insert position setting
2248
- * PRO: Show the post type label in the post type dropdown instead of the singular label to avoid blank options for custom post types without a singular name defined
2249
- * PRO: Switched out the case-sensitive sorting in data from entries fields
2250
- * PRO: If a custom display has detail link parameters defined, ONLY allow those parameters
2251
- * PRO: Added an input mask option available via the $frm_input_masks global and 'frm_input_masks' hook
2252
- * PRO: Added type=maximum and type=minimum to the frm-stats shortcode
2253
- * PRO: Month and year dropdowns added to custom display calendar, along with a few styling changes
2254
- * PRO: Get the custom display calendar month and day names from WordPress
2255
- * PRO: Allow dynamic default values in HTML field type
2256
- * PRO: Get post status options from WordPress function instead of a copy
2257
- * PRO: Check the default [auto_id] value after submit to make sure it's still unique
2258
- * PRO: If the "round" parameter is used in the frm-stats shortcode, floating zeros will be kept
2259
- * PRO: If greater than or less than options are used with a number field in a custom display, treat them as numbers instead of regular text
2260
- * PRO: Allow user logins for the user_id parameter in the frm-graph, frm-stats, and display-frm-data shortcodes
2261
- * PRO: Fixed the date format d-mm-yyyy to work correctly in the date field
2262
- * PRO: Added timeout to redirect so users will see the redirect message for a few seconds before being redirected
2263
- * PRO: Allow decimal values in graphs instead of forcing integers
2264
- * PRO: Updated the time field to use a true select box instead of a text field
2265
- * PRO: Removed included swfobject and json2 javascripts to use the included WordPress versions
2266
- * PRO: Added 'frm_graph_value' filters to change the value used in the graphs
2267
- * PRO: Populate strings to be translated without requiring a visit to the WPML plugin
2268
- * PRO: If the where options in a custom display include a GET or POST value that is an array, translate the search to check each value instead of searching for a comma-separated value in one record.
2269
- * PRO: Added entry key and entry ID to the where options in custom displays
2270
- * PRO: Added HTML classes on the search form, so if themes include styling for the WP search form, it will be applied to the [frm-search] as well
2271
- * PRO: Allow multiple data from entries fields to be searched using the frm-search shortcode instead of only one
2272
- * PRO: Fixed update checking to not cause a slow down if the formidableforms.com server is down
2273
- * PRO: Updated the user_id parameter for the display-frm-data shortcode to be used even if there's no user ID field selected in the where options for that custom display
2274
- * PRO: Added DOING_AJAX flags for WPML compatibility
2275
- * PRO: Added time_ago=1 option for displaying dates. Ex: [created-at time_ago=1] or [25 time_ago=1]
2276
- * PRO: Updated file upload process to change the file path before uploading instead of moving the files afterwards
2277
-
2278
- = 1.06.02 =
2279
- * Fixed selection of dropdowns on the form maker page in Chrome
2280
- * Added WPML integration. Requires the add-on available from WPML. Pro version includes a quick translation page.
2281
- * Added option to use the custom menu name site wide in multi-site installs
2282
- * Added 'frm_use_wpautop' filter for disabling all built-in occurrences of auto paragraphs (form description, HTML fields, and displaying paragraph fields)
2283
- * Only show the form icon button on the edit post page for users with permission to view forms
2284
- * Changed .form-required class to .frm_required_field
2285
- * Start with label in edit mode after adding a new field
2286
- * Added required indicator to styling
2287
- * Don't allow whitespace to pass required field validation
2288
- * PRO: Added option to restrict the file types uploaded in file upload fields
2289
- * PRO: Added export to XML and export to CSV to bulk action dropdowns
2290
- * PRO: Added [user_id] dynamic default value
2291
- * PRO: Allow dynamic dates in the frm-graph shortcode. Ex [frm-graph id=x x_axis="created_at" x_start="-1 month"]
2292
- * PRO: Added bar_flat to the graphs. Ex [frm-graph id=x type="bar_flat"]
2293
- * PRO: Dynamically hide some x-axis labels if there are too many for the width of the graph. Note: Does not work with percentage widths
2294
- * PRO: Added the option to select an end date in calendar custom displays for displaying multiple day events
2295
- * PRO: Added 'frm_show_entry_dates' filter for customizing which dates an entry should show on
2296
- * PRO: Disabled used dates in date picker for dates marked as unique
2297
- * PRO: Added option to search by entry creation date on admin entries listing page
2298
- * PRO: Added windows-1251 option for CSV export format
2299
- * PRO: Added the class parameter to the edit-in-place cancel link
2300
- * PRO: Improved CSV import to work better with large files
2301
- * PRO: Make a guess at which fields should match up on CSV import
2302
- * PRO: Added option to resend the email notifications when entry is updated. (This will be expanded when conditional email routing is added.)
2303
- * PRO: Don't send autoresponder message when importing
2304
- * PRO: Allow an entry id in the frm-stats shortcode. Ex [frm-stats id=25 entry_id=100]. Display a star vote as stars for a single entry in a custom display with [frm-stats id=25 type=star entry_id=[id]]
2305
- * PRO: Allow multiple star ratings for the same field on the same page
2306
- * PRO: Fixed post options that would not deselect
2307
- * PRO: Fixed issue causing the wrong conditional logic row to sometimes be removed
2308
- * PRO: Fixed bug preventing hidden fields from saving as a post field
2309
- * PRO: Fixed required tags fields to not return errors when not blank
2310
- * PRO: Fixed bug preventing some javascripts and stylesheets from getting loaded on admin pages if the menu title was changed
2311
- * PRO: Fixed graphs to show x_axis dates in the correct order if 2011 and 2012 dates are in the same graph
2312
- * PRO: Corrected WP multisite table name for the table to copy forms and custom displays
2313
- * PRO: Fixed issue with graphs showing in front of dropdown menus in Chrome
2314
- * PRO: Fixed bug in custom displays causing the wrong entries to be returned when a post category field is set to NOT show a certain category
2315
- * PRO: Fixed bug with multiple paged forms that was sometimes causing the next page to show even if errors were present on previous page
2316
- * PRO: Allow entries to be correctly editing from the backend by a user other than the one who created it, when data from entries field options are set to be limited to only the user currently filling out the form
2317
- * PRO: Updated conditional logic for those who set up the logic before v1.6 and haven't clicked the update button in their forms
2318
- * PRO: Corrected file upload naming for the various sizes of an upload with the same name as an existing upload
2319
-
2320
- = 1.06.01 =
2321
- * Added option to customize the admin menu name
2322
- * Added instructions to publish forms if no entries exist
2323
- * Free only: Fixed form maker settings page to allow tabs to work
2324
- * Free only: Updated styling to align multiple checkboxes/radio buttons when the label is aligned left
2325
- * PRO: Fixed issue with the default value getting lost from a hidden field when updating from the form settings page
2326
- * PRO: Fixed conditionally hidden fields that are already considered hidden if inside a collapsible section
2327
- * PRO: Fixed graphs using x_axis=created_at and user_id=x
2328
- * PRO: Fixed multiple paged forms with more than two pages
2329
- * PRO: Validate HTML for checkbox taxonomies
2330
-
2331
- = 1.06 =
2332
- * User Interface improvements to form builder
2333
- * Increased security, speed, and optimization
2334
- * Moved the "automatic width" check box for drop-down select fields to free form builder plugin
2335
- * Moved email "From/Reply to" options to free WordPress form builder plugin
2336
- * Fixed form preview page for form templates
2337
- * Added German translation (Andre Lisbert)
2338
- * Added ajax to uninstall button
2339
- * Correctly filter external shortcodes in the form success message
2340
- * Show error messages at the top if they are not for fields in the form (ie Akismet errors)
2341
- * Updated bulk edit options to change the dropdown in the form builder at the time the options are submitted
2342
- * Fixed default values set to clear on click to work with values that include hard returns
2343
- * Free only: Fixed hidden label CSS
2344
- * PRO: Extended the conditional field smart logic
2345
- * PRO: Added graphs for fields over time, and other customizing options: x_axis, x_start, x_end, min, max, grid_color, show_key, and include_zero
2346
- * PRO: Moved post creation settings from individual fields to the forms settings page
2347
- * PRO: Added option in WP 3.3 to use Tiny MCE as the rich text editor
2348
- * PRO: Added "format" option to date fields. Example [25 format='Y-m-d']
2349
- * PRO: Added star rating option to scale fields
2350
- * PRO: Added star type to [frm-stats] shortcode to display the average in star format. Example [frm-stats id=5 type=star]
2351
- * PRO: Added option to format individual radio and checkbox fields in one or multiple rows
2352
- * PRO: Added server-side validation for dates inserted into date fields
2353
- * PRO: Allow multiple fields for the same taxonomy/category
2354
- * PRO: Allow a taxonomy/category to be selected for data from entries fields. This makes cascading category fields possible.
2355
- * PRO: Added [post_author_email] dynamic default value
2356
- * PRO: Added a frm_notification_attachment hook
2357
- * PRO: Added clickable and user_id options to the formresults shortcode. ex [formresults id=x clickable=1 user_id=current]
2358
- * PRO: Improved field calculations to extract a price from the end of an option
2359
- * PRO: Added the option to specify how many decimal places to show, and what characters to use for the decimal and thousands separator. For example, to format USD:
2360
- $[25 decimal=2 dec_point='.' thousands_sep=',']
2361
- * PRO: Added a message before the user is redirected, along with a filter to change it (frm_redirect_msg).
2362
- * PRO: Added a button to delete ALL entries in a form at the bottom of the entries page
2363
- * PRO: Added a password field type
2364
- * PRO: Conditionally remove HTML5 validation of form if default values are present
2365
- * PRO: Added like parameter for inline conditions in custom displays. Example: [if 25 like="hello"]That field said hello[/if 25]
2366
- * PRO: Allow contact form fields set as custom post fields to be used for sorting custom displays
2367
- * PRO: Updated import to create the posts at the time of import
2368
- * PRO: Unattach images from a post if they are replaced
2369
- * PRO: Leave the date format in yyyy-dd-mm format in the CSV export
2370
- * PRO: Allow importing into checkbox fields
2371
- * PRO: Added option to use previously uploaded CSV for import so new upload isn't required when reimporting
2372
- * PRO: Added option to change the text on the submit button in the frm-search shortcode. Example [frm-search label="Search"]
2373
- * PRO: Fixed bug preventing a field dependent on another data from entries field from updating
2374
- * PRO: Fixed bug affecting pages with multiple editable forms on the same page that caused the first form to always be submitted
2375
- * PRO: Updated the truncate option to not require full words if truncating 10 or less characters
2376
- * PRO: Fixed bug preventing front-end entry deletion when the form was editable and limited to one per user
2377
- * PRO: Fixed bug preventing checkbox selections from showing in custom email notifications if a checkbox contained a quotation mark
2378
- * PRO: Prevent the uploading files message from showing if no files were selected
2379
- * PRO: Check a default value when using dynamic default values in the check box options
2380
- * PRO: Fixed bug preventing a newly created post from getting assigned to the user selected in the user ID dropdown if the selected user was not the user submitting the entry or was created with the registration add-on in the same form
2381
- * PRO: Fixed bug preventing Data from entries "just show it" fields from showing a value in admin listing and view entry pages
2382
- * PRO: Fixed bug causing the options to be empty if the data from entries options are limited to the current user and the form they are pulled from are creating posts
2383
- * PRO: Fixed empty results in the [formresults] table for contact forms that create posts
2384
- * PRO: When a blog is deleted in WP multi-site, delete database table rows related to copying contact forms from that blog
2385
- * PRO: Don't strip out desired backslashes
2386
- * PRO: Updated to latest version of form datepicker javascript
2387
-
2388
- = 1.05.05 =
2389
- * Added Dutch translation (Eric Horstman)
2390
- * Fixed "Customize Form HTML" link issues some users were having
2391
- * PRO: Load jQuery UI javascript for form datepicker
2392
- * PRO: Fixed custom display "where" options to work with multiple where rows
2393
-
2394
- = 1.05.04 =
2395
- * Bulk edit and add radio, select, and check box choices
2396
- * Added option to turn off HTML5 use in front-end contact forms
2397
- * Added option to turn off contact form user tracking
2398
- * Scroll form field choices in the form edit page if radio, check box, or select fields have more than 10 choices
2399
- * Free only: Removed export template link since the functionality behind it is only in Pro version
2400
- * PRO: Added CSV form entry import
2401
- * PRO: Added file icons when editing an entry with a non-image file type attached
2402
- * PRO: Added functionality for time fields set as unique so time options will be removed after a date is selected
2403
- * PRO: Check wp_query if no matching GET or POST variable in the get shortcode
2404
- * PRO: Switch taxonomy lists to links in custom displays
2405
- * PRO: Added functionality for a where option to be set to a taxonomy name ie [get param=tag]
2406
- * PRO: Added functionality for a taxonomy to work with equals and not_equal in custom displays
2407
- * PRO: Removed ajax error checking on the captcha field to fix the incorrect response messages
2408
- * PRO: Fixed dependent data from entries form fields to show the selected values on validation error and on edit
2409
- * PRO: Added `[frm-entry-update-field]` shortcode to update a single field in an entry with an ajax link
2410
- * PRO: Added global styling option to set newly-added select form fields to an automatic width
2411
- * PRO: Fixed calendar to allow fields mapped to a post to be used as the date field
2412
- * PRO: Fixed conditionally hidden field options to work with post category and post status fields
2413
- * PRO: Fixed custom displays to work automatically with pages instead of just post and custom post types (CPTs)
2414
- * PRO: Added functionality to frm-stats shortcode to work with posts and adds where options in key/id=value pairs. ex: [frm-stats id=x 25=hello] where 25 is the field ID and "Hello" is the value the other field in the form should have in order to display
2415
- * PRO: Updated form datepicker and timepicker to latest versions
2416
- * PRO: Fixed bug preventing images from saving correctly if the form is set to create a post and the upload field is not set as a post field
2417
- * PRO: Added an "Insert Position" option to the custom display. This will prevent the custom display from being loaded multiple times per page, but will allow users to set when it shows up for themes like Thesis
2418
- * PRO: Fixed number field to work with decimals and when ordering descending
2419
- * PRO: Added a limit to the number of entries that show in the entry drop-down in places like the custom display page to prevent memory errors
2420
- * PRO: Fixed field options to work better with symbols like &reg; in graphs
2421
- * PRO: Automatically open collapsible heading if there is a form error message inside it
2422
- * PRO: Added type=deviation to the frm-stats shortcode. Example: [frm-stats id=x type=deviation]
2423
- * PRO: Updated calculations to work with radio, scale, and drop-down fields
2424
- * PRO: Fixed default values for check boxes
2425
- * PRO: Added CSV export format option
2426
- * PRO: Fixed scale field reports to show all options
2427
-
2428
- = 1.05.03 =
2429
- * Updated user role options to work more reliably with WP 3.1
2430
- * Added functionality for "Fit Select Boxes into SideBar" checkbox and field size in the free contact form widget
2431
- * Moved reCaptcha error message to individual field options
2432
- * Updated referring URL and added tracking throughout the visit
2433
- * PRO: Added "clickable" option for use in custom displays to make email addresses and URLs into links. ex `[25 clickable=1]`
2434
- * PRO: Added option to select the taxonomy type
2435
- * PRO: Updated contact form styling to work better in IE
2436
- * PRO: Updated emails to work with Data from entries checkbox fields
2437
- * PRO: Updated dependent Data from entries fields to work with checkboxes
2438
- * PRO: Adjusted [date] and [time] values to adjust for WordPress timezone settings
2439
- * PRO: Updated the way conditionally hidden fields save in the admin to prevent lingering dependencies
2440
- * PRO: Fixed link to duplicate entries in form maker
2441
- * PRO: Updated file upload indicator to show up sooner
2442
- * PRO: Added ajax delete to [deletelink] shortcode
2443
- * PRO: Updated admin only fields to show for administrators on front-end forms
2444
- * PRO: Added more attributes to the [display-frm-data] shortcode: limit="5", page_size="5", order_by="rand" or field ID, order="DESC" or "ASC"
2445
- * PRO: Fixed custom display bulk delete
2446
- * PRO: Updated WPMU/multisite form copy features to work with WP 3.0+
2447
- * PRO: Switched the email form "add/or" drop-down to check boxes
2448
- * PRO: Added box for message to be displayed if there are no entries for a custom display
2449
- * PRO: Added ajax edit options with [frm-entry-edit-link id=x label=Edit cancel=Cancel class='add_classes' page_id= prefix='frm_edit_' form_id=>y]. Also works with [editlink location=front] in custom displays.
2450
- * PRO: Moved styling options into a tab on the settings page
2451
- * PRO: Added limited "data from entries" options to the custom display "where" row. Entry keys or IDs can be used
2452
- * PRO: Added unique validation for fields set as post fields
2453
- * PRO: Removed error messages for required fields hidden via the shortcode options
2454
- * PRO: Only return [deletelink] if user has permission to delete the form entry
2455
- * PRO: Added order options to WordPress event calendars
2456
- * PRO: Updated custom display ordering to order correctly when using a 12 hour time field
2457
- * PRO: Added taxonomy options to the "Tags" field
2458
- * PRO: Added HTML escaping to text fields to allow HTML entities to remain as entities when editing
2459
- * PRO: Added functionality to use taxonomy fields in where options in custom displays
2460
- * PRO: Added option to use [get param=CUSTOM] in custom displays
2461
-
2462
- = 1.05.02 =
2463
- * Fixed issue with PHP4 that was causing the field options to get cleared out and only show a "0" or "<" instead of the field
2464
- * Prevent javascript from getting loaded twice
2465
- * Updated stylesheets for better looking left aligned field labels. In the Pro version, setting the global labels to one location and setting a single field to another will keep the field description and error messages aligned.
2466
- * PRO: Fixed issue causing form to be hidden on front-end edit if it was set not to show with the success message
2467
- * PRO: Show the linked image instead of the url when a file is linked in a "just show it" data from entries field
2468
- * PRO: Added functionality for ordering by post fields in a custom display
2469
-
2470
- = 1.05.01 =
2471
- * PRO: Fix custom display settings for posts/custom posts
2472
-
2473
- = 1.05.0 =
2474
- * Moved a contact form widget from Pro to the free version
2475
- * Updated some form templates with fields aligned in a row. First and last name are on one line in the contact form template.
2476
- * Moved error messages underneath input fields
2477
- * Added option to display labels "hidden" instead of just none. This makes aligning fields in a row with only one label easier
2478
- * Additional XHTML compliance for multiple forms on one
2479
- * Removed the HTML5 required attribute (temporarily)
2480
- * Corrected the label position styling in the regular version
2481
- * A little UI clean up
2482
- * Added hook for recaptcha customizations
2483
- * PRO: Added front-end custom post type support. Create front-end CPT posts. Most field types will integrate out-of-the-box with the Advanced Custom Fields (ACF) WordPress plugin.
2484
- * PRO: Added hierarchy to post categories
2485
- * PRO: Added a loading indicator while files are uploading
2486
- * PRO: Added a `[default-message]` shortcode for use in the email message. Now you can add to the default message without completely replacing it
2487
- * PRO: Added default styling to the formresults shortcode, as well as additional shortcode options: `[formresults id=x style=1 no_entries="No Entries Found" fields="25,26,27"]`
2488
- * PRO: Added localizations options to calendar
2489
- * PRO: Fixed collapsible Section headings to work with updated form builder HTML
2490
- * PRO: Added functionality to admin search to check data from entries fields
2491
- * PRO: Added start and end time options for time fields
2492
- * PRO: Added 'type' to `[frm-graph]` shortcode to force 'pie' or 'bar': `[frm-graph id=x type=pie]`
2493
- * PRO: Added post_id option to the `[frm-search]` shortcode. This will set the action link for the search form. Ex: `[frm-search post_id=3]`
2494
- * PRO: Fixed `[frm-search]` shortcode for use on dynamic custom displays. If searching on a detailed entry page, the search will return to the listing page.
2495
- * PRO: Updated post fields to work in "data from entries" fields
2496
-
2497
- = 1.04.06 =
2498
- * Additional back-end XHTML compliance
2499
- * PRO: Fixed conditionally hidden fields bug some users were experiencing
2500
-
2501
- = 1.04.05 =
2502
- * Added duplicate entry checks for form submissions
2503
- * Added a checkbox on form creator to mark form fields required
2504
- * Moved the duplicate form field option into the free form builder
2505
- * Show the contact form success message even if the form isn't displayed with it
2506
- * Added option to not use dynamic stylesheet loading
2507
- * PRO: Added option to resend form email notification and autoresponders
2508
- * PRO: Fixes for editing forms with unique fields
2509
- * PRO: Fixes for editing multi-page forms with validation errors
2510
- * PRO: Fixes for multiple multi-step forms on the same page
2511
- * PRO: Added linked fields into the field drop-downs for inserting shortcodes and sending emails
2512
- * PRO: Added powerful calculated fields in forms
2513
- * PRO: Allow hidden fields to be edited from the WordPress admin
2514
- * PRO: Allow sections of fields to be hidden conditionally with the Section Header fields
2515
- * PRO: Added user_id option to the `[frm-graph]` shortcode
2516
- * PRO: Updated the custom display settings interface
1
+ === Contact Forms, Surveys & Quiz forms by Formidable Forms Builder for WordPress ===
2
  Contributors: formidableforms, sswells, srwells, jamie.wahlin
3
  Tags: contact form, form builder, custom form, forms, form, form maker, form creator
4
  Requires at least: 4.4
5
+ Tested up to: 4.9.8
6
  Requires PHP: 5.3
7
+ Stable tag: 3.04.01
8
 
9
+ The most advanced WordPress forms plugin. Go beyond contact forms with our drag & drop form builder to build surveys, quiz forms, and more.
10
 
11
  == Description ==
12
+ = The Most Powerful WordPress form builder on the market =
13
+ We built <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Formidable Forms</a> to offer the "first-ever" solutions-focused WordPress form plugin on the market. You can use our drag & drop WordPress form builder to create contact forms, surveys, quiz forms, registration forms, payment forms, purchase forms, email marketing forms, and just about any other form you can imagine.
14
 
15
+ At Formidable Forms, creating the most extendable form builder is our #1 priority, so you save time when building even the most advanced forms. Unlike other WordPress form plugins that focus solely on building contact forms, we believe in allowing our users to push the limits and create complex forms quickly!
16
 
17
+ Before we take a deep-dive into the features of the powerful Formidable form builder plugin, it's important that you know that Formidable is 100% mobile responsive which means that your contact forms and all other types of forms will always look great on all devices (desktop, laptop, tablets, and smartphones).
18
 
19
+ On top of that, we have optimized Formidable contact forms and advanced forms for speed and maximum server performance. Whether you use Formidable to build a contact form on your own site or an advanced form for your client, you can confidently say that it's one of the FASTEST WordPress form builders in the market.
20
+
21
+ > <strong>Formidable Forms Pro</strong><br />
22
+ > This form builder plugin is the lite version of the Formidable Forms Pro plugin that comes with all the contact form and advanced form features you will ever need. Our premium form features include powerful views to display data in web applications, repeater fields, email subscription forms, multi-page contact forms, file uploads, conditional logic, payment integrations, form templates, form relationships, cascading dropdown fields, front-end form editing and tons more. <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion" rel="friend" title="Formidable Forms">Click here to purchase the most advanced premium WordPress form builder plugin now!</a>
23
+
24
+ You can start with our pre-built contact form template or create totally custom forms from scratch all with an easy-to-use drag & drop form builder interface.
25
+
26
+ https://www.youtube.com/watch?v=d2IPmicn2x8&rel=0
27
+
28
+ Let's take a look at all the powerful form builder features that you get with Formidable Forms for making amazing contact forms, lead forms, subscription forms, request a quote forms, donation forms, payment order forms and more.
29
+
30
+ = Drag & Drop Contact Form Maker and Advanced Form Builder =
31
+
32
+ The Formidable drag & drop form builder allows you to quickly create unlimited contact forms, surveys, quizzes, registration forms, and just about any other type of form that you want.
33
+
34
+ Our form builder comes with all the powerful form fields that you need to create a solution-focused form, fast!
35
 
36
  * Single line text (for names, phone numbers, addresses, and more)
37
  * Email
45
  * Hidden fields
46
  * User ID
47
  * HTML block
 
48
 
49
+ With our built-in form styler, you can instantly customize the look and feel of your contact forms. With just a few clicks, your contact form and advanced forms can be transformed to match your website design.
 
50
 
51
+ By default, Formidable applies a single styling template to all contact forms and advanced forms on your site. But if you want to have custom form style for each individual contact form and registration form, then you can upgrade to Formidable Forms Pro.
 
52
 
53
+ = Complete Entry Management for Contact Forms and Surveys =
 
 
 
 
 
54
 
55
+ Formidable Forms allows you to view all your contact form and survey entries right from your WordPress dashboard.
 
56
 
57
+ Once a user submits your contact form, their response is automatically stored in your WordPress database.
 
58
 
59
+ Formidable Forms is **100% GDPR-friendly**. You can turn off IP tracking or stop saving form submissions entirely. Alternatively, you can add a GDPR checkbox field to your form to collect consent.
60
 
61
+ Need to import your contact form leads to another service like MailChimp? No problem. **Export contact form leads to a CSV**, open it in Excel, and import anywhere.
 
62
 
63
+ You can also configure unlimited form email notifications and autoresponders.
64
 
65
+ On top of that, you can easily customize the contact form success message the user sees after they submit the form, or completely redirect them to another page for your more advanced form needs.
66
 
67
+ = Build Smart Surveys with Beautiful Reports =
68
 
69
+ Aside from simple contact forms, Formidable comes with a built-in survey feature, so you can quickly create powerful surveys and see beautiful reports.
70
 
71
+ The best part is that you can do this all within Formidable without using any third-party tools.
 
72
 
73
+ = Quickly Create Advanced Registration Forms for Any Use Case =
74
 
75
+ Whether you need to create a youth sport team registration form, event registration form, or church retreat registration form, Formidable has got you covered.
76
+
77
+ Unlike other contact form plugins, Formidable Forms comes with a repeater field that allows you to create the most powerful registration forms.
78
+
79
+ Then, you can use our marketing integrations and APIs to send this form data anywhere you want.
80
+
81
+ = Accept Credit Cards and Easily Collect Payments =
82
+
83
+ By now, you probably already realize the theme that Formidable is more than just a contact form plugin. You can use Formidable to create payment forms and accept credit card payments right from your website.
84
+
85
+ We offer seamless integration with PayPal, Stripe, and Authorize.net, so you can create order forms and purchase forms with our drag & drop interface.
86
+
87
+ You can even use Formidable to create WooCommerce forms with custom fields (more on that later).
88
+
89
+ = Grow Your Business with Marketing Integrations =
90
+
91
+ We know that marketing is the key to grow your business. That's why Formidable allows you to connect your contact form, payment forms, and all other advanced forms with a marketing platform of your choice.
92
+
93
+ We integrate with popular email marketing services like:
94
+
95
+ * MailChimp
96
+ * AWeber
97
+ * Constant Contact
98
+ * GetResponse
99
+ * MailPoet
100
+ * Active Campaign
101
+ * Salesforce
102
+ * HubSpot
103
+
104
+ On top of these native integrations, we also integrate with Zapier, so you can quickly route your contact form data to over 1,000+ more apps and services with just a few clicks.
105
+
106
+ = Create Data-Driven Web Applications with Formidable Views =
107
+
108
+ Formidable Views are by far the most powerful feature of this plugin. It allows you to flexibly display any submitted form data on the front-end of your website.
109
+
110
+ Our customers use Formidable Views to create data-driven web applications like real estate listings, employment listings, event calendars, business or member directories, job boards, and other searchable databases.
111
+
112
+ As you can see, Formidable Forms is not an average contact form plugin. It's a true all-in-one WordPress form solution.
113
+
114
+ = Increase Your Sales with WooCommerce Product Forms =
115
+
116
+ Formidable is the only WordPress form builder that offers extensive integration with WooCommerce.
117
+
118
+ Our goal is to empower you to build powerful WooCommerce product forms, so you can increase your store sales.
119
+
120
+ You can use Formidable Forms to add a WooCommerce Product configurator, add custom calculation fields, and then automatically send the data to the WooCommerce cart with variable pricing option.
121
+
122
+ Need your customers to upload a file when they purchase a product? No problem. Simply drag & drop a file upload field into your WooCommerce form and you're done.
123
+
124
+ You can even show submitted form values in the WooCommerce emails as well as trigger SMS text messages or marketing integrations when an order is completed.
125
+
126
+ And of course, you can also use Formidable to add a simple contact form on your WooCommerce store.
127
+
128
+ = Build Powerful Quiz Forms & Calculators =
129
+
130
+ Along with a contact form, you can also use the Formidable form builder to create quiz forms and calculator forms.
131
+
132
+ Here are some example web calculators that you can quickly add to your site:
133
+
134
+ * Advanced Mortgage Calculator
135
+ * Car Payment Calculator
136
+ * BMI Calculator
137
+ * User Age Calculator
138
+ * Online Quote Calculator
139
+
140
+ ... and our powerful calculation form fields allow you to build just about any other type of calculator form.
141
+
142
+ If that wasn't enough, you can also use Formidable Form builder to create quizzes on your site and display results. This is great for membership sites, LMS, or just for viral quizzes to grow your email list.
143
+
144
+ Our goal is go beyond simple contact forms and allow users to create form-based solutions without any code :)
145
+
146
+ = Create WordPress User Registration Forms, Profile Forms, and More =
147
+
148
+ If you run a WordPress membership site, then you need more advanced forms along with your contact form.
149
+
150
+ Formidable Form builder allows you to customize your WordPress user registration forms, so you can collect additional data when the user profile is created.
151
+
152
+ With our front-end form editing option, you can also build custom profile forms and allow users to keep it updated, or even progressivly add to the profile from a set of forms.
153
+
154
+ Our front-end form editing feature is unique to us, and you will not find any other WordPress contact form plugin offering such solution with the level of extendability that we do.
155
+
156
+ = Beautiful Graphs and Reports to Help You Analyze and Showcase Data =
157
+
158
+ We believe that data by itself does no good if you can't analyze it. That's why we make it easy for you to analyze your contact form, survey, quiz, calculator, and other form data with beautiful graphs and reports.
159
+
160
+ You can even showcase the form data on the front-end of your website by embedding the graphs in your WordPress posts or pages.
161
+
162
+ = All the Advanced Form Fields and Features You Need to Grow Your Business =
163
+
164
+ Formidable Forms goes far above and beyond contact forms to offer all the advanced form fields and features that you need to grow your business.
165
+
166
+ This includes things like multi-page forms, save and continue forms, cascading form fields, powerful conditional logic, partial form submissions, invisible spam protection, front-end user post submission, calculators, user-tracking, and so much more.
167
+
168
+ We're on a mission to offer an all-in-one solution focused WordPress form plugin, so you don't have to install 5 plugins alongside your contact form maker plugin to do everything that you want.
169
+
170
+ = Extend and Customize Your Forms - Developer's Dream Come True =
171
+
172
+ Formidable is the form plugin of choice for smart developers, freelancers, and agencies because it helps them build complex form solutions quickly and defy the limits imposed by time and knowledge.
173
+
174
+ Our goal is to help you build complex websites with low overhead. We believe big projects don't always need big resources.
175
+
176
+ That's why we made Formidable Forms the most extendable WordPress form builder plugin in the market.
177
+
178
+ You can easily route your data from contact forms and advanced forms with our powerful API. Formidable Views allow you to display your form data anywhere on the front-end, so you can quickly create data-driven web applications.
179
+
180
+ On top of that, our hooks and filters allow you to completly extend Formidable to meet your needs. We even include hundreds of code examples in our docs to give you the confidence to get started.
181
+
182
+ = Full Formidable Forms Feature List =
183
+
184
+ Since Formidable is not your average WordPress contact form plugin, this feature list is going to be very long. Grab a cup of coffee and read through, or just install the most powerful WordPress form plugin, your choice :)
185
+
186
+ * <a href="https://formidableforms.com/features/drag-drop-form-builder/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Online drag and drop form builder</a>. Build everything from contact forms to complex online forms the easy way with a simple WordPress drag and drop form builder. No code required.
187
+ * <a href="https://formidableforms.com/features/dynamically-add-form-fields/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Repeating field groups (repeaters)</a>. Allow your users to add a new set of fields to advanced forms and registration forms on the fly.
188
+ * <a href="https://formidableforms.com/features/wordpress-multiple-file-upload-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Drag and drop multiple file upload forms</a>. Easily upload documents, files, photos, and music, with any number of files.
189
+ * <a href="https://formidableforms.com/features/wordpress-multi-step-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Multi-Step forms with progress bar</a>. Create beautiful paged forms with rootline and progress indicators. Use conditional logic on page breaks for branching forms.
190
+ * <a href="https://formidableforms.com/features/cascading-dropdown-lookup-field/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Cascading lookup fields</a>. Change values in other form fields or drill down through options to reveal a final value. Designed for country/state/city and year/make/model field sets or to get a price from a product form.
191
+ * Datepicker fields with advanced <a href="https://formidableforms.com/downloads/datepicker-options/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">datepicker options</a> including blackout dates, dynamic minimum and maximum dates, and inline calendars. The datepickers are great for basic booking forms.
192
+ * Create relationships with Dynamic fields populated from other forms to link data in one form to another without duplication.
193
+ * Include password fields with a password strength meter.
194
+ * Other field types include: Rich text fields, Time fields, Scale fields, Star ratings, Slider fields, Toggle fields, Tags fields, Address fields, and Section heading fields.
195
+ * <a href="https://formidableforms.com/features/confirm-email-address-password-wordpress-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Confirmation fields</a>. Double check the email address or password fields and don't let typos cannibalize your contact form leads.
196
+ * <a href="https://formidableforms.com/features/conditional-logic-wordpress-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Conditional logic for smart forms</a>. Show or hide fields in your contact forms and advanced forms based on user selections or the user role form simple forms and to increase form conversion rates.
197
+ * <a href="https://formidableforms.com/features/email-autoresponders-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Send email notifications & autoresponders</a>. Create customized email notifications for virtually unlimited recipients and get your contact form and advanced form data to the people who need it.
198
+ * Email routing: Conditionally send multiple autoresponder emails and notifications from email forms based on values in your contact forms, payment forms, and registration forms.
199
+ * <a href="https://formidableforms.com/features/wordpress-calculated-fields-form/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Calculated Fields</a>. Create basic and complex calculations, and even combine text from multiple fields for mortgage calculators, auto loan calculators and many other calculator forms.
200
+ * <a href="https://formidableforms.com/features/wordpress-visual-form-styler/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Visual form styler</a>. Our form creator for contact forms, calculators, and other online forms not only allows you to build forms, but also create branded forms that match your site. Change colors, borders, padding and much more without any code.
201
+ * <a href="https://formidableforms.com/features/flexible-layouts-responsive-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Flexible form layout design</a>. Build complex, mobile responsive form layouts that look great and fit perfectly with your theme with our built-in CSS classes.
202
+ * <a href="https://formidableforms.com/features/wordpress-mobile-friendly-responsive-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Mobile-friendly, Responsive forms</a>. Let everyone see and submit your contact forms and other online forms from any device since our forms are sized automatically for every device.
203
+ * <a href="https://formidableforms.com/features/form-entry-management-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Simple entry management</a>. Flexibly and powerfully display, edit, and delete entries from anywhere on your site, and specify who has permission to do so.
204
+ * <a href="https://formidableforms.com/features/display-form-data-views/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Display form data with Views</a>. Other WordPress form builder plugins only let you collect data. Formidable lets you format, filter and display form submissions in custom Views on the front-end of your site.
205
+ * <a href="https://formidableforms.com/features/user-submitted-posts-wordpress-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">User submitted front-end posts and pages</a>. Create and edit WordPress posts, pages, and even custom post types from your front-end online forms. Send user-generated content quickly from post creation to a page.
206
+ * <a href="https://formidableforms.com/features/front-end-editing-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WordPress front-end editing</a>. Allow users to edit their form entries and posts from the front-end of your site. Create an online journaling platform, member directory, classified ads, community recipes, and more.
207
+ * <a href="https://formidableforms.com/features/save-and-continue-partial-submissions/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Save and continue partial submissions</a>. Logged-in users can save form progress and return later.
208
+ * <a href="https://formidableforms.com/features/create-a-graph-wordpress-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Graphs and charts for data visualization</a>. Display statistics from surveys, polls, and advanced forms, and graph the data in a variety of graphs (including weight tracking) that automatically update as new form data is submitted.
209
+ * Form permission settings. Limit form visibility based on user role.
210
  * Limit the number of form entries per user, IP, or cookie.
211
+ * Form scheduling. Open and close event registration forms and signup forms on a specific date. Or close forms when the limit has been reached for your event or team.
212
+ * Conditionally redirect after form submission.
213
+ * <a href="https://formidableforms.com/features/customize-form-html-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Customize form HTML</a>. We believe that not only contact forms, but also advanced forms should be extendable to meet your needs. So we give you access to change the form HTML (like Contact Form 7), but still keep the ease and speed of a drag & drop form builder plugin. Because our team labors for simplicity without sacrificing flexibiity.
214
+ * <a href="https://formidableforms.com/features/importing-exporting-wordpress-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Import and Export form submissions, styles, and views</a>. Export forms, entries, views and styles and import them on another site.
215
+ * <a href="https://formidableforms.com/features/wordpress-form-templates/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Form templates for instant form building</a>. Get started quickly with the most advanced form creator that includes form templates, style templates, and Formidable view templates. Use the form generator that makes building forms fast.
216
+ * Import our <a href="https://formidableforms.com/downloads/category/form-templates/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">pre-built form/view templates</a> as a starting point or a final product. Check out our growing form template library, from contact forms to payment forms, calculators, and a WooCommerce product creator.
217
+ * <a href="https://formidableforms.com/features/wcag-accessible-forms/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WCAG accessible forms with A11Y compliance</a>. Don't alienate your audience. Ensure your contact forms, surveys, quiz forms, lead capture forms, and other online forms are compliant and available to anyone.
218
+ * <a href="https://formidableforms.com/features/invisible-spam-protection/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Invisible SPAM protection</a>. Don't waste time sorting through SPAM from your contact form. Get instant and powerful anti-spam features including honeypot, invisible reCAPTCHA, Akismet, and the WordPress comment blacklist.
219
+ * <a href="https://formidableforms.com/features/fill-out-forms-automatically/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Fill out forms automatically</a> with user meta from the user profile or values from posts including custom fields.
220
+ * <a href="https://formidableforms.com/features/white-label-form-builder-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">White label form builder</a>. Replace the Formidable Forms branding with your own in the admin area. Plus, we never show "powered by" links in your free contact forms and online forms.
221
+ * <a href="https://formidableforms.com/downloads/user-registration/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WordPress user registration forms</a>. Register users, edit profiles, reset passwords, and add a login form. When using WordPress multisite forms, you can even allow your logged in or logged out users to create subdomains.
222
+ * <a href="https://formidableforms.com/downloads/signature/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Digital Signature Forms</a>. Eiminate paper forms with a digital signature field in your contact forms, registration forms, or advanced forms.
223
+ * <a href="https://formidableforms.com/downloads/autoresponder/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Form action automation</a>. Schedule email notifications, SMS messages, and API actions to trigger at a later time. Automatically delete guest posts after 30 days, send weekly digest emails, trigger happy birthday text messages from a contact form or lead form and much more.
224
+ * <a href="https://formidableforms.com/downloads/formidable-api/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Formidable Forms API</a>. Send form entry results to other sites with a REST API. This includes the option to send form entries from one Formidable site to another.
225
+ * <a href="https://formidableforms.com/downloads/quiz-maker/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Quiz maker forms</a>. Add quiz questions to a quiz form, submit an entry as the quiz key, and publish the quiz on a page. Then all the quiz form grading is done for you.
226
+ * <a href="https://formidableforms.com/support/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">World class support</a>. Have questions or need guidance on how to set up your web application? We are happy to help. Our passion with Formidable Forms is to help you <strong>defy the limits</strong> so you can take on bigger projects, earn more clients, and grow your business.
227
+
228
+ = Form Integrations =
229
+ * <a href="https://formidableforms.com/downloads/paypal-standard/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">PayPal Payment Forms</a>. Automate your business by collecting instant payments from your clients. Collect information, calculate a total, and send clients on to PayPal from your payment forms.
230
+ * <a href="https://formidableforms.com/downloads/stripe/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Stripe Payment Forms</a>. Keep users on your site whole collecting credit cards from a payment form. Select from one time or recurring Stripe payments.
231
+ * <a href="https://formidableforms.com/downloads/authorize-net-aim/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Authorize.net AIM Payment Forms</a>. Accept one-time payments in order forms directly on your site, using Authorize.net AIM.
232
+ * <a href="https://formidableforms.com/downloads/woocommerce/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WooCommerce product configurator</a>. Add custom fields to a WooCommerce product form and collect extra data when a product is added to the cart. Use form calculations for variable pricing, upload a file with the purchase, and send custom emails when the purchase is completed.
233
+ * <a href="https://formidableforms.com/downloads/mailchimp/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">MailChimp Forms</a>. Add and update leads in a MailChimp email marketing list from lead forms and contact forms.
234
+ * <a href="https://formidableforms.com/downloads/constant-contact/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Constant Contact Forms</a>. Create leads automatically in Constant Contact with newsletter signup forms and contact forms.
235
+ * <a href="https://formidableforms.com/downloads/getresponse-wordpress-plugin/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">GetResponse Forms</a>. Collect leads in contact forms, add them to GetResponse, then trigger GetResponse marketing automations.
236
+ * <a href="https://formidableforms.com/downloads/aweber/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Aweber Forms</a>. Subscribe users to an AWeber mailing list when a newsletter signup form or contact form is submitted.
237
+ * <a href="https://formidableforms.com/downloads/mailpoet-newsletters/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">MailPoet Newsletter forms</a>. Fill your email marketing lists from newsletter signup forms and contact forms. Then send WordPress newsletters from your own site using MailPoet.
238
+ * <a href="https://formidableforms.com/downloads/highrise/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Highrise Forms</a>. Add leads to your Highrise CRM account any time a contact form, registration form, or payment form is submitted.
239
+ * <a href="https://formidableforms.com/downloads/salesforce/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Salesforce Forms</a>. Create leads, contacts, and any other Salesforce objects directly from your contact forms and advanced forms.
240
+ * <a href="https://formidableforms.com/downloads/activecampaign-wordpress-plugin/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">ActiveCampaign Forms</a>. Let contact forms double duty as payment forms, post creation forms, and an ActiveCampaign integration.
241
+ * <a href="https://formidableforms.com/downloads/hubspot-wordpress/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">HubSpot Forms</a>. Route contact form and lead form data to HubSpot CRM.
242
+ * <a href="https://formidableforms.com/downloads/twilio/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Twilio for SMS Forms</a>. Collect votes and poll responses via SMS text, or send SMS notifications when form entries are submitted or updated.
243
+ * <a href="https://formidableforms.com/downloads/wp-multilingual/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">WPML Forms</a>. Translate contact forms, registration forms, and advanced forms into multiple languages using our integrated multilingual forms plugin.
244
+ * <a href="https://formidableforms.com/downloads/polylang/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Polylang Forms</a>. Get the form creator with Polylang bilingual or multilingual contact forms.
245
+ * <a href="https://formidableforms.com/downloads/zapier/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Zapier Forms</a>. Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or add a new Dropbox file with your form. With Zapier, you have the option to trigger thousands of other actions from a contact form, lead form, quote form, quiz form, or advanced online form.
246
+ * <a href="https://formidableforms.com/downloads/bootstrap/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Bootstrap Form Styles</a>. Instantly add Bootstrap form styling to your contact forms, surveys and advanced forms.
247
+ * <a href="https://formidableforms.com/downloads/bootstrap-modal/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Bootstrap Modal Form</a>. Open contact forms, login forms, views, other shortcodes, and sections of content in a Bootstrap modal popup.
248
+
249
+ After reading this feature list, you can probably imagine why Formidable is the most advanced WordPress form plugin in the market.
250
+
251
+ Give Formidable a try.
252
+
253
+ Want to unlock the full power? <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Upgrade to our Pro version</a> to get all features.
254
 
255
  == Installation ==
256
+ 1. Go to your Plugins -> Add New page in your WP admin area
257
  2. Search for 'Formidable'
258
  3. Click the 'Install Now' button
259
  4. Activate the plugin through the 'Plugins' menu
260
  5. Go to the Formidable Forms menu
261
+ 6. Click the 'Add New' button to go to the form generator page and create a new email form
262
+ 7. Insert your contact form, quiz, survey, registration form, or advanced form on a page, post, or widget using a shortcode [formidable id=x], Alternatively use `<?php echo FrmFormsController::show_form(2, $key = '', $title=true, $description=true); ?>` in your page template
263
 
264
  == Screenshots ==
265
+ 1. Build professional WP forms without any code.
266
+ 2. Form builder plugin page for creating contact forms, surveys, registration forms, quote forms, payment forms, and many more.
267
  3. Field Options and CSS Layout Classes in the form creator
268
  4. Field Options for checkbox fields in the form maker
269
+ 5. View, create, edit, and delete entries on the back end from contact forms, employment application forms, to do lists, and many, many more.
270
  6. Add a WordPress contact form into your sidebar with a widget
271
 
272
  == Frequently Asked Questions ==
276
 
277
  Want to make a new contact form? Go to the Formidable -> Forms page and click "add new". Choose the Contact Us form template and click "Load Template". Now Save your contact form.
278
 
279
+ Next, go to edit the page where you would like to publish your contact form. Click the "Formidable" button to open the shortcode builder. Choose your contact form and insert it into your WordPress page. Save your page, and you're done. Now you've got a beautiful WP form ready to collect and store leads for you.
280
 
281
+ Get more detail on <a href="https://formidableforms.com/wordpress-contact-form-template-to-unique/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">using the contact form template</a> in our blog.
282
 
283
  = My contact forms are not sending emails. Why not? =
284
 
285
+ When you do not receive emails from your contact forms, try the following steps:
286
 
287
  1. Double check to make sure your email address is present and correct in your Email form action on the form "Settings" page. The [admin_email] shortcode uses the email address from your WordPress Settings -> General page.
288
  2. Make sure you are receiving other emails from your site (ie comment notifications, forgot password...). If these emails don't work on your site, form emails will not work either.
289
  3. Check your SPAM box
290
  4. Try a different email address in your contact form settings.
291
+ 5. Install WP Mail SMPT or another similar plugin and configure the SMTP settings.
292
+ 6. If none of these steps fix the problem with your form emails, and other WP emails are also not going out, please contact your web host.
293
+ 7. <a href="https://formidableforms.com/wordpress-not-sending-emails-smtp/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Read more about WordPress emails not sending</a> in our blog.
294
+
295
+ = How do I edit the field names in the form maker? =
296
+
297
+ The field labels and descriptions are changed with in-place edit. Just click on the text you would like to change, and it will turn into a text field.
298
+
299
+ <a href="https://formidableforms.com/formidable-faqs/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">See more contact form and advanced online form FAQs</a>.
300
+
301
+ = What type of WordPress forms can I build with Formidable Forms? =
302
+ Formidable Forms drag & drop form builder combined with our addons is the most powerful WordPress contact form plugin, and advanced form plugin in the market. Here are some types of WordPress forms you can create:
303
+
304
+ * Simple Contact Forms
305
+ * Advanced Contact Forms
306
+ * Custom Contact Forms
307
+ * Multi-Page Contact Forms with progress bar
308
+ * Dynamic Contact Forms (where fields change based on user’s answers)
309
+ * Request a Quote Contact Form
310
+ * Job Application Contact Form
311
+ * Feedback Survey Contact Form
312
+ * Make a Suggestion Contact Form
313
+ * Testimonials Contact Form
314
+ * Change Request Forms
315
+ * Online Booking Forms
316
+ * Event Booking Form
317
+ * Online RSVP Forms
318
+ * Custom WordPress User Registration Forms (Great for membership sites)
319
+ * WordPress Login Forms
320
+ * Custom WordPress User Profile Forms
321
+ * WordPress Post Submission Forms (Great for Guest Posts)
322
+ * Credit Card Payment Forms
323
+ * PayPal Payment Form
324
+ * Stripe Payment Form
325
+ * Make a Donation Forms
326
+ * T-Shirt Order Forms
327
+ * Product Purchase Forms
328
+ * Lead Capture Forms
329
+ * Newsletter Signup Forms
330
+ * MailChimp Forms
331
+ * AWeber Forms
332
+ * Constant Contact Forms
333
+ * GetResponse Signup Forms
334
+ * MailPoet Newsletter Signup Forms
335
+ * Active Campaign Forms
336
+ * Salesforce CRM Forms
337
+ * HubSpot CRM Forms
338
+ * Multilingual WPML Contact Forms
339
+ * Multilingual Polylang Contact Forms
340
+ * Auto forms with car make and model
341
+ * Video Release Forms
342
+ * Partnership Agreement Forms
343
+ * PTO Request Contact Form
344
+ * Online Petition Form
345
+ * Contact Forms that Require a Signature
346
+ * Custom Signature Forms
347
+ * Maintenance Request Contact Form
348
+ * Scholarship Application Forms
349
+ * File Download Forms
350
+ * Employment Verification Forms
351
+ * Make a Referral Contact Form
352
+ * Volunteer Registration Contact Form
353
+ * Membership Registration Forms
354
+ * Custom Survey Forms
355
+ * Poll Forms
356
+ * Quiz Forms
357
+ * Members Only Contact Form
358
+
359
+ = I'd like access to all form, view, and reporting features. How can I get them? =
360
+ You can get access to more features, integrations and support by <a href="https://formidableforms.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">upgrading to our Pro version</a>. Purchasing a Pro license gets you access to the full version of Formidable Forms, priority support, and Formidable Forms Addons!
361
 
362
  == Changelog ==
363
+ = 3.04.01 =
364
+ * New: When a form includes a user ID field, include helpers in the Advanced tab to get data from the user profile for use in emails and other form actions.
365
+ * Code: Refactor and clean up the code for the Advanced tab in the form settings sidebar
366
+ * Code: Add frm_advanced_helpers hook to move some Advanced shortcode examples to Pro
367
+ * Code: Add frm_field_code_tab hook to add extra shortcodes in the customization sidebar for a single field
368
+ * Update translations
369
+
370
  = 3.04 =
371
  * New: Add option to duplicate a form action
372
  * New: Add option to turn form actions on or off
373
  * New: Add frm_is_multiple_select hook
374
 
375
+ <a href="https://raw.githubusercontent.com/Strategy11/formidable-forms/master/changelog.txt">See changelog for all versions</a>