Version Description
- Fixed a PHP 'undefined offset 0' notice.
- Fixed xCrud compatibility issue
- Replaced e-mail string with email.
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 3.3.2 |
Comparing to | |
See all releases |
Code changes from version 3.3.1 to 3.3.2
- admin/admin-functions.php +1 -1
- admin/manage-fields.php +2 -0
- assets/misc/plugin-compatibilities.php +9 -0
- features/email-confirmation/class-email-confirmation.php +1 -1
- features/email-confirmation/email-confirmation.php +1 -1
- features/functions.php +20 -0
- front-end/class-formbuilder.php +11 -1
- front-end/default-fields/user-role/user-role.php +1 -1
- front-end/recover.php +2 -2
- index.php +2 -2
- readme.txt +6 -1
- translation/profile-builder.catalog.php +8 -8
- translation/profile-builder.pot +85 -85
admin/admin-functions.php
CHANGED
@@ -35,7 +35,7 @@ function wppb_manage_fields_display_field_title_slug( $form ){
|
|
35 |
case 'Default - Username':
|
36 |
$wppb_generalSettings = get_option( 'wppb_general_settings', 'not_found' );
|
37 |
if ( $wppb_generalSettings != 'not_found' && $wppb_generalSettings['loginWith'] == 'email' ) {
|
38 |
-
$form .= '<div id="wppb-login-email-nag" class="wppb-backend-notice">' . sprintf(__('Login is set to be done using the
|
39 |
}
|
40 |
break;
|
41 |
case 'Default - Display name publicly as':
|
35 |
case 'Default - Username':
|
36 |
$wppb_generalSettings = get_option( 'wppb_general_settings', 'not_found' );
|
37 |
if ( $wppb_generalSettings != 'not_found' && $wppb_generalSettings['loginWith'] == 'email' ) {
|
38 |
+
$form .= '<div id="wppb-login-email-nag" class="wppb-backend-notice">' . sprintf(__('Login is set to be done using the Email. This field will NOT appear in the front-end! ( you can change these settings under the "%s" tab )', 'profile-builder'), '<a href="' . admin_url('admin.php?page=profile-builder-general-settings') . '" target="_blank">' . __('General Settings', 'profile-builder') . '</a>') . '</div>';
|
39 |
}
|
40 |
break;
|
41 |
case 'Default - Display name publicly as':
|
admin/manage-fields.php
CHANGED
@@ -1416,6 +1416,8 @@ function wppb_wpml_compat_with_fields( $oldvalue, $_newvalue ){
|
|
1416 |
icl_register_string('plugin profile-builder-pro', $prefix . $field['id'].'_default_value_translation', $field['default-value'] );
|
1417 |
if( !empty( $field['default-content'] ) )
|
1418 |
icl_register_string('plugin profile-builder-pro', $prefix . $field['id'].'_default_content_translation', $field['default-content'] );
|
|
|
|
|
1419 |
}
|
1420 |
}
|
1421 |
}
|
1416 |
icl_register_string('plugin profile-builder-pro', $prefix . $field['id'].'_default_value_translation', $field['default-value'] );
|
1417 |
if( !empty( $field['default-content'] ) )
|
1418 |
icl_register_string('plugin profile-builder-pro', $prefix . $field['id'].'_default_content_translation', $field['default-content'] );
|
1419 |
+
if( !empty( $field['html-content'] ) )
|
1420 |
+
icl_register_string('plugin profile-builder-pro', $prefix . $field['id'].'_html_content_translation', $field['html-content'] );
|
1421 |
}
|
1422 |
}
|
1423 |
}
|
assets/misc/plugin-compatibilities.php
CHANGED
@@ -359,4 +359,13 @@
|
|
359 |
return $metadata;
|
360 |
|
361 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
362 |
}
|
359 |
return $metadata;
|
360 |
|
361 |
}
|
362 |
+
}
|
363 |
+
|
364 |
+
|
365 |
+
/****************************************************
|
366 |
+
* Plugin Name: xCRUD
|
367 |
+
* Compatibility in terms of preventing jQuery to be loaded twice
|
368 |
+
****************************************************/
|
369 |
+
if ( class_exists( 'Xcrud_config' ) ){
|
370 |
+
Xcrud_config::$load_jquery = apply_filters( 'wppb_xcrud_jquery_compatibility', false );
|
371 |
}
|
features/email-confirmation/class-email-confirmation.php
CHANGED
@@ -166,7 +166,7 @@ class wpp_list_unfonfirmed_email_table extends PB_WP_List_Table {
|
|
166 |
$columns = array(
|
167 |
'cb' => '<input type="checkbox" />', //Render a checkbox instead of text
|
168 |
'username' => __( 'Username', 'profile-builder' ),
|
169 |
-
'email' => __( '
|
170 |
'registered' => __( 'Registered', 'profile-builder' ),
|
171 |
'user-meta' => __( 'User Meta', 'profile-builder' )
|
172 |
);
|
166 |
$columns = array(
|
167 |
'cb' => '<input type="checkbox" />', //Render a checkbox instead of text
|
168 |
'username' => __( 'Username', 'profile-builder' ),
|
169 |
+
'email' => __( 'Email', 'profile-builder' ),
|
170 |
'registered' => __( 'Registered', 'profile-builder' ),
|
171 |
'user-meta' => __( 'User Meta', 'profile-builder' )
|
172 |
);
|
features/email-confirmation/email-confirmation.php
CHANGED
@@ -526,7 +526,7 @@ function wppb_notify_user_registration_email( $bloginfo, $user_name, $email, $se
|
|
526 |
$message_subject = '['.$message_from.'] '.__( 'A new subscriber has (been) registered!', 'profile-builder' );
|
527 |
$message_subject = apply_filters ('wppb_register_admin_email_subject_without_admin_approval', $message_subject, $email, $password, $message_from, 'wppb_admin_emailc_default_registration_email_subject' );
|
528 |
|
529 |
-
$message_content = sprintf( __( 'New subscriber on %1$s.<br/><br/>Username:%2$s<br/>
|
530 |
|
531 |
$message_context = 'email_admin_new_subscriber';
|
532 |
|
526 |
$message_subject = '['.$message_from.'] '.__( 'A new subscriber has (been) registered!', 'profile-builder' );
|
527 |
$message_subject = apply_filters ('wppb_register_admin_email_subject_without_admin_approval', $message_subject, $email, $password, $message_from, 'wppb_admin_emailc_default_registration_email_subject' );
|
528 |
|
529 |
+
$message_content = sprintf( __( 'New subscriber on %1$s.<br/><br/>Username:%2$s<br/>Email:%3$s<br/>', 'profile-builder'), $message_from, $user_name, $email );
|
530 |
|
531 |
$message_context = 'email_admin_new_subscriber';
|
532 |
|
features/functions.php
CHANGED
@@ -1593,4 +1593,24 @@ function wppb_conditional_fields_exists(){
|
|
1593 |
return true;
|
1594 |
else
|
1595 |
return false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1596 |
}
|
1593 |
return true;
|
1594 |
else
|
1595 |
return false;
|
1596 |
+
}
|
1597 |
+
|
1598 |
+
/**
|
1599 |
+
* Add support for [wppb-embed] shortcode inside userlisting as the default [embed] is weird and doesn't work outside the_content
|
1600 |
+
*/
|
1601 |
+
add_shortcode('wppb-embed', 'wppb_embed');
|
1602 |
+
function wppb_embed($atts, $content){
|
1603 |
+
$atts = shortcode_atts( array(
|
1604 |
+
'width' => '',
|
1605 |
+
'height' => ''
|
1606 |
+
), $atts, 'wppb-embed' );
|
1607 |
+
|
1608 |
+
global $wp_embed;
|
1609 |
+
if(empty($atts['width']) || empty($atts['height'])){
|
1610 |
+
$content = $wp_embed->run_shortcode('[embed]'.$content.'[/embed]');
|
1611 |
+
} else {
|
1612 |
+
$content = $wp_embed->run_shortcode('[embed width="'.$atts['width'].'" height="'.$atts['height'].'"]'.$content.'[/embed]');
|
1613 |
+
}
|
1614 |
+
|
1615 |
+
return $content;
|
1616 |
}
|
front-end/class-formbuilder.php
CHANGED
@@ -716,7 +716,17 @@ class Profile_Builder_Form_Creator{
|
|
716 |
/* turn it in a select2 */
|
717 |
wp_enqueue_script( 'wppb_select2_js', WPPB_PLUGIN_URL .'assets/js/select2/select2.min.js', array( 'jquery' ), PROFILE_BUILDER_VERSION );
|
718 |
wp_enqueue_style( 'wppb_select2_css', WPPB_PLUGIN_URL .'assets/css/select2/select2.min.css', array(), PROFILE_BUILDER_VERSION );
|
719 |
-
wp_add_inline_script( 'wppb_select2_js', '
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
720 |
?>
|
721 |
<form method="GET" action="" id="select_user_to_edit_form">
|
722 |
<p class="wppb-form-field">
|
716 |
/* turn it in a select2 */
|
717 |
wp_enqueue_script( 'wppb_select2_js', WPPB_PLUGIN_URL .'assets/js/select2/select2.min.js', array( 'jquery' ), PROFILE_BUILDER_VERSION );
|
718 |
wp_enqueue_style( 'wppb_select2_css', WPPB_PLUGIN_URL .'assets/css/select2/select2.min.css', array(), PROFILE_BUILDER_VERSION );
|
719 |
+
wp_add_inline_script( 'wppb_select2_js', '
|
720 |
+
jQuery(".wppb-user-to-edit").change(function () {
|
721 |
+
window.location.href = jQuery(this).val();
|
722 |
+
});
|
723 |
+
jQuery(function(){
|
724 |
+
jQuery(".wppb-user-to-edit").select2().on("select2:open", function(){
|
725 |
+
if( jQuery(".wppb-user-to-edit").parents( ".overlay-container" ).length ){
|
726 |
+
jQuery(".wppb-user-to-edit").data("select2").dropdown.$dropdownContainer.css( "z-index", "99999999" );
|
727 |
+
}
|
728 |
+
});
|
729 |
+
})' );
|
730 |
?>
|
731 |
<form method="GET" action="" id="select_user_to_edit_form">
|
732 |
<p class="wppb-form-field">
|
front-end/default-fields/user-role/user-role.php
CHANGED
@@ -27,7 +27,7 @@ function wppb_user_role_handler( $output, $form_location, $field, $user_id, $fie
|
|
27 |
$user_data = get_userdata( $user_id );
|
28 |
|
29 |
if( ! empty( $user_data->roles ) ) {
|
30 |
-
$user_role = $user_data->roles
|
31 |
$user_roles = $user_data->roles;
|
32 |
}
|
33 |
|
27 |
$user_data = get_userdata( $user_id );
|
28 |
|
29 |
if( ! empty( $user_data->roles ) ) {
|
30 |
+
$user_role = reset( $user_data->roles );
|
31 |
$user_roles = $user_data->roles;
|
32 |
}
|
33 |
|
front-end/recover.php
CHANGED
@@ -116,7 +116,7 @@ function wppb_create_recover_password_form( $user, $post_data ){
|
|
116 |
|
117 |
if( !empty( $wppb_generalSettings['loginWith'] ) && $wppb_generalSettings['loginWith'] == 'email' ){
|
118 |
$recover_notification = '<p>' . __( 'Please enter your email address.', 'profile-builder' );
|
119 |
-
$username_email_label = __( '
|
120 |
}
|
121 |
else{
|
122 |
$recover_notification = '<p>' . __( 'Please enter your username or email address.', 'profile-builder' );
|
@@ -295,7 +295,7 @@ function wppb_front_end_password_recovery(){
|
|
295 |
if ($warning != ''){
|
296 |
$output .= wppb_password_recovery_warning( $warning, 'wppb_recover_password_displayed_message1' );
|
297 |
}else{
|
298 |
-
$success = sprintf( __( 'Check your
|
299 |
$success = apply_filters( 'wppb_recover_password_sent_message1', $success, $username_email );
|
300 |
|
301 |
if ( $success != 'wppb_recaptcha_error')
|
116 |
|
117 |
if( !empty( $wppb_generalSettings['loginWith'] ) && $wppb_generalSettings['loginWith'] == 'email' ){
|
118 |
$recover_notification = '<p>' . __( 'Please enter your email address.', 'profile-builder' );
|
119 |
+
$username_email_label = __( 'Email', 'profile-builder' );
|
120 |
}
|
121 |
else{
|
122 |
$recover_notification = '<p>' . __( 'Please enter your username or email address.', 'profile-builder' );
|
295 |
if ($warning != ''){
|
296 |
$output .= wppb_password_recovery_warning( $warning, 'wppb_recover_password_displayed_message1' );
|
297 |
}else{
|
298 |
+
$success = sprintf( __( 'Check your email for the confirmation link.', 'profile-builder'), $username_email );
|
299 |
$success = apply_filters( 'wppb_recover_password_sent_message1', $success, $username_email );
|
300 |
|
301 |
if ( $success != 'wppb_recaptcha_error')
|
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.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.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.2
|
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.2' );
|
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.3
|
7 |
-
Stable tag: 3.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -167,6 +167,11 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
167 |
12. Role Editor
|
168 |
|
169 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
170 |
= 3.3.1 =
|
171 |
* Fixed a possible warning regarding user deletions and Email Confirmation
|
172 |
* Fixed dynamic redirect bug when private website is enabled
|
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.3
|
7 |
+
Stable tag: 3.3.2
|
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.2 =
|
171 |
+
* Fixed a PHP 'undefined offset 0' notice.
|
172 |
+
* Fixed xCrud compatibility issue
|
173 |
+
* Replaced e-mail string with email.
|
174 |
+
|
175 |
= 3.3.1 =
|
176 |
* Fixed a possible warning regarding user deletions and Email Confirmation
|
177 |
* Fixed dynamic redirect bug when private website is enabled
|
translation/profile-builder.catalog.php
CHANGED
@@ -279,7 +279,7 @@
|
|
279 |
<?php __("Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce.", "profile-builder"); ?>
|
280 |
<?php __("%s is also activated. You need to deactivate it before activating this version of the plugin.", "profile-builder"); ?>
|
281 |
<?php __("Communication Preferences", "profile-builder"); ?>
|
282 |
-
<?php __("
|
283 |
<?php __("Telephone", "profile-builder"); ?>
|
284 |
<?php __("SMS", "profile-builder"); ?>
|
285 |
<?php __("Post", "profile-builder"); ?>
|
@@ -313,7 +313,7 @@
|
|
313 |
<?php __("Associate each MailChimp group with a Profile Builder field", "profile-builder"); ?>
|
314 |
<?php __("Extra Options:", "profile-builder"); ?>
|
315 |
<?php __("Double Opt-In", "profile-builder"); ?>
|
316 |
-
<?php __("If you select double opt-in, the user will receive an
|
317 |
<?php __("Enable GDPR", "profile-builder"); ?>
|
318 |
<?php __("If checked will enable GDPR on this list. <a href=\"%s\" target=\"_blank\">You must also enable GDPR on the list from mailchimp</a>", "profile-builder"); ?>
|
319 |
<?php __("Something went wrong. Either the API key is invalid or we could not connect to MailChimp to validate the key.", "profile-builder"); ?>
|
@@ -399,7 +399,7 @@
|
|
399 |
<?php __("Default", "profile-builder"); ?>
|
400 |
<?php __("Show", "profile-builder"); ?>
|
401 |
<?php __("Hide", "profile-builder"); ?>
|
402 |
-
<?php __("Login is set to be done using the
|
403 |
<?php __("Display name publicly as - only appears on the Edit Profile page!", "profile-builder"); ?>
|
404 |
<?php __("Blog Details - only appears on the Registration page!", "profile-builder"); ?>
|
405 |
<?php __("<strong>ERROR</strong>: The password must have the minimum length of %s characters", "profile-builder"); ?>
|
@@ -528,7 +528,6 @@
|
|
528 |
<?php __("Allow Users to Log in With:", "profile-builder"); ?>
|
529 |
<?php __("Username and Email", "profile-builder"); ?>
|
530 |
<?php __("Username", "profile-builder"); ?>
|
531 |
-
<?php __("Email", "profile-builder"); ?>
|
532 |
<?php __("\"Username and Email\" - users can Log In with both Username and Email.", "profile-builder"); ?>
|
533 |
<?php __("\"Username\" - users can Log In only with Username.", "profile-builder"); ?>
|
534 |
<?php __("\"Email\" - users can Log In only with Email.", "profile-builder"); ?>
|
@@ -655,6 +654,7 @@
|
|
655 |
<?php __("Usernames cannot be changed.", "profile-builder"); ?>
|
656 |
<?php __("Nickname", "profile-builder"); ?>
|
657 |
<?php __("Display name publicly as", "profile-builder"); ?>
|
|
|
658 |
<?php __("Website", "profile-builder"); ?>
|
659 |
<?php __("AIM", "profile-builder"); ?>
|
660 |
<?php __("Yahoo IM", "profile-builder"); ?>
|
@@ -1174,7 +1174,7 @@
|
|
1174 |
<?php __("Please check that you entered the correct username.", "profile-builder"); ?>
|
1175 |
<?php __("The email address entered wasn't found in the database!", "profile-builder"); ?>
|
1176 |
<?php __("Please check that you entered the correct email address.", "profile-builder"); ?>
|
1177 |
-
<?php __("Check your
|
1178 |
<?php __("There was an error while trying to send the activation link to %1$s!", "profile-builder"); ?>
|
1179 |
<?php __("ERROR:", "profile-builder"); ?>
|
1180 |
<?php __("Invalid activation key!", "profile-builder"); ?>
|
@@ -1395,7 +1395,7 @@
|
|
1395 |
<?php __("There was an error while trying to activate the user", "profile-builder"); ?>
|
1396 |
<?php __("That username is already activated!", "profile-builder"); ?>
|
1397 |
<?php __("A new subscriber has (been) registered!", "profile-builder"); ?>
|
1398 |
-
<?php __("New subscriber on %1$s.<br/><br/>Username:%2$s<br/>
|
1399 |
<?php __("[%1$s] Your new account information", "profile-builder"); ?>
|
1400 |
<?php __("Your selected password at signup", "profile-builder"); ?>
|
1401 |
<?php __("Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and the password: %3$s.<br/><br/>Access your account: %4$s ", "profile-builder"); ?>
|
@@ -1483,11 +1483,11 @@
|
|
1483 |
<?php __("From (reply-to email)", "profile-builder"); ?>
|
1484 |
<?php __("Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email", "profile-builder"); ?>
|
1485 |
<?php __("Common Settings", "profile-builder"); ?>
|
1486 |
-
<?php __("<p>New subscriber on {{site_name}}.</p>\n<p>Username:{{username}}</p>\n<p>
|
1487 |
<?php __("Email Subject", "profile-builder"); ?>
|
1488 |
<?php __("Enable email", "profile-builder"); ?>
|
1489 |
<?php __("Default Registration & Registration with Email Confirmation", "profile-builder"); ?>
|
1490 |
-
<?php __("<p>New subscriber on {{site_name}}.</p>\n<p>Username:{{username}}</p>\n<p>
|
1491 |
<?php __("Registration with Admin Approval", "profile-builder"); ?>
|
1492 |
<?php __("<p>{{username}} has requested a password change via the password reset feature.</p>\n", "profile-builder"); ?>
|
1493 |
<?php __("Admin Notification for User Password Reset", "profile-builder"); ?>
|
279 |
<?php __("Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce.", "profile-builder"); ?>
|
280 |
<?php __("%s is also activated. You need to deactivate it before activating this version of the plugin.", "profile-builder"); ?>
|
281 |
<?php __("Communication Preferences", "profile-builder"); ?>
|
282 |
+
<?php __("Email", "profile-builder"); ?>
|
283 |
<?php __("Telephone", "profile-builder"); ?>
|
284 |
<?php __("SMS", "profile-builder"); ?>
|
285 |
<?php __("Post", "profile-builder"); ?>
|
313 |
<?php __("Associate each MailChimp group with a Profile Builder field", "profile-builder"); ?>
|
314 |
<?php __("Extra Options:", "profile-builder"); ?>
|
315 |
<?php __("Double Opt-In", "profile-builder"); ?>
|
316 |
+
<?php __("If you select double opt-in, the user will receive an email to confirm the subscription", "profile-builder"); ?>
|
317 |
<?php __("Enable GDPR", "profile-builder"); ?>
|
318 |
<?php __("If checked will enable GDPR on this list. <a href=\"%s\" target=\"_blank\">You must also enable GDPR on the list from mailchimp</a>", "profile-builder"); ?>
|
319 |
<?php __("Something went wrong. Either the API key is invalid or we could not connect to MailChimp to validate the key.", "profile-builder"); ?>
|
399 |
<?php __("Default", "profile-builder"); ?>
|
400 |
<?php __("Show", "profile-builder"); ?>
|
401 |
<?php __("Hide", "profile-builder"); ?>
|
402 |
+
<?php __("Login is set to be done using the Email. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )", "profile-builder"); ?>
|
403 |
<?php __("Display name publicly as - only appears on the Edit Profile page!", "profile-builder"); ?>
|
404 |
<?php __("Blog Details - only appears on the Registration page!", "profile-builder"); ?>
|
405 |
<?php __("<strong>ERROR</strong>: The password must have the minimum length of %s characters", "profile-builder"); ?>
|
528 |
<?php __("Allow Users to Log in With:", "profile-builder"); ?>
|
529 |
<?php __("Username and Email", "profile-builder"); ?>
|
530 |
<?php __("Username", "profile-builder"); ?>
|
|
|
531 |
<?php __("\"Username and Email\" - users can Log In with both Username and Email.", "profile-builder"); ?>
|
532 |
<?php __("\"Username\" - users can Log In only with Username.", "profile-builder"); ?>
|
533 |
<?php __("\"Email\" - users can Log In only with Email.", "profile-builder"); ?>
|
654 |
<?php __("Usernames cannot be changed.", "profile-builder"); ?>
|
655 |
<?php __("Nickname", "profile-builder"); ?>
|
656 |
<?php __("Display name publicly as", "profile-builder"); ?>
|
657 |
+
<?php __("E-mail", "profile-builder"); ?>
|
658 |
<?php __("Website", "profile-builder"); ?>
|
659 |
<?php __("AIM", "profile-builder"); ?>
|
660 |
<?php __("Yahoo IM", "profile-builder"); ?>
|
1174 |
<?php __("Please check that you entered the correct username.", "profile-builder"); ?>
|
1175 |
<?php __("The email address entered wasn't found in the database!", "profile-builder"); ?>
|
1176 |
<?php __("Please check that you entered the correct email address.", "profile-builder"); ?>
|
1177 |
+
<?php __("Check your email for the confirmation link.", "profile-builder"); ?>
|
1178 |
<?php __("There was an error while trying to send the activation link to %1$s!", "profile-builder"); ?>
|
1179 |
<?php __("ERROR:", "profile-builder"); ?>
|
1180 |
<?php __("Invalid activation key!", "profile-builder"); ?>
|
1395 |
<?php __("There was an error while trying to activate the user", "profile-builder"); ?>
|
1396 |
<?php __("That username is already activated!", "profile-builder"); ?>
|
1397 |
<?php __("A new subscriber has (been) registered!", "profile-builder"); ?>
|
1398 |
+
<?php __("New subscriber on %1$s.<br/><br/>Username:%2$s<br/>Email:%3$s<br/>", "profile-builder"); ?>
|
1399 |
<?php __("[%1$s] Your new account information", "profile-builder"); ?>
|
1400 |
<?php __("Your selected password at signup", "profile-builder"); ?>
|
1401 |
<?php __("Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and the password: %3$s.<br/><br/>Access your account: %4$s ", "profile-builder"); ?>
|
1483 |
<?php __("From (reply-to email)", "profile-builder"); ?>
|
1484 |
<?php __("Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email", "profile-builder"); ?>
|
1485 |
<?php __("Common Settings", "profile-builder"); ?>
|
1486 |
+
<?php __("<p>New subscriber on {{site_name}}.</p>\n<p>Username:{{username}}</p>\n<p>Email:{{user_email}}</p>\n", "profile-builder"); ?>
|
1487 |
<?php __("Email Subject", "profile-builder"); ?>
|
1488 |
<?php __("Enable email", "profile-builder"); ?>
|
1489 |
<?php __("Default Registration & Registration with Email Confirmation", "profile-builder"); ?>
|
1490 |
+
<?php __("<p>New subscriber on {{site_name}}.</p>\n<p>Username:{{username}}</p>\n<p>Email:{{user_email}}</p>\n<p>The Admin Approval feature was activated at the time of registration,\nso please remember that you need to approve this user before he/she can log in!</p>", "profile-builder"); ?>
|
1491 |
<?php __("Registration with Admin Approval", "profile-builder"); ?>
|
1492 |
<?php __("<p>{{username}} has requested a password change via the password reset feature.</p>\n", "profile-builder"); ?>
|
1493 |
<?php __("Admin Notification for User Password Reset", "profile-builder"); ?>
|
translation/profile-builder.pot
CHANGED
@@ -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: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/manage-fields.php:185, 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-admin.php:50, ../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:
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
@@ -1135,8 +1135,8 @@ msgstr ""
|
|
1135 |
msgid "Communication Preferences"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29, ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:9, admin/
|
1139 |
-
msgid "
|
1140 |
msgstr ""
|
1141 |
|
1142 |
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29, ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:9
|
@@ -1272,7 +1272,7 @@ msgid "Double Opt-In"
|
|
1272 |
msgstr ""
|
1273 |
|
1274 |
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:367, ../pb-add-on-mailchimp-integration/admin/widget.php:230
|
1275 |
-
msgid "If you select double opt-in, the user will receive an
|
1276 |
msgstr ""
|
1277 |
|
1278 |
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:382, ../pb-add-on-mailchimp-integration/admin/widget.php:241
|
@@ -1620,7 +1620,7 @@ msgid "Hide"
|
|
1620 |
msgstr ""
|
1621 |
|
1622 |
#: admin/admin-functions.php:38
|
1623 |
-
msgid "Login is set to be done using the
|
1624 |
msgstr ""
|
1625 |
|
1626 |
#: admin/admin-functions.php:42
|
@@ -2131,14 +2131,10 @@ msgstr ""
|
|
2131 |
msgid "Username and Email"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: admin/general-settings.php:267, admin/manage-fields.php:320, 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:
|
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 |
-
|
2142 |
#: admin/general-settings.php:271
|
2143 |
msgid "\"Username and Email\" - users can Log In with both Username and Email."
|
2144 |
msgstr ""
|
@@ -2635,7 +2631,7 @@ msgstr ""
|
|
2635 |
msgid "Usernames cannot be changed."
|
2636 |
msgstr ""
|
2637 |
|
2638 |
-
#: admin/manage-fields.php:323, modules/user-listing/userlisting.php:846, modules/user-listing/userlisting.php:
|
2639 |
msgid "Nickname"
|
2640 |
msgstr ""
|
2641 |
|
@@ -2643,7 +2639,11 @@ msgstr ""
|
|
2643 |
msgid "Display name publicly as"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
-
#: admin/manage-fields.php:
|
|
|
|
|
|
|
|
|
2647 |
msgid "Website"
|
2648 |
msgstr ""
|
2649 |
|
@@ -2659,7 +2659,7 @@ msgstr ""
|
|
2659 |
msgid "Jabber / Google Talk"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
-
#: admin/manage-fields.php:337, modules/user-listing/userlisting.php:124, modules/user-listing/userlisting.php:831, modules/user-listing/userlisting.php:
|
2663 |
msgid "Biographical Info"
|
2664 |
msgstr ""
|
2665 |
|
@@ -4267,7 +4267,7 @@ msgstr ""
|
|
4267 |
msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
|
4268 |
msgstr ""
|
4269 |
|
4270 |
-
#: admin/manage-fields.php:
|
4271 |
msgid "Search Location"
|
4272 |
msgstr ""
|
4273 |
|
@@ -4756,7 +4756,7 @@ msgid "Please check that you entered the correct email address."
|
|
4756 |
msgstr ""
|
4757 |
|
4758 |
#: front-end/recover.php:298
|
4759 |
-
msgid "Check your
|
4760 |
msgstr ""
|
4761 |
|
4762 |
#: front-end/recover.php:312
|
@@ -5315,15 +5315,15 @@ msgstr ""
|
|
5315 |
msgid "Unapprove"
|
5316 |
msgstr ""
|
5317 |
|
5318 |
-
#: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:313, modules/user-listing/userlisting.php:819, modules/user-listing/userlisting.php:
|
5319 |
msgid "Firstname"
|
5320 |
msgstr ""
|
5321 |
|
5322 |
-
#: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:822, modules/user-listing/userlisting.php:
|
5323 |
msgid "Lastname"
|
5324 |
msgstr ""
|
5325 |
|
5326 |
-
#: features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:256, modules/user-listing/userlisting.php:160, modules/user-listing/userlisting.php:314, modules/user-listing/userlisting.php:849, modules/user-listing/userlisting.php:
|
5327 |
msgid "Role"
|
5328 |
msgstr ""
|
5329 |
|
@@ -5640,7 +5640,7 @@ msgid "A new subscriber has (been) registered!"
|
|
5640 |
msgstr ""
|
5641 |
|
5642 |
#: features/email-confirmation/email-confirmation.php:529
|
5643 |
-
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>
|
5644 |
msgstr ""
|
5645 |
|
5646 |
#: features/email-confirmation/email-confirmation.php:580
|
@@ -5995,7 +5995,7 @@ msgstr ""
|
|
5995 |
msgid ""
|
5996 |
"<p>New subscriber on {{site_name}}.</p>\n"
|
5997 |
"<p>Username:{{username}}</p>\n"
|
5998 |
-
"<p>
|
5999 |
""
|
6000 |
msgstr ""
|
6001 |
|
@@ -6015,7 +6015,7 @@ msgstr ""
|
|
6015 |
msgid ""
|
6016 |
"<p>New subscriber on {{site_name}}.</p>\n"
|
6017 |
"<p>Username:{{username}}</p>\n"
|
6018 |
-
"<p>
|
6019 |
"<p>The Admin Approval feature was activated at the time of registration,\n"
|
6020 |
"so please remember that you need to approve this user before he/she can log in!</p>"
|
6021 |
msgstr ""
|
@@ -6321,27 +6321,27 @@ msgstr ""
|
|
6321 |
msgid "No Edit-profile Forms found in trash"
|
6322 |
msgstr ""
|
6323 |
|
6324 |
-
#: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:
|
6325 |
msgid "Shortcode"
|
6326 |
msgstr ""
|
6327 |
|
6328 |
-
#: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:
|
6329 |
msgid "(no title)"
|
6330 |
msgstr ""
|
6331 |
|
6332 |
-
#: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:
|
6333 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6334 |
msgstr ""
|
6335 |
|
6336 |
-
#: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:
|
6337 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6338 |
msgstr ""
|
6339 |
|
6340 |
-
#: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:
|
6341 |
msgid "The shortcode will be available after you publish this form."
|
6342 |
msgstr ""
|
6343 |
|
6344 |
-
#: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:
|
6345 |
msgid "Form Shortcode"
|
6346 |
msgstr ""
|
6347 |
|
@@ -6497,11 +6497,11 @@ msgstr ""
|
|
6497 |
msgid "Display name as"
|
6498 |
msgstr ""
|
6499 |
|
6500 |
-
#: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:
|
6501 |
msgid "Registration Date"
|
6502 |
msgstr ""
|
6503 |
|
6504 |
-
#: modules/user-listing/userlisting.php:163, modules/user-listing/userlisting.php:
|
6505 |
msgid "Number of Posts"
|
6506 |
msgstr ""
|
6507 |
|
@@ -6537,7 +6537,7 @@ msgstr ""
|
|
6537 |
msgid "Search all Fields"
|
6538 |
msgstr ""
|
6539 |
|
6540 |
-
#: modules/user-listing/userlisting.php:228, modules/user-listing/userlisting.php:
|
6541 |
msgid "Faceted Menus"
|
6542 |
msgstr ""
|
6543 |
|
@@ -6589,19 +6589,19 @@ msgstr ""
|
|
6589 |
msgid "User not found"
|
6590 |
msgstr ""
|
6591 |
|
6592 |
-
#: modules/user-listing/userlisting.php:843, modules/user-listing/userlisting.php:
|
6593 |
msgid "Jabber"
|
6594 |
msgstr ""
|
6595 |
|
6596 |
-
#: modules/user-listing/userlisting.php:840, modules/user-listing/userlisting.php:
|
6597 |
msgid "Yim"
|
6598 |
msgstr ""
|
6599 |
|
6600 |
-
#: modules/user-listing/userlisting.php:837, modules/user-listing/userlisting.php:
|
6601 |
msgid "Aim"
|
6602 |
msgstr ""
|
6603 |
|
6604 |
-
#: modules/user-listing/userlisting.php:825, modules/user-listing/userlisting.php:
|
6605 |
msgid "Display Name"
|
6606 |
msgstr ""
|
6607 |
|
@@ -6609,7 +6609,7 @@ msgstr ""
|
|
6609 |
msgid "First/Lastname"
|
6610 |
msgstr ""
|
6611 |
|
6612 |
-
#: modules/user-listing/userlisting.php:1130, modules/user-listing/userlisting.php:1611, modules/user-listing/userlisting.php:
|
6613 |
msgid "Search Users by All Fields"
|
6614 |
msgstr ""
|
6615 |
|
@@ -6661,203 +6661,203 @@ msgstr ""
|
|
6661 |
msgid "Show All"
|
6662 |
msgstr ""
|
6663 |
|
6664 |
-
#: modules/user-listing/userlisting.php:
|
6665 |
msgid "Choose..."
|
6666 |
msgstr ""
|
6667 |
|
6668 |
-
#: modules/user-listing/userlisting.php:
|
6669 |
msgid "No options available"
|
6670 |
msgstr ""
|
6671 |
|
6672 |
-
#: modules/user-listing/userlisting.php:
|
6673 |
msgid "Remove All Filters"
|
6674 |
msgstr ""
|
6675 |
|
6676 |
-
#: modules/user-listing/userlisting.php:
|
6677 |
msgid "Search"
|
6678 |
msgstr ""
|
6679 |
|
6680 |
-
#: modules/user-listing/userlisting.php:
|
6681 |
msgid "Clear Results"
|
6682 |
msgstr ""
|
6683 |
|
6684 |
-
#: modules/user-listing/userlisting.php:
|
6685 |
msgid "Extra shortcode parameters"
|
6686 |
msgstr ""
|
6687 |
|
6688 |
-
#: modules/user-listing/userlisting.php:
|
6689 |
msgid "View all extra shortcode parameters"
|
6690 |
msgstr ""
|
6691 |
|
6692 |
-
#: modules/user-listing/userlisting.php:
|
6693 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6694 |
msgstr ""
|
6695 |
|
6696 |
-
#: modules/user-listing/userlisting.php:
|
6697 |
msgid "Example:"
|
6698 |
msgstr ""
|
6699 |
|
6700 |
-
#: modules/user-listing/userlisting.php:
|
6701 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6702 |
msgstr ""
|
6703 |
|
6704 |
-
#: modules/user-listing/userlisting.php:
|
6705 |
msgid "displays only the users that you specified the user_id for"
|
6706 |
msgstr ""
|
6707 |
|
6708 |
-
#: modules/user-listing/userlisting.php:
|
6709 |
msgid "displays all users except the ones you specified the user_id for"
|
6710 |
msgstr ""
|
6711 |
|
6712 |
-
#: modules/user-listing/userlisting.php:
|
6713 |
msgid "Random (very slow on large databases > 10K user)"
|
6714 |
msgstr ""
|
6715 |
|
6716 |
-
#: modules/user-listing/userlisting.php:
|
6717 |
msgid "Ascending"
|
6718 |
msgstr ""
|
6719 |
|
6720 |
-
#: modules/user-listing/userlisting.php:
|
6721 |
msgid "Descending"
|
6722 |
msgstr ""
|
6723 |
|
6724 |
-
#: modules/user-listing/userlisting.php:
|
6725 |
msgid "Roles to Display"
|
6726 |
msgstr ""
|
6727 |
|
6728 |
-
#: modules/user-listing/userlisting.php:
|
6729 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6730 |
msgstr ""
|
6731 |
|
6732 |
-
#: modules/user-listing/userlisting.php:
|
6733 |
msgid "Number of Users/Page"
|
6734 |
msgstr ""
|
6735 |
|
6736 |
-
#: modules/user-listing/userlisting.php:
|
6737 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6738 |
msgstr ""
|
6739 |
|
6740 |
-
#: modules/user-listing/userlisting.php:
|
6741 |
msgid "Default Sorting Criteria"
|
6742 |
msgstr ""
|
6743 |
|
6744 |
-
#: modules/user-listing/userlisting.php:
|
6745 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6746 |
msgstr ""
|
6747 |
|
6748 |
-
#: modules/user-listing/userlisting.php:
|
6749 |
msgid "Default Sorting Order"
|
6750 |
msgstr ""
|
6751 |
|
6752 |
-
#: modules/user-listing/userlisting.php:
|
6753 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6754 |
msgstr ""
|
6755 |
|
6756 |
-
#: modules/user-listing/userlisting.php:
|
6757 |
msgid "Avatar Size (All-userlisting)"
|
6758 |
msgstr ""
|
6759 |
|
6760 |
-
#: modules/user-listing/userlisting.php:
|
6761 |
msgid "Set the avatar size on the all-userlisting only"
|
6762 |
msgstr ""
|
6763 |
|
6764 |
-
#: modules/user-listing/userlisting.php:
|
6765 |
msgid "Avatar Size (Single-userlisting)"
|
6766 |
msgstr ""
|
6767 |
|
6768 |
-
#: modules/user-listing/userlisting.php:
|
6769 |
msgid "Set the avatar size on the single-userlisting only"
|
6770 |
msgstr ""
|
6771 |
|
6772 |
-
#: modules/user-listing/userlisting.php:
|
6773 |
msgid "Visible only to logged in users?"
|
6774 |
msgstr ""
|
6775 |
|
6776 |
-
#: modules/user-listing/userlisting.php:
|
6777 |
msgid "The userlisting will only be visible only to the logged in users"
|
6778 |
msgstr ""
|
6779 |
|
6780 |
-
#: modules/user-listing/userlisting.php:
|
6781 |
msgid "Visible to following Roles"
|
6782 |
msgstr ""
|
6783 |
|
6784 |
-
#: modules/user-listing/userlisting.php:
|
6785 |
msgid "The userlisting will only be visible to the following roles"
|
6786 |
msgstr ""
|
6787 |
|
6788 |
-
#: modules/user-listing/userlisting.php:
|
6789 |
msgid "Userlisting Settings"
|
6790 |
msgstr ""
|
6791 |
|
6792 |
-
#: modules/user-listing/userlisting.php:
|
6793 |
msgid "Label"
|
6794 |
msgstr ""
|
6795 |
|
6796 |
-
#: modules/user-listing/userlisting.php:
|
6797 |
msgid "Choose the facet name that appears on the frontend"
|
6798 |
msgstr ""
|
6799 |
|
6800 |
-
#: modules/user-listing/userlisting.php:
|
6801 |
msgid "Facet Type"
|
6802 |
msgstr ""
|
6803 |
|
6804 |
-
#: modules/user-listing/userlisting.php:
|
6805 |
msgid "Choose the facet menu type"
|
6806 |
msgstr ""
|
6807 |
|
6808 |
-
#: modules/user-listing/userlisting.php:
|
6809 |
msgid "Facet Meta"
|
6810 |
msgstr ""
|
6811 |
|
6812 |
-
#: modules/user-listing/userlisting.php:
|
6813 |
msgid "Choose the meta field for the facet menu. If you want to use a repeater meta or a meta outisde Profile Builder just type the value and press enter."
|
6814 |
msgstr ""
|
6815 |
|
6816 |
-
#: modules/user-listing/userlisting.php:
|
6817 |
msgid "Behaviour"
|
6818 |
msgstr ""
|
6819 |
|
6820 |
-
#: modules/user-listing/userlisting.php:
|
6821 |
msgid "Narrow the results"
|
6822 |
msgstr ""
|
6823 |
|
6824 |
-
#: modules/user-listing/userlisting.php:
|
6825 |
msgid "Expand the results"
|
6826 |
msgstr ""
|
6827 |
|
6828 |
-
#: modules/user-listing/userlisting.php:
|
6829 |
msgid "Choose how multiple selections affect the results"
|
6830 |
msgstr ""
|
6831 |
|
6832 |
-
#: modules/user-listing/userlisting.php:
|
6833 |
msgid "Visible choices"
|
6834 |
msgstr ""
|
6835 |
|
6836 |
-
#: modules/user-listing/userlisting.php:
|
6837 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6838 |
msgstr ""
|
6839 |
|
6840 |
-
#: modules/user-listing/userlisting.php:
|
6841 |
msgid "Search Fields"
|
6842 |
msgstr ""
|
6843 |
|
6844 |
-
#: modules/user-listing/userlisting.php:
|
6845 |
msgid "Choose the fields in which the Search Field will look in"
|
6846 |
msgstr ""
|
6847 |
|
6848 |
-
#: modules/user-listing/userlisting.php:
|
6849 |
msgid "Search Settings"
|
6850 |
msgstr ""
|
6851 |
|
6852 |
-
#: modules/user-listing/userlisting.php:
|
6853 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6854 |
msgstr ""
|
6855 |
|
6856 |
-
#: modules/user-listing/userlisting.php:
|
6857 |
msgid "You can find it in the Profile Builder menu."
|
6858 |
msgstr ""
|
6859 |
|
6860 |
-
#: modules/user-listing/userlisting.php:
|
6861 |
msgid "No results found!"
|
6862 |
msgstr ""
|
6863 |
|
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/manage-fields.php:185, 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-admin.php:50, ../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:2415
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
1135 |
msgid "Communication Preferences"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29, ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:9, admin/general-settings.php:268, front-end/login.php:406, front-end/recover.php:119, ../pb-add-on-customization-toolbox/includes/shortcodes/resend-activation.php:9, features/admin-approval/class-admin-approval.php:169, features/email-confirmation/class-email-confirmation.php:169, modules/email-customizer/email-customizer.php:29, modules/user-listing/userlisting.php:118, modules/user-listing/userlisting.php:813, modules/user-listing/userlisting.php:2370
|
1139 |
+
msgid "Email"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29, ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:9
|
1272 |
msgstr ""
|
1273 |
|
1274 |
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:367, ../pb-add-on-mailchimp-integration/admin/widget.php:230
|
1275 |
+
msgid "If you select double opt-in, the user will receive an email to confirm the subscription"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:382, ../pb-add-on-mailchimp-integration/admin/widget.php:241
|
1620 |
msgstr ""
|
1621 |
|
1622 |
#: admin/admin-functions.php:38
|
1623 |
+
msgid "Login is set to be done using the Email. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
#: admin/admin-functions.php:42
|
2131 |
msgid "Username and Email"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: admin/general-settings.php:267, admin/manage-fields.php:320, 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:2369
|
2135 |
msgid "Username"
|
2136 |
msgstr ""
|
2137 |
|
|
|
|
|
|
|
|
|
2138 |
#: admin/general-settings.php:271
|
2139 |
msgid "\"Username and Email\" - users can Log In with both Username and Email."
|
2140 |
msgstr ""
|
2631 |
msgid "Usernames cannot be changed."
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: admin/manage-fields.php:323, modules/user-listing/userlisting.php:846, modules/user-listing/userlisting.php:2377
|
2635 |
msgid "Nickname"
|
2636 |
msgstr ""
|
2637 |
|
2639 |
msgid "Display name publicly as"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: admin/manage-fields.php:326
|
2643 |
+
msgid "E-mail"
|
2644 |
+
msgstr ""
|
2645 |
+
|
2646 |
+
#: admin/manage-fields.php:327, modules/email-customizer/email-customizer.php:33, modules/user-listing/userlisting.php:121, modules/user-listing/userlisting.php:828, modules/user-listing/userlisting.php:2371
|
2647 |
msgid "Website"
|
2648 |
msgstr ""
|
2649 |
|
2659 |
msgid "Jabber / Google Talk"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: admin/manage-fields.php:337, modules/user-listing/userlisting.php:124, modules/user-listing/userlisting.php:831, modules/user-listing/userlisting.php:2372
|
2663 |
msgid "Biographical Info"
|
2664 |
msgstr ""
|
2665 |
|
4267 |
msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
|
4268 |
msgstr ""
|
4269 |
|
4270 |
+
#: admin/manage-fields.php:1447
|
4271 |
msgid "Search Location"
|
4272 |
msgstr ""
|
4273 |
|
4756 |
msgstr ""
|
4757 |
|
4758 |
#: front-end/recover.php:298
|
4759 |
+
msgid "Check your email for the confirmation link."
|
4760 |
msgstr ""
|
4761 |
|
4762 |
#: front-end/recover.php:312
|
5315 |
msgid "Unapprove"
|
5316 |
msgstr ""
|
5317 |
|
5318 |
+
#: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:313, modules/user-listing/userlisting.php:819, modules/user-listing/userlisting.php:2374
|
5319 |
msgid "Firstname"
|
5320 |
msgstr ""
|
5321 |
|
5322 |
+
#: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:822, modules/user-listing/userlisting.php:2375
|
5323 |
msgid "Lastname"
|
5324 |
msgstr ""
|
5325 |
|
5326 |
+
#: features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:256, modules/user-listing/userlisting.php:160, modules/user-listing/userlisting.php:314, modules/user-listing/userlisting.php:849, modules/user-listing/userlisting.php:2379
|
5327 |
msgid "Role"
|
5328 |
msgstr ""
|
5329 |
|
5640 |
msgstr ""
|
5641 |
|
5642 |
#: features/email-confirmation/email-confirmation.php:529
|
5643 |
+
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>Email:%3$s<br/>"
|
5644 |
msgstr ""
|
5645 |
|
5646 |
#: features/email-confirmation/email-confirmation.php:580
|
5995 |
msgid ""
|
5996 |
"<p>New subscriber on {{site_name}}.</p>\n"
|
5997 |
"<p>Username:{{username}}</p>\n"
|
5998 |
+
"<p>Email:{{user_email}}</p>\n"
|
5999 |
""
|
6000 |
msgstr ""
|
6001 |
|
6015 |
msgid ""
|
6016 |
"<p>New subscriber on {{site_name}}.</p>\n"
|
6017 |
"<p>Username:{{username}}</p>\n"
|
6018 |
+
"<p>Email:{{user_email}}</p>\n"
|
6019 |
"<p>The Admin Approval feature was activated at the time of registration,\n"
|
6020 |
"so please remember that you need to approve this user before he/she can log in!</p>"
|
6021 |
msgstr ""
|
6321 |
msgid "No Edit-profile Forms found in trash"
|
6322 |
msgstr ""
|
6323 |
|
6324 |
+
#: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:2265
|
6325 |
msgid "Shortcode"
|
6326 |
msgstr ""
|
6327 |
|
6328 |
+
#: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:2286
|
6329 |
msgid "(no title)"
|
6330 |
msgstr ""
|
6331 |
|
6332 |
+
#: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:2308
|
6333 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6334 |
msgstr ""
|
6335 |
|
6336 |
+
#: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:2312
|
6337 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6338 |
msgstr ""
|
6339 |
|
6340 |
+
#: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:2306
|
6341 |
msgid "The shortcode will be available after you publish this form."
|
6342 |
msgstr ""
|
6343 |
|
6344 |
+
#: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:2345
|
6345 |
msgid "Form Shortcode"
|
6346 |
msgstr ""
|
6347 |
|
6497 |
msgid "Display name as"
|
6498 |
msgstr ""
|
6499 |
|
6500 |
+
#: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:2373
|
6501 |
msgid "Registration Date"
|
6502 |
msgstr ""
|
6503 |
|
6504 |
+
#: modules/user-listing/userlisting.php:163, modules/user-listing/userlisting.php:2378
|
6505 |
msgid "Number of Posts"
|
6506 |
msgstr ""
|
6507 |
|
6537 |
msgid "Search all Fields"
|
6538 |
msgstr ""
|
6539 |
|
6540 |
+
#: modules/user-listing/userlisting.php:228, modules/user-listing/userlisting.php:2457
|
6541 |
msgid "Faceted Menus"
|
6542 |
msgstr ""
|
6543 |
|
6589 |
msgid "User not found"
|
6590 |
msgstr ""
|
6591 |
|
6592 |
+
#: modules/user-listing/userlisting.php:843, modules/user-listing/userlisting.php:2385
|
6593 |
msgid "Jabber"
|
6594 |
msgstr ""
|
6595 |
|
6596 |
+
#: modules/user-listing/userlisting.php:840, modules/user-listing/userlisting.php:2384
|
6597 |
msgid "Yim"
|
6598 |
msgstr ""
|
6599 |
|
6600 |
+
#: modules/user-listing/userlisting.php:837, modules/user-listing/userlisting.php:2383
|
6601 |
msgid "Aim"
|
6602 |
msgstr ""
|
6603 |
|
6604 |
+
#: modules/user-listing/userlisting.php:825, modules/user-listing/userlisting.php:2376
|
6605 |
msgid "Display Name"
|
6606 |
msgstr ""
|
6607 |
|
6609 |
msgid "First/Lastname"
|
6610 |
msgstr ""
|
6611 |
|
6612 |
+
#: modules/user-listing/userlisting.php:1130, modules/user-listing/userlisting.php:1611, modules/user-listing/userlisting.php:2092, modules/user-listing/userlisting.php:2577
|
6613 |
msgid "Search Users by All Fields"
|
6614 |
msgstr ""
|
6615 |
|
6661 |
msgid "Show All"
|
6662 |
msgstr ""
|
6663 |
|
6664 |
+
#: modules/user-listing/userlisting.php:1755
|
6665 |
msgid "Choose..."
|
6666 |
msgstr ""
|
6667 |
|
6668 |
+
#: modules/user-listing/userlisting.php:1844
|
6669 |
msgid "No options available"
|
6670 |
msgstr ""
|
6671 |
|
6672 |
+
#: modules/user-listing/userlisting.php:1994
|
6673 |
msgid "Remove All Filters"
|
6674 |
msgstr ""
|
6675 |
|
6676 |
+
#: modules/user-listing/userlisting.php:2109
|
6677 |
msgid "Search"
|
6678 |
msgstr ""
|
6679 |
|
6680 |
+
#: modules/user-listing/userlisting.php:2110
|
6681 |
msgid "Clear Results"
|
6682 |
msgstr ""
|
6683 |
|
6684 |
+
#: modules/user-listing/userlisting.php:2315, modules/user-listing/userlisting.php:2319
|
6685 |
msgid "Extra shortcode parameters"
|
6686 |
msgstr ""
|
6687 |
|
6688 |
+
#: modules/user-listing/userlisting.php:2317
|
6689 |
msgid "View all extra shortcode parameters"
|
6690 |
msgstr ""
|
6691 |
|
6692 |
+
#: modules/user-listing/userlisting.php:2322
|
6693 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6694 |
msgstr ""
|
6695 |
|
6696 |
+
#: modules/user-listing/userlisting.php:2323
|
6697 |
msgid "Example:"
|
6698 |
msgstr ""
|
6699 |
|
6700 |
+
#: modules/user-listing/userlisting.php:2325
|
6701 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6702 |
msgstr ""
|
6703 |
|
6704 |
+
#: modules/user-listing/userlisting.php:2331
|
6705 |
msgid "displays only the users that you specified the user_id for"
|
6706 |
msgstr ""
|
6707 |
|
6708 |
+
#: modules/user-listing/userlisting.php:2337
|
6709 |
msgid "displays all users except the ones you specified the user_id for"
|
6710 |
msgstr ""
|
6711 |
|
6712 |
+
#: modules/user-listing/userlisting.php:2400
|
6713 |
msgid "Random (very slow on large databases > 10K user)"
|
6714 |
msgstr ""
|
6715 |
|
6716 |
+
#: modules/user-listing/userlisting.php:2403
|
6717 |
msgid "Ascending"
|
6718 |
msgstr ""
|
6719 |
|
6720 |
+
#: modules/user-listing/userlisting.php:2404
|
6721 |
msgid "Descending"
|
6722 |
msgstr ""
|
6723 |
|
6724 |
+
#: modules/user-listing/userlisting.php:2409
|
6725 |
msgid "Roles to Display"
|
6726 |
msgstr ""
|
6727 |
|
6728 |
+
#: modules/user-listing/userlisting.php:2409
|
6729 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6730 |
msgstr ""
|
6731 |
|
6732 |
+
#: modules/user-listing/userlisting.php:2410
|
6733 |
msgid "Number of Users/Page"
|
6734 |
msgstr ""
|
6735 |
|
6736 |
+
#: modules/user-listing/userlisting.php:2410
|
6737 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6738 |
msgstr ""
|
6739 |
|
6740 |
+
#: modules/user-listing/userlisting.php:2411
|
6741 |
msgid "Default Sorting Criteria"
|
6742 |
msgstr ""
|
6743 |
|
6744 |
+
#: modules/user-listing/userlisting.php:2411
|
6745 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6746 |
msgstr ""
|
6747 |
|
6748 |
+
#: modules/user-listing/userlisting.php:2412
|
6749 |
msgid "Default Sorting Order"
|
6750 |
msgstr ""
|
6751 |
|
6752 |
+
#: modules/user-listing/userlisting.php:2412
|
6753 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6754 |
msgstr ""
|
6755 |
|
6756 |
+
#: modules/user-listing/userlisting.php:2413
|
6757 |
msgid "Avatar Size (All-userlisting)"
|
6758 |
msgstr ""
|
6759 |
|
6760 |
+
#: modules/user-listing/userlisting.php:2413
|
6761 |
msgid "Set the avatar size on the all-userlisting only"
|
6762 |
msgstr ""
|
6763 |
|
6764 |
+
#: modules/user-listing/userlisting.php:2414
|
6765 |
msgid "Avatar Size (Single-userlisting)"
|
6766 |
msgstr ""
|
6767 |
|
6768 |
+
#: modules/user-listing/userlisting.php:2414
|
6769 |
msgid "Set the avatar size on the single-userlisting only"
|
6770 |
msgstr ""
|
6771 |
|
6772 |
+
#: modules/user-listing/userlisting.php:2415
|
6773 |
msgid "Visible only to logged in users?"
|
6774 |
msgstr ""
|
6775 |
|
6776 |
+
#: modules/user-listing/userlisting.php:2415
|
6777 |
msgid "The userlisting will only be visible only to the logged in users"
|
6778 |
msgstr ""
|
6779 |
|
6780 |
+
#: modules/user-listing/userlisting.php:2416
|
6781 |
msgid "Visible to following Roles"
|
6782 |
msgstr ""
|
6783 |
|
6784 |
+
#: modules/user-listing/userlisting.php:2416
|
6785 |
msgid "The userlisting will only be visible to the following roles"
|
6786 |
msgstr ""
|
6787 |
|
6788 |
+
#: modules/user-listing/userlisting.php:2422
|
6789 |
msgid "Userlisting Settings"
|
6790 |
msgstr ""
|
6791 |
|
6792 |
+
#: modules/user-listing/userlisting.php:2447
|
6793 |
msgid "Label"
|
6794 |
msgstr ""
|
6795 |
|
6796 |
+
#: modules/user-listing/userlisting.php:2447
|
6797 |
msgid "Choose the facet name that appears on the frontend"
|
6798 |
msgstr ""
|
6799 |
|
6800 |
+
#: modules/user-listing/userlisting.php:2448
|
6801 |
msgid "Facet Type"
|
6802 |
msgstr ""
|
6803 |
|
6804 |
+
#: modules/user-listing/userlisting.php:2448
|
6805 |
msgid "Choose the facet menu type"
|
6806 |
msgstr ""
|
6807 |
|
6808 |
+
#: modules/user-listing/userlisting.php:2449
|
6809 |
msgid "Facet Meta"
|
6810 |
msgstr ""
|
6811 |
|
6812 |
+
#: modules/user-listing/userlisting.php:2449
|
6813 |
msgid "Choose the meta field for the facet menu. If you want to use a repeater meta or a meta outisde Profile Builder just type the value and press enter."
|
6814 |
msgstr ""
|
6815 |
|
6816 |
+
#: modules/user-listing/userlisting.php:2450
|
6817 |
msgid "Behaviour"
|
6818 |
msgstr ""
|
6819 |
|
6820 |
+
#: modules/user-listing/userlisting.php:2450
|
6821 |
msgid "Narrow the results"
|
6822 |
msgstr ""
|
6823 |
|
6824 |
+
#: modules/user-listing/userlisting.php:2450
|
6825 |
msgid "Expand the results"
|
6826 |
msgstr ""
|
6827 |
|
6828 |
+
#: modules/user-listing/userlisting.php:2450
|
6829 |
msgid "Choose how multiple selections affect the results"
|
6830 |
msgstr ""
|
6831 |
|
6832 |
+
#: modules/user-listing/userlisting.php:2451
|
6833 |
msgid "Visible choices"
|
6834 |
msgstr ""
|
6835 |
|
6836 |
+
#: modules/user-listing/userlisting.php:2451
|
6837 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6838 |
msgstr ""
|
6839 |
|
6840 |
+
#: modules/user-listing/userlisting.php:2476
|
6841 |
msgid "Search Fields"
|
6842 |
msgstr ""
|
6843 |
|
6844 |
+
#: modules/user-listing/userlisting.php:2476
|
6845 |
msgid "Choose the fields in which the Search Field will look in"
|
6846 |
msgstr ""
|
6847 |
|
6848 |
+
#: modules/user-listing/userlisting.php:2481
|
6849 |
msgid "Search Settings"
|
6850 |
msgstr ""
|
6851 |
|
6852 |
+
#: modules/user-listing/userlisting.php:2553
|
6853 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6854 |
msgstr ""
|
6855 |
|
6856 |
+
#: modules/user-listing/userlisting.php:2553
|
6857 |
msgid "You can find it in the Profile Builder menu."
|
6858 |
msgstr ""
|
6859 |
|
6860 |
+
#: modules/user-listing/userlisting.php:2716
|
6861 |
msgid "No results found!"
|
6862 |
msgstr ""
|
6863 |
|