Version Description
- Fix: An issue with the Simple Upload field not saving when Email Confirmation was enabled
- Fix: A warning regarding the Elementor integration
- Misc: Add a filter that would allow users to remove the wppb_referer_url query argument from the private website redirect: wppb_private_website_redirect_add_query_args
- Misc: Improved description for the Allow Users to Log In With option
Download this release
Release Info
| Developer | raster02 |
| Plugin | |
| Version | 3.4.1 |
| Comparing to | |
| See all releases | |
Code changes from version 3.4.0 to 3.4.1
- admin/admin-functions.php +16 -2
- admin/general-settings.php +3 -3
- assets/images/elementor_logo.png +0 -0
- assets/misc/elementor/widgets/class-pb-widget-l.php +4 -2
- assets/misc/elementor/widgets/class-pb-widget-rf-epf.php +21 -13
- features/email-confirmation/email-confirmation.php +24 -1
- features/functions.php +1 -1
- index.php +2 -2
- readme.txt +8 -2
- translation/profile-builder.catalog.php +7 -18
- translation/profile-builder.pot +44 -88
admin/admin-functions.php
CHANGED
|
@@ -257,12 +257,26 @@ function wppb_add_plugin_notifications() {
|
|
| 257 |
/* this must be unique */
|
| 258 |
$notification_id = 'wppb_migrated_free_add_ons';
|
| 259 |
|
| 260 |
-
$message = '<p style="margin-top: 16px;">' . __( 'All the free add-ons have been migrated to the main plugin. Their old individual plugins have been disabled and you can delete them from your site if you were using them: <ul><li>Profile Builder - Custom CSS Classes on fields</li><li>Profile Builder - Customization Toolbox Add-On</li><li>Profile Builder - Email Confirmation Field</li><li>Profile Builder - GDPR Communication Preferences</li><li>Profile Builder - Import and Export Add-On</li><li>Profile Builder - Labels Edit Add-On</li><li>Profile Builder - Maximum Character Length Add-On</li><li>Profile Builder - Multiple Admin E-mails Add-On</li><li>Profile Builder - Placeholder Labels Add-On</li></ul>', 'profile-builder' ) . '</p>';
|
| 261 |
// be careful to use wppb_dismiss_admin_notification as query arg
|
| 262 |
$message .= '<p><a href="https://www.cozmoslabs.com/277540-profile-builder-enhancements-free-addons-now-part-of-main-plugin/" target="_blank" class="button-primary">' . __( 'See details', 'profile-builder' ) . '</a></p>';
|
| 263 |
$message .= '<a href="' . add_query_arg( array( 'wppb_dismiss_admin_notification' => $notification_id ) ) . '" type="button" class="notice-dismiss"><span class="screen-reader-text">' . __( 'Dismiss this notice.', 'profile-builder' ) . '</span></a>';
|
| 264 |
|
| 265 |
$notifications->add_notification( $notification_id, $message, 'wppb-notice notice notice-info', false );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 266 |
}
|
| 267 |
|
| 268 |
|
|
@@ -359,4 +373,4 @@ function wppb_get_reserved_meta_name_list( $all_fields, $posted_values ){
|
|
| 359 |
$unique_meta_name_list = array_merge( $unique_meta_name_list, $reserved_meta_names, $post_types, $taxonomies );
|
| 360 |
|
| 361 |
return apply_filters ( 'wppb_unique_meta_name_list', $unique_meta_name_list );
|
| 362 |
-
}
|
| 257 |
/* this must be unique */
|
| 258 |
$notification_id = 'wppb_migrated_free_add_ons';
|
| 259 |
|
| 260 |
+
$message = '<p style="margin-top: 16px; font-size: 15px;">' . __( 'All the free add-ons have been migrated to the main plugin. Their old individual plugins have been disabled and you can delete them from your site if you were using them: <ul><li>Profile Builder - Custom CSS Classes on fields</li><li>Profile Builder - Customization Toolbox Add-On</li><li>Profile Builder - Email Confirmation Field</li><li>Profile Builder - GDPR Communication Preferences</li><li>Profile Builder - Import and Export Add-On</li><li>Profile Builder - Labels Edit Add-On</li><li>Profile Builder - Maximum Character Length Add-On</li><li>Profile Builder - Multiple Admin E-mails Add-On</li><li>Profile Builder - Placeholder Labels Add-On</li></ul>', 'profile-builder' ) . '</p>';
|
| 261 |
// be careful to use wppb_dismiss_admin_notification as query arg
|
| 262 |
$message .= '<p><a href="https://www.cozmoslabs.com/277540-profile-builder-enhancements-free-addons-now-part-of-main-plugin/" target="_blank" class="button-primary">' . __( 'See details', 'profile-builder' ) . '</a></p>';
|
| 263 |
$message .= '<a href="' . add_query_arg( array( 'wppb_dismiss_admin_notification' => $notification_id ) ) . '" type="button" class="notice-dismiss"><span class="screen-reader-text">' . __( 'Dismiss this notice.', 'profile-builder' ) . '</span></a>';
|
| 264 |
|
| 265 |
$notifications->add_notification( $notification_id, $message, 'wppb-notice notice notice-info', false );
|
| 266 |
+
|
| 267 |
+
if ( did_action( 'elementor/loaded' ) ) {
|
| 268 |
+
|
| 269 |
+
$notification_id = 'wppb_elementor_styling_notice';
|
| 270 |
+
|
| 271 |
+
$message = '<img style="float: left; margin: 10px 12px 10px 0; max-width: 100px;" src="'.WPPB_PLUGIN_URL.'assets/images/elementor_logo.png" alt="Elementor Logo"/>';
|
| 272 |
+
$message .= '<p style="margin-top: 16px; font-size: 15px;">' . sprintf( __( 'You can now style %s forms from the %s interface. To get started, add a form widget to a page through %s and go to the <strong>Style</strong> tab.', 'profile-builder' ), '<strong>Profile Builder</strong>', '<strong>Elementor</strong>', '<strong>Elementor</strong>') . '</p>';
|
| 273 |
+
// be careful to use wppb_dismiss_admin_notification as query arg
|
| 274 |
+
$message .= '<p><a href="https://www.cozmoslabs.com/docs/profile-builder-2/integration-with-elementor/" target="_blank" class="button-primary">' . __( 'See details', 'profile-builder' ) . '</a></p>';
|
| 275 |
+
$message .= '<a href="' . add_query_arg( array( 'wppb_dismiss_admin_notification' => $notification_id ) ) . '" type="button" class="notice-dismiss"><span class="screen-reader-text">' . __( 'Dismiss this notice.', 'profile-builder' ) . '</span></a>';
|
| 276 |
+
|
| 277 |
+
$notifications->add_notification( $notification_id, $message, 'wppb-notice notice notice-info', false );
|
| 278 |
+
|
| 279 |
+
}
|
| 280 |
}
|
| 281 |
|
| 282 |
|
| 373 |
$unique_meta_name_list = array_merge( $unique_meta_name_list, $reserved_meta_names, $post_types, $taxonomies );
|
| 374 |
|
| 375 |
return apply_filters ( 'wppb_unique_meta_name_list', $unique_meta_name_list );
|
| 376 |
+
}
|
admin/general-settings.php
CHANGED
|
@@ -297,9 +297,9 @@ function wppb_general_settings_content() {
|
|
| 297 |
<option value="email" <?php if ( $wppb_generalSettings['loginWith'] == 'email' ) echo 'selected'; ?>><?php _e( 'Email', 'profile-builder' ); ?></option>
|
| 298 |
</select>
|
| 299 |
<ul>
|
| 300 |
-
<li class="description"><?php _e( '"Username and Email" - users can Log In with
|
| 301 |
-
<li class="description"><?php _e( '"Username" - users can Log In
|
| 302 |
-
<li class="description"><?php _e( '"Email" - users can Log In
|
| 303 |
</ul>
|
| 304 |
</td>
|
| 305 |
</tr>
|
| 297 |
<option value="email" <?php if ( $wppb_generalSettings['loginWith'] == 'email' ) echo 'selected'; ?>><?php _e( 'Email', 'profile-builder' ); ?></option>
|
| 298 |
</select>
|
| 299 |
<ul>
|
| 300 |
+
<li class="description"><?php _e( '"Username and Email" - users can Log In with either their Username or their Email.', 'profile-builder' ); ?></li>
|
| 301 |
+
<li class="description"><?php _e( '"Username" - users can only Log In with their Username. Both the Username and Email fields will be shown in the front-end forms.', 'profile-builder' ); ?></li>
|
| 302 |
+
<li class="description"><?php _e( '"Email" - users can only Log In with their Email. The Username field will be hidden in the front-end forms and Usernames will be automatically generated based on the Emails.', 'profile-builder' ); ?></li>
|
| 303 |
</ul>
|
| 304 |
</td>
|
| 305 |
</tr>
|
assets/images/elementor_logo.png
ADDED
|
Binary file
|
assets/misc/elementor/widgets/class-pb-widget-l.php
CHANGED
|
@@ -185,9 +185,11 @@ class PB_Elementor_Login_Widget extends PB_Elementor_Widget {
|
|
| 185 |
|
| 186 |
// Social Connect Style tab
|
| 187 |
$social_connect_settings = get_option( 'wppb_social_connect_settings' );
|
| 188 |
-
|
|
|
|
|
|
|
| 189 |
|
| 190 |
-
if ( strpos($social_connect_settings['display-on-the-following-forms'], 'pb-login' ) !== false ) {
|
| 191 |
$this->add_styling_control_group(
|
| 192 |
'Social Connect',
|
| 193 |
'',
|
| 185 |
|
| 186 |
// Social Connect Style tab
|
| 187 |
$social_connect_settings = get_option( 'wppb_social_connect_settings' );
|
| 188 |
+
if ( is_array($social_connect_settings) ) {
|
| 189 |
+
$social_connect_settings = reset($social_connect_settings);
|
| 190 |
+
}
|
| 191 |
|
| 192 |
+
if ( $social_connect_settings && strpos($social_connect_settings['display-on-the-following-forms'], 'pb-login' ) !== false ) {
|
| 193 |
$this->add_styling_control_group(
|
| 194 |
'Social Connect',
|
| 195 |
'',
|
assets/misc/elementor/widgets/class-pb-widget-rf-epf.php
CHANGED
|
@@ -33,20 +33,26 @@ abstract class PB_Elementor_Register_Edit_Profile_Widget extends PB_Elementor_Wi
|
|
| 33 |
}
|
| 34 |
|
| 35 |
public function get_script_depends() {
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
|
|
|
|
|
|
|
|
|
| 40 |
}
|
| 41 |
|
| 42 |
public function get_style_depends() {
|
| 43 |
-
$styles = [
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
|
|
|
|
|
|
|
|
|
| 50 |
|
| 51 |
if ( is_plugin_active( 'pb-add-on-multi-step-forms/index.php' ) ) {
|
| 52 |
$styles[] = 'wppb-msf-style-frontend';
|
|
@@ -95,7 +101,9 @@ abstract class PB_Elementor_Register_Edit_Profile_Widget extends PB_Elementor_Wi
|
|
| 95 |
'default' => get_option( 'wppb_manage_fields' )
|
| 96 |
);
|
| 97 |
$social_connect_settings = get_option( 'wppb_social_connect_settings' );
|
| 98 |
-
|
|
|
|
|
|
|
| 99 |
$social_connect = [];
|
| 100 |
|
| 101 |
if ( !( ( $wppb_module_settings !== 'not_found' && ( (
|
|
@@ -299,7 +307,7 @@ abstract class PB_Elementor_Register_Edit_Profile_Widget extends PB_Elementor_Wi
|
|
| 299 |
}
|
| 300 |
|
| 301 |
// Style for the Social Connect section
|
| 302 |
-
if ( strpos($social_connect_settings['display-on-the-following-forms'],
|
| 303 |
( $form_type === 'rf' ? 'pb-register' : 'pb-edit-profile' )
|
| 304 |
) ) {
|
| 305 |
$conditions = [];
|
| 33 |
}
|
| 34 |
|
| 35 |
public function get_script_depends() {
|
| 36 |
+
if ( file_exists(WPPB_PLUGIN_DIR . '/front-end/extra-fields/extra-fields.php') ) {
|
| 37 |
+
return [
|
| 38 |
+
'wppb_sl2_lib_js',
|
| 39 |
+
'wppb_select2_js',
|
| 40 |
+
];
|
| 41 |
+
}
|
| 42 |
+
return [];
|
| 43 |
}
|
| 44 |
|
| 45 |
public function get_style_depends() {
|
| 46 |
+
$styles = [];
|
| 47 |
+
if ( file_exists(WPPB_PLUGIN_DIR . '/front-end/extra-fields/extra-fields.php') ) {
|
| 48 |
+
$styles = [
|
| 49 |
+
'wppb_sl2_lib_css',
|
| 50 |
+
'wppb_sl2_css',
|
| 51 |
+
'profile-builder-upload-css',
|
| 52 |
+
'wppb_select2_css',
|
| 53 |
+
'wppb-select-cpt-style',
|
| 54 |
+
];
|
| 55 |
+
}
|
| 56 |
|
| 57 |
if ( is_plugin_active( 'pb-add-on-multi-step-forms/index.php' ) ) {
|
| 58 |
$styles[] = 'wppb-msf-style-frontend';
|
| 101 |
'default' => get_option( 'wppb_manage_fields' )
|
| 102 |
);
|
| 103 |
$social_connect_settings = get_option( 'wppb_social_connect_settings' );
|
| 104 |
+
if ( is_array($social_connect_settings) ) {
|
| 105 |
+
$social_connect_settings = reset($social_connect_settings);
|
| 106 |
+
}
|
| 107 |
$social_connect = [];
|
| 108 |
|
| 109 |
if ( !( ( $wppb_module_settings !== 'not_found' && ( (
|
| 307 |
}
|
| 308 |
|
| 309 |
// Style for the Social Connect section
|
| 310 |
+
if ( $social_connect_settings && strpos($social_connect_settings['display-on-the-following-forms'],
|
| 311 |
( $form_type === 'rf' ? 'pb-register' : 'pb-edit-profile' )
|
| 312 |
) ) {
|
| 313 |
$conditions = [];
|
features/email-confirmation/email-confirmation.php
CHANGED
|
@@ -340,7 +340,30 @@ function wppb_signup_user( $username, $user_email, $meta = '' ) {
|
|
| 340 |
|
| 341 |
$user_email = sanitize_email( $user_email );
|
| 342 |
$activation_key = substr( md5( time() . rand() . $user_email ), 0, 16 );
|
| 343 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 344 |
|
| 345 |
// change User Registered date and time according to timezone selected in WordPress settings
|
| 346 |
$wppb_get_date = wppb_get_register_date();
|
| 340 |
|
| 341 |
$user_email = sanitize_email( $user_email );
|
| 342 |
$activation_key = substr( md5( time() . rand() . $user_email ), 0, 16 );
|
| 343 |
+
|
| 344 |
+
// Save the file uploaded with the simple upload filed
|
| 345 |
+
// It will have no author until the user's email is confirmed
|
| 346 |
+
$fields = get_option( 'wppb_manage_fields' );
|
| 347 |
+
foreach ( $fields as $field ){
|
| 348 |
+
if( $field['field'] == 'Upload' && (isset( $field[ 'simple-upload' ] ) && $field['simple-upload'] == 'yes') ) {
|
| 349 |
+
foreach ( $meta as $meta_name => $value ){
|
| 350 |
+
if ( $field['meta-name'] === $meta_name ){
|
| 351 |
+
$field_name = 'simple_upload_' . $meta_name;
|
| 352 |
+
if( isset($_FILES[$field_name]) &&
|
| 353 |
+
$_FILES[$field_name]['size'] !== 0 &&
|
| 354 |
+
!(wppb_belongs_to_repeater_with_conditional_logic($field) && !isset($request_data[wppb_handle_meta_name($field['meta-name'])])) &&
|
| 355 |
+
!(isset($field['conditional-logic-enabled']) &&
|
| 356 |
+
$field['conditional-logic-enabled'] == 'yes' &&
|
| 357 |
+
!isset($request_data[wppb_handle_meta_name($field['meta-name'])])) &&
|
| 358 |
+
wppb_valid_simple_upload($field, $_FILES[$field_name])) {
|
| 359 |
+
$meta[$meta_name] = wppb_save_simple_upload_file( $field_name );
|
| 360 |
+
}
|
| 361 |
+
}
|
| 362 |
+
}
|
| 363 |
+
}
|
| 364 |
+
}
|
| 365 |
+
|
| 366 |
+
$meta = serialize( $meta );
|
| 367 |
|
| 368 |
// change User Registered date and time according to timezone selected in WordPress settings
|
| 369 |
$wppb_get_date = wppb_get_register_date();
|
features/functions.php
CHANGED
|
@@ -1367,7 +1367,7 @@ function wppb_private_website_functionality(){
|
|
| 1367 |
|
| 1368 |
if( ( !in_array( $post_id, $allowed_pages ) && $redirect_url !== strtok( wppb_curpageurl(), '?' ) ) || is_search() ){
|
| 1369 |
nocache_headers();
|
| 1370 |
-
if( current_filter() == 'template_redirect' ) {
|
| 1371 |
$redirect_url = add_query_arg( 'wppb_referer_url', urlencode( esc_url( wppb_curpageurl() ) ), $redirect_url );
|
| 1372 |
}
|
| 1373 |
wp_safe_redirect( $redirect_url );
|
| 1367 |
|
| 1368 |
if( ( !in_array( $post_id, $allowed_pages ) && $redirect_url !== strtok( wppb_curpageurl(), '?' ) ) || is_search() ){
|
| 1369 |
nocache_headers();
|
| 1370 |
+
if( apply_filters( 'wppb_private_website_redirect_add_query_args', true ) && current_filter() == 'template_redirect' ) {
|
| 1371 |
$redirect_url = add_query_arg( 'wppb_referer_url', urlencode( esc_url( wppb_curpageurl() ) ), $redirect_url );
|
| 1372 |
}
|
| 1373 |
wp_safe_redirect( $redirect_url );
|
index.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
Plugin Name: Profile Builder
|
| 4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
| 5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
| 6 |
-
Version: 3.4.
|
| 7 |
Author: Cozmoslabs
|
| 8 |
Author URI: https://www.cozmoslabs.com/
|
| 9 |
Text Domain: profile-builder
|
|
@@ -70,7 +70,7 @@ function wppb_free_plugin_init() {
|
|
| 70 |
*
|
| 71 |
*
|
| 72 |
*/
|
| 73 |
-
define('PROFILE_BUILDER_VERSION', '3.4.
|
| 74 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
| 75 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
| 76 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
| 3 |
Plugin Name: Profile Builder
|
| 4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
| 5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
| 6 |
+
Version: 3.4.1
|
| 7 |
Author: Cozmoslabs
|
| 8 |
Author URI: https://www.cozmoslabs.com/
|
| 9 |
Text Domain: profile-builder
|
| 70 |
*
|
| 71 |
*
|
| 72 |
*/
|
| 73 |
+
define('PROFILE_BUILDER_VERSION', '3.4.1' );
|
| 74 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
| 75 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
| 76 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
readme.txt
CHANGED
|
@@ -3,8 +3,8 @@ Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungurea
|
|
| 3 |
Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
| 4 |
Tags: user registration, user profile, user registration form, user fields, registration, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
|
| 5 |
Requires at least: 3.1
|
| 6 |
-
Tested up to: 5.
|
| 7 |
-
Stable tag: 3.4.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -170,6 +170,12 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
| 170 |
15. Edit or Add New User Role
|
| 171 |
|
| 172 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 173 |
= 3.4.0 =
|
| 174 |
* Provided more information on the type of reCAPTCHA in Form Fields to avoid confusion
|
| 175 |
* Fixed a compatibility issue with Twenty Twenty-one theme
|
| 3 |
Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
| 4 |
Tags: user registration, user profile, user registration form, user fields, registration, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
|
| 5 |
Requires at least: 3.1
|
| 6 |
+
Tested up to: 5.7
|
| 7 |
+
Stable tag: 3.4.1
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 170 |
15. Edit or Add New User Role
|
| 171 |
|
| 172 |
== Changelog ==
|
| 173 |
+
= 3.4.1 =
|
| 174 |
+
* Fix: An issue with the Simple Upload field not saving when Email Confirmation was enabled
|
| 175 |
+
* Fix: A warning regarding the Elementor integration
|
| 176 |
+
* Misc: Add a filter that would allow users to remove the wppb_referer_url query argument from the private website redirect: wppb_private_website_redirect_add_query_args
|
| 177 |
+
* Misc: Improved description for the Allow Users to Log In With option
|
| 178 |
+
|
| 179 |
= 3.4.0 =
|
| 180 |
* Provided more information on the type of reCAPTCHA in Form Fields to avoid confusion
|
| 181 |
* Fixed a compatibility issue with Twenty Twenty-one theme
|
translation/profile-builder.catalog.php
CHANGED
|
@@ -110,21 +110,6 @@
|
|
| 110 |
<?php __("Show users that require review", "profile-builder"); ?>
|
| 111 |
<?php __("Show reviewed users with unapproved fields", "profile-builder"); ?>
|
| 112 |
<?php __("Exit Review Mode", "profile-builder"); ?>
|
| 113 |
-
<?php __("Visibility", "profile-builder"); ?>
|
| 114 |
-
<?php __("<strong>Admin Only</strong> field is visible only for administrators. <strong>User Locked</strong> field is visible for both administrators and users, but only administrators have the capability to edit it.", "profile-builder"); ?>
|
| 115 |
-
<?php __("User Role Visibility", "profile-builder"); ?>
|
| 116 |
-
<?php __("Select which user roles see this field", "profile-builder"); ?>
|
| 117 |
-
<?php __("Location Visibility", "profile-builder"); ?>
|
| 118 |
-
<?php __("Select the locations you wish the field to appear", "profile-builder"); ?>
|
| 119 |
-
<?php __("<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>", "profile-builder"); ?>
|
| 120 |
-
<?php __("Edit", "profile-builder"); ?>
|
| 121 |
-
<?php __("Delete", "profile-builder"); ?>
|
| 122 |
-
<?php __("This field is visible only for administrators.", "profile-builder"); ?>
|
| 123 |
-
<?php __("This field is visible for both administrators and users, but only administrators have the capability to edit it.", "profile-builder"); ?>
|
| 124 |
-
<?php __("This field is visible only for the following user roles: %1$s", "profile-builder"); ?>
|
| 125 |
-
<?php __("This field is visible only in the following locations: %1$s", "profile-builder"); ?>
|
| 126 |
-
<?php __("Get file", "profile-builder"); ?>
|
| 127 |
-
<?php __("You do not have the capabilities necessary to edit this field.", "profile-builder"); ?>
|
| 128 |
<?php __("MailPoet Newsletters needs to be installed and activated for Profile Builder - MailPoet Add-on to work!", "profile-builder"); ?>
|
| 129 |
<?php __("Step", "profile-builder"); ?>
|
| 130 |
<?php __("Title for Tab", "profile-builder"); ?>
|
|
@@ -387,6 +372,7 @@
|
|
| 387 |
<?php __("Admin Bar Settings", "profile-builder"); ?>
|
| 388 |
<?php __("Choose which user roles view the admin bar in the front-end of the website.", "profile-builder"); ?>
|
| 389 |
<?php __("User-Role", "profile-builder"); ?>
|
|
|
|
| 390 |
<?php __("Default", "profile-builder"); ?>
|
| 391 |
<?php __("Show", "profile-builder"); ?>
|
| 392 |
<?php __("Hide", "profile-builder"); ?>
|
|
@@ -407,6 +393,7 @@
|
|
| 407 |
<?php __("All the free add-ons have been migrated to the main plugin. Their old individual plugins have been disabled and you can delete them from your site if you were using them: <ul><li>Profile Builder - Custom CSS Classes on fields</li><li>Profile Builder - Customization Toolbox Add-On</li><li>Profile Builder - Email Confirmation Field</li><li>Profile Builder - GDPR Communication Preferences</li><li>Profile Builder - Import and Export Add-On</li><li>Profile Builder - Labels Edit Add-On</li><li>Profile Builder - Maximum Character Length Add-On</li><li>Profile Builder - Multiple Admin E-mails Add-On</li><li>Profile Builder - Placeholder Labels Add-On</li></ul>", "profile-builder"); ?>
|
| 408 |
<?php __("See details", "profile-builder"); ?>
|
| 409 |
<?php __("Dismiss this notice.", "profile-builder"); ?>
|
|
|
|
| 410 |
<?php __("Basic Information", "profile-builder"); ?>
|
| 411 |
<?php __("<strong>Profile Builder </strong> %s", "profile-builder"); ?>
|
| 412 |
<?php __("The best way to add front-end registration, edit profile and login forms.", "profile-builder"); ?>
|
|
@@ -520,9 +507,9 @@
|
|
| 520 |
<?php __("Username and Email", "profile-builder"); ?>
|
| 521 |
<?php __("Username", "profile-builder"); ?>
|
| 522 |
<?php __("Email", "profile-builder"); ?>
|
| 523 |
-
<?php __("\"Username and Email\" - users can Log In with
|
| 524 |
-
<?php __("\"Username\" - users can Log In
|
| 525 |
-
<?php __("\"Email\" - users can Log In
|
| 526 |
<?php __("Minimum Password Length:", "profile-builder"); ?>
|
| 527 |
<?php __("Enter the minimum characters the password should have. Leave empty for no minimum limit", "profile-builder"); ?>
|
| 528 |
<?php __("Minimum Password Strength:", "profile-builder"); ?>
|
|
@@ -1046,6 +1033,8 @@
|
|
| 1046 |
<?php __("The following option(s) did not coincide with the ones in the options list: %s\n", "profile-builder"); ?>
|
| 1047 |
<?php __("Please select at least one user role\n", "profile-builder"); ?>
|
| 1048 |
<?php __("<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>", "profile-builder"); ?>
|
|
|
|
|
|
|
| 1049 |
<?php __("Use these shortcodes on the pages you want the forms to be displayed:", "profile-builder"); ?>
|
| 1050 |
<?php __("With Profile Builder Pro you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms add-on.", "profile-builder"); ?>
|
| 1051 |
<?php __("If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Add-ons.", "profile-builder"); ?>
|
| 110 |
<?php __("Show users that require review", "profile-builder"); ?>
|
| 111 |
<?php __("Show reviewed users with unapproved fields", "profile-builder"); ?>
|
| 112 |
<?php __("Exit Review Mode", "profile-builder"); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 113 |
<?php __("MailPoet Newsletters needs to be installed and activated for Profile Builder - MailPoet Add-on to work!", "profile-builder"); ?>
|
| 114 |
<?php __("Step", "profile-builder"); ?>
|
| 115 |
<?php __("Title for Tab", "profile-builder"); ?>
|
| 372 |
<?php __("Admin Bar Settings", "profile-builder"); ?>
|
| 373 |
<?php __("Choose which user roles view the admin bar in the front-end of the website.", "profile-builder"); ?>
|
| 374 |
<?php __("User-Role", "profile-builder"); ?>
|
| 375 |
+
<?php __("Visibility", "profile-builder"); ?>
|
| 376 |
<?php __("Default", "profile-builder"); ?>
|
| 377 |
<?php __("Show", "profile-builder"); ?>
|
| 378 |
<?php __("Hide", "profile-builder"); ?>
|
| 393 |
<?php __("All the free add-ons have been migrated to the main plugin. Their old individual plugins have been disabled and you can delete them from your site if you were using them: <ul><li>Profile Builder - Custom CSS Classes on fields</li><li>Profile Builder - Customization Toolbox Add-On</li><li>Profile Builder - Email Confirmation Field</li><li>Profile Builder - GDPR Communication Preferences</li><li>Profile Builder - Import and Export Add-On</li><li>Profile Builder - Labels Edit Add-On</li><li>Profile Builder - Maximum Character Length Add-On</li><li>Profile Builder - Multiple Admin E-mails Add-On</li><li>Profile Builder - Placeholder Labels Add-On</li></ul>", "profile-builder"); ?>
|
| 394 |
<?php __("See details", "profile-builder"); ?>
|
| 395 |
<?php __("Dismiss this notice.", "profile-builder"); ?>
|
| 396 |
+
<?php __("You can now style %s forms from the %s interface. To get started, add a form widget to a page through %s and go to the <strong>Style</strong> tab.", "profile-builder"); ?>
|
| 397 |
<?php __("Basic Information", "profile-builder"); ?>
|
| 398 |
<?php __("<strong>Profile Builder </strong> %s", "profile-builder"); ?>
|
| 399 |
<?php __("The best way to add front-end registration, edit profile and login forms.", "profile-builder"); ?>
|
| 507 |
<?php __("Username and Email", "profile-builder"); ?>
|
| 508 |
<?php __("Username", "profile-builder"); ?>
|
| 509 |
<?php __("Email", "profile-builder"); ?>
|
| 510 |
+
<?php __("\"Username and Email\" - users can Log In with either their Username or their Email.", "profile-builder"); ?>
|
| 511 |
+
<?php __("\"Username\" - users can only Log In with their Username. Both the Username and Email fields will be shown in the front-end forms.", "profile-builder"); ?>
|
| 512 |
+
<?php __("\"Email\" - users can only Log In with their Email. The Username field will be hidden in the front-end forms and Usernames will be automatically generated based on the Emails.", "profile-builder"); ?>
|
| 513 |
<?php __("Minimum Password Length:", "profile-builder"); ?>
|
| 514 |
<?php __("Enter the minimum characters the password should have. Leave empty for no minimum limit", "profile-builder"); ?>
|
| 515 |
<?php __("Minimum Password Strength:", "profile-builder"); ?>
|
| 1033 |
<?php __("The following option(s) did not coincide with the ones in the options list: %s\n", "profile-builder"); ?>
|
| 1034 |
<?php __("Please select at least one user role\n", "profile-builder"); ?>
|
| 1035 |
<?php __("<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>", "profile-builder"); ?>
|
| 1036 |
+
<?php __("Edit", "profile-builder"); ?>
|
| 1037 |
+
<?php __("Delete", "profile-builder"); ?>
|
| 1038 |
<?php __("Use these shortcodes on the pages you want the forms to be displayed:", "profile-builder"); ?>
|
| 1039 |
<?php __("With Profile Builder Pro you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms add-on.", "profile-builder"); ?>
|
| 1040 |
<?php __("If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Add-ons.", "profile-builder"); ?>
|
translation/profile-builder.pot
CHANGED
|
@@ -457,66 +457,6 @@ msgstr ""
|
|
| 457 |
msgid "Exit Review Mode"
|
| 458 |
msgstr ""
|
| 459 |
|
| 460 |
-
#: ../pb-add-on-field-visibility/index.php:220, admin/admin-bar.php:64
|
| 461 |
-
msgid "Visibility"
|
| 462 |
-
msgstr ""
|
| 463 |
-
|
| 464 |
-
#: ../pb-add-on-field-visibility/index.php:220
|
| 465 |
-
msgid "<strong>Admin Only</strong> field is visible only for administrators. <strong>User Locked</strong> field is visible for both administrators and users, but only administrators have the capability to edit it."
|
| 466 |
-
msgstr ""
|
| 467 |
-
|
| 468 |
-
#: ../pb-add-on-field-visibility/index.php:221
|
| 469 |
-
msgid "User Role Visibility"
|
| 470 |
-
msgstr ""
|
| 471 |
-
|
| 472 |
-
#: ../pb-add-on-field-visibility/index.php:221
|
| 473 |
-
msgid "Select which user roles see this field"
|
| 474 |
-
msgstr ""
|
| 475 |
-
|
| 476 |
-
#: ../pb-add-on-field-visibility/index.php:222
|
| 477 |
-
msgid "Location Visibility"
|
| 478 |
-
msgstr ""
|
| 479 |
-
|
| 480 |
-
#: ../pb-add-on-field-visibility/index.php:222
|
| 481 |
-
msgid "Select the locations you wish the field to appear"
|
| 482 |
-
msgstr ""
|
| 483 |
-
|
| 484 |
-
#: ../pb-add-on-field-visibility/index.php:240
|
| 485 |
-
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
|
| 486 |
-
msgstr ""
|
| 487 |
-
|
| 488 |
-
#: ../pb-add-on-field-visibility/index.php:240, admin/manage-fields.php:1351, features/functions.php:969, features/functions.php:976, add-ons/custom-redirects/custom_redirects_admin.php:183, add-ons/custom-redirects/custom_redirects_admin.php:197, add-ons/custom-redirects/custom_redirects_admin.php:211, add-ons/custom-redirects/custom_redirects_admin.php:225, add-ons/multiple-forms/multiple-forms.php:406, features/admin-approval/class-admin-approval.php:108, features/roles-editor/roles-editor.php:866
|
| 489 |
-
msgid "Edit"
|
| 490 |
-
msgstr ""
|
| 491 |
-
|
| 492 |
-
#: ../pb-add-on-field-visibility/index.php:240, admin/manage-fields.php:1351, features/functions.php:962, features/functions.php:976, add-ons/custom-redirects/custom_redirects_admin.php:183, add-ons/custom-redirects/custom_redirects_admin.php:197, add-ons/custom-redirects/custom_redirects_admin.php:211, add-ons/custom-redirects/custom_redirects_admin.php:225, features/admin-approval/class-admin-approval.php:113, features/email-confirmation/class-email-confirmation.php:121, features/email-confirmation/class-email-confirmation.php:218, features/roles-editor/roles-editor.php:180, features/roles-editor/roles-editor.php:904, features/roles-editor/roles-editor.php:893, features/roles-editor/roles-editor.php:884, front-end/default-fields/gdpr-delete/gdpr-delete.php:20
|
| 493 |
-
msgid "Delete"
|
| 494 |
-
msgstr ""
|
| 495 |
-
|
| 496 |
-
#: ../pb-add-on-field-visibility/index.php:261
|
| 497 |
-
msgid "This field is visible only for administrators."
|
| 498 |
-
msgstr ""
|
| 499 |
-
|
| 500 |
-
#: ../pb-add-on-field-visibility/index.php:264
|
| 501 |
-
msgid "This field is visible for both administrators and users, but only administrators have the capability to edit it."
|
| 502 |
-
msgstr ""
|
| 503 |
-
|
| 504 |
-
#: ../pb-add-on-field-visibility/index.php:287
|
| 505 |
-
msgid "This field is visible only for the following user roles: %1$s"
|
| 506 |
-
msgstr ""
|
| 507 |
-
|
| 508 |
-
#: ../pb-add-on-field-visibility/index.php:333
|
| 509 |
-
msgid "This field is visible only in the following locations: %1$s"
|
| 510 |
-
msgstr ""
|
| 511 |
-
|
| 512 |
-
#: ../pb-add-on-field-visibility/index.php:475
|
| 513 |
-
msgid "Get file"
|
| 514 |
-
msgstr ""
|
| 515 |
-
|
| 516 |
-
#: ../pb-add-on-field-visibility/index.php:616
|
| 517 |
-
msgid "You do not have the capabilities necessary to edit this field."
|
| 518 |
-
msgstr ""
|
| 519 |
-
|
| 520 |
#: ../pb-add-on-mailpoet-integration/index.php:128
|
| 521 |
msgid "MailPoet Newsletters needs to be installed and activated for Profile Builder - MailPoet Add-on to work!"
|
| 522 |
msgstr ""
|
|
@@ -1570,7 +1510,11 @@ msgstr ""
|
|
| 1570 |
msgid "User-Role"
|
| 1571 |
msgstr ""
|
| 1572 |
|
| 1573 |
-
#: admin/admin-bar.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1574 |
msgid "Default"
|
| 1575 |
msgstr ""
|
| 1576 |
|
|
@@ -1642,14 +1586,18 @@ msgstr ""
|
|
| 1642 |
msgid "All the free add-ons have been migrated to the main plugin. Their old individual plugins have been disabled and you can delete them from your site if you were using them: <ul><li>Profile Builder - Custom CSS Classes on fields</li><li>Profile Builder - Customization Toolbox Add-On</li><li>Profile Builder - Email Confirmation Field</li><li>Profile Builder - GDPR Communication Preferences</li><li>Profile Builder - Import and Export Add-On</li><li>Profile Builder - Labels Edit Add-On</li><li>Profile Builder - Maximum Character Length Add-On</li><li>Profile Builder - Multiple Admin E-mails Add-On</li><li>Profile Builder - Placeholder Labels Add-On</li></ul>"
|
| 1643 |
msgstr ""
|
| 1644 |
|
| 1645 |
-
#: admin/admin-functions.php:262
|
| 1646 |
msgid "See details"
|
| 1647 |
msgstr ""
|
| 1648 |
|
| 1649 |
-
#: admin/admin-functions.php:263
|
| 1650 |
msgid "Dismiss this notice."
|
| 1651 |
msgstr ""
|
| 1652 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1653 |
#: admin/basic-info.php:11, admin/basic-info.php:11
|
| 1654 |
msgid "Basic Information"
|
| 1655 |
msgstr ""
|
|
@@ -2103,15 +2051,15 @@ msgid "Email"
|
|
| 2103 |
msgstr ""
|
| 2104 |
|
| 2105 |
#: admin/general-settings.php:300
|
| 2106 |
-
msgid "\"Username and Email\" - users can Log In with
|
| 2107 |
msgstr ""
|
| 2108 |
|
| 2109 |
#: admin/general-settings.php:301
|
| 2110 |
-
msgid "\"Username\" - users can Log In
|
| 2111 |
msgstr ""
|
| 2112 |
|
| 2113 |
#: admin/general-settings.php:302
|
| 2114 |
-
msgid "\"Email\" - users can Log In
|
| 2115 |
msgstr ""
|
| 2116 |
|
| 2117 |
#: admin/general-settings.php:309
|
|
@@ -4242,6 +4190,14 @@ msgstr ""
|
|
| 4242 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
| 4243 |
msgstr ""
|
| 4244 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4245 |
#: admin/manage-fields.php:1366
|
| 4246 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
| 4247 |
msgstr ""
|
|
@@ -4822,7 +4778,7 @@ msgstr ""
|
|
| 4822 |
msgid "Your email was successfully confirmed."
|
| 4823 |
msgstr ""
|
| 4824 |
|
| 4825 |
-
#: front-end/register.php:125, features/email-confirmation/email-confirmation.php:
|
| 4826 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
| 4827 |
msgstr ""
|
| 4828 |
|
|
@@ -4830,7 +4786,7 @@ msgstr ""
|
|
| 4830 |
msgid "This username is already activated!"
|
| 4831 |
msgstr ""
|
| 4832 |
|
| 4833 |
-
#: front-end/register.php:71, features/email-confirmation/email-confirmation.php:
|
| 4834 |
msgid "Could not create user!"
|
| 4835 |
msgstr ""
|
| 4836 |
|
|
@@ -5046,7 +5002,7 @@ msgstr ""
|
|
| 5046 |
msgid "Email Subject"
|
| 5047 |
msgstr ""
|
| 5048 |
|
| 5049 |
-
#: add-ons/email-customizer/admin-email-customizer.php:84, features/email-confirmation/email-confirmation.php:
|
| 5050 |
msgid "A new subscriber has (been) registered!"
|
| 5051 |
msgstr ""
|
| 5052 |
|
|
@@ -5183,7 +5139,7 @@ msgstr ""
|
|
| 5183 |
msgid "The users selected password at signup"
|
| 5184 |
msgstr ""
|
| 5185 |
|
| 5186 |
-
#: add-ons/email-customizer/email-customizer.php:583, add-ons/email-customizer/email-customizer.php:590, add-ons/email-customizer/email-customizer.php:604, features/email-confirmation/email-confirmation.php:
|
| 5187 |
msgid "Your selected password at signup"
|
| 5188 |
msgstr ""
|
| 5189 |
|
|
@@ -6356,39 +6312,39 @@ msgstr ""
|
|
| 6356 |
msgid "There was an error performing that action!"
|
| 6357 |
msgstr ""
|
| 6358 |
|
| 6359 |
-
#: features/email-confirmation/email-confirmation.php:
|
| 6360 |
msgid "[%1$s] Activate %2$s"
|
| 6361 |
msgstr ""
|
| 6362 |
|
| 6363 |
-
#: features/email-confirmation/email-confirmation.php:
|
| 6364 |
msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
|
| 6365 |
msgstr ""
|
| 6366 |
|
| 6367 |
-
#: features/email-confirmation/email-confirmation.php:
|
| 6368 |
msgid "There was an error while trying to activate the user"
|
| 6369 |
msgstr ""
|
| 6370 |
|
| 6371 |
-
#: features/email-confirmation/email-confirmation.php:
|
| 6372 |
msgid "That username is already activated!"
|
| 6373 |
msgstr ""
|
| 6374 |
|
| 6375 |
-
#: features/email-confirmation/email-confirmation.php:
|
| 6376 |
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>Email:%3$s<br/>"
|
| 6377 |
msgstr ""
|
| 6378 |
|
| 6379 |
-
#: features/email-confirmation/email-confirmation.php:
|
| 6380 |
msgid "[%1$s] Your new account information"
|
| 6381 |
msgstr ""
|
| 6382 |
|
| 6383 |
-
#: features/email-confirmation/email-confirmation.php:
|
| 6384 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and the password: %3$s.<br/><br/>Access your account: %4$s "
|
| 6385 |
msgstr ""
|
| 6386 |
|
| 6387 |
-
#: features/email-confirmation/email-confirmation.php:
|
| 6388 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and your password is the one that you have selected during registration.<br/><br/>Access your account: %3$s "
|
| 6389 |
msgstr ""
|
| 6390 |
|
| 6391 |
-
#: features/email-confirmation/email-confirmation.php:
|
| 6392 |
msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
|
| 6393 |
msgstr ""
|
| 6394 |
|
|
@@ -7218,7 +7174,7 @@ msgstr ""
|
|
| 7218 |
msgid "Radius"
|
| 7219 |
msgstr ""
|
| 7220 |
|
| 7221 |
-
#: assets/misc/elementor/widgets/class-pb-widget-l.php:46, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:
|
| 7222 |
msgid "Form Settings"
|
| 7223 |
msgstr ""
|
| 7224 |
|
|
@@ -7226,35 +7182,35 @@ msgstr ""
|
|
| 7226 |
msgid "Registration"
|
| 7227 |
msgstr ""
|
| 7228 |
|
| 7229 |
-
#: assets/misc/elementor/widgets/class-pb-widget-l.php:56, assets/misc/elementor/widgets/class-pb-widget-l.php:65, assets/misc/elementor/widgets/class-pb-widget-l.php:84, assets/misc/elementor/widgets/class-pb-widget-l.php:93, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:
|
| 7230 |
msgid "Enter URL"
|
| 7231 |
msgstr ""
|
| 7232 |
|
| 7233 |
-
#: assets/misc/elementor/widgets/class-pb-widget-l.php:74, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:
|
| 7234 |
msgid "Redirects"
|
| 7235 |
msgstr ""
|
| 7236 |
|
| 7237 |
-
#: assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:
|
| 7238 |
msgid "Form"
|
| 7239 |
msgstr ""
|
| 7240 |
|
| 7241 |
-
#: assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:
|
| 7242 |
msgid "Assigned Role"
|
| 7243 |
msgstr ""
|
| 7244 |
|
| 7245 |
-
#: assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:
|
| 7246 |
msgid "Automatic Login"
|
| 7247 |
msgstr ""
|
| 7248 |
|
| 7249 |
-
#: assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:
|
| 7250 |
msgid "Redirect after Edit Profile"
|
| 7251 |
msgstr ""
|
| 7252 |
|
| 7253 |
-
#: assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:
|
| 7254 |
msgid "Redirect after Registration"
|
| 7255 |
msgstr ""
|
| 7256 |
|
| 7257 |
-
#: assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:
|
| 7258 |
msgid "Redirect after Logout"
|
| 7259 |
msgstr ""
|
| 7260 |
|
| 457 |
msgid "Exit Review Mode"
|
| 458 |
msgstr ""
|
| 459 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 460 |
#: ../pb-add-on-mailpoet-integration/index.php:128
|
| 461 |
msgid "MailPoet Newsletters needs to be installed and activated for Profile Builder - MailPoet Add-on to work!"
|
| 462 |
msgstr ""
|
| 1510 |
msgid "User-Role"
|
| 1511 |
msgstr ""
|
| 1512 |
|
| 1513 |
+
#: admin/admin-bar.php:64
|
| 1514 |
+
msgid "Visibility"
|
| 1515 |
+
msgstr ""
|
| 1516 |
+
|
| 1517 |
+
#: admin/admin-bar.php:79, add-ons/multiple-forms/edit-profile-forms.php:206, add-ons/multiple-forms/register-forms.php:230, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:98
|
| 1518 |
msgid "Default"
|
| 1519 |
msgstr ""
|
| 1520 |
|
| 1586 |
msgid "All the free add-ons have been migrated to the main plugin. Their old individual plugins have been disabled and you can delete them from your site if you were using them: <ul><li>Profile Builder - Custom CSS Classes on fields</li><li>Profile Builder - Customization Toolbox Add-On</li><li>Profile Builder - Email Confirmation Field</li><li>Profile Builder - GDPR Communication Preferences</li><li>Profile Builder - Import and Export Add-On</li><li>Profile Builder - Labels Edit Add-On</li><li>Profile Builder - Maximum Character Length Add-On</li><li>Profile Builder - Multiple Admin E-mails Add-On</li><li>Profile Builder - Placeholder Labels Add-On</li></ul>"
|
| 1587 |
msgstr ""
|
| 1588 |
|
| 1589 |
+
#: admin/admin-functions.php:262, admin/admin-functions.php:274
|
| 1590 |
msgid "See details"
|
| 1591 |
msgstr ""
|
| 1592 |
|
| 1593 |
+
#: admin/admin-functions.php:263, admin/admin-functions.php:275
|
| 1594 |
msgid "Dismiss this notice."
|
| 1595 |
msgstr ""
|
| 1596 |
|
| 1597 |
+
#: admin/admin-functions.php:272
|
| 1598 |
+
msgid "You can now style %s forms from the %s interface. To get started, add a form widget to a page through %s and go to the <strong>Style</strong> tab."
|
| 1599 |
+
msgstr ""
|
| 1600 |
+
|
| 1601 |
#: admin/basic-info.php:11, admin/basic-info.php:11
|
| 1602 |
msgid "Basic Information"
|
| 1603 |
msgstr ""
|
| 2051 |
msgstr ""
|
| 2052 |
|
| 2053 |
#: admin/general-settings.php:300
|
| 2054 |
+
msgid "\"Username and Email\" - users can Log In with either their Username or their Email."
|
| 2055 |
msgstr ""
|
| 2056 |
|
| 2057 |
#: admin/general-settings.php:301
|
| 2058 |
+
msgid "\"Username\" - users can only Log In with their Username. Both the Username and Email fields will be shown in the front-end forms."
|
| 2059 |
msgstr ""
|
| 2060 |
|
| 2061 |
#: admin/general-settings.php:302
|
| 2062 |
+
msgid "\"Email\" - users can only Log In with their Email. The Username field will be hidden in the front-end forms and Usernames will be automatically generated based on the Emails."
|
| 2063 |
msgstr ""
|
| 2064 |
|
| 2065 |
#: admin/general-settings.php:309
|
| 4190 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
| 4191 |
msgstr ""
|
| 4192 |
|
| 4193 |
+
#: admin/manage-fields.php:1351, features/functions.php:969, features/functions.php:976, add-ons/custom-redirects/custom_redirects_admin.php:183, add-ons/custom-redirects/custom_redirects_admin.php:197, add-ons/custom-redirects/custom_redirects_admin.php:211, add-ons/custom-redirects/custom_redirects_admin.php:225, add-ons/multiple-forms/multiple-forms.php:406, features/admin-approval/class-admin-approval.php:108, features/roles-editor/roles-editor.php:866
|
| 4194 |
+
msgid "Edit"
|
| 4195 |
+
msgstr ""
|
| 4196 |
+
|
| 4197 |
+
#: admin/manage-fields.php:1351, features/functions.php:962, features/functions.php:976, add-ons/custom-redirects/custom_redirects_admin.php:183, add-ons/custom-redirects/custom_redirects_admin.php:197, add-ons/custom-redirects/custom_redirects_admin.php:211, add-ons/custom-redirects/custom_redirects_admin.php:225, features/admin-approval/class-admin-approval.php:113, features/email-confirmation/class-email-confirmation.php:121, features/email-confirmation/class-email-confirmation.php:218, features/roles-editor/roles-editor.php:180, features/roles-editor/roles-editor.php:904, features/roles-editor/roles-editor.php:893, features/roles-editor/roles-editor.php:884, front-end/default-fields/gdpr-delete/gdpr-delete.php:20
|
| 4198 |
+
msgid "Delete"
|
| 4199 |
+
msgstr ""
|
| 4200 |
+
|
| 4201 |
#: admin/manage-fields.php:1366
|
| 4202 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
| 4203 |
msgstr ""
|
| 4778 |
msgid "Your email was successfully confirmed."
|
| 4779 |
msgstr ""
|
| 4780 |
|
| 4781 |
+
#: front-end/register.php:125, features/email-confirmation/email-confirmation.php:686
|
| 4782 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
| 4783 |
msgstr ""
|
| 4784 |
|
| 4786 |
msgid "This username is already activated!"
|
| 4787 |
msgstr ""
|
| 4788 |
|
| 4789 |
+
#: front-end/register.php:71, features/email-confirmation/email-confirmation.php:485
|
| 4790 |
msgid "Could not create user!"
|
| 4791 |
msgstr ""
|
| 4792 |
|
| 5002 |
msgid "Email Subject"
|
| 5003 |
msgstr ""
|
| 5004 |
|
| 5005 |
+
#: add-ons/email-customizer/admin-email-customizer.php:84, features/email-confirmation/email-confirmation.php:559
|
| 5006 |
msgid "A new subscriber has (been) registered!"
|
| 5007 |
msgstr ""
|
| 5008 |
|
| 5139 |
msgid "The users selected password at signup"
|
| 5140 |
msgstr ""
|
| 5141 |
|
| 5142 |
+
#: add-ons/email-customizer/email-customizer.php:583, add-ons/email-customizer/email-customizer.php:590, add-ons/email-customizer/email-customizer.php:604, features/email-confirmation/email-confirmation.php:617
|
| 5143 |
msgid "Your selected password at signup"
|
| 5144 |
msgstr ""
|
| 5145 |
|
| 6312 |
msgid "There was an error performing that action!"
|
| 6313 |
msgstr ""
|
| 6314 |
|
| 6315 |
+
#: features/email-confirmation/email-confirmation.php:441
|
| 6316 |
msgid "[%1$s] Activate %2$s"
|
| 6317 |
msgstr ""
|
| 6318 |
|
| 6319 |
+
#: features/email-confirmation/email-confirmation.php:444
|
| 6320 |
msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
|
| 6321 |
msgstr ""
|
| 6322 |
|
| 6323 |
+
#: features/email-confirmation/email-confirmation.php:511
|
| 6324 |
msgid "There was an error while trying to activate the user"
|
| 6325 |
msgstr ""
|
| 6326 |
|
| 6327 |
+
#: features/email-confirmation/email-confirmation.php:488
|
| 6328 |
msgid "That username is already activated!"
|
| 6329 |
msgstr ""
|
| 6330 |
|
| 6331 |
+
#: features/email-confirmation/email-confirmation.php:562
|
| 6332 |
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>Email:%3$s<br/>"
|
| 6333 |
msgstr ""
|
| 6334 |
|
| 6335 |
+
#: features/email-confirmation/email-confirmation.php:613
|
| 6336 |
msgid "[%1$s] Your new account information"
|
| 6337 |
msgstr ""
|
| 6338 |
|
| 6339 |
+
#: features/email-confirmation/email-confirmation.php:625
|
| 6340 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and the password: %3$s.<br/><br/>Access your account: %4$s "
|
| 6341 |
msgstr ""
|
| 6342 |
|
| 6343 |
+
#: features/email-confirmation/email-confirmation.php:623
|
| 6344 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and your password is the one that you have selected during registration.<br/><br/>Access your account: %3$s "
|
| 6345 |
msgstr ""
|
| 6346 |
|
| 6347 |
+
#: features/email-confirmation/email-confirmation.php:678
|
| 6348 |
msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
|
| 6349 |
msgstr ""
|
| 6350 |
|
| 7174 |
msgid "Radius"
|
| 7175 |
msgstr ""
|
| 7176 |
|
| 7177 |
+
#: assets/misc/elementor/widgets/class-pb-widget-l.php:46, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:89, assets/misc/elementor/widgets/class-pb-widget-rp.php:46
|
| 7178 |
msgid "Form Settings"
|
| 7179 |
msgstr ""
|
| 7180 |
|
| 7182 |
msgid "Registration"
|
| 7183 |
msgstr ""
|
| 7184 |
|
| 7185 |
+
#: assets/misc/elementor/widgets/class-pb-widget-l.php:56, assets/misc/elementor/widgets/class-pb-widget-l.php:65, assets/misc/elementor/widgets/class-pb-widget-l.php:84, assets/misc/elementor/widgets/class-pb-widget-l.php:93, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:234, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:253
|
| 7186 |
msgid "Enter URL"
|
| 7187 |
msgstr ""
|
| 7188 |
|
| 7189 |
+
#: assets/misc/elementor/widgets/class-pb-widget-l.php:74, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:222
|
| 7190 |
msgid "Redirects"
|
| 7191 |
msgstr ""
|
| 7192 |
|
| 7193 |
+
#: assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:145
|
| 7194 |
msgid "Form"
|
| 7195 |
msgstr ""
|
| 7196 |
|
| 7197 |
+
#: assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:164
|
| 7198 |
msgid "Assigned Role"
|
| 7199 |
msgstr ""
|
| 7200 |
|
| 7201 |
+
#: assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:177
|
| 7202 |
msgid "Automatic Login"
|
| 7203 |
msgstr ""
|
| 7204 |
|
| 7205 |
+
#: assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:242
|
| 7206 |
msgid "Redirect after Edit Profile"
|
| 7207 |
msgstr ""
|
| 7208 |
|
| 7209 |
+
#: assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:240
|
| 7210 |
msgid "Redirect after Registration"
|
| 7211 |
msgstr ""
|
| 7212 |
|
| 7213 |
+
#: assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:251
|
| 7214 |
msgid "Redirect after Logout"
|
| 7215 |
msgstr ""
|
| 7216 |
|
