Version Description
- We now add html and body tags to html emails that we send
- Fixed issue with admin approval still impacting the flow after downgrading from Pro to Free
- Fixed a conflict with Oxigen Builder.
- Fixed issue with global $post variable in content restriction.
- Added a filter over the edit other users dropdown display name.
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 3.1.0 |
Comparing to | |
See all releases |
Code changes from version 3.0.9 to 3.1.0
- assets/lib/wck-api/fields/number.php +12 -0
- assets/misc/plugin-compatibilities.php +1 -1
- features/content-restriction/content-restriction-functions.php +8 -6
- features/email-confirmation/email-confirmation.php +1 -1
- features/functions.php +29 -1
- front-end/class-formbuilder.php +12 -11
- front-end/recover.php +1 -1
- front-end/register.php +3 -3
- index.php +2 -2
- readme.txt +8 -1
- translation/profile-builder.pot +141 -141
assets/lib/wck-api/fields/number.php
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
$extra_attr = apply_filters( 'wck_extra_field_attributes', '', $details, $meta );
|
4 |
+
|
5 |
+
$element .= '<input type="number" name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
|
6 |
+
if( !empty( $frontend_prefix ) )
|
7 |
+
$element .= $frontend_prefix;
|
8 |
+
$element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'"';
|
9 |
+
if( !empty( $details['readonly'] ) && $details['readonly'] )
|
10 |
+
$element .= 'readonly="readonly"';
|
11 |
+
$element .= ' step="'. ( ! empty( $details['number-step-value'] ) ? $details['number-step-value'] : 'any' ) .'" type="number" min="'. ( isset( $details['min-number-value'] ) ? $details['min-number-value'] : '' ) .'" max="'. ( isset( $details['max-number-value'] ) ? $details['max-number-value'] : '' ) .'"';
|
12 |
+
$element .= ' value="'. esc_attr( $value ) .'" class="mb-number-input mb-field" '.$extra_attr.'/>';
|
assets/misc/plugin-compatibilities.php
CHANGED
@@ -229,7 +229,7 @@
|
|
229 |
$wppb_generalSettings = get_option('wppb_general_settings', 'not_found');
|
230 |
|
231 |
if( $wppb_generalSettings != 'not_found' ) {
|
232 |
-
if(
|
233 |
if( isset( $_REQUEST['edd_login_nonce'] ) ) {
|
234 |
if( wp_get_object_terms( $user_id, 'user_status' ) ) {
|
235 |
if( isset( $_REQUEST['edd_redirect'] ) ) {
|
229 |
$wppb_generalSettings = get_option('wppb_general_settings', 'not_found');
|
230 |
|
231 |
if( $wppb_generalSettings != 'not_found' ) {
|
232 |
+
if( wppb_get_admin_approval_option_value() === 'yes' ) {
|
233 |
if( isset( $_REQUEST['edd_login_nonce'] ) ) {
|
234 |
if( wp_get_object_terms( $user_id, 'user_status' ) ) {
|
235 |
if( isset( $_REQUEST['edd_redirect'] ) ) {
|
features/content-restriction/content-restriction-functions.php
CHANGED
@@ -106,7 +106,9 @@ function wppb_content_restriction_get_post_message( $post_id = 0 ) {
|
|
106 |
|
107 |
/* Checks to see if the current post is restricted and if any redirect URLs are in place the user is redirected to the URL with the highest priority */
|
108 |
function wppb_content_restriction_post_redirect() {
|
|
|
109 |
global $post;
|
|
|
110 |
|
111 |
if( function_exists( 'wc_get_page_id' ) ) {//redirect restriction for woocommerce shop page
|
112 |
if ( !is_singular() && !( is_post_type_archive('product') || is_page(wc_get_page_id('shop')) ) ){
|
@@ -114,7 +116,7 @@ function wppb_content_restriction_post_redirect() {
|
|
114 |
}
|
115 |
|
116 |
if( is_post_type_archive('product') || is_page(wc_get_page_id('shop')) ){
|
117 |
-
$
|
118 |
}
|
119 |
}
|
120 |
else {
|
@@ -123,12 +125,12 @@ function wppb_content_restriction_post_redirect() {
|
|
123 |
}
|
124 |
}
|
125 |
|
126 |
-
if ( !($
|
127 |
return;
|
128 |
}
|
129 |
|
130 |
$redirect_url = '';
|
131 |
-
$post_restriction_type = get_post_meta( $
|
132 |
$settings = get_option( 'wppb_content_restriction_settings', array() );
|
133 |
$general_restriction_type = ( ! empty( $settings['restrict_type'] ) ? $settings['restrict_type'] : 'message' );
|
134 |
|
@@ -140,14 +142,14 @@ function wppb_content_restriction_post_redirect() {
|
|
140 |
return;
|
141 |
}
|
142 |
|
143 |
-
if( ! wppb_content_restriction_is_post_restricted( $
|
144 |
return;
|
145 |
}
|
146 |
|
147 |
// Get the redirect URL from the post meta if enabled
|
148 |
if( $post_restriction_type === 'redirect' ) {
|
149 |
-
$post_redirect_url_enabled = get_post_meta( $
|
150 |
-
$post_redirect_url = get_post_meta( $
|
151 |
|
152 |
$redirect_url = ( ! empty( $post_redirect_url_enabled ) && ! empty( $post_redirect_url ) ? $post_redirect_url : '' );
|
153 |
}
|
106 |
|
107 |
/* Checks to see if the current post is restricted and if any redirect URLs are in place the user is redirected to the URL with the highest priority */
|
108 |
function wppb_content_restriction_post_redirect() {
|
109 |
+
// try not to overwrite $post. Can have side-effects with other plugins.
|
110 |
global $post;
|
111 |
+
$woo_shop_or_post = $post;
|
112 |
|
113 |
if( function_exists( 'wc_get_page_id' ) ) {//redirect restriction for woocommerce shop page
|
114 |
if ( !is_singular() && !( is_post_type_archive('product') || is_page(wc_get_page_id('shop')) ) ){
|
116 |
}
|
117 |
|
118 |
if( is_post_type_archive('product') || is_page(wc_get_page_id('shop')) ){
|
119 |
+
$woo_shop_or_post = get_post( wc_get_page_id('shop') );
|
120 |
}
|
121 |
}
|
122 |
else {
|
125 |
}
|
126 |
}
|
127 |
|
128 |
+
if ( !($woo_shop_or_post instanceof WP_Post) ){
|
129 |
return;
|
130 |
}
|
131 |
|
132 |
$redirect_url = '';
|
133 |
+
$post_restriction_type = get_post_meta( $woo_shop_or_post->ID, 'wppb-content-restrict-type', true );
|
134 |
$settings = get_option( 'wppb_content_restriction_settings', array() );
|
135 |
$general_restriction_type = ( ! empty( $settings['restrict_type'] ) ? $settings['restrict_type'] : 'message' );
|
136 |
|
142 |
return;
|
143 |
}
|
144 |
|
145 |
+
if( ! wppb_content_restriction_is_post_restricted( $woo_shop_or_post->ID ) ) {
|
146 |
return;
|
147 |
}
|
148 |
|
149 |
// Get the redirect URL from the post meta if enabled
|
150 |
if( $post_restriction_type === 'redirect' ) {
|
151 |
+
$post_redirect_url_enabled = get_post_meta( $woo_shop_or_post->ID, 'wppb-content-restrict-custom-redirect-url-enabled', true );
|
152 |
+
$post_redirect_url = get_post_meta( $woo_shop_or_post->ID, 'wppb-content-restrict-custom-redirect-url', true );
|
153 |
|
154 |
$redirect_url = ( ! empty( $post_redirect_url_enabled ) && ! empty( $post_redirect_url ) ? $post_redirect_url : '' );
|
155 |
}
|
features/email-confirmation/email-confirmation.php
CHANGED
@@ -470,7 +470,7 @@ function wppb_manual_activate_signup( $activation_key ) {
|
|
470 |
wp_cache_delete( $user_id, 'users' );
|
471 |
}
|
472 |
|
473 |
-
wppb_notify_user_registration_email( get_bloginfo( 'name' ), $user_login, $user_email, 'sending', $password, (
|
474 |
|
475 |
do_action('wppb_activate_user', $user_id, $password, $meta);
|
476 |
return ( $retVal ? 'ok' : __( 'There was an error while trying to activate the user', 'profile-builder' ) );
|
470 |
wp_cache_delete( $user_id, 'users' );
|
471 |
}
|
472 |
|
473 |
+
wppb_notify_user_registration_email( get_bloginfo( 'name' ), $user_login, $user_email, 'sending', $password, ( wppb_get_admin_approval_option_value() === 'yes' ? 'yes' : 'no' ) );
|
474 |
|
475 |
do_action('wppb_activate_user', $user_id, $password, $meta);
|
476 |
return ( $retVal ? 'ok' : __( 'There was an error while trying to activate the user', 'profile-builder' ) );
|
features/functions.php
CHANGED
@@ -160,6 +160,8 @@ function wppb_mail( $to, $subject, $message, $message_from = null, $context = nu
|
|
160 |
|
161 |
$message = apply_filters( 'wppb_email_message', $message, $context );
|
162 |
|
|
|
|
|
163 |
do_action( 'wppb_before_sending_email', $to, $subject, $message, $send_email, $context );
|
164 |
|
165 |
if ( $send_email ) {
|
@@ -183,6 +185,21 @@ function wppb_html_content_type( $content_type ){
|
|
183 |
return 'text/html';
|
184 |
}
|
185 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
function wppb_activate_account_check(){
|
187 |
if ( ( isset( $_GET['activation_key'] ) ) && ( trim( $_GET['activation_key'] ) != '' ) ){
|
188 |
global $post;
|
@@ -1351,4 +1368,15 @@ function wppb_gdpr_delete_user() {
|
|
1351 |
|
1352 |
/**
|
1353 |
* Functionality GDPR compliance end
|
1354 |
-
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
|
161 |
$message = apply_filters( 'wppb_email_message', $message, $context );
|
162 |
|
163 |
+
$message = wppb_maybe_add_propper_html_tags_to_email( $message );
|
164 |
+
|
165 |
do_action( 'wppb_before_sending_email', $to, $subject, $message, $send_email, $context );
|
166 |
|
167 |
if ( $send_email ) {
|
185 |
return 'text/html';
|
186 |
}
|
187 |
|
188 |
+
/*
|
189 |
+
* function that adds proper html tags to a html email message if they are missing
|
190 |
+
*/
|
191 |
+
function wppb_maybe_add_propper_html_tags_to_email( $message ){
|
192 |
+
|
193 |
+
//check if we have html content
|
194 |
+
if( $message !== wp_strip_all_tags( $message ) ){
|
195 |
+
if( strpos( html_entity_decode( $message ), '<html' ) === false && strpos( html_entity_decode( $message ), '<body' ) === false ){
|
196 |
+
$message = '<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head><body>'. $message . '</body></html>';
|
197 |
+
}
|
198 |
+
}
|
199 |
+
|
200 |
+
return $message;
|
201 |
+
}
|
202 |
+
|
203 |
function wppb_activate_account_check(){
|
204 |
if ( ( isset( $_GET['activation_key'] ) ) && ( trim( $_GET['activation_key'] ) != '' ) ){
|
205 |
global $post;
|
1368 |
|
1369 |
/**
|
1370 |
* Functionality GDPR compliance end
|
1371 |
+
*/
|
1372 |
+
|
1373 |
+
/**
|
1374 |
+
* Function that checks if Admin Approval is enabled
|
1375 |
+
*/
|
1376 |
+
function wppb_get_admin_approval_option_value(){
|
1377 |
+
$wppb_general_settings = get_option( 'wppb_general_settings', 'not_found' );
|
1378 |
+
if( file_exists(WPPB_PLUGIN_DIR . '/features/admin-approval/admin-approval.php') && $wppb_general_settings != 'not_found' && !empty( $wppb_general_settings['adminApproval'] ) && $wppb_general_settings['adminApproval'] === 'yes' )
|
1379 |
+
return 'yes';
|
1380 |
+
else
|
1381 |
+
return 'no';
|
1382 |
+
}
|
front-end/class-formbuilder.php
CHANGED
@@ -198,7 +198,7 @@ class Profile_Builder_Form_Creator{
|
|
198 |
$user = get_user_by( 'email', trim( sanitize_email( $_POST['email'] ) ) );
|
199 |
$nonce = wp_create_nonce( 'autologin-'. $user->ID .'-'. (int)( time() / 60 ) );
|
200 |
|
201 |
-
if (
|
202 |
if( !empty( $wppb_general_settings['adminApprovalOnUserRole'] ) ) {
|
203 |
foreach ($user->roles as $role) {
|
204 |
if ( in_array( $role, $wppb_general_settings['adminApprovalOnUserRole'] ) ) {
|
@@ -310,10 +310,9 @@ class Profile_Builder_Form_Creator{
|
|
310 |
else
|
311 |
$wppb_email_confirmation = 'no';
|
312 |
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
$wppb_admin_approval = 'no';
|
317 |
$account_management_settings = 'ec-' . $wppb_email_confirmation . '_' . 'aa-' . $wppb_admin_approval;
|
318 |
} else {
|
319 |
$account_management_settings = 'ec-no_aa-no';
|
@@ -569,7 +568,7 @@ class Profile_Builder_Form_Creator{
|
|
569 |
$send_credentials_via_email = 'sending';
|
570 |
else
|
571 |
$send_credentials_via_email = '';
|
572 |
-
wppb_notify_user_registration_email( get_bloginfo( 'name' ), ( isset( $userdata['user_login'] ) ? trim( $userdata['user_login'] ) : trim( $userdata['user_email'] ) ), trim( $userdata['user_email'] ), $send_credentials_via_email, trim( $userdata['user_pass'] ), (
|
573 |
}
|
574 |
}
|
575 |
}
|
@@ -690,11 +689,13 @@ class Profile_Builder_Form_Creator{
|
|
690 |
<select id="wppb-user-to-edit" class="wppb-user-to-edit" name="edit_user">
|
691 |
<option value=""><?php echo __( 'Select User', 'profile-builder' ); ?></option>
|
692 |
<?php
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
|
|
|
|
698 |
?>
|
699 |
</select>
|
700 |
</p>
|
198 |
$user = get_user_by( 'email', trim( sanitize_email( $_POST['email'] ) ) );
|
199 |
$nonce = wp_create_nonce( 'autologin-'. $user->ID .'-'. (int)( time() / 60 ) );
|
200 |
|
201 |
+
if ( wppb_get_admin_approval_option_value() === 'yes' ) {
|
202 |
if( !empty( $wppb_general_settings['adminApprovalOnUserRole'] ) ) {
|
203 |
foreach ($user->roles as $role) {
|
204 |
if ( in_array( $role, $wppb_general_settings['adminApprovalOnUserRole'] ) ) {
|
310 |
else
|
311 |
$wppb_email_confirmation = 'no';
|
312 |
|
313 |
+
|
314 |
+
$wppb_admin_approval = wppb_get_admin_approval_option_value();
|
315 |
+
|
|
|
316 |
$account_management_settings = 'ec-' . $wppb_email_confirmation . '_' . 'aa-' . $wppb_admin_approval;
|
317 |
} else {
|
318 |
$account_management_settings = 'ec-no_aa-no';
|
568 |
$send_credentials_via_email = 'sending';
|
569 |
else
|
570 |
$send_credentials_via_email = '';
|
571 |
+
wppb_notify_user_registration_email( get_bloginfo( 'name' ), ( isset( $userdata['user_login'] ) ? trim( $userdata['user_login'] ) : trim( $userdata['user_email'] ) ), trim( $userdata['user_email'] ), $send_credentials_via_email, trim( $userdata['user_pass'] ), ( wppb_get_admin_approval_option_value() === 'yes' ? 'yes' : 'no' ) );
|
572 |
}
|
573 |
}
|
574 |
}
|
689 |
<select id="wppb-user-to-edit" class="wppb-user-to-edit" name="edit_user">
|
690 |
<option value=""><?php echo __( 'Select User', 'profile-builder' ); ?></option>
|
691 |
<?php
|
692 |
+
foreach( $users as $user ){
|
693 |
+
?>
|
694 |
+
<option value="<?php echo esc_url_raw( add_query_arg( array( 'edit_user' => $user->ID ) ) ); ?>" <?php selected( $selected, $user->ID ); ?>>
|
695 |
+
<?php echo apply_filters( 'wppb_edit_other_users_display_name', $user->display_name, $user ); ?>
|
696 |
+
</option>
|
697 |
+
<?php
|
698 |
+
}
|
699 |
?>
|
700 |
</select>
|
701 |
</p>
|
front-end/recover.php
CHANGED
@@ -9,7 +9,7 @@ function wppb_check_for_unapproved_user( $data, $what ){
|
|
9 |
$message = '';
|
10 |
|
11 |
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
12 |
-
if(
|
13 |
$user = ( ( $what == 'user_email' ) ? get_user_by( 'email', $data ) : get_user_by( 'login', $data ) );
|
14 |
|
15 |
if ( wp_get_object_terms( $user->data->ID, 'user_status' ) ){
|
9 |
$message = '';
|
10 |
|
11 |
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
12 |
+
if( wppb_get_admin_approval_option_value() === 'yes' ){
|
13 |
$user = ( ( $what == 'user_email' ) ? get_user_by( 'email', $data ) : get_user_by( 'login', $data ) );
|
14 |
|
15 |
if ( wp_get_object_terms( $user->data->ID, 'user_status' ) ){
|
front-end/register.php
CHANGED
@@ -80,7 +80,7 @@ function wppb_activate_signup( $key ) {
|
|
80 |
|
81 |
// if admin approval is activated, then block the user untill he gets approved
|
82 |
$wppb_generalSettings = get_option('wppb_general_settings');
|
83 |
-
if(
|
84 |
$user_data = get_userdata( $user_id );
|
85 |
|
86 |
if( $wppb_generalSettings != 'not_found' && ! empty( $wppb_generalSettings['adminApprovalOnUserRole'] ) ) {
|
@@ -111,7 +111,7 @@ function wppb_activate_signup( $key ) {
|
|
111 |
wp_cache_delete( $user_id, 'users' );
|
112 |
}
|
113 |
|
114 |
-
wppb_notify_user_registration_email($bloginfo, $user_login, $user_email, 'sending', $password,
|
115 |
|
116 |
do_action( 'wppb_activate_user', $user_id, $password, $meta );
|
117 |
|
@@ -126,7 +126,7 @@ function wppb_activate_signup( $key ) {
|
|
126 |
|
127 |
$wppb_general_settings = get_option( 'wppb_general_settings', 'false' );
|
128 |
|
129 |
-
if (
|
130 |
$user_data = get_userdata( $user_id );
|
131 |
|
132 |
if( $wppb_general_settings != 'not_found' && ! empty( $wppb_general_settings['adminApprovalOnUserRole'] ) ) {
|
80 |
|
81 |
// if admin approval is activated, then block the user untill he gets approved
|
82 |
$wppb_generalSettings = get_option('wppb_general_settings');
|
83 |
+
if( wppb_get_admin_approval_option_value() === 'yes' ){
|
84 |
$user_data = get_userdata( $user_id );
|
85 |
|
86 |
if( $wppb_generalSettings != 'not_found' && ! empty( $wppb_generalSettings['adminApprovalOnUserRole'] ) ) {
|
111 |
wp_cache_delete( $user_id, 'users' );
|
112 |
}
|
113 |
|
114 |
+
wppb_notify_user_registration_email($bloginfo, $user_login, $user_email, 'sending', $password, wppb_get_admin_approval_option_value() );
|
115 |
|
116 |
do_action( 'wppb_activate_user', $user_id, $password, $meta );
|
117 |
|
126 |
|
127 |
$wppb_general_settings = get_option( 'wppb_general_settings', 'false' );
|
128 |
|
129 |
+
if ( wppb_get_admin_approval_option_value() === 'yes' ){
|
130 |
$user_data = get_userdata( $user_id );
|
131 |
|
132 |
if( $wppb_general_settings != 'not_found' && ! empty( $wppb_general_settings['adminApprovalOnUserRole'] ) ) {
|
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.0
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
@@ -63,7 +63,7 @@ function wppb_free_plugin_init() {
|
|
63 |
*
|
64 |
*
|
65 |
*/
|
66 |
-
define('PROFILE_BUILDER_VERSION', '3.0
|
67 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
68 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
69 |
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.1.0
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
63 |
*
|
64 |
*
|
65 |
*/
|
66 |
+
define('PROFILE_BUILDER_VERSION', '3.1.0' );
|
67 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
68 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
69 |
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.3.2
|
7 |
-
Stable tag: 3.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -169,6 +169,13 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
169 |
12. Role Editor
|
170 |
|
171 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
= 3.0.9 =
|
173 |
* Fixed a php 5.4 compatibility issue
|
174 |
|
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.3.2
|
7 |
+
Stable tag: 3.1.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
169 |
12. Role Editor
|
170 |
|
171 |
== Changelog ==
|
172 |
+
= 3.1.0 =
|
173 |
+
* We now add html and body tags to html emails that we send
|
174 |
+
* Fixed issue with admin approval still impacting the flow after downgrading from Pro to Free
|
175 |
+
* Fixed a conflict with Oxigen Builder.
|
176 |
+
* Fixed issue with global $post variable in content restriction.
|
177 |
+
* Added a filter over the edit other users dropdown display name.
|
178 |
+
|
179 |
= 3.0.9 =
|
180 |
* Fixed a php 5.4 compatibility issue
|
181 |
|
translation/profile-builder.pot
CHANGED
@@ -369,7 +369,7 @@ msgstr ""
|
|
369 |
msgid "Edit Profile"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: ../pb-add-on-custom-profile-menus/index.php:308, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, front-end/class-formbuilder.php:
|
373 |
msgid "Register"
|
374 |
msgstr ""
|
375 |
|
@@ -453,11 +453,11 @@ msgstr ""
|
|
453 |
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>"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: ../pb-add-on-field-visibility/index.php:228, ../pb-add-on-labels-edit/pble.php:
|
457 |
msgid "Edit"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ../pb-add-on-field-visibility/index.php:228, admin/manage-fields.php:1313, features/functions.php:
|
461 |
msgid "Delete"
|
462 |
msgstr ""
|
463 |
|
@@ -489,7 +489,7 @@ msgstr ""
|
|
489 |
msgid "Export Profile Builder options as a .json file. This allows you to easily import the configuration into another site."
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: ../pb-add-on-import-export/pbie-export.php:119, ../pb-add-on-import-export/pbie.php:55, ../pb-add-on-labels-edit/pble.php:
|
493 |
msgid "Export"
|
494 |
msgstr ""
|
495 |
|
@@ -497,7 +497,7 @@ msgstr ""
|
|
497 |
msgid "Import Profile Builder options from a .json file. This allows you to easily import the configuration from another site. "
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: ../pb-add-on-import-export/pbie-import.php:38, ../pb-add-on-import-export/pbie.php:54, ../pb-add-on-labels-edit/pble.php:
|
501 |
msgid "Import"
|
502 |
msgstr ""
|
503 |
|
@@ -509,71 +509,71 @@ msgstr ""
|
|
509 |
msgid "Import and Export"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: ../pb-add-on-labels-edit/pble.php:
|
513 |
msgid " labels scanned."
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: ../pb-add-on-labels-edit/pble.php:
|
517 |
msgid "Labels Edit"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: ../pb-add-on-labels-edit/pble.php:
|
521 |
msgid "Label to Edit"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: ../pb-add-on-labels-edit/pble.php:
|
525 |
msgid "New Label"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: ../pb-add-on-labels-edit/pble.php:
|
529 |
msgid "Edit Labels"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: ../pb-add-on-labels-edit/pble.php:
|
533 |
msgid "Rescan Lables"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: ../pb-add-on-labels-edit/pble.php:
|
537 |
msgid "Informations"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: ../pb-add-on-labels-edit/pble.php:
|
541 |
msgid "Import and Export Labels"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: ../pb-add-on-labels-edit/pble.php:
|
545 |
msgid "Import Labels from a .json file."
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: ../pb-add-on-labels-edit/pble.php:
|
549 |
msgid "Easily import the labels from another site."
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: ../pb-add-on-labels-edit/pble.php:
|
553 |
msgid "This will overwrite all your old edited labels!\nAre you sure you want to continue?"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: ../pb-add-on-labels-edit/pble.php:
|
557 |
msgid "Export Labels as a .json file."
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: ../pb-add-on-labels-edit/pble.php:
|
561 |
msgid "Easily import the labels into another site."
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: ../pb-add-on-labels-edit/pble.php:
|
565 |
msgid "You must select a label to edit!"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: ../pb-add-on-labels-edit/pble.php:
|
569 |
msgid "Labels"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: ../pb-add-on-labels-edit/pble.php:
|
573 |
msgid "Delete all"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: ../pb-add-on-labels-edit/pble.php:
|
577 |
msgid "No labels edited, nothing to export!"
|
578 |
msgstr ""
|
579 |
|
@@ -683,7 +683,7 @@ 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:324, admin/general-settings.php:113, admin/general-settings.php:126, admin/general-settings.php:175, admin/general-settings.php:222, admin/private-website.php:60, admin/private-website.php:117, ../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-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:88, 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:
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
@@ -883,7 +883,7 @@ msgstr ""
|
|
883 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: ../pb-add-on-social-connect/index.php:392, features/functions.php:
|
887 |
msgid "here"
|
888 |
msgstr ""
|
889 |
|
@@ -1195,7 +1195,7 @@ msgstr ""
|
|
1195 |
msgid "Click to edit"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:451, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:
|
1199 |
msgid "Cancel"
|
1200 |
msgstr ""
|
1201 |
|
@@ -1705,7 +1705,7 @@ msgstr ""
|
|
1705 |
msgid "Not compatible with Profile Builder"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: admin/add-ons.php:328, front-end/class-formbuilder.php:
|
1709 |
msgid "Update"
|
1710 |
msgstr ""
|
1711 |
|
@@ -1745,7 +1745,7 @@ msgstr ""
|
|
1745 |
msgid "Show"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: admin/admin-bar.php:80, modules/user-listing/userlisting.php:
|
1749 |
msgid "Hide"
|
1750 |
msgstr ""
|
1751 |
|
@@ -1769,15 +1769,15 @@ msgstr ""
|
|
1769 |
msgid "Very weak"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: admin/admin-functions.php:137, admin/general-settings.php:282, features/functions.php:
|
1773 |
msgid "Weak"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: admin/admin-functions.php:137, admin/general-settings.php:283, features/functions.php:
|
1777 |
msgid "Medium"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: admin/admin-functions.php:137, admin/general-settings.php:284, features/functions.php:
|
1781 |
msgid "Strong"
|
1782 |
msgstr ""
|
1783 |
|
@@ -2253,11 +2253,11 @@ msgstr ""
|
|
2253 |
msgid "Username and Email"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
-
#: admin/general-settings.php:251, admin/manage-fields.php:317, front-end/login.php:246, front-end/login.php:260, front-end/login.php:389, ../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:111, modules/user-listing/userlisting.php:311, modules/user-listing/userlisting.php:792, modules/user-listing/userlisting.php:
|
2257 |
msgid "Username"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
-
#: admin/general-settings.php:252, front-end/login.php:386, modules/email-customizer/email-customizer.php:29, modules/user-listing/userlisting.php:798, modules/user-listing/userlisting.php:
|
2261 |
msgid "Email"
|
2262 |
msgstr ""
|
2263 |
|
@@ -2733,7 +2733,7 @@ msgstr ""
|
|
2733 |
msgid "Usernames cannot be changed."
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#: admin/manage-fields.php:320, modules/user-listing/userlisting.php:831, modules/user-listing/userlisting.php:
|
2737 |
msgid "Nickname"
|
2738 |
msgstr ""
|
2739 |
|
@@ -2741,7 +2741,7 @@ msgstr ""
|
|
2741 |
msgid "Display name publicly as"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
-
#: admin/manage-fields.php:324, modules/email-customizer/email-customizer.php:33, modules/user-listing/userlisting.php:120, modules/user-listing/userlisting.php:813, modules/user-listing/userlisting.php:
|
2745 |
msgid "Website"
|
2746 |
msgstr ""
|
2747 |
|
@@ -2757,7 +2757,7 @@ msgstr ""
|
|
2757 |
msgid "Jabber / Google Talk"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: admin/manage-fields.php:334, modules/user-listing/userlisting.php:123, modules/user-listing/userlisting.php:816, modules/user-listing/userlisting.php:
|
2761 |
msgid "Biographical Info"
|
2762 |
msgstr ""
|
2763 |
|
@@ -4475,7 +4475,7 @@ msgstr ""
|
|
4475 |
msgid "We recommend \"<a href=\"%s\" target=\"_blank\">Custom Profile Menus</a>\" addon if you need different menu items for logged in / logged out users."
|
4476 |
msgstr ""
|
4477 |
|
4478 |
-
#: admin/private-website.php:129, features/functions.php:
|
4479 |
msgid "Save Changes"
|
4480 |
msgstr ""
|
4481 |
|
@@ -4555,63 +4555,63 @@ msgstr ""
|
|
4555 |
msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %6$sDismiss%7$s</p>"
|
4556 |
msgstr ""
|
4557 |
|
4558 |
-
#: features/functions.php:
|
4559 |
msgid "GDPR Checkbox"
|
4560 |
msgstr ""
|
4561 |
|
4562 |
-
#: features/functions.php:
|
4563 |
msgid "I allow the website to collect and store the data I submit through this form."
|
4564 |
msgstr ""
|
4565 |
|
4566 |
-
#: features/functions.php:
|
4567 |
msgid "Strength indicator"
|
4568 |
msgstr ""
|
4569 |
|
4570 |
-
#: features/functions.php:
|
4571 |
msgid "Very Weak"
|
4572 |
msgstr ""
|
4573 |
|
4574 |
-
#: features/functions.php:
|
4575 |
msgid "Minimum length of %d characters."
|
4576 |
msgstr ""
|
4577 |
|
4578 |
-
#: features/functions.php:
|
4579 |
msgid "The password must have a minimum strength of %s."
|
4580 |
msgstr ""
|
4581 |
|
4582 |
-
#: features/functions.php:
|
4583 |
msgid "This field is required"
|
4584 |
msgstr ""
|
4585 |
|
4586 |
-
#: features/functions.php:
|
4587 |
msgid "Please enter a (valid) reCAPTCHA value"
|
4588 |
msgstr ""
|
4589 |
|
4590 |
-
#: features/functions.php:
|
4591 |
msgid "Incorrect phone number"
|
4592 |
msgstr ""
|
4593 |
|
4594 |
-
#: features/functions.php:
|
4595 |
msgid "Content"
|
4596 |
msgstr ""
|
4597 |
|
4598 |
-
#: features/functions.php:
|
4599 |
msgid "<br><br>Also, you will be able to visit your site at "
|
4600 |
msgstr ""
|
4601 |
|
4602 |
-
#: features/functions.php:
|
4603 |
msgid "<br><br>You can visit your site at "
|
4604 |
msgstr ""
|
4605 |
|
4606 |
-
#: features/functions.php:
|
4607 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4608 |
msgstr ""
|
4609 |
|
4610 |
-
#: features/functions.php:
|
4611 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
4612 |
msgstr ""
|
4613 |
|
4614 |
-
#: features/functions.php:
|
4615 |
msgid "You are not currently logged in."
|
4616 |
msgstr ""
|
4617 |
|
@@ -4651,47 +4651,47 @@ msgstr ""
|
|
4651 |
msgid "You are not allowed to do this."
|
4652 |
msgstr ""
|
4653 |
|
4654 |
-
#: front-end/class-formbuilder.php:
|
4655 |
msgid "The account %1s has been successfully created!"
|
4656 |
msgstr ""
|
4657 |
|
4658 |
-
#: front-end/class-formbuilder.php:
|
4659 |
msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
|
4660 |
msgstr ""
|
4661 |
|
4662 |
-
#: front-end/class-formbuilder.php:
|
4663 |
msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
|
4664 |
msgstr ""
|
4665 |
|
4666 |
-
#: front-end/class-formbuilder.php:
|
4667 |
msgid "Your profile has been successfully updated!"
|
4668 |
msgstr ""
|
4669 |
|
4670 |
-
#: front-end/class-formbuilder.php:
|
4671 |
msgid "There was an error in the submitted form"
|
4672 |
msgstr ""
|
4673 |
|
4674 |
-
#: front-end/class-formbuilder.php:
|
4675 |
msgid "Add User"
|
4676 |
msgstr ""
|
4677 |
|
4678 |
-
#: front-end/class-formbuilder.php:
|
4679 |
msgid "Send these credentials via email."
|
4680 |
msgstr ""
|
4681 |
|
4682 |
-
#: front-end/class-formbuilder.php:
|
4683 |
msgid "User to edit:"
|
4684 |
msgstr ""
|
4685 |
|
4686 |
-
#: front-end/class-formbuilder.php:
|
4687 |
msgid "Select User"
|
4688 |
msgstr ""
|
4689 |
|
4690 |
-
#: front-end/class-formbuilder.php:
|
4691 |
msgid "There are no other users to edit"
|
4692 |
msgstr ""
|
4693 |
|
4694 |
-
#: front-end/class-formbuilder.php:
|
4695 |
msgid "Something went wrong. Please try again!"
|
4696 |
msgstr ""
|
4697 |
|
@@ -5379,15 +5379,15 @@ msgstr ""
|
|
5379 |
msgid "Approve"
|
5380 |
msgstr ""
|
5381 |
|
5382 |
-
#: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:312, modules/user-listing/userlisting.php:804, modules/user-listing/userlisting.php:
|
5383 |
msgid "Firstname"
|
5384 |
msgstr ""
|
5385 |
|
5386 |
-
#: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:807, modules/user-listing/userlisting.php:
|
5387 |
msgid "Lastname"
|
5388 |
msgstr ""
|
5389 |
|
5390 |
-
#: features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:255, modules/user-listing/userlisting.php:159, modules/user-listing/userlisting.php:313, modules/user-listing/userlisting.php:834, modules/user-listing/userlisting.php:
|
5391 |
msgid "Role"
|
5392 |
msgstr ""
|
5393 |
|
@@ -6327,27 +6327,27 @@ msgstr ""
|
|
6327 |
msgid "No Edit-profile Forms found in trash"
|
6328 |
msgstr ""
|
6329 |
|
6330 |
-
#: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:
|
6331 |
msgid "Shortcode"
|
6332 |
msgstr ""
|
6333 |
|
6334 |
-
#: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:
|
6335 |
msgid "(no title)"
|
6336 |
msgstr ""
|
6337 |
|
6338 |
-
#: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:
|
6339 |
msgid "The shortcode will be available after you publish this form."
|
6340 |
msgstr ""
|
6341 |
|
6342 |
-
#: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:
|
6343 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6344 |
msgstr ""
|
6345 |
|
6346 |
-
#: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:
|
6347 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6348 |
msgstr ""
|
6349 |
|
6350 |
-
#: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:
|
6351 |
msgid "Form Shortcode"
|
6352 |
msgstr ""
|
6353 |
|
@@ -6503,11 +6503,11 @@ msgstr ""
|
|
6503 |
msgid "Display name as"
|
6504 |
msgstr ""
|
6505 |
|
6506 |
-
#: modules/user-listing/userlisting.php:161, modules/user-listing/userlisting.php:
|
6507 |
msgid "Registration Date"
|
6508 |
msgstr ""
|
6509 |
|
6510 |
-
#: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:
|
6511 |
msgid "Number of Posts"
|
6512 |
msgstr ""
|
6513 |
|
@@ -6543,7 +6543,7 @@ msgstr ""
|
|
6543 |
msgid "Search all Fields"
|
6544 |
msgstr ""
|
6545 |
|
6546 |
-
#: modules/user-listing/userlisting.php:227, modules/user-listing/userlisting.php:
|
6547 |
msgid "Faceted Menus"
|
6548 |
msgstr ""
|
6549 |
|
@@ -6599,271 +6599,271 @@ msgstr ""
|
|
6599 |
msgid "First/Lastname"
|
6600 |
msgstr ""
|
6601 |
|
6602 |
-
#: modules/user-listing/userlisting.php:810, modules/user-listing/userlisting.php:
|
6603 |
msgid "Display Name"
|
6604 |
msgstr ""
|
6605 |
|
6606 |
-
#: modules/user-listing/userlisting.php:822, modules/user-listing/userlisting.php:
|
6607 |
msgid "Aim"
|
6608 |
msgstr ""
|
6609 |
|
6610 |
-
#: modules/user-listing/userlisting.php:825, modules/user-listing/userlisting.php:
|
6611 |
msgid "Yim"
|
6612 |
msgstr ""
|
6613 |
|
6614 |
-
#: modules/user-listing/userlisting.php:828, modules/user-listing/userlisting.php:
|
6615 |
msgid "Jabber"
|
6616 |
msgstr ""
|
6617 |
|
6618 |
-
#: modules/user-listing/userlisting.php:
|
6619 |
msgid "Search Users by All Fields"
|
6620 |
msgstr ""
|
6621 |
|
6622 |
-
#: modules/user-listing/userlisting.php:
|
6623 |
msgid "Click here to see more information about this user"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
-
#: modules/user-listing/userlisting.php:
|
6627 |
msgid "More..."
|
6628 |
msgstr ""
|
6629 |
|
6630 |
-
#: modules/user-listing/userlisting.php:
|
6631 |
msgid "Click here to see more information about this user."
|
6632 |
msgstr ""
|
6633 |
|
6634 |
-
#: modules/user-listing/userlisting.php:
|
6635 |
msgid "View Map"
|
6636 |
msgstr ""
|
6637 |
|
6638 |
-
#: modules/user-listing/userlisting.php:
|
6639 |
msgid "Click here to go back"
|
6640 |
msgstr ""
|
6641 |
|
6642 |
-
#: modules/user-listing/userlisting.php:
|
6643 |
msgid "Back"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
-
#: modules/user-listing/userlisting.php:
|
6647 |
msgid "«« First"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
-
#: modules/user-listing/userlisting.php:
|
6651 |
msgid "« Prev"
|
6652 |
msgstr ""
|
6653 |
|
6654 |
-
#: modules/user-listing/userlisting.php:
|
6655 |
msgid "Next » "
|
6656 |
msgstr ""
|
6657 |
|
6658 |
-
#: modules/user-listing/userlisting.php:
|
6659 |
msgid "Last »»"
|
6660 |
msgstr ""
|
6661 |
|
6662 |
-
#: modules/user-listing/userlisting.php:
|
6663 |
msgid "You don't have any pagination settings on this userlisting!"
|
6664 |
msgstr ""
|
6665 |
|
6666 |
-
#: modules/user-listing/userlisting.php:
|
6667 |
msgid "Show All"
|
6668 |
msgstr ""
|
6669 |
|
6670 |
-
#: modules/user-listing/userlisting.php:
|
6671 |
msgid "Choose..."
|
6672 |
msgstr ""
|
6673 |
|
6674 |
-
#: modules/user-listing/userlisting.php:
|
6675 |
msgid "No options available"
|
6676 |
msgstr ""
|
6677 |
|
6678 |
-
#: modules/user-listing/userlisting.php:
|
6679 |
msgid "Remove All Filters"
|
6680 |
msgstr ""
|
6681 |
|
6682 |
-
#: modules/user-listing/userlisting.php:
|
6683 |
msgid "Search"
|
6684 |
msgstr ""
|
6685 |
|
6686 |
-
#: modules/user-listing/userlisting.php:
|
6687 |
msgid "Clear Results"
|
6688 |
msgstr ""
|
6689 |
|
6690 |
-
#: modules/user-listing/userlisting.php:
|
6691 |
msgid "Extra shortcode parameters"
|
6692 |
msgstr ""
|
6693 |
|
6694 |
-
#: modules/user-listing/userlisting.php:
|
6695 |
msgid "View all extra shortcode parameters"
|
6696 |
msgstr ""
|
6697 |
|
6698 |
-
#: modules/user-listing/userlisting.php:
|
6699 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6700 |
msgstr ""
|
6701 |
|
6702 |
-
#: modules/user-listing/userlisting.php:
|
6703 |
msgid "Example:"
|
6704 |
msgstr ""
|
6705 |
|
6706 |
-
#: modules/user-listing/userlisting.php:
|
6707 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6708 |
msgstr ""
|
6709 |
|
6710 |
-
#: modules/user-listing/userlisting.php:
|
6711 |
msgid "displays only the users that you specified the user_id for"
|
6712 |
msgstr ""
|
6713 |
|
6714 |
-
#: modules/user-listing/userlisting.php:
|
6715 |
msgid "displays all users except the ones you specified the user_id for"
|
6716 |
msgstr ""
|
6717 |
|
6718 |
-
#: modules/user-listing/userlisting.php:
|
6719 |
msgid "Random (very slow on large databases > 10K user)"
|
6720 |
msgstr ""
|
6721 |
|
6722 |
-
#: modules/user-listing/userlisting.php:
|
6723 |
msgid "Ascending"
|
6724 |
msgstr ""
|
6725 |
|
6726 |
-
#: modules/user-listing/userlisting.php:
|
6727 |
msgid "Descending"
|
6728 |
msgstr ""
|
6729 |
|
6730 |
-
#: modules/user-listing/userlisting.php:
|
6731 |
msgid "Roles to Display"
|
6732 |
msgstr ""
|
6733 |
|
6734 |
-
#: modules/user-listing/userlisting.php:
|
6735 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6736 |
msgstr ""
|
6737 |
|
6738 |
-
#: modules/user-listing/userlisting.php:
|
6739 |
msgid "Number of Users/Page"
|
6740 |
msgstr ""
|
6741 |
|
6742 |
-
#: modules/user-listing/userlisting.php:
|
6743 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6744 |
msgstr ""
|
6745 |
|
6746 |
-
#: modules/user-listing/userlisting.php:
|
6747 |
msgid "Default Sorting Criteria"
|
6748 |
msgstr ""
|
6749 |
|
6750 |
-
#: modules/user-listing/userlisting.php:
|
6751 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6752 |
msgstr ""
|
6753 |
|
6754 |
-
#: modules/user-listing/userlisting.php:
|
6755 |
msgid "Default Sorting Order"
|
6756 |
msgstr ""
|
6757 |
|
6758 |
-
#: modules/user-listing/userlisting.php:
|
6759 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6760 |
msgstr ""
|
6761 |
|
6762 |
-
#: modules/user-listing/userlisting.php:
|
6763 |
msgid "Avatar Size (All-userlisting)"
|
6764 |
msgstr ""
|
6765 |
|
6766 |
-
#: modules/user-listing/userlisting.php:
|
6767 |
msgid "Set the avatar size on the all-userlisting only"
|
6768 |
msgstr ""
|
6769 |
|
6770 |
-
#: modules/user-listing/userlisting.php:
|
6771 |
msgid "Avatar Size (Single-userlisting)"
|
6772 |
msgstr ""
|
6773 |
|
6774 |
-
#: modules/user-listing/userlisting.php:
|
6775 |
msgid "Set the avatar size on the single-userlisting only"
|
6776 |
msgstr ""
|
6777 |
|
6778 |
-
#: modules/user-listing/userlisting.php:
|
6779 |
msgid "Visible only to logged in users?"
|
6780 |
msgstr ""
|
6781 |
|
6782 |
-
#: modules/user-listing/userlisting.php:
|
6783 |
msgid "The userlisting will only be visible only to the logged in users"
|
6784 |
msgstr ""
|
6785 |
|
6786 |
-
#: modules/user-listing/userlisting.php:
|
6787 |
msgid "Visible to following Roles"
|
6788 |
msgstr ""
|
6789 |
|
6790 |
-
#: modules/user-listing/userlisting.php:
|
6791 |
msgid "The userlisting will only be visible to the following roles"
|
6792 |
msgstr ""
|
6793 |
|
6794 |
-
#: modules/user-listing/userlisting.php:
|
6795 |
msgid "Userlisting Settings"
|
6796 |
msgstr ""
|
6797 |
|
6798 |
-
#: modules/user-listing/userlisting.php:
|
6799 |
msgid "Label"
|
6800 |
msgstr ""
|
6801 |
|
6802 |
-
#: modules/user-listing/userlisting.php:
|
6803 |
msgid "Choose the facet name that appears on the frontend"
|
6804 |
msgstr ""
|
6805 |
|
6806 |
-
#: modules/user-listing/userlisting.php:
|
6807 |
msgid "Facet Type"
|
6808 |
msgstr ""
|
6809 |
|
6810 |
-
#: modules/user-listing/userlisting.php:
|
6811 |
msgid "Choose the facet menu type"
|
6812 |
msgstr ""
|
6813 |
|
6814 |
-
#: modules/user-listing/userlisting.php:
|
6815 |
msgid "Facet Meta"
|
6816 |
msgstr ""
|
6817 |
|
6818 |
-
#: modules/user-listing/userlisting.php:
|
6819 |
msgid "Choose the meta field for the facet menu"
|
6820 |
msgstr ""
|
6821 |
|
6822 |
-
#: modules/user-listing/userlisting.php:
|
6823 |
msgid "Behaviour"
|
6824 |
msgstr ""
|
6825 |
|
6826 |
-
#: modules/user-listing/userlisting.php:
|
6827 |
msgid "Narrow the results"
|
6828 |
msgstr ""
|
6829 |
|
6830 |
-
#: modules/user-listing/userlisting.php:
|
6831 |
msgid "Expand the results"
|
6832 |
msgstr ""
|
6833 |
|
6834 |
-
#: modules/user-listing/userlisting.php:
|
6835 |
msgid "Choose how multiple selections affect the results"
|
6836 |
msgstr ""
|
6837 |
|
6838 |
-
#: modules/user-listing/userlisting.php:
|
6839 |
msgid "Visible choices"
|
6840 |
msgstr ""
|
6841 |
|
6842 |
-
#: modules/user-listing/userlisting.php:
|
6843 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6844 |
msgstr ""
|
6845 |
|
6846 |
-
#: modules/user-listing/userlisting.php:
|
6847 |
msgid "Search Fields"
|
6848 |
msgstr ""
|
6849 |
|
6850 |
-
#: modules/user-listing/userlisting.php:
|
6851 |
msgid "Choose the fields in which the Search Field will look in"
|
6852 |
msgstr ""
|
6853 |
|
6854 |
-
#: modules/user-listing/userlisting.php:
|
6855 |
msgid "Search Settings"
|
6856 |
msgstr ""
|
6857 |
|
6858 |
-
#: modules/user-listing/userlisting.php:
|
6859 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6860 |
msgstr ""
|
6861 |
|
6862 |
-
#: modules/user-listing/userlisting.php:
|
6863 |
msgid "You can find it in the Profile Builder menu."
|
6864 |
msgstr ""
|
6865 |
|
6866 |
-
#: modules/user-listing/userlisting.php:
|
6867 |
msgid "No results found!"
|
6868 |
msgstr ""
|
6869 |
|
369 |
msgid "Edit Profile"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: ../pb-add-on-custom-profile-menus/index.php:308, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, front-end/class-formbuilder.php:423, front-end/login.php:421
|
373 |
msgid "Register"
|
374 |
msgstr ""
|
375 |
|
453 |
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>"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: ../pb-add-on-field-visibility/index.php:228, ../pb-add-on-labels-edit/pble.php:381, admin/manage-fields.php:1313, features/functions.php:805, features/functions.php:812, features/admin-approval/class-admin-approval.php:108, features/roles-editor/roles-editor.php:866, modules/custom-redirects/custom_redirects_admin.php:183, modules/custom-redirects/custom_redirects_admin.php:197, modules/custom-redirects/custom_redirects_admin.php:211, modules/custom-redirects/custom_redirects_admin.php:225, modules/multiple-forms/multiple-forms.php:406
|
457 |
msgid "Edit"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: ../pb-add-on-field-visibility/index.php:228, admin/manage-fields.php:1313, features/functions.php:798, features/functions.php:812, 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:179, features/roles-editor/roles-editor.php:884, features/roles-editor/roles-editor.php:893, features/roles-editor/roles-editor.php:904, modules/custom-redirects/custom_redirects_admin.php:183, modules/custom-redirects/custom_redirects_admin.php:197, modules/custom-redirects/custom_redirects_admin.php:211, modules/custom-redirects/custom_redirects_admin.php:225, front-end/default-fields/gdpr-delete/gdpr-delete.php:18
|
461 |
msgid "Delete"
|
462 |
msgstr ""
|
463 |
|
489 |
msgid "Export Profile Builder options as a .json file. This allows you to easily import the configuration into another site."
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: ../pb-add-on-import-export/pbie-export.php:119, ../pb-add-on-import-export/pbie.php:55, ../pb-add-on-labels-edit/pble.php:345
|
493 |
msgid "Export"
|
494 |
msgstr ""
|
495 |
|
497 |
msgid "Import Profile Builder options from a .json file. This allows you to easily import the configuration from another site. "
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: ../pb-add-on-import-export/pbie-import.php:38, ../pb-add-on-import-export/pbie.php:54, ../pb-add-on-labels-edit/pble.php:335
|
501 |
msgid "Import"
|
502 |
msgstr ""
|
503 |
|
509 |
msgid "Import and Export"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: ../pb-add-on-labels-edit/pble.php:136
|
513 |
msgid " labels scanned."
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: ../pb-add-on-labels-edit/pble.php:211, ../pb-add-on-labels-edit/pble.php:212
|
517 |
msgid "Labels Edit"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: ../pb-add-on-labels-edit/pble.php:230
|
521 |
msgid "Label to Edit"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: ../pb-add-on-labels-edit/pble.php:231
|
525 |
msgid "New Label"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: ../pb-add-on-labels-edit/pble.php:237
|
529 |
msgid "Edit Labels"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: ../pb-add-on-labels-edit/pble.php:253
|
533 |
msgid "Rescan Lables"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: ../pb-add-on-labels-edit/pble.php:278
|
537 |
msgid "Informations"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: ../pb-add-on-labels-edit/pble.php:312
|
541 |
msgid "Import and Export Labels"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: ../pb-add-on-labels-edit/pble.php:326
|
545 |
msgid "Import Labels from a .json file."
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: ../pb-add-on-labels-edit/pble.php:328
|
549 |
msgid "Easily import the labels from another site."
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: ../pb-add-on-labels-edit/pble.php:335
|
553 |
msgid "This will overwrite all your old edited labels!\nAre you sure you want to continue?"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: ../pb-add-on-labels-edit/pble.php:340
|
557 |
msgid "Export Labels as a .json file."
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: ../pb-add-on-labels-edit/pble.php:342
|
561 |
msgid "Easily import the labels into another site."
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: ../pb-add-on-labels-edit/pble.php:370
|
565 |
msgid "You must select a label to edit!"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: ../pb-add-on-labels-edit/pble.php:381, admin/manage-fields.php:189
|
569 |
msgid "Labels"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: ../pb-add-on-labels-edit/pble.php:381, ../pb-add-on-labels-edit/pble.php:381, modules/multiple-forms/multiple-forms.php:406
|
573 |
msgid "Delete all"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: ../pb-add-on-labels-edit/pble.php:433
|
577 |
msgid "No labels edited, nothing to export!"
|
578 |
msgstr ""
|
579 |
|
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:324, admin/general-settings.php:113, admin/general-settings.php:126, admin/general-settings.php:175, admin/general-settings.php:222, admin/private-website.php:60, admin/private-website.php:117, ../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-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:88, 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:2369
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
883 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: ../pb-add-on-social-connect/index.php:392, features/functions.php:1077
|
887 |
msgid "here"
|
888 |
msgstr ""
|
889 |
|
1195 |
msgid "Click to edit"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:451, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:791, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:403, assets/lib/wck-api/wordpress-creation-kit.php:406
|
1199 |
msgid "Cancel"
|
1200 |
msgstr ""
|
1201 |
|
1705 |
msgid "Not compatible with Profile Builder"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: admin/add-ons.php:328, front-end/class-formbuilder.php:426
|
1709 |
msgid "Update"
|
1710 |
msgstr ""
|
1711 |
|
1745 |
msgid "Show"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: admin/admin-bar.php:80, modules/user-listing/userlisting.php:1650
|
1749 |
msgid "Hide"
|
1750 |
msgstr ""
|
1751 |
|
1769 |
msgid "Very weak"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: admin/admin-functions.php:137, admin/general-settings.php:282, features/functions.php:625, features/functions.php:649
|
1773 |
msgid "Weak"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: admin/admin-functions.php:137, admin/general-settings.php:283, features/functions.php:625, features/functions.php:649
|
1777 |
msgid "Medium"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
+
#: admin/admin-functions.php:137, admin/general-settings.php:284, features/functions.php:625, features/functions.php:649
|
1781 |
msgid "Strong"
|
1782 |
msgstr ""
|
1783 |
|
2253 |
msgid "Username and Email"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: admin/general-settings.php:251, admin/manage-fields.php:317, front-end/login.php:246, front-end/login.php:260, front-end/login.php:389, ../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:111, modules/user-listing/userlisting.php:311, modules/user-listing/userlisting.php:792, modules/user-listing/userlisting.php:2323
|
2257 |
msgid "Username"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: admin/general-settings.php:252, front-end/login.php:386, modules/email-customizer/email-customizer.php:29, modules/user-listing/userlisting.php:798, modules/user-listing/userlisting.php:2324
|
2261 |
msgid "Email"
|
2262 |
msgstr ""
|
2263 |
|
2733 |
msgid "Usernames cannot be changed."
|
2734 |
msgstr ""
|
2735 |
|
2736 |
+
#: admin/manage-fields.php:320, modules/user-listing/userlisting.php:831, modules/user-listing/userlisting.php:2331
|
2737 |
msgid "Nickname"
|
2738 |
msgstr ""
|
2739 |
|
2741 |
msgid "Display name publicly as"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
+
#: admin/manage-fields.php:324, modules/email-customizer/email-customizer.php:33, modules/user-listing/userlisting.php:120, modules/user-listing/userlisting.php:813, modules/user-listing/userlisting.php:2325
|
2745 |
msgid "Website"
|
2746 |
msgstr ""
|
2747 |
|
2757 |
msgid "Jabber / Google Talk"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
+
#: admin/manage-fields.php:334, modules/user-listing/userlisting.php:123, modules/user-listing/userlisting.php:816, modules/user-listing/userlisting.php:2326
|
2761 |
msgid "Biographical Info"
|
2762 |
msgstr ""
|
2763 |
|
4475 |
msgid "We recommend \"<a href=\"%s\" target=\"_blank\">Custom Profile Menus</a>\" addon if you need different menu items for logged in / logged out users."
|
4476 |
msgstr ""
|
4477 |
|
4478 |
+
#: admin/private-website.php:129, features/functions.php:784, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:47, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:275, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:321, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:77, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:91, features/content-restriction/content-restriction.php:161, modules/class-mustache-templates/class-mustache-templates.php:390, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:402, assets/lib/wck-api/wordpress-creation-kit.php:405
|
4479 |
msgid "Save Changes"
|
4480 |
msgstr ""
|
4481 |
|
4555 |
msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %6$sDismiss%7$s</p>"
|
4556 |
msgstr ""
|
4557 |
|
4558 |
+
#: features/functions.php:270
|
4559 |
msgid "GDPR Checkbox"
|
4560 |
msgstr ""
|
4561 |
|
4562 |
+
#: features/functions.php:270
|
4563 |
msgid "I allow the website to collect and store the data I submit through this form."
|
4564 |
msgstr ""
|
4565 |
|
4566 |
+
#: features/functions.php:599
|
4567 |
msgid "Strength indicator"
|
4568 |
msgstr ""
|
4569 |
|
4570 |
+
#: features/functions.php:625, features/functions.php:649
|
4571 |
msgid "Very Weak"
|
4572 |
msgstr ""
|
4573 |
|
4574 |
+
#: features/functions.php:639
|
4575 |
msgid "Minimum length of %d characters."
|
4576 |
msgstr ""
|
4577 |
|
4578 |
+
#: features/functions.php:650
|
4579 |
msgid "The password must have a minimum strength of %s."
|
4580 |
msgstr ""
|
4581 |
|
4582 |
+
#: features/functions.php:727
|
4583 |
msgid "This field is required"
|
4584 |
msgstr ""
|
4585 |
|
4586 |
+
#: features/functions.php:765, front-end/default-fields/recaptcha/recaptcha.php:470, front-end/default-fields/recaptcha/recaptcha.php:479, front-end/default-fields/recaptcha/recaptcha.php:532, front-end/default-fields/recaptcha/recaptcha.php:577
|
4587 |
msgid "Please enter a (valid) reCAPTCHA value"
|
4588 |
msgstr ""
|
4589 |
|
4590 |
+
#: features/functions.php:772
|
4591 |
msgid "Incorrect phone number"
|
4592 |
msgstr ""
|
4593 |
|
4594 |
+
#: features/functions.php:812, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:444, assets/lib/wck-api/wordpress-creation-kit.php:447
|
4595 |
msgid "Content"
|
4596 |
msgstr ""
|
4597 |
|
4598 |
+
#: features/functions.php:979
|
4599 |
msgid "<br><br>Also, you will be able to visit your site at "
|
4600 |
msgstr ""
|
4601 |
|
4602 |
+
#: features/functions.php:992
|
4603 |
msgid "<br><br>You can visit your site at "
|
4604 |
msgstr ""
|
4605 |
|
4606 |
+
#: features/functions.php:1078
|
4607 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4608 |
msgstr ""
|
4609 |
|
4610 |
+
#: features/functions.php:1208
|
4611 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
4612 |
msgstr ""
|
4613 |
|
4614 |
+
#: features/functions.php:1243
|
4615 |
msgid "You are not currently logged in."
|
4616 |
msgstr ""
|
4617 |
|
4651 |
msgid "You are not allowed to do this."
|
4652 |
msgstr ""
|
4653 |
|
4654 |
+
#: front-end/class-formbuilder.php:323, front-end/class-formbuilder.php:330
|
4655 |
msgid "The account %1s has been successfully created!"
|
4656 |
msgstr ""
|
4657 |
|
4658 |
+
#: front-end/class-formbuilder.php:326, front-end/class-formbuilder.php:336
|
4659 |
msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
|
4660 |
msgstr ""
|
4661 |
|
4662 |
+
#: front-end/class-formbuilder.php:332
|
4663 |
msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
|
4664 |
msgstr ""
|
4665 |
|
4666 |
+
#: front-end/class-formbuilder.php:355
|
4667 |
msgid "Your profile has been successfully updated!"
|
4668 |
msgstr ""
|
4669 |
|
4670 |
+
#: front-end/class-formbuilder.php:366
|
4671 |
msgid "There was an error in the submitted form"
|
4672 |
msgstr ""
|
4673 |
|
4674 |
+
#: front-end/class-formbuilder.php:423
|
4675 |
msgid "Add User"
|
4676 |
msgstr ""
|
4677 |
|
4678 |
+
#: front-end/class-formbuilder.php:492
|
4679 |
msgid "Send these credentials via email."
|
4680 |
msgstr ""
|
4681 |
|
4682 |
+
#: front-end/class-formbuilder.php:688
|
4683 |
msgid "User to edit:"
|
4684 |
msgstr ""
|
4685 |
|
4686 |
+
#: front-end/class-formbuilder.php:690
|
4687 |
msgid "Select User"
|
4688 |
msgstr ""
|
4689 |
|
4690 |
+
#: front-end/class-formbuilder.php:706
|
4691 |
msgid "There are no other users to edit"
|
4692 |
msgstr ""
|
4693 |
|
4694 |
+
#: front-end/class-formbuilder.php:724
|
4695 |
msgid "Something went wrong. Please try again!"
|
4696 |
msgstr ""
|
4697 |
|
5379 |
msgid "Approve"
|
5380 |
msgstr ""
|
5381 |
|
5382 |
+
#: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:312, modules/user-listing/userlisting.php:804, modules/user-listing/userlisting.php:2328
|
5383 |
msgid "Firstname"
|
5384 |
msgstr ""
|
5385 |
|
5386 |
+
#: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:807, modules/user-listing/userlisting.php:2329
|
5387 |
msgid "Lastname"
|
5388 |
msgstr ""
|
5389 |
|
5390 |
+
#: features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:255, modules/user-listing/userlisting.php:159, modules/user-listing/userlisting.php:313, modules/user-listing/userlisting.php:834, modules/user-listing/userlisting.php:2333
|
5391 |
msgid "Role"
|
5392 |
msgstr ""
|
5393 |
|
6327 |
msgid "No Edit-profile Forms found in trash"
|
6328 |
msgstr ""
|
6329 |
|
6330 |
+
#: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:2219
|
6331 |
msgid "Shortcode"
|
6332 |
msgstr ""
|
6333 |
|
6334 |
+
#: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:2240
|
6335 |
msgid "(no title)"
|
6336 |
msgstr ""
|
6337 |
|
6338 |
+
#: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:2260
|
6339 |
msgid "The shortcode will be available after you publish this form."
|
6340 |
msgstr ""
|
6341 |
|
6342 |
+
#: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:2262
|
6343 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6344 |
msgstr ""
|
6345 |
|
6346 |
+
#: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:2266
|
6347 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6348 |
msgstr ""
|
6349 |
|
6350 |
+
#: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:2299
|
6351 |
msgid "Form Shortcode"
|
6352 |
msgstr ""
|
6353 |
|
6503 |
msgid "Display name as"
|
6504 |
msgstr ""
|
6505 |
|
6506 |
+
#: modules/user-listing/userlisting.php:161, modules/user-listing/userlisting.php:2327
|
6507 |
msgid "Registration Date"
|
6508 |
msgstr ""
|
6509 |
|
6510 |
+
#: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:2332
|
6511 |
msgid "Number of Posts"
|
6512 |
msgstr ""
|
6513 |
|
6543 |
msgid "Search all Fields"
|
6544 |
msgstr ""
|
6545 |
|
6546 |
+
#: modules/user-listing/userlisting.php:227, modules/user-listing/userlisting.php:2411
|
6547 |
msgid "Faceted Menus"
|
6548 |
msgstr ""
|
6549 |
|
6599 |
msgid "First/Lastname"
|
6600 |
msgstr ""
|
6601 |
|
6602 |
+
#: modules/user-listing/userlisting.php:810, modules/user-listing/userlisting.php:2330
|
6603 |
msgid "Display Name"
|
6604 |
msgstr ""
|
6605 |
|
6606 |
+
#: modules/user-listing/userlisting.php:822, modules/user-listing/userlisting.php:2337
|
6607 |
msgid "Aim"
|
6608 |
msgstr ""
|
6609 |
|
6610 |
+
#: modules/user-listing/userlisting.php:825, modules/user-listing/userlisting.php:2338
|
6611 |
msgid "Yim"
|
6612 |
msgstr ""
|
6613 |
|
6614 |
+
#: modules/user-listing/userlisting.php:828, modules/user-listing/userlisting.php:2339
|
6615 |
msgid "Jabber"
|
6616 |
msgstr ""
|
6617 |
|
6618 |
+
#: modules/user-listing/userlisting.php:1105, modules/user-listing/userlisting.php:1581, modules/user-listing/userlisting.php:2054, modules/user-listing/userlisting.php:2531
|
6619 |
msgid "Search Users by All Fields"
|
6620 |
msgstr ""
|
6621 |
|
6622 |
+
#: modules/user-listing/userlisting.php:1374
|
6623 |
msgid "Click here to see more information about this user"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
+
#: modules/user-listing/userlisting.php:1374, modules/user-listing/userlisting.php:1374
|
6627 |
msgid "More..."
|
6628 |
msgstr ""
|
6629 |
|
6630 |
+
#: modules/user-listing/userlisting.php:1377
|
6631 |
msgid "Click here to see more information about this user."
|
6632 |
msgstr ""
|
6633 |
|
6634 |
+
#: modules/user-listing/userlisting.php:1404
|
6635 |
msgid "View Map"
|
6636 |
msgstr ""
|
6637 |
|
6638 |
+
#: modules/user-listing/userlisting.php:1535, modules/user-listing/userlisting.php:1538
|
6639 |
msgid "Click here to go back"
|
6640 |
msgstr ""
|
6641 |
|
6642 |
+
#: modules/user-listing/userlisting.php:1535, modules/user-listing/userlisting.php:1535
|
6643 |
msgid "Back"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
+
#: modules/user-listing/userlisting.php:1568
|
6647 |
msgid "«« First"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
+
#: modules/user-listing/userlisting.php:1569
|
6651 |
msgid "« Prev"
|
6652 |
msgstr ""
|
6653 |
|
6654 |
+
#: modules/user-listing/userlisting.php:1570
|
6655 |
msgid "Next » "
|
6656 |
msgstr ""
|
6657 |
|
6658 |
+
#: modules/user-listing/userlisting.php:1571
|
6659 |
msgid "Last »»"
|
6660 |
msgstr ""
|
6661 |
|
6662 |
+
#: modules/user-listing/userlisting.php:1600
|
6663 |
msgid "You don't have any pagination settings on this userlisting!"
|
6664 |
msgstr ""
|
6665 |
|
6666 |
+
#: modules/user-listing/userlisting.php:1649
|
6667 |
msgid "Show All"
|
6668 |
msgstr ""
|
6669 |
|
6670 |
+
#: modules/user-listing/userlisting.php:1723
|
6671 |
msgid "Choose..."
|
6672 |
msgstr ""
|
6673 |
|
6674 |
+
#: modules/user-listing/userlisting.php:1812
|
6675 |
msgid "No options available"
|
6676 |
msgstr ""
|
6677 |
|
6678 |
+
#: modules/user-listing/userlisting.php:1962
|
6679 |
msgid "Remove All Filters"
|
6680 |
msgstr ""
|
6681 |
|
6682 |
+
#: modules/user-listing/userlisting.php:2071
|
6683 |
msgid "Search"
|
6684 |
msgstr ""
|
6685 |
|
6686 |
+
#: modules/user-listing/userlisting.php:2072
|
6687 |
msgid "Clear Results"
|
6688 |
msgstr ""
|
6689 |
|
6690 |
+
#: modules/user-listing/userlisting.php:2269, modules/user-listing/userlisting.php:2273
|
6691 |
msgid "Extra shortcode parameters"
|
6692 |
msgstr ""
|
6693 |
|
6694 |
+
#: modules/user-listing/userlisting.php:2271
|
6695 |
msgid "View all extra shortcode parameters"
|
6696 |
msgstr ""
|
6697 |
|
6698 |
+
#: modules/user-listing/userlisting.php:2276
|
6699 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6700 |
msgstr ""
|
6701 |
|
6702 |
+
#: modules/user-listing/userlisting.php:2277
|
6703 |
msgid "Example:"
|
6704 |
msgstr ""
|
6705 |
|
6706 |
+
#: modules/user-listing/userlisting.php:2279
|
6707 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6708 |
msgstr ""
|
6709 |
|
6710 |
+
#: modules/user-listing/userlisting.php:2285
|
6711 |
msgid "displays only the users that you specified the user_id for"
|
6712 |
msgstr ""
|
6713 |
|
6714 |
+
#: modules/user-listing/userlisting.php:2291
|
6715 |
msgid "displays all users except the ones you specified the user_id for"
|
6716 |
msgstr ""
|
6717 |
|
6718 |
+
#: modules/user-listing/userlisting.php:2354
|
6719 |
msgid "Random (very slow on large databases > 10K user)"
|
6720 |
msgstr ""
|
6721 |
|
6722 |
+
#: modules/user-listing/userlisting.php:2357
|
6723 |
msgid "Ascending"
|
6724 |
msgstr ""
|
6725 |
|
6726 |
+
#: modules/user-listing/userlisting.php:2358
|
6727 |
msgid "Descending"
|
6728 |
msgstr ""
|
6729 |
|
6730 |
+
#: modules/user-listing/userlisting.php:2363
|
6731 |
msgid "Roles to Display"
|
6732 |
msgstr ""
|
6733 |
|
6734 |
+
#: modules/user-listing/userlisting.php:2363
|
6735 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6736 |
msgstr ""
|
6737 |
|
6738 |
+
#: modules/user-listing/userlisting.php:2364
|
6739 |
msgid "Number of Users/Page"
|
6740 |
msgstr ""
|
6741 |
|
6742 |
+
#: modules/user-listing/userlisting.php:2364
|
6743 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6744 |
msgstr ""
|
6745 |
|
6746 |
+
#: modules/user-listing/userlisting.php:2365
|
6747 |
msgid "Default Sorting Criteria"
|
6748 |
msgstr ""
|
6749 |
|
6750 |
+
#: modules/user-listing/userlisting.php:2365
|
6751 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6752 |
msgstr ""
|
6753 |
|
6754 |
+
#: modules/user-listing/userlisting.php:2366
|
6755 |
msgid "Default Sorting Order"
|
6756 |
msgstr ""
|
6757 |
|
6758 |
+
#: modules/user-listing/userlisting.php:2366
|
6759 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6760 |
msgstr ""
|
6761 |
|
6762 |
+
#: modules/user-listing/userlisting.php:2367
|
6763 |
msgid "Avatar Size (All-userlisting)"
|
6764 |
msgstr ""
|
6765 |
|
6766 |
+
#: modules/user-listing/userlisting.php:2367
|
6767 |
msgid "Set the avatar size on the all-userlisting only"
|
6768 |
msgstr ""
|
6769 |
|
6770 |
+
#: modules/user-listing/userlisting.php:2368
|
6771 |
msgid "Avatar Size (Single-userlisting)"
|
6772 |
msgstr ""
|
6773 |
|
6774 |
+
#: modules/user-listing/userlisting.php:2368
|
6775 |
msgid "Set the avatar size on the single-userlisting only"
|
6776 |
msgstr ""
|
6777 |
|
6778 |
+
#: modules/user-listing/userlisting.php:2369
|
6779 |
msgid "Visible only to logged in users?"
|
6780 |
msgstr ""
|
6781 |
|
6782 |
+
#: modules/user-listing/userlisting.php:2369
|
6783 |
msgid "The userlisting will only be visible only to the logged in users"
|
6784 |
msgstr ""
|
6785 |
|
6786 |
+
#: modules/user-listing/userlisting.php:2370
|
6787 |
msgid "Visible to following Roles"
|
6788 |
msgstr ""
|
6789 |
|
6790 |
+
#: modules/user-listing/userlisting.php:2370
|
6791 |
msgid "The userlisting will only be visible to the following roles"
|
6792 |
msgstr ""
|
6793 |
|
6794 |
+
#: modules/user-listing/userlisting.php:2376
|
6795 |
msgid "Userlisting Settings"
|
6796 |
msgstr ""
|
6797 |
|
6798 |
+
#: modules/user-listing/userlisting.php:2401
|
6799 |
msgid "Label"
|
6800 |
msgstr ""
|
6801 |
|
6802 |
+
#: modules/user-listing/userlisting.php:2401
|
6803 |
msgid "Choose the facet name that appears on the frontend"
|
6804 |
msgstr ""
|
6805 |
|
6806 |
+
#: modules/user-listing/userlisting.php:2402
|
6807 |
msgid "Facet Type"
|
6808 |
msgstr ""
|
6809 |
|
6810 |
+
#: modules/user-listing/userlisting.php:2402
|
6811 |
msgid "Choose the facet menu type"
|
6812 |
msgstr ""
|
6813 |
|
6814 |
+
#: modules/user-listing/userlisting.php:2403
|
6815 |
msgid "Facet Meta"
|
6816 |
msgstr ""
|
6817 |
|
6818 |
+
#: modules/user-listing/userlisting.php:2403
|
6819 |
msgid "Choose the meta field for the facet menu"
|
6820 |
msgstr ""
|
6821 |
|
6822 |
+
#: modules/user-listing/userlisting.php:2404
|
6823 |
msgid "Behaviour"
|
6824 |
msgstr ""
|
6825 |
|
6826 |
+
#: modules/user-listing/userlisting.php:2404
|
6827 |
msgid "Narrow the results"
|
6828 |
msgstr ""
|
6829 |
|
6830 |
+
#: modules/user-listing/userlisting.php:2404
|
6831 |
msgid "Expand the results"
|
6832 |
msgstr ""
|
6833 |
|
6834 |
+
#: modules/user-listing/userlisting.php:2404
|
6835 |
msgid "Choose how multiple selections affect the results"
|
6836 |
msgstr ""
|
6837 |
|
6838 |
+
#: modules/user-listing/userlisting.php:2405
|
6839 |
msgid "Visible choices"
|
6840 |
msgstr ""
|
6841 |
|
6842 |
+
#: modules/user-listing/userlisting.php:2405
|
6843 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6844 |
msgstr ""
|
6845 |
|
6846 |
+
#: modules/user-listing/userlisting.php:2430
|
6847 |
msgid "Search Fields"
|
6848 |
msgstr ""
|
6849 |
|
6850 |
+
#: modules/user-listing/userlisting.php:2430
|
6851 |
msgid "Choose the fields in which the Search Field will look in"
|
6852 |
msgstr ""
|
6853 |
|
6854 |
+
#: modules/user-listing/userlisting.php:2435
|
6855 |
msgid "Search Settings"
|
6856 |
msgstr ""
|
6857 |
|
6858 |
+
#: modules/user-listing/userlisting.php:2507
|
6859 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6860 |
msgstr ""
|
6861 |
|
6862 |
+
#: modules/user-listing/userlisting.php:2507
|
6863 |
msgid "You can find it in the Profile Builder menu."
|
6864 |
msgstr ""
|
6865 |
|
6866 |
+
#: modules/user-listing/userlisting.php:2670
|
6867 |
msgid "No results found!"
|
6868 |
msgstr ""
|
6869 |
|