User registration & user profile – Profile Builder - Version 3.4.6

Version Description

  • Misc: Added a wrapper to the content restriction message
  • Misc: Added individual classes to the register and lost password links from the login form
Download this release

Release Info

Developer raster02
Plugin Icon 128x128 User registration & user profile – Profile Builder
Version 3.4.6
Comparing to
See all releases

Code changes from version 3.4.5 to 3.4.6

admin/advanced-settings/includes/views/view-forms.php CHANGED
@@ -351,6 +351,26 @@
351
  </td>
352
  </tr>
353
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
354
  </table>
355
 
356
  <?php submit_button( __( 'Save Changes', 'profile-builder' ) ); ?>
351
  </td>
352
  </tr>
353
 
354
+ <?php if( wppb_conditional_fields_exists() ): ?>
355
+ <tr>
356
+ <th scope="row"><?php _e( 'Use ajax on conditional fields:', 'profile-builder' );?></th>
357
+
358
+ <td>
359
+ <label><input type="checkbox" name="wppb_toolbox_forms_settings[ajax-conditional-logic]"<?php echo ( ( isset( $settings['ajax-conditional-logic'] ) && ( $settings['ajax-conditional-logic'] == 'yes' ) ) ? ' checked' : '' );?> value="yes">
360
+ <?php _e( 'Yes', 'profile-builder' ); ?>
361
+ </label>
362
+ <ul>
363
+ <li class="description">
364
+ <?php _e( 'For large conditional forms.', 'profile-builder' ); ?>
365
+ </li>
366
+ <li class="description">
367
+ <?php _e( 'Select "Yes" for improved page performance.', 'profile-builder' ); ?>
368
+ </li>
369
+ </ul>
370
+ </td>
371
+ </tr>
372
+ <?php endif; ?>
373
+
374
  </table>
375
 
376
  <?php submit_button( __( 'Save Changes', 'profile-builder' ) ); ?>
admin/general-settings.php CHANGED
@@ -330,22 +330,6 @@ function wppb_general_settings_content() {
330
  </select>
331
  </td>
332
  </tr>
333
- <?php if( wppb_conditional_fields_exists() && apply_filters( 'wppb_allow_conditional_fields_ajax', false ) ): ?>
334
- <tr>
335
- <th scope="row">
336
- <?php _e( 'Use ajax on conditional fields:', 'profile-builder' );?>
337
- </th>
338
- <td>
339
- <select name="wppb_general_settings[conditional_fields_ajax]" class="wppb-select" id="wppb_settings_conditional_fields_ajax" onchange="wppb_display_page_select(this.value)">
340
- <option value="no" <?php if ( !isset($wppb_generalSettings['conditional_fields_ajax']) || $wppb_generalSettings['conditional_fields_ajax'] === 'no' ) echo 'selected'; ?>><?php _e( 'No', 'profile-builder' ); ?></option>
341
- <option value="yes" <?php if ( isset($wppb_generalSettings['conditional_fields_ajax']) && $wppb_generalSettings['conditional_fields_ajax'] === 'yes' ) echo 'selected'; ?>><?php _e( 'Yes', 'profile-builder' ); ?></option>
342
- </select>
343
- <ul>
344
- <li class="description"><?php _e( 'For large conditional forms select "Yes" for an improved page performance', 'profile-builder' ); ?> </li>
345
- </ul>
346
- </td>
347
- </tr>
348
- <?php endif; ?>
349
 
350
  <?php do_action( 'wppb_extra_general_settings', $wppb_generalSettings ); ?>
351
  </table>
330
  </select>
331
  </td>
332
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
333
 
334
  <?php do_action( 'wppb_extra_general_settings', $wppb_generalSettings ); ?>
335
  </table>
features/content-restriction/content-restriction-functions.php CHANGED
@@ -49,6 +49,8 @@ function wppb_get_restriction_content_message( $message_type = '', $post_id = 0
49
  $wppb_content_restriction_message = apply_filters( 'wppb_get_restriction_content_message_default', $wppb_content_restriction_message, $message_type, $wppb_content_restriction_settings );
50
  }
51
 
 
 
52
  $custom_message_enabled = get_post_meta( $post_id, 'wppb-content-restrict-messages-enabled', true );
53
 
54
  if( ! empty( $post_id ) && ! empty( $custom_message_enabled ) ) {
49
  $wppb_content_restriction_message = apply_filters( 'wppb_get_restriction_content_message_default', $wppb_content_restriction_message, $message_type, $wppb_content_restriction_settings );
50
  }
51
 
52
+ $wppb_content_restriction_message = '<span class="wppb-content-restriction-message">' . $wppb_content_restriction_message . '</span>';
53
+
54
  $custom_message_enabled = get_post_meta( $post_id, 'wppb-content-restrict-messages-enabled', true );
55
 
56
  if( ! empty( $post_id ) && ! empty( $custom_message_enabled ) ) {
front-end/login.php CHANGED
@@ -446,13 +446,13 @@ function wppb_front_end_login( $atts ){
446
  $i = 0;
447
  if (!empty($register_url)) {
448
  if ( wppb_check_missing_http( $register_url ) ) $register_url = "http://" . $register_url;
449
- $login_form .= '<a href="' . esc_url($register_url) . '">'. apply_filters('wppb_login_register_text', __('Register','profile-builder')) .'</a>';
450
  $i++;
451
  }
452
  if (!empty($lostpassword_url)) {
453
  if ($i != 0) $login_form .= ' | ';
454
  if ( wppb_check_missing_http( $lostpassword_url ) ) $lostpassword_url = "http://" . $lostpassword_url;
455
- $login_form .= '<a href="'. esc_url($lostpassword_url) .'">'. apply_filters('wppb_login_lostpass_text', __('Lost your password?','profile-builder')) .'</a>';
456
  }
457
  $login_form .= '</p>';
458
  }
446
  $i = 0;
447
  if (!empty($register_url)) {
448
  if ( wppb_check_missing_http( $register_url ) ) $register_url = "http://" . $register_url;
449
+ $login_form .= '<a class="login-register" href="' . esc_url($register_url) . '">'. apply_filters('wppb_login_register_text', __('Register','profile-builder')) .'</a>';
450
  $i++;
451
  }
452
  if (!empty($lostpassword_url)) {
453
  if ($i != 0) $login_form .= ' | ';
454
  if ( wppb_check_missing_http( $lostpassword_url ) ) $lostpassword_url = "http://" . $lostpassword_url;
455
+ $login_form .= '<a class="login-lost-password" href="'. esc_url($lostpassword_url) .'">'. apply_filters('wppb_login_lostpass_text', __('Lost your password?','profile-builder')) .'</a>';
456
  }
457
  $login_form .= '</p>';
458
  }
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Profile Builder
4
  Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
5
  Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
- Version: 3.4.5
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
@@ -70,7 +70,7 @@ function wppb_free_plugin_init() {
70
  *
71
  *
72
  */
73
- define('PROFILE_BUILDER_VERSION', '3.4.5' );
74
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
75
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
76
  define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
3
  Plugin Name: Profile Builder
4
  Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
5
  Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
+ Version: 3.4.6
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
70
  *
71
  *
72
  */
73
+ define('PROFILE_BUILDER_VERSION', '3.4.6' );
74
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
75
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
76
  define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
4
  Tags: user registration, user profile, user registration form, user fields, registration, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
5
  Requires at least: 3.1
6
  Tested up to: 5.7
7
- Stable tag: 3.4.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -169,6 +169,10 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
169
  15. Edit or Add New User Role
170
 
171
  == Changelog ==
 
 
 
 
172
  = 3.4.5 =
173
  * Fix: Error triggered with Elementor coming from the latest update
174
 
4
  Tags: user registration, user profile, user registration form, user fields, registration, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
5
  Requires at least: 3.1
6
  Tested up to: 5.7
7
+ Stable tag: 3.4.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
169
  15. Edit or Add New User Role
170
 
171
  == Changelog ==
172
+ = 3.4.6 =
173
+ * Misc: Added a wrapper to the content restriction message
174
+ * Misc: Added individual classes to the register and lost password links from the login form
175
+
176
  = 3.4.5 =
177
  * Fix: Error triggered with Elementor coming from the latest update
178
 
translation/profile-builder.catalog.php CHANGED
@@ -513,8 +513,6 @@
513
  <?php __("Enter the minimum characters the password should have. Leave empty for no minimum limit", "profile-builder"); ?>
514
  <?php __("Minimum Password Strength:", "profile-builder"); ?>
515
  <?php __("Disabled", "profile-builder"); ?>
516
- <?php __("Use ajax on conditional fields:", "profile-builder"); ?>
517
- <?php __("For large conditional forms select \"Yes\" for an improved page performance", "profile-builder"); ?>
518
  <?php __("Form Fields", "profile-builder"); ?>
519
  <?php __("Manage Form Fields", "profile-builder"); ?>
520
  <?php __("Choose one of the supported field types", "profile-builder"); ?>
@@ -1231,6 +1229,7 @@
1231
  <?php __("the ID of the user", "profile-builder"); ?>
1232
  <?php __("the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces.", "profile-builder"); ?>
1233
  <?php __("the URL of the previously visited page", "profile-builder"); ?>
 
1234
  <?php __("You can't add duplicate redirects!", "profile-builder"); ?>
1235
  <?php __("Admin Email Customizer", "profile-builder"); ?>
1236
  <?php __("Admin Email Customizer Settings", "profile-builder"); ?>
@@ -1744,6 +1743,9 @@
1744
  <?php __("Disable automatic scrolling after submit", "profile-builder"); ?>
1745
  <?php __("By default, after each form submission the page will automatically scroll to the form message.", "profile-builder"); ?>
1746
  <?php __("If you check this option, automatic scrolling will be disabled.", "profile-builder"); ?>
 
 
 
1747
  <?php __("Enable Compare shortcode", "profile-builder"); ?>
1748
  <?php __("You can read more info about this shortcode by following <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/developers-knowledge-base/shortcodes/compare-shortcode/\">this url</a>.", "profile-builder"); ?>
1749
  <?php __("Enable Usermeta shortcode", "profile-builder"); ?>
513
  <?php __("Enter the minimum characters the password should have. Leave empty for no minimum limit", "profile-builder"); ?>
514
  <?php __("Minimum Password Strength:", "profile-builder"); ?>
515
  <?php __("Disabled", "profile-builder"); ?>
 
 
516
  <?php __("Form Fields", "profile-builder"); ?>
517
  <?php __("Manage Form Fields", "profile-builder"); ?>
518
  <?php __("Choose one of the supported field types", "profile-builder"); ?>
1229
  <?php __("the ID of the user", "profile-builder"); ?>
1230
  <?php __("the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces.", "profile-builder"); ?>
1231
  <?php __("the URL of the previously visited page", "profile-builder"); ?>
1232
+ <?php __("the default URL set by WordPress after login", "profile-builder"); ?>
1233
  <?php __("You can't add duplicate redirects!", "profile-builder"); ?>
1234
  <?php __("Admin Email Customizer", "profile-builder"); ?>
1235
  <?php __("Admin Email Customizer Settings", "profile-builder"); ?>
1743
  <?php __("Disable automatic scrolling after submit", "profile-builder"); ?>
1744
  <?php __("By default, after each form submission the page will automatically scroll to the form message.", "profile-builder"); ?>
1745
  <?php __("If you check this option, automatic scrolling will be disabled.", "profile-builder"); ?>
1746
+ <?php __("Use ajax on conditional fields:", "profile-builder"); ?>
1747
+ <?php __("For large conditional forms.", "profile-builder"); ?>
1748
+ <?php __("Select \"Yes\" for improved page performance.", "profile-builder"); ?>
1749
  <?php __("Enable Compare shortcode", "profile-builder"); ?>
1750
  <?php __("You can read more info about this shortcode by following <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/developers-knowledge-base/shortcodes/compare-shortcode/\">this url</a>.", "profile-builder"); ?>
1751
  <?php __("Enable Usermeta shortcode", "profile-builder"); ?>
translation/profile-builder.pot CHANGED
@@ -697,11 +697,11 @@ msgstr ""
697
  msgid "Display Social Connect buttons:"
698
  msgstr ""
699
 
700
- #: ../pb-add-on-social-connect/index.php:326, admin/general-settings.php:143, admin/general-settings.php:156, admin/general-settings.php:171, admin/general-settings.php:220, admin/general-settings.php:267, admin/general-settings.php:341, admin/manage-fields.php:190, admin/private-website.php:70, admin/private-website.php:137, admin/private-website.php:150, add-ons/multiple-forms/edit-profile-forms.php:206, add-ons/multiple-forms/register-forms.php:229, add-ons/multiple-forms/register-forms.php:230, add-ons/user-listing/userlisting.php:2451, features/content-restriction/content-restriction.php:89, admin/advanced-settings/includes/forms/placeholder-labels.php:135, admin/advanced-settings/includes/views/view-admin.php:18, admin/advanced-settings/includes/views/view-admin.php:34, admin/advanced-settings/includes/views/view-admin.php:50, admin/advanced-settings/includes/views/view-admin.php:69, admin/advanced-settings/includes/views/view-fields.php:18, admin/advanced-settings/includes/views/view-fields.php:66, admin/advanced-settings/includes/views/view-fields.php:181, admin/advanced-settings/includes/views/view-fields.php:197, admin/advanced-settings/includes/views/view-fields.php:217, admin/advanced-settings/includes/views/view-fields.php:240, admin/advanced-settings/includes/views/view-fields.php:261, admin/advanced-settings/includes/views/view-fields.php:279, admin/advanced-settings/includes/views/view-forms.php:19, admin/advanced-settings/includes/views/view-forms.php:148, admin/advanced-settings/includes/views/view-forms.php:165, admin/advanced-settings/includes/views/view-forms.php:180, admin/advanced-settings/includes/views/view-forms.php:200, admin/advanced-settings/includes/views/view-forms.php:217, admin/advanced-settings/includes/views/view-forms.php:255, admin/advanced-settings/includes/views/view-forms.php:276, admin/advanced-settings/includes/views/view-forms.php:296, admin/advanced-settings/includes/views/view-forms.php:318, admin/advanced-settings/includes/views/view-forms.php:340, admin/advanced-settings/includes/views/view-shortcodes.php:16, admin/advanced-settings/includes/views/view-shortcodes.php:32, admin/advanced-settings/includes/views/view-shortcodes.php:48, admin/advanced-settings/includes/views/view-shortcodes.php:64, admin/advanced-settings/includes/views/view-userlisting.php:53, admin/advanced-settings/includes/views/view-userlisting.php:75
701
  msgid "Yes"
702
  msgstr ""
703
 
704
- #: ../pb-add-on-social-connect/index.php:327, admin/general-settings.php:157, admin/general-settings.php:172, admin/general-settings.php:221, admin/general-settings.php:266, admin/general-settings.php:340, admin/private-website.php:69, admin/private-website.php:136, admin/private-website.php:151, add-ons/multiple-forms/edit-profile-forms.php:206, add-ons/multiple-forms/register-forms.php:229, add-ons/multiple-forms/register-forms.php:230, features/content-restriction/content-restriction.php:88, admin/advanced-settings/includes/forms/placeholder-labels.php:136
705
  msgid "No"
706
  msgstr ""
707
 
@@ -741,7 +741,7 @@ msgstr ""
741
  msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
742
  msgstr ""
743
 
744
- #: ../pb-add-on-social-connect/index.php:392, features/admin-approval/admin-approval.php:193
745
  msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
746
  msgstr ""
747
 
@@ -2074,14 +2074,6 @@ msgstr ""
2074
  msgid "Disabled"
2075
  msgstr ""
2076
 
2077
- #: admin/general-settings.php:336
2078
- msgid "Use ajax on conditional fields:"
2079
- msgstr ""
2080
-
2081
- #: admin/general-settings.php:344
2082
- msgid "For large conditional forms select \"Yes\" for an improved page performance"
2083
- msgstr ""
2084
-
2085
  #: admin/manage-fields.php:18
2086
  msgid "Form Fields"
2087
  msgstr ""
@@ -4398,7 +4390,7 @@ msgstr ""
4398
  msgid "Disable the WordPress REST-API for non-logged in users when Private Website is enabled"
4399
  msgstr ""
4400
 
4401
- #: admin/private-website.php:162, features/functions.php:948, features/content-restriction/content-restriction.php:162, assets/lib/class-mustache-templates/class-mustache-templates.php:392, assets/lib/wck-api/wordpress-creation-kit.php:405, admin/advanced-settings/includes/views/view-admin.php:101, admin/advanced-settings/includes/views/view-fields.php:293, admin/advanced-settings/includes/views/view-forms.php:356, admin/advanced-settings/includes/views/view-shortcodes.php:77, admin/advanced-settings/includes/views/view-userlisting.php:91
4402
  msgid "Save Changes"
4403
  msgstr ""
4404
 
@@ -4986,7 +4978,11 @@ msgstr ""
4986
  msgid "the URL of the previously visited page"
4987
  msgstr ""
4988
 
4989
- #: add-ons/custom-redirects/custom_redirects_admin.php:357, add-ons/custom-redirects/custom_redirects_admin.php:351, add-ons/custom-redirects/custom_redirects_admin.php:345
 
 
 
 
4990
  msgid "You can't add duplicate redirects!"
4991
  msgstr ""
4992
 
@@ -5968,15 +5964,15 @@ msgstr ""
5968
  msgid "Do you want to"
5969
  msgstr ""
5970
 
5971
- #: features/admin-approval/admin-approval.php:64, features/admin-approval/admin-approval.php:112
5972
  msgid "Your session has expired! Please refresh the page and try again."
5973
  msgstr ""
5974
 
5975
- #: features/admin-approval/admin-approval.php:101, features/admin-approval/admin-approval.php:147, features/email-confirmation/email-confirmation.php:134
5976
  msgid "You either don't have permission for that action or there was an error!"
5977
  msgstr ""
5978
 
5979
- #: features/admin-approval/admin-approval.php:96
5980
  msgid "User successfully deleted!"
5981
  msgstr ""
5982
 
@@ -5984,67 +5980,67 @@ msgstr ""
5984
  msgid "User successfully unapproved!"
5985
  msgstr ""
5986
 
5987
- #: features/admin-approval/admin-approval.php:80, features/admin-approval/admin-approval.php:356
5988
  msgid "User successfully approved!"
5989
  msgstr ""
5990
 
5991
- #: features/admin-approval/admin-approval.php:143
5992
  msgid "Users successfully deleted!"
5993
  msgstr ""
5994
 
5995
- #: features/admin-approval/admin-approval.php:135
5996
  msgid "Users successfully unapproved!"
5997
  msgstr ""
5998
 
5999
- #: features/admin-approval/admin-approval.php:125
6000
  msgid "Users successfully approved!"
6001
  msgstr ""
6002
 
6003
- #: features/admin-approval/admin-approval.php:171
6004
  msgid "Your account on %1$s has been unapproved!"
6005
  msgstr ""
6006
 
6007
- #: features/admin-approval/admin-approval.php:172, features/admin-approval/admin-approval.php:175
6008
  msgid "unapproved"
6009
  msgstr ""
6010
 
6011
- #: features/admin-approval/admin-approval.php:174
6012
  msgid "An administrator has just unapproved your account on %1$s (%2$s)."
6013
  msgstr ""
6014
 
6015
- #: features/admin-approval/admin-approval.php:163
6016
  msgid "Your account on %1$s has been approved!"
6017
  msgstr ""
6018
 
6019
- #: features/admin-approval/admin-approval.php:164, features/admin-approval/admin-approval.php:167
6020
  msgid "approved"
6021
  msgstr ""
6022
 
6023
- #: features/admin-approval/admin-approval.php:166
6024
  msgid "An administrator has just approved your account on %1$s (%2$s)."
6025
  msgstr ""
6026
 
6027
- #: features/admin-approval/admin-approval.php:205
6028
  msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
6029
  msgstr ""
6030
 
6031
- #: features/admin-approval/admin-approval.php:240
6032
  msgid "Your account has been successfully created!"
6033
  msgstr ""
6034
 
6035
- #: features/admin-approval/admin-approval.php:314
6036
  msgid "Something went wrong!"
6037
  msgstr ""
6038
 
6039
- #: features/admin-approval/admin-approval.php:310
6040
  msgid "User not approved!"
6041
  msgstr ""
6042
 
6043
- #: features/admin-approval/admin-approval.php:295
6044
  msgid "Do you wish to approve the registration?"
6045
  msgstr ""
6046
 
6047
- #: features/admin-approval/admin-approval.php:335
6048
  msgid "The approval link is not valid! Please <a href=\"%s\"> log in </a> to approve the user manually. "
6049
  msgstr ""
6050
 
@@ -7094,6 +7090,18 @@ msgstr ""
7094
  msgid "If you check this option, automatic scrolling will be disabled."
7095
  msgstr ""
7096
 
 
 
 
 
 
 
 
 
 
 
 
 
7097
  #: admin/advanced-settings/includes/views/view-shortcodes.php:12
7098
  msgid "Enable Compare shortcode"
7099
  msgstr ""
697
  msgid "Display Social Connect buttons:"
698
  msgstr ""
699
 
700
+ #: ../pb-add-on-social-connect/index.php:326, admin/general-settings.php:143, admin/general-settings.php:156, admin/general-settings.php:171, admin/general-settings.php:220, admin/general-settings.php:267, admin/manage-fields.php:190, admin/private-website.php:70, admin/private-website.php:137, admin/private-website.php:150, add-ons/multiple-forms/edit-profile-forms.php:206, add-ons/multiple-forms/register-forms.php:229, add-ons/multiple-forms/register-forms.php:230, add-ons/user-listing/userlisting.php:2451, features/content-restriction/content-restriction.php:89, admin/advanced-settings/includes/forms/placeholder-labels.php:135, admin/advanced-settings/includes/views/view-admin.php:18, admin/advanced-settings/includes/views/view-admin.php:34, admin/advanced-settings/includes/views/view-admin.php:50, admin/advanced-settings/includes/views/view-admin.php:69, admin/advanced-settings/includes/views/view-fields.php:18, admin/advanced-settings/includes/views/view-fields.php:66, admin/advanced-settings/includes/views/view-fields.php:181, admin/advanced-settings/includes/views/view-fields.php:197, admin/advanced-settings/includes/views/view-fields.php:217, admin/advanced-settings/includes/views/view-fields.php:240, admin/advanced-settings/includes/views/view-fields.php:261, admin/advanced-settings/includes/views/view-fields.php:279, admin/advanced-settings/includes/views/view-forms.php:19, admin/advanced-settings/includes/views/view-forms.php:148, admin/advanced-settings/includes/views/view-forms.php:165, admin/advanced-settings/includes/views/view-forms.php:180, admin/advanced-settings/includes/views/view-forms.php:200, admin/advanced-settings/includes/views/view-forms.php:217, admin/advanced-settings/includes/views/view-forms.php:255, admin/advanced-settings/includes/views/view-forms.php:276, admin/advanced-settings/includes/views/view-forms.php:296, admin/advanced-settings/includes/views/view-forms.php:318, admin/advanced-settings/includes/views/view-forms.php:340, admin/advanced-settings/includes/views/view-forms.php:360, admin/advanced-settings/includes/views/view-shortcodes.php:16, admin/advanced-settings/includes/views/view-shortcodes.php:32, admin/advanced-settings/includes/views/view-shortcodes.php:48, admin/advanced-settings/includes/views/view-shortcodes.php:64, admin/advanced-settings/includes/views/view-userlisting.php:53, admin/advanced-settings/includes/views/view-userlisting.php:75
701
  msgid "Yes"
702
  msgstr ""
703
 
704
+ #: ../pb-add-on-social-connect/index.php:327, admin/general-settings.php:157, admin/general-settings.php:172, admin/general-settings.php:221, admin/general-settings.php:266, admin/private-website.php:69, admin/private-website.php:136, admin/private-website.php:151, add-ons/multiple-forms/edit-profile-forms.php:206, add-ons/multiple-forms/register-forms.php:229, add-ons/multiple-forms/register-forms.php:230, features/content-restriction/content-restriction.php:88, admin/advanced-settings/includes/forms/placeholder-labels.php:136
705
  msgid "No"
706
  msgstr ""
707
 
741
  msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
742
  msgstr ""
743
 
744
+ #: ../pb-add-on-social-connect/index.php:392, features/admin-approval/admin-approval.php:194
745
  msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
746
  msgstr ""
747
 
2074
  msgid "Disabled"
2075
  msgstr ""
2076
 
 
 
 
 
 
 
 
 
2077
  #: admin/manage-fields.php:18
2078
  msgid "Form Fields"
2079
  msgstr ""
4390
  msgid "Disable the WordPress REST-API for non-logged in users when Private Website is enabled"
4391
  msgstr ""
4392
 
4393
+ #: admin/private-website.php:162, features/functions.php:948, features/content-restriction/content-restriction.php:162, assets/lib/class-mustache-templates/class-mustache-templates.php:392, assets/lib/wck-api/wordpress-creation-kit.php:405, admin/advanced-settings/includes/views/view-admin.php:101, admin/advanced-settings/includes/views/view-fields.php:293, admin/advanced-settings/includes/views/view-forms.php:376, admin/advanced-settings/includes/views/view-shortcodes.php:77, admin/advanced-settings/includes/views/view-userlisting.php:91
4394
  msgid "Save Changes"
4395
  msgstr ""
4396
 
4978
  msgid "the URL of the previously visited page"
4979
  msgstr ""
4980
 
4981
+ #: add-ons/custom-redirects/custom_redirects_admin.php:263
4982
+ msgid "the default URL set by WordPress after login"
4983
+ msgstr ""
4984
+
4985
+ #: add-ons/custom-redirects/custom_redirects_admin.php:358, add-ons/custom-redirects/custom_redirects_admin.php:352, add-ons/custom-redirects/custom_redirects_admin.php:346
4986
  msgid "You can't add duplicate redirects!"
4987
  msgstr ""
4988
 
5964
  msgid "Do you want to"
5965
  msgstr ""
5966
 
5967
+ #: features/admin-approval/admin-approval.php:64, features/admin-approval/admin-approval.php:113
5968
  msgid "Your session has expired! Please refresh the page and try again."
5969
  msgstr ""
5970
 
5971
+ #: features/admin-approval/admin-approval.php:102, features/admin-approval/admin-approval.php:148, features/email-confirmation/email-confirmation.php:134
5972
  msgid "You either don't have permission for that action or there was an error!"
5973
  msgstr ""
5974
 
5975
+ #: features/admin-approval/admin-approval.php:97
5976
  msgid "User successfully deleted!"
5977
  msgstr ""
5978
 
5980
  msgid "User successfully unapproved!"
5981
  msgstr ""
5982
 
5983
+ #: features/admin-approval/admin-approval.php:80, features/admin-approval/admin-approval.php:357
5984
  msgid "User successfully approved!"
5985
  msgstr ""
5986
 
5987
+ #: features/admin-approval/admin-approval.php:144
5988
  msgid "Users successfully deleted!"
5989
  msgstr ""
5990
 
5991
+ #: features/admin-approval/admin-approval.php:136
5992
  msgid "Users successfully unapproved!"
5993
  msgstr ""
5994
 
5995
+ #: features/admin-approval/admin-approval.php:126
5996
  msgid "Users successfully approved!"
5997
  msgstr ""
5998
 
5999
+ #: features/admin-approval/admin-approval.php:172
6000
  msgid "Your account on %1$s has been unapproved!"
6001
  msgstr ""
6002
 
6003
+ #: features/admin-approval/admin-approval.php:173, features/admin-approval/admin-approval.php:176
6004
  msgid "unapproved"
6005
  msgstr ""
6006
 
6007
+ #: features/admin-approval/admin-approval.php:175
6008
  msgid "An administrator has just unapproved your account on %1$s (%2$s)."
6009
  msgstr ""
6010
 
6011
+ #: features/admin-approval/admin-approval.php:164
6012
  msgid "Your account on %1$s has been approved!"
6013
  msgstr ""
6014
 
6015
+ #: features/admin-approval/admin-approval.php:165, features/admin-approval/admin-approval.php:168
6016
  msgid "approved"
6017
  msgstr ""
6018
 
6019
+ #: features/admin-approval/admin-approval.php:167
6020
  msgid "An administrator has just approved your account on %1$s (%2$s)."
6021
  msgstr ""
6022
 
6023
+ #: features/admin-approval/admin-approval.php:206
6024
  msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
6025
  msgstr ""
6026
 
6027
+ #: features/admin-approval/admin-approval.php:241
6028
  msgid "Your account has been successfully created!"
6029
  msgstr ""
6030
 
6031
+ #: features/admin-approval/admin-approval.php:315
6032
  msgid "Something went wrong!"
6033
  msgstr ""
6034
 
6035
+ #: features/admin-approval/admin-approval.php:311
6036
  msgid "User not approved!"
6037
  msgstr ""
6038
 
6039
+ #: features/admin-approval/admin-approval.php:296
6040
  msgid "Do you wish to approve the registration?"
6041
  msgstr ""
6042
 
6043
+ #: features/admin-approval/admin-approval.php:336
6044
  msgid "The approval link is not valid! Please <a href=\"%s\"> log in </a> to approve the user manually. "
6045
  msgstr ""
6046
 
7090
  msgid "If you check this option, automatic scrolling will be disabled."
7091
  msgstr ""
7092
 
7093
+ #: admin/advanced-settings/includes/views/view-forms.php:356
7094
+ msgid "Use ajax on conditional fields:"
7095
+ msgstr ""
7096
+
7097
+ #: admin/advanced-settings/includes/views/view-forms.php:364
7098
+ msgid "For large conditional forms."
7099
+ msgstr ""
7100
+
7101
+ #: admin/advanced-settings/includes/views/view-forms.php:367
7102
+ msgid "Select \"Yes\" for improved page performance."
7103
+ msgstr ""
7104
+
7105
  #: admin/advanced-settings/includes/views/view-shortcodes.php:12
7106
  msgid "Enable Compare shortcode"
7107
  msgstr ""