Version Description
- Add 'automatic_login' parameter for the [wppb-register] shortcode and make sure that the shortcode, multiple registration setting, general setting priority is respected.
- Pass the referer URL forward when the Login form shows an error so the user is still redirected to the page they came from.
- Change 'E-mail' to 'Email' for the password recovery form.
- Switched deprecated jQuery event 'hover' with 'mouseenter mouseleave'.
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 3.3.0 |
Comparing to | |
See all releases |
Code changes from version 3.2.9 to 3.3.0
- assets/js/jquery-pb-add-ons.js +1 -1
- front-end/class-formbuilder.php +8 -2
- front-end/login.php +14 -2
- front-end/recover.php +1 -1
- front-end/register.php +2 -2
- index.php +2 -2
- readme.txt +7 -1
- translation/profile-builder.catalog.php +1 -1
- translation/profile-builder.pot +113 -113
assets/js/jquery-pb-add-ons.js
CHANGED
@@ -24,7 +24,7 @@ jQuery('.wppb-add-on .button').on( 'click', function(e) {
|
|
24 |
/*
|
25 |
* Make deactivate button from Add-On is Active message button
|
26 |
*/
|
27 |
-
jQuery('.wppb-add-on').on( '
|
28 |
|
29 |
$button = jQuery(this).find('.wppb-add-on-deactivate');
|
30 |
|
24 |
/*
|
25 |
* Make deactivate button from Add-On is Active message button
|
26 |
*/
|
27 |
+
jQuery('.wppb-add-on').on( 'mouseenter mouseleave', function() {
|
28 |
|
29 |
$button = jQuery(this).find('.wppb-add-on-deactivate');
|
30 |
|
front-end/class-formbuilder.php
CHANGED
@@ -9,6 +9,7 @@ class Profile_Builder_Form_Creator{
|
|
9 |
'role' => '', //used only for the register-form settings
|
10 |
'redirect_url' => '',
|
11 |
'logout_redirect_url' => '', //used only for the register-form settings
|
|
|
12 |
'redirect_priority' => 'normal',
|
13 |
'ID' => null
|
14 |
);
|
@@ -97,7 +98,7 @@ class Profile_Builder_Form_Creator{
|
|
97 |
}
|
98 |
|
99 |
function wppb_retrieve_custom_settings(){
|
100 |
-
$this->args['login_after_register'] = apply_filters( 'wppb_automatically_login_after_register', 'No' );
|
101 |
$this->args['redirect_activated'] = apply_filters( 'wppb_redirect_default_setting', '-' );
|
102 |
$this->args['redirect_url'] = apply_filters( 'wppb_redirect_default_location', ( $this->args['redirect_url'] != '' ) ? $this->args['redirect_url'] : '' );
|
103 |
$this->args['logout_redirect_url'] = apply_filters( 'wppb_logout_redirect_default_location', ( $this->args['logout_redirect_url'] != '' ) ? $this->args['logout_redirect_url'] : '' );
|
@@ -126,6 +127,9 @@ class Profile_Builder_Form_Creator{
|
|
126 |
$this->args['redirect_delay'] = ( isset( $page_settings[0]['display-messages'] ) && $this->args['redirect_activated'] == 'Yes' ? $page_settings[0]['display-messages'] : $this->args['redirect_delay'] );
|
127 |
}
|
128 |
|
|
|
|
|
|
|
129 |
if( !empty( $this->args['role'] ) ){
|
130 |
$role_in_arg = get_role( $this->args['role'] );
|
131 |
if( !empty( $role_in_arg->capabilities['manage_options'] ) || !empty( $role_in_arg->capabilities['remove_users'] ) ){
|
@@ -353,7 +357,8 @@ class Profile_Builder_Form_Creator{
|
|
353 |
// CHECK FOR REDIRECT
|
354 |
$redirect = $this->wppb_get_redirect( 'register', 'after_registration', $account_name, $user_role );
|
355 |
|
356 |
-
|
|
|
357 |
$redirect = $this->wppb_log_in_user( $this->args['redirect_url'], $redirect );
|
358 |
}
|
359 |
|
@@ -440,6 +445,7 @@ class Profile_Builder_Form_Creator{
|
|
440 |
?>
|
441 |
<?php do_action( 'wppb_form_before_submit_button', $this->args ); ?>
|
442 |
<input name="<?php echo $this->args['form_type']; ?>" type="submit" id="<?php echo $this->args['form_type']; ?>" class="<?php echo apply_filters( 'wppb_'. $this->args['form_type'] .'_submit_class', "submit button" );?>" value="<?php echo apply_filters( 'wppb_'. $this->args['form_type'] .'_button_name', esc_attr( $button_name ), $this->args['form_name'] ); ?>" <?php echo apply_filters( 'wppb_form_submit_button_extra_attributes', '', $this->args['form_type'] );?>/>
|
|
|
443 |
<?php do_action( 'wppb_form_after_submit_button', $this->args ); ?>
|
444 |
<input name="action" type="hidden" id="action" value="<?php echo $this->args['form_type']; ?>" />
|
445 |
<input name="form_name" type="hidden" id="form_name" value="<?php echo $this->args['form_name']; ?>" />
|
9 |
'role' => '', //used only for the register-form settings
|
10 |
'redirect_url' => '',
|
11 |
'logout_redirect_url' => '', //used only for the register-form settings
|
12 |
+
'automatic_login' => '', //used only for the register-form
|
13 |
'redirect_priority' => 'normal',
|
14 |
'ID' => null
|
15 |
);
|
98 |
}
|
99 |
|
100 |
function wppb_retrieve_custom_settings(){
|
101 |
+
$this->args['login_after_register'] = apply_filters( 'wppb_automatically_login_after_register', 'No' );
|
102 |
$this->args['redirect_activated'] = apply_filters( 'wppb_redirect_default_setting', '-' );
|
103 |
$this->args['redirect_url'] = apply_filters( 'wppb_redirect_default_location', ( $this->args['redirect_url'] != '' ) ? $this->args['redirect_url'] : '' );
|
104 |
$this->args['logout_redirect_url'] = apply_filters( 'wppb_logout_redirect_default_location', ( $this->args['logout_redirect_url'] != '' ) ? $this->args['logout_redirect_url'] : '' );
|
127 |
$this->args['redirect_delay'] = ( isset( $page_settings[0]['display-messages'] ) && $this->args['redirect_activated'] == 'Yes' ? $page_settings[0]['display-messages'] : $this->args['redirect_delay'] );
|
128 |
}
|
129 |
|
130 |
+
// the 'automatic_login' shortcode parameter overwrites all other settings
|
131 |
+
$this->args['login_after_register'] = ( $this->args['automatic_login'] != '' ) ? $this->args['automatic_login'] : $this->args['login_after_register'];
|
132 |
+
|
133 |
if( !empty( $this->args['role'] ) ){
|
134 |
$role_in_arg = get_role( $this->args['role'] );
|
135 |
if( !empty( $role_in_arg->capabilities['manage_options'] ) || !empty( $role_in_arg->capabilities['remove_users'] ) ){
|
357 |
// CHECK FOR REDIRECT
|
358 |
$redirect = $this->wppb_get_redirect( 'register', 'after_registration', $account_name, $user_role );
|
359 |
|
360 |
+
// using case-insensitive string comparison to allow for both 'Yes' and 'yes'
|
361 |
+
if( strcasecmp($this->args['login_after_register'], 'Yes') == 0 ) {
|
362 |
$redirect = $this->wppb_log_in_user( $this->args['redirect_url'], $redirect );
|
363 |
}
|
364 |
|
445 |
?>
|
446 |
<?php do_action( 'wppb_form_before_submit_button', $this->args ); ?>
|
447 |
<input name="<?php echo $this->args['form_type']; ?>" type="submit" id="<?php echo $this->args['form_type']; ?>" class="<?php echo apply_filters( 'wppb_'. $this->args['form_type'] .'_submit_class', "submit button" );?>" value="<?php echo apply_filters( 'wppb_'. $this->args['form_type'] .'_button_name', esc_attr( $button_name ), $this->args['form_name'] ); ?>" <?php echo apply_filters( 'wppb_form_submit_button_extra_attributes', '', $this->args['form_type'] );?>/>
|
448 |
+
<input name="redirect_to" type="hidden" value="<?php echo $this->args['redirect_url']; ?>" />
|
449 |
<?php do_action( 'wppb_form_after_submit_button', $this->args ); ?>
|
450 |
<input name="action" type="hidden" id="action" value="<?php echo $this->args['form_type']; ?>" />
|
451 |
<input name="form_name" type="hidden" id="form_name" value="<?php echo $this->args['form_name']; ?>" />
|
front-end/login.php
CHANGED
@@ -143,6 +143,13 @@ function wppb_login_form( $args = array() ) {
|
|
143 |
else
|
144 |
$form_location = 'widget';
|
145 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
$form = '
|
147 |
<form name="' . $args['form_id'] . '" id="' . $args['form_id'] . '" action="'. esc_url( wppb_curpageurl() ) .'" method="post">
|
148 |
' . $login_form_top . '
|
@@ -165,7 +172,7 @@ function wppb_login_form( $args = array() ) {
|
|
165 |
<input type="hidden" name="wppb_request_url" value="'. esc_url( wppb_curpageurl() ).'"/>
|
166 |
<input type="hidden" name="wppb_lostpassword_url" value="'.esc_url( $args['lostpassword_url'] ).'"/>
|
167 |
<input type="hidden" name="wppb_redirect_priority" value="'. esc_attr( isset( $args['redirect_priority'] ) ? $args['redirect_priority'] : '' ) .'"/>
|
168 |
-
<input type="hidden" name="wppb_referer_url" value="'.
|
169 |
'. wp_nonce_field( 'wppb_login', 'CSRFToken-wppb', true, false ) .'
|
170 |
<input type="hidden" name="wppb_redirect_check" value="true"/>
|
171 |
' . $login_form_bottom . '
|
@@ -336,7 +343,12 @@ function wppb_login_redirect( $redirect_to, $requested_redirect_to, $user ){
|
|
336 |
$error_string = apply_filters('wppb_login_wp_error_message', $error_string, $user);
|
337 |
|
338 |
// encode the error string and send it as a GET parameter
|
339 |
-
|
|
|
|
|
|
|
|
|
|
|
340 |
$redirect_to = add_query_arg($arr_params, $redirect_to);
|
341 |
}
|
342 |
else{
|
143 |
else
|
144 |
$form_location = 'widget';
|
145 |
|
146 |
+
// if an error is being shown pass the original referer forward
|
147 |
+
if( isset( $_GET['wppb_referer_url'] ) ){
|
148 |
+
$wppb_referer_url = esc_url ( $_GET['wppb_referer_url'] );
|
149 |
+
} else {
|
150 |
+
$wppb_referer_url = esc_url ( isset( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : '' );
|
151 |
+
}
|
152 |
+
|
153 |
$form = '
|
154 |
<form name="' . $args['form_id'] . '" id="' . $args['form_id'] . '" action="'. esc_url( wppb_curpageurl() ) .'" method="post">
|
155 |
' . $login_form_top . '
|
172 |
<input type="hidden" name="wppb_request_url" value="'. esc_url( wppb_curpageurl() ).'"/>
|
173 |
<input type="hidden" name="wppb_lostpassword_url" value="'.esc_url( $args['lostpassword_url'] ).'"/>
|
174 |
<input type="hidden" name="wppb_redirect_priority" value="'. esc_attr( isset( $args['redirect_priority'] ) ? $args['redirect_priority'] : '' ) .'"/>
|
175 |
+
<input type="hidden" name="wppb_referer_url" value="'. $wppb_referer_url .'"/>
|
176 |
'. wp_nonce_field( 'wppb_login', 'CSRFToken-wppb', true, false ) .'
|
177 |
<input type="hidden" name="wppb_redirect_check" value="true"/>
|
178 |
' . $login_form_bottom . '
|
343 |
$error_string = apply_filters('wppb_login_wp_error_message', $error_string, $user);
|
344 |
|
345 |
// encode the error string and send it as a GET parameter
|
346 |
+
if ( isset($_POST['wppb_referer_url']) && $_POST['wppb_referer_url'] !== '' ) {
|
347 |
+
$arr_params = array('loginerror' => urlencode(base64_encode($error_string)), 'request_form_location' => $request_form_location, 'wppb_referer_url' => esc_url( $_POST['wppb_referer_url'] ));
|
348 |
+
} else {
|
349 |
+
$arr_params = array('loginerror' => urlencode(base64_encode($error_string)), 'request_form_location' => $request_form_location);
|
350 |
+
}
|
351 |
+
|
352 |
$redirect_to = add_query_arg($arr_params, $redirect_to);
|
353 |
}
|
354 |
else{
|
front-end/recover.php
CHANGED
@@ -120,7 +120,7 @@ function wppb_create_recover_password_form( $user, $post_data ){
|
|
120 |
}
|
121 |
else{
|
122 |
$recover_notification = '<p>' . __( 'Please enter your username or email address.', 'profile-builder' );
|
123 |
-
$username_email_label = __( 'Username or
|
124 |
}
|
125 |
|
126 |
$recover_notification .= '<br/>'.__( 'You will receive a link to create a new password via email.', 'profile-builder' ).'</p>';
|
120 |
}
|
121 |
else{
|
122 |
$recover_notification = '<p>' . __( 'Please enter your username or email address.', 'profile-builder' );
|
123 |
+
$username_email_label = __( 'Username or Email', 'profile-builder' );
|
124 |
}
|
125 |
|
126 |
$recover_notification .= '<br/>'.__( 'You will receive a link to create a new password via email.', 'profile-builder' ).'</p>';
|
front-end/register.php
CHANGED
@@ -157,9 +157,9 @@ function wppb_activate_signup( $key ) {
|
|
157 |
|
158 |
//function to display the registration page
|
159 |
function wppb_front_end_register( $atts ){
|
160 |
-
extract( shortcode_atts( array( 'role' => get_option( 'default_role' ), 'form_name' => 'unspecified', 'redirect_url' => '', 'logout_redirect_url' => '', 'redirect_priority' => 'normal' ), $atts, 'wppb-register' ) );
|
161 |
|
162 |
-
$form = new Profile_Builder_Form_Creator( array( 'form_type' => 'register', 'form_name' => $form_name, 'role' => ( is_object( get_role( $role ) ) ? $role : get_option( 'default_role' ) ) , 'redirect_url' => $redirect_url, 'logout_redirect_url' => $logout_redirect_url, 'redirect_priority' => $redirect_priority ) );
|
163 |
|
164 |
return $form;
|
165 |
}
|
157 |
|
158 |
//function to display the registration page
|
159 |
function wppb_front_end_register( $atts ){
|
160 |
+
extract( shortcode_atts( array( 'role' => get_option( 'default_role' ), 'form_name' => 'unspecified', 'redirect_url' => '', 'logout_redirect_url' => '', 'automatic_login' => '', 'redirect_priority' => 'normal' ), $atts, 'wppb-register' ) );
|
161 |
|
162 |
+
$form = new Profile_Builder_Form_Creator( array( 'form_type' => 'register', 'form_name' => $form_name, 'role' => ( is_object( get_role( $role ) ) ? $role : get_option( 'default_role' ) ) , 'redirect_url' => $redirect_url, 'logout_redirect_url' => $logout_redirect_url, 'automatic_login' => $automatic_login, 'redirect_priority' => $redirect_priority ) );
|
163 |
|
164 |
return $form;
|
165 |
}
|
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.
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
@@ -65,7 +65,7 @@ function wppb_free_plugin_init() {
|
|
65 |
*
|
66 |
*
|
67 |
*/
|
68 |
-
define('PROFILE_BUILDER_VERSION', '3.
|
69 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
70 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
71 |
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.3.0
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
65 |
*
|
66 |
*
|
67 |
*/
|
68 |
+
define('PROFILE_BUILDER_VERSION', '3.3.0' );
|
69 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
70 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
71 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
|
4 |
Tags: user registration, user profile, user registration form, user fields, 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, profile
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 5.5.1
|
7 |
-
Stable tag: 3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -167,6 +167,12 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
167 |
12. Role Editor
|
168 |
|
169 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
= 3.2.9 =
|
171 |
* Check the reset password key existence before resetting a password. Credit to Shiraz Ali Khan
|
172 |
* Changed german translation files
|
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, profile
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 5.5.1
|
7 |
+
Stable tag: 3.3.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
167 |
12. Role Editor
|
168 |
|
169 |
== Changelog ==
|
170 |
+
= 3.3.0 =
|
171 |
+
* Add 'automatic_login' parameter for the [wppb-register] shortcode and make sure that the shortcode, multiple registration setting, general setting priority is respected.
|
172 |
+
* Pass the referer URL forward when the Login form shows an error so the user is still redirected to the page they came from.
|
173 |
+
* Change 'E-mail' to 'Email' for the password recovery form.
|
174 |
+
* Switched deprecated jQuery event 'hover' with 'mouseenter mouseleave'.
|
175 |
+
|
176 |
= 3.2.9 =
|
177 |
* Check the reset password key existence before resetting a password. Credit to Shiraz Ali Khan
|
178 |
* Changed german translation files
|
translation/profile-builder.catalog.php
CHANGED
@@ -189,6 +189,7 @@
|
|
189 |
<?php __("Buttons Location", "profile-builder"); ?>
|
190 |
<?php __("Display social buttons before or after the forms fields.", "profile-builder"); ?>
|
191 |
<?php __("Buttons Style", "profile-builder"); ?>
|
|
|
192 |
<?php __("Heading Before Buttons (Login/Register)", "profile-builder"); ?>
|
193 |
<?php __("Empty field will remove the heading.", "profile-builder"); ?>
|
194 |
<?php __("Heading Before Buttons (Edit Profile)", "profile-builder"); ?>
|
@@ -1153,7 +1154,6 @@
|
|
1153 |
<?php __("Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature.", "profile-builder"); ?>
|
1154 |
<?php __("Reset Password", "profile-builder"); ?>
|
1155 |
<?php __("Please enter your username or email address.", "profile-builder"); ?>
|
1156 |
-
<?php __("Username or E-mail", "profile-builder"); ?>
|
1157 |
<?php __("Please enter your email address.", "profile-builder"); ?>
|
1158 |
<?php __("You will receive a link to create a new password via email.", "profile-builder"); ?>
|
1159 |
<?php __("Get New Password", "profile-builder"); ?>
|
189 |
<?php __("Buttons Location", "profile-builder"); ?>
|
190 |
<?php __("Display social buttons before or after the forms fields.", "profile-builder"); ?>
|
191 |
<?php __("Buttons Style", "profile-builder"); ?>
|
192 |
+
<?php __("Google Sign In Button", "profile-builder"); ?>
|
193 |
<?php __("Heading Before Buttons (Login/Register)", "profile-builder"); ?>
|
194 |
<?php __("Empty field will remove the heading.", "profile-builder"); ?>
|
195 |
<?php __("Heading Before Buttons (Edit Profile)", "profile-builder"); ?>
|
1154 |
<?php __("Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature.", "profile-builder"); ?>
|
1155 |
<?php __("Reset Password", "profile-builder"); ?>
|
1156 |
<?php __("Please enter your username or email address.", "profile-builder"); ?>
|
|
|
1157 |
<?php __("Please enter your email address.", "profile-builder"); ?>
|
1158 |
<?php __("You will receive a link to create a new password via email.", "profile-builder"); ?>
|
1159 |
<?php __("Get New Password", "profile-builder"); ?>
|
translation/profile-builder.pot
CHANGED
@@ -321,7 +321,7 @@ msgstr ""
|
|
321 |
msgid "Logout Label"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: ../pb-add-on-custom-profile-menus/index.php:191, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:16, front-end/class-formbuilder.php:
|
325 |
msgid "Logout"
|
326 |
msgstr ""
|
327 |
|
@@ -369,7 +369,7 @@ msgstr ""
|
|
369 |
msgid "Edit Profile"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: ../pb-add-on-custom-profile-menus/index.php:311, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, front-end/class-formbuilder.php:
|
373 |
msgid "Register"
|
374 |
msgstr ""
|
375 |
|
@@ -417,7 +417,7 @@ msgstr ""
|
|
417 |
msgid "Toolbox"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: ../pb-add-on-customization-toolbox/index.php:147, ../pb-add-on-social-connect/index.php:
|
421 |
msgid "Settings"
|
422 |
msgstr ""
|
423 |
|
@@ -683,267 +683,271 @@ msgstr ""
|
|
683 |
msgid "Replace labels with placeholders:"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: ../pb-add-on-placeholder-labels/pbpl.php:172, ../pb-add-on-social-connect/index.php:
|
691 |
msgid "No"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: ../pb-add-on-social-connect/index.php:
|
695 |
msgid "Social Connect"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: ../pb-add-on-social-connect/index.php:
|
699 |
msgid "Display on the Following Forms"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: ../pb-add-on-social-connect/index.php:
|
703 |
msgid "Disable Registration on"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: ../pb-add-on-social-connect/index.php:
|
707 |
msgid "Allow only login with Social Connect on Profile Builder Login Form.<br>Social Connect will still automatically register users on other forms."
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: ../pb-add-on-social-connect/index.php:
|
711 |
msgid "Facebook Login"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: ../pb-add-on-social-connect/index.php:
|
715 |
msgid "Facebook App ID"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: ../pb-add-on-social-connect/index.php:
|
719 |
msgid "Google Login"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: ../pb-add-on-social-connect/index.php:
|
723 |
msgid "Google Client ID"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: ../pb-add-on-social-connect/index.php:
|
727 |
msgid "Twitter Login"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: ../pb-add-on-social-connect/index.php:
|
731 |
msgid "Twitter API Key"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: ../pb-add-on-social-connect/index.php:
|
735 |
msgid "Twitter API Secret"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: ../pb-add-on-social-connect/index.php:
|
739 |
msgid "LinkedIn Login"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: ../pb-add-on-social-connect/index.php:
|
743 |
msgid "LinkedIn Client ID"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: ../pb-add-on-social-connect/index.php:
|
747 |
msgid "LinkedIn Client Secret"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: ../pb-add-on-social-connect/index.php:
|
751 |
msgid "Buttons Order"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: ../pb-add-on-social-connect/index.php:
|
755 |
msgid "Drag and drop the dots to re-order."
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: ../pb-add-on-social-connect/index.php:
|
759 |
msgid "Buttons Re-Order"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: ../pb-add-on-social-connect/index.php:
|
763 |
msgid "Save the buttons order from the buttons order checkboxes"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: ../pb-add-on-social-connect/index.php:
|
767 |
msgid "Buttons Location"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: ../pb-add-on-social-connect/index.php:
|
771 |
msgid "Display social buttons before or after the forms fields."
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: ../pb-add-on-social-connect/index.php:
|
775 |
msgid "Buttons Style"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: ../pb-add-on-social-connect/index.php:
|
|
|
|
|
|
|
|
|
779 |
msgid "Heading Before Buttons (Login/Register)"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: ../pb-add-on-social-connect/index.php:
|
783 |
msgid "Empty field will remove the heading."
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: ../pb-add-on-social-connect/index.php:
|
787 |
msgid "Heading Before Buttons (Edit Profile)"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: ../pb-add-on-social-connect/index.php:
|
791 |
msgid "Facebook Button Text (Login/Register)"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: ../pb-add-on-social-connect/index.php:
|
795 |
msgid "Google Button Text (Login/Register)"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: ../pb-add-on-social-connect/index.php:
|
799 |
msgid "Twitter Button Text (Login/Register)"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: ../pb-add-on-social-connect/index.php:
|
803 |
msgid "LinkedIn Button Text (Login/Register)"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: ../pb-add-on-social-connect/index.php:
|
807 |
msgid "Facebook Button Text (Edit Profile)"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: ../pb-add-on-social-connect/index.php:
|
811 |
msgid "Google Button Text (Edit Profile)"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: ../pb-add-on-social-connect/index.php:
|
815 |
msgid "Twitter Button Text (Edit Profile)"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: ../pb-add-on-social-connect/index.php:
|
819 |
msgid "LinkedIn Button Text (Edit Profile)"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: ../pb-add-on-social-connect/index.php:
|
823 |
msgid "Unlink Accounts (Edit Profile)"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: ../pb-add-on-social-connect/index.php:
|
827 |
msgid "This option will display linked social platforms to users accounts and will allow to easily unlink them in Edit Profile page."
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: ../pb-add-on-social-connect/index.php:
|
831 |
msgid "Default Social Connect CSS in the Front-end"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: ../pb-add-on-social-connect/index.php:
|
835 |
msgid "Help"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: ../pb-add-on-social-connect/index.php:
|
839 |
msgid "Display Social Connect buttons:"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: ../pb-add-on-social-connect/index.php:
|
843 |
msgid "You have successfully unlinked %% from your account."
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: ../pb-add-on-social-connect/index.php:
|
847 |
msgid "An account with this email address already exists.<br> Do you want to connect it?"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: ../pb-add-on-social-connect/index.php:
|
851 |
msgid "Please enter your website account password"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: ../pb-add-on-social-connect/index.php:
|
855 |
msgid "Please enter a new email"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: ../pb-add-on-social-connect/index.php:
|
859 |
msgid "You have successfully linked your account to %%."
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: ../pb-add-on-social-connect/index.php:
|
863 |
msgid "Something went wrong. Please try again later!"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: ../pb-add-on-social-connect/index.php:
|
867 |
msgid "Before you can access your account you need to confirm your email address. Please check your inbox and click the activation link."
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: ../pb-add-on-social-connect/index.php:
|
871 |
msgid "<strong>ERROR</strong>: You need to confirm your email address before you can log in."
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: ../pb-add-on-social-connect/index.php:
|
875 |
msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: ../pb-add-on-social-connect/index.php:
|
879 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: ../pb-add-on-social-connect/index.php:
|
883 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: ../pb-add-on-social-connect/index.php:
|
887 |
msgid "here"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: ../pb-add-on-social-connect/index.php:
|
891 |
msgid "<strong>You can only login with social accounts, not register!</strong><br>Please link your social account to an existing user account first."
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: ../pb-add-on-social-connect/index.php:
|
895 |
msgid "Wrong password!"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: ../pb-add-on-social-connect/index.php:
|
899 |
msgid "Please enter a valid email!"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: ../pb-add-on-social-connect/index.php:
|
903 |
msgid "You can only login on this form.<br>Register with your social account on the register form."
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: ../pb-add-on-social-connect/index.php:
|
907 |
msgid "To create a new account please confirm:"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: ../pb-add-on-social-connect/index.php:
|
911 |
msgid "You must agree to the Terms And Conditions to create a new account."
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: ../pb-add-on-social-connect/index.php:
|
915 |
msgid "Please enter your Facebook email!"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: ../pb-add-on-social-connect/index.php:
|
919 |
msgid "Waiting for Twitter..."
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: ../pb-add-on-social-connect/index.php:
|
923 |
msgid "Please enter your Twitter email!"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: ../pb-add-on-social-connect/index.php:
|
927 |
msgid "Profile Builder not active!"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: ../pb-add-on-social-connect/index.php:
|
931 |
msgid "General Settings"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: ../pb-add-on-social-connect/index.php:
|
935 |
msgid "Application Settings"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: ../pb-add-on-social-connect/index.php:
|
939 |
msgid "Appearance Settings"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: ../pb-add-on-social-connect/index.php:
|
943 |
msgid "Unlink"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: ../pb-add-on-social-connect/index.php:
|
947 |
msgid "Your account is linked with:"
|
948 |
msgstr ""
|
949 |
|
@@ -1427,11 +1431,11 @@ msgstr ""
|
|
1427 |
msgid "Link with Facebook"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: ../pb-add-on-social-connect/google/google.php:
|
1431 |
msgid "Sign in with Google"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: ../pb-add-on-social-connect/google/google.php:
|
1435 |
msgid "Link with Google"
|
1436 |
msgstr ""
|
1437 |
|
@@ -1551,7 +1555,7 @@ msgstr ""
|
|
1551 |
msgid "Available with All Versions"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: admin/add-ons.php:332, front-end/class-formbuilder.php:
|
1555 |
msgid "Update"
|
1556 |
msgstr ""
|
1557 |
|
@@ -2127,11 +2131,11 @@ msgstr ""
|
|
2127 |
msgid "Username and Email"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: admin/general-settings.php:267, admin/manage-fields.php:319, front-end/login.php:
|
2131 |
msgid "Username"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: admin/general-settings.php:268, front-end/login.php:
|
2135 |
msgid "Email"
|
2136 |
msgstr ""
|
2137 |
|
@@ -4527,131 +4531,131 @@ msgstr ""
|
|
4527 |
msgid "You are not currently logged in."
|
4528 |
msgstr ""
|
4529 |
|
4530 |
-
#: front-end/class-formbuilder.php:
|
4531 |
msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
|
4532 |
msgstr ""
|
4533 |
|
4534 |
-
#: front-end/class-formbuilder.php:
|
4535 |
msgid "You must be logged in to edit your profile."
|
4536 |
msgstr ""
|
4537 |
|
4538 |
-
#: front-end/class-formbuilder.php:
|
4539 |
msgid "You are currently logged in as %1s. You don't need another account. %2s"
|
4540 |
msgstr ""
|
4541 |
|
4542 |
-
#: front-end/class-formbuilder.php:
|
4543 |
msgid "Log out of this account."
|
4544 |
msgstr ""
|
4545 |
|
4546 |
-
#: front-end/class-formbuilder.php:
|
4547 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
4548 |
msgstr ""
|
4549 |
|
4550 |
-
#: front-end/class-formbuilder.php:
|
4551 |
msgid "This message is only visible by administrators"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
-
#: front-end/class-formbuilder.php:
|
4555 |
msgid "Users can register themselves or you can manually create users here."
|
4556 |
msgstr ""
|
4557 |
|
4558 |
-
#: front-end/class-formbuilder.php:
|
4559 |
msgid "Only an administrator can add new users."
|
4560 |
msgstr ""
|
4561 |
|
4562 |
-
#: front-end/class-formbuilder.php:
|
4563 |
msgid "You are not allowed to do this."
|
4564 |
msgstr ""
|
4565 |
|
4566 |
-
#: front-end/class-formbuilder.php:
|
4567 |
msgid "There was an error in the submitted form"
|
4568 |
msgstr ""
|
4569 |
|
4570 |
-
#: front-end/class-formbuilder.php:
|
4571 |
msgid "Your profile has been successfully updated!"
|
4572 |
msgstr ""
|
4573 |
|
4574 |
-
#: front-end/class-formbuilder.php:
|
4575 |
msgid "The account %1s has been successfully created!"
|
4576 |
msgstr ""
|
4577 |
|
4578 |
-
#: front-end/class-formbuilder.php:
|
4579 |
msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
|
4580 |
msgstr ""
|
4581 |
|
4582 |
-
#: front-end/class-formbuilder.php:
|
4583 |
msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
|
4584 |
msgstr ""
|
4585 |
|
4586 |
-
#: front-end/class-formbuilder.php:
|
4587 |
msgid "Add User"
|
4588 |
msgstr ""
|
4589 |
|
4590 |
-
#: front-end/class-formbuilder.php:
|
4591 |
msgid "Send these credentials via email."
|
4592 |
msgstr ""
|
4593 |
|
4594 |
-
#: front-end/class-formbuilder.php:
|
4595 |
msgid "There are no other users to edit"
|
4596 |
msgstr ""
|
4597 |
|
4598 |
-
#: front-end/class-formbuilder.php:
|
4599 |
msgid "User to edit:"
|
4600 |
msgstr ""
|
4601 |
|
4602 |
-
#: front-end/class-formbuilder.php:
|
4603 |
msgid "Select User"
|
4604 |
msgstr ""
|
4605 |
|
4606 |
-
#: front-end/class-formbuilder.php:
|
4607 |
msgid "Something went wrong. Please try again!"
|
4608 |
msgstr ""
|
4609 |
|
4610 |
-
#: front-end/login.php:
|
4611 |
msgid "ERROR"
|
4612 |
msgstr ""
|
4613 |
|
4614 |
-
#: front-end/login.php:
|
4615 |
msgid "The password you entered is incorrect."
|
4616 |
msgstr ""
|
4617 |
|
4618 |
-
#: front-end/login.php:
|
4619 |
msgid "Invalid username."
|
4620 |
msgstr ""
|
4621 |
|
4622 |
-
#: front-end/login.php:
|
4623 |
msgid "Invalid username or email."
|
4624 |
msgstr ""
|
4625 |
|
4626 |
-
#: front-end/login.php:
|
4627 |
msgid "Invalid email."
|
4628 |
msgstr ""
|
4629 |
|
4630 |
-
#: front-end/login.php:
|
4631 |
msgid "Password Lost and Found."
|
4632 |
msgstr ""
|
4633 |
|
4634 |
-
#: front-end/login.php:
|
4635 |
msgid "Lost your password?"
|
4636 |
msgstr ""
|
4637 |
|
4638 |
-
#: front-end/login.php:
|
4639 |
msgid "Both fields are empty."
|
4640 |
msgstr ""
|
4641 |
|
4642 |
-
#: front-end/login.php:
|
4643 |
msgid "Log out of this account"
|
4644 |
msgstr ""
|
4645 |
|
4646 |
-
#: front-end/login.php:
|
4647 |
msgid "Log out »"
|
4648 |
msgstr ""
|
4649 |
|
4650 |
-
#: front-end/login.php:
|
4651 |
msgid "You are currently logged in as %1$s. %2$s"
|
4652 |
msgstr ""
|
4653 |
|
4654 |
-
#: front-end/login.php:
|
4655 |
msgid "Username or Email"
|
4656 |
msgstr ""
|
4657 |
|
@@ -4671,10 +4675,6 @@ msgstr ""
|
|
4671 |
msgid "Please enter your username or email address."
|
4672 |
msgstr ""
|
4673 |
|
4674 |
-
#: front-end/recover.php:123
|
4675 |
-
msgid "Username or E-mail"
|
4676 |
-
msgstr ""
|
4677 |
-
|
4678 |
#: front-end/recover.php:118
|
4679 |
msgid "Please enter your email address."
|
4680 |
msgstr ""
|
@@ -6425,15 +6425,15 @@ msgstr ""
|
|
6425 |
msgid "After Registration..."
|
6426 |
msgstr ""
|
6427 |
|
6428 |
-
#: modules/repeater-field/repeater-field.php:
|
6429 |
msgid "Are you sure you want to delete this?"
|
6430 |
msgstr ""
|
6431 |
|
6432 |
-
#: modules/user-listing/one-map-listing.php:
|
6433 |
msgid "Please wait while the pins are loading..."
|
6434 |
msgstr ""
|
6435 |
|
6436 |
-
#: modules/user-listing/one-map-listing.php:
|
6437 |
msgid "The API Key was not provided."
|
6438 |
msgstr ""
|
6439 |
|
321 |
msgid "Logout Label"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: ../pb-add-on-custom-profile-menus/index.php:191, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:16, front-end/class-formbuilder.php:183
|
325 |
msgid "Logout"
|
326 |
msgstr ""
|
327 |
|
369 |
msgid "Edit Profile"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: ../pb-add-on-custom-profile-menus/index.php:311, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, front-end/class-formbuilder.php:441, front-end/login.php:440
|
373 |
msgid "Register"
|
374 |
msgstr ""
|
375 |
|
417 |
msgid "Toolbox"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: ../pb-add-on-customization-toolbox/index.php:147, ../pb-add-on-social-connect/index.php:239, admin/admin-functions.php:227, admin/general-settings.php:77, admin/general-settings.php:77
|
421 |
msgid "Settings"
|
422 |
msgstr ""
|
423 |
|
683 |
msgid "Replace labels with placeholders:"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:326, admin/general-settings.php:114, admin/general-settings.php:127, admin/general-settings.php:142, admin/general-settings.php:191, admin/general-settings.php:238, admin/general-settings.php:312, admin/private-website.php:67, admin/private-website.php:134, admin/private-website.php:147, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:18, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:34, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:18, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:66, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:181, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:197, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:217, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:240, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:261, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:279, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:132, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:149, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:164, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:184, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:201, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:239, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:260, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:280, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:302, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:16, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:32, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:48, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:64, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:53, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:75, features/content-restriction/content-restriction.php:89, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:229, modules/multiple-forms/register-forms.php:230, modules/user-listing/userlisting.php:2413
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:172, ../pb-add-on-social-connect/index.php:327, admin/general-settings.php:128, admin/general-settings.php:143, admin/general-settings.php:192, admin/general-settings.php:237, admin/general-settings.php:311, admin/private-website.php:66, admin/private-website.php:133, admin/private-website.php:148, features/content-restriction/content-restriction.php:88, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:229, modules/multiple-forms/register-forms.php:230
|
691 |
msgid "No"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: ../pb-add-on-social-connect/index.php:185, ../pb-add-on-social-connect/index.php:186, ../pb-add-on-social-connect/index.php:294, ../pb-add-on-social-connect/index.php:298
|
695 |
msgid "Social Connect"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: ../pb-add-on-social-connect/index.php:205
|
699 |
msgid "Display on the Following Forms"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: ../pb-add-on-social-connect/index.php:206
|
703 |
msgid "Disable Registration on"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: ../pb-add-on-social-connect/index.php:206
|
707 |
msgid "Allow only login with Social Connect on Profile Builder Login Form.<br>Social Connect will still automatically register users on other forms."
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: ../pb-add-on-social-connect/index.php:207
|
711 |
msgid "Facebook Login"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: ../pb-add-on-social-connect/index.php:208
|
715 |
msgid "Facebook App ID"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: ../pb-add-on-social-connect/index.php:209
|
719 |
msgid "Google Login"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: ../pb-add-on-social-connect/index.php:210
|
723 |
msgid "Google Client ID"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: ../pb-add-on-social-connect/index.php:211
|
727 |
msgid "Twitter Login"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: ../pb-add-on-social-connect/index.php:212
|
731 |
msgid "Twitter API Key"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: ../pb-add-on-social-connect/index.php:213
|
735 |
msgid "Twitter API Secret"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: ../pb-add-on-social-connect/index.php:214
|
739 |
msgid "LinkedIn Login"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: ../pb-add-on-social-connect/index.php:215
|
743 |
msgid "LinkedIn Client ID"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: ../pb-add-on-social-connect/index.php:216
|
747 |
msgid "LinkedIn Client Secret"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: ../pb-add-on-social-connect/index.php:217
|
751 |
msgid "Buttons Order"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: ../pb-add-on-social-connect/index.php:217
|
755 |
msgid "Drag and drop the dots to re-order."
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: ../pb-add-on-social-connect/index.php:218
|
759 |
msgid "Buttons Re-Order"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: ../pb-add-on-social-connect/index.php:218
|
763 |
msgid "Save the buttons order from the buttons order checkboxes"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: ../pb-add-on-social-connect/index.php:219
|
767 |
msgid "Buttons Location"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: ../pb-add-on-social-connect/index.php:219
|
771 |
msgid "Display social buttons before or after the forms fields."
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: ../pb-add-on-social-connect/index.php:220
|
775 |
msgid "Buttons Style"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: ../pb-add-on-social-connect/index.php:221
|
779 |
+
msgid "Google Sign In Button"
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
#: ../pb-add-on-social-connect/index.php:222
|
783 |
msgid "Heading Before Buttons (Login/Register)"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: ../pb-add-on-social-connect/index.php:222, ../pb-add-on-social-connect/index.php:223
|
787 |
msgid "Empty field will remove the heading."
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: ../pb-add-on-social-connect/index.php:223
|
791 |
msgid "Heading Before Buttons (Edit Profile)"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: ../pb-add-on-social-connect/index.php:224
|
795 |
msgid "Facebook Button Text (Login/Register)"
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: ../pb-add-on-social-connect/index.php:225
|
799 |
msgid "Google Button Text (Login/Register)"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: ../pb-add-on-social-connect/index.php:226
|
803 |
msgid "Twitter Button Text (Login/Register)"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: ../pb-add-on-social-connect/index.php:227
|
807 |
msgid "LinkedIn Button Text (Login/Register)"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: ../pb-add-on-social-connect/index.php:228
|
811 |
msgid "Facebook Button Text (Edit Profile)"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: ../pb-add-on-social-connect/index.php:229
|
815 |
msgid "Google Button Text (Edit Profile)"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: ../pb-add-on-social-connect/index.php:230
|
819 |
msgid "Twitter Button Text (Edit Profile)"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: ../pb-add-on-social-connect/index.php:231
|
823 |
msgid "LinkedIn Button Text (Edit Profile)"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: ../pb-add-on-social-connect/index.php:232
|
827 |
msgid "Unlink Accounts (Edit Profile)"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: ../pb-add-on-social-connect/index.php:232
|
831 |
msgid "This option will display linked social platforms to users accounts and will allow to easily unlink them in Edit Profile page."
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: ../pb-add-on-social-connect/index.php:233
|
835 |
msgid "Default Social Connect CSS in the Front-end"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: ../pb-add-on-social-connect/index.php:253
|
839 |
msgid "Help"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: ../pb-add-on-social-connect/index.php:323
|
843 |
msgid "Display Social Connect buttons:"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: ../pb-add-on-social-connect/index.php:372
|
847 |
msgid "You have successfully unlinked %% from your account."
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: ../pb-add-on-social-connect/index.php:384
|
851 |
msgid "An account with this email address already exists.<br> Do you want to connect it?"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: ../pb-add-on-social-connect/index.php:385
|
855 |
msgid "Please enter your website account password"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: ../pb-add-on-social-connect/index.php:386
|
859 |
msgid "Please enter a new email"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: ../pb-add-on-social-connect/index.php:387
|
863 |
msgid "You have successfully linked your account to %%."
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: ../pb-add-on-social-connect/index.php:388, ../pb-add-on-social-connect/twitter/twitter.php:109
|
867 |
msgid "Something went wrong. Please try again later!"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: ../pb-add-on-social-connect/index.php:389
|
871 |
msgid "Before you can access your account you need to confirm your email address. Please check your inbox and click the activation link."
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: ../pb-add-on-social-connect/index.php:390
|
875 |
msgid "<strong>ERROR</strong>: You need to confirm your email address before you can log in."
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: ../pb-add-on-social-connect/index.php:391
|
879 |
msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: ../pb-add-on-social-connect/index.php:392, features/admin-approval/admin-approval.php:181
|
883 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: ../pb-add-on-social-connect/index.php:393
|
887 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: ../pb-add-on-social-connect/index.php:394, features/functions.php:1245
|
891 |
msgid "here"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: ../pb-add-on-social-connect/index.php:395
|
895 |
msgid "<strong>You can only login with social accounts, not register!</strong><br>Please link your social account to an existing user account first."
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: ../pb-add-on-social-connect/index.php:396
|
899 |
msgid "Wrong password!"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: ../pb-add-on-social-connect/index.php:397
|
903 |
msgid "Please enter a valid email!"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: ../pb-add-on-social-connect/index.php:398
|
907 |
msgid "You can only login on this form.<br>Register with your social account on the register form."
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: ../pb-add-on-social-connect/index.php:406
|
911 |
msgid "To create a new account please confirm:"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: ../pb-add-on-social-connect/index.php:407
|
915 |
msgid "You must agree to the Terms And Conditions to create a new account."
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: ../pb-add-on-social-connect/index.php:415, ../pb-add-on-social-connect/index.php:416
|
919 |
msgid "Please enter your Facebook email!"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: ../pb-add-on-social-connect/index.php:428
|
923 |
msgid "Waiting for Twitter..."
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: ../pb-add-on-social-connect/index.php:429, ../pb-add-on-social-connect/index.php:430
|
927 |
msgid "Please enter your Twitter email!"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: ../pb-add-on-social-connect/index.php:722
|
931 |
msgid "Profile Builder not active!"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: ../pb-add-on-social-connect/index.php:871, admin/admin-functions.php:38, admin/general-settings.php:9
|
935 |
msgid "General Settings"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: ../pb-add-on-social-connect/index.php:875
|
939 |
msgid "Application Settings"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: ../pb-add-on-social-connect/index.php:879
|
943 |
msgid "Appearance Settings"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: ../pb-add-on-social-connect/index.php:943
|
947 |
msgid "Unlink"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: ../pb-add-on-social-connect/index.php:950
|
951 |
msgid "Your account is linked with:"
|
952 |
msgstr ""
|
953 |
|
1431 |
msgid "Link with Facebook"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: ../pb-add-on-social-connect/google/google.php:38
|
1435 |
msgid "Sign in with Google"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: ../pb-add-on-social-connect/google/google.php:32
|
1439 |
msgid "Link with Google"
|
1440 |
msgstr ""
|
1441 |
|
1555 |
msgid "Available with All Versions"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: admin/add-ons.php:332, front-end/class-formbuilder.php:444
|
1559 |
msgid "Update"
|
1560 |
msgstr ""
|
1561 |
|
2131 |
msgid "Username and Email"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: admin/general-settings.php:267, admin/manage-fields.php:319, front-end/login.php:255, front-end/login.php:269, front-end/login.php:409, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:121, features/admin-approval/class-admin-approval.php:166, features/email-confirmation/class-email-confirmation.php:168, modules/custom-redirects/custom_redirects_admin.php:60, modules/email-customizer/email-customizer.php:28, modules/user-listing/userlisting.php:112, modules/user-listing/userlisting.php:312, modules/user-listing/userlisting.php:807, modules/user-listing/userlisting.php:2367
|
2135 |
msgid "Username"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: admin/general-settings.php:268, front-end/login.php:406, modules/email-customizer/email-customizer.php:29, modules/user-listing/userlisting.php:813, modules/user-listing/userlisting.php:2368
|
2139 |
msgid "Email"
|
2140 |
msgstr ""
|
2141 |
|
4531 |
msgid "You are not currently logged in."
|
4532 |
msgstr ""
|
4533 |
|
4534 |
+
#: front-end/class-formbuilder.php:138
|
4535 |
msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
|
4536 |
msgstr ""
|
4537 |
|
4538 |
+
#: front-end/class-formbuilder.php:189
|
4539 |
msgid "You must be logged in to edit your profile."
|
4540 |
msgstr ""
|
4541 |
|
4542 |
+
#: front-end/class-formbuilder.php:183
|
4543 |
msgid "You are currently logged in as %1s. You don't need another account. %2s"
|
4544 |
msgstr ""
|
4545 |
|
4546 |
+
#: front-end/class-formbuilder.php:183
|
4547 |
msgid "Log out of this account."
|
4548 |
msgstr ""
|
4549 |
|
4550 |
+
#: front-end/class-formbuilder.php:163
|
4551 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
4552 |
msgstr ""
|
4553 |
|
4554 |
+
#: front-end/class-formbuilder.php:163, front-end/class-formbuilder.php:160
|
4555 |
msgid "This message is only visible by administrators"
|
4556 |
msgstr ""
|
4557 |
|
4558 |
+
#: front-end/class-formbuilder.php:160
|
4559 |
msgid "Users can register themselves or you can manually create users here."
|
4560 |
msgstr ""
|
4561 |
|
4562 |
+
#: front-end/class-formbuilder.php:150
|
4563 |
msgid "Only an administrator can add new users."
|
4564 |
msgstr ""
|
4565 |
|
4566 |
+
#: front-end/class-formbuilder.php:282, front-end/login.php:498
|
4567 |
msgid "You are not allowed to do this."
|
4568 |
msgstr ""
|
4569 |
|
4570 |
+
#: front-end/class-formbuilder.php:384
|
4571 |
msgid "There was an error in the submitted form"
|
4572 |
msgstr ""
|
4573 |
|
4574 |
+
#: front-end/class-formbuilder.php:373
|
4575 |
msgid "Your profile has been successfully updated!"
|
4576 |
msgstr ""
|
4577 |
|
4578 |
+
#: front-end/class-formbuilder.php:340, front-end/class-formbuilder.php:347
|
4579 |
msgid "The account %1s has been successfully created!"
|
4580 |
msgstr ""
|
4581 |
|
4582 |
+
#: front-end/class-formbuilder.php:343, front-end/class-formbuilder.php:353
|
4583 |
msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
|
4584 |
msgstr ""
|
4585 |
|
4586 |
+
#: front-end/class-formbuilder.php:349
|
4587 |
msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
|
4588 |
msgstr ""
|
4589 |
|
4590 |
+
#: front-end/class-formbuilder.php:441
|
4591 |
msgid "Add User"
|
4592 |
msgstr ""
|
4593 |
|
4594 |
+
#: front-end/class-formbuilder.php:524
|
4595 |
msgid "Send these credentials via email."
|
4596 |
msgstr ""
|
4597 |
|
4598 |
+
#: front-end/class-formbuilder.php:741
|
4599 |
msgid "There are no other users to edit"
|
4600 |
msgstr ""
|
4601 |
|
4602 |
+
#: front-end/class-formbuilder.php:723
|
4603 |
msgid "User to edit:"
|
4604 |
msgstr ""
|
4605 |
|
4606 |
+
#: front-end/class-formbuilder.php:725
|
4607 |
msgid "Select User"
|
4608 |
msgstr ""
|
4609 |
|
4610 |
+
#: front-end/class-formbuilder.php:764
|
4611 |
msgid "Something went wrong. Please try again!"
|
4612 |
msgstr ""
|
4613 |
|
4614 |
+
#: front-end/login.php:318, front-end/login.php:339, front-end/recover.php:18, front-end/recover.php:312, front-end/extra-fields/extra-fields.php:93
|
4615 |
msgid "ERROR"
|
4616 |
msgstr ""
|
4617 |
|
4618 |
+
#: front-end/login.php:321
|
4619 |
msgid "The password you entered is incorrect."
|
4620 |
msgstr ""
|
4621 |
|
4622 |
+
#: front-end/login.php:330
|
4623 |
msgid "Invalid username."
|
4624 |
msgstr ""
|
4625 |
|
4626 |
+
#: front-end/login.php:328
|
4627 |
msgid "Invalid username or email."
|
4628 |
msgstr ""
|
4629 |
|
4630 |
+
#: front-end/login.php:326
|
4631 |
msgid "Invalid email."
|
4632 |
msgstr ""
|
4633 |
|
4634 |
+
#: front-end/login.php:334
|
4635 |
msgid "Password Lost and Found."
|
4636 |
msgstr ""
|
4637 |
|
4638 |
+
#: front-end/login.php:334, front-end/login.php:446
|
4639 |
msgid "Lost your password?"
|
4640 |
msgstr ""
|
4641 |
|
4642 |
+
#: front-end/login.php:339
|
4643 |
msgid "Both fields are empty."
|
4644 |
msgstr ""
|
4645 |
|
4646 |
+
#: front-end/login.php:485, front-end/logout.php:26
|
4647 |
msgid "Log out of this account"
|
4648 |
msgstr ""
|
4649 |
|
4650 |
+
#: front-end/login.php:485, front-end/logout.php:16
|
4651 |
msgid "Log out »"
|
4652 |
msgstr ""
|
4653 |
|
4654 |
+
#: front-end/login.php:486
|
4655 |
msgid "You are currently logged in as %1$s. %2$s"
|
4656 |
msgstr ""
|
4657 |
|
4658 |
+
#: front-end/login.php:413, front-end/recover.php:123
|
4659 |
msgid "Username or Email"
|
4660 |
msgstr ""
|
4661 |
|
4675 |
msgid "Please enter your username or email address."
|
4676 |
msgstr ""
|
4677 |
|
|
|
|
|
|
|
|
|
4678 |
#: front-end/recover.php:118
|
4679 |
msgid "Please enter your email address."
|
4680 |
msgstr ""
|
6425 |
msgid "After Registration..."
|
6426 |
msgstr ""
|
6427 |
|
6428 |
+
#: modules/repeater-field/repeater-field.php:303
|
6429 |
msgid "Are you sure you want to delete this?"
|
6430 |
msgstr ""
|
6431 |
|
6432 |
+
#: modules/user-listing/one-map-listing.php:439
|
6433 |
msgid "Please wait while the pins are loading..."
|
6434 |
msgstr ""
|
6435 |
|
6436 |
+
#: modules/user-listing/one-map-listing.php:554
|
6437 |
msgid "The API Key was not provided."
|
6438 |
msgstr ""
|
6439 |
|