User registration & user profile – Profile Builder - Version 2.8.4

Version Description

  • Refactored the login form. This should fix a lot of issues with wordpress.com and other incompatibilities with plugins
  • Fixed issue with content restriction and Woocommerce products adding extra html
Download this release

Release Info

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

Code changes from version 2.8.3 to 2.8.4

assets/misc/plugin-compatibilities.php CHANGED
@@ -312,3 +312,13 @@
312
  if( !empty( $post_type ) && $post_type == 'wppb-roles-editor' )
313
  remove_all_actions('acf/input/admin_enqueue_scripts');
314
  }
 
 
 
 
 
 
 
 
 
 
312
  if( !empty( $post_type ) && $post_type == 'wppb-roles-editor' )
313
  remove_all_actions('acf/input/admin_enqueue_scripts');
314
  }
315
+
316
+ /****************************************************
317
+ * Theme Enfold
318
+ * Compatibility with Enfold theme that removes the wp.media scripts from the frontend for some reason starting from version 4.3 From what I understand they only allow it on media formats or posts that contain media embeds
319
+ ****************************************************/
320
+ if( ! function_exists( 'av_video_assets_required' ) ){
321
+ function av_video_assets_required(){
322
+ return true;
323
+ }
324
+ }
features/content-restriction/content-restriction-filtering.php CHANGED
@@ -279,4 +279,15 @@ if( function_exists( 'wc_get_page_id' ) ) {
279
  ob_end_clean();
280
  echo apply_filters( 'the_content', $product_content );
281
  }
 
 
 
 
 
 
 
 
 
 
 
282
  }
279
  ob_end_clean();
280
  echo apply_filters( 'the_content', $product_content );
281
  }
282
+
283
+ /* remove the autop filter from the content hook on woo products so we do not modify the HTML */
284
+ add_filter( 'the_content', 'wppb_remove_autop_for_products', 0 );
285
+ function wppb_remove_autop_for_products( $content ){
286
+
287
+ if( 'product' === get_post_type() ) {
288
+ remove_filter('the_content', 'wpautop');
289
+ }
290
+
291
+ return $content;
292
+ }
293
  }
front-end/login.php CHANGED
@@ -1,28 +1,163 @@
1
  <?php
2
- // add hidden input to our form to identify that is a profile builder form
3
- function wppb_login_form_bottom( $form_part, $args ){
4
- // we set this id in the wp_login_form() function
5
- if( $args['id_submit'] == 'wppb-submit' ){
6
- if( in_the_loop() )
7
- $form_location = 'page';
8
- else
9
- $form_location = 'widget';
10
 
11
- $form_part = '<input type="hidden" name="wppb_login" value="true"/>';
12
- $form_part .= '<input type="hidden" name="wppb_form_location" value="'. $form_location .'"/>';
13
 
14
- $form_part .= '<input type="hidden" name="wppb_request_url" value="'. esc_url( wppb_curpageurl() ).'"/>';
15
- $form_part .= '<input type="hidden" name="wppb_lostpassword_url" value="'.esc_url( $args['lostpassword_url'] ).'"/>';
16
- $form_part .= '<input type="hidden" name="wppb_redirect_priority" value="'. esc_attr( isset( $args['redirect_priority'] ) ? $args['redirect_priority'] : '' ) .'"/>';
17
- $form_part .= '<input type="hidden" name="wppb_referer_url" value="'.esc_url( isset( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : '' ).'"/>';
18
- $form_part .= wp_nonce_field( 'wppb_login', 'CSRFToken-wppb', true, false );
19
  }
20
 
21
- $form_part .= '<input type="hidden" name="wppb_redirect_check" value="true"/>';
22
 
23
- return $form_part;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  }
25
- add_filter( 'login_form_bottom', 'wppb_login_form_bottom', 10, 2 );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
 
27
  // when email login is enabled we need to change the post data for the username
28
  function wppb_change_login_with_email(){
@@ -177,7 +312,6 @@ function wppb_login_redirect( $redirect_to, $requested_redirect_to, $user ){
177
  // encode the error string and send it as a GET parameter
178
  $arr_params = array('loginerror' => urlencode(base64_encode($error_string)), 'request_form_location' => $request_form_location);
179
  $redirect_to = add_query_arg($arr_params, $redirect_to);
180
- wp_safe_redirect($redirect_to);
181
  }
182
  else{
183
  // we don't have an error make sure to remove the error from the query arg
@@ -253,7 +387,7 @@ function wppb_front_end_login( $atts ){
253
  // build our form
254
  $login_form .= '<div id="wppb-login-wrap" class="wppb-user-forms">';
255
  $form_args['lostpassword_url'] = $lostpassword_url;
256
- $login_form .= wp_login_form( apply_filters( 'wppb_login_form_args', $form_args ) );
257
 
258
  if ((!empty($register_url)) || (!empty($lostpassword_url))) {
259
  $login_form .= '<p class="login-register-lost-password">';
1
  <?php
2
+ add_action( 'init', 'wppb_process_login' );
3
+ function wppb_process_login(){
4
+
5
+ if( !isset($_REQUEST['wppb_login']) )
6
+ return;
 
 
 
7
 
8
+ do_action( 'login_init' );
9
+ do_action( "login_form_login" );
10
 
11
+ if ( isset( $_REQUEST['redirect_to'] ) ) {
12
+ $redirect_to = $_REQUEST['redirect_to'];
 
 
 
13
  }
14
 
15
+ $user = wp_signon( array(), true );
16
 
17
+ if ( empty( $_COOKIE[ LOGGED_IN_COOKIE ] ) ) {
18
+ if ( headers_sent() ) {
19
+ /* translators: 1: Browser cookie documentation URL, 2: Support forums URL */
20
+ $user = new WP_Error( 'test_cookie', sprintf( __( '<strong>ERROR</strong>: Cookies are blocked due to unexpected output. For help, please see <a href="%1$s">this documentation</a> or try the <a href="%2$s">support forums</a>.' ),
21
+ __( 'https://codex.wordpress.org/Cookies' ), __( 'https://wordpress.org/support/' ) ) );
22
+ }
23
+ }
24
+
25
+ $requested_redirect_to = isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
26
+ /**
27
+ * Filters the login redirect URL.
28
+ */
29
+ $redirect_to = apply_filters( 'login_redirect', $redirect_to, $requested_redirect_to, $user );
30
+
31
+ if ( !is_wp_error($user) ) {
32
+ if ( $redirect_to == 'wp-admin/' || $redirect_to == admin_url() ) {
33
+ // If the user doesn't belong to a blog, send them to user admin. If the user can't edit posts, send them to their profile.
34
+ if ( is_multisite() && !get_active_blog_for_user($user->ID) && !is_super_admin( $user->ID ) )
35
+ $redirect_to = user_admin_url();
36
+ elseif ( is_multisite() && !$user->has_cap('read') )
37
+ $redirect_to = get_dashboard_url( $user->ID );
38
+ elseif ( !$user->has_cap('edit_posts') )
39
+ $redirect_to = $user->has_cap( 'read' ) ? admin_url( 'profile.php' ) : home_url();
40
+
41
+ wp_redirect( $redirect_to );
42
+ exit();
43
+ }
44
+ wp_safe_redirect($redirect_to);
45
+ exit();
46
+ }
47
+ else{
48
+ wp_safe_redirect($redirect_to);
49
+ exit();
50
+ }
51
  }
52
+ /**
53
+ * Provides a simple login form
54
+ *
55
+ * The login format HTML is echoed by default. Pass a false value for `$echo` to return it instead.
56
+ *
57
+ * @param array $args {
58
+ * Optional. Array of options to control the form output. Default empty array.
59
+ *
60
+ * @type bool $echo Whether to display the login form or return the form HTML code.
61
+ * Default true (echo).
62
+ * @type string $redirect URL to redirect to. Must be absolute, as in "https://example.com/mypage/".
63
+ * Default is to redirect back to the request URI.
64
+ * @type string $form_id ID attribute value for the form. Default 'loginform'.
65
+ * @type string $label_username Label for the username or email address field. Default 'Username or Email Address'.
66
+ * @type string $label_password Label for the password field. Default 'Password'.
67
+ * @type string $label_remember Label for the remember field. Default 'Remember Me'.
68
+ * @type string $label_log_in Label for the submit button. Default 'Log In'.
69
+ * @type string $id_username ID attribute value for the username field. Default 'user_login'.
70
+ * @type string $id_password ID attribute value for the password field. Default 'user_pass'.
71
+ * @type string $id_remember ID attribute value for the remember field. Default 'rememberme'.
72
+ * @type string $id_submit ID attribute value for the submit button. Default 'wp-submit'.
73
+ * @type bool $remember Whether to display the "rememberme" checkbox in the form.
74
+ * @type string $value_username Default value for the username field. Default empty.
75
+ * @type bool $value_remember Whether the "Remember Me" checkbox should be checked by default.
76
+ * Default false (unchecked).
77
+ *
78
+ * }
79
+ * @return string|void String when retrieving.
80
+ */
81
+ function wppb_login_form( $args = array() ) {
82
+ $defaults = array(
83
+ 'echo' => true,
84
+ // Default 'redirect' value takes the user back to the request URI.
85
+ 'redirect' => ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'],
86
+ 'form_id' => 'loginform',
87
+ 'label_username' => __( 'Username or Email Address' ),
88
+ 'label_password' => __( 'Password' ),
89
+ 'label_remember' => __( 'Remember Me' ),
90
+ 'label_log_in' => __( 'Log In' ),
91
+ 'id_username' => 'user_login',
92
+ 'id_password' => 'user_pass',
93
+ 'id_remember' => 'rememberme',
94
+ 'id_submit' => 'wp-submit',
95
+ 'remember' => true,
96
+ 'value_username' => '',
97
+ // Set 'value_remember' to true to default the "Remember me" checkbox to checked.
98
+ 'value_remember' => false,
99
+ );
100
+
101
+ /**
102
+ * Filters the default login form output arguments.
103
+ */
104
+ $args = wp_parse_args( $args, apply_filters( 'login_form_defaults', $defaults ) );
105
+
106
+ /**
107
+ * Filters content to display at the top of the login form.
108
+ */
109
+ $login_form_top = apply_filters( 'login_form_top', '', $args );
110
+
111
+ /**
112
+ * Filters content to display in the middle of the login form.
113
+ */
114
+ $login_form_middle = apply_filters( 'login_form_middle', '', $args );
115
+
116
+ /**
117
+ * Filters content to display at the bottom of the login form.
118
+ */
119
+ $login_form_bottom = apply_filters( 'login_form_bottom', '', $args );
120
+
121
+ if( in_the_loop() )
122
+ $form_location = 'page';
123
+ else
124
+ $form_location = 'widget';
125
+
126
+ $form = '
127
+ <form name="' . $args['form_id'] . '" id="' . $args['form_id'] . '" action="" method="post">
128
+ ' . $login_form_top . '
129
+ <p class="login-username">
130
+ <label for="' . esc_attr( $args['id_username'] ) . '">' . esc_html( $args['label_username'] ) . '</label>
131
+ <input type="text" name="log" id="' . esc_attr( $args['id_username'] ) . '" class="input" value="' . esc_attr( $args['value_username'] ) . '" size="20" />
132
+ </p>
133
+ <p class="login-password">
134
+ <label for="' . esc_attr( $args['id_password'] ) . '">' . esc_html( $args['label_password'] ) . '</label>
135
+ <input type="password" name="pwd" id="' . esc_attr( $args['id_password'] ) . '" class="input" value="" size="20" />
136
+ </p>
137
+ ' . $login_form_middle . '
138
+ ' . ( $args['remember'] ? '<p class="login-remember"><label><input name="rememberme" type="checkbox" id="' . esc_attr( $args['id_remember'] ) . '" value="forever"' . ( $args['value_remember'] ? ' checked="checked"' : '' ) . ' /> ' . esc_html( $args['label_remember'] ) . '</label></p>' : '' ) . '
139
+ <p class="login-submit">
140
+ <input type="submit" name="wp-submit" id="' . esc_attr( $args['id_submit'] ) . '" class="button button-primary" value="' . esc_attr( $args['label_log_in'] ) . '" />
141
+ <input type="hidden" name="redirect_to" value="' . esc_url( $args['redirect'] ) . '" />
142
+ </p>
143
+ <input type="hidden" name="wppb_login" value="true"/>
144
+ <input type="hidden" name="wppb_form_location" value="'. $form_location .'"/>
145
+ <input type="hidden" name="wppb_request_url" value="'. esc_url( wppb_curpageurl() ).'"/>
146
+ <input type="hidden" name="wppb_lostpassword_url" value="'.esc_url( $args['lostpassword_url'] ).'"/>
147
+ <input type="hidden" name="wppb_redirect_priority" value="'. esc_attr( isset( $args['redirect_priority'] ) ? $args['redirect_priority'] : '' ) .'"/>
148
+ <input type="hidden" name="wppb_referer_url" value="'.esc_url( isset( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : '' ).'"/>
149
+ '. wp_nonce_field( 'wppb_login', 'CSRFToken-wppb', true, false ) .'
150
+ <input type="hidden" name="wppb_redirect_check" value="true"/>
151
+ ' . $login_form_bottom . '
152
+ </form>';
153
+
154
+ if ( $args['echo'] )
155
+ echo $form;
156
+ else
157
+ return $form;
158
+ }
159
+
160
+
161
 
162
  // when email login is enabled we need to change the post data for the username
163
  function wppb_change_login_with_email(){
312
  // encode the error string and send it as a GET parameter
313
  $arr_params = array('loginerror' => urlencode(base64_encode($error_string)), 'request_form_location' => $request_form_location);
314
  $redirect_to = add_query_arg($arr_params, $redirect_to);
 
315
  }
316
  else{
317
  // we don't have an error make sure to remove the error from the query arg
387
  // build our form
388
  $login_form .= '<div id="wppb-login-wrap" class="wppb-user-forms">';
389
  $form_args['lostpassword_url'] = $lostpassword_url;
390
+ $login_form .= wppb_login_form( apply_filters( 'wppb_login_form_args', $form_args ) );
391
 
392
  if ((!empty($register_url)) || (!empty($lostpassword_url))) {
393
  $login_form .= '<p class="login-register-lost-password">';
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.3
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.3' );
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__));
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.4
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.4' );
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__));
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === User registration & user profile - Profile Builder ===
2
- Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungureanu, iova.mihai, barinagabriel
3
  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.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -166,6 +166,10 @@ 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.3 =
170
  * Usability improvements and some name changes
171
  * Refactored manage fields dropdown to be more user friendly
1
  === User registration & user profile - Profile Builder ===
2
+ Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungureanu, iova.mihai, barinagabriel, vadasan
3
  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.4
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.4 =
170
+ * Refactored the login form. This should fix a lot of issues with wordpress.com and other incompatibilities with plugins
171
+ * Fixed issue with content restriction and Woocommerce products adding extra html
172
+
173
  = 2.8.3 =
174
  * Usability improvements and some name changes
175
  * Refactored manage fields dropdown to be more user friendly
translation/profile-builder.catalog.php CHANGED
@@ -318,6 +318,15 @@
318
  <?php __("fullname", "profile-builder"); ?>
319
  <?php __("Extra options", "profile-builder"); ?>
320
  <?php __("The Campaign Monitor API key is either missing or is invalid.", "profile-builder"); ?>
 
 
 
 
 
 
 
 
 
321
  <?php __("Uploaded file is not valid json!", "profile-builder"); ?>
322
  <?php __("Import successfully!", "profile-builder"); ?>
323
  <?php __("Please select a .json file to import!", "profile-builder"); ?>
@@ -364,7 +373,6 @@
364
  <?php __("Select2 multi-value select boxes can set restrictions regarding the maximum number of options selected.", "profile-builder"); ?>
365
  <?php __("User Inputted Options", "profile-builder"); ?>
366
  <?php __("Check this to allow users to create their own options beside the pre-existing ones.", "profile-builder"); ?>
367
- <?php __("required", "profile-builder"); ?>
368
  <?php __("Link with Facebook", "profile-builder"); ?>
369
  <?php __("Sign in with Facebook", "profile-builder"); ?>
370
  <?php __("Link with Google+", "profile-builder"); ?>
@@ -635,7 +643,6 @@
635
  <?php __("Usernames cannot be changed.", "profile-builder"); ?>
636
  <?php __("Nickname", "profile-builder"); ?>
637
  <?php __("Display name publicly as", "profile-builder"); ?>
638
- <?php __("E-mail", "profile-builder"); ?>
639
  <?php __("Website", "profile-builder"); ?>
640
  <?php __("AIM", "profile-builder"); ?>
641
  <?php __("Yahoo IM", "profile-builder"); ?>
318
  <?php __("fullname", "profile-builder"); ?>
319
  <?php __("Extra options", "profile-builder"); ?>
320
  <?php __("The Campaign Monitor API key is either missing or is invalid.", "profile-builder"); ?>
321
+ <?php __("Communication Preferences", "profile-builder"); ?>
322
+ <?php __("E-mail", "profile-builder"); ?>
323
+ <?php __("Telephone", "profile-builder"); ?>
324
+ <?php __("SMS", "profile-builder"); ?>
325
+ <?php __("Post", "profile-builder"); ?>
326
+ <?php __("Select which communication preferences are available on your site ( drag and drop to re-order )", "profile-builder"); ?>
327
+ <?php __("Communication Preferences Order", "profile-builder"); ?>
328
+ <?php __("Save the communication preferences order", "profile-builder"); ?>
329
+ <?php __("required", "profile-builder"); ?>
330
  <?php __("Uploaded file is not valid json!", "profile-builder"); ?>
331
  <?php __("Import successfully!", "profile-builder"); ?>
332
  <?php __("Please select a .json file to import!", "profile-builder"); ?>
373
  <?php __("Select2 multi-value select boxes can set restrictions regarding the maximum number of options selected.", "profile-builder"); ?>
374
  <?php __("User Inputted Options", "profile-builder"); ?>
375
  <?php __("Check this to allow users to create their own options beside the pre-existing ones.", "profile-builder"); ?>
 
376
  <?php __("Link with Facebook", "profile-builder"); ?>
377
  <?php __("Sign in with Facebook", "profile-builder"); ?>
378
  <?php __("Link with Google+", "profile-builder"); ?>
643
  <?php __("Usernames cannot be changed.", "profile-builder"); ?>
644
  <?php __("Nickname", "profile-builder"); ?>
645
  <?php __("Display name publicly as", "profile-builder"); ?>
 
646
  <?php __("Website", "profile-builder"); ?>
647
  <?php __("AIM", "profile-builder"); ?>
648
  <?php __("Yahoo IM", "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, 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: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, woosync-page.php:116
41
  msgid "Default Edit Profile"
42
  msgstr ""
43
 
@@ -369,7 +369,7 @@ msgstr ""
369
  msgid "Edit Profile"
370
  msgstr ""
371
 
372
- #: ../pb-add-on-custom-profile-menus/index.php:308, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, ../profile-builder-2.0/front-end/class-formbuilder.php:420, ../profile-builder-2.0/front-end/login.php:263
373
  msgid "Register"
374
  msgstr ""
375
 
@@ -909,179 +909,179 @@ msgstr ""
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:63
1057
  msgid "Display on WooCommerce Checkout"
1058
  msgstr ""
1059
 
1060
- #: woo-checkout-field-support.php:63
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
 
@@ -1295,6 +1295,42 @@ msgstr ""
1295
  msgid "The Campaign Monitor API key is either missing or is invalid."
1296
  msgstr ""
1297
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1298
  #: ../pb-add-on-import-export/inc/class-pbie-import.php:64, ../pb-add-on-labels-edit/inc/class-pble-import.php:34
1299
  msgid "Uploaded file is not valid json!"
1300
  msgstr ""
@@ -1483,10 +1519,6 @@ msgstr ""
1483
  msgid "Check this to allow users to create their own options beside the pre-existing ones."
1484
  msgstr ""
1485
 
1486
- #: ../pb-add-on-select2/front-end/select2-field.php:72, ../pb-add-on-select2/front-end/select2-multiple-field.php:85, ../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
1487
- msgid "required"
1488
- msgstr ""
1489
-
1490
  #: ../pb-add-on-social-connect/facebook/facebook.php:32
1491
  msgid "Link with Facebook"
1492
  msgstr ""
@@ -2111,11 +2143,11 @@ msgstr ""
2111
  msgid "Username and Email"
2112
  msgstr ""
2113
 
2114
- #: ../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:88, ../profile-builder-2.0/front-end/login.php:102, ../profile-builder-2.0/front-end/login.php:231, ../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
2115
  msgid "Username"
2116
  msgstr ""
2117
 
2118
- #: ../profile-builder-2.0/admin/general-settings.php:200, ../profile-builder-2.0/front-end/login.php:228, ../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
2119
  msgid "Email"
2120
  msgstr ""
2121
 
@@ -2567,10 +2599,6 @@ msgstr ""
2567
  msgid "Display name publicly as"
2568
  msgstr ""
2569
 
2570
- #: ../profile-builder-2.0/admin/manage-fields.php:250, ../profile-builder-2.0/front-end/recover.php:119, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:169, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169, ../profile-builder-2.0/modules/user-listing/userlisting.php:117
2571
- msgid "E-mail"
2572
- msgstr ""
2573
-
2574
  #: ../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
2575
  msgid "Website"
2576
  msgstr ""
@@ -4421,7 +4449,7 @@ msgstr ""
4421
  msgid "You must be logged in to edit your profile."
4422
  msgstr ""
4423
 
4424
- #: ../profile-builder-2.0/front-end/class-formbuilder.php:263, ../profile-builder-2.0/front-end/login.php:321
4425
  msgid "You are not allowed to do this."
4426
  msgstr ""
4427
 
@@ -4461,59 +4489,59 @@ msgstr ""
4461
  msgid "Something went wrong. Please try again!"
4462
  msgstr ""
4463
 
4464
- #: ../profile-builder-2.0/front-end/login.php:150, ../profile-builder-2.0/front-end/login.php:157, ../profile-builder-2.0/front-end/login.php:171, ../profile-builder-2.0/front-end/recover.php:17, ../profile-builder-2.0/front-end/recover.php:249, ../profile-builder-2.0/front-end/extra-fields/extra-fields.php:92
4465
  msgid "ERROR"
4466
  msgstr ""
4467
 
4468
- #: ../profile-builder-2.0/front-end/login.php:150
4469
  msgid "The password you entered is incorrect."
4470
  msgstr ""
4471
 
4472
- #: ../profile-builder-2.0/front-end/login.php:151, ../profile-builder-2.0/front-end/login.php:158
4473
  msgid "Password Lost and Found."
4474
  msgstr ""
4475
 
4476
- #: ../profile-builder-2.0/front-end/login.php:151, ../profile-builder-2.0/front-end/login.php:158
4477
  msgid "Lost your password"
4478
  msgstr ""
4479
 
4480
- #: ../profile-builder-2.0/front-end/login.php:157
4481
  msgid "Invalid username."
4482
  msgstr ""
4483
 
4484
- #: ../profile-builder-2.0/front-end/login.php:162, ../profile-builder-2.0/front-end/login.php:166
4485
  msgid "username"
4486
  msgstr ""
4487
 
4488
- #: ../profile-builder-2.0/front-end/login.php:162
4489
  msgid "email"
4490
  msgstr ""
4491
 
4492
- #: ../profile-builder-2.0/front-end/login.php:166
4493
  msgid "username or email"
4494
  msgstr ""
4495
 
4496
- #: ../profile-builder-2.0/front-end/login.php:171
4497
  msgid "Both fields are empty."
4498
  msgstr ""
4499
 
4500
- #: ../profile-builder-2.0/front-end/login.php:235
4501
  msgid "Username or Email"
4502
  msgstr ""
4503
 
4504
- #: ../profile-builder-2.0/front-end/login.php:269
4505
  msgid "Lost your password?"
4506
  msgstr ""
4507
 
4508
- #: ../profile-builder-2.0/front-end/login.php:308, ../profile-builder-2.0/front-end/logout.php:25
4509
  msgid "Log out of this account"
4510
  msgstr ""
4511
 
4512
- #: ../profile-builder-2.0/front-end/login.php:308
4513
  msgid "Log out"
4514
  msgstr ""
4515
 
4516
- #: ../profile-builder-2.0/front-end/login.php:309
4517
  msgid "You are currently logged in as %1$s. %2$s"
4518
  msgstr ""
4519
 
@@ -4841,7 +4869,7 @@ msgstr ""
4841
  msgid "Conditional Rules"
4842
  msgstr ""
4843
 
4844
- #: ../profile-builder-2.0/features/conditional-fields/conditional-fields.php:448
4845
  msgid "This field has conditional logic enabled."
4846
  msgstr ""
4847
 
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
  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
 
369
  msgid "Edit Profile"
370
  msgstr ""
371
 
372
+ #: ../pb-add-on-custom-profile-menus/index.php:308, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, ../profile-builder-2.0/front-end/class-formbuilder.php:420, ../profile-builder-2.0/front-end/login.php:397
373
  msgid "Register"
374
  msgstr ""
375
 
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
 
1295
  msgid "The Campaign Monitor API key is either missing or is invalid."
1296
  msgstr ""
1297
 
1298
+ #: admin/manage-fields.php:29
1299
+ msgid "Communication Preferences"
1300
+ msgstr ""
1301
+
1302
+ #: admin/manage-fields.php:29, front-end/gdpr-communication-preferences.php:9, ../profile-builder-2.0/admin/manage-fields.php:250, ../profile-builder-2.0/front-end/recover.php:119, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:169, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169, ../profile-builder-2.0/modules/user-listing/userlisting.php:117
1303
+ msgid "E-mail"
1304
+ msgstr ""
1305
+
1306
+ #: admin/manage-fields.php:29, front-end/gdpr-communication-preferences.php:9
1307
+ msgid "Telephone"
1308
+ msgstr ""
1309
+
1310
+ #: admin/manage-fields.php:29, front-end/gdpr-communication-preferences.php:9
1311
+ msgid "SMS"
1312
+ msgstr ""
1313
+
1314
+ #: admin/manage-fields.php:29, front-end/gdpr-communication-preferences.php:9
1315
+ msgid "Post"
1316
+ msgstr ""
1317
+
1318
+ #: admin/manage-fields.php:29
1319
+ msgid "Select which communication preferences are available on your site ( drag and drop to re-order )"
1320
+ msgstr ""
1321
+
1322
+ #: admin/manage-fields.php:30
1323
+ msgid "Communication Preferences Order"
1324
+ msgstr ""
1325
+
1326
+ #: admin/manage-fields.php:30
1327
+ msgid "Save the communication preferences order"
1328
+ msgstr ""
1329
+
1330
+ #: 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
+
1334
  #: ../pb-add-on-import-export/inc/class-pbie-import.php:64, ../pb-add-on-labels-edit/inc/class-pble-import.php:34
1335
  msgid "Uploaded file is not valid json!"
1336
  msgstr ""
1519
  msgid "Check this to allow users to create their own options beside the pre-existing ones."
1520
  msgstr ""
1521
 
 
 
 
 
1522
  #: ../pb-add-on-social-connect/facebook/facebook.php:32
1523
  msgid "Link with Facebook"
1524
  msgstr ""
2143
  msgid "Username and Email"
2144
  msgstr ""
2145
 
2146
+ #: ../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:223, ../profile-builder-2.0/front-end/login.php:237, ../profile-builder-2.0/front-end/login.php:365, ../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
2147
  msgid "Username"
2148
  msgstr ""
2149
 
2150
+ #: ../profile-builder-2.0/admin/general-settings.php:200, ../profile-builder-2.0/front-end/login.php:362, ../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
2151
  msgid "Email"
2152
  msgstr ""
2153
 
2599
  msgid "Display name publicly as"
2600
  msgstr ""
2601
 
 
 
 
 
2602
  #: ../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
2603
  msgid "Website"
2604
  msgstr ""
4449
  msgid "You must be logged in to edit your profile."
4450
  msgstr ""
4451
 
4452
+ #: ../profile-builder-2.0/front-end/class-formbuilder.php:263, ../profile-builder-2.0/front-end/login.php:455
4453
  msgid "You are not allowed to do this."
4454
  msgstr ""
4455
 
4489
  msgid "Something went wrong. Please try again!"
4490
  msgstr ""
4491
 
4492
+ #: ../profile-builder-2.0/front-end/login.php:285, ../profile-builder-2.0/front-end/login.php:292, ../profile-builder-2.0/front-end/login.php:306, ../profile-builder-2.0/front-end/recover.php:17, ../profile-builder-2.0/front-end/recover.php:249, ../profile-builder-2.0/front-end/extra-fields/extra-fields.php:92
4493
  msgid "ERROR"
4494
  msgstr ""
4495
 
4496
+ #: ../profile-builder-2.0/front-end/login.php:285
4497
  msgid "The password you entered is incorrect."
4498
  msgstr ""
4499
 
4500
+ #: ../profile-builder-2.0/front-end/login.php:286, ../profile-builder-2.0/front-end/login.php:293
4501
  msgid "Password Lost and Found."
4502
  msgstr ""
4503
 
4504
+ #: ../profile-builder-2.0/front-end/login.php:286, ../profile-builder-2.0/front-end/login.php:293
4505
  msgid "Lost your password"
4506
  msgstr ""
4507
 
4508
+ #: ../profile-builder-2.0/front-end/login.php:292
4509
  msgid "Invalid username."
4510
  msgstr ""
4511
 
4512
+ #: ../profile-builder-2.0/front-end/login.php:297, ../profile-builder-2.0/front-end/login.php:301
4513
  msgid "username"
4514
  msgstr ""
4515
 
4516
+ #: ../profile-builder-2.0/front-end/login.php:297
4517
  msgid "email"
4518
  msgstr ""
4519
 
4520
+ #: ../profile-builder-2.0/front-end/login.php:301
4521
  msgid "username or email"
4522
  msgstr ""
4523
 
4524
+ #: ../profile-builder-2.0/front-end/login.php:306
4525
  msgid "Both fields are empty."
4526
  msgstr ""
4527
 
4528
+ #: ../profile-builder-2.0/front-end/login.php:369
4529
  msgid "Username or Email"
4530
  msgstr ""
4531
 
4532
+ #: ../profile-builder-2.0/front-end/login.php:403
4533
  msgid "Lost your password?"
4534
  msgstr ""
4535
 
4536
+ #: ../profile-builder-2.0/front-end/login.php:442, ../profile-builder-2.0/front-end/logout.php:25
4537
  msgid "Log out of this account"
4538
  msgstr ""
4539
 
4540
+ #: ../profile-builder-2.0/front-end/login.php:442
4541
  msgid "Log out"
4542
  msgstr ""
4543
 
4544
+ #: ../profile-builder-2.0/front-end/login.php:443
4545
  msgid "You are currently logged in as %1$s. %2$s"
4546
  msgstr ""
4547
 
4869
  msgid "Conditional Rules"
4870
  msgstr ""
4871
 
4872
+ #: ../profile-builder-2.0/features/conditional-fields/conditional-fields.php:458
4873
  msgid "This field has conditional logic enabled."
4874
  msgstr ""
4875