User registration & user profile – Profile Builder - Version 2.8.6

Version Description

  • Implemented a tabbed settings interface
  • Content restriction activated setting is now in the Content Restriction tab
  • Fixed a fatal error that occurred on some instances on the Settings page
  • Fixed typo in query for existing pages in setup process
Download this release

Release Info

Developer madalin.ungureanu
Plugin Icon 128x128 User registration & user profile – Profile Builder
Version 2.8.6
Comparing to
See all releases

Code changes from version 2.8.5 to 2.8.6

admin/admin-bar.php CHANGED
@@ -45,7 +45,10 @@ function wppb_show_hide_admin_bar_content() {
45
  <div class="wrap wppb-wrap wppb-admin-bar">
46
 
47
  <h2><?php _e( 'Admin Bar Settings', 'profile-builder' );?></h2>
48
- <p><?php _e( 'Choose which user roles view the admin bar in the front-end of the website.', 'profile-builder' ); ?>
 
 
 
49
  <form method="post" action="options.php#show-hide-admin-bar">
50
  <?php
51
  $admin_bar_settings = get_option( 'wppb_display_admin_settings' );
45
  <div class="wrap wppb-wrap wppb-admin-bar">
46
 
47
  <h2><?php _e( 'Admin Bar Settings', 'profile-builder' );?></h2>
48
+
49
+ <?php wppb_generate_settings_tabs() ?>
50
+
51
+ <p class="description"><?php _e( 'Choose which user roles view the admin bar in the front-end of the website.', 'profile-builder' ); ?>
52
  <form method="post" action="options.php#show-hide-admin-bar">
53
  <?php
54
  $admin_bar_settings = get_option( 'wppb_display_admin_settings' );
admin/basic-info.php CHANGED
@@ -32,7 +32,7 @@ function wppb_basic_info_content() {
32
  <hr />
33
  <?php
34
  $wppb_pages_created = get_option( 'wppb_pages_created' );
35
- $shortcode_pages_query = new WP_Query( array( 'post_type' => 'page', 's' => '[wppsb-' ) );
36
  if( empty( $wppb_pages_created ) && !$shortcode_pages_query->have_posts() ){
37
  ?>
38
  <div class="wppb-auto-form-creation wppb-2-1-col">
32
  <hr />
33
  <?php
34
  $wppb_pages_created = get_option( 'wppb_pages_created' );
35
+ $shortcode_pages_query = new WP_Query( array( 'post_type' => 'page', 's' => '[wppb-' ) );
36
  if( empty( $wppb_pages_created ) && !$shortcode_pages_query->have_posts() ){
37
  ?>
38
  <div class="wppb-auto-form-creation wppb-2-1-col">
admin/general-settings.php CHANGED
@@ -1,4 +1,69 @@
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  /**
3
  * Function that creates the "General Settings" submenu page
4
  *
@@ -7,13 +72,13 @@
7
  * @return void
8
  */
9
  function wppb_register_general_settings_submenu_page() {
10
- add_submenu_page( 'profile-builder', __( 'General Settings', 'profile-builder' ), __( 'General Settings', 'profile-builder' ), 'manage_options', 'profile-builder-general-settings', 'wppb_general_settings_content' );
11
  }
12
  add_action( 'admin_menu', 'wppb_register_general_settings_submenu_page', 3 );
13
 
14
 
15
  function wppb_generate_default_settings_defaults(){
16
- add_option( 'wppb_general_settings', array( 'extraFieldsLayout' => 'default', 'emailConfirmation' => 'no', 'activationLandingPage' => '', 'adminApproval' => 'no', 'loginWith' => 'usernameemail', 'rolesEditor' => 'no', 'contentRestriction' => 'no' ) );
17
  }
18
 
19
 
@@ -28,220 +93,204 @@ function wppb_general_settings_content() {
28
  wppb_generate_default_settings_defaults();
29
  ?>
30
  <div class="wrap wppb-wrap">
31
- <form method="post" action="options.php#general-settings">
32
- <?php $wppb_generalSettings = get_option( 'wppb_general_settings' ); ?>
33
- <?php settings_fields( 'wppb_general_settings' ); ?>
34
-
35
- <h2><?php _e( 'General Settings', 'profile-builder' ); ?></h2>
36
- <table class="form-table">
37
- <tr>
38
- <th scope="row">
39
- <?php _e( "Load Profile Builder's own CSS file in the front-end:", "profile-builder" ); ?>
40
- </th>
41
- <td>
42
- <label><input type="checkbox" name="wppb_general_settings[extraFieldsLayout]"<?php echo ( ( isset( $wppb_generalSettings['extraFieldsLayout'] ) && ( $wppb_generalSettings['extraFieldsLayout'] == 'default' ) ) ? ' checked' : '' ); ?> value="default" class="wppb-select"><?php _e( 'Yes', 'profile-builder' ); ?></label>
43
- <ul>
44
- <li class="description"><?php printf( __( 'You can find the default file here: %1$s', 'profile-builder' ), '<a href="'.dirname( plugin_dir_url( __FILE__ ) ).'/assets/css/style-front-end.css" target="_blank">'.dirname( dirname( plugin_basename( __FILE__ ) ) ).'\assets\css\style-front-end.css</a>' ); ?></li>
45
- </ul>
46
- </td>
47
- </tr>
48
-
49
- <tr>
50
- <th scope="row">
51
- <?php _e( '"Email Confirmation" Activated:', 'profile-builder' );?>
52
- </th>
53
- <td>
54
- <select name="wppb_general_settings[emailConfirmation]" class="wppb-select" id="wppb_settings_email_confirmation" onchange="wppb_display_page_select(this.value)">
55
- <option value="yes" <?php if ( $wppb_generalSettings['emailConfirmation'] == 'yes' ) echo 'selected'; ?>><?php _e( 'Yes', 'profile-builder' ); ?></option>
56
- <option value="no" <?php if ( $wppb_generalSettings['emailConfirmation'] == 'no' ) echo 'selected'; ?>><?php _e( 'No', 'profile-builder' ); ?></option>
57
- </select>
58
- <ul>
59
- <li class="description"><?php _e( 'This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using "Custom Redirects" module.', 'profile-builder' ); ?></li>
60
- <?php if ( $wppb_generalSettings['emailConfirmation'] == 'yes' ) { ?>
61
- <li class="description dynamic1"><?php printf( __( 'You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.', 'profile-builder' ), '<a href="'.get_bloginfo( 'url' ).'/wp-admin/users.php?page=unconfirmed_emails">', '</a>' )?></li>
62
- <?php } ?>
63
- </ul>
64
- </td>
65
- </tr>
66
-
67
- <tr id="wppb-settings-activation-page">
68
- <th scope="row">
69
- <?php _e( '"Email Confirmation" Landing Page:', 'profile-builder' ); ?>
70
- </th>
71
- <td>
72
- <select name="wppb_general_settings[activationLandingPage]" class="wppb-select">
73
- <option value="" <?php if ( empty( $wppb_generalSettings['emailConfirmation'] ) ) echo 'selected'; ?>></option>
74
- <optgroup label="<?php _e( 'Existing Pages', 'profile-builder' ); ?>">
75
- <?php
76
- $pages = get_pages( apply_filters( 'wppb_page_args_filter', array( 'sort_order' => 'ASC', 'sort_column' => 'post_title', 'post_type' => 'page', 'post_status' => array( 'publish' ) ) ) );
77
-
78
- foreach ( $pages as $key => $value ){
79
- echo '<option value="'.$value->ID.'"';
80
- if ( $wppb_generalSettings['activationLandingPage'] == $value->ID )
81
- echo ' selected';
82
-
83
- echo '>' . $value->post_title . '</option>';
84
- }
85
- ?>
86
- </optgroup>
87
- </select>
88
- <p class="description">
89
- <?php _e( 'Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user.', 'profile-builder' ); ?>
90
- </p>
91
- </td>
92
- </tr>
93
 
 
94
 
95
- <?php
96
- if ( file_exists( WPPB_PLUGIN_DIR.'/features/admin-approval/admin-approval.php' ) ){
97
- ?>
98
- <tr>
99
- <th scope="row">
100
- <?php _e( '"Admin Approval" Activated:', 'profile-builder' ); ?>
101
- </th>
102
- <td>
103
- <select id="adminApprovalSelect" name="wppb_general_settings[adminApproval]" class="wppb-select" onchange="wppb_display_page_select_aa(this.value)">
104
- <option value="yes" <?php if( !empty( $wppb_generalSettings['adminApproval'] ) && $wppb_generalSettings['adminApproval'] == 'yes' ) echo 'selected'; ?>><?php _e( 'Yes', 'profile-builder' ); ?></option>
105
- <option value="no" <?php if( !empty( $wppb_generalSettings['adminApproval'] ) && $wppb_generalSettings['adminApproval'] == 'no' ) echo 'selected'; ?>><?php _e( 'No', 'profile-builder' ); ?></option>
106
- </select>
107
- <ul>
108
- <li class="description dynamic2"><?php printf( __( 'You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.', 'profile-builder' ), '<a href="'.get_bloginfo( 'url' ).'/wp-admin/users.php?page=admin_approval&orderby=registered&order=desc">', '</a>' )?></li>
109
- <ul>
110
- </td>
111
- </tr>
112
-
113
- <tr class="dynamic2">
114
- <th scope="row">
115
- <?php _e( '"Admin Approval" on User Role:', 'profile-builder' ); ?>
116
- </th>
117
- <td>
118
- <div id="wrap">
119
- <?php
120
- $wppb_userRoles = wppb_adminApproval_onUserRole();
121
-
122
- if( ! empty( $wppb_userRoles ) ) {
123
- foreach( $wppb_userRoles as $role => $role_name ) {
124
- echo '<label><input type="checkbox" id="adminApprovalOnUserRoleCheckbox" name="wppb_general_settings[adminApprovalOnUserRole][]" class="wppb-checkboxes" value="' . esc_attr( $role ) . '"';
125
- if( ! empty( $wppb_generalSettings['adminApprovalOnUserRole'] ) && in_array( $role, $wppb_generalSettings['adminApprovalOnUserRole'] ) ) echo ' checked';
126
- if( empty( $wppb_generalSettings['adminApprovalOnUserRole'] ) ) echo ' checked';
127
- echo '>';
128
- echo $role_name . '</label><br>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
129
  }
130
- }
131
- ?>
132
- </div>
133
- <ul>
134
- <li class="description"><?php printf( __( 'Select on what user roles to activate Admin Approval.', 'profile-builder' ) ) ?></li>
135
  <ul>
136
- </td>
137
- </tr>
 
 
138
 
139
- <?php } ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
140
 
141
- <?php
142
- if( file_exists( WPPB_PLUGIN_DIR.'/features/roles-editor/roles-editor.php' ) ) {
143
- ?>
144
  <tr>
145
  <th scope="row">
146
- <?php _e( '"Roles Editor" Activated:', 'profile-builder' ); ?>
147
  </th>
148
  <td>
149
- <select id="rolesEditorSelect" name="wppb_general_settings[rolesEditor]" class="wppb-select" onchange="wppb_display_page_select_re(this.value)">
150
- <option value="no" <?php if( !empty( $wppb_generalSettings['rolesEditor'] ) && $wppb_generalSettings['rolesEditor'] == 'no' ) echo 'selected'; ?>><?php _e( 'No', 'profile-builder' ); ?></option>
151
- <option value="yes" <?php if( !empty( $wppb_generalSettings['rolesEditor'] ) && $wppb_generalSettings['rolesEditor'] == 'yes' ) echo 'selected'; ?>><?php _e( 'Yes', 'profile-builder' ); ?></option>
 
152
  </select>
153
  <ul>
154
- <li class="description dynamic3"><?php printf( __( 'You can add / edit user roles at %1$sUsers > Roles Editor%2$s.', 'profile-builder' ), '<a href="'.get_bloginfo( 'url' ).'/wp-admin/edit.php?post_type=wppb-roles-editor">', '</a>' )?></li>
 
 
 
 
 
 
 
 
 
 
 
 
155
  <ul>
 
 
156
  </td>
157
  </tr>
158
- <?php } ?>
159
-
160
- <?php
161
- if( file_exists( WPPB_PLUGIN_DIR.'/features/content-restriction/content-restriction.php' ) ) {
162
- ?>
163
- <tr>
164
- <th scope="row">
165
- <?php _e( '"Content Restriction" Activated:', 'profile-builder' ); ?>
166
- </th>
167
- <td>
168
- <select id="contentRestrictionSelect" name="wppb_general_settings[contentRestriction]" class="wppb-select" onchange="wppb_display_page_select_cr(this.value)">
169
- <option value="no" <?php if( !empty( $wppb_generalSettings['contentRestriction'] ) && $wppb_generalSettings['contentRestriction'] == 'no' ) echo 'selected'; ?>><?php _e( 'No', 'profile-builder' ); ?></option>
170
- <option value="yes" <?php if( !empty( $wppb_generalSettings['contentRestriction'] ) && $wppb_generalSettings['contentRestriction'] == 'yes' ) echo 'selected'; ?>><?php _e( 'Yes', 'profile-builder' ); ?></option>
171
- </select>
172
- <ul>
173
- <li class="description dynamic4"><?php printf( __( 'Set your settings at %1$sProfile Builder > Content Restriction%2$s and use each page / post / custom post type individual meta-box to restrict content.', 'profile-builder' ), '<a href="'.get_bloginfo( 'url' ).'/wp-admin/admin.php?page=profile-builder-content_restriction">', '</a>' )?></li>
174
- <ul>
175
- </td>
176
- </tr>
177
- <?php } ?>
178
 
179
- <?php
180
- if ( PROFILE_BUILDER == 'Profile Builder Free' ) {
181
- ?>
182
- <tr>
183
- <th scope="row">
184
- <?php _e( '"Admin Approval" Feature:', 'profile-builder' ); ?>
185
- </th>
186
- <td>
187
- <p><em> <?php printf( __( 'You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s.', 'profile-builder' ),'<a href="https://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wpbackend&utm_medium=clientsite&utm_content=general-settings-link&utm_campaign=PBFree">', '</a>' )?></em></p>
188
- </td>
189
- </tr>
190
- <?php } ?>
191
-
192
- <tr>
193
- <th scope="row">
194
- <?php _e( 'Allow Users to Log in With:', 'profile-builder' ); ?>
195
- </th>
196
- <td>
197
- <select name="wppb_general_settings[loginWith]" class="wppb-select">
198
- <option value="usernameemail" <?php if ( $wppb_generalSettings['loginWith'] == 'usernameemail' ) echo 'selected'; ?>><?php _e( 'Username and Email', 'profile-builder' ); ?></option>
199
- <option value="username" <?php if ( $wppb_generalSettings['loginWith'] == 'username' ) echo 'selected'; ?>><?php _e( 'Username', 'profile-builder' ); ?></option>
200
- <option value="email" <?php if ( $wppb_generalSettings['loginWith'] == 'email' ) echo 'selected'; ?>><?php _e( 'Email', 'profile-builder' ); ?></option>
201
- </select>
202
- <ul>
203
- <li class="description"><?php _e( '"Username and Email" - users can Log In with both Username and Email.', 'profile-builder' ); ?></li>
204
- <li class="description"><?php _e( '"Username" - users can Log In only with Username.', 'profile-builder' ); ?></li>
205
- <li class="description"><?php _e( '"Email" - users can Log In only with Email.', 'profile-builder' ); ?></li>
206
- </ul>
207
- </td>
208
- </tr>
209
-
210
- <tr>
211
- <th scope="row">
212
- <?php _e( 'Minimum Password Length:', 'profile-builder' ); ?>
213
- </th>
214
- <td>
215
- <input type="text" name="wppb_general_settings[minimum_password_length]" class="wppb-text" value="<?php if( !empty( $wppb_generalSettings['minimum_password_length'] ) ) echo esc_attr( $wppb_generalSettings['minimum_password_length'] ); ?>"/>
216
- <ul>
217
- <li class="description"><?php _e( 'Enter the minimum characters the password should have. Leave empty for no minimum limit', 'profile-builder' ); ?> </li>
218
- </ul>
219
- </td>
220
- </tr>
221
-
222
- <tr>
223
- <th scope="row">
224
- <?php _e( 'Minimum Password Strength:', 'profile-builder' ); ?>
225
- </th>
226
- <td>
227
- <select name="wppb_general_settings[minimum_password_strength]" class="wppb-select">
228
- <option value=""><?php _e( 'Disabled', 'profile-builder' ); ?></option>
229
- <option value="short" <?php if ( !empty($wppb_generalSettings['minimum_password_strength']) && $wppb_generalSettings['minimum_password_strength'] == 'short' ) echo 'selected'; ?>><?php _e( 'Very weak', 'profile-builder' ); ?></option>
230
- <option value="bad" <?php if ( !empty($wppb_generalSettings['minimum_password_strength']) && $wppb_generalSettings['minimum_password_strength'] == 'bad' ) echo 'selected'; ?>><?php _e( 'Weak', 'profile-builder' ); ?></option>
231
- <option value="good" <?php if ( !empty($wppb_generalSettings['minimum_password_strength']) && $wppb_generalSettings['minimum_password_strength'] == 'good' ) echo 'selected'; ?>><?php _e( 'Medium', 'profile-builder' ); ?></option>
232
- <option value="strong" <?php if ( !empty($wppb_generalSettings['minimum_password_strength']) && $wppb_generalSettings['minimum_password_strength'] == 'strong' ) echo 'selected'; ?>><?php _e( 'Strong', 'profile-builder' ); ?></option>
233
- </select>
234
- </td>
235
- </tr>
236
-
237
- <?php do_action( 'wppb_extra_general_settings', $wppb_generalSettings ); ?>
238
- </table>
239
-
240
-
241
-
242
- <input type="hidden" name="action" value="update" />
243
- <p class="submit"><input type="submit" class="button-primary" value="<?php _e( 'Save Changes' ); ?>" /></p>
244
- </form>
245
  </div>
246
 
247
  <?php
1
  <?php
2
+ /**
3
+ * Function that returns an array with the settings tabs(pages) and subtabs(subpages)
4
+ * @return array with the tabs
5
+ */
6
+ function wppb_get_settings_pages(){
7
+ $settings_pages['pages'] = array(
8
+ 'profile-builder-general-settings' => __( 'General Settings', 'profile-builder' ),
9
+ 'profile-builder-admin-bar-settings' => __( 'Admin Bar', 'profile-builder' ),
10
+ 'profile-builder-content_restriction' => __( 'Content Restriction', 'profile-builder' ),
11
+ );
12
+
13
+ if (file_exists(WPPB_PLUGIN_DIR . '/modules/modules.php')) {
14
+ $wppb_module_settings = get_option('wppb_module_settings');
15
+ if( ( isset($wppb_module_settings['wppb_emailCustomizerAdmin']) && $wppb_module_settings['wppb_emailCustomizerAdmin'] == 'show' ) || ( isset($wppb_module_settings['wppb_emailCustomizer']) && $wppb_module_settings['wppb_emailCustomizer'] == 'show') ){
16
+ $settings_pages['pages']['user-email-customizer'] = __( 'Email Customizer', 'profile-builder' );
17
+ //add subpages here for email customizer
18
+ $settings_pages['subpages']['user-email-customizer']['user-email-customizer'] = __( 'User Emails', 'profile-builder' );
19
+ $settings_pages['subpages']['user-email-customizer']['admin-email-customizer'] = __( 'Administrator Emails', 'profile-builder' );
20
+ }
21
+ }
22
+
23
+ return $settings_pages;
24
+ }
25
+
26
+ /**
27
+ * Function that generates the html for the tabs and subtabs on the settings page
28
+ */
29
+ function wppb_generate_settings_tabs(){
30
+ ?>
31
+ <h3 class="nav-tab-wrapper">
32
+ <?php
33
+ $pages = wppb_get_settings_pages();
34
+
35
+ $active_tab = sanitize_text_field($_GET['page']);
36
+ //if we are on a subpage we need to change the active tab to the parent
37
+ if( !empty( $pages['subpages'] ) ) {
38
+ foreach ($pages['subpages'] as $parent_slug => $subpages) {
39
+ if (array_key_exists($active_tab, $subpages)) {
40
+ $active_tab = $parent_slug;
41
+ }
42
+ }
43
+ }
44
+
45
+ foreach( $pages['pages'] as $page_slug => $tab_name ){
46
+ echo '<a href="' . admin_url( add_query_arg( array( 'page' => $page_slug ), 'admin.php' ) ) . '" class="nav-tab ' . ( $active_tab == $page_slug ? 'nav-tab-active' : '' ) . '">'. $tab_name .'</a>';
47
+ }
48
+ ?>
49
+ </h3>
50
+ <?php
51
+ if( !empty( $pages['subpages'] ) ) {
52
+ $active_subpage = sanitize_text_field($_GET['page']);
53
+ echo '<ul class="wppb-subtabs subsubsub">';
54
+ foreach ($pages['subpages'] as $parent_slug => $subpages) {
55
+ if (array_key_exists($_GET['page'], $subpages)) {
56
+ foreach ($subpages as $subpage_slug => $subpage_name) {
57
+ echo '<li><a href="' . admin_url(add_query_arg(array('page' => $subpage_slug), 'admin.php')) . '" class="nav-sub-tab ' . ($active_subpage == $subpage_slug ? 'current' : '') . '">' . $subpage_name . '</a></li>';
58
+ }
59
+ }
60
+ }
61
+ echo '</ul>';
62
+ }
63
+
64
+
65
+ }
66
+
67
  /**
68
  * Function that creates the "General Settings" submenu page
69
  *
72
  * @return void
73
  */
74
  function wppb_register_general_settings_submenu_page() {
75
+ add_submenu_page( 'profile-builder', __( 'Settings', 'profile-builder' ), __( 'Settings', 'profile-builder' ), 'manage_options', 'profile-builder-general-settings', 'wppb_general_settings_content' );
76
  }
77
  add_action( 'admin_menu', 'wppb_register_general_settings_submenu_page', 3 );
78
 
79
 
80
  function wppb_generate_default_settings_defaults(){
81
+ add_option( 'wppb_general_settings', array( 'extraFieldsLayout' => 'default', 'emailConfirmation' => 'no', 'activationLandingPage' => '', 'adminApproval' => 'no', 'loginWith' => 'usernameemail', 'rolesEditor' => 'no' ) );
82
  }
83
 
84
 
93
  wppb_generate_default_settings_defaults();
94
  ?>
95
  <div class="wrap wppb-wrap">
96
+ <h2><?php _e( 'Profile Builder Settings', 'profile-builder' ); ?></h2>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
 
98
+ <?php wppb_generate_settings_tabs() ?>
99
 
100
+ <form method="post" action="options.php#general-settings">
101
+ <?php $wppb_generalSettings = get_option( 'wppb_general_settings' ); ?>
102
+ <?php settings_fields( 'wppb_general_settings' ); ?>
103
+
104
+ <table class="form-table">
105
+ <tr>
106
+ <th scope="row">
107
+ <?php _e( "Load Profile Builder's own CSS file in the front-end:", "profile-builder" ); ?>
108
+ </th>
109
+ <td>
110
+ <label><input type="checkbox" name="wppb_general_settings[extraFieldsLayout]"<?php echo ( ( isset( $wppb_generalSettings['extraFieldsLayout'] ) && ( $wppb_generalSettings['extraFieldsLayout'] == 'default' ) ) ? ' checked' : '' ); ?> value="default" class="wppb-select"><?php _e( 'Yes', 'profile-builder' ); ?></label>
111
+ <ul>
112
+ <li class="description"><?php printf( __( 'You can find the default file here: %1$s', 'profile-builder' ), '<a href="'.dirname( plugin_dir_url( __FILE__ ) ).'/assets/css/style-front-end.css" target="_blank">'.dirname( dirname( plugin_basename( __FILE__ ) ) ).'\assets\css\style-front-end.css</a>' ); ?></li>
113
+ </ul>
114
+ </td>
115
+ </tr>
116
+
117
+ <tr>
118
+ <th scope="row">
119
+ <?php _e( '"Email Confirmation" Activated:', 'profile-builder' );?>
120
+ </th>
121
+ <td>
122
+ <select name="wppb_general_settings[emailConfirmation]" class="wppb-select" id="wppb_settings_email_confirmation" onchange="wppb_display_page_select(this.value)">
123
+ <option value="yes" <?php if ( $wppb_generalSettings['emailConfirmation'] == 'yes' ) echo 'selected'; ?>><?php _e( 'Yes', 'profile-builder' ); ?></option>
124
+ <option value="no" <?php if ( $wppb_generalSettings['emailConfirmation'] == 'no' ) echo 'selected'; ?>><?php _e( 'No', 'profile-builder' ); ?></option>
125
+ </select>
126
+ <ul>
127
+ <li class="description"><?php _e( 'This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using "Custom Redirects" module.', 'profile-builder' ); ?></li>
128
+ <?php if ( $wppb_generalSettings['emailConfirmation'] == 'yes' ) { ?>
129
+ <li class="description dynamic1"><?php printf( __( 'You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.', 'profile-builder' ), '<a href="'.get_bloginfo( 'url' ).'/wp-admin/users.php?page=unconfirmed_emails">', '</a>' )?></li>
130
+ <?php } ?>
131
+ </ul>
132
+ </td>
133
+ </tr>
134
+
135
+ <tr id="wppb-settings-activation-page">
136
+ <th scope="row">
137
+ <?php _e( '"Email Confirmation" Landing Page:', 'profile-builder' ); ?>
138
+ </th>
139
+ <td>
140
+ <select name="wppb_general_settings[activationLandingPage]" class="wppb-select">
141
+ <option value="" <?php if ( empty( $wppb_generalSettings['emailConfirmation'] ) ) echo 'selected'; ?>></option>
142
+ <optgroup label="<?php _e( 'Existing Pages', 'profile-builder' ); ?>">
143
+ <?php
144
+ $pages = get_pages( apply_filters( 'wppb_page_args_filter', array( 'sort_order' => 'ASC', 'sort_column' => 'post_title', 'post_type' => 'page', 'post_status' => array( 'publish' ) ) ) );
145
+
146
+ foreach ( $pages as $key => $value ){
147
+ echo '<option value="'.$value->ID.'"';
148
+ if ( $wppb_generalSettings['activationLandingPage'] == $value->ID )
149
+ echo ' selected';
150
+
151
+ echo '>' . $value->post_title . '</option>';
152
+ }
153
+ ?>
154
+ </optgroup>
155
+ </select>
156
+ <p class="description">
157
+ <?php _e( 'Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user.', 'profile-builder' ); ?>
158
+ </p>
159
+ </td>
160
+ </tr>
161
+
162
+
163
+ <?php
164
+ if ( file_exists( WPPB_PLUGIN_DIR.'/features/admin-approval/admin-approval.php' ) ){
165
+ ?>
166
+ <tr>
167
+ <th scope="row">
168
+ <?php _e( '"Admin Approval" Activated:', 'profile-builder' ); ?>
169
+ </th>
170
+ <td>
171
+ <select id="adminApprovalSelect" name="wppb_general_settings[adminApproval]" class="wppb-select" onchange="wppb_display_page_select_aa(this.value)">
172
+ <option value="yes" <?php if( !empty( $wppb_generalSettings['adminApproval'] ) && $wppb_generalSettings['adminApproval'] == 'yes' ) echo 'selected'; ?>><?php _e( 'Yes', 'profile-builder' ); ?></option>
173
+ <option value="no" <?php if( !empty( $wppb_generalSettings['adminApproval'] ) && $wppb_generalSettings['adminApproval'] == 'no' ) echo 'selected'; ?>><?php _e( 'No', 'profile-builder' ); ?></option>
174
+ </select>
175
+ <ul>
176
+ <li class="description dynamic2"><?php printf( __( 'You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.', 'profile-builder' ), '<a href="'.get_bloginfo( 'url' ).'/wp-admin/users.php?page=admin_approval&orderby=registered&order=desc">', '</a>' )?></li>
177
+ <ul>
178
+ </td>
179
+ </tr>
180
+
181
+ <tr class="dynamic2">
182
+ <th scope="row">
183
+ <?php _e( '"Admin Approval" on User Role:', 'profile-builder' ); ?>
184
+ </th>
185
+ <td>
186
+ <div id="wrap">
187
+ <?php
188
+ $wppb_userRoles = wppb_adminApproval_onUserRole();
189
+
190
+ if( ! empty( $wppb_userRoles ) ) {
191
+ foreach( $wppb_userRoles as $role => $role_name ) {
192
+ echo '<label><input type="checkbox" id="adminApprovalOnUserRoleCheckbox" name="wppb_general_settings[adminApprovalOnUserRole][]" class="wppb-checkboxes" value="' . esc_attr( $role ) . '"';
193
+ if( ! empty( $wppb_generalSettings['adminApprovalOnUserRole'] ) && in_array( $role, $wppb_generalSettings['adminApprovalOnUserRole'] ) ) echo ' checked';
194
+ if( empty( $wppb_generalSettings['adminApprovalOnUserRole'] ) ) echo ' checked';
195
+ echo '>';
196
+ echo $role_name . '</label><br>';
197
+ }
198
  }
199
+ ?>
200
+ </div>
 
 
 
201
  <ul>
202
+ <li class="description"><?php printf( __( 'Select on what user roles to activate Admin Approval.', 'profile-builder' ) ) ?></li>
203
+ <ul>
204
+ </td>
205
+ </tr>
206
 
207
+ <?php } ?>
208
+
209
+ <?php
210
+ if( file_exists( WPPB_PLUGIN_DIR.'/features/roles-editor/roles-editor.php' ) ) {
211
+ ?>
212
+ <tr>
213
+ <th scope="row">
214
+ <?php _e( '"Roles Editor" Activated:', 'profile-builder' ); ?>
215
+ </th>
216
+ <td>
217
+ <select id="rolesEditorSelect" name="wppb_general_settings[rolesEditor]" class="wppb-select" onchange="wppb_display_page_select_re(this.value)">
218
+ <option value="no" <?php if( !empty( $wppb_generalSettings['rolesEditor'] ) && $wppb_generalSettings['rolesEditor'] == 'no' ) echo 'selected'; ?>><?php _e( 'No', 'profile-builder' ); ?></option>
219
+ <option value="yes" <?php if( !empty( $wppb_generalSettings['rolesEditor'] ) && $wppb_generalSettings['rolesEditor'] == 'yes' ) echo 'selected'; ?>><?php _e( 'Yes', 'profile-builder' ); ?></option>
220
+ </select>
221
+ <ul>
222
+ <li class="description dynamic3"><?php printf( __( 'You can add / edit user roles at %1$sUsers > Roles Editor%2$s.', 'profile-builder' ), '<a href="'.get_bloginfo( 'url' ).'/wp-admin/edit.php?post_type=wppb-roles-editor">', '</a>' )?></li>
223
+ <ul>
224
+ </td>
225
+ </tr>
226
+ <?php } ?>
227
+
228
+ <?php
229
+ if ( PROFILE_BUILDER == 'Profile Builder Free' ) {
230
+ ?>
231
+ <tr>
232
+ <th scope="row">
233
+ <?php _e( '"Admin Approval" Feature:', 'profile-builder' ); ?>
234
+ </th>
235
+ <td>
236
+ <p><em> <?php printf( __( 'You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s.', 'profile-builder' ),'<a href="https://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wpbackend&utm_medium=clientsite&utm_content=general-settings-link&utm_campaign=PBFree">', '</a>' )?></em></p>
237
+ </td>
238
+ </tr>
239
+ <?php } ?>
240
 
 
 
 
241
  <tr>
242
  <th scope="row">
243
+ <?php _e( 'Allow Users to Log in With:', 'profile-builder' ); ?>
244
  </th>
245
  <td>
246
+ <select name="wppb_general_settings[loginWith]" class="wppb-select">
247
+ <option value="usernameemail" <?php if ( $wppb_generalSettings['loginWith'] == 'usernameemail' ) echo 'selected'; ?>><?php _e( 'Username and Email', 'profile-builder' ); ?></option>
248
+ <option value="username" <?php if ( $wppb_generalSettings['loginWith'] == 'username' ) echo 'selected'; ?>><?php _e( 'Username', 'profile-builder' ); ?></option>
249
+ <option value="email" <?php if ( $wppb_generalSettings['loginWith'] == 'email' ) echo 'selected'; ?>><?php _e( 'Email', 'profile-builder' ); ?></option>
250
  </select>
251
  <ul>
252
+ <li class="description"><?php _e( '"Username and Email" - users can Log In with both Username and Email.', 'profile-builder' ); ?></li>
253
+ <li class="description"><?php _e( '"Username" - users can Log In only with Username.', 'profile-builder' ); ?></li>
254
+ <li class="description"><?php _e( '"Email" - users can Log In only with Email.', 'profile-builder' ); ?></li>
255
+ </ul>
256
+ </td>
257
+ </tr>
258
+
259
+ <tr>
260
+ <th scope="row">
261
+ <?php _e( 'Minimum Password Length:', 'profile-builder' ); ?>
262
+ </th>
263
+ <td>
264
+ <input type="text" name="wppb_general_settings[minimum_password_length]" class="wppb-text" value="<?php if( !empty( $wppb_generalSettings['minimum_password_length'] ) ) echo esc_attr( $wppb_generalSettings['minimum_password_length'] ); ?>"/>
265
  <ul>
266
+ <li class="description"><?php _e( 'Enter the minimum characters the password should have. Leave empty for no minimum limit', 'profile-builder' ); ?> </li>
267
+ </ul>
268
  </td>
269
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
270
 
271
+ <tr>
272
+ <th scope="row">
273
+ <?php _e( 'Minimum Password Strength:', 'profile-builder' ); ?>
274
+ </th>
275
+ <td>
276
+ <select name="wppb_general_settings[minimum_password_strength]" class="wppb-select">
277
+ <option value=""><?php _e( 'Disabled', 'profile-builder' ); ?></option>
278
+ <option value="short" <?php if ( !empty($wppb_generalSettings['minimum_password_strength']) && $wppb_generalSettings['minimum_password_strength'] == 'short' ) echo 'selected'; ?>><?php _e( 'Very weak', 'profile-builder' ); ?></option>
279
+ <option value="bad" <?php if ( !empty($wppb_generalSettings['minimum_password_strength']) && $wppb_generalSettings['minimum_password_strength'] == 'bad' ) echo 'selected'; ?>><?php _e( 'Weak', 'profile-builder' ); ?></option>
280
+ <option value="good" <?php if ( !empty($wppb_generalSettings['minimum_password_strength']) && $wppb_generalSettings['minimum_password_strength'] == 'good' ) echo 'selected'; ?>><?php _e( 'Medium', 'profile-builder' ); ?></option>
281
+ <option value="strong" <?php if ( !empty($wppb_generalSettings['minimum_password_strength']) && $wppb_generalSettings['minimum_password_strength'] == 'strong' ) echo 'selected'; ?>><?php _e( 'Strong', 'profile-builder' ); ?></option>
282
+ </select>
283
+ </td>
284
+ </tr>
285
+
286
+ <?php do_action( 'wppb_extra_general_settings', $wppb_generalSettings ); ?>
287
+ </table>
288
+
289
+
290
+
291
+ <input type="hidden" name="action" value="update" />
292
+ <p class="submit"><input type="submit" class="button-primary" value="<?php _e( 'Save Changes' ); ?>" /></p>
293
+ </form>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
294
  </div>
295
 
296
  <?php
assets/css/style-back-end.css CHANGED
@@ -797,4 +797,27 @@ div.wppb-notice .notice-dismiss {
797
 
798
  .wppb-auto-form-creation a.button{
799
  margin-top: 5px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
800
  }
797
 
798
  .wppb-auto-form-creation a.button{
799
  margin-top: 5px;
800
+ }
801
+
802
+ .wppb-subtabs{
803
+ padding:7px 0 8px;
804
+ float:none;
805
+ }
806
+
807
+ .wppb-subtabs li{
808
+ padding:0 5px;
809
+ border-right:1px solid #ddd;
810
+ }
811
+
812
+ .wppb-subtabs li:last-child{
813
+ border-right:none;
814
+ }
815
+
816
+ .wppb-subtabs a{
817
+ letter-spacing:0 !important;
818
+ font-size:14px;
819
+ }
820
+
821
+ .profile-builder_page_user-email-customizer #poststuff, .profile-builder_page_admin-email-customizer #poststuff{
822
+ padding:0;
823
  }
assets/lib/class_notices.php CHANGED
@@ -127,9 +127,11 @@ Class WPPB_Plugin_Notifications {
127
  foreach ($wp_filter['admin_notices']->callbacks as $priority => $callbacks_level) {
128
  if (!empty($callbacks_level)) {
129
  foreach ($callbacks_level as $key => $callback) {
130
- if (is_object($callback['function'][0])) {//object here
131
- if (strpos(get_class($callback['function'][0]), 'PMS_') !== 0 && strpos(get_class($callback['function'][0]), 'WPPB_') !== 0 && strpos(get_class($callback['function'][0]), 'TRP_') !== 0 && strpos(get_class($callback['function'][0]), 'WCK_') !== 0) {
132
- unset($wp_filter['admin_notices']->callbacks[$priority][$key]);//unset everything that doesn't come from our plugins
 
 
133
  }
134
  } else if( is_string( $callback['function'] ) ){//it should be a function name
135
  if (strpos($callback['function'], 'pms_') !== 0 && strpos($callback['function'], 'wppb_') !== 0 && strpos($callback['function'], 'trp_') !== 0 && strpos($callback['function'], 'wck_') !== 0) {
127
  foreach ($wp_filter['admin_notices']->callbacks as $priority => $callbacks_level) {
128
  if (!empty($callbacks_level)) {
129
  foreach ($callbacks_level as $key => $callback) {
130
+ if( is_array( $callback['function'] ) ){
131
+ if( is_object($callback['function'][0])) {//object here
132
+ if (strpos(get_class($callback['function'][0]), 'PMS_') !== 0 && strpos(get_class($callback['function'][0]), 'WPPB_') !== 0 && strpos(get_class($callback['function'][0]), 'TRP_') !== 0 && strpos(get_class($callback['function'][0]), 'WCK_') !== 0) {
133
+ unset($wp_filter['admin_notices']->callbacks[$priority][$key]);//unset everything that doesn't come from our plugins
134
+ }
135
  }
136
  } else if( is_string( $callback['function'] ) ){//it should be a function name
137
  if (strpos($callback['function'], 'pms_') !== 0 && strpos($callback['function'], 'wppb_') !== 0 && strpos($callback['function'], 'trp_') !== 0 && strpos($callback['function'], 'wck_') !== 0) {
features/content-restriction/assets/css/content-restriction.css CHANGED
@@ -24,6 +24,7 @@
24
  }
25
 
26
  #wppb-settings-content-restriction .wppb-restriction-type,
 
27
  #wppb-settings-content-restriction #wp-message_logged_out-wrap,
28
  #wppb-settings-content-restriction #wp-message_logged_in-wrap,
29
  #wppb-settings-content-restriction .wppb-restriction-post-preview {
24
  }
25
 
26
  #wppb-settings-content-restriction .wppb-restriction-type,
27
+ #wppb-settings-content-restriction .wppb-restriction-activated,
28
  #wppb-settings-content-restriction #wp-message_logged_out-wrap,
29
  #wppb-settings-content-restriction #wp-message_logged_in-wrap,
30
  #wppb-settings-content-restriction .wppb-restriction-post-preview {
features/content-restriction/content-restriction.php CHANGED
@@ -1,23 +1,41 @@
1
  <?php
2
 
3
  $wppb_generalSettings = get_option( 'wppb_general_settings', 'not_found' );
4
- if( $wppb_generalSettings != 'not_found' ) {
5
- if( ! empty( $wppb_generalSettings['contentRestriction'] ) && ( $wppb_generalSettings['contentRestriction'] == 'yes' ) ) {
 
 
 
 
 
 
 
 
 
6
  include_once 'content-restriction-meta-box.php';
7
- include_once 'content-restriction-functions.php';
8
  include_once 'content-restriction-filtering.php';
9
-
10
- add_action( 'admin_menu', 'wppb_content_restriction_submenu', 10 );
11
- add_action( 'admin_enqueue_scripts', 'wppb_content_restriction_scripts_styles' );
12
  }
 
13
  }
14
 
 
 
 
15
  function wppb_content_restriction_submenu() {
16
 
17
  add_submenu_page( 'profile-builder', __( 'Content Restriction', 'profile-builder' ), __( 'Content Restriction', 'profile-builder' ), 'manage_options', 'profile-builder-content_restriction', 'wppb_content_restriction_content' );
18
 
19
  }
20
 
 
 
 
 
 
 
 
 
 
21
  function wppb_content_restriction_settings_defaults() {
22
 
23
  add_option( 'wppb_content_restriction_settings',
@@ -41,12 +59,36 @@ function wppb_content_restriction_content() {
41
 
42
  ?>
43
  <div class="wrap wppb-content-restriction-wrap">
44
- <h2><?php _e( 'Content Restriction', 'profile-builder' ); ?></h2>
 
 
45
 
46
  <form method="post" action="options.php">
47
  <?php settings_fields( 'wppb_content_restriction_settings' ); ?>
48
 
49
  <div id="wppb-settings-content-restriction">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  <div class="wppb-restriction-fields-group">
51
  <label class="wppb-restriction-label"><?php _e( 'Type of Restriction', 'profile-builder' ); ?></label>
52
 
@@ -114,7 +156,7 @@ function wppb_content_restriction_content() {
114
  </div>
115
  </div>
116
 
117
- <?php submit_button( __( 'Save Settings', 'profile-builder' ) ); ?>
118
  </form>
119
  </div>
120
  <?php
1
  <?php
2
 
3
  $wppb_generalSettings = get_option( 'wppb_general_settings', 'not_found' );
4
+ $wppb_content_restriction_settings = get_option( 'wppb_content_restriction_settings', 'not_found' );
5
+ if( $wppb_generalSettings != 'not_found' || $wppb_content_restriction_settings != 'not_found' ) {
6
+ global $content_restriction_activated;
7
+ $content_restriction_activated = 'no';
8
+ if( !empty( $wppb_content_restriction_settings['contentRestriction'] ) ){
9
+ $content_restriction_activated = $wppb_content_restriction_settings['contentRestriction'];
10
+ }
11
+ elseif( !empty( $wppb_generalSettings['contentRestriction'] ) ){
12
+ $content_restriction_activated = $wppb_generalSettings['contentRestriction'];
13
+ }
14
+ if( $content_restriction_activated == 'yes' ) {
15
  include_once 'content-restriction-meta-box.php';
 
16
  include_once 'content-restriction-filtering.php';
 
 
 
17
  }
18
+ include_once 'content-restriction-functions.php';
19
  }
20
 
21
+ add_action( 'admin_menu', 'wppb_content_restriction_submenu', 10 );
22
+ add_action( 'admin_enqueue_scripts', 'wppb_content_restriction_scripts_styles' );
23
+
24
  function wppb_content_restriction_submenu() {
25
 
26
  add_submenu_page( 'profile-builder', __( 'Content Restriction', 'profile-builder' ), __( 'Content Restriction', 'profile-builder' ), 'manage_options', 'profile-builder-content_restriction', 'wppb_content_restriction_content' );
27
 
28
  }
29
 
30
+ /* hide the menu item for Content restriction if it is disabled...in v 2.8.9 or 2.9.0 we should remove all the unnecessary tab menus */
31
+ add_action( 'admin_head', 'wppb_hide_content_restriction_menu' );
32
+ function wppb_hide_content_restriction_menu(){
33
+ global $content_restriction_activated;
34
+ if( $content_restriction_activated == 'no' ){
35
+ echo '<style type="text/css">a[href="admin.php?page=profile-builder-content_restriction"]{display:none !important;}</style>';
36
+ }
37
+ }
38
+
39
  function wppb_content_restriction_settings_defaults() {
40
 
41
  add_option( 'wppb_content_restriction_settings',
59
 
60
  ?>
61
  <div class="wrap wppb-content-restriction-wrap">
62
+ <h2><?php _e( 'Content Restriction Settings', 'profile-builder' ); ?></h2>
63
+
64
+ <?php wppb_generate_settings_tabs() ?>
65
 
66
  <form method="post" action="options.php">
67
  <?php settings_fields( 'wppb_content_restriction_settings' ); ?>
68
 
69
  <div id="wppb-settings-content-restriction">
70
+
71
+ <?php
72
+ $wppb_generalSettings = get_option( 'wppb_general_settings' );
73
+ $content_restriction_activated = 'no';
74
+ if( !empty( $wppb_content_restriction_settings['contentRestriction'] ) ){
75
+ $content_restriction_activated = $wppb_content_restriction_settings['contentRestriction'];
76
+ }
77
+ elseif( !empty( $wppb_generalSettings['contentRestriction'] ) ){
78
+ $content_restriction_activated = $wppb_generalSettings['contentRestriction'];
79
+ }
80
+ ?>
81
+ <div class="wppb-restriction-fields-group">
82
+ <label class="wppb-restriction-label" for="contentRestrictionSelect"><?php _e( 'Enable Content Restriction', 'profile-builder' ); ?></label>
83
+ <div class="wppb-restriction-activated">
84
+ <select id="contentRestrictionSelect" name="wppb_content_restriction_settings[contentRestriction]">
85
+ <option value="no" <?php if( $content_restriction_activated == 'no' ) echo 'selected'; ?>><?php _e( 'No', 'profile-builder' ); ?></option>
86
+ <option value="yes" <?php if( $content_restriction_activated == 'yes' ) echo 'selected'; ?>><?php _e( 'Yes', 'profile-builder' ); ?></option>
87
+ </select>
88
+ <p class="description"><?php _e( 'Activate Content Restriction', 'profile-builder' ); ?></p>
89
+ </div>
90
+ </div>
91
+
92
  <div class="wppb-restriction-fields-group">
93
  <label class="wppb-restriction-label"><?php _e( 'Type of Restriction', 'profile-builder' ); ?></label>
94
 
156
  </div>
157
  </div>
158
 
159
+ <?php submit_button( __( 'Save Changes', 'profile-builder' ) ); ?>
160
  </form>
161
  </div>
162
  <?php
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: 2.8.5
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
@@ -75,7 +75,7 @@ function wppb_free_plugin_init() {
75
  *
76
  *
77
  */
78
- define('PROFILE_BUILDER_VERSION', '2.8.5' );
79
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
80
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
81
  define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
@@ -163,10 +163,14 @@ function wppb_free_plugin_init() {
163
  } else
164
  add_shortcode('wppb-list-users', 'wppb_list_all_users_display_error');
165
 
166
- if (isset($wppb_module_settings['wppb_emailCustomizerAdmin']) && ($wppb_module_settings['wppb_emailCustomizerAdmin'] == 'show'))
 
 
 
 
167
  include_once(WPPB_PLUGIN_DIR . '/modules/email-customizer/admin-email-customizer.php');
168
 
169
- if (isset($wppb_module_settings['wppb_emailCustomizer']) && ($wppb_module_settings['wppb_emailCustomizer'] == 'show'))
170
  include_once(WPPB_PLUGIN_DIR . '/modules/email-customizer/user-email-customizer.php');
171
  }
172
 
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: 2.8.6
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
75
  *
76
  *
77
  */
78
+ define('PROFILE_BUILDER_VERSION', '2.8.6' );
79
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
80
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
81
  define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
163
  } else
164
  add_shortcode('wppb-list-users', 'wppb_list_all_users_display_error');
165
 
166
+ $wppb_email_customizer_activate = 'hide';
167
+ if ( ( !empty( $wppb_module_settings['wppb_emailCustomizer'] ) && $wppb_module_settings['wppb_emailCustomizer'] == 'show' ) || ( !empty( $wppb_module_settings['wppb_emailCustomizerAdmin'] ) && $wppb_module_settings['wppb_emailCustomizerAdmin'] == 'show' ) )
168
+ $wppb_email_customizer_activate = 'show';
169
+
170
+ if ( $wppb_email_customizer_activate == 'show')
171
  include_once(WPPB_PLUGIN_DIR . '/modules/email-customizer/admin-email-customizer.php');
172
 
173
+ if ( $wppb_email_customizer_activate == 'show' )
174
  include_once(WPPB_PLUGIN_DIR . '/modules/email-customizer/user-email-customizer.php');
175
  }
176
 
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, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
5
  Requires at least: 3.1
6
  Tested up to: 4.9.6
7
- Stable tag: 2.8.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -166,6 +166,12 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
166
  12. Role Editor
167
 
168
  == Changelog ==
 
 
 
 
 
 
169
  = 2.8.5 =
170
  * Added a small setup process for creating forms
171
  * GDPR field now saves the value on Edit Profile
4
  Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
5
  Requires at least: 3.1
6
  Tested up to: 4.9.6
7
+ Stable tag: 2.8.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
166
  12. Role Editor
167
 
168
  == Changelog ==
169
+ = 2.8.6 =
170
+ * Implemented a tabbed settings interface
171
+ * Content restriction activated setting is now in the Content Restriction tab
172
+ * Fixed a fatal error that occurred on some instances on the Settings page
173
+ * Fixed typo in query for existing pages in setup process
174
+
175
  = 2.8.5 =
176
  * Added a small setup process for creating forms
177
  * GDPR field now saves the value on Edit Profile
translation/profile-builder.catalog.php CHANGED
@@ -514,6 +514,10 @@
514
  <?php __("Because we care about our clients, please leave us feedback on why you are no longer using our plugin.", "profile-builder"); ?>
515
  <?php __("Skip and Deactivate", "profile-builder"); ?>
516
  <?php __("Submit and Deactivate", "profile-builder"); ?>
 
 
 
 
517
  <?php __("Load Profile Builder's own CSS file in the front-end:", "profile-builder"); ?>
518
  <?php __("You can find the default file here: %1$s", "profile-builder"); ?>
519
  <?php __("\"Email Confirmation\" Activated:", "profile-builder"); ?>
@@ -528,8 +532,6 @@
528
  <?php __("Select on what user roles to activate Admin Approval.", "profile-builder"); ?>
529
  <?php __("\"Roles Editor\" Activated:", "profile-builder"); ?>
530
  <?php __("You can add / edit user roles at %1$sUsers > Roles Editor%2$s.", "profile-builder"); ?>
531
- <?php __("\"Content Restriction\" Activated:", "profile-builder"); ?>
532
- <?php __("Set your settings at %1$sProfile Builder > Content Restriction%2$s and use each page / post / custom post type individual meta-box to restrict content.", "profile-builder"); ?>
533
  <?php __("\"Admin Approval\" Feature:", "profile-builder"); ?>
534
  <?php __("You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s.", "profile-builder"); ?>
535
  <?php __("Allow Users to Log in With:", "profile-builder"); ?>
@@ -1164,8 +1166,6 @@
1164
  <?php __("Status", "profile-builder"); ?>
1165
  <?php __("Active", "profile-builder"); ?>
1166
  <?php __("Inactive", "profile-builder"); ?>
1167
- <?php __("Admin Email Customizer", "profile-builder"); ?>
1168
- <?php __("User Email Customizer", "profile-builder"); ?>
1169
  <?php __("Your account has to be confirmed by an administrator before you can log in.", "profile-builder"); ?>
1170
  <?php __("Admin Approval", "profile-builder"); ?>
1171
  <?php __("Do you want to", "profile-builder"); ?>
@@ -1227,6 +1227,9 @@
1227
  <?php __("Check if you wish to add custom messages for this %s.", "profile-builder"); ?>
1228
  <?php __("Messages for logged-out users", "profile-builder"); ?>
1229
  <?php __("Messages for logged-in users", "profile-builder"); ?>
 
 
 
1230
  <?php __("If you select \"Message\", the post's content will be protected by being replaced with a custom message.", "profile-builder"); ?>
1231
  <?php __("If you select \"Redirect\", the post's content will be protected by redirecting the user to the URL you specify. The redirect happens only when accessing a single post. On archive pages the restriction message will be displayed, instead of the content.", "profile-builder"); ?>
1232
  <?php __("Redirect URL", "profile-builder"); ?>
@@ -1336,6 +1339,8 @@
1336
  <?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"); ?>
1337
  <?php __("the URL of the previously visited page", "profile-builder"); ?>
1338
  <?php __("You can't add duplicate redirects!", "profile-builder"); ?>
 
 
1339
  <?php __("These settings are also replicated in the \"User Email Customizer\" settings-page upon save.", "profile-builder"); ?>
1340
  <?php __("Valid tags {{reply_to}} and {{site_name}}", "profile-builder"); ?>
1341
  <?php __("From (name)", "profile-builder"); ?>
@@ -1366,6 +1371,8 @@
1366
  <?php __("Approve User Url", "profile-builder"); ?>
1367
  <?php __("Approve User Link", "profile-builder"); ?>
1368
  <?php __("The users selected password at signup", "profile-builder"); ?>
 
 
1369
  <?php __("These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save.", "profile-builder"); ?>
1370
  <?php __("<h3>Welcome to {{site_name}}!</h3>\n<p>Your username is:{{username}} and password:{{password}}</p>\n", "profile-builder"); ?>
1371
  <?php __("<p>To activate your user, please click the following link:<br/>\n{{{activation_link}}}</p>\n<p>After you activate, you will receive another email with your credentials.</p>\n", "profile-builder"); ?>
514
  <?php __("Because we care about our clients, please leave us feedback on why you are no longer using our plugin.", "profile-builder"); ?>
515
  <?php __("Skip and Deactivate", "profile-builder"); ?>
516
  <?php __("Submit and Deactivate", "profile-builder"); ?>
517
+ <?php __("Admin Bar", "profile-builder"); ?>
518
+ <?php __("User Emails", "profile-builder"); ?>
519
+ <?php __("Administrator Emails", "profile-builder"); ?>
520
+ <?php __("Profile Builder Settings", "profile-builder"); ?>
521
  <?php __("Load Profile Builder's own CSS file in the front-end:", "profile-builder"); ?>
522
  <?php __("You can find the default file here: %1$s", "profile-builder"); ?>
523
  <?php __("\"Email Confirmation\" Activated:", "profile-builder"); ?>
532
  <?php __("Select on what user roles to activate Admin Approval.", "profile-builder"); ?>
533
  <?php __("\"Roles Editor\" Activated:", "profile-builder"); ?>
534
  <?php __("You can add / edit user roles at %1$sUsers > Roles Editor%2$s.", "profile-builder"); ?>
 
 
535
  <?php __("\"Admin Approval\" Feature:", "profile-builder"); ?>
536
  <?php __("You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s.", "profile-builder"); ?>
537
  <?php __("Allow Users to Log in With:", "profile-builder"); ?>
1166
  <?php __("Status", "profile-builder"); ?>
1167
  <?php __("Active", "profile-builder"); ?>
1168
  <?php __("Inactive", "profile-builder"); ?>
 
 
1169
  <?php __("Your account has to be confirmed by an administrator before you can log in.", "profile-builder"); ?>
1170
  <?php __("Admin Approval", "profile-builder"); ?>
1171
  <?php __("Do you want to", "profile-builder"); ?>
1227
  <?php __("Check if you wish to add custom messages for this %s.", "profile-builder"); ?>
1228
  <?php __("Messages for logged-out users", "profile-builder"); ?>
1229
  <?php __("Messages for logged-in users", "profile-builder"); ?>
1230
+ <?php __("Content Restriction Settings", "profile-builder"); ?>
1231
+ <?php __("Enable Content Restriction", "profile-builder"); ?>
1232
+ <?php __("Activate Content Restriction", "profile-builder"); ?>
1233
  <?php __("If you select \"Message\", the post's content will be protected by being replaced with a custom message.", "profile-builder"); ?>
1234
  <?php __("If you select \"Redirect\", the post's content will be protected by redirecting the user to the URL you specify. The redirect happens only when accessing a single post. On archive pages the restriction message will be displayed, instead of the content.", "profile-builder"); ?>
1235
  <?php __("Redirect URL", "profile-builder"); ?>
1339
  <?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"); ?>
1340
  <?php __("the URL of the previously visited page", "profile-builder"); ?>
1341
  <?php __("You can't add duplicate redirects!", "profile-builder"); ?>
1342
+ <?php __("Admin Email Customizer", "profile-builder"); ?>
1343
+ <?php __("Admin Email Customizer Settings", "profile-builder"); ?>
1344
  <?php __("These settings are also replicated in the \"User Email Customizer\" settings-page upon save.", "profile-builder"); ?>
1345
  <?php __("Valid tags {{reply_to}} and {{site_name}}", "profile-builder"); ?>
1346
  <?php __("From (name)", "profile-builder"); ?>
1371
  <?php __("Approve User Url", "profile-builder"); ?>
1372
  <?php __("Approve User Link", "profile-builder"); ?>
1373
  <?php __("The users selected password at signup", "profile-builder"); ?>
1374
+ <?php __("User Email Customizer", "profile-builder"); ?>
1375
+ <?php __("User Email Customizer Settings", "profile-builder"); ?>
1376
  <?php __("These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save.", "profile-builder"); ?>
1377
  <?php __("<h3>Welcome to {{site_name}}!</h3>\n<p>Your username is:{{username}} and password:{{password}}</p>\n", "profile-builder"); ?>
1378
  <?php __("<p>To activate your user, please click the following link:<br/>\n{{{activation_link}}}</p>\n<p>After you activate, you will receive another email with your credentials.</p>\n", "profile-builder"); ?>
translation/profile-builder.pot CHANGED
@@ -25,7 +25,7 @@ msgstr ""
25
  msgid "Choose (Single) User Listing to display under bbPress user Profile tab:"
26
  msgstr ""
27
 
28
- #: ../pb-add-on-bbpress/bbpress-page.php:82, ../pb-add-on-bbpress/bbpress-page.php:117, ../pb-add-on-woocommerce/woosync-page.php:80, ../pb-add-on-woocommerce/woosync-page.php:115, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:552, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:233, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:308, ../profile-builder-2.0/features/content-restriction/content-restriction.php:91
29
  msgid "None"
30
  msgstr ""
31
 
@@ -37,7 +37,7 @@ msgstr ""
37
  msgid "Choose Edit Profile form to display under bbPress Profile Edit tab:"
38
  msgstr ""
39
 
40
- #: ../pb-add-on-bbpress/bbpress-page.php:118, ../pb-add-on-buddypress/buddypress-page.php:98, ../pb-add-on-woocommerce/woosync-page.php:116
41
  msgid "Default Edit Profile"
42
  msgstr ""
43
 
@@ -85,7 +85,7 @@ msgstr ""
85
  msgid "Registration form:"
86
  msgstr ""
87
 
88
- #: ../pb-add-on-buddypress/buddypress-page.php:65, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:82
89
  msgid "Default Registration"
90
  msgstr ""
91
 
@@ -393,7 +393,7 @@ msgstr ""
393
  msgid "The email confirmation does not match your email address."
394
  msgstr ""
395
 
396
- #: ../pb-add-on-field-visibility/index.php:202, ../profile-builder-2.0/admin/admin-bar.php:58
397
  msgid "Visibility"
398
  msgstr ""
399
 
@@ -653,11 +653,11 @@ msgstr ""
653
  msgid "Replace labels with placeholders:"
654
  msgstr ""
655
 
656
- #: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:323, ../profile-builder-2.0/admin/general-settings.php:42, ../profile-builder-2.0/admin/general-settings.php:55, ../profile-builder-2.0/admin/general-settings.php:104, ../profile-builder-2.0/admin/general-settings.php:151, ../profile-builder-2.0/admin/general-settings.php:170, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230, ../profile-builder-2.0/modules/user-listing/userlisting.php:2318
657
  msgid "Yes"
658
  msgstr ""
659
 
660
- #: ../pb-add-on-placeholder-labels/pbpl.php:172, ../pb-add-on-social-connect/index.php:324, ../profile-builder-2.0/admin/general-settings.php:56, ../profile-builder-2.0/admin/general-settings.php:105, ../profile-builder-2.0/admin/general-settings.php:150, ../profile-builder-2.0/admin/general-settings.php:169, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230
661
  msgid "No"
662
  msgstr ""
663
 
@@ -797,7 +797,7 @@ msgstr ""
797
  msgid "Default Social Connect CSS in the Front-end"
798
  msgstr ""
799
 
800
- #: ../pb-add-on-social-connect/index.php:236, ../profile-builder-2.0/admin/admin-functions.php:226
801
  msgid "Settings"
802
  msgstr ""
803
 
@@ -889,7 +889,7 @@ msgstr ""
889
  msgid "Profile Builder not active!"
890
  msgstr ""
891
 
892
- #: ../pb-add-on-social-connect/index.php:832, ../profile-builder-2.0/admin/admin-functions.php:37, ../profile-builder-2.0/admin/general-settings.php:10, ../profile-builder-2.0/admin/general-settings.php:10, ../profile-builder-2.0/admin/general-settings.php:35
893
  msgid "General Settings"
894
  msgstr ""
895
 
@@ -909,179 +909,179 @@ msgstr ""
909
  msgid "Your account is linked with:"
910
  msgstr ""
911
 
912
- #: ../pb-add-on-woocommerce/billing-fields.php:5, ../pb-add-on-woocommerce/shipping-fields.php:5
913
  msgid "Country"
914
  msgstr ""
915
 
916
- #: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, ../profile-builder-2.0/admin/manage-fields.php:245
917
  msgid "First Name"
918
  msgstr ""
919
 
920
- #: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, ../profile-builder-2.0/admin/manage-fields.php:246
921
  msgid "Last Name"
922
  msgstr ""
923
 
924
- #: ../pb-add-on-woocommerce/billing-fields.php:8, ../pb-add-on-woocommerce/shipping-fields.php:8
925
  msgid "Company Name"
926
  msgstr ""
927
 
928
- #: ../pb-add-on-woocommerce/billing-fields.php:9, ../pb-add-on-woocommerce/shipping-fields.php:9
929
  msgid "Address"
930
  msgstr ""
931
 
932
- #: ../pb-add-on-woocommerce/billing-fields.php:11, ../pb-add-on-woocommerce/shipping-fields.php:11
933
  msgid "Town / City"
934
  msgstr ""
935
 
936
- #: ../pb-add-on-woocommerce/billing-fields.php:12, ../pb-add-on-woocommerce/shipping-fields.php:12
937
  msgid "State / County"
938
  msgstr ""
939
 
940
- #: ../pb-add-on-woocommerce/billing-fields.php:13, ../pb-add-on-woocommerce/shipping-fields.php:13
941
  msgid "Postcode / Zip"
942
  msgstr ""
943
 
944
- #: ../pb-add-on-woocommerce/billing-fields.php:14
945
  msgid "Email Address"
946
  msgstr ""
947
 
948
- #: ../pb-add-on-woocommerce/billing-fields.php:15
949
  msgid "Phone"
950
  msgstr ""
951
 
952
- #: ../pb-add-on-woocommerce/billing-fields.php:278
953
  msgid "Ship to a different address?"
954
  msgstr ""
955
 
956
- #: ../pb-add-on-woocommerce/index.php:160, ../pb-add-on-woocommerce/index.php:729
957
  msgid "Billing Address"
958
  msgstr ""
959
 
960
- #: ../pb-add-on-woocommerce/index.php:160
961
  msgid "Displays customer billing fields in front-end. "
962
  msgstr ""
963
 
964
- #: ../pb-add-on-woocommerce/index.php:164, ../pb-add-on-woocommerce/index.php:730
965
  msgid "Shipping Address"
966
  msgstr ""
967
 
968
- #: ../pb-add-on-woocommerce/index.php:164
969
  msgid "Displays customer shipping fields in front-end. "
970
  msgstr ""
971
 
972
- #: ../pb-add-on-woocommerce/index.php:239, ../pb-add-on-woocommerce/index.php:258, ../pb-add-on-woocommerce/index.php:355, ../pb-add-on-woocommerce/index.php:358, ../pb-add-on-woocommerce/index.php:785
973
  msgid "Address line 2"
974
  msgstr ""
975
 
976
- #: ../pb-add-on-woocommerce/index.php:247
977
  msgid "Billing Fields"
978
  msgstr ""
979
 
980
- #: ../pb-add-on-woocommerce/index.php:247
981
  msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
982
  msgstr ""
983
 
984
- #: ../pb-add-on-woocommerce/index.php:248
985
  msgid "Billing Fields Order"
986
  msgstr ""
987
 
988
- #: ../pb-add-on-woocommerce/index.php:248
989
  msgid "Save the billing fields order from the billing fields checkboxes"
990
  msgstr ""
991
 
992
- #: ../pb-add-on-woocommerce/index.php:249
993
  msgid "Billing Fields Name"
994
  msgstr ""
995
 
996
- #: ../pb-add-on-woocommerce/index.php:249
997
  msgid "Save the billing fields names"
998
  msgstr ""
999
 
1000
- #: ../pb-add-on-woocommerce/index.php:266
1001
  msgid "Shipping Fields"
1002
  msgstr ""
1003
 
1004
- #: ../pb-add-on-woocommerce/index.php:266
1005
  msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
1006
  msgstr ""
1007
 
1008
- #: ../pb-add-on-woocommerce/index.php:267
1009
  msgid "Shipping Fields Order"
1010
  msgstr ""
1011
 
1012
- #: ../pb-add-on-woocommerce/index.php:267
1013
  msgid "Save the shipping fields order from the billing fields checkboxes"
1014
  msgstr ""
1015
 
1016
- #: ../pb-add-on-woocommerce/index.php:268
1017
  msgid "Shipping Fields Name"
1018
  msgstr ""
1019
 
1020
- #: ../pb-add-on-woocommerce/index.php:268
1021
  msgid "Save the shipping fields names"
1022
  msgstr ""
1023
 
1024
- #: ../pb-add-on-woocommerce/index.php:296
1025
  msgid "Field Name"
1026
  msgstr ""
1027
 
1028
- #: ../pb-add-on-woocommerce/index.php:297, ../profile-builder-2.0/admin/manage-fields.php:203
1029
  msgid "Required"
1030
  msgstr ""
1031
 
1032
- #: ../pb-add-on-woocommerce/index.php:360
1033
  msgid "Click to edit "
1034
  msgstr ""
1035
 
1036
- #: ../pb-add-on-woocommerce/index.php:384, ../profile-builder-2.0/front-end/default-fields/email/email.php:47
1037
  msgid "The email you entered is not a valid email address."
1038
  msgstr ""
1039
 
1040
- #: ../pb-add-on-woocommerce/index.php:642
1041
  msgid "No options available. Please select one country."
1042
  msgstr ""
1043
 
1044
- #: ../pb-add-on-woocommerce/index.php:661, ../pb-add-on-woocommerce/index.php:686
1045
  msgid "Billing "
1046
  msgstr ""
1047
 
1048
- #: ../pb-add-on-woocommerce/index.php:669, ../pb-add-on-woocommerce/index.php:693
1049
  msgid "Shipping "
1050
  msgstr ""
1051
 
1052
- #: ../pb-add-on-woocommerce/index.php:846
1053
  msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
1054
  msgstr ""
1055
 
1056
- #: ../pb-add-on-woocommerce/woo-checkout-field-support.php:65
1057
  msgid "Display on WooCommerce Checkout"
1058
  msgstr ""
1059
 
1060
- #: ../pb-add-on-woocommerce/woo-checkout-field-support.php:65
1061
  msgid "Whether the field should be added to the WooCommerce checkout form or not"
1062
  msgstr ""
1063
 
1064
- #: ../pb-add-on-woocommerce/woosync-page.php:23, ../pb-add-on-woocommerce/woosync-page.php:23, ../pb-add-on-woocommerce/woosync-page.php:70
1065
  msgid "WooCommerce Sync"
1066
  msgstr ""
1067
 
1068
- #: ../pb-add-on-woocommerce/woosync-page.php:76
1069
  msgid "Choose Register form to display on My Account page:"
1070
  msgstr ""
1071
 
1072
- #: ../pb-add-on-woocommerce/woosync-page.php:81
1073
  msgid "Default Register"
1074
  msgstr ""
1075
 
1076
- #: ../pb-add-on-woocommerce/woosync-page.php:104
1077
  msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
1078
  msgstr ""
1079
 
1080
- #: ../pb-add-on-woocommerce/woosync-page.php:111
1081
  msgid "Choose Edit Profile form to display on My Account page:"
1082
  msgstr ""
1083
 
1084
- #: ../pb-add-on-woocommerce/woosync-page.php:139
1085
  msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1086
  msgstr ""
1087
 
@@ -1327,7 +1327,7 @@ msgstr ""
1327
  msgid "Save the communication preferences order"
1328
  msgstr ""
1329
 
1330
- #: ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:44, front-end/select2-field.php:72, front-end/select2-multiple-field.php:86, ../profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:74, ../profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45, ../profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45, ../profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40, ../profile-builder-2.0/front-end/extra-fields/input/input.php:30, ../profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34, ../profile-builder-2.0/front-end/extra-fields/map/map.php:51, ../profile-builder-2.0/front-end/extra-fields/number/number.php:30, ../profile-builder-2.0/front-end/extra-fields/phone/phone.php:39, ../profile-builder-2.0/front-end/extra-fields/radio/radio.php:44, ../profile-builder-2.0/front-end/extra-fields/select/select.php:51, ../profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:58, ../profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46, ../profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49, ../profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30, ../profile-builder-2.0/front-end/extra-fields/upload/upload.php:70, ../profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
1331
  msgid "required"
1332
  msgstr ""
1333
 
@@ -1503,19 +1503,19 @@ msgid ""
1503
  ""
1504
  msgstr ""
1505
 
1506
- #: admin/manage-fields.php:52
1507
  msgid "Maximum Selections"
1508
  msgstr ""
1509
 
1510
- #: admin/manage-fields.php:52
1511
  msgid "Select2 multi-value select boxes can set restrictions regarding the maximum number of options selected."
1512
  msgstr ""
1513
 
1514
- #: admin/manage-fields.php:53
1515
  msgid "User Inputted Options"
1516
  msgstr ""
1517
 
1518
- #: admin/manage-fields.php:53
1519
  msgid "Check this to allow users to create their own options beside the pre-existing ones."
1520
  msgstr ""
1521
 
@@ -1691,23 +1691,23 @@ msgstr ""
1691
  msgid "Admin Bar Settings"
1692
  msgstr ""
1693
 
1694
- #: ../profile-builder-2.0/admin/admin-bar.php:48
1695
  msgid "Choose which user roles view the admin bar in the front-end of the website."
1696
  msgstr ""
1697
 
1698
- #: ../profile-builder-2.0/admin/admin-bar.php:57
1699
  msgid "User-Role"
1700
  msgstr ""
1701
 
1702
- #: ../profile-builder-2.0/admin/admin-bar.php:73, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230
1703
  msgid "Default"
1704
  msgstr ""
1705
 
1706
- #: ../profile-builder-2.0/admin/admin-bar.php:74
1707
  msgid "Show"
1708
  msgstr ""
1709
 
1710
- #: ../profile-builder-2.0/admin/admin-bar.php:75, ../profile-builder-2.0/modules/user-listing/userlisting.php:1606
1711
  msgid "Hide"
1712
  msgstr ""
1713
 
@@ -1727,19 +1727,19 @@ msgstr ""
1727
  msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
1728
  msgstr ""
1729
 
1730
- #: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:229
1731
  msgid "Very weak"
1732
  msgstr ""
1733
 
1734
- #: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:230, ../profile-builder-2.0/features/functions.php:571, ../profile-builder-2.0/features/functions.php:595
1735
  msgid "Weak"
1736
  msgstr ""
1737
 
1738
- #: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:231, ../profile-builder-2.0/features/functions.php:571, ../profile-builder-2.0/features/functions.php:595
1739
  msgid "Medium"
1740
  msgstr ""
1741
 
1742
- #: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:232, ../profile-builder-2.0/features/functions.php:571, ../profile-builder-2.0/features/functions.php:595
1743
  msgid "Strong"
1744
  msgstr ""
1745
 
@@ -1751,7 +1751,7 @@ msgstr ""
1751
  msgid "Add Field"
1752
  msgstr ""
1753
 
1754
- #: ../profile-builder-2.0/admin/admin-functions.php:189, ../profile-builder-2.0/features/content-restriction/content-restriction.php:117, ../profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390
1755
  msgid "Save Settings"
1756
  msgstr ""
1757
 
@@ -1867,7 +1867,7 @@ msgstr ""
1867
  msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
1868
  msgstr ""
1869
 
1870
- #: ../profile-builder-2.0/admin/basic-info.php:84, ../profile-builder-2.0/features/content-restriction/content-restriction.php:17, ../profile-builder-2.0/features/content-restriction/content-restriction.php:17, ../profile-builder-2.0/features/content-restriction/content-restriction.php:44
1871
  msgid "Content Restriction"
1872
  msgstr ""
1873
 
@@ -2007,7 +2007,7 @@ msgstr ""
2007
  msgid "Find out more about PRO Modules"
2008
  msgstr ""
2009
 
2010
- #: ../profile-builder-2.0/admin/basic-info.php:159, ../profile-builder-2.0/modules/modules.php:89, ../profile-builder-2.0/modules/user-listing/userlisting.php:11, ../profile-builder-2.0/modules/user-listing/userlisting.php:12, ../profile-builder-2.0/modules/user-listing/userlisting.php:17, ../profile-builder-2.0/modules/user-listing/userlisting.php:23
2011
  msgid "User Listing"
2012
  msgstr ""
2013
 
@@ -2019,7 +2019,7 @@ msgstr ""
2019
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
2020
  msgstr ""
2021
 
2022
- #: ../profile-builder-2.0/admin/basic-info.php:167
2023
  msgid "Email Customizer"
2024
  msgstr ""
2025
 
@@ -2027,7 +2027,7 @@ msgstr ""
2027
  msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
2028
  msgstr ""
2029
 
2030
- #: ../profile-builder-2.0/admin/basic-info.php:171, ../profile-builder-2.0/modules/modules.php:110, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:34
2031
  msgid "Custom Redirects"
2032
  msgstr ""
2033
 
@@ -2035,7 +2035,7 @@ msgstr ""
2035
  msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
2036
  msgstr ""
2037
 
2038
- #: ../profile-builder-2.0/admin/basic-info.php:177, ../profile-builder-2.0/modules/modules.php:75
2039
  msgid "Multiple Registration Forms"
2040
  msgstr ""
2041
 
@@ -2043,7 +2043,7 @@ msgstr ""
2043
  msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
2044
  msgstr ""
2045
 
2046
- #: ../profile-builder-2.0/admin/basic-info.php:181, ../profile-builder-2.0/modules/modules.php:82
2047
  msgid "Multiple Edit-profile Forms"
2048
  msgstr ""
2049
 
@@ -2051,7 +2051,7 @@ msgstr ""
2051
  msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
2052
  msgstr ""
2053
 
2054
- #: ../profile-builder-2.0/admin/basic-info.php:185, ../profile-builder-2.0/modules/modules.php:117
2055
  msgid "Repeater Fields"
2056
  msgstr ""
2057
 
@@ -2083,119 +2083,127 @@ msgstr ""
2083
  msgid "Submit and Deactivate"
2084
  msgstr ""
2085
 
2086
- #: ../profile-builder-2.0/admin/general-settings.php:39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2087
  msgid "Load Profile Builder's own CSS file in the front-end:"
2088
  msgstr ""
2089
 
2090
- #: ../profile-builder-2.0/admin/general-settings.php:44
2091
  msgid "You can find the default file here: %1$s"
2092
  msgstr ""
2093
 
2094
- #: ../profile-builder-2.0/admin/general-settings.php:51
2095
  msgid "\"Email Confirmation\" Activated:"
2096
  msgstr ""
2097
 
2098
- #: ../profile-builder-2.0/admin/general-settings.php:59
2099
  msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
2100
  msgstr ""
2101
 
2102
- #: ../profile-builder-2.0/admin/general-settings.php:61
2103
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
2104
  msgstr ""
2105
 
2106
- #: ../profile-builder-2.0/admin/general-settings.php:69
2107
  msgid "\"Email Confirmation\" Landing Page:"
2108
  msgstr ""
2109
 
2110
- #: ../profile-builder-2.0/admin/general-settings.php:74
2111
  msgid "Existing Pages"
2112
  msgstr ""
2113
 
2114
- #: ../profile-builder-2.0/admin/general-settings.php:89
2115
  msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
2116
  msgstr ""
2117
 
2118
- #: ../profile-builder-2.0/admin/general-settings.php:100
2119
  msgid "\"Admin Approval\" Activated:"
2120
  msgstr ""
2121
 
2122
- #: ../profile-builder-2.0/admin/general-settings.php:108
2123
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
2124
  msgstr ""
2125
 
2126
- #: ../profile-builder-2.0/admin/general-settings.php:115
2127
  msgid "\"Admin Approval\" on User Role:"
2128
  msgstr ""
2129
 
2130
- #: ../profile-builder-2.0/admin/general-settings.php:134
2131
  msgid "Select on what user roles to activate Admin Approval."
2132
  msgstr ""
2133
 
2134
- #: ../profile-builder-2.0/admin/general-settings.php:146
2135
  msgid "\"Roles Editor\" Activated:"
2136
  msgstr ""
2137
 
2138
- #: ../profile-builder-2.0/admin/general-settings.php:154
2139
  msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
2140
  msgstr ""
2141
 
2142
- #: ../profile-builder-2.0/admin/general-settings.php:165
2143
- msgid "\"Content Restriction\" Activated:"
2144
- msgstr ""
2145
-
2146
- #: ../profile-builder-2.0/admin/general-settings.php:173
2147
- msgid "Set your settings at %1$sProfile Builder > Content Restriction%2$s and use each page / post / custom post type individual meta-box to restrict content."
2148
- msgstr ""
2149
-
2150
- #: ../profile-builder-2.0/admin/general-settings.php:184
2151
  msgid "\"Admin Approval\" Feature:"
2152
  msgstr ""
2153
 
2154
- #: ../profile-builder-2.0/admin/general-settings.php:187
2155
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
2156
  msgstr ""
2157
 
2158
- #: ../profile-builder-2.0/admin/general-settings.php:194
2159
  msgid "Allow Users to Log in With:"
2160
  msgstr ""
2161
 
2162
- #: ../profile-builder-2.0/admin/general-settings.php:198
2163
  msgid "Username and Email"
2164
  msgstr ""
2165
 
2166
- #: ../profile-builder-2.0/admin/general-settings.php:199, ../profile-builder-2.0/admin/manage-fields.php:244, ../profile-builder-2.0/front-end/login.php:241, ../profile-builder-2.0/front-end/login.php:255, ../profile-builder-2.0/front-end/login.php:383, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:166, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:60, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:28, ../profile-builder-2.0/modules/user-listing/userlisting.php:111, ../profile-builder-2.0/modules/user-listing/userlisting.php:303, ../profile-builder-2.0/modules/user-listing/userlisting.php:769, ../profile-builder-2.0/modules/user-listing/userlisting.php:2269
2167
  msgid "Username"
2168
  msgstr ""
2169
 
2170
- #: ../profile-builder-2.0/admin/general-settings.php:200, ../profile-builder-2.0/front-end/login.php:380, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:29, ../profile-builder-2.0/modules/user-listing/userlisting.php:775, ../profile-builder-2.0/modules/user-listing/userlisting.php:2270
2171
  msgid "Email"
2172
  msgstr ""
2173
 
2174
- #: ../profile-builder-2.0/admin/general-settings.php:203
2175
  msgid "\"Username and Email\" - users can Log In with both Username and Email."
2176
  msgstr ""
2177
 
2178
- #: ../profile-builder-2.0/admin/general-settings.php:204
2179
  msgid "\"Username\" - users can Log In only with Username."
2180
  msgstr ""
2181
 
2182
- #: ../profile-builder-2.0/admin/general-settings.php:205
2183
  msgid "\"Email\" - users can Log In only with Email."
2184
  msgstr ""
2185
 
2186
- #: ../profile-builder-2.0/admin/general-settings.php:212
2187
  msgid "Minimum Password Length:"
2188
  msgstr ""
2189
 
2190
- #: ../profile-builder-2.0/admin/general-settings.php:217
2191
  msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
2192
  msgstr ""
2193
 
2194
- #: ../profile-builder-2.0/admin/general-settings.php:224
2195
  msgid "Minimum Password Strength:"
2196
  msgstr ""
2197
 
2198
- #: ../profile-builder-2.0/admin/general-settings.php:228
2199
  msgid "Disabled"
2200
  msgstr ""
2201
 
@@ -2611,7 +2619,7 @@ msgstr ""
2611
  msgid "Usernames cannot be changed."
2612
  msgstr ""
2613
 
2614
- #: ../profile-builder-2.0/admin/manage-fields.php:247, ../profile-builder-2.0/modules/user-listing/userlisting.php:808, ../profile-builder-2.0/modules/user-listing/userlisting.php:2277
2615
  msgid "Nickname"
2616
  msgstr ""
2617
 
@@ -2619,7 +2627,7 @@ msgstr ""
2619
  msgid "Display name publicly as"
2620
  msgstr ""
2621
 
2622
- #: ../profile-builder-2.0/admin/manage-fields.php:251, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:33, ../profile-builder-2.0/modules/user-listing/userlisting.php:120, ../profile-builder-2.0/modules/user-listing/userlisting.php:790, ../profile-builder-2.0/modules/user-listing/userlisting.php:2271
2623
  msgid "Website"
2624
  msgstr ""
2625
 
@@ -2635,7 +2643,7 @@ msgstr ""
2635
  msgid "Jabber / Google Talk"
2636
  msgstr ""
2637
 
2638
- #: ../profile-builder-2.0/admin/manage-fields.php:261, ../profile-builder-2.0/modules/user-listing/userlisting.php:123, ../profile-builder-2.0/modules/user-listing/userlisting.php:793, ../profile-builder-2.0/modules/user-listing/userlisting.php:2272
2639
  msgid "Biographical Info"
2640
  msgstr ""
2641
 
@@ -4409,7 +4417,7 @@ msgstr ""
4409
  msgid "Incorrect phone number"
4410
  msgstr ""
4411
 
4412
- #: ../profile-builder-2.0/features/functions.php:730, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:402, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:394
4413
  msgid "Save Changes"
4414
  msgstr ""
4415
 
@@ -4693,38 +4701,30 @@ msgstr ""
4693
  msgid "There was an error while trying to activate the user."
4694
  msgstr ""
4695
 
4696
- #: ../profile-builder-2.0/modules/modules.php:11, ../profile-builder-2.0/modules/modules.php:11, ../profile-builder-2.0/modules/modules.php:58
4697
  msgid "Modules"
4698
  msgstr ""
4699
 
4700
- #: ../profile-builder-2.0/modules/modules.php:59
4701
  msgid "Here you can activate / deactivate available modules for Profile Builder."
4702
  msgstr ""
4703
 
4704
- #: ../profile-builder-2.0/modules/modules.php:69
4705
  msgid "Name/Description"
4706
  msgstr ""
4707
 
4708
- #: ../profile-builder-2.0/modules/modules.php:70
4709
  msgid "Status"
4710
  msgstr ""
4711
 
4712
- #: ../profile-builder-2.0/modules/modules.php:77, ../profile-builder-2.0/modules/modules.php:84, ../profile-builder-2.0/modules/modules.php:91, ../profile-builder-2.0/modules/modules.php:98, ../profile-builder-2.0/modules/modules.php:105, ../profile-builder-2.0/modules/modules.php:112, ../profile-builder-2.0/modules/modules.php:119
4713
  msgid "Active"
4714
  msgstr ""
4715
 
4716
- #: ../profile-builder-2.0/modules/modules.php:78, ../profile-builder-2.0/modules/modules.php:85, ../profile-builder-2.0/modules/modules.php:92, ../profile-builder-2.0/modules/modules.php:99, ../profile-builder-2.0/modules/modules.php:106, ../profile-builder-2.0/modules/modules.php:113, ../profile-builder-2.0/modules/modules.php:120
4717
  msgid "Inactive"
4718
  msgstr ""
4719
 
4720
- #: ../profile-builder-2.0/modules/modules.php:96, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12
4721
- msgid "Admin Email Customizer"
4722
- msgstr ""
4723
-
4724
- #: ../profile-builder-2.0/modules/modules.php:103, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12
4725
- msgid "User Email Customizer"
4726
- msgstr ""
4727
-
4728
  #: ../profile-builder-2.0/assets/misc/plugin-compatibilities.php:237
4729
  msgid "Your account has to be confirmed by an administrator before you can log in."
4730
  msgstr ""
@@ -4825,15 +4825,15 @@ msgstr ""
4825
  msgid "Approve"
4826
  msgstr ""
4827
 
4828
- #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:167, ../profile-builder-2.0/modules/user-listing/userlisting.php:304, ../profile-builder-2.0/modules/user-listing/userlisting.php:781, ../profile-builder-2.0/modules/user-listing/userlisting.php:2274
4829
  msgid "Firstname"
4830
  msgstr ""
4831
 
4832
- #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:168, ../profile-builder-2.0/modules/user-listing/userlisting.php:784, ../profile-builder-2.0/modules/user-listing/userlisting.php:2275
4833
  msgid "Lastname"
4834
  msgstr ""
4835
 
4836
- #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:170, ../profile-builder-2.0/features/roles-editor/roles-editor.php:255, ../profile-builder-2.0/modules/user-listing/userlisting.php:159, ../profile-builder-2.0/modules/user-listing/userlisting.php:305, ../profile-builder-2.0/modules/user-listing/userlisting.php:811, ../profile-builder-2.0/modules/user-listing/userlisting.php:2279
4837
  msgid "Role"
4838
  msgstr ""
4839
 
@@ -4901,15 +4901,15 @@ msgstr ""
4901
  msgid "Display Options"
4902
  msgstr ""
4903
 
4904
- #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:36, ../profile-builder-2.0/features/content-restriction/content-restriction.php:56
4905
  msgid "Message"
4906
  msgstr ""
4907
 
4908
- #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:36, ../profile-builder-2.0/features/content-restriction/content-restriction.php:61, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230
4909
  msgid "Redirect"
4910
  msgstr ""
4911
 
4912
- #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:41, ../profile-builder-2.0/features/content-restriction/content-restriction.php:51
4913
  msgid "Type of Restriction"
4914
  msgstr ""
4915
 
@@ -4969,39 +4969,51 @@ msgstr ""
4969
  msgid "Messages for logged-in users"
4970
  msgstr ""
4971
 
4972
- #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:64
 
 
 
 
 
 
 
 
 
 
 
 
4973
  msgid "If you select \"Message\", the post's content will be protected by being replaced with a custom message."
4974
  msgstr ""
4975
 
4976
- #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:65
4977
  msgid "If you select \"Redirect\", the post's content will be protected by redirecting the user to the URL you specify. The redirect happens only when accessing a single post. On archive pages the restriction message will be displayed, instead of the content."
4978
  msgstr ""
4979
 
4980
- #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:70, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:68, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:98, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:117, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:142
4981
  msgid "Redirect URL"
4982
  msgstr ""
4983
 
4984
- #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:75
4985
  msgid "Message for logged-out users"
4986
  msgstr ""
4987
 
4988
- #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:80
4989
  msgid "Message for logged-in users"
4990
  msgstr ""
4991
 
4992
- #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:85
4993
  msgid "Restricted Posts Preview"
4994
  msgstr ""
4995
 
4996
- #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:100
4997
  msgid "Show the first %s words of the post's content"
4998
  msgstr ""
4999
 
5000
- #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:108
5001
  msgid "Show the content before the \"more\" tag"
5002
  msgstr ""
5003
 
5004
- #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:112
5005
  msgid "Show a portion of the restricted post to logged-out users or users that are not allowed to see it."
5006
  msgstr ""
5007
 
@@ -5081,7 +5093,7 @@ msgstr ""
5081
  msgid "There was an error while trying to activate the user"
5082
  msgstr ""
5083
 
5084
- #: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:522, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69
5085
  msgid "A new subscriber has (been) registered!"
5086
  msgstr ""
5087
 
@@ -5093,7 +5105,7 @@ msgstr ""
5093
  msgid "[%1$s] Your new account information"
5094
  msgstr ""
5095
 
5096
- #: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:580, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:589, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:494, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:501, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:515
5097
  msgid "Your selected password at signup"
5098
  msgstr ""
5099
 
@@ -5405,31 +5417,39 @@ msgstr ""
5405
  msgid "You can't add duplicate redirects!"
5406
  msgstr ""
5407
 
5408
- #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
 
 
 
 
 
 
 
 
5409
  msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
5410
  msgstr ""
5411
 
5412
- #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
5413
  msgid "Valid tags {{reply_to}} and {{site_name}}"
5414
  msgstr ""
5415
 
5416
- #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41
5417
  msgid "From (name)"
5418
  msgstr ""
5419
 
5420
- #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49
5421
  msgid "From (reply-to email)"
5422
  msgstr ""
5423
 
5424
- #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54
5425
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
5426
  msgstr ""
5427
 
5428
- #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57
5429
  msgid "Common Settings"
5430
  msgstr ""
5431
 
5432
- #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60
5433
  msgid ""
5434
  "<p>New subscriber on {{site_name}}.</p>\n"
5435
  "<p>Username:{{username}}</p>\n"
@@ -5437,15 +5457,15 @@ msgid ""
5437
  ""
5438
  msgstr ""
5439
 
5440
- #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:65, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:89, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:113, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:68, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:92, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:117, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:141, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:166, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:191, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:216, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:243
5441
  msgid "Email Subject"
5442
  msgstr ""
5443
 
5444
- #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:80
5445
  msgid "Default Registration & Registration with Email Confirmation"
5446
  msgstr ""
5447
 
5448
- #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:83
5449
  msgid ""
5450
  "<p>New subscriber on {{site_name}}.</p>\n"
5451
  "<p>Username:{{username}}</p>\n"
@@ -5454,18 +5474,18 @@ msgid ""
5454
  "so please remember that you need to approve this user before he/she can log in!</p>"
5455
  msgstr ""
5456
 
5457
- #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:104, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132
5458
  msgid "Registration with Admin Approval"
5459
  msgstr ""
5460
 
5461
- #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:107
5462
  msgid ""
5463
  "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
5464
  "<p>His/her new password is: {{password}}</p>\n"
5465
  ""
5466
  msgstr ""
5467
 
5468
- #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:128
5469
  msgid "Admin Notification for User Password Reset"
5470
  msgstr ""
5471
 
@@ -5533,22 +5553,30 @@ msgstr ""
5533
  msgid "Approve User Link"
5534
  msgstr ""
5535
 
5536
- #: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:486
5537
  msgid "The users selected password at signup"
5538
  msgstr ""
5539
 
5540
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
 
 
 
 
 
 
 
 
5541
  msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
5542
  msgstr ""
5543
 
5544
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64
5545
  msgid ""
5546
  "<h3>Welcome to {{site_name}}!</h3>\n"
5547
  "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5548
  ""
5549
  msgstr ""
5550
 
5551
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:88
5552
  msgid ""
5553
  "<p>To activate your user, please click the following link:<br/>\n"
5554
  "{{{activation_link}}}</p>\n"
@@ -5556,15 +5584,15 @@ msgid ""
5556
  ""
5557
  msgstr ""
5558
 
5559
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:96
5560
  msgid "[{{site_name}}] Activate {{username}}"
5561
  msgstr ""
5562
 
5563
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:107
5564
  msgid "Registration with Email Confirmation"
5565
  msgstr ""
5566
 
5567
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:113
5568
  msgid ""
5569
  "<h3>Welcome to {{site_name}}!</h3>\n"
5570
  "<p>Your username is:{{username}} and password:{{password}}</p>\n"
@@ -5572,41 +5600,41 @@ msgid ""
5572
  ""
5573
  msgstr ""
5574
 
5575
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:121
5576
  msgid "A new account has been created for you on {{site_name}}"
5577
  msgstr ""
5578
 
5579
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:137
5580
  msgid ""
5581
  "<h3>Good News!</h3>\n"
5582
  "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
5583
  ""
5584
  msgstr ""
5585
 
5586
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:145
5587
  msgid "Your account on {{site_name}} has been approved!"
5588
  msgstr ""
5589
 
5590
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:156
5591
  msgid "User Approval Notification"
5592
  msgstr ""
5593
 
5594
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:161
5595
  msgid ""
5596
  "<h3>Hello,</h3>\n"
5597
  "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
5598
  ""
5599
  msgstr ""
5600
 
5601
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170
5602
  msgid "Your account on {{site_name}} has been unapproved!"
5603
  msgstr ""
5604
 
5605
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:181
5606
  msgid "Unapproved User Notification"
5607
  msgstr ""
5608
 
5609
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187
5610
  msgid ""
5611
  "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
5612
  "Username: {{username}}</p>\n"
@@ -5616,29 +5644,29 @@ msgid ""
5616
  ""
5617
  msgstr ""
5618
 
5619
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:195
5620
  msgid "[{{site_name}}] Password Reset"
5621
  msgstr ""
5622
 
5623
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:206
5624
  msgid "Password Reset Email"
5625
  msgstr ""
5626
 
5627
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:212
5628
  msgid ""
5629
  "<p>You have successfully reset your password.</p>\n"
5630
  ""
5631
  msgstr ""
5632
 
5633
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:220
5634
  msgid "[{{site_name}}] Password Reset Successfully"
5635
  msgstr ""
5636
 
5637
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:231
5638
  msgid "Password Reset Success Email"
5639
  msgstr ""
5640
 
5641
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:239
5642
  msgid ""
5643
  "<h3>Hi {{username}},</h3>\n"
5644
  "<p>This notice confirms that your email was changed on {{site_name}}.</p>\n"
@@ -5649,11 +5677,11 @@ msgid ""
5649
  "<a href=\"{{site_url}}\">{{site_url}}</a></p>"
5650
  msgstr ""
5651
 
5652
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:247
5653
  msgid "[{{site_name}}] Notice of Email Change"
5654
  msgstr ""
5655
 
5656
- #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:258
5657
  msgid "Changed Email Address Notification"
5658
  msgstr ""
5659
 
@@ -5697,27 +5725,27 @@ msgstr ""
5697
  msgid "No Edit-profile Forms found in trash"
5698
  msgstr ""
5699
 
5700
- #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:138, ../profile-builder-2.0/modules/user-listing/userlisting.php:2165
5701
  msgid "Shortcode"
5702
  msgstr ""
5703
 
5704
- #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:159, ../profile-builder-2.0/modules/user-listing/userlisting.php:2186
5705
  msgid "(no title)"
5706
  msgstr ""
5707
 
5708
- #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:178, ../profile-builder-2.0/modules/user-listing/userlisting.php:2206
5709
  msgid "The shortcode will be available after you publish this form."
5710
  msgstr ""
5711
 
5712
- #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:180, ../profile-builder-2.0/modules/user-listing/userlisting.php:2208
5713
  msgid "Use this shortcode on the page you want the form to be displayed:"
5714
  msgstr ""
5715
 
5716
- #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:184, ../profile-builder-2.0/modules/user-listing/userlisting.php:2212
5717
  msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5718
  msgstr ""
5719
 
5720
- #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:190, ../profile-builder-2.0/modules/user-listing/userlisting.php:2245
5721
  msgid "Form Shortcode"
5722
  msgstr ""
5723
 
@@ -5865,11 +5893,11 @@ msgstr ""
5865
  msgid "Display name as"
5866
  msgstr ""
5867
 
5868
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:161, ../profile-builder-2.0/modules/user-listing/userlisting.php:2273
5869
  msgid "Registration Date"
5870
  msgstr ""
5871
 
5872
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:162, ../profile-builder-2.0/modules/user-listing/userlisting.php:2278
5873
  msgid "Number of Posts"
5874
  msgstr ""
5875
 
@@ -5905,7 +5933,7 @@ msgstr ""
5905
  msgid "Search all Fields"
5906
  msgstr ""
5907
 
5908
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:227, ../profile-builder-2.0/modules/user-listing/userlisting.php:2360
5909
  msgid "Faceted Menus"
5910
  msgstr ""
5911
 
@@ -5957,271 +5985,271 @@ msgstr ""
5957
  msgid "First/Lastname"
5958
  msgstr ""
5959
 
5960
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:787, ../profile-builder-2.0/modules/user-listing/userlisting.php:2276
5961
  msgid "Display Name"
5962
  msgstr ""
5963
 
5964
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:799, ../profile-builder-2.0/modules/user-listing/userlisting.php:2283
5965
  msgid "Aim"
5966
  msgstr ""
5967
 
5968
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:802, ../profile-builder-2.0/modules/user-listing/userlisting.php:2284
5969
  msgid "Yim"
5970
  msgstr ""
5971
 
5972
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:805, ../profile-builder-2.0/modules/user-listing/userlisting.php:2285
5973
  msgid "Jabber"
5974
  msgstr ""
5975
 
5976
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1077, ../profile-builder-2.0/modules/user-listing/userlisting.php:1537, ../profile-builder-2.0/modules/user-listing/userlisting.php:2003, ../profile-builder-2.0/modules/user-listing/userlisting.php:2480
5977
  msgid "Search Users by All Fields"
5978
  msgstr ""
5979
 
5980
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1342
5981
  msgid "Click here to see more information about this user"
5982
  msgstr ""
5983
 
5984
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1342, ../profile-builder-2.0/modules/user-listing/userlisting.php:1342
5985
  msgid "More..."
5986
  msgstr ""
5987
 
5988
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1345
5989
  msgid "Click here to see more information about this user."
5990
  msgstr ""
5991
 
5992
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1372
5993
  msgid "View Map"
5994
  msgstr ""
5995
 
5996
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1491, ../profile-builder-2.0/modules/user-listing/userlisting.php:1494
5997
  msgid "Click here to go back"
5998
  msgstr ""
5999
 
6000
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1491, ../profile-builder-2.0/modules/user-listing/userlisting.php:1491
6001
  msgid "Back"
6002
  msgstr ""
6003
 
6004
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1524
6005
  msgid "&laquo;&laquo; First"
6006
  msgstr ""
6007
 
6008
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1525
6009
  msgid "&laquo; Prev"
6010
  msgstr ""
6011
 
6012
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1526
6013
  msgid "Next &raquo; "
6014
  msgstr ""
6015
 
6016
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1527
6017
  msgid "Last &raquo;&raquo;"
6018
  msgstr ""
6019
 
6020
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1556
6021
  msgid "You don't have any pagination settings on this userlisting!"
6022
  msgstr ""
6023
 
6024
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1605
6025
  msgid "Show All"
6026
  msgstr ""
6027
 
6028
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1673
6029
  msgid "Choose..."
6030
  msgstr ""
6031
 
6032
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1762
6033
  msgid "No options available"
6034
  msgstr ""
6035
 
6036
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1911
6037
  msgid "Remove All Filters"
6038
  msgstr ""
6039
 
6040
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2020
6041
  msgid "Search"
6042
  msgstr ""
6043
 
6044
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2021
6045
  msgid "Clear Results"
6046
  msgstr ""
6047
 
6048
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2215, ../profile-builder-2.0/modules/user-listing/userlisting.php:2219
6049
  msgid "Extra shortcode parameters"
6050
  msgstr ""
6051
 
6052
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2217
6053
  msgid "View all extra shortcode parameters"
6054
  msgstr ""
6055
 
6056
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2222
6057
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
6058
  msgstr ""
6059
 
6060
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2223
6061
  msgid "Example:"
6062
  msgstr ""
6063
 
6064
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2225
6065
  msgid "Remember though, that the field-value combination must exist in the database."
6066
  msgstr ""
6067
 
6068
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2231
6069
  msgid "displays only the users that you specified the user_id for"
6070
  msgstr ""
6071
 
6072
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2237
6073
  msgid "displays all users except the ones you specified the user_id for"
6074
  msgstr ""
6075
 
6076
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2300
6077
  msgid "Random (very slow on large databases > 10K user)"
6078
  msgstr ""
6079
 
6080
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2303
6081
  msgid "Ascending"
6082
  msgstr ""
6083
 
6084
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2304
6085
  msgid "Descending"
6086
  msgstr ""
6087
 
6088
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2312
6089
  msgid "Roles to Display"
6090
  msgstr ""
6091
 
6092
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2312
6093
  msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
6094
  msgstr ""
6095
 
6096
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2313
6097
  msgid "Number of Users/Page"
6098
  msgstr ""
6099
 
6100
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2313
6101
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
6102
  msgstr ""
6103
 
6104
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2314
6105
  msgid "Default Sorting Criteria"
6106
  msgstr ""
6107
 
6108
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2314
6109
  msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
6110
  msgstr ""
6111
 
6112
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2315
6113
  msgid "Default Sorting Order"
6114
  msgstr ""
6115
 
6116
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2315
6117
  msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
6118
  msgstr ""
6119
 
6120
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2316
6121
  msgid "Avatar Size (All-userlisting)"
6122
  msgstr ""
6123
 
6124
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2316
6125
  msgid "Set the avatar size on the all-userlisting only"
6126
  msgstr ""
6127
 
6128
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2317
6129
  msgid "Avatar Size (Single-userlisting)"
6130
  msgstr ""
6131
 
6132
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2317
6133
  msgid "Set the avatar size on the single-userlisting only"
6134
  msgstr ""
6135
 
6136
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2318
6137
  msgid "Visible only to logged in users?"
6138
  msgstr ""
6139
 
6140
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2318
6141
  msgid "The userlisting will only be visible only to the logged in users"
6142
  msgstr ""
6143
 
6144
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2319
6145
  msgid "Visible to following Roles"
6146
  msgstr ""
6147
 
6148
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2319
6149
  msgid "The userlisting will only be visible to the following roles"
6150
  msgstr ""
6151
 
6152
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2325
6153
  msgid "Userlisting Settings"
6154
  msgstr ""
6155
 
6156
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2350
6157
  msgid "Label"
6158
  msgstr ""
6159
 
6160
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2350
6161
  msgid "Choose the facet name that appears on the frontend"
6162
  msgstr ""
6163
 
6164
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2351
6165
  msgid "Facet Type"
6166
  msgstr ""
6167
 
6168
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2351
6169
  msgid "Choose the facet menu type"
6170
  msgstr ""
6171
 
6172
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2352
6173
  msgid "Facet Meta"
6174
  msgstr ""
6175
 
6176
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2352
6177
  msgid "Choose the meta field for the facet menu"
6178
  msgstr ""
6179
 
6180
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2353
6181
  msgid "Behaviour"
6182
  msgstr ""
6183
 
6184
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2353
6185
  msgid "Narrow the results"
6186
  msgstr ""
6187
 
6188
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2353
6189
  msgid "Expand the results"
6190
  msgstr ""
6191
 
6192
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2353
6193
  msgid "Choose how multiple selections affect the results"
6194
  msgstr ""
6195
 
6196
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2354
6197
  msgid "Visible choices"
6198
  msgstr ""
6199
 
6200
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2354
6201
  msgid "Show a toggle link after this many choices. Leave blank for all"
6202
  msgstr ""
6203
 
6204
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2379
6205
  msgid "Search Fields"
6206
  msgstr ""
6207
 
6208
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2379
6209
  msgid "Choose the fields in which the Search Field will look in"
6210
  msgstr ""
6211
 
6212
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2384
6213
  msgid "Search Settings"
6214
  msgstr ""
6215
 
6216
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2456
6217
  msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
6218
  msgstr ""
6219
 
6220
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2456
6221
  msgid "You can find it in the Profile Builder menu."
6222
  msgstr ""
6223
 
6224
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2619
6225
  msgid "No results found!"
6226
  msgstr ""
6227
 
25
  msgid "Choose (Single) User Listing to display under bbPress user Profile tab:"
26
  msgstr ""
27
 
28
+ #: ../pb-add-on-bbpress/bbpress-page.php:82, ../pb-add-on-bbpress/bbpress-page.php:117, woosync-page.php:80, woosync-page.php:115, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:552, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:233, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:308, ../profile-builder-2.0/features/content-restriction/content-restriction.php:133
29
  msgid "None"
30
  msgstr ""
31
 
37
  msgid "Choose Edit Profile form to display under bbPress Profile Edit tab:"
38
  msgstr ""
39
 
40
+ #: ../pb-add-on-bbpress/bbpress-page.php:118, ../pb-add-on-buddypress/buddypress-page.php:98, woosync-page.php:116
41
  msgid "Default Edit Profile"
42
  msgstr ""
43
 
85
  msgid "Registration form:"
86
  msgstr ""
87
 
88
+ #: ../pb-add-on-buddypress/buddypress-page.php:65, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:89
89
  msgid "Default Registration"
90
  msgstr ""
91
 
393
  msgid "The email confirmation does not match your email address."
394
  msgstr ""
395
 
396
+ #: ../pb-add-on-field-visibility/index.php:202, ../profile-builder-2.0/admin/admin-bar.php:61
397
  msgid "Visibility"
398
  msgstr ""
399
 
653
  msgid "Replace labels with placeholders:"
654
  msgstr ""
655
 
656
+ #: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:323, ../profile-builder-2.0/admin/general-settings.php:110, ../profile-builder-2.0/admin/general-settings.php:123, ../profile-builder-2.0/admin/general-settings.php:172, ../profile-builder-2.0/admin/general-settings.php:219, ../profile-builder-2.0/features/content-restriction/content-restriction.php:86, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230, ../profile-builder-2.0/modules/user-listing/userlisting.php:2330
657
  msgid "Yes"
658
  msgstr ""
659
 
660
+ #: ../pb-add-on-placeholder-labels/pbpl.php:172, ../pb-add-on-social-connect/index.php:324, ../profile-builder-2.0/admin/general-settings.php:124, ../profile-builder-2.0/admin/general-settings.php:173, ../profile-builder-2.0/admin/general-settings.php:218, ../profile-builder-2.0/features/content-restriction/content-restriction.php:85, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230
661
  msgid "No"
662
  msgstr ""
663
 
797
  msgid "Default Social Connect CSS in the Front-end"
798
  msgstr ""
799
 
800
+ #: ../pb-add-on-social-connect/index.php:236, ../profile-builder-2.0/admin/admin-functions.php:226, ../profile-builder-2.0/admin/general-settings.php:75, ../profile-builder-2.0/admin/general-settings.php:75
801
  msgid "Settings"
802
  msgstr ""
803
 
889
  msgid "Profile Builder not active!"
890
  msgstr ""
891
 
892
+ #: ../pb-add-on-social-connect/index.php:832, ../profile-builder-2.0/admin/admin-functions.php:37, ../profile-builder-2.0/admin/general-settings.php:8
893
  msgid "General Settings"
894
  msgstr ""
895
 
909
  msgid "Your account is linked with:"
910
  msgstr ""
911
 
912
+ #: billing-fields.php:5, shipping-fields.php:5
913
  msgid "Country"
914
  msgstr ""
915
 
916
+ #: billing-fields.php:6, shipping-fields.php:6, ../profile-builder-2.0/admin/manage-fields.php:245
917
  msgid "First Name"
918
  msgstr ""
919
 
920
+ #: billing-fields.php:7, shipping-fields.php:7, ../profile-builder-2.0/admin/manage-fields.php:246
921
  msgid "Last Name"
922
  msgstr ""
923
 
924
+ #: billing-fields.php:8, shipping-fields.php:8
925
  msgid "Company Name"
926
  msgstr ""
927
 
928
+ #: billing-fields.php:9, shipping-fields.php:9
929
  msgid "Address"
930
  msgstr ""
931
 
932
+ #: billing-fields.php:11, shipping-fields.php:11
933
  msgid "Town / City"
934
  msgstr ""
935
 
936
+ #: billing-fields.php:12, shipping-fields.php:12
937
  msgid "State / County"
938
  msgstr ""
939
 
940
+ #: billing-fields.php:13, shipping-fields.php:13
941
  msgid "Postcode / Zip"
942
  msgstr ""
943
 
944
+ #: billing-fields.php:14
945
  msgid "Email Address"
946
  msgstr ""
947
 
948
+ #: billing-fields.php:15
949
  msgid "Phone"
950
  msgstr ""
951
 
952
+ #: billing-fields.php:278
953
  msgid "Ship to a different address?"
954
  msgstr ""
955
 
956
+ #: index.php:160, index.php:729
957
  msgid "Billing Address"
958
  msgstr ""
959
 
960
+ #: index.php:160
961
  msgid "Displays customer billing fields in front-end. "
962
  msgstr ""
963
 
964
+ #: index.php:164, index.php:730
965
  msgid "Shipping Address"
966
  msgstr ""
967
 
968
+ #: index.php:164
969
  msgid "Displays customer shipping fields in front-end. "
970
  msgstr ""
971
 
972
+ #: index.php:239, index.php:258, index.php:355, index.php:358, index.php:785
973
  msgid "Address line 2"
974
  msgstr ""
975
 
976
+ #: index.php:247
977
  msgid "Billing Fields"
978
  msgstr ""
979
 
980
+ #: index.php:247
981
  msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
982
  msgstr ""
983
 
984
+ #: index.php:248
985
  msgid "Billing Fields Order"
986
  msgstr ""
987
 
988
+ #: index.php:248
989
  msgid "Save the billing fields order from the billing fields checkboxes"
990
  msgstr ""
991
 
992
+ #: index.php:249
993
  msgid "Billing Fields Name"
994
  msgstr ""
995
 
996
+ #: index.php:249
997
  msgid "Save the billing fields names"
998
  msgstr ""
999
 
1000
+ #: index.php:266
1001
  msgid "Shipping Fields"
1002
  msgstr ""
1003
 
1004
+ #: index.php:266
1005
  msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
1006
  msgstr ""
1007
 
1008
+ #: index.php:267
1009
  msgid "Shipping Fields Order"
1010
  msgstr ""
1011
 
1012
+ #: index.php:267
1013
  msgid "Save the shipping fields order from the billing fields checkboxes"
1014
  msgstr ""
1015
 
1016
+ #: index.php:268
1017
  msgid "Shipping Fields Name"
1018
  msgstr ""
1019
 
1020
+ #: index.php:268
1021
  msgid "Save the shipping fields names"
1022
  msgstr ""
1023
 
1024
+ #: index.php:296
1025
  msgid "Field Name"
1026
  msgstr ""
1027
 
1028
+ #: index.php:297, ../profile-builder-2.0/admin/manage-fields.php:203
1029
  msgid "Required"
1030
  msgstr ""
1031
 
1032
+ #: index.php:360
1033
  msgid "Click to edit "
1034
  msgstr ""
1035
 
1036
+ #: index.php:384, ../profile-builder-2.0/front-end/default-fields/email/email.php:47
1037
  msgid "The email you entered is not a valid email address."
1038
  msgstr ""
1039
 
1040
+ #: index.php:642
1041
  msgid "No options available. Please select one country."
1042
  msgstr ""
1043
 
1044
+ #: index.php:661, index.php:686
1045
  msgid "Billing "
1046
  msgstr ""
1047
 
1048
+ #: index.php:669, index.php:693
1049
  msgid "Shipping "
1050
  msgstr ""
1051
 
1052
+ #: index.php:846
1053
  msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
1054
  msgstr ""
1055
 
1056
+ #: woo-checkout-field-support.php:65
1057
  msgid "Display on WooCommerce Checkout"
1058
  msgstr ""
1059
 
1060
+ #: woo-checkout-field-support.php:65
1061
  msgid "Whether the field should be added to the WooCommerce checkout form or not"
1062
  msgstr ""
1063
 
1064
+ #: woosync-page.php:23, woosync-page.php:23, woosync-page.php:70
1065
  msgid "WooCommerce Sync"
1066
  msgstr ""
1067
 
1068
+ #: woosync-page.php:76
1069
  msgid "Choose Register form to display on My Account page:"
1070
  msgstr ""
1071
 
1072
+ #: woosync-page.php:81
1073
  msgid "Default Register"
1074
  msgstr ""
1075
 
1076
+ #: woosync-page.php:104
1077
  msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
1078
  msgstr ""
1079
 
1080
+ #: woosync-page.php:111
1081
  msgid "Choose Edit Profile form to display on My Account page:"
1082
  msgstr ""
1083
 
1084
+ #: woosync-page.php:139
1085
  msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1086
  msgstr ""
1087
 
1327
  msgid "Save the communication preferences order"
1328
  msgstr ""
1329
 
1330
+ #: ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:44, ../pb-add-on-select2/front-end/select2-field.php:72, ../pb-add-on-select2/front-end/select2-multiple-field.php:86, ../profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:74, ../profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45, ../profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45, ../profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40, ../profile-builder-2.0/front-end/extra-fields/input/input.php:30, ../profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34, ../profile-builder-2.0/front-end/extra-fields/map/map.php:51, ../profile-builder-2.0/front-end/extra-fields/number/number.php:30, ../profile-builder-2.0/front-end/extra-fields/phone/phone.php:39, ../profile-builder-2.0/front-end/extra-fields/radio/radio.php:44, ../profile-builder-2.0/front-end/extra-fields/select/select.php:51, ../profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:58, ../profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46, ../profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49, ../profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30, ../profile-builder-2.0/front-end/extra-fields/upload/upload.php:70, ../profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
1331
  msgid "required"
1332
  msgstr ""
1333
 
1503
  ""
1504
  msgstr ""
1505
 
1506
+ #: ../pb-add-on-select2/admin/manage-fields.php:52
1507
  msgid "Maximum Selections"
1508
  msgstr ""
1509
 
1510
+ #: ../pb-add-on-select2/admin/manage-fields.php:52
1511
  msgid "Select2 multi-value select boxes can set restrictions regarding the maximum number of options selected."
1512
  msgstr ""
1513
 
1514
+ #: ../pb-add-on-select2/admin/manage-fields.php:53
1515
  msgid "User Inputted Options"
1516
  msgstr ""
1517
 
1518
+ #: ../pb-add-on-select2/admin/manage-fields.php:53
1519
  msgid "Check this to allow users to create their own options beside the pre-existing ones."
1520
  msgstr ""
1521
 
1691
  msgid "Admin Bar Settings"
1692
  msgstr ""
1693
 
1694
+ #: ../profile-builder-2.0/admin/admin-bar.php:51
1695
  msgid "Choose which user roles view the admin bar in the front-end of the website."
1696
  msgstr ""
1697
 
1698
+ #: ../profile-builder-2.0/admin/admin-bar.php:60
1699
  msgid "User-Role"
1700
  msgstr ""
1701
 
1702
+ #: ../profile-builder-2.0/admin/admin-bar.php:76, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230
1703
  msgid "Default"
1704
  msgstr ""
1705
 
1706
+ #: ../profile-builder-2.0/admin/admin-bar.php:77
1707
  msgid "Show"
1708
  msgstr ""
1709
 
1710
+ #: ../profile-builder-2.0/admin/admin-bar.php:78, ../profile-builder-2.0/modules/user-listing/userlisting.php:1612
1711
  msgid "Hide"
1712
  msgstr ""
1713
 
1727
  msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
1728
  msgstr ""
1729
 
1730
+ #: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:278
1731
  msgid "Very weak"
1732
  msgstr ""
1733
 
1734
+ #: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:279, ../profile-builder-2.0/features/functions.php:571, ../profile-builder-2.0/features/functions.php:595
1735
  msgid "Weak"
1736
  msgstr ""
1737
 
1738
+ #: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:280, ../profile-builder-2.0/features/functions.php:571, ../profile-builder-2.0/features/functions.php:595
1739
  msgid "Medium"
1740
  msgstr ""
1741
 
1742
+ #: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:281, ../profile-builder-2.0/features/functions.php:571, ../profile-builder-2.0/features/functions.php:595
1743
  msgid "Strong"
1744
  msgstr ""
1745
 
1751
  msgid "Add Field"
1752
  msgstr ""
1753
 
1754
+ #: ../profile-builder-2.0/admin/admin-functions.php:189
1755
  msgid "Save Settings"
1756
  msgstr ""
1757
 
1867
  msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
1868
  msgstr ""
1869
 
1870
+ #: ../profile-builder-2.0/admin/basic-info.php:84, ../profile-builder-2.0/admin/general-settings.php:10, ../profile-builder-2.0/features/content-restriction/content-restriction.php:26, ../profile-builder-2.0/features/content-restriction/content-restriction.php:26
1871
  msgid "Content Restriction"
1872
  msgstr ""
1873
 
2007
  msgid "Find out more about PRO Modules"
2008
  msgstr ""
2009
 
2010
+ #: ../profile-builder-2.0/admin/basic-info.php:159, ../profile-builder-2.0/modules/modules.php:87, ../profile-builder-2.0/modules/user-listing/userlisting.php:11, ../profile-builder-2.0/modules/user-listing/userlisting.php:12, ../profile-builder-2.0/modules/user-listing/userlisting.php:17, ../profile-builder-2.0/modules/user-listing/userlisting.php:23
2011
  msgid "User Listing"
2012
  msgstr ""
2013
 
2019
  msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
2020
  msgstr ""
2021
 
2022
+ #: ../profile-builder-2.0/admin/basic-info.php:167, ../profile-builder-2.0/admin/general-settings.php:16, ../profile-builder-2.0/modules/modules.php:94
2023
  msgid "Email Customizer"
2024
  msgstr ""
2025
 
2027
  msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
2028
  msgstr ""
2029
 
2030
+ #: ../profile-builder-2.0/admin/basic-info.php:171, ../profile-builder-2.0/modules/modules.php:106, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:34
2031
  msgid "Custom Redirects"
2032
  msgstr ""
2033
 
2035
  msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
2036
  msgstr ""
2037
 
2038
+ #: ../profile-builder-2.0/admin/basic-info.php:177, ../profile-builder-2.0/modules/modules.php:73
2039
  msgid "Multiple Registration Forms"
2040
  msgstr ""
2041
 
2043
  msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
2044
  msgstr ""
2045
 
2046
+ #: ../profile-builder-2.0/admin/basic-info.php:181, ../profile-builder-2.0/modules/modules.php:80
2047
  msgid "Multiple Edit-profile Forms"
2048
  msgstr ""
2049
 
2051
  msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
2052
  msgstr ""
2053
 
2054
+ #: ../profile-builder-2.0/admin/basic-info.php:185, ../profile-builder-2.0/modules/modules.php:113
2055
  msgid "Repeater Fields"
2056
  msgstr ""
2057
 
2083
  msgid "Submit and Deactivate"
2084
  msgstr ""
2085
 
2086
+ #: ../profile-builder-2.0/admin/general-settings.php:9
2087
+ msgid "Admin Bar"
2088
+ msgstr ""
2089
+
2090
+ #: ../profile-builder-2.0/admin/general-settings.php:18
2091
+ msgid "User Emails"
2092
+ msgstr ""
2093
+
2094
+ #: ../profile-builder-2.0/admin/general-settings.php:19
2095
+ msgid "Administrator Emails"
2096
+ msgstr ""
2097
+
2098
+ #: ../profile-builder-2.0/admin/general-settings.php:96
2099
+ msgid "Profile Builder Settings"
2100
+ msgstr ""
2101
+
2102
+ #: ../profile-builder-2.0/admin/general-settings.php:107
2103
  msgid "Load Profile Builder's own CSS file in the front-end:"
2104
  msgstr ""
2105
 
2106
+ #: ../profile-builder-2.0/admin/general-settings.php:112
2107
  msgid "You can find the default file here: %1$s"
2108
  msgstr ""
2109
 
2110
+ #: ../profile-builder-2.0/admin/general-settings.php:119
2111
  msgid "\"Email Confirmation\" Activated:"
2112
  msgstr ""
2113
 
2114
+ #: ../profile-builder-2.0/admin/general-settings.php:127
2115
  msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
2116
  msgstr ""
2117
 
2118
+ #: ../profile-builder-2.0/admin/general-settings.php:129
2119
  msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
2120
  msgstr ""
2121
 
2122
+ #: ../profile-builder-2.0/admin/general-settings.php:137
2123
  msgid "\"Email Confirmation\" Landing Page:"
2124
  msgstr ""
2125
 
2126
+ #: ../profile-builder-2.0/admin/general-settings.php:142
2127
  msgid "Existing Pages"
2128
  msgstr ""
2129
 
2130
+ #: ../profile-builder-2.0/admin/general-settings.php:157
2131
  msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
2132
  msgstr ""
2133
 
2134
+ #: ../profile-builder-2.0/admin/general-settings.php:168
2135
  msgid "\"Admin Approval\" Activated:"
2136
  msgstr ""
2137
 
2138
+ #: ../profile-builder-2.0/admin/general-settings.php:176
2139
  msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
2140
  msgstr ""
2141
 
2142
+ #: ../profile-builder-2.0/admin/general-settings.php:183
2143
  msgid "\"Admin Approval\" on User Role:"
2144
  msgstr ""
2145
 
2146
+ #: ../profile-builder-2.0/admin/general-settings.php:202
2147
  msgid "Select on what user roles to activate Admin Approval."
2148
  msgstr ""
2149
 
2150
+ #: ../profile-builder-2.0/admin/general-settings.php:214
2151
  msgid "\"Roles Editor\" Activated:"
2152
  msgstr ""
2153
 
2154
+ #: ../profile-builder-2.0/admin/general-settings.php:222
2155
  msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
2156
  msgstr ""
2157
 
2158
+ #: ../profile-builder-2.0/admin/general-settings.php:233
 
 
 
 
 
 
 
 
2159
  msgid "\"Admin Approval\" Feature:"
2160
  msgstr ""
2161
 
2162
+ #: ../profile-builder-2.0/admin/general-settings.php:236
2163
  msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
2164
  msgstr ""
2165
 
2166
+ #: ../profile-builder-2.0/admin/general-settings.php:243
2167
  msgid "Allow Users to Log in With:"
2168
  msgstr ""
2169
 
2170
+ #: ../profile-builder-2.0/admin/general-settings.php:247
2171
  msgid "Username and Email"
2172
  msgstr ""
2173
 
2174
+ #: ../profile-builder-2.0/admin/general-settings.php:248, ../profile-builder-2.0/admin/manage-fields.php:244, ../profile-builder-2.0/front-end/login.php:241, ../profile-builder-2.0/front-end/login.php:255, ../profile-builder-2.0/front-end/login.php:383, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:166, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:60, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:28, ../profile-builder-2.0/modules/user-listing/userlisting.php:111, ../profile-builder-2.0/modules/user-listing/userlisting.php:303, ../profile-builder-2.0/modules/user-listing/userlisting.php:769, ../profile-builder-2.0/modules/user-listing/userlisting.php:2281
2175
  msgid "Username"
2176
  msgstr ""
2177
 
2178
+ #: ../profile-builder-2.0/admin/general-settings.php:249, ../profile-builder-2.0/front-end/login.php:380, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:29, ../profile-builder-2.0/modules/user-listing/userlisting.php:775, ../profile-builder-2.0/modules/user-listing/userlisting.php:2282
2179
  msgid "Email"
2180
  msgstr ""
2181
 
2182
+ #: ../profile-builder-2.0/admin/general-settings.php:252
2183
  msgid "\"Username and Email\" - users can Log In with both Username and Email."
2184
  msgstr ""
2185
 
2186
+ #: ../profile-builder-2.0/admin/general-settings.php:253
2187
  msgid "\"Username\" - users can Log In only with Username."
2188
  msgstr ""
2189
 
2190
+ #: ../profile-builder-2.0/admin/general-settings.php:254
2191
  msgid "\"Email\" - users can Log In only with Email."
2192
  msgstr ""
2193
 
2194
+ #: ../profile-builder-2.0/admin/general-settings.php:261
2195
  msgid "Minimum Password Length:"
2196
  msgstr ""
2197
 
2198
+ #: ../profile-builder-2.0/admin/general-settings.php:266
2199
  msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
2200
  msgstr ""
2201
 
2202
+ #: ../profile-builder-2.0/admin/general-settings.php:273
2203
  msgid "Minimum Password Strength:"
2204
  msgstr ""
2205
 
2206
+ #: ../profile-builder-2.0/admin/general-settings.php:277
2207
  msgid "Disabled"
2208
  msgstr ""
2209
 
2619
  msgid "Usernames cannot be changed."
2620
  msgstr ""
2621
 
2622
+ #: ../profile-builder-2.0/admin/manage-fields.php:247, ../profile-builder-2.0/modules/user-listing/userlisting.php:808, ../profile-builder-2.0/modules/user-listing/userlisting.php:2289
2623
  msgid "Nickname"
2624
  msgstr ""
2625
 
2627
  msgid "Display name publicly as"
2628
  msgstr ""
2629
 
2630
+ #: ../profile-builder-2.0/admin/manage-fields.php:251, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:33, ../profile-builder-2.0/modules/user-listing/userlisting.php:120, ../profile-builder-2.0/modules/user-listing/userlisting.php:790, ../profile-builder-2.0/modules/user-listing/userlisting.php:2283
2631
  msgid "Website"
2632
  msgstr ""
2633
 
2643
  msgid "Jabber / Google Talk"
2644
  msgstr ""
2645
 
2646
+ #: ../profile-builder-2.0/admin/manage-fields.php:261, ../profile-builder-2.0/modules/user-listing/userlisting.php:123, ../profile-builder-2.0/modules/user-listing/userlisting.php:793, ../profile-builder-2.0/modules/user-listing/userlisting.php:2284
2647
  msgid "Biographical Info"
2648
  msgstr ""
2649
 
4417
  msgid "Incorrect phone number"
4418
  msgstr ""
4419
 
4420
+ #: ../profile-builder-2.0/features/functions.php:730, ../profile-builder-2.0/features/content-restriction/content-restriction.php:159, ../profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:402, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:394
4421
  msgid "Save Changes"
4422
  msgstr ""
4423
 
4701
  msgid "There was an error while trying to activate the user."
4702
  msgstr ""
4703
 
4704
+ #: ../profile-builder-2.0/modules/modules.php:11, ../profile-builder-2.0/modules/modules.php:11, ../profile-builder-2.0/modules/modules.php:56
4705
  msgid "Modules"
4706
  msgstr ""
4707
 
4708
+ #: ../profile-builder-2.0/modules/modules.php:57
4709
  msgid "Here you can activate / deactivate available modules for Profile Builder."
4710
  msgstr ""
4711
 
4712
+ #: ../profile-builder-2.0/modules/modules.php:67
4713
  msgid "Name/Description"
4714
  msgstr ""
4715
 
4716
+ #: ../profile-builder-2.0/modules/modules.php:68
4717
  msgid "Status"
4718
  msgstr ""
4719
 
4720
+ #: ../profile-builder-2.0/modules/modules.php:75, ../profile-builder-2.0/modules/modules.php:82, ../profile-builder-2.0/modules/modules.php:89, ../profile-builder-2.0/modules/modules.php:101, ../profile-builder-2.0/modules/modules.php:108, ../profile-builder-2.0/modules/modules.php:115
4721
  msgid "Active"
4722
  msgstr ""
4723
 
4724
+ #: ../profile-builder-2.0/modules/modules.php:76, ../profile-builder-2.0/modules/modules.php:83, ../profile-builder-2.0/modules/modules.php:90, ../profile-builder-2.0/modules/modules.php:102, ../profile-builder-2.0/modules/modules.php:109, ../profile-builder-2.0/modules/modules.php:116
4725
  msgid "Inactive"
4726
  msgstr ""
4727
 
 
 
 
 
 
 
 
 
4728
  #: ../profile-builder-2.0/assets/misc/plugin-compatibilities.php:237
4729
  msgid "Your account has to be confirmed by an administrator before you can log in."
4730
  msgstr ""
4825
  msgid "Approve"
4826
  msgstr ""
4827
 
4828
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:167, ../profile-builder-2.0/modules/user-listing/userlisting.php:304, ../profile-builder-2.0/modules/user-listing/userlisting.php:781, ../profile-builder-2.0/modules/user-listing/userlisting.php:2286
4829
  msgid "Firstname"
4830
  msgstr ""
4831
 
4832
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:168, ../profile-builder-2.0/modules/user-listing/userlisting.php:784, ../profile-builder-2.0/modules/user-listing/userlisting.php:2287
4833
  msgid "Lastname"
4834
  msgstr ""
4835
 
4836
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:170, ../profile-builder-2.0/features/roles-editor/roles-editor.php:255, ../profile-builder-2.0/modules/user-listing/userlisting.php:159, ../profile-builder-2.0/modules/user-listing/userlisting.php:305, ../profile-builder-2.0/modules/user-listing/userlisting.php:811, ../profile-builder-2.0/modules/user-listing/userlisting.php:2291
4837
  msgid "Role"
4838
  msgstr ""
4839
 
4901
  msgid "Display Options"
4902
  msgstr ""
4903
 
4904
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:36, ../profile-builder-2.0/features/content-restriction/content-restriction.php:98
4905
  msgid "Message"
4906
  msgstr ""
4907
 
4908
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:36, ../profile-builder-2.0/features/content-restriction/content-restriction.php:103, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230
4909
  msgid "Redirect"
4910
  msgstr ""
4911
 
4912
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:41, ../profile-builder-2.0/features/content-restriction/content-restriction.php:93
4913
  msgid "Type of Restriction"
4914
  msgstr ""
4915
 
4969
  msgid "Messages for logged-in users"
4970
  msgstr ""
4971
 
4972
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:62
4973
+ msgid "Content Restriction Settings"
4974
+ msgstr ""
4975
+
4976
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:82
4977
+ msgid "Enable Content Restriction"
4978
+ msgstr ""
4979
+
4980
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:88
4981
+ msgid "Activate Content Restriction"
4982
+ msgstr ""
4983
+
4984
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:106
4985
  msgid "If you select \"Message\", the post's content will be protected by being replaced with a custom message."
4986
  msgstr ""
4987
 
4988
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:107
4989
  msgid "If you select \"Redirect\", the post's content will be protected by redirecting the user to the URL you specify. The redirect happens only when accessing a single post. On archive pages the restriction message will be displayed, instead of the content."
4990
  msgstr ""
4991
 
4992
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:112, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:68, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:98, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:117, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:142
4993
  msgid "Redirect URL"
4994
  msgstr ""
4995
 
4996
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:117
4997
  msgid "Message for logged-out users"
4998
  msgstr ""
4999
 
5000
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:122
5001
  msgid "Message for logged-in users"
5002
  msgstr ""
5003
 
5004
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:127
5005
  msgid "Restricted Posts Preview"
5006
  msgstr ""
5007
 
5008
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:142
5009
  msgid "Show the first %s words of the post's content"
5010
  msgstr ""
5011
 
5012
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:150
5013
  msgid "Show the content before the \"more\" tag"
5014
  msgstr ""
5015
 
5016
+ #: ../profile-builder-2.0/features/content-restriction/content-restriction.php:154
5017
  msgid "Show a portion of the restricted post to logged-out users or users that are not allowed to see it."
5018
  msgstr ""
5019
 
5093
  msgid "There was an error while trying to activate the user"
5094
  msgstr ""
5095
 
5096
+ #: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:522, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:76
5097
  msgid "A new subscriber has (been) registered!"
5098
  msgstr ""
5099
 
5105
  msgid "[%1$s] Your new account information"
5106
  msgstr ""
5107
 
5108
+ #: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:580, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:589, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:498, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:505, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:519
5109
  msgid "Your selected password at signup"
5110
  msgstr ""
5111
 
5417
  msgid "You can't add duplicate redirects!"
5418
  msgstr ""
5419
 
5420
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11
5421
+ msgid "Admin Email Customizer"
5422
+ msgstr ""
5423
+
5424
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12
5425
+ msgid "Admin Email Customizer Settings"
5426
+ msgstr ""
5427
+
5428
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:45
5429
  msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
5430
  msgstr ""
5431
 
5432
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:45, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:45
5433
  msgid "Valid tags {{reply_to}} and {{site_name}}"
5434
  msgstr ""
5435
 
5436
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:48, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:48
5437
  msgid "From (name)"
5438
  msgstr ""
5439
 
5440
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:56, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:56
5441
  msgid "From (reply-to email)"
5442
  msgstr ""
5443
 
5444
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:61, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:61
5445
  msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
5446
  msgstr ""
5447
 
5448
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:64, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64
5449
  msgid "Common Settings"
5450
  msgstr ""
5451
 
5452
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:67
5453
  msgid ""
5454
  "<p>New subscriber on {{site_name}}.</p>\n"
5455
  "<p>Username:{{username}}</p>\n"
5457
  ""
5458
  msgstr ""
5459
 
5460
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:72, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:96, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:120, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:75, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:124, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:173, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:223, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:250
5461
  msgid "Email Subject"
5462
  msgstr ""
5463
 
5464
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87
5465
  msgid "Default Registration & Registration with Email Confirmation"
5466
  msgstr ""
5467
 
5468
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:90
5469
  msgid ""
5470
  "<p>New subscriber on {{site_name}}.</p>\n"
5471
  "<p>Username:{{username}}</p>\n"
5474
  "so please remember that you need to approve this user before he/she can log in!</p>"
5475
  msgstr ""
5476
 
5477
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:111, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:139
5478
  msgid "Registration with Admin Approval"
5479
  msgstr ""
5480
 
5481
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114
5482
  msgid ""
5483
  "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
5484
  "<p>His/her new password is: {{password}}</p>\n"
5485
  ""
5486
  msgstr ""
5487
 
5488
+ #: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:135
5489
  msgid "Admin Notification for User Password Reset"
5490
  msgstr ""
5491
 
5553
  msgid "Approve User Link"
5554
  msgstr ""
5555
 
5556
+ #: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:490
5557
  msgid "The users selected password at signup"
5558
  msgstr ""
5559
 
5560
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11
5561
+ msgid "User Email Customizer"
5562
+ msgstr ""
5563
+
5564
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12
5565
+ msgid "User Email Customizer Settings"
5566
+ msgstr ""
5567
+
5568
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:45
5569
  msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
5570
  msgstr ""
5571
 
5572
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71
5573
  msgid ""
5574
  "<h3>Welcome to {{site_name}}!</h3>\n"
5575
  "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5576
  ""
5577
  msgstr ""
5578
 
5579
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:95
5580
  msgid ""
5581
  "<p>To activate your user, please click the following link:<br/>\n"
5582
  "{{{activation_link}}}</p>\n"
5584
  ""
5585
  msgstr ""
5586
 
5587
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103
5588
  msgid "[{{site_name}}] Activate {{username}}"
5589
  msgstr ""
5590
 
5591
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114
5592
  msgid "Registration with Email Confirmation"
5593
  msgstr ""
5594
 
5595
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120
5596
  msgid ""
5597
  "<h3>Welcome to {{site_name}}!</h3>\n"
5598
  "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5600
  ""
5601
  msgstr ""
5602
 
5603
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128
5604
  msgid "A new account has been created for you on {{site_name}}"
5605
  msgstr ""
5606
 
5607
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:144
5608
  msgid ""
5609
  "<h3>Good News!</h3>\n"
5610
  "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
5611
  ""
5612
  msgstr ""
5613
 
5614
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:152
5615
  msgid "Your account on {{site_name}} has been approved!"
5616
  msgstr ""
5617
 
5618
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:163
5619
  msgid "User Approval Notification"
5620
  msgstr ""
5621
 
5622
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:168
5623
  msgid ""
5624
  "<h3>Hello,</h3>\n"
5625
  "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
5626
  ""
5627
  msgstr ""
5628
 
5629
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:177
5630
  msgid "Your account on {{site_name}} has been unapproved!"
5631
  msgstr ""
5632
 
5633
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:188
5634
  msgid "Unapproved User Notification"
5635
  msgstr ""
5636
 
5637
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:194
5638
  msgid ""
5639
  "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
5640
  "Username: {{username}}</p>\n"
5644
  ""
5645
  msgstr ""
5646
 
5647
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:202
5648
  msgid "[{{site_name}}] Password Reset"
5649
  msgstr ""
5650
 
5651
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:213
5652
  msgid "Password Reset Email"
5653
  msgstr ""
5654
 
5655
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:219
5656
  msgid ""
5657
  "<p>You have successfully reset your password.</p>\n"
5658
  ""
5659
  msgstr ""
5660
 
5661
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:227
5662
  msgid "[{{site_name}}] Password Reset Successfully"
5663
  msgstr ""
5664
 
5665
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:238
5666
  msgid "Password Reset Success Email"
5667
  msgstr ""
5668
 
5669
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:246
5670
  msgid ""
5671
  "<h3>Hi {{username}},</h3>\n"
5672
  "<p>This notice confirms that your email was changed on {{site_name}}.</p>\n"
5677
  "<a href=\"{{site_url}}\">{{site_url}}</a></p>"
5678
  msgstr ""
5679
 
5680
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:254
5681
  msgid "[{{site_name}}] Notice of Email Change"
5682
  msgstr ""
5683
 
5684
+ #: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:265
5685
  msgid "Changed Email Address Notification"
5686
  msgstr ""
5687
 
5725
  msgid "No Edit-profile Forms found in trash"
5726
  msgstr ""
5727
 
5728
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:138, ../profile-builder-2.0/modules/user-listing/userlisting.php:2177
5729
  msgid "Shortcode"
5730
  msgstr ""
5731
 
5732
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:159, ../profile-builder-2.0/modules/user-listing/userlisting.php:2198
5733
  msgid "(no title)"
5734
  msgstr ""
5735
 
5736
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:178, ../profile-builder-2.0/modules/user-listing/userlisting.php:2218
5737
  msgid "The shortcode will be available after you publish this form."
5738
  msgstr ""
5739
 
5740
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:180, ../profile-builder-2.0/modules/user-listing/userlisting.php:2220
5741
  msgid "Use this shortcode on the page you want the form to be displayed:"
5742
  msgstr ""
5743
 
5744
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:184, ../profile-builder-2.0/modules/user-listing/userlisting.php:2224
5745
  msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5746
  msgstr ""
5747
 
5748
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:190, ../profile-builder-2.0/modules/user-listing/userlisting.php:2257
5749
  msgid "Form Shortcode"
5750
  msgstr ""
5751
 
5893
  msgid "Display name as"
5894
  msgstr ""
5895
 
5896
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:161, ../profile-builder-2.0/modules/user-listing/userlisting.php:2285
5897
  msgid "Registration Date"
5898
  msgstr ""
5899
 
5900
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:162, ../profile-builder-2.0/modules/user-listing/userlisting.php:2290
5901
  msgid "Number of Posts"
5902
  msgstr ""
5903
 
5933
  msgid "Search all Fields"
5934
  msgstr ""
5935
 
5936
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:227, ../profile-builder-2.0/modules/user-listing/userlisting.php:2372
5937
  msgid "Faceted Menus"
5938
  msgstr ""
5939
 
5985
  msgid "First/Lastname"
5986
  msgstr ""
5987
 
5988
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:787, ../profile-builder-2.0/modules/user-listing/userlisting.php:2288
5989
  msgid "Display Name"
5990
  msgstr ""
5991
 
5992
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:799, ../profile-builder-2.0/modules/user-listing/userlisting.php:2295
5993
  msgid "Aim"
5994
  msgstr ""
5995
 
5996
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:802, ../profile-builder-2.0/modules/user-listing/userlisting.php:2296
5997
  msgid "Yim"
5998
  msgstr ""
5999
 
6000
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:805, ../profile-builder-2.0/modules/user-listing/userlisting.php:2297
6001
  msgid "Jabber"
6002
  msgstr ""
6003
 
6004
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1083, ../profile-builder-2.0/modules/user-listing/userlisting.php:1543, ../profile-builder-2.0/modules/user-listing/userlisting.php:2015, ../profile-builder-2.0/modules/user-listing/userlisting.php:2492
6005
  msgid "Search Users by All Fields"
6006
  msgstr ""
6007
 
6008
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1348
6009
  msgid "Click here to see more information about this user"
6010
  msgstr ""
6011
 
6012
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1348, ../profile-builder-2.0/modules/user-listing/userlisting.php:1348
6013
  msgid "More..."
6014
  msgstr ""
6015
 
6016
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1351
6017
  msgid "Click here to see more information about this user."
6018
  msgstr ""
6019
 
6020
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1378
6021
  msgid "View Map"
6022
  msgstr ""
6023
 
6024
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1497, ../profile-builder-2.0/modules/user-listing/userlisting.php:1500
6025
  msgid "Click here to go back"
6026
  msgstr ""
6027
 
6028
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1497, ../profile-builder-2.0/modules/user-listing/userlisting.php:1497
6029
  msgid "Back"
6030
  msgstr ""
6031
 
6032
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1530
6033
  msgid "&laquo;&laquo; First"
6034
  msgstr ""
6035
 
6036
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1531
6037
  msgid "&laquo; Prev"
6038
  msgstr ""
6039
 
6040
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1532
6041
  msgid "Next &raquo; "
6042
  msgstr ""
6043
 
6044
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1533
6045
  msgid "Last &raquo;&raquo;"
6046
  msgstr ""
6047
 
6048
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1562
6049
  msgid "You don't have any pagination settings on this userlisting!"
6050
  msgstr ""
6051
 
6052
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1611
6053
  msgid "Show All"
6054
  msgstr ""
6055
 
6056
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1685
6057
  msgid "Choose..."
6058
  msgstr ""
6059
 
6060
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1774
6061
  msgid "No options available"
6062
  msgstr ""
6063
 
6064
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1923
6065
  msgid "Remove All Filters"
6066
  msgstr ""
6067
 
6068
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2032
6069
  msgid "Search"
6070
  msgstr ""
6071
 
6072
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2033
6073
  msgid "Clear Results"
6074
  msgstr ""
6075
 
6076
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2227, ../profile-builder-2.0/modules/user-listing/userlisting.php:2231
6077
  msgid "Extra shortcode parameters"
6078
  msgstr ""
6079
 
6080
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2229
6081
  msgid "View all extra shortcode parameters"
6082
  msgstr ""
6083
 
6084
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2234
6085
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
6086
  msgstr ""
6087
 
6088
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2235
6089
  msgid "Example:"
6090
  msgstr ""
6091
 
6092
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2237
6093
  msgid "Remember though, that the field-value combination must exist in the database."
6094
  msgstr ""
6095
 
6096
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2243
6097
  msgid "displays only the users that you specified the user_id for"
6098
  msgstr ""
6099
 
6100
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2249
6101
  msgid "displays all users except the ones you specified the user_id for"
6102
  msgstr ""
6103
 
6104
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2312
6105
  msgid "Random (very slow on large databases > 10K user)"
6106
  msgstr ""
6107
 
6108
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2315
6109
  msgid "Ascending"
6110
  msgstr ""
6111
 
6112
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2316
6113
  msgid "Descending"
6114
  msgstr ""
6115
 
6116
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2324
6117
  msgid "Roles to Display"
6118
  msgstr ""
6119
 
6120
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2324
6121
  msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
6122
  msgstr ""
6123
 
6124
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2325
6125
  msgid "Number of Users/Page"
6126
  msgstr ""
6127
 
6128
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2325
6129
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
6130
  msgstr ""
6131
 
6132
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2326
6133
  msgid "Default Sorting Criteria"
6134
  msgstr ""
6135
 
6136
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2326
6137
  msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
6138
  msgstr ""
6139
 
6140
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2327
6141
  msgid "Default Sorting Order"
6142
  msgstr ""
6143
 
6144
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2327
6145
  msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
6146
  msgstr ""
6147
 
6148
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2328
6149
  msgid "Avatar Size (All-userlisting)"
6150
  msgstr ""
6151
 
6152
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2328
6153
  msgid "Set the avatar size on the all-userlisting only"
6154
  msgstr ""
6155
 
6156
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2329
6157
  msgid "Avatar Size (Single-userlisting)"
6158
  msgstr ""
6159
 
6160
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2329
6161
  msgid "Set the avatar size on the single-userlisting only"
6162
  msgstr ""
6163
 
6164
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2330
6165
  msgid "Visible only to logged in users?"
6166
  msgstr ""
6167
 
6168
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2330
6169
  msgid "The userlisting will only be visible only to the logged in users"
6170
  msgstr ""
6171
 
6172
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2331
6173
  msgid "Visible to following Roles"
6174
  msgstr ""
6175
 
6176
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2331
6177
  msgid "The userlisting will only be visible to the following roles"
6178
  msgstr ""
6179
 
6180
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2337
6181
  msgid "Userlisting Settings"
6182
  msgstr ""
6183
 
6184
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2362
6185
  msgid "Label"
6186
  msgstr ""
6187
 
6188
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2362
6189
  msgid "Choose the facet name that appears on the frontend"
6190
  msgstr ""
6191
 
6192
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2363
6193
  msgid "Facet Type"
6194
  msgstr ""
6195
 
6196
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2363
6197
  msgid "Choose the facet menu type"
6198
  msgstr ""
6199
 
6200
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2364
6201
  msgid "Facet Meta"
6202
  msgstr ""
6203
 
6204
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2364
6205
  msgid "Choose the meta field for the facet menu"
6206
  msgstr ""
6207
 
6208
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2365
6209
  msgid "Behaviour"
6210
  msgstr ""
6211
 
6212
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2365
6213
  msgid "Narrow the results"
6214
  msgstr ""
6215
 
6216
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2365
6217
  msgid "Expand the results"
6218
  msgstr ""
6219
 
6220
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2365
6221
  msgid "Choose how multiple selections affect the results"
6222
  msgstr ""
6223
 
6224
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2366
6225
  msgid "Visible choices"
6226
  msgstr ""
6227
 
6228
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2366
6229
  msgid "Show a toggle link after this many choices. Leave blank for all"
6230
  msgstr ""
6231
 
6232
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2391
6233
  msgid "Search Fields"
6234
  msgstr ""
6235
 
6236
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2391
6237
  msgid "Choose the fields in which the Search Field will look in"
6238
  msgstr ""
6239
 
6240
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2396
6241
  msgid "Search Settings"
6242
  msgstr ""
6243
 
6244
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2468
6245
  msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
6246
  msgstr ""
6247
 
6248
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2468
6249
  msgid "You can find it in the Profile Builder menu."
6250
  msgstr ""
6251
 
6252
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2631
6253
  msgid "No results found!"
6254
  msgstr ""
6255