WP User Frontend – Membership, Profile, Registration & Post Submission Plugin for WordPress - Version 2.5.7

Version Description

Download this release

Release Info

Developer tareq1988
Plugin Icon 128x128 WP User Frontend – Membership, Profile, Registration & Post Submission Plugin for WordPress
Version 2.5.7
Comparing to
See all releases

Code changes from version 2.5.6 to 2.5.7

admin/form.php CHANGED
@@ -226,6 +226,7 @@ class WPUF_Admin_Form {
226
 
227
  <a href="#wpuf-metabox-settings" class="nav-tab"><?php _e( 'Post Settings', 'wpuf' ); ?></a>
228
  <a href="#wpuf-metabox-settings-update" class="nav-tab"><?php _e( 'Edit Settings', 'wpuf' ); ?></a>
 
229
  <a href="#wpuf-metabox-post_expiration" class="nav-tab"><?php _e( 'Post Expiration', 'wpuf' ); ?></a>
230
 
231
  <?php do_action( 'wpuf_post_form_tab' ); ?>
@@ -241,6 +242,9 @@ class WPUF_Admin_Form {
241
  * @return void
242
  */
243
  public function add_settings_tab_contents() {
 
 
 
244
  ?>
245
 
246
  <div id="wpuf-metabox-settings" class="group">
@@ -251,6 +255,10 @@ class WPUF_Admin_Form {
251
  <?php include_once dirname( __FILE__ ) . '/html/form-settings-post-edit.php'; ?>
252
  </div>
253
 
 
 
 
 
254
  <div id="wpuf-metabox-post_expiration" class="group wpuf-metabox-post_expiration">
255
  <?php $this->form_post_expiration(); ?>
256
  </div>
226
 
227
  <a href="#wpuf-metabox-settings" class="nav-tab"><?php _e( 'Post Settings', 'wpuf' ); ?></a>
228
  <a href="#wpuf-metabox-settings-update" class="nav-tab"><?php _e( 'Edit Settings', 'wpuf' ); ?></a>
229
+ <a href="#wpuf-metabox-settings-display" class="nav-tab"><?php _e( 'Display Settings', 'wpuf' ); ?></a>
230
  <a href="#wpuf-metabox-post_expiration" class="nav-tab"><?php _e( 'Post Expiration', 'wpuf' ); ?></a>
231
 
232
  <?php do_action( 'wpuf_post_form_tab' ); ?>
242
  * @return void
243
  */
244
  public function add_settings_tab_contents() {
245
+ global $post;
246
+
247
+ $form_settings = wpuf_get_form_settings( $post->ID );
248
  ?>
249
 
250
  <div id="wpuf-metabox-settings" class="group">
255
  <?php include_once dirname( __FILE__ ) . '/html/form-settings-post-edit.php'; ?>
256
  </div>
257
 
258
+ <div id="wpuf-metabox-settings-display" class="group">
259
+ <?php include_once dirname( __FILE__ ) . '/html/form-settings-display.php'; ?>
260
+ </div>
261
+
262
  <div id="wpuf-metabox-post_expiration" class="group wpuf-metabox-post_expiration">
263
  <?php $this->form_post_expiration(); ?>
264
  </div>
admin/html/form-settings-display.php ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $label_position = isset( $form_settings['label_position'] ) ? $form_settings['label_position'] : 'left';
3
+ ?>
4
+
5
+ <table class="form-table">
6
+
7
+ <tr class="wpuf-label-position">
8
+ <th><?php _e( 'Label Position', 'wpuf' ); ?></th>
9
+ <td>
10
+ <select name="wpuf_settings[label_position]">
11
+ <?php
12
+ $positions = array(
13
+ 'above' => __( 'Above Element', 'wpuf' ),
14
+ 'left' => __( 'Left of Element', 'wpuf' ),
15
+ 'right' => __( 'Right of Element', 'wpuf' ),
16
+ 'hidden' => __( 'Hidden', 'wpuf' ),
17
+ );
18
+
19
+ foreach ($positions as $to => $label) {
20
+ printf('<option value="%s"%s>%s</option>', $to, selected( $label_position, $to, false ), $label );
21
+ }
22
+ ?>
23
+ </select>
24
+
25
+ <p class="description">
26
+ <?php _e( 'Where the labels of the form should display', 'wpuf' ) ?>
27
+ </p>
28
+ </td>
29
+ </tr>
30
+ </table>
admin/html/form-settings-post-edit.php CHANGED
@@ -1,8 +1,4 @@
1
  <?php
2
- global $post;
3
-
4
- $form_settings = wpuf_get_form_settings( $post->ID );
5
-
6
  $post_status_selected = isset( $form_settings['edit_post_status'] ) ? $form_settings['edit_post_status'] : 'publish';
7
  $redirect_to = isset( $form_settings['edit_redirect_to'] ) ? $form_settings['edit_redirect_to'] : 'same';
8
  $update_message = isset( $form_settings['update_message'] ) ? $form_settings['update_message'] : __( 'Post updated successfully', 'wpuf' );
1
  <?php
 
 
 
 
2
  $post_status_selected = isset( $form_settings['edit_post_status'] ) ? $form_settings['edit_post_status'] : 'publish';
3
  $redirect_to = isset( $form_settings['edit_redirect_to'] ) ? $form_settings['edit_redirect_to'] : 'same';
4
  $update_message = isset( $form_settings['update_message'] ) ? $form_settings['update_message'] : __( 'Post updated successfully', 'wpuf' );
assets/css/wpuf-form-builder.css CHANGED
@@ -223,6 +223,7 @@
223
  padding-top: 10px;
224
  position: fixed;
225
  top: 25px;
 
226
  }
227
  #wpuf-form-builder * {
228
  box-sizing: border-box;
223
  padding-top: 10px;
224
  position: fixed;
225
  top: 25px;
226
+ background: #f1f1f1;
227
  }
228
  #wpuf-form-builder * {
229
  box-sizing: border-box;
assets/js-templates/form-components.php CHANGED
@@ -4,8 +4,6 @@
4
  <?php _e( 'Add fields by dragging the fields from the right sidebar to this area.', 'wpuf' ) ?>
5
  </h4>
6
 
7
- <!-- {{ field_settings.label_position }} -->
8
-
9
  <ul :class="['wpuf-form', 'sortable-list', 'form-label-' + label_type]">
10
  <li
11
  v-for="(field, index) in form_fields"
4
  <?php _e( 'Add fields by dragging the fields from the right sidebar to this area.', 'wpuf' ) ?>
5
  </h4>
6
 
 
 
7
  <ul :class="['wpuf-form', 'sortable-list', 'form-label-' + label_type]">
8
  <li
9
  v-for="(field, index) in form_fields"
assets/js/wpuf-form-builder-wpuf-forms.js CHANGED
@@ -54,6 +54,12 @@
54
  self.post_form_settings.submit_text = $(this).val();
55
  });
56
 
 
 
 
 
 
 
57
  // draft post text
58
  this.post_form_settings.draft_post = $('[type="checkbox"][name="wpuf_settings[draft_post]"]').is(':checked') ? true : false;
59
  $('[type="checkbox"][name="wpuf_settings[draft_post]"]').on('change', function () {
54
  self.post_form_settings.submit_text = $(this).val();
55
  });
56
 
57
+ $('[name="wpuf_settings[label_position]"]').on('change', function () {
58
+ self.label_type = $(this).val();
59
+ });
60
+
61
+ $('[name="wpuf_settings[label_position]"]').trigger('change');
62
+
63
  // draft post text
64
  this.post_form_settings.draft_post = $('[type="checkbox"][name="wpuf_settings[draft_post]"]').is(':checked') ? true : false;
65
  $('[type="checkbox"][name="wpuf_settings[draft_post]"]').on('change', function () {
class/frontend-dashboard.php CHANGED
@@ -67,24 +67,24 @@ class WPUF_Frontend_Dashboard {
67
  }
68
 
69
  $args = array(
70
- 'author' => get_current_user_id(),
71
- 'post_status' => array('draft', 'future', 'pending', 'publish', 'private'),
72
- 'post_type' => $post_type,
73
  'posts_per_page' => wpuf_get_option( 'per_page', 'wpuf_dashboard', 10 ),
74
- 'paged' => $pagenum
75
  );
76
 
77
- $original_post = $post;
78
  $dashboard_query = new WP_Query( apply_filters( 'wpuf_dashboard_query', $args ) );
79
- $post_type_obj = get_post_type_object( $post_type );
80
 
81
  wpuf_load_template( 'dashboard.php', array(
82
- 'post_type' => $post_type,
83
- 'userdata' => wp_get_current_user(),
84
  'dashboard_query' => $dashboard_query,
85
- 'post_type_obj' => $post_type_obj,
86
- 'post' => $post,
87
- 'pagenum' => $pagenum
88
  ) );
89
 
90
  wp_reset_postdata();
67
  }
68
 
69
  $args = array(
70
+ 'author' => get_current_user_id(),
71
+ 'post_status' => array('draft', 'future', 'pending', 'publish', 'private'),
72
+ 'post_type' => $post_type,
73
  'posts_per_page' => wpuf_get_option( 'per_page', 'wpuf_dashboard', 10 ),
74
+ 'paged' => $pagenum
75
  );
76
 
77
+ $original_post = $post;
78
  $dashboard_query = new WP_Query( apply_filters( 'wpuf_dashboard_query', $args ) );
79
+ $post_type_obj = get_post_type_object( $post_type );
80
 
81
  wpuf_load_template( 'dashboard.php', array(
82
+ 'post_type' => $post_type,
83
+ 'userdata' => wp_get_current_user(),
84
  'dashboard_query' => $dashboard_query,
85
+ 'post_type_obj' => $post_type_obj,
86
+ 'post' => $post,
87
+ 'pagenum' => $pagenum
88
  ) );
89
 
90
  wp_reset_postdata();
class/render-form.php CHANGED
@@ -333,8 +333,9 @@ class WPUF_Render_Form {
333
  return;
334
  }
335
 
336
- $form_vars = wpuf_get_form_fields( $form_id );
337
- $form_settings = wpuf_get_form_settings( $form_id );
 
338
 
339
  if ( ! is_user_logged_in() && $form_settings['guest_post'] != 'true' ) {
340
  echo '<div class="wpuf-message">' . $form_settings['message_restrict'] . '</div>';
@@ -346,7 +347,7 @@ class WPUF_Render_Form {
346
 
347
  <form class="wpuf-form-add" action="" method="post">
348
 
349
- <ul class="wpuf-form">
350
 
351
  <?php
352
  if ( !$post_id ) {
@@ -1574,7 +1575,7 @@ class WPUF_Render_Form {
1574
  $enable_invisible_recaptcha = $attr['recaptcha_type'] == 'invisible_recaptcha' ? true : false;
1575
  $enable_no_captcha = $attr['recaptcha_type'] == 'enable_no_captcha' ? true : false;
1576
  }
1577
-
1578
  if ( $enable_invisible_recaptcha ) { ?>
1579
  <script src="https://www.google.com/recaptcha/api.js" async defer></script>
1580
  <div id='recaptcha' class="g-recaptcha" data-sitekey=<?php echo wpuf_get_option( 'recaptcha_public', 'wpuf_general' ); ?> data-callback="onSubmit" data-size="invisible"></div>
333
  return;
334
  }
335
 
336
+ $form_vars = wpuf_get_form_fields( $form_id );
337
+ $form_settings = wpuf_get_form_settings( $form_id );
338
+ $label_position = isset( $form_settings['label_position'] ) ? $form_settings['label_position'] : 'left';
339
 
340
  if ( ! is_user_logged_in() && $form_settings['guest_post'] != 'true' ) {
341
  echo '<div class="wpuf-message">' . $form_settings['message_restrict'] . '</div>';
347
 
348
  <form class="wpuf-form-add" action="" method="post">
349
 
350
+ <ul class="wpuf-form form-label-<?php echo $label_position; ?>">
351
 
352
  <?php
353
  if ( !$post_id ) {
1575
  $enable_invisible_recaptcha = $attr['recaptcha_type'] == 'invisible_recaptcha' ? true : false;
1576
  $enable_no_captcha = $attr['recaptcha_type'] == 'enable_no_captcha' ? true : false;
1577
  }
1578
+
1579
  if ( $enable_invisible_recaptcha ) { ?>
1580
  <script src="https://www.google.com/recaptcha/api.js" async defer></script>
1581
  <div id='recaptcha' class="g-recaptcha" data-sitekey=<?php echo wpuf_get_option( 'recaptcha_public', 'wpuf_general' ); ?> data-callback="onSubmit" data-size="invisible"></div>
includes/free/form-element.php CHANGED
@@ -193,10 +193,10 @@ class WPUF_form_element extends WPUF_Pro_Prompt {
193
 
194
  $form_settings = wpuf_get_form_settings( $post->ID );
195
 
196
- $new_notificaton = 'on';
197
- $new_to = get_option( 'admin_email' );
198
- $new_subject = __( 'New post created', 'wpuf' );
199
- $new_body = $new_mail_body . $mail_body;
200
 
201
  $edit_notificaton = 'off';
202
  $edit_to = get_option( 'admin_email' );
@@ -204,45 +204,43 @@ class WPUF_form_element extends WPUF_Pro_Prompt {
204
  $edit_body = $edit_mail_body . $mail_body;
205
  ?>
206
 
207
- <?php self::get_pro_prompt(); ?>
208
- <div id="wpuf-pro-content">
209
- <h3><?php _e( 'New Post Notificatoin', 'wpuf' ); ?></h3>
210
- <table class="form-table">
211
- <tr>
212
- <th><?php _e( 'Notification', 'wpuf' ); ?></th>
213
- <td>
214
- <label>
215
- <input disabled type="checkbox" name="" value="on"<?php checked( $new_notificaton, 'on' ); ?>>
216
- <input type="hidden" name="wpuf_settings[notification][new]" value="on">
217
- <?php _e( 'Enable post notification', 'wpuf' ); ?>
218
- </label>
219
- </td>
220
- </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
221
 
222
- <tr>
223
- <th><?php _e( 'To', 'wpuf' ); ?></th>
224
- <td>
225
- <input disabled type="text" name="" class="regular-text" value="<?php echo esc_attr( $new_to ) ?>">
226
- <input type="hidden" name="wpuf_settings[notification][new_to]" value="<?php echo esc_attr( $new_to ) ?>">
227
- </td>
228
- </tr>
229
-
230
- <tr>
231
- <th><?php _e( 'Subject', 'wpuf' ); ?></th>
232
- <td><input disabled type="text" name="" class="regular-text" value="<?php echo esc_attr( $new_subject ) ?>"></td>
233
- <input type="hidden" name="wpuf_settings[notification][new_subject]" value="<?php echo esc_attr( $new_subject ) ?>">
234
- </tr>
235
-
236
- <tr>
237
- <th><?php _e( 'Message', 'wpuf' ); ?></th>
238
- <td>
239
- <textarea disabled rows="6" cols="60" name=""><?php echo esc_textarea( $new_body ) ?></textarea>
240
- <input type="hidden" name="wpuf_settings[notification][new_body]" value="<?php echo esc_attr( $new_body ) ?>">
241
- </td>
242
- </tr>
243
- </table>
244
-
245
- <h3><?php _e( 'Update Post Notificatoin', 'wpuf' ); ?></h3>
246
 
247
  <table class="form-table">
248
  <tr>
@@ -273,15 +271,15 @@ class WPUF_form_element extends WPUF_Pro_Prompt {
273
  </td>
274
  </tr>
275
  </table>
276
-
277
- <h3><?php _e( 'You may use in to, subject & message:', 'wpuf' ); ?></h3>
278
- <p>
279
- <code>%post_title%</code>, <code>%post_content%</code>, <code>%post_excerpt%</code>, <code>%tags%</code>, <code>%category%</code>,
280
- <code>%author%</code>, <code>%author_email%</code>, <code>%author_bio%</code>, <code>%sitename%</code>, <code>%siteurl%</code>, <code>%permalink%</code>, <code>%editlink%</code>
281
- <br><code>%custom_{NAME_OF_CUSTOM_FIELD}%</code> e.g: <code>%custom_website_url%</code> for <code>website_url</code> meta field
282
- </p>
283
  </div>
284
 
 
 
 
 
 
 
 
285
  <?php
286
 
287
  }
193
 
194
  $form_settings = wpuf_get_form_settings( $post->ID );
195
 
196
+ $new_notificaton = isset( $form_settings['notification']['new'] ) ? $form_settings['notification']['new'] : 'on';
197
+ $new_to = isset( $form_settings['notification']['new_to'] ) ? $form_settings['notification']['new_to'] : get_option( 'admin_email' );
198
+ $new_subject = isset( $form_settings['notification']['new_subject'] ) ? $form_settings['notification']['new_subject'] : __( 'New post created', 'wpuf-pro' );
199
+ $new_body = isset( $form_settings['notification']['new_body'] ) ? $form_settings['notification']['new_body'] : $new_mail_body . $mail_body;
200
 
201
  $edit_notificaton = 'off';
202
  $edit_to = get_option( 'admin_email' );
204
  $edit_body = $edit_mail_body . $mail_body;
205
  ?>
206
 
207
+ <h3><?php _e( 'New Post Notificatoin', 'wpuf' ); ?></h3>
208
+ <table class="form-table">
209
+ <tr>
210
+ <th><?php _e( 'Notification', 'wpuf' ); ?></th>
211
+ <td>
212
+ <label>
213
+ <input type="hidden" name="wpuf_settings[notification][new]" value="on">
214
+ <input type="checkbox" name="wpuf_settings[notification][new]" value="on"<?php checked( $new_notificaton, 'on' ); ?>>
215
+ <?php _e( 'Enable post notification', 'wpuf' ); ?>
216
+ </label>
217
+ </td>
218
+ </tr>
219
+
220
+ <tr>
221
+ <th><?php _e( 'To', 'wpuf' ); ?></th>
222
+ <td>
223
+ <input type="text" name="wpuf_settings[notification][new_to]" class="regular-text" value="<?php echo esc_attr( $new_to ) ?>">
224
+ </td>
225
+ </tr>
226
+
227
+ <tr>
228
+ <th><?php _e( 'Subject', 'wpuf' ); ?></th>
229
+ <td><input type="text" name="wpuf_settings[notification][new_subject]" class="regular-text" value="<?php echo esc_attr( $new_subject ) ?>"></td>
230
+ </tr>
231
+
232
+ <tr>
233
+ <th><?php _e( 'Message', 'wpuf' ); ?></th>
234
+ <td>
235
+ <textarea rows="6" cols="60" name="wpuf_settings[notification][new_body]"><?php echo esc_textarea( $new_body ) ?></textarea>
236
+ </td>
237
+ </tr>
238
+ </table>
239
+
240
+ <h3><?php _e( 'Update Post Notificatoin', 'wpuf' ); ?></h3>
241
 
242
+ <div id="wpuf-pro-content">
243
+ <?php self::get_pro_prompt(); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
 
245
  <table class="form-table">
246
  <tr>
271
  </td>
272
  </tr>
273
  </table>
 
 
 
 
 
 
 
274
  </div>
275
 
276
+ <h3><?php _e( 'You may use in to, subject & message:', 'wpuf' ); ?></h3>
277
+ <p>
278
+ <code>%post_title%</code>, <code>%post_content%</code>, <code>%post_excerpt%</code>, <code>%tags%</code>, <code>%category%</code>,
279
+ <code>%author%</code>, <code>%author_email%</code>, <code>%author_bio%</code>, <code>%sitename%</code>, <code>%siteurl%</code>, <code>%permalink%</code>, <code>%editlink%</code>
280
+ <br><code>%custom_{NAME_OF_CUSTOM_FIELD}%</code> e.g: <code>%custom_website_url%</code> for <code>website_url</code> meta field
281
+ </p>
282
+
283
  <?php
284
 
285
  }
includes/free/loader.php CHANGED
@@ -55,7 +55,19 @@ class WPUF_Free_Loader extends WPUF_Pro_Prompt {
55
  new WPUF_Edit_Profile();
56
 
57
  if ( is_admin() ) {
58
- new WPUF_Admin_Form_Free();
 
 
 
 
 
 
 
 
 
 
 
 
59
  }
60
  }
61
 
@@ -175,7 +187,7 @@ class WPUF_Free_Loader extends WPUF_Pro_Prompt {
175
  WPUF_form_element::add_form_settings_content( $form_settings, $post );
176
  }
177
  public function post_notification_hook_runner() {
178
- WPUF_form_element::add_post_notification_content( );
179
  }
180
 
181
  public function wpuf_edit_form_area_profile_runner() {
@@ -229,5 +241,3 @@ class WPUF_Free_Loader extends WPUF_Pro_Prompt {
229
  return $integrations;
230
  }
231
  }
232
-
233
- new WPUF_Free_Loader();
55
  new WPUF_Edit_Profile();
56
 
57
  if ( is_admin() ) {
58
+
59
+ /**
60
+ * Conditionally load the free loader
61
+ *
62
+ * @since 2.5.7
63
+ *
64
+ * @var boolean
65
+ */
66
+ $load_free = apply_filters( 'wpuf_free_loader', true );
67
+
68
+ if ( $load_free ) {
69
+ new WPUF_Admin_Form_Free();
70
+ }
71
  }
72
  }
73
 
187
  WPUF_form_element::add_form_settings_content( $form_settings, $post );
188
  }
189
  public function post_notification_hook_runner() {
190
+ WPUF_form_element::add_post_notification_content();
191
  }
192
 
193
  public function wpuf_edit_form_area_profile_runner() {
241
  return $integrations;
242
  }
243
  }
 
 
languages/wpuf.pot CHANGED
@@ -1,11 +1,11 @@
1
  # Copyright (C) 2017 Tareq Hasan
2
- # This file is distributed under the GPL2.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WP User Frontend 2.5.6\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wedevs.com/support/forum/plugin-support/wp-user-frontend/\n"
8
- "POT-Creation-Date: 2017-08-28 10:00:15+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -154,147 +154,147 @@ msgstr ""
154
  msgid "Add fields by dragging the fields from the right sidebar to this area."
155
  msgstr ""
156
 
157
- #: admin/form-builder/assets/js/components/builder-stage/template.php:30
158
- #: assets/js-templates/form-components.php:31
159
  msgid "is available in Pro Version"
160
  msgstr ""
161
 
162
- #: admin/form-builder/assets/js/components/builder-stage/template.php:54
163
- #: assets/js-templates/form-components.php:55
164
  msgid "Hidden Fields"
165
  msgstr ""
166
 
167
- #: admin/form-builder/assets/js/components/builder-stage/template.php:61
168
- #: assets/js-templates/form-components.php:62
169
  msgid "key"
170
  msgstr ""
171
 
172
- #: admin/form-builder/assets/js/components/builder-stage/template.php:61
173
- #: assets/js-templates/form-components.php:62
174
  msgid "value"
175
  msgstr ""
176
 
177
  #: admin/form-builder/assets/js/components/field-option-data/template.php:5
178
- #: admin/template.php:244 assets/js-templates/form-components.php:103
179
  msgid "Show values"
180
  msgstr ""
181
 
182
  #: admin/form-builder/assets/js/components/field-option-data/template.php:16
183
  #: admin/template.php:247 admin/template.php:305
184
- #: assets/js-templates/form-components.php:114
185
  msgid "Label"
186
  msgstr ""
187
 
188
  #: admin/form-builder/assets/js/components/field-option-data/template.php:20
189
  #: admin/template.php:247 admin/template.php:305
190
- #: assets/js-templates/form-components.php:118
191
  msgid "Value"
192
  msgstr ""
193
 
194
  #: admin/form-builder/assets/js/components/field-option-data/template.php:68
195
- #: assets/js-templates/form-components.php:166
196
  msgid "Clear Selection"
197
  msgstr ""
198
 
199
  #: admin/form-builder/assets/js/components/field-option-pro-feature-alert/template.php:4
200
- #: assets/js-templates/form-components.php:174
201
  msgid "Available in Pro Version"
202
  msgstr ""
203
 
204
  #: admin/form-builder/assets/js/components/field-select/template.php:7
205
- #: assets/js-templates/form-components.php:252
206
  msgid "Select an option"
207
  msgstr ""
208
 
209
  #: admin/form-builder/assets/js/components/form-featured_image/template.php:5
210
  #: admin/form-builder/assets/js/components/form-image_upload/template.php:5
211
- #: assets/js-templates/form-components.php:377
212
- #: assets/js-templates/form-components.php:443 class/render-form.php:1504
213
  msgid "Select Image"
214
  msgstr ""
215
 
216
  #: admin/form-builder/assets/js/components/form-notification/template.php:3
217
- #: assets/js-templates/form-components.php:475
218
  msgid "Add Notification"
219
  msgstr ""
220
 
221
  #: admin/form-builder/assets/js/components/form-notification/template.php:13
222
- #: admin/form.php:759 admin/html/form-settings-post.php:16
223
  #: admin/subscription.php:205 admin/template-post.php:167
224
- #: assets/js-templates/form-components.php:485
225
  #: includes/free/edit-profile.php:97
226
  msgid "Name"
227
  msgstr ""
228
 
229
  #: admin/form-builder/assets/js/components/form-notification/template.php:14
230
  #: admin/form-builder/assets/js/components/form-notification/template.php:62
231
- #: assets/js-templates/form-components.php:486
232
- #: assets/js-templates/form-components.php:534
233
- #: includes/free/form-element.php:231 includes/free/form-element.php:265
234
  msgid "Subject"
235
  msgstr ""
236
 
237
  #: admin/form-builder/assets/js/components/form-notification/template.php:29
238
  #: admin/post-forms-list-table.php:394
239
- #: assets/js-templates/form-components.php:501
240
  msgid "Duplicate"
241
  msgstr ""
242
 
243
  #: admin/form-builder/assets/js/components/form-notification/template.php:30
244
  #: admin/form-builder/views/form-builder.php:9 admin/settings.php:77
245
- #: assets/js-templates/form-components.php:502
246
  msgid "Settings"
247
  msgstr ""
248
 
249
  #: admin/form-builder/assets/js/components/form-notification/template.php:34
250
- #: assets/js-templates/form-components.php:506
251
  msgid "No notifications found"
252
  msgstr ""
253
 
254
  #: admin/form-builder/assets/js/components/form-notification/template.php:49
255
- #: assets/js-templates/form-components.php:521
256
- #: includes/free/form-element.php:223 includes/free/form-element.php:260
257
  msgid "To"
258
  msgstr ""
259
 
260
  #: admin/form-builder/assets/js/components/form-notification/template.php:55
261
- #: assets/js-templates/form-components.php:527
262
  msgid "Reply To"
263
  msgstr ""
264
 
265
  #: admin/form-builder/assets/js/components/form-notification/template.php:68
266
- #: assets/js-templates/form-components.php:540
267
  msgid "Email Message"
268
  msgstr ""
269
 
270
  #: admin/form-builder/assets/js/components/form-notification/template.php:74
271
- #: assets/js-templates/form-components.php:546
272
  msgid " Advanced"
273
  msgstr ""
274
 
275
  #: admin/form-builder/assets/js/components/form-notification/template.php:79
276
- #: assets/js-templates/form-components.php:551
277
  msgid "From Name"
278
  msgstr ""
279
 
280
  #: admin/form-builder/assets/js/components/form-notification/template.php:85
281
- #: assets/js-templates/form-components.php:557
282
  msgid "From Address"
283
  msgstr ""
284
 
285
  #: admin/form-builder/assets/js/components/form-notification/template.php:93
286
- #: assets/js-templates/form-components.php:565
287
  msgid "CC"
288
  msgstr ""
289
 
290
  #: admin/form-builder/assets/js/components/form-notification/template.php:99
291
- #: assets/js-templates/form-components.php:571
292
  msgid "BCC"
293
  msgstr ""
294
 
295
  #: admin/form-builder/assets/js/components/form-notification/template.php:109
296
- #: admin/subscription.php:231 assets/js-templates/form-components.php:581
297
- #: class/render-form.php:1516 class/transactions-list-table.php:114
298
  #: class/transactions-list-table.php:175 class/upload.php:171
299
  #: includes/free/edit-user.php:100 templates/dashboard/posts.php:160
300
  #: templates/dashboard.php:114
@@ -302,77 +302,77 @@ msgid "Delete"
302
  msgstr ""
303
 
304
  #: admin/form-builder/assets/js/components/form-notification/template.php:110
305
- #: assets/js-templates/form-components.php:582
306
  msgid "Done"
307
  msgstr ""
308
 
309
  #: admin/form-builder/assets/js/components/form-post_content/template.php:4
310
- #: assets/js-templates/form-components.php:593 class/render-form.php:925
311
  msgid "Insert Photo"
312
  msgstr ""
313
 
314
  #: admin/form-builder/assets/js/components/form-taxonomy/template.php:12
315
- #: assets/js-templates/form-components.php:703
316
  msgid "— Select —"
317
  msgstr ""
318
 
319
  #: admin/form-builder/assets/js/components/integration/template.php:11
320
- #: assets/js-templates/form-components.php:792
321
  msgid "Premium Feature"
322
  msgstr ""
323
 
324
  #: admin/form-builder/assets/js/components/integration/template.php:16
325
- #: assets/js-templates/form-components.php:797
326
  msgid "Toggle panel"
327
  msgstr ""
328
 
329
  #: admin/form-builder/assets/js/components/integration/template.php:28
330
- #: assets/js-templates/form-components.php:809
331
  msgid "This feature is available on the premium version only."
332
  msgstr ""
333
 
334
  #: admin/form-builder/assets/js/components/integration/template.php:29
335
- #: assets/js-templates/form-components.php:810 includes/free/loader.php:153
336
  msgid "Upgrade to Pro"
337
  msgstr ""
338
 
339
  #: admin/form-builder/assets/js/components/integration/template.php:37
340
- #: assets/js-templates/form-components.php:818
341
  msgid "No integration found."
342
  msgstr ""
343
 
344
  #: admin/form-builder/assets/js/components/merge-tags/template.php:8
345
- #: assets/js-templates/form-components.php:830
346
  msgid "Form Fields"
347
  msgstr ""
348
 
349
  #: admin/form-builder/assets/js/components/merge-tags/template.php:17
350
- #: assets/js-templates/form-components.php:839
351
  msgid "first"
352
  msgstr ""
353
 
354
  #: admin/form-builder/assets/js/components/merge-tags/template.php:18
355
- #: assets/js-templates/form-components.php:840
356
  msgid "middle"
357
  msgstr ""
358
 
359
  #: admin/form-builder/assets/js/components/merge-tags/template.php:19
360
- #: assets/js-templates/form-components.php:841
361
  msgid "last"
362
  msgstr ""
363
 
364
  #: admin/form-builder/assets/js/components/merge-tags/template.php:27
365
- #: assets/js-templates/form-components.php:849
366
  msgid "No fields available"
367
  msgstr ""
368
 
369
  #: admin/form-builder/assets/js/components/modal/template.php:4
370
- #: admin/html/modal.php:4 assets/js-templates/form-components.php:884
371
  msgid "Modal window. Press escape to close."
372
  msgstr ""
373
 
374
  #: admin/form-builder/assets/js/components/modal/template.php:5
375
- #: admin/html/modal.php:5 assets/js-templates/form-components.php:885
376
  msgid "Close modal window"
377
  msgstr ""
378
 
@@ -455,7 +455,7 @@ msgstr ""
455
  msgid "Get the Pro version"
456
  msgstr ""
457
 
458
- #: admin/form-builder/class-wpuf-admin-form-builder.php:334 admin/form.php:743
459
  msgid "Select"
460
  msgstr ""
461
 
@@ -503,7 +503,7 @@ msgstr ""
503
  #: admin/post-forms-list-table.php:345 admin/settings-options.php:83
504
  #: admin/settings-options.php:158 admin/settings-options.php:169
505
  #: admin/settings-options.php:258 admin/subscription.php:145
506
- #: admin/template.php:70 includes/free/form-element.php:476
507
  msgid "Yes"
508
  msgstr ""
509
 
@@ -513,7 +513,7 @@ msgstr ""
513
  #: admin/post-forms-list-table.php:346 admin/settings-options.php:84
514
  #: admin/settings-options.php:159 admin/settings-options.php:170
515
  #: admin/settings-options.php:259 admin/subscription.php:147
516
- #: admin/template.php:71 includes/free/form-element.php:477
517
  msgid "No"
518
  msgstr ""
519
 
@@ -672,7 +672,7 @@ msgstr ""
672
 
673
  #: admin/form-builder/class-wpuf-form-builder-field-settings.php:404
674
  #: admin/form-builder/class-wpuf-form-builder-field-settings.php:411
675
- #: admin/form.php:744 admin/template-post.php:157
676
  msgid "Multi Select"
677
  msgstr ""
678
 
@@ -695,7 +695,7 @@ msgid "Radio Field"
695
  msgstr ""
696
 
697
  #: admin/form-builder/class-wpuf-form-builder-field-settings.php:514
698
- #: admin/form.php:745 admin/template-post.php:158
699
  msgid "Checkbox"
700
  msgstr ""
701
 
@@ -733,12 +733,12 @@ msgid "Hidden Field"
733
  msgstr ""
734
 
735
  #: admin/form-builder/class-wpuf-form-builder-field-settings.php:666
736
- #: admin/form.php:662 admin/template-post.php:105 admin/template.php:646
737
  msgid "Max. file size"
738
  msgstr ""
739
 
740
  #: admin/form-builder/class-wpuf-form-builder-field-settings.php:670
741
- #: admin/form.php:666 admin/template-post.php:93 admin/template.php:634
742
  msgid "Enter maximum upload size limit in KB"
743
  msgstr ""
744
 
@@ -959,12 +959,12 @@ msgstr ""
959
  msgid "Registraton Forms"
960
  msgstr ""
961
 
962
- #: admin/form.php:109 includes/free/loader.php:65
963
  msgid "Registration Forms"
964
  msgstr ""
965
 
966
- #: admin/form.php:194 includes/free/form-element.php:212
967
- #: includes/free/form-element.php:249
968
  msgid "Notification"
969
  msgstr ""
970
 
@@ -976,204 +976,232 @@ msgstr ""
976
  msgid "Edit Settings"
977
  msgstr ""
978
 
979
- #: admin/form.php:229 includes/free/form-element.php:56
 
 
 
 
980
  msgid "Post Expiration"
981
  msgstr ""
982
 
983
- #: admin/form.php:276 admin/form.php:280
984
  msgid "- Select -"
985
  msgstr ""
986
 
987
- #: admin/form.php:314
988
  msgid "Post Fields"
989
  msgstr ""
990
 
991
- #: admin/form.php:320
992
  msgid "Taxonomies"
993
  msgstr ""
994
 
995
- #: admin/form.php:422 admin/html/form-settings-post.php:28
996
- #: class/render-form.php:629
997
  msgid "Save Draft"
998
  msgstr ""
999
 
1000
- #: admin/form.php:532 admin/form.php:539
1001
  msgid "Post Title"
1002
  msgstr ""
1003
 
1004
- #: admin/form.php:569 admin/template-post.php:41
1005
  msgid "Enable Image Insertion"
1006
  msgstr ""
1007
 
1008
- #: admin/form.php:571 admin/template-post.php:47
1009
  msgid "Enable image upload in post area"
1010
  msgstr ""
1011
 
1012
- #: admin/form.php:580 admin/form.php:587
1013
  msgid "Post Body"
1014
  msgstr ""
1015
 
1016
- #: admin/form.php:624 admin/form.php:631
1017
  msgid "Excerpt"
1018
  msgstr ""
1019
 
1020
- #: admin/form.php:672 admin/form.php:679 templates/dashboard/posts.php:71
1021
  #: templates/dashboard.php:24
1022
  msgid "Featured Image"
1023
  msgstr ""
1024
 
1025
- #: admin/form.php:706 admin/form.php:712
1026
  msgid "Tags"
1027
  msgstr ""
1028
 
1029
- #: admin/form.php:740 admin/template-post.php:154
1030
  msgid "Type"
1031
  msgstr ""
1032
 
1033
- #: admin/form.php:746 admin/template-post.php:159
1034
  msgid "Text Input"
1035
  msgstr ""
1036
 
1037
- #: admin/form.php:747 admin/template-post.php:160
1038
  msgid "Ajax"
1039
  msgstr ""
1040
 
1041
- #: admin/form.php:756 admin/template-post.php:165
1042
  msgid "Order By"
1043
  msgstr ""
1044
 
1045
- #: admin/form.php:760 admin/template-post.php:168
1046
  msgid "Term ID"
1047
  msgstr ""
1048
 
1049
- #: admin/form.php:761 admin/template-post.php:169
1050
  msgid "Slug"
1051
  msgstr ""
1052
 
1053
- #: admin/form.php:762 admin/template-post.php:170
1054
  msgid "Count"
1055
  msgstr ""
1056
 
1057
- #: admin/form.php:763 admin/template-post.php:171
1058
  msgid "Term Group"
1059
  msgstr ""
1060
 
1061
- #: admin/form.php:772 admin/template-post.php:176
1062
  msgid "Order"
1063
  msgstr ""
1064
 
1065
- #: admin/form.php:776 admin/template-post.php:178
1066
  msgid "ASC"
1067
  msgstr ""
1068
 
1069
- #: admin/form.php:777 admin/template-post.php:179
1070
  msgid "DESC"
1071
  msgstr ""
1072
 
1073
- #: admin/form.php:786 admin/template-post.php:184
1074
  msgid "Selection Type"
1075
  msgstr ""
1076
 
1077
- #: admin/form.php:789 admin/template-post.php:186
1078
  msgid "Exclude"
1079
  msgstr ""
1080
 
1081
- #: admin/form.php:790 admin/template-post.php:187
1082
  msgid "Include"
1083
  msgstr ""
1084
 
1085
- #: admin/form.php:791 admin/template-post.php:188
1086
  msgid "Child of"
1087
  msgstr ""
1088
 
1089
- #: admin/form.php:800
1090
  msgid "Selection Terms"
1091
  msgstr ""
1092
 
1093
- #: admin/form.php:804 admin/template-post.php:194
1094
  msgid ""
1095
  "Enter the term IDs as comma separated (without space) to exclude/include in "
1096
  "the form."
1097
  msgstr ""
1098
 
1099
- #: admin/form.php:812 admin/template-post.php:204
1100
  msgid "This taxonomy is a WooCommerce attribute"
1101
  msgstr ""
1102
 
1103
- #: admin/form.php:823 admin/template-post.php:216
1104
  msgid "Visible on product page"
1105
  msgstr ""
1106
 
1107
- #: admin/form.php:871
1108
  msgid "Post Forms must have either Post Title, Post Body or Excerpt field"
1109
  msgstr ""
1110
 
1111
- #: admin/html/form-settings-post-edit.php:8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1112
  #: admin/html/form-settings-post.php:22
1113
  msgid "Post updated successfully"
1114
  msgstr ""
1115
 
1116
- #: admin/html/form-settings-post-edit.php:11
1117
  msgid "Update"
1118
  msgstr ""
1119
 
1120
- #: admin/html/form-settings-post-edit.php:17
1121
  msgid "Set Post Status to"
1122
  msgstr ""
1123
 
1124
- #: admin/html/form-settings-post-edit.php:27
1125
  msgid "No Change"
1126
  msgstr ""
1127
 
1128
- #: admin/html/form-settings-post-edit.php:34
1129
- #: admin/html/form-settings-post.php:175 includes/free/form-element.php:375
1130
  msgid "Redirect To"
1131
  msgstr ""
1132
 
1133
- #: admin/html/form-settings-post-edit.php:39
1134
  #: admin/html/form-settings-post.php:180
1135
  msgid "Newly created post"
1136
  msgstr ""
1137
 
1138
- #: admin/html/form-settings-post-edit.php:40
1139
- #: admin/html/form-settings-post.php:181 includes/free/form-element.php:380
1140
  msgid "Same Page"
1141
  msgstr ""
1142
 
1143
- #: admin/html/form-settings-post-edit.php:41
1144
- #: admin/html/form-settings-post.php:182 includes/free/form-element.php:381
1145
  msgid "To a page"
1146
  msgstr ""
1147
 
1148
- #: admin/html/form-settings-post-edit.php:42
1149
- #: admin/html/form-settings-post.php:183 includes/free/form-element.php:382
1150
  msgid "To a custom URL"
1151
  msgstr ""
1152
 
1153
- #: admin/html/form-settings-post-edit.php:51
1154
- #: admin/html/form-settings-post.php:192 includes/free/form-element.php:391
1155
  msgid "After successfull submit, where the page will redirect to"
1156
  msgstr ""
1157
 
1158
- #: admin/html/form-settings-post-edit.php:57
1159
  msgid "Post Update Message"
1160
  msgstr ""
1161
 
1162
- #: admin/html/form-settings-post-edit.php:64
1163
- #: admin/html/form-settings-post.php:205 includes/free/form-element.php:411
1164
  msgid "Page"
1165
  msgstr ""
1166
 
1167
- #: admin/html/form-settings-post-edit.php:79
1168
- #: admin/html/form-settings-post.php:220 includes/free/form-element.php:426
1169
  msgid "Custom URL"
1170
  msgstr ""
1171
 
1172
- #: admin/html/form-settings-post-edit.php:86
1173
  msgid "Subscription Title"
1174
  msgstr ""
1175
 
1176
- #: admin/html/form-settings-post-edit.php:95
1177
  msgid "Update Post Button text"
1178
  msgstr ""
1179
 
@@ -1453,24 +1481,24 @@ msgstr ""
1453
  msgid "Draft"
1454
  msgstr ""
1455
 
1456
- #: admin/posting.php:66 class/asset-loader.php:51 class/render-form.php:1516
1457
- #: wpuf.php:416
1458
  msgid "Are you sure?"
1459
  msgstr ""
1460
 
1461
- #: admin/posting.php:72 class/asset-loader.php:57 wpuf.php:422
1462
  msgid "Allowed Files"
1463
  msgstr ""
1464
 
1465
- #: admin/posting.php:75 class/asset-loader.php:60 wpuf.php:425
1466
  msgid "Maximum number of files reached!"
1467
  msgstr ""
1468
 
1469
- #: admin/posting.php:76 class/asset-loader.php:61 wpuf.php:426
1470
  msgid "The file you have uploaded exceeds the file size limit. Please try again."
1471
  msgstr ""
1472
 
1473
- #: admin/posting.php:77 class/asset-loader.php:62 wpuf.php:427
1474
  msgid "You have uploaded an incorrect file type. Please try again."
1475
  msgstr ""
1476
 
@@ -2250,23 +2278,23 @@ msgstr ""
2250
  msgid "Install Now"
2251
  msgstr ""
2252
 
2253
- #: class/asset-loader.php:31 wpuf.php:347
2254
  msgid "is required"
2255
  msgstr ""
2256
 
2257
- #: class/asset-loader.php:32 wpuf.php:348
2258
  msgid "does not match"
2259
  msgstr ""
2260
 
2261
- #: class/asset-loader.php:33 wpuf.php:349
2262
  msgid "is not valid"
2263
  msgstr ""
2264
 
2265
- #: class/asset-loader.php:45 wpuf.php:410
2266
  msgid "Please fix the errors to proceed"
2267
  msgstr ""
2268
 
2269
- #: class/asset-loader.php:47 wpuf.php:412
2270
  msgid "Word limit reached"
2271
  msgstr ""
2272
 
@@ -2468,16 +2496,16 @@ msgstr ""
2468
  msgid "Please make sure you've published your form."
2469
  msgstr ""
2470
 
2471
- #: class/render-form.php:1203 includes/free/edit-profile.php:203
2472
  #: templates/dashboard/edit-profile.php:36
2473
  msgid "Strength indicator"
2474
  msgstr ""
2475
 
2476
- #: class/render-form.php:1265 class/render-form.php:1378
2477
  msgid "-- Select --"
2478
  msgstr ""
2479
 
2480
- #: class/render-form.php:1320
2481
  msgid "This field is no longer available."
2482
  msgstr ""
2483
 
@@ -2639,7 +2667,7 @@ msgid "Caption"
2639
  msgstr ""
2640
 
2641
  #: includes/free/admin/form-builder/class-wpuf-form-builder-field-settings-free.php:46
2642
- #: includes/free/form-element.php:473
2643
  msgid "Conditional Logic"
2644
  msgstr ""
2645
 
@@ -2703,7 +2731,7 @@ msgstr ""
2703
  msgid "Select a form to insert"
2704
  msgstr ""
2705
 
2706
- #: includes/free/admin/shortcode-builder.php:9 includes/free/loader.php:76
2707
  msgid "Registration Form"
2708
  msgstr ""
2709
 
@@ -2803,7 +2831,7 @@ msgstr ""
2803
  msgid "Password Strength"
2804
  msgstr ""
2805
 
2806
- #: includes/free/edit-profile.php:227 includes/free/form-element.php:345
2807
  #: templates/dashboard/edit-profile.php:63
2808
  msgid "Update Profile"
2809
  msgstr ""
@@ -2932,97 +2960,97 @@ msgstr ""
2932
  msgid "A post has been edited"
2933
  msgstr ""
2934
 
2935
- #: includes/free/form-element.php:209
2936
  msgid "New Post Notificatoin"
2937
  msgstr ""
2938
 
2939
- #: includes/free/form-element.php:217 includes/free/form-element.php:254
2940
  msgid "Enable post notification"
2941
  msgstr ""
2942
 
2943
- #: includes/free/form-element.php:237 includes/free/form-element.php:270
2944
  msgid "Message"
2945
  msgstr ""
2946
 
2947
- #: includes/free/form-element.php:245
2948
  msgid "Update Post Notificatoin"
2949
  msgstr ""
2950
 
2951
- #: includes/free/form-element.php:277
2952
  msgid "You may use in to, subject & message:"
2953
  msgstr ""
2954
 
2955
- #: includes/free/form-element.php:302
2956
  msgid "Toggle All"
2957
  msgstr ""
2958
 
2959
- #: includes/free/form-element.php:306
2960
  msgid "Click on a form element to add to the editor"
2961
  msgstr ""
2962
 
2963
- #: includes/free/form-element.php:340
2964
  msgid "Registration successful"
2965
  msgstr ""
2966
 
2967
- #: includes/free/form-element.php:341
2968
  msgid "Profile updated successfully"
2969
  msgstr ""
2970
 
2971
- #: includes/free/form-element.php:344
2972
  msgid "Register"
2973
  msgstr ""
2974
 
2975
- #: includes/free/form-element.php:353
2976
  msgid "Enable Email Verfication"
2977
  msgstr ""
2978
 
2979
- #: includes/free/form-element.php:361
2980
  msgid "New User Role"
2981
  msgstr ""
2982
 
2983
- #: includes/free/form-element.php:397
2984
  msgid "Registration success message"
2985
  msgstr ""
2986
 
2987
- #: includes/free/form-element.php:404
2988
  msgid "Update profile message"
2989
  msgstr ""
2990
 
2991
- #: includes/free/form-element.php:433
2992
  msgid "Submit Button text"
2993
  msgstr ""
2994
 
2995
- #: includes/free/form-element.php:440
2996
  msgid "Update Button text"
2997
  msgstr ""
2998
 
2999
- #: includes/free/loader.php:71 includes/free/loader.php:100
3000
  msgid "Coupons"
3001
  msgstr ""
3002
 
3003
- #: includes/free/loader.php:80
3004
  msgid ""
3005
  "Registration form builder is a two way form which can be used both for "
3006
  "<strong>user registration</strong> and <strong>profile editing</strong>."
3007
  msgstr ""
3008
 
3009
- #: includes/free/loader.php:84
3010
  msgid "Users can also register themselves by using a subscription pack."
3011
  msgstr ""
3012
 
3013
- #: includes/free/loader.php:88 includes/free/loader.php:108
3014
  msgid "This feature is only available in the Pro Version."
3015
  msgstr ""
3016
 
3017
- #: includes/free/loader.php:92 includes/free/loader.php:112
3018
  msgid "Upgrade to Pro Version"
3019
  msgstr ""
3020
 
3021
- #: includes/free/loader.php:104
3022
  msgid "Use Coupon codes for subscription for discounts."
3023
  msgstr ""
3024
 
3025
- #: includes/free/loader.php:137
3026
  msgid "Pro Feature"
3027
  msgstr ""
3028
 
@@ -3531,11 +3559,11 @@ msgstr ""
3531
  msgid "Egyptian Pound"
3532
  msgstr ""
3533
 
3534
- #: wpuf.php:119
3535
  msgid "Your Post Has Been Expired"
3536
  msgstr ""
3537
 
3538
- #: wpuf.php:554
3539
  msgid "Error: Nonce verification failed"
3540
  msgstr ""
3541
 
1
  # Copyright (C) 2017 Tareq Hasan
2
+ # This file is distributed under the GPL2 or later.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WP User Frontend 2.5.7\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wedevs.com/support/forum/plugin-support/wp-user-frontend/\n"
8
+ "POT-Creation-Date: 2017-09-10 18:57:48+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
154
  msgid "Add fields by dragging the fields from the right sidebar to this area."
155
  msgstr ""
156
 
157
+ #: admin/form-builder/assets/js/components/builder-stage/template.php:28
158
+ #: assets/js-templates/form-components.php:29
159
  msgid "is available in Pro Version"
160
  msgstr ""
161
 
162
+ #: admin/form-builder/assets/js/components/builder-stage/template.php:52
163
+ #: assets/js-templates/form-components.php:53
164
  msgid "Hidden Fields"
165
  msgstr ""
166
 
167
+ #: admin/form-builder/assets/js/components/builder-stage/template.php:59
168
+ #: assets/js-templates/form-components.php:60
169
  msgid "key"
170
  msgstr ""
171
 
172
+ #: admin/form-builder/assets/js/components/builder-stage/template.php:59
173
+ #: assets/js-templates/form-components.php:60
174
  msgid "value"
175
  msgstr ""
176
 
177
  #: admin/form-builder/assets/js/components/field-option-data/template.php:5
178
+ #: admin/template.php:244 assets/js-templates/form-components.php:101
179
  msgid "Show values"
180
  msgstr ""
181
 
182
  #: admin/form-builder/assets/js/components/field-option-data/template.php:16
183
  #: admin/template.php:247 admin/template.php:305
184
+ #: assets/js-templates/form-components.php:112
185
  msgid "Label"
186
  msgstr ""
187
 
188
  #: admin/form-builder/assets/js/components/field-option-data/template.php:20
189
  #: admin/template.php:247 admin/template.php:305
190
+ #: assets/js-templates/form-components.php:116
191
  msgid "Value"
192
  msgstr ""
193
 
194
  #: admin/form-builder/assets/js/components/field-option-data/template.php:68
195
+ #: assets/js-templates/form-components.php:164
196
  msgid "Clear Selection"
197
  msgstr ""
198
 
199
  #: admin/form-builder/assets/js/components/field-option-pro-feature-alert/template.php:4
200
+ #: assets/js-templates/form-components.php:172
201
  msgid "Available in Pro Version"
202
  msgstr ""
203
 
204
  #: admin/form-builder/assets/js/components/field-select/template.php:7
205
+ #: assets/js-templates/form-components.php:250
206
  msgid "Select an option"
207
  msgstr ""
208
 
209
  #: admin/form-builder/assets/js/components/form-featured_image/template.php:5
210
  #: admin/form-builder/assets/js/components/form-image_upload/template.php:5
211
+ #: assets/js-templates/form-components.php:375
212
+ #: assets/js-templates/form-components.php:441 class/render-form.php:1505
213
  msgid "Select Image"
214
  msgstr ""
215
 
216
  #: admin/form-builder/assets/js/components/form-notification/template.php:3
217
+ #: assets/js-templates/form-components.php:473
218
  msgid "Add Notification"
219
  msgstr ""
220
 
221
  #: admin/form-builder/assets/js/components/form-notification/template.php:13
222
+ #: admin/form.php:767 admin/html/form-settings-post.php:16
223
  #: admin/subscription.php:205 admin/template-post.php:167
224
+ #: assets/js-templates/form-components.php:483
225
  #: includes/free/edit-profile.php:97
226
  msgid "Name"
227
  msgstr ""
228
 
229
  #: admin/form-builder/assets/js/components/form-notification/template.php:14
230
  #: admin/form-builder/assets/js/components/form-notification/template.php:62
231
+ #: assets/js-templates/form-components.php:484
232
+ #: assets/js-templates/form-components.php:532
233
+ #: includes/free/form-element.php:228 includes/free/form-element.php:263
234
  msgid "Subject"
235
  msgstr ""
236
 
237
  #: admin/form-builder/assets/js/components/form-notification/template.php:29
238
  #: admin/post-forms-list-table.php:394
239
+ #: assets/js-templates/form-components.php:499
240
  msgid "Duplicate"
241
  msgstr ""
242
 
243
  #: admin/form-builder/assets/js/components/form-notification/template.php:30
244
  #: admin/form-builder/views/form-builder.php:9 admin/settings.php:77
245
+ #: assets/js-templates/form-components.php:500
246
  msgid "Settings"
247
  msgstr ""
248
 
249
  #: admin/form-builder/assets/js/components/form-notification/template.php:34
250
+ #: assets/js-templates/form-components.php:504
251
  msgid "No notifications found"
252
  msgstr ""
253
 
254
  #: admin/form-builder/assets/js/components/form-notification/template.php:49
255
+ #: assets/js-templates/form-components.php:519
256
+ #: includes/free/form-element.php:221 includes/free/form-element.php:258
257
  msgid "To"
258
  msgstr ""
259
 
260
  #: admin/form-builder/assets/js/components/form-notification/template.php:55
261
+ #: assets/js-templates/form-components.php:525
262
  msgid "Reply To"
263
  msgstr ""
264
 
265
  #: admin/form-builder/assets/js/components/form-notification/template.php:68
266
+ #: assets/js-templates/form-components.php:538
267
  msgid "Email Message"
268
  msgstr ""
269
 
270
  #: admin/form-builder/assets/js/components/form-notification/template.php:74
271
+ #: assets/js-templates/form-components.php:544
272
  msgid " Advanced"
273
  msgstr ""
274
 
275
  #: admin/form-builder/assets/js/components/form-notification/template.php:79
276
+ #: assets/js-templates/form-components.php:549
277
  msgid "From Name"
278
  msgstr ""
279
 
280
  #: admin/form-builder/assets/js/components/form-notification/template.php:85
281
+ #: assets/js-templates/form-components.php:555
282
  msgid "From Address"
283
  msgstr ""
284
 
285
  #: admin/form-builder/assets/js/components/form-notification/template.php:93
286
+ #: assets/js-templates/form-components.php:563
287
  msgid "CC"
288
  msgstr ""
289
 
290
  #: admin/form-builder/assets/js/components/form-notification/template.php:99
291
+ #: assets/js-templates/form-components.php:569
292
  msgid "BCC"
293
  msgstr ""
294
 
295
  #: admin/form-builder/assets/js/components/form-notification/template.php:109
296
+ #: admin/subscription.php:231 assets/js-templates/form-components.php:579
297
+ #: class/render-form.php:1517 class/transactions-list-table.php:114
298
  #: class/transactions-list-table.php:175 class/upload.php:171
299
  #: includes/free/edit-user.php:100 templates/dashboard/posts.php:160
300
  #: templates/dashboard.php:114
302
  msgstr ""
303
 
304
  #: admin/form-builder/assets/js/components/form-notification/template.php:110
305
+ #: assets/js-templates/form-components.php:580
306
  msgid "Done"
307
  msgstr ""
308
 
309
  #: admin/form-builder/assets/js/components/form-post_content/template.php:4
310
+ #: assets/js-templates/form-components.php:591 class/render-form.php:926
311
  msgid "Insert Photo"
312
  msgstr ""
313
 
314
  #: admin/form-builder/assets/js/components/form-taxonomy/template.php:12
315
+ #: assets/js-templates/form-components.php:701
316
  msgid "— Select —"
317
  msgstr ""
318
 
319
  #: admin/form-builder/assets/js/components/integration/template.php:11
320
+ #: assets/js-templates/form-components.php:790
321
  msgid "Premium Feature"
322
  msgstr ""
323
 
324
  #: admin/form-builder/assets/js/components/integration/template.php:16
325
+ #: assets/js-templates/form-components.php:795
326
  msgid "Toggle panel"
327
  msgstr ""
328
 
329
  #: admin/form-builder/assets/js/components/integration/template.php:28
330
+ #: assets/js-templates/form-components.php:807
331
  msgid "This feature is available on the premium version only."
332
  msgstr ""
333
 
334
  #: admin/form-builder/assets/js/components/integration/template.php:29
335
+ #: assets/js-templates/form-components.php:808 includes/free/loader.php:165
336
  msgid "Upgrade to Pro"
337
  msgstr ""
338
 
339
  #: admin/form-builder/assets/js/components/integration/template.php:37
340
+ #: assets/js-templates/form-components.php:816
341
  msgid "No integration found."
342
  msgstr ""
343
 
344
  #: admin/form-builder/assets/js/components/merge-tags/template.php:8
345
+ #: assets/js-templates/form-components.php:828
346
  msgid "Form Fields"
347
  msgstr ""
348
 
349
  #: admin/form-builder/assets/js/components/merge-tags/template.php:17
350
+ #: assets/js-templates/form-components.php:837
351
  msgid "first"
352
  msgstr ""
353
 
354
  #: admin/form-builder/assets/js/components/merge-tags/template.php:18
355
+ #: assets/js-templates/form-components.php:838
356
  msgid "middle"
357
  msgstr ""
358
 
359
  #: admin/form-builder/assets/js/components/merge-tags/template.php:19
360
+ #: assets/js-templates/form-components.php:839
361
  msgid "last"
362
  msgstr ""
363
 
364
  #: admin/form-builder/assets/js/components/merge-tags/template.php:27
365
+ #: assets/js-templates/form-components.php:847
366
  msgid "No fields available"
367
  msgstr ""
368
 
369
  #: admin/form-builder/assets/js/components/modal/template.php:4
370
+ #: admin/html/modal.php:4 assets/js-templates/form-components.php:882
371
  msgid "Modal window. Press escape to close."
372
  msgstr ""
373
 
374
  #: admin/form-builder/assets/js/components/modal/template.php:5
375
+ #: admin/html/modal.php:5 assets/js-templates/form-components.php:883
376
  msgid "Close modal window"
377
  msgstr ""
378
 
455
  msgid "Get the Pro version"
456
  msgstr ""
457
 
458
+ #: admin/form-builder/class-wpuf-admin-form-builder.php:334 admin/form.php:751
459
  msgid "Select"
460
  msgstr ""
461
 
503
  #: admin/post-forms-list-table.php:345 admin/settings-options.php:83
504
  #: admin/settings-options.php:158 admin/settings-options.php:169
505
  #: admin/settings-options.php:258 admin/subscription.php:145
506
+ #: admin/template.php:70 includes/free/form-element.php:474
507
  msgid "Yes"
508
  msgstr ""
509
 
513
  #: admin/post-forms-list-table.php:346 admin/settings-options.php:84
514
  #: admin/settings-options.php:159 admin/settings-options.php:170
515
  #: admin/settings-options.php:259 admin/subscription.php:147
516
+ #: admin/template.php:71 includes/free/form-element.php:475
517
  msgid "No"
518
  msgstr ""
519
 
672
 
673
  #: admin/form-builder/class-wpuf-form-builder-field-settings.php:404
674
  #: admin/form-builder/class-wpuf-form-builder-field-settings.php:411
675
+ #: admin/form.php:752 admin/template-post.php:157
676
  msgid "Multi Select"
677
  msgstr ""
678
 
695
  msgstr ""
696
 
697
  #: admin/form-builder/class-wpuf-form-builder-field-settings.php:514
698
+ #: admin/form.php:753 admin/template-post.php:158
699
  msgid "Checkbox"
700
  msgstr ""
701
 
733
  msgstr ""
734
 
735
  #: admin/form-builder/class-wpuf-form-builder-field-settings.php:666
736
+ #: admin/form.php:670 admin/template-post.php:105 admin/template.php:646
737
  msgid "Max. file size"
738
  msgstr ""
739
 
740
  #: admin/form-builder/class-wpuf-form-builder-field-settings.php:670
741
+ #: admin/form.php:674 admin/template-post.php:93 admin/template.php:634
742
  msgid "Enter maximum upload size limit in KB"
743
  msgstr ""
744
 
959
  msgid "Registraton Forms"
960
  msgstr ""
961
 
962
+ #: admin/form.php:109 includes/free/loader.php:77
963
  msgid "Registration Forms"
964
  msgstr ""
965
 
966
+ #: admin/form.php:194 includes/free/form-element.php:210
967
+ #: includes/free/form-element.php:247
968
  msgid "Notification"
969
  msgstr ""
970
 
976
  msgid "Edit Settings"
977
  msgstr ""
978
 
979
+ #: admin/form.php:229
980
+ msgid "Display Settings"
981
+ msgstr ""
982
+
983
+ #: admin/form.php:230 includes/free/form-element.php:56
984
  msgid "Post Expiration"
985
  msgstr ""
986
 
987
+ #: admin/form.php:284 admin/form.php:288
988
  msgid "- Select -"
989
  msgstr ""
990
 
991
+ #: admin/form.php:322
992
  msgid "Post Fields"
993
  msgstr ""
994
 
995
+ #: admin/form.php:328
996
  msgid "Taxonomies"
997
  msgstr ""
998
 
999
+ #: admin/form.php:430 admin/html/form-settings-post.php:28
1000
+ #: class/render-form.php:630
1001
  msgid "Save Draft"
1002
  msgstr ""
1003
 
1004
+ #: admin/form.php:540 admin/form.php:547
1005
  msgid "Post Title"
1006
  msgstr ""
1007
 
1008
+ #: admin/form.php:577 admin/template-post.php:41
1009
  msgid "Enable Image Insertion"
1010
  msgstr ""
1011
 
1012
+ #: admin/form.php:579 admin/template-post.php:47
1013
  msgid "Enable image upload in post area"
1014
  msgstr ""
1015
 
1016
+ #: admin/form.php:588 admin/form.php:595
1017
  msgid "Post Body"
1018
  msgstr ""
1019
 
1020
+ #: admin/form.php:632 admin/form.php:639
1021
  msgid "Excerpt"
1022
  msgstr ""
1023
 
1024
+ #: admin/form.php:680 admin/form.php:687 templates/dashboard/posts.php:71
1025
  #: templates/dashboard.php:24
1026
  msgid "Featured Image"
1027
  msgstr ""
1028
 
1029
+ #: admin/form.php:714 admin/form.php:720
1030
  msgid "Tags"
1031
  msgstr ""
1032
 
1033
+ #: admin/form.php:748 admin/template-post.php:154
1034
  msgid "Type"
1035
  msgstr ""
1036
 
1037
+ #: admin/form.php:754 admin/template-post.php:159
1038
  msgid "Text Input"
1039
  msgstr ""
1040
 
1041
+ #: admin/form.php:755 admin/template-post.php:160
1042
  msgid "Ajax"
1043
  msgstr ""
1044
 
1045
+ #: admin/form.php:764 admin/template-post.php:165
1046
  msgid "Order By"
1047
  msgstr ""
1048
 
1049
+ #: admin/form.php:768 admin/template-post.php:168
1050
  msgid "Term ID"
1051
  msgstr ""
1052
 
1053
+ #: admin/form.php:769 admin/template-post.php:169
1054
  msgid "Slug"
1055
  msgstr ""
1056
 
1057
+ #: admin/form.php:770 admin/template-post.php:170
1058
  msgid "Count"
1059
  msgstr ""
1060
 
1061
+ #: admin/form.php:771 admin/template-post.php:171
1062
  msgid "Term Group"
1063
  msgstr ""
1064
 
1065
+ #: admin/form.php:780 admin/template-post.php:176
1066
  msgid "Order"
1067
  msgstr ""
1068
 
1069
+ #: admin/form.php:784 admin/template-post.php:178
1070
  msgid "ASC"
1071
  msgstr ""
1072
 
1073
+ #: admin/form.php:785 admin/template-post.php:179
1074
  msgid "DESC"
1075
  msgstr ""
1076
 
1077
+ #: admin/form.php:794 admin/template-post.php:184
1078
  msgid "Selection Type"
1079
  msgstr ""
1080
 
1081
+ #: admin/form.php:797 admin/template-post.php:186
1082
  msgid "Exclude"
1083
  msgstr ""
1084
 
1085
+ #: admin/form.php:798 admin/template-post.php:187
1086
  msgid "Include"
1087
  msgstr ""
1088
 
1089
+ #: admin/form.php:799 admin/template-post.php:188
1090
  msgid "Child of"
1091
  msgstr ""
1092
 
1093
+ #: admin/form.php:808
1094
  msgid "Selection Terms"
1095
  msgstr ""
1096
 
1097
+ #: admin/form.php:812 admin/template-post.php:194
1098
  msgid ""
1099
  "Enter the term IDs as comma separated (without space) to exclude/include in "
1100
  "the form."
1101
  msgstr ""
1102
 
1103
+ #: admin/form.php:820 admin/template-post.php:204
1104
  msgid "This taxonomy is a WooCommerce attribute"
1105
  msgstr ""
1106
 
1107
+ #: admin/form.php:831 admin/template-post.php:216
1108
  msgid "Visible on product page"
1109
  msgstr ""
1110
 
1111
+ #: admin/form.php:879
1112
  msgid "Post Forms must have either Post Title, Post Body or Excerpt field"
1113
  msgstr ""
1114
 
1115
+ #: admin/html/form-settings-display.php:8
1116
+ msgid "Label Position"
1117
+ msgstr ""
1118
+
1119
+ #: admin/html/form-settings-display.php:13
1120
+ msgid "Above Element"
1121
+ msgstr ""
1122
+
1123
+ #: admin/html/form-settings-display.php:14
1124
+ msgid "Left of Element"
1125
+ msgstr ""
1126
+
1127
+ #: admin/html/form-settings-display.php:15
1128
+ msgid "Right of Element"
1129
+ msgstr ""
1130
+
1131
+ #: admin/html/form-settings-display.php:16
1132
+ msgid "Hidden"
1133
+ msgstr ""
1134
+
1135
+ #: admin/html/form-settings-display.php:26
1136
+ msgid "Where the labels of the form should display"
1137
+ msgstr ""
1138
+
1139
+ #: admin/html/form-settings-post-edit.php:4
1140
  #: admin/html/form-settings-post.php:22
1141
  msgid "Post updated successfully"
1142
  msgstr ""
1143
 
1144
+ #: admin/html/form-settings-post-edit.php:7
1145
  msgid "Update"
1146
  msgstr ""
1147
 
1148
+ #: admin/html/form-settings-post-edit.php:13
1149
  msgid "Set Post Status to"
1150
  msgstr ""
1151
 
1152
+ #: admin/html/form-settings-post-edit.php:23
1153
  msgid "No Change"
1154
  msgstr ""
1155
 
1156
+ #: admin/html/form-settings-post-edit.php:30
1157
+ #: admin/html/form-settings-post.php:175 includes/free/form-element.php:373
1158
  msgid "Redirect To"
1159
  msgstr ""
1160
 
1161
+ #: admin/html/form-settings-post-edit.php:35
1162
  #: admin/html/form-settings-post.php:180
1163
  msgid "Newly created post"
1164
  msgstr ""
1165
 
1166
+ #: admin/html/form-settings-post-edit.php:36
1167
+ #: admin/html/form-settings-post.php:181 includes/free/form-element.php:378
1168
  msgid "Same Page"
1169
  msgstr ""
1170
 
1171
+ #: admin/html/form-settings-post-edit.php:37
1172
+ #: admin/html/form-settings-post.php:182 includes/free/form-element.php:379
1173
  msgid "To a page"
1174
  msgstr ""
1175
 
1176
+ #: admin/html/form-settings-post-edit.php:38
1177
+ #: admin/html/form-settings-post.php:183 includes/free/form-element.php:380
1178
  msgid "To a custom URL"
1179
  msgstr ""
1180
 
1181
+ #: admin/html/form-settings-post-edit.php:47
1182
+ #: admin/html/form-settings-post.php:192 includes/free/form-element.php:389
1183
  msgid "After successfull submit, where the page will redirect to"
1184
  msgstr ""
1185
 
1186
+ #: admin/html/form-settings-post-edit.php:53
1187
  msgid "Post Update Message"
1188
  msgstr ""
1189
 
1190
+ #: admin/html/form-settings-post-edit.php:60
1191
+ #: admin/html/form-settings-post.php:205 includes/free/form-element.php:409
1192
  msgid "Page"
1193
  msgstr ""
1194
 
1195
+ #: admin/html/form-settings-post-edit.php:75
1196
+ #: admin/html/form-settings-post.php:220 includes/free/form-element.php:424
1197
  msgid "Custom URL"
1198
  msgstr ""
1199
 
1200
+ #: admin/html/form-settings-post-edit.php:82
1201
  msgid "Subscription Title"
1202
  msgstr ""
1203
 
1204
+ #: admin/html/form-settings-post-edit.php:91
1205
  msgid "Update Post Button text"
1206
  msgstr ""
1207
 
1481
  msgid "Draft"
1482
  msgstr ""
1483
 
1484
+ #: admin/posting.php:66 class/asset-loader.php:51 class/render-form.php:1517
1485
+ #: wpuf.php:447
1486
  msgid "Are you sure?"
1487
  msgstr ""
1488
 
1489
+ #: admin/posting.php:72 class/asset-loader.php:57 wpuf.php:453
1490
  msgid "Allowed Files"
1491
  msgstr ""
1492
 
1493
+ #: admin/posting.php:75 class/asset-loader.php:60 wpuf.php:456
1494
  msgid "Maximum number of files reached!"
1495
  msgstr ""
1496
 
1497
+ #: admin/posting.php:76 class/asset-loader.php:61 wpuf.php:457
1498
  msgid "The file you have uploaded exceeds the file size limit. Please try again."
1499
  msgstr ""
1500
 
1501
+ #: admin/posting.php:77 class/asset-loader.php:62 wpuf.php:458
1502
  msgid "You have uploaded an incorrect file type. Please try again."
1503
  msgstr ""
1504
 
2278
  msgid "Install Now"
2279
  msgstr ""
2280
 
2281
+ #: class/asset-loader.php:31 wpuf.php:378
2282
  msgid "is required"
2283
  msgstr ""
2284
 
2285
+ #: class/asset-loader.php:32 wpuf.php:379
2286
  msgid "does not match"
2287
  msgstr ""
2288
 
2289
+ #: class/asset-loader.php:33 wpuf.php:380
2290
  msgid "is not valid"
2291
  msgstr ""
2292
 
2293
+ #: class/asset-loader.php:45 wpuf.php:441
2294
  msgid "Please fix the errors to proceed"
2295
  msgstr ""
2296
 
2297
+ #: class/asset-loader.php:47 wpuf.php:443
2298
  msgid "Word limit reached"
2299
  msgstr ""
2300
 
2496
  msgid "Please make sure you've published your form."
2497
  msgstr ""
2498
 
2499
+ #: class/render-form.php:1204 includes/free/edit-profile.php:203
2500
  #: templates/dashboard/edit-profile.php:36
2501
  msgid "Strength indicator"
2502
  msgstr ""
2503
 
2504
+ #: class/render-form.php:1266 class/render-form.php:1379
2505
  msgid "-- Select --"
2506
  msgstr ""
2507
 
2508
+ #: class/render-form.php:1321
2509
  msgid "This field is no longer available."
2510
  msgstr ""
2511
 
2667
  msgstr ""
2668
 
2669
  #: includes/free/admin/form-builder/class-wpuf-form-builder-field-settings-free.php:46
2670
+ #: includes/free/form-element.php:471
2671
  msgid "Conditional Logic"
2672
  msgstr ""
2673
 
2731
  msgid "Select a form to insert"
2732
  msgstr ""
2733
 
2734
+ #: includes/free/admin/shortcode-builder.php:9 includes/free/loader.php:88
2735
  msgid "Registration Form"
2736
  msgstr ""
2737
 
2831
  msgid "Password Strength"
2832
  msgstr ""
2833
 
2834
+ #: includes/free/edit-profile.php:227 includes/free/form-element.php:343
2835
  #: templates/dashboard/edit-profile.php:63
2836
  msgid "Update Profile"
2837
  msgstr ""
2960
  msgid "A post has been edited"
2961
  msgstr ""
2962
 
2963
+ #: includes/free/form-element.php:207
2964
  msgid "New Post Notificatoin"
2965
  msgstr ""
2966
 
2967
+ #: includes/free/form-element.php:215 includes/free/form-element.php:252
2968
  msgid "Enable post notification"
2969
  msgstr ""
2970
 
2971
+ #: includes/free/form-element.php:233 includes/free/form-element.php:268
2972
  msgid "Message"
2973
  msgstr ""
2974
 
2975
+ #: includes/free/form-element.php:240
2976
  msgid "Update Post Notificatoin"
2977
  msgstr ""
2978
 
2979
+ #: includes/free/form-element.php:276
2980
  msgid "You may use in to, subject & message:"
2981
  msgstr ""
2982
 
2983
+ #: includes/free/form-element.php:300
2984
  msgid "Toggle All"
2985
  msgstr ""
2986
 
2987
+ #: includes/free/form-element.php:304
2988
  msgid "Click on a form element to add to the editor"
2989
  msgstr ""
2990
 
2991
+ #: includes/free/form-element.php:338
2992
  msgid "Registration successful"
2993
  msgstr ""
2994
 
2995
+ #: includes/free/form-element.php:339
2996
  msgid "Profile updated successfully"
2997
  msgstr ""
2998
 
2999
+ #: includes/free/form-element.php:342
3000
  msgid "Register"
3001
  msgstr ""
3002
 
3003
+ #: includes/free/form-element.php:351
3004
  msgid "Enable Email Verfication"
3005
  msgstr ""
3006
 
3007
+ #: includes/free/form-element.php:359
3008
  msgid "New User Role"
3009
  msgstr ""
3010
 
3011
+ #: includes/free/form-element.php:395
3012
  msgid "Registration success message"
3013
  msgstr ""
3014
 
3015
+ #: includes/free/form-element.php:402
3016
  msgid "Update profile message"
3017
  msgstr ""
3018
 
3019
+ #: includes/free/form-element.php:431
3020
  msgid "Submit Button text"
3021
  msgstr ""
3022
 
3023
+ #: includes/free/form-element.php:438
3024
  msgid "Update Button text"
3025
  msgstr ""
3026
 
3027
+ #: includes/free/loader.php:83 includes/free/loader.php:112
3028
  msgid "Coupons"
3029
  msgstr ""
3030
 
3031
+ #: includes/free/loader.php:92
3032
  msgid ""
3033
  "Registration form builder is a two way form which can be used both for "
3034
  "<strong>user registration</strong> and <strong>profile editing</strong>."
3035
  msgstr ""
3036
 
3037
+ #: includes/free/loader.php:96
3038
  msgid "Users can also register themselves by using a subscription pack."
3039
  msgstr ""
3040
 
3041
+ #: includes/free/loader.php:100 includes/free/loader.php:120
3042
  msgid "This feature is only available in the Pro Version."
3043
  msgstr ""
3044
 
3045
+ #: includes/free/loader.php:104 includes/free/loader.php:124
3046
  msgid "Upgrade to Pro Version"
3047
  msgstr ""
3048
 
3049
+ #: includes/free/loader.php:116
3050
  msgid "Use Coupon codes for subscription for discounts."
3051
  msgstr ""
3052
 
3053
+ #: includes/free/loader.php:149
3054
  msgid "Pro Feature"
3055
  msgstr ""
3056
 
3559
  msgid "Egyptian Pound"
3560
  msgstr ""
3561
 
3562
+ #: wpuf.php:147
3563
  msgid "Your Post Has Been Expired"
3564
  msgstr ""
3565
 
3566
+ #: wpuf.php:585
3567
  msgid "Error: Nonce verification failed"
3568
  msgstr ""
3569
 
readme.txt CHANGED
@@ -3,9 +3,11 @@ Contributors: tareq1988, sk.shaikat, rabbii, wedevs
3
  Donate link: https://tareq.co/donate/
4
  Tags: Forms, registration, profile-builder, login, membership
5
  Requires at least: 4.0
6
- Tested up to: 4.8
7
- Stable tag: 2.5.6
 
8
  License: GPLv2
 
9
 
10
  Frontend post submission, guest post, membership, login, registration and profile builder. The best frontend plugin for WordPress.
11
 
@@ -166,6 +168,13 @@ redirected to the edit page with that post id. Then you'll see the edit post for
166
 
167
  == Changelog ==
168
 
 
 
 
 
 
 
 
169
  = v2.5.6 (28 August, 2017) =
170
 
171
  * [fix] Call subscriptions.js file directly from the js directory. Fix #174
3
  Donate link: https://tareq.co/donate/
4
  Tags: Forms, registration, profile-builder, login, membership
5
  Requires at least: 4.0
6
+ Tested up to: 4.8.1
7
+ Requires PHP: 5.4
8
+ Stable tag: 2.5.7
9
  License: GPLv2
10
+ License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
12
  Frontend post submission, guest post, membership, login, registration and profile builder. The best frontend plugin for WordPress.
13
 
168
 
169
  == Changelog ==
170
 
171
+ = v2.5.7 (11 September, 2017) =
172
+
173
+ * [improved] Added background in form builder div, so notices don’t overlap the form builder
174
+ * [improved] Added filter `wpuf_free_loader` for conditional loading pro elements. Added class instance container to access class instances via <code>wpuf()->dashboard</code> like magic methods.
175
+ * [new] Form label display settings added. Now you can place the form element labels at left/right/above/hide, brings more flexibility.
176
+ * [new] New post notification feature brought back in individual form notification settings. You could only change the new post notification email in the PRO version, now you can change it in the free version, as well as disable the email.
177
+
178
  = v2.5.6 (28 August, 2017) =
179
 
180
  * [fix] Call subscriptions.js file directly from the js directory. Fix #174
wpuf.php CHANGED
@@ -4,13 +4,15 @@ Plugin Name: WP User Frontend
4
  Plugin URI: https://wordpress.org/plugins/wp-user-frontend/
5
  Description: Create, edit, delete, manages your post, pages or custom post types from frontend. Create registration forms, frontend profile and more...
6
  Author: Tareq Hasan
7
- Version: 2.5.6
8
  Author URI: https://tareq.co
9
- License: GPL2
10
- TextDomain: wpuf
 
 
11
  */
12
 
13
- define( 'WPUF_VERSION', '2.5.6' );
14
  define( 'WPUF_FILE', __FILE__ );
15
  define( 'WPUF_ROOT', dirname( __FILE__ ) );
16
  define( 'WPUF_ROOT_URI', plugins_url( '', __FILE__ ) );
@@ -32,6 +34,15 @@ final class WP_User_Frontend {
32
  */
33
  public $integrations = null;
34
 
 
 
 
 
 
 
 
 
 
35
  /**
36
  * The singleton instance
37
  *
@@ -92,6 +103,23 @@ final class WP_User_Frontend {
92
  add_action( 'wp_ajax_wpuf_weforms_install', array( $this, 'install_weforms' ) );
93
  }
94
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  /**
96
  * Schedules the post expiry event
97
  *
@@ -208,32 +236,32 @@ final class WP_User_Frontend {
208
  */
209
  function instantiate() {
210
 
211
- $this->integrations = new WPUF_Integrations();
212
 
213
- new WPUF_Upload();
214
- new WPUF_Paypal();
215
- new WPUF_Admin_Form_Template();
216
 
217
- WPUF_Subscription::init();
218
- WPUF_Frontend_Form_Post::init();
 
219
 
220
  if ( is_admin() ) {
221
 
222
- WPUF_Admin_Settings::init();
223
- new WPUF_Admin_Form_Handler();
224
- new WPUF_Admin_Form();
225
- WPUF_Admin_Posting::init();
226
- new WPUF_Admin_Subscription();
227
- new WPUF_Admin_Installer();
228
- new WPUF_Admin_Promotion();
229
- new WeDevs_Insights( 'wp-user-frontend', 'WP User Frontend', __FILE__ );
230
- new WeForms_Upsell( 'wpuf' );
231
 
232
  } else {
233
 
234
- new WPUF_Frontend_Dashboard();
235
- new WPUF_Payment();
236
- new WPUF_Frontend_Account();
237
  }
238
  }
239
 
@@ -308,7 +336,10 @@ final class WP_User_Frontend {
308
  if ( $has_pro ) {
309
  $this->is_pro = true;
310
  } else {
 
311
  include dirname( __FILE__ ) . '/includes/free/loader.php';
 
 
312
  }
313
  }
314
 
4
  Plugin URI: https://wordpress.org/plugins/wp-user-frontend/
5
  Description: Create, edit, delete, manages your post, pages or custom post types from frontend. Create registration forms, frontend profile and more...
6
  Author: Tareq Hasan
7
+ Version: 2.5.7
8
  Author URI: https://tareq.co
9
+ License: GPL2 or later
10
+ License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
+ Text Domain: wpuf
12
+ Domain Path: /languages
13
  */
14
 
15
+ define( 'WPUF_VERSION', '2.5.7' );
16
  define( 'WPUF_FILE', __FILE__ );
17
  define( 'WPUF_ROOT', dirname( __FILE__ ) );
18
  define( 'WPUF_ROOT_URI', plugins_url( '', __FILE__ ) );
34
  */
35
  public $integrations = null;
36
 
37
+ /**
38
+ * Holds various class instances
39
+ *
40
+ * @since 2.5.7
41
+ *
42
+ * @var array
43
+ */
44
+ private $container = [];
45
+
46
  /**
47
  * The singleton instance
48
  *
103
  add_action( 'wp_ajax_wpuf_weforms_install', array( $this, 'install_weforms' ) );
104
  }
105
 
106
+ /**
107
+ * Magic getter to bypass referencing plugin.
108
+ *
109
+ * @since 2.5.7
110
+ *
111
+ * @param string $prop
112
+ *
113
+ * @return mixed
114
+ */
115
+ public function __get( $prop ) {
116
+ if ( array_key_exists( $prop, $this->container ) ) {
117
+ return $this->container[ $prop ];
118
+ }
119
+
120
+ return $this->{$prop};
121
+ }
122
+
123
  /**
124
  * Schedules the post expiry event
125
  *
236
  */
237
  function instantiate() {
238
 
239
+ $this->integrations = new WPUF_Integrations();
240
 
241
+ $this->container['upload'] = new WPUF_Upload();
242
+ $this->container['paypal'] = new WPUF_Paypal();
243
+ $this->container['form_template'] = new WPUF_Admin_Form_Template();
244
 
245
+ $this->container['subscription'] = WPUF_Subscription::init();
246
+ $this->container['frontend_post'] = WPUF_Frontend_Form_Post::init();
247
+ $this->container['insights'] = new WeDevs_Insights( 'wp-user-frontend', 'WP User Frontend', __FILE__ );
248
 
249
  if ( is_admin() ) {
250
 
251
+ $this->container['settings'] = WPUF_Admin_Settings::init();
252
+ $this->container['form_handler'] = new WPUF_Admin_Form_Handler();
253
+ $this->container['admin_form'] = new WPUF_Admin_Form();
254
+ $this->container['admin_posting'] = WPUF_Admin_Posting::init();
255
+ $this->container['admin_subscription'] = new WPUF_Admin_Subscription();
256
+ $this->container['admin_installer'] = new WPUF_Admin_Installer();
257
+ $this->container['admin_promotion'] = new WPUF_Admin_Promotion();
258
+ $this->container['upsell'] = new WeForms_Upsell( 'wpuf' );
 
259
 
260
  } else {
261
 
262
+ $this->container['dashboard'] = new WPUF_Frontend_Dashboard();
263
+ $this->container['payment'] = new WPUF_Payment();
264
+ $this->container['account'] = new WPUF_Frontend_Account();
265
  }
266
  }
267
 
336
  if ( $has_pro ) {
337
  $this->is_pro = true;
338
  } else {
339
+
340
  include dirname( __FILE__ ) . '/includes/free/loader.php';
341
+
342
+ $this->container['free_loader'] = new WPUF_Free_Loader();
343
  }
344
  }
345