Version Description
- Fix: fix some issues regarding the unique display name option
- Fix: more multisite compatibility changes
- Fix: some broken strings
- Misc: add Elementor styling options for the password strength and length text
- Misc: added a hook after a user deletes his own account through the GDPR functionality: wppb_gdpr_user_deleted
Download this release
Release Info
Developer | raster02 |
Plugin | User registration & user profile – Profile Builder |
Version | 3.7.7 |
Comparing to | |
See all releases |
Code changes from version 3.7.6 to 3.7.7
- admin/advanced-settings/includes/fields/unique-display-name.php +32 -8
- admin/advanced-settings/includes/views/view-forms.php +1 -1
- admin/basic-info.php +1 -1
- admin/general-settings.php +1 -1
- assets/misc/elementor/widgets/class-pb-widget-rf-epf.php +4 -0
- features/functions.php +5 -5
- index.php +4 -4
- readme.txt +8 -1
- translation/profile-builder.catalog.php +2 -2
- translation/profile-builder.pot +92 -92
admin/advanced-settings/includes/fields/unique-display-name.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
function
|
4 |
|
5 |
if ( isset( $request_data['display_name']) ) {
|
6 |
if ( isset( $_GET['edit_user'] ) ) {
|
@@ -16,15 +16,39 @@ function wppb_toolbox_unique_display_name( $message, $field, $request_data, $for
|
|
16 |
if ( $request_data['display_name'] == $user->display_name )
|
17 |
return $message;
|
18 |
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
if ( $count >= 1 )
|
24 |
-
return __( 'This display name is already in use. Please choose another one.', 'profile-builder' );
|
25 |
}
|
26 |
|
27 |
return $message;
|
28 |
|
29 |
}
|
30 |
-
add_filter( 'wppb_check_form_field_default-display-name-publicly-as', '
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<?php
|
2 |
|
3 |
+
function wppb_toolbox_unique_display_name_edit_profile( $message, $field, $request_data, $form_location ) {
|
4 |
|
5 |
if ( isset( $request_data['display_name']) ) {
|
6 |
if ( isset( $_GET['edit_user'] ) ) {
|
16 |
if ( $request_data['display_name'] == $user->display_name )
|
17 |
return $message;
|
18 |
|
19 |
+
if ( wppb_toolbox_unique_display_name_check( $request_data['display_name'] ) ) {
|
20 |
+
return __('This display name is already in use. Please choose another one.', 'profile-builder');
|
21 |
+
}
|
|
|
|
|
|
|
22 |
}
|
23 |
|
24 |
return $message;
|
25 |
|
26 |
}
|
27 |
+
add_filter( 'wppb_check_form_field_default-display-name-publicly-as', 'wppb_toolbox_unique_display_name_edit_profile', 20, 4 );
|
28 |
+
|
29 |
+
function wppb_toolbox_unique_display_name_register( $display_name ){
|
30 |
+
if ( isset( $_POST['action'] ) && $_POST['action'] === 'register' ) {
|
31 |
+
if (isset($display_name)) {
|
32 |
+
if (wppb_toolbox_unique_display_name_check($display_name)) {
|
33 |
+
$i = 1;
|
34 |
+
while (wppb_toolbox_unique_display_name_check($display_name . ' ' . $i)) {
|
35 |
+
$i++;
|
36 |
+
}
|
37 |
+
$display_name = $display_name . ' ' . $i;
|
38 |
+
}
|
39 |
+
}
|
40 |
+
}
|
41 |
+
return $display_name;
|
42 |
+
}
|
43 |
+
add_filter( 'pre_user_display_name', 'wppb_toolbox_unique_display_name_register', 10 );
|
44 |
+
|
45 |
+
function wppb_toolbox_unique_display_name_check($display_name ){
|
46 |
+
global $wpdb;
|
47 |
+
|
48 |
+
$count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(ID) FROM $wpdb->users WHERE display_name = %s", $display_name ) );
|
49 |
+
|
50 |
+
if ( $count >= 1 ){
|
51 |
+
return true;
|
52 |
+
}
|
53 |
+
return false;
|
54 |
+
}
|
admin/advanced-settings/includes/views/view-forms.php
CHANGED
@@ -156,8 +156,8 @@
|
|
156 |
</td>
|
157 |
</tr>
|
158 |
|
|
|
159 |
|
160 |
-
<?php if ( is_plugin_active( 'pb-add-on-social-connect/index.php' ) ) : ?>
|
161 |
<tr>
|
162 |
<th><?php esc_html_e( 'Disable Email Confirmation for Social Connect registrations', 'profile-builder' ); ?></th>
|
163 |
|
156 |
</td>
|
157 |
</tr>
|
158 |
|
159 |
+
<?php if ( defined( 'WPPB_PAID_PLUGIN_DIR' ) && file_exists( WPPB_PAID_PLUGIN_DIR.'/add-ons-advanced/social-connect/index.php' ) ) : ?>
|
160 |
|
|
|
161 |
<tr>
|
162 |
<th><?php esc_html_e( 'Disable Email Confirmation for Social Connect registrations', 'profile-builder' ); ?></th>
|
163 |
|
admin/basic-info.php
CHANGED
@@ -222,7 +222,7 @@ function wppb_basic_info_content() {
|
|
222 |
<div>
|
223 |
<h3>Extra Notes</h3>
|
224 |
<ul>
|
225 |
-
<li><?php printf( esc_html__( ' * only available in the %1$
|
226 |
<li><?php printf( esc_html__( '** only available in the %1$sPro version%2$s.', 'profile-builder' ), '<a href="https://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wpbackend&utm_medium=clientsite&utm_content=basicinfo-extranotes&utm_campaign=PB'.esc_attr( $version ).'" target="_blank">', '</a>' );?></li>
|
227 |
</ul>
|
228 |
</div>
|
222 |
<div>
|
223 |
<h3>Extra Notes</h3>
|
224 |
<ul>
|
225 |
+
<li><?php printf( esc_html__( ' * only available in the %1$sBasic and Pro versions%2$s.', 'profile-builder' ) ,'<a href="https://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wpbackend&utm_medium=clientsite&utm_content=basicinfo-extranotes&utm_campaign=PB'.esc_attr( $version ).'" target="_blank">', '</a>' );?></li>
|
226 |
<li><?php printf( esc_html__( '** only available in the %1$sPro version%2$s.', 'profile-builder' ), '<a href="https://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wpbackend&utm_medium=clientsite&utm_content=basicinfo-extranotes&utm_campaign=PB'.esc_attr( $version ).'" target="_blank">', '</a>' );?></li>
|
227 |
</ul>
|
228 |
</div>
|
admin/general-settings.php
CHANGED
@@ -289,7 +289,7 @@ function wppb_general_settings_content() {
|
|
289 |
<?php esc_html_e( '"Admin Approval" Feature:', 'profile-builder' ); ?>
|
290 |
</th>
|
291 |
<td>
|
292 |
-
<p><em> <?php printf( esc_html__( 'You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$
|
293 |
</td>
|
294 |
</tr>
|
295 |
<?php } ?>
|
289 |
<?php esc_html_e( '"Admin Approval" Feature:', 'profile-builder' ); ?>
|
290 |
</th>
|
291 |
<td>
|
292 |
+
<p><em> <?php printf( esc_html__( 'You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sBasic or PRO versions%2$s.', 'profile-builder' ),'<a href="https://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wpbackend&utm_medium=clientsite&utm_content=general-settings-link&utm_campaign=PBFree">', '</a>' )?></em></p>
|
293 |
</td>
|
294 |
</tr>
|
295 |
<?php } ?>
|
assets/misc/elementor/widgets/class-pb-widget-rf-epf.php
CHANGED
@@ -504,6 +504,10 @@ abstract class PB_Elementor_Register_Edit_Profile_Widget extends PB_Elementor_Wi
|
|
504 |
case 'Default - Password':
|
505 |
$field_meta = 'passw1';
|
506 |
$targets = $this->handle_placeholder_labels_active( $targets );
|
|
|
|
|
|
|
|
|
507 |
$targets['input'] = '';
|
508 |
break;
|
509 |
case 'Default - Repeat Password':
|
504 |
case 'Default - Password':
|
505 |
$field_meta = 'passw1';
|
506 |
$targets = $this->handle_placeholder_labels_active( $targets );
|
507 |
+
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
508 |
+
if ( !empty( $wppb_generalSettings['minimum_password_length'] ) || !empty( $wppb_generalSettings['minimum_password_strength'] ) ){
|
509 |
+
$targets['description'] = '';
|
510 |
+
}
|
511 |
$targets['input'] = '';
|
512 |
break;
|
513 |
case 'Default - Repeat Password':
|
features/functions.php
CHANGED
@@ -1691,11 +1691,11 @@ function wppb_gdpr_delete_user() {
|
|
1691 |
$user = new WP_User( absint( $_REQUEST['wppb_user'] ) );
|
1692 |
|
1693 |
if (!empty($user->roles)) {
|
1694 |
-
|
1695 |
-
|
1696 |
-
|
1697 |
-
|
1698 |
-
|
1699 |
}
|
1700 |
|
1701 |
$args = array('wppb_user', 'wppb_action', 'wppb_nonce');
|
1691 |
$user = new WP_User( absint( $_REQUEST['wppb_user'] ) );
|
1692 |
|
1693 |
if (!empty($user->roles)) {
|
1694 |
+
if( !in_array( 'administrator', $user->roles ) ){
|
1695 |
+
wp_delete_user( absint( $_REQUEST['wppb_user'] ) );
|
1696 |
+
|
1697 |
+
do_action( 'wppb_gdpr_user_deleted', absint( $_REQUEST['wppb_user'] ) );
|
1698 |
+
}
|
1699 |
}
|
1700 |
|
1701 |
$args = array('wppb_user', 'wppb_action', 'wppb_nonce');
|
index.php
CHANGED
@@ -3,14 +3,14 @@
|
|
3 |
* Plugin Name: Profile Builder
|
4 |
* Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
* Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
-
* Version: 3.7.
|
7 |
* Author: Cozmoslabs
|
8 |
* Author URI: https://www.cozmoslabs.com/
|
9 |
* Text Domain: profile-builder
|
10 |
* Domain Path: /translation
|
11 |
* License: GPL2
|
12 |
-
* Elementor tested up to: 3.6.
|
13 |
-
* Elementor Pro tested up to: 3.
|
14 |
*
|
15 |
* == Copyright ==
|
16 |
* Copyright 2014 Cozmoslabs (www.cozmoslabs.com)
|
@@ -362,7 +362,7 @@ add_action( 'plugins_loaded', 'wppb_plugin_init' );
|
|
362 |
*
|
363 |
*
|
364 |
*/
|
365 |
-
define('PROFILE_BUILDER_VERSION', '3.7.
|
366 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
367 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
368 |
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.7.7
|
7 |
* Author: Cozmoslabs
|
8 |
* Author URI: https://www.cozmoslabs.com/
|
9 |
* Text Domain: profile-builder
|
10 |
* Domain Path: /translation
|
11 |
* License: GPL2
|
12 |
+
* Elementor tested up to: 3.6.1
|
13 |
+
* Elementor Pro tested up to: 3.6.4
|
14 |
*
|
15 |
* == Copyright ==
|
16 |
* Copyright 2014 Cozmoslabs (www.cozmoslabs.com)
|
362 |
*
|
363 |
*
|
364 |
*/
|
365 |
+
define('PROFILE_BUILDER_VERSION', '3.7.7' );
|
366 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
367 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
368 |
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, registration, profile, user registration form, user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 6.0
|
7 |
-
Stable tag: 3.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -177,6 +177,13 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
177 |
15. Edit or Add New User Role
|
178 |
|
179 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
= 3.7.6 =
|
181 |
* Elementor Integration: added Content Restriction compatibility with the new Elementor containers feature
|
182 |
* Elementor Integration: added option to style the Multi Step Forms buttons
|
4 |
Tags: user registration, user profile, registration, profile, user registration form, user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 6.0
|
7 |
+
Stable tag: 3.7.7
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
177 |
15. Edit or Add New User Role
|
178 |
|
179 |
== Changelog ==
|
180 |
+
= 3.7.7 =
|
181 |
+
* Fix: fix some issues regarding the unique display name option
|
182 |
+
* Fix: more multisite compatibility changes
|
183 |
+
* Fix: some broken strings
|
184 |
+
* Misc: add Elementor styling options for the password strength and length text
|
185 |
+
* Misc: added a hook after a user deletes his own account through the GDPR functionality: wppb_gdpr_user_deleted
|
186 |
+
|
187 |
= 3.7.6 =
|
188 |
* Elementor Integration: added Content Restriction compatibility with the new Elementor containers feature
|
189 |
* Elementor Integration: added option to style the Multi Step Forms buttons
|
translation/profile-builder.catalog.php
CHANGED
@@ -161,7 +161,7 @@
|
|
161 |
<?php __("Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.", "profile-builder"); ?>
|
162 |
<?php __("Multiple Edit-profile Forms", "profile-builder"); ?>
|
163 |
<?php __("Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role.", "profile-builder"); ?>
|
164 |
-
<?php __(' * only available in the %1$
|
165 |
<?php __('** only available in the %1$sPro version%2$s.', 'profile-builder' ); ?>
|
166 |
<?php __("Quick Feedback", "profile-builder"); ?>
|
167 |
<?php __("Because we care about our clients, please leave us feedback on why you are no longer using our plugin.", "profile-builder"); ?>
|
@@ -209,7 +209,7 @@
|
|
209 |
<?php __("\"Roles Editor\" Activated:", "profile-builder"); ?>
|
210 |
<?php __('You can add / edit user roles at %1$sUsers > Roles Editor%2$s.', 'profile-builder' ); ?>
|
211 |
<?php __("\"Admin Approval\" Feature:", "profile-builder"); ?>
|
212 |
-
<?php __('You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$
|
213 |
<?php __("Allow Users to Log in With:", "profile-builder"); ?>
|
214 |
<?php __("Username and Email", "profile-builder"); ?>
|
215 |
<?php __("Username", "profile-builder"); ?>
|
161 |
<?php __("Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.", "profile-builder"); ?>
|
162 |
<?php __("Multiple Edit-profile Forms", "profile-builder"); ?>
|
163 |
<?php __("Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role.", "profile-builder"); ?>
|
164 |
+
<?php __(' * only available in the %1$sBasic and Pro versions%2$s.', 'profile-builder' ); ?>
|
165 |
<?php __('** only available in the %1$sPro version%2$s.', 'profile-builder' ); ?>
|
166 |
<?php __("Quick Feedback", "profile-builder"); ?>
|
167 |
<?php __("Because we care about our clients, please leave us feedback on why you are no longer using our plugin.", "profile-builder"); ?>
|
209 |
<?php __("\"Roles Editor\" Activated:", "profile-builder"); ?>
|
210 |
<?php __('You can add / edit user roles at %1$sUsers > Roles Editor%2$s.', 'profile-builder' ); ?>
|
211 |
<?php __("\"Admin Approval\" Feature:", "profile-builder"); ?>
|
212 |
+
<?php __('You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sBasic or PRO versions%2$s.', 'profile-builder' ); ?>
|
213 |
<?php __("Allow Users to Log in With:", "profile-builder"); ?>
|
214 |
<?php __("Username and Email", "profile-builder"); ?>
|
215 |
<?php __("Username", "profile-builder"); ?>
|
translation/profile-builder.pot
CHANGED
@@ -317,7 +317,7 @@ msgstr ""
|
|
317 |
msgid "Show"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: admin/admin-bar.php:81, add-ons/user-listing/userlisting.php:
|
321 |
msgid "Hide"
|
322 |
msgstr ""
|
323 |
|
@@ -662,7 +662,7 @@ msgid "Set up a repeating group of fields on register and edit profile forms. Li
|
|
662 |
msgstr ""
|
663 |
|
664 |
#: admin/basic-info.php:225
|
665 |
-
msgid " * only available in the %1$
|
666 |
msgstr ""
|
667 |
|
668 |
#: admin/basic-info.php:226
|
@@ -781,7 +781,7 @@ msgstr ""
|
|
781 |
msgid "Load Profile Builder's own CSS file in the front-end:"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: admin/general-settings.php:151, admin/general-settings.php:164, admin/general-settings.php:179, admin/general-settings.php:228, admin/general-settings.php:275, admin/manage-fields.php:193, admin/private-website.php:70, admin/private-website.php:137, admin/private-website.php:150, add-ons/multiple-forms/edit-profile-forms.php:206, add-ons/multiple-forms/register-forms.php:229, add-ons/multiple-forms/register-forms.php:230, add-ons/user-listing/userlisting.php:
|
785 |
msgid "Yes"
|
786 |
msgstr ""
|
787 |
|
@@ -854,7 +854,7 @@ msgid "\"Admin Approval\" Feature:"
|
|
854 |
msgstr ""
|
855 |
|
856 |
#: admin/general-settings.php:292
|
857 |
-
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$
|
858 |
msgstr ""
|
859 |
|
860 |
#: admin/general-settings.php:299
|
@@ -865,11 +865,11 @@ msgstr ""
|
|
865 |
msgid "Username and Email"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: admin/general-settings.php:304, admin/manage-fields.php:333, front-end/login.php:341, front-end/login.php:355, front-end/login.php:543, add-ons/custom-redirects/custom_redirects_admin.php:61, add-ons/email-customizer/email-customizer.php:28, add-ons/user-listing/userlisting.php:113, add-ons/user-listing/userlisting.php:336, add-ons/user-listing/userlisting.php:878, add-ons/user-listing/userlisting.php:
|
869 |
msgid "Username"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: admin/general-settings.php:305, front-end/login.php:538, front-end/recover.php:118, add-ons/email-customizer/email-customizer.php:29, add-ons/user-listing/userlisting.php:119, add-ons/user-listing/userlisting.php:884, add-ons/user-listing/userlisting.php:
|
873 |
msgid "Email"
|
874 |
msgstr ""
|
875 |
|
@@ -1405,7 +1405,7 @@ msgstr ""
|
|
1405 |
msgid "Last Name"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: admin/manage-fields.php:336, add-ons/user-listing/userlisting.php:917, add-ons/user-listing/userlisting.php:
|
1409 |
msgid "Nickname"
|
1410 |
msgstr ""
|
1411 |
|
@@ -1421,7 +1421,7 @@ msgstr ""
|
|
1421 |
msgid "E-mail"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: admin/manage-fields.php:340, add-ons/email-customizer/email-customizer.php:33, add-ons/user-listing/userlisting.php:122, add-ons/user-listing/userlisting.php:899, add-ons/user-listing/userlisting.php:
|
1425 |
msgid "Website"
|
1426 |
msgstr ""
|
1427 |
|
@@ -1441,7 +1441,7 @@ msgstr ""
|
|
1441 |
msgid "About Yourself"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#: admin/manage-fields.php:350, add-ons/user-listing/userlisting.php:125, add-ons/user-listing/userlisting.php:902, add-ons/user-listing/userlisting.php:
|
1445 |
msgid "Biographical Info"
|
1446 |
msgstr ""
|
1447 |
|
@@ -3786,7 +3786,7 @@ msgstr ""
|
|
3786 |
msgid "Dashboard (redirect users from accessing the dashboard)"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
-
#: add-ons/custom-redirects/custom_redirects_admin.php:60, add-ons/user-listing/userlisting.php:168, add-ons/user-listing/userlisting.php:
|
3790 |
msgid "User ID"
|
3791 |
msgstr ""
|
3792 |
|
@@ -4342,27 +4342,27 @@ msgstr ""
|
|
4342 |
msgid "No Edit-profile Forms found in trash"
|
4343 |
msgstr ""
|
4344 |
|
4345 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:
|
4346 |
msgid "Shortcode"
|
4347 |
msgstr ""
|
4348 |
|
4349 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:
|
4350 |
msgid "(no title)"
|
4351 |
msgstr ""
|
4352 |
|
4353 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:
|
4354 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
4355 |
msgstr ""
|
4356 |
|
4357 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:
|
4358 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
4359 |
msgstr ""
|
4360 |
|
4361 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:
|
4362 |
msgid "The shortcode will be available after you publish this form."
|
4363 |
msgstr ""
|
4364 |
|
4365 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:
|
4366 |
msgid "Form Shortcode"
|
4367 |
msgstr ""
|
4368 |
|
@@ -4526,7 +4526,7 @@ msgstr ""
|
|
4526 |
msgid "Display name as"
|
4527 |
msgstr ""
|
4528 |
|
4529 |
-
#: add-ons/user-listing/userlisting.php:169, add-ons/user-listing/userlisting.php:338, add-ons/user-listing/userlisting.php:920, add-ons/user-listing/userlisting.php:
|
4530 |
msgid "Role"
|
4531 |
msgstr ""
|
4532 |
|
@@ -4534,11 +4534,11 @@ msgstr ""
|
|
4534 |
msgid "Role Slug"
|
4535 |
msgstr ""
|
4536 |
|
4537 |
-
#: add-ons/user-listing/userlisting.php:171, add-ons/user-listing/userlisting.php:
|
4538 |
msgid "Registration Date"
|
4539 |
msgstr ""
|
4540 |
|
4541 |
-
#: add-ons/user-listing/userlisting.php:172, add-ons/user-listing/userlisting.php:
|
4542 |
msgid "Number of Posts"
|
4543 |
msgstr ""
|
4544 |
|
@@ -4566,7 +4566,7 @@ msgstr ""
|
|
4566 |
msgid "Search all Fields"
|
4567 |
msgstr ""
|
4568 |
|
4569 |
-
#: add-ons/user-listing/userlisting.php:223, add-ons/user-listing/userlisting.php:
|
4570 |
msgid "Faceted Menus"
|
4571 |
msgstr ""
|
4572 |
|
@@ -4602,7 +4602,7 @@ msgstr ""
|
|
4602 |
msgid "Avatar"
|
4603 |
msgstr ""
|
4604 |
|
4605 |
-
#: add-ons/user-listing/userlisting.php:337, add-ons/user-listing/userlisting.php:
|
4606 |
msgid "Firstname"
|
4607 |
msgstr ""
|
4608 |
|
@@ -4634,19 +4634,19 @@ msgstr ""
|
|
4634 |
msgid "None"
|
4635 |
msgstr ""
|
4636 |
|
4637 |
-
#: add-ons/user-listing/userlisting.php:914, add-ons/user-listing/userlisting.php:
|
4638 |
msgid "Jabber"
|
4639 |
msgstr ""
|
4640 |
|
4641 |
-
#: add-ons/user-listing/userlisting.php:911, add-ons/user-listing/userlisting.php:
|
4642 |
msgid "Yim"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
-
#: add-ons/user-listing/userlisting.php:908, add-ons/user-listing/userlisting.php:
|
4646 |
msgid "Aim"
|
4647 |
msgstr ""
|
4648 |
|
4649 |
-
#: add-ons/user-listing/userlisting.php:896, add-ons/user-listing/userlisting.php:
|
4650 |
msgid "Display Name"
|
4651 |
msgstr ""
|
4652 |
|
@@ -4654,267 +4654,267 @@ msgstr ""
|
|
4654 |
msgid "First/Lastname"
|
4655 |
msgstr ""
|
4656 |
|
4657 |
-
#: add-ons/user-listing/userlisting.php:
|
4658 |
msgid "Search Users by All Fields"
|
4659 |
msgstr ""
|
4660 |
|
4661 |
-
#: add-ons/user-listing/userlisting.php:
|
4662 |
msgid "Click here to see more information about this user."
|
4663 |
msgstr ""
|
4664 |
|
4665 |
-
#: add-ons/user-listing/userlisting.php:
|
4666 |
msgid "Click here to see more information about this user"
|
4667 |
msgstr ""
|
4668 |
|
4669 |
-
#: add-ons/user-listing/userlisting.php:
|
4670 |
msgid "More..."
|
4671 |
msgstr ""
|
4672 |
|
4673 |
-
#: add-ons/user-listing/userlisting.php:
|
4674 |
msgid "Remove Marker"
|
4675 |
msgstr ""
|
4676 |
|
4677 |
-
#: add-ons/user-listing/userlisting.php:
|
4678 |
msgid "View Map"
|
4679 |
msgstr ""
|
4680 |
|
4681 |
-
#: add-ons/user-listing/userlisting.php:
|
4682 |
msgid "Click here to go back"
|
4683 |
msgstr ""
|
4684 |
|
4685 |
-
#: add-ons/user-listing/userlisting.php:
|
4686 |
msgid "Back"
|
4687 |
msgstr ""
|
4688 |
|
4689 |
-
#: add-ons/user-listing/userlisting.php:
|
4690 |
msgid "You don't have any pagination settings on this userlisting!"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
-
#: add-ons/user-listing/userlisting.php:
|
4694 |
msgid "«« First"
|
4695 |
msgstr ""
|
4696 |
|
4697 |
-
#: add-ons/user-listing/userlisting.php:
|
4698 |
msgid "« Prev"
|
4699 |
msgstr ""
|
4700 |
|
4701 |
-
#: add-ons/user-listing/userlisting.php:
|
4702 |
msgid "Next » "
|
4703 |
msgstr ""
|
4704 |
|
4705 |
-
#: add-ons/user-listing/userlisting.php:
|
4706 |
msgid "Last »»"
|
4707 |
msgstr ""
|
4708 |
|
4709 |
-
#: add-ons/user-listing/userlisting.php:
|
4710 |
msgid "Show All"
|
4711 |
msgstr ""
|
4712 |
|
4713 |
-
#: add-ons/user-listing/userlisting.php:
|
4714 |
msgid "Choose..."
|
4715 |
msgstr ""
|
4716 |
|
4717 |
-
#: add-ons/user-listing/userlisting.php:
|
4718 |
msgid "Choose or type in an option..."
|
4719 |
msgstr ""
|
4720 |
|
4721 |
-
#: add-ons/user-listing/userlisting.php:
|
4722 |
msgid "No options available"
|
4723 |
msgstr ""
|
4724 |
|
4725 |
-
#: add-ons/user-listing/userlisting.php:
|
4726 |
msgid "Remove All Filters"
|
4727 |
msgstr ""
|
4728 |
|
4729 |
-
#: add-ons/user-listing/userlisting.php:
|
4730 |
msgid "Search"
|
4731 |
msgstr ""
|
4732 |
|
4733 |
-
#: add-ons/user-listing/userlisting.php:
|
4734 |
msgid "Clear Results"
|
4735 |
msgstr ""
|
4736 |
|
4737 |
-
#: add-ons/user-listing/userlisting.php:
|
4738 |
msgid "Extra shortcode parameters"
|
4739 |
msgstr ""
|
4740 |
|
4741 |
-
#: add-ons/user-listing/userlisting.php:
|
4742 |
msgid "View all extra shortcode parameters"
|
4743 |
msgstr ""
|
4744 |
|
4745 |
-
#: add-ons/user-listing/userlisting.php:
|
4746 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
4747 |
msgstr ""
|
4748 |
|
4749 |
-
#: add-ons/user-listing/userlisting.php:
|
4750 |
msgid "Example:"
|
4751 |
msgstr ""
|
4752 |
|
4753 |
-
#: add-ons/user-listing/userlisting.php:
|
4754 |
msgid "Remember though, that the field-value combination must exist in the database."
|
4755 |
msgstr ""
|
4756 |
|
4757 |
-
#: add-ons/user-listing/userlisting.php:
|
4758 |
msgid "displays only the users that you specified the user_id for"
|
4759 |
msgstr ""
|
4760 |
|
4761 |
-
#: add-ons/user-listing/userlisting.php:
|
4762 |
msgid "displays all users except the ones you specified the user_id for"
|
4763 |
msgstr ""
|
4764 |
|
4765 |
-
#: add-ons/user-listing/userlisting.php:
|
4766 |
msgid "Lastname"
|
4767 |
msgstr ""
|
4768 |
|
4769 |
-
#: add-ons/user-listing/userlisting.php:
|
4770 |
msgid "Random (very slow on large databases > 10K user)"
|
4771 |
msgstr ""
|
4772 |
|
4773 |
-
#: add-ons/user-listing/userlisting.php:
|
4774 |
msgid "Ascending"
|
4775 |
msgstr ""
|
4776 |
|
4777 |
-
#: add-ons/user-listing/userlisting.php:
|
4778 |
msgid "Descending"
|
4779 |
msgstr ""
|
4780 |
|
4781 |
-
#: add-ons/user-listing/userlisting.php:
|
4782 |
msgid "Roles to Display"
|
4783 |
msgstr ""
|
4784 |
|
4785 |
-
#: add-ons/user-listing/userlisting.php:
|
4786 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
4787 |
msgstr ""
|
4788 |
|
4789 |
-
#: add-ons/user-listing/userlisting.php:
|
4790 |
msgid "Number of Users/Page"
|
4791 |
msgstr ""
|
4792 |
|
4793 |
-
#: add-ons/user-listing/userlisting.php:
|
4794 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
4795 |
msgstr ""
|
4796 |
|
4797 |
-
#: add-ons/user-listing/userlisting.php:
|
4798 |
msgid "Default Sorting Criteria"
|
4799 |
msgstr ""
|
4800 |
|
4801 |
-
#: add-ons/user-listing/userlisting.php:
|
4802 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
4803 |
msgstr ""
|
4804 |
|
4805 |
-
#: add-ons/user-listing/userlisting.php:
|
4806 |
msgid "Default Sorting Order"
|
4807 |
msgstr ""
|
4808 |
|
4809 |
-
#: add-ons/user-listing/userlisting.php:
|
4810 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
-
#: add-ons/user-listing/userlisting.php:
|
4814 |
msgid "Avatar Size (All-userlisting)"
|
4815 |
msgstr ""
|
4816 |
|
4817 |
-
#: add-ons/user-listing/userlisting.php:
|
4818 |
msgid "Set the avatar size on the all-userlisting only"
|
4819 |
msgstr ""
|
4820 |
|
4821 |
-
#: add-ons/user-listing/userlisting.php:
|
4822 |
msgid "Avatar Size (Single-userlisting)"
|
4823 |
msgstr ""
|
4824 |
|
4825 |
-
#: add-ons/user-listing/userlisting.php:
|
4826 |
msgid "Set the avatar size on the single-userlisting only"
|
4827 |
msgstr ""
|
4828 |
|
4829 |
-
#: add-ons/user-listing/userlisting.php:
|
4830 |
msgid "Visible only to logged in users?"
|
4831 |
msgstr ""
|
4832 |
|
4833 |
-
#: add-ons/user-listing/userlisting.php:
|
4834 |
msgid "The userlisting will only be visible only to the logged in users"
|
4835 |
msgstr ""
|
4836 |
|
4837 |
-
#: add-ons/user-listing/userlisting.php:
|
4838 |
msgid "Visible to following Roles"
|
4839 |
msgstr ""
|
4840 |
|
4841 |
-
#: add-ons/user-listing/userlisting.php:
|
4842 |
msgid "The userlisting will only be visible to the following roles"
|
4843 |
msgstr ""
|
4844 |
|
4845 |
-
#: add-ons/user-listing/userlisting.php:
|
4846 |
msgid "Userlisting Settings"
|
4847 |
msgstr ""
|
4848 |
|
4849 |
-
#: add-ons/user-listing/userlisting.php:
|
4850 |
msgid "Label"
|
4851 |
msgstr ""
|
4852 |
|
4853 |
-
#: add-ons/user-listing/userlisting.php:
|
4854 |
msgid "Choose the facet name that appears on the frontend"
|
4855 |
msgstr ""
|
4856 |
|
4857 |
-
#: add-ons/user-listing/userlisting.php:
|
4858 |
msgid "Facet Type"
|
4859 |
msgstr ""
|
4860 |
|
4861 |
-
#: add-ons/user-listing/userlisting.php:
|
4862 |
msgid "Choose the facet menu type"
|
4863 |
msgstr ""
|
4864 |
|
4865 |
-
#: add-ons/user-listing/userlisting.php:
|
4866 |
msgid "Facet Meta"
|
4867 |
msgstr ""
|
4868 |
|
4869 |
-
#: add-ons/user-listing/userlisting.php:
|
4870 |
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."
|
4871 |
msgstr ""
|
4872 |
|
4873 |
-
#: add-ons/user-listing/userlisting.php:
|
4874 |
msgid "Behaviour"
|
4875 |
msgstr ""
|
4876 |
|
4877 |
-
#: add-ons/user-listing/userlisting.php:
|
4878 |
msgid "Narrow the results"
|
4879 |
msgstr ""
|
4880 |
|
4881 |
-
#: add-ons/user-listing/userlisting.php:
|
4882 |
msgid "Expand the results"
|
4883 |
msgstr ""
|
4884 |
|
4885 |
-
#: add-ons/user-listing/userlisting.php:
|
4886 |
msgid "Choose how multiple selections affect the results"
|
4887 |
msgstr ""
|
4888 |
|
4889 |
-
#: add-ons/user-listing/userlisting.php:
|
4890 |
msgid "Visible choices"
|
4891 |
msgstr ""
|
4892 |
|
4893 |
-
#: add-ons/user-listing/userlisting.php:
|
4894 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
4895 |
msgstr ""
|
4896 |
|
4897 |
-
#: add-ons/user-listing/userlisting.php:
|
4898 |
msgid "Search Fields"
|
4899 |
msgstr ""
|
4900 |
|
4901 |
-
#: add-ons/user-listing/userlisting.php:
|
4902 |
msgid "Choose the fields in which the Search Field will look in"
|
4903 |
msgstr ""
|
4904 |
|
4905 |
-
#: add-ons/user-listing/userlisting.php:
|
4906 |
msgid "Search Settings"
|
4907 |
msgstr ""
|
4908 |
|
4909 |
-
#: add-ons/user-listing/userlisting.php:
|
4910 |
msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
|
4911 |
msgstr ""
|
4912 |
|
4913 |
-
#: add-ons/user-listing/userlisting.php:
|
4914 |
msgid "You can find it in the Profile Builder menu."
|
4915 |
msgstr ""
|
4916 |
|
4917 |
-
#: add-ons/user-listing/userlisting.php:
|
4918 |
msgid "No results found!"
|
4919 |
msgstr ""
|
4920 |
|
@@ -7539,7 +7539,7 @@ msgstr ""
|
|
7539 |
msgid "An error occurred, please try again later."
|
7540 |
msgstr ""
|
7541 |
|
7542 |
-
#: admin/advanced-settings/includes/fields/unique-display-name.php:
|
7543 |
msgid "This display name is already in use. Please choose another one."
|
7544 |
msgstr ""
|
7545 |
|
317 |
msgid "Show"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: admin/admin-bar.php:81, add-ons/user-listing/userlisting.php:1807
|
321 |
msgid "Hide"
|
322 |
msgstr ""
|
323 |
|
662 |
msgstr ""
|
663 |
|
664 |
#: admin/basic-info.php:225
|
665 |
+
msgid " * only available in the %1$sBasic and Pro versions%2$s."
|
666 |
msgstr ""
|
667 |
|
668 |
#: admin/basic-info.php:226
|
781 |
msgid "Load Profile Builder's own CSS file in the front-end:"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: admin/general-settings.php:151, admin/general-settings.php:164, admin/general-settings.php:179, admin/general-settings.php:228, admin/general-settings.php:275, admin/manage-fields.php:193, admin/private-website.php:70, admin/private-website.php:137, admin/private-website.php:150, add-ons/multiple-forms/edit-profile-forms.php:206, add-ons/multiple-forms/register-forms.php:229, add-ons/multiple-forms/register-forms.php:230, add-ons/user-listing/userlisting.php:2598, add-ons-advanced/bbpress/bbpress-page.php:161, add-ons-advanced/social-connect/index.php:347, add-ons-advanced/social-connect/index.php:406, features/content-restriction/content-restriction.php:89, features/two-factor-authentication/class-two-factor-authentication.php:125, admin/advanced-settings/includes/forms/placeholder-labels.php:135, admin/advanced-settings/includes/views/view-admin.php:18, admin/advanced-settings/includes/views/view-admin.php:34, admin/advanced-settings/includes/views/view-admin.php:50, admin/advanced-settings/includes/views/view-admin.php:69, admin/advanced-settings/includes/views/view-admin.php:100, admin/advanced-settings/includes/views/view-fields.php:18, admin/advanced-settings/includes/views/view-fields.php:66, admin/advanced-settings/includes/views/view-fields.php:181, admin/advanced-settings/includes/views/view-fields.php:197, admin/advanced-settings/includes/views/view-fields.php:217, admin/advanced-settings/includes/views/view-fields.php:240, admin/advanced-settings/includes/views/view-fields.php:260, admin/advanced-settings/includes/views/view-fields.php:277, admin/advanced-settings/includes/views/view-fields.php:295, admin/advanced-settings/includes/views/view-forms.php:19, admin/advanced-settings/includes/views/view-forms.php:148, admin/advanced-settings/includes/views/view-forms.php:166, admin/advanced-settings/includes/views/view-forms.php:183, admin/advanced-settings/includes/views/view-forms.php:198, admin/advanced-settings/includes/views/view-forms.php:213, admin/advanced-settings/includes/views/view-forms.php:233, admin/advanced-settings/includes/views/view-forms.php:250, admin/advanced-settings/includes/views/view-forms.php:286, admin/advanced-settings/includes/views/view-forms.php:307, admin/advanced-settings/includes/views/view-forms.php:327, admin/advanced-settings/includes/views/view-forms.php:349, admin/advanced-settings/includes/views/view-forms.php:371, admin/advanced-settings/includes/views/view-forms.php:391, admin/advanced-settings/includes/views/view-shortcodes.php:16, admin/advanced-settings/includes/views/view-shortcodes.php:32, admin/advanced-settings/includes/views/view-shortcodes.php:48, admin/advanced-settings/includes/views/view-shortcodes.php:64, admin/advanced-settings/includes/views/view-userlisting.php:53, admin/advanced-settings/includes/views/view-userlisting.php:75, assets/misc/elementor/widgets/class-pb-widget-l.php:75, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:183, assets/misc/elementor/widgets/class-pb-widget-ul.php:109
|
785 |
msgid "Yes"
|
786 |
msgstr ""
|
787 |
|
854 |
msgstr ""
|
855 |
|
856 |
#: admin/general-settings.php:292
|
857 |
+
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sBasic or PRO versions%2$s."
|
858 |
msgstr ""
|
859 |
|
860 |
#: admin/general-settings.php:299
|
865 |
msgid "Username and Email"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: admin/general-settings.php:304, admin/manage-fields.php:333, front-end/login.php:341, front-end/login.php:355, front-end/login.php:543, add-ons/custom-redirects/custom_redirects_admin.php:61, add-ons/email-customizer/email-customizer.php:28, add-ons/user-listing/userlisting.php:113, add-ons/user-listing/userlisting.php:336, add-ons/user-listing/userlisting.php:878, add-ons/user-listing/userlisting.php:2551, features/admin-approval/class-admin-approval.php:174, features/email-confirmation/class-email-confirmation.php:168, admin/advanced-settings/includes/views/view-fields.php:121
|
869 |
msgid "Username"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: admin/general-settings.php:305, front-end/login.php:538, front-end/recover.php:118, add-ons/email-customizer/email-customizer.php:29, add-ons/user-listing/userlisting.php:119, add-ons/user-listing/userlisting.php:884, add-ons/user-listing/userlisting.php:2552, features/admin-approval/class-admin-approval.php:177, features/email-confirmation/class-email-confirmation.php:169, add-ons-free/gdpr-communication-preferences/admin/manage-fields.php:24, add-ons-free/gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:9, admin/advanced-settings/includes/shortcodes/resend-activation.php:9
|
873 |
msgid "Email"
|
874 |
msgstr ""
|
875 |
|
1405 |
msgid "Last Name"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: admin/manage-fields.php:336, add-ons/user-listing/userlisting.php:917, add-ons/user-listing/userlisting.php:2560
|
1409 |
msgid "Nickname"
|
1410 |
msgstr ""
|
1411 |
|
1421 |
msgid "E-mail"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: admin/manage-fields.php:340, add-ons/email-customizer/email-customizer.php:33, add-ons/user-listing/userlisting.php:122, add-ons/user-listing/userlisting.php:899, add-ons/user-listing/userlisting.php:2554
|
1425 |
msgid "Website"
|
1426 |
msgstr ""
|
1427 |
|
1441 |
msgid "About Yourself"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: admin/manage-fields.php:350, add-ons/user-listing/userlisting.php:125, add-ons/user-listing/userlisting.php:902, add-ons/user-listing/userlisting.php:2555
|
1445 |
msgid "Biographical Info"
|
1446 |
msgstr ""
|
1447 |
|
3786 |
msgid "Dashboard (redirect users from accessing the dashboard)"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
+
#: add-ons/custom-redirects/custom_redirects_admin.php:60, add-ons/user-listing/userlisting.php:168, add-ons/user-listing/userlisting.php:2553
|
3790 |
msgid "User ID"
|
3791 |
msgstr ""
|
3792 |
|
4342 |
msgid "No Edit-profile Forms found in trash"
|
4343 |
msgstr ""
|
4344 |
|
4345 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:2447
|
4346 |
msgid "Shortcode"
|
4347 |
msgstr ""
|
4348 |
|
4349 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:2468
|
4350 |
msgid "(no title)"
|
4351 |
msgstr ""
|
4352 |
|
4353 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:2490
|
4354 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
4355 |
msgstr ""
|
4356 |
|
4357 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:2494
|
4358 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
4359 |
msgstr ""
|
4360 |
|
4361 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:2488
|
4362 |
msgid "The shortcode will be available after you publish this form."
|
4363 |
msgstr ""
|
4364 |
|
4365 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:2527
|
4366 |
msgid "Form Shortcode"
|
4367 |
msgstr ""
|
4368 |
|
4526 |
msgid "Display name as"
|
4527 |
msgstr ""
|
4528 |
|
4529 |
+
#: add-ons/user-listing/userlisting.php:169, add-ons/user-listing/userlisting.php:338, add-ons/user-listing/userlisting.php:920, add-ons/user-listing/userlisting.php:2562, features/admin-approval/class-admin-approval.php:178, features/roles-editor/roles-editor.php:286
|
4530 |
msgid "Role"
|
4531 |
msgstr ""
|
4532 |
|
4534 |
msgid "Role Slug"
|
4535 |
msgstr ""
|
4536 |
|
4537 |
+
#: add-ons/user-listing/userlisting.php:171, add-ons/user-listing/userlisting.php:2556
|
4538 |
msgid "Registration Date"
|
4539 |
msgstr ""
|
4540 |
|
4541 |
+
#: add-ons/user-listing/userlisting.php:172, add-ons/user-listing/userlisting.php:2561
|
4542 |
msgid "Number of Posts"
|
4543 |
msgstr ""
|
4544 |
|
4566 |
msgid "Search all Fields"
|
4567 |
msgstr ""
|
4568 |
|
4569 |
+
#: add-ons/user-listing/userlisting.php:223, add-ons/user-listing/userlisting.php:2640
|
4570 |
msgid "Faceted Menus"
|
4571 |
msgstr ""
|
4572 |
|
4602 |
msgid "Avatar"
|
4603 |
msgstr ""
|
4604 |
|
4605 |
+
#: add-ons/user-listing/userlisting.php:337, add-ons/user-listing/userlisting.php:2557, features/admin-approval/class-admin-approval.php:175
|
4606 |
msgid "Firstname"
|
4607 |
msgstr ""
|
4608 |
|
4634 |
msgid "None"
|
4635 |
msgstr ""
|
4636 |
|
4637 |
+
#: add-ons/user-listing/userlisting.php:914, add-ons/user-listing/userlisting.php:2568
|
4638 |
msgid "Jabber"
|
4639 |
msgstr ""
|
4640 |
|
4641 |
+
#: add-ons/user-listing/userlisting.php:911, add-ons/user-listing/userlisting.php:2567
|
4642 |
msgid "Yim"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
+
#: add-ons/user-listing/userlisting.php:908, add-ons/user-listing/userlisting.php:2566
|
4646 |
msgid "Aim"
|
4647 |
msgstr ""
|
4648 |
|
4649 |
+
#: add-ons/user-listing/userlisting.php:896, add-ons/user-listing/userlisting.php:2559
|
4650 |
msgid "Display Name"
|
4651 |
msgstr ""
|
4652 |
|
4654 |
msgid "First/Lastname"
|
4655 |
msgstr ""
|
4656 |
|
4657 |
+
#: add-ons/user-listing/userlisting.php:1217, add-ons/user-listing/userlisting.php:1738, add-ons/user-listing/userlisting.php:2274, add-ons/user-listing/userlisting.php:2760
|
4658 |
msgid "Search Users by All Fields"
|
4659 |
msgstr ""
|
4660 |
|
4661 |
+
#: add-ons/user-listing/userlisting.php:1519
|
4662 |
msgid "Click here to see more information about this user."
|
4663 |
msgstr ""
|
4664 |
|
4665 |
+
#: add-ons/user-listing/userlisting.php:1516
|
4666 |
msgid "Click here to see more information about this user"
|
4667 |
msgstr ""
|
4668 |
|
4669 |
+
#: add-ons/user-listing/userlisting.php:1516, add-ons/user-listing/userlisting.php:1516
|
4670 |
msgid "More..."
|
4671 |
msgstr ""
|
4672 |
|
4673 |
+
#: add-ons/user-listing/userlisting.php:1564, front-end/extra-fields/map/map.php:12
|
4674 |
msgid "Remove Marker"
|
4675 |
msgstr ""
|
4676 |
|
4677 |
+
#: add-ons/user-listing/userlisting.php:1546
|
4678 |
msgid "View Map"
|
4679 |
msgstr ""
|
4680 |
|
4681 |
+
#: add-ons/user-listing/userlisting.php:1695, add-ons/user-listing/userlisting.php:1692
|
4682 |
msgid "Click here to go back"
|
4683 |
msgstr ""
|
4684 |
|
4685 |
+
#: add-ons/user-listing/userlisting.php:1692, add-ons/user-listing/userlisting.php:1692
|
4686 |
msgid "Back"
|
4687 |
msgstr ""
|
4688 |
|
4689 |
+
#: add-ons/user-listing/userlisting.php:1757
|
4690 |
msgid "You don't have any pagination settings on this userlisting!"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
+
#: add-ons/user-listing/userlisting.php:1725
|
4694 |
msgid "«« First"
|
4695 |
msgstr ""
|
4696 |
|
4697 |
+
#: add-ons/user-listing/userlisting.php:1726
|
4698 |
msgid "« Prev"
|
4699 |
msgstr ""
|
4700 |
|
4701 |
+
#: add-ons/user-listing/userlisting.php:1727
|
4702 |
msgid "Next » "
|
4703 |
msgstr ""
|
4704 |
|
4705 |
+
#: add-ons/user-listing/userlisting.php:1728
|
4706 |
msgid "Last »»"
|
4707 |
msgstr ""
|
4708 |
|
4709 |
+
#: add-ons/user-listing/userlisting.php:1806
|
4710 |
msgid "Show All"
|
4711 |
msgstr ""
|
4712 |
|
4713 |
+
#: add-ons/user-listing/userlisting.php:1882, admin/advanced-settings/includes/views/view-fields.php:78
|
4714 |
msgid "Choose..."
|
4715 |
msgstr ""
|
4716 |
|
4717 |
+
#: add-ons/user-listing/userlisting.php:1918
|
4718 |
msgid "Choose or type in an option..."
|
4719 |
msgstr ""
|
4720 |
|
4721 |
+
#: add-ons/user-listing/userlisting.php:2021
|
4722 |
msgid "No options available"
|
4723 |
msgstr ""
|
4724 |
|
4725 |
+
#: add-ons/user-listing/userlisting.php:2176
|
4726 |
msgid "Remove All Filters"
|
4727 |
msgstr ""
|
4728 |
|
4729 |
+
#: add-ons/user-listing/userlisting.php:2291
|
4730 |
msgid "Search"
|
4731 |
msgstr ""
|
4732 |
|
4733 |
+
#: add-ons/user-listing/userlisting.php:2292
|
4734 |
msgid "Clear Results"
|
4735 |
msgstr ""
|
4736 |
|
4737 |
+
#: add-ons/user-listing/userlisting.php:2497, add-ons/user-listing/userlisting.php:2501
|
4738 |
msgid "Extra shortcode parameters"
|
4739 |
msgstr ""
|
4740 |
|
4741 |
+
#: add-ons/user-listing/userlisting.php:2499
|
4742 |
msgid "View all extra shortcode parameters"
|
4743 |
msgstr ""
|
4744 |
|
4745 |
+
#: add-ons/user-listing/userlisting.php:2504
|
4746 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
4747 |
msgstr ""
|
4748 |
|
4749 |
+
#: add-ons/user-listing/userlisting.php:2505
|
4750 |
msgid "Example:"
|
4751 |
msgstr ""
|
4752 |
|
4753 |
+
#: add-ons/user-listing/userlisting.php:2507
|
4754 |
msgid "Remember though, that the field-value combination must exist in the database."
|
4755 |
msgstr ""
|
4756 |
|
4757 |
+
#: add-ons/user-listing/userlisting.php:2513
|
4758 |
msgid "displays only the users that you specified the user_id for"
|
4759 |
msgstr ""
|
4760 |
|
4761 |
+
#: add-ons/user-listing/userlisting.php:2519
|
4762 |
msgid "displays all users except the ones you specified the user_id for"
|
4763 |
msgstr ""
|
4764 |
|
4765 |
+
#: add-ons/user-listing/userlisting.php:2558, features/admin-approval/class-admin-approval.php:176
|
4766 |
msgid "Lastname"
|
4767 |
msgstr ""
|
4768 |
|
4769 |
+
#: add-ons/user-listing/userlisting.php:2583
|
4770 |
msgid "Random (very slow on large databases > 10K user)"
|
4771 |
msgstr ""
|
4772 |
|
4773 |
+
#: add-ons/user-listing/userlisting.php:2586
|
4774 |
msgid "Ascending"
|
4775 |
msgstr ""
|
4776 |
|
4777 |
+
#: add-ons/user-listing/userlisting.php:2587
|
4778 |
msgid "Descending"
|
4779 |
msgstr ""
|
4780 |
|
4781 |
+
#: add-ons/user-listing/userlisting.php:2592
|
4782 |
msgid "Roles to Display"
|
4783 |
msgstr ""
|
4784 |
|
4785 |
+
#: add-ons/user-listing/userlisting.php:2592
|
4786 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
4787 |
msgstr ""
|
4788 |
|
4789 |
+
#: add-ons/user-listing/userlisting.php:2593
|
4790 |
msgid "Number of Users/Page"
|
4791 |
msgstr ""
|
4792 |
|
4793 |
+
#: add-ons/user-listing/userlisting.php:2593
|
4794 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
4795 |
msgstr ""
|
4796 |
|
4797 |
+
#: add-ons/user-listing/userlisting.php:2594
|
4798 |
msgid "Default Sorting Criteria"
|
4799 |
msgstr ""
|
4800 |
|
4801 |
+
#: add-ons/user-listing/userlisting.php:2594
|
4802 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
4803 |
msgstr ""
|
4804 |
|
4805 |
+
#: add-ons/user-listing/userlisting.php:2595
|
4806 |
msgid "Default Sorting Order"
|
4807 |
msgstr ""
|
4808 |
|
4809 |
+
#: add-ons/user-listing/userlisting.php:2595
|
4810 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
+
#: add-ons/user-listing/userlisting.php:2596
|
4814 |
msgid "Avatar Size (All-userlisting)"
|
4815 |
msgstr ""
|
4816 |
|
4817 |
+
#: add-ons/user-listing/userlisting.php:2596
|
4818 |
msgid "Set the avatar size on the all-userlisting only"
|
4819 |
msgstr ""
|
4820 |
|
4821 |
+
#: add-ons/user-listing/userlisting.php:2597
|
4822 |
msgid "Avatar Size (Single-userlisting)"
|
4823 |
msgstr ""
|
4824 |
|
4825 |
+
#: add-ons/user-listing/userlisting.php:2597
|
4826 |
msgid "Set the avatar size on the single-userlisting only"
|
4827 |
msgstr ""
|
4828 |
|
4829 |
+
#: add-ons/user-listing/userlisting.php:2598
|
4830 |
msgid "Visible only to logged in users?"
|
4831 |
msgstr ""
|
4832 |
|
4833 |
+
#: add-ons/user-listing/userlisting.php:2598
|
4834 |
msgid "The userlisting will only be visible only to the logged in users"
|
4835 |
msgstr ""
|
4836 |
|
4837 |
+
#: add-ons/user-listing/userlisting.php:2599
|
4838 |
msgid "Visible to following Roles"
|
4839 |
msgstr ""
|
4840 |
|
4841 |
+
#: add-ons/user-listing/userlisting.php:2599
|
4842 |
msgid "The userlisting will only be visible to the following roles"
|
4843 |
msgstr ""
|
4844 |
|
4845 |
+
#: add-ons/user-listing/userlisting.php:2605
|
4846 |
msgid "Userlisting Settings"
|
4847 |
msgstr ""
|
4848 |
|
4849 |
+
#: add-ons/user-listing/userlisting.php:2630
|
4850 |
msgid "Label"
|
4851 |
msgstr ""
|
4852 |
|
4853 |
+
#: add-ons/user-listing/userlisting.php:2630
|
4854 |
msgid "Choose the facet name that appears on the frontend"
|
4855 |
msgstr ""
|
4856 |
|
4857 |
+
#: add-ons/user-listing/userlisting.php:2631
|
4858 |
msgid "Facet Type"
|
4859 |
msgstr ""
|
4860 |
|
4861 |
+
#: add-ons/user-listing/userlisting.php:2631
|
4862 |
msgid "Choose the facet menu type"
|
4863 |
msgstr ""
|
4864 |
|
4865 |
+
#: add-ons/user-listing/userlisting.php:2632
|
4866 |
msgid "Facet Meta"
|
4867 |
msgstr ""
|
4868 |
|
4869 |
+
#: add-ons/user-listing/userlisting.php:2632
|
4870 |
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."
|
4871 |
msgstr ""
|
4872 |
|
4873 |
+
#: add-ons/user-listing/userlisting.php:2633
|
4874 |
msgid "Behaviour"
|
4875 |
msgstr ""
|
4876 |
|
4877 |
+
#: add-ons/user-listing/userlisting.php:2633
|
4878 |
msgid "Narrow the results"
|
4879 |
msgstr ""
|
4880 |
|
4881 |
+
#: add-ons/user-listing/userlisting.php:2633
|
4882 |
msgid "Expand the results"
|
4883 |
msgstr ""
|
4884 |
|
4885 |
+
#: add-ons/user-listing/userlisting.php:2633
|
4886 |
msgid "Choose how multiple selections affect the results"
|
4887 |
msgstr ""
|
4888 |
|
4889 |
+
#: add-ons/user-listing/userlisting.php:2634
|
4890 |
msgid "Visible choices"
|
4891 |
msgstr ""
|
4892 |
|
4893 |
+
#: add-ons/user-listing/userlisting.php:2634
|
4894 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
4895 |
msgstr ""
|
4896 |
|
4897 |
+
#: add-ons/user-listing/userlisting.php:2659
|
4898 |
msgid "Search Fields"
|
4899 |
msgstr ""
|
4900 |
|
4901 |
+
#: add-ons/user-listing/userlisting.php:2659
|
4902 |
msgid "Choose the fields in which the Search Field will look in"
|
4903 |
msgstr ""
|
4904 |
|
4905 |
+
#: add-ons/user-listing/userlisting.php:2664
|
4906 |
msgid "Search Settings"
|
4907 |
msgstr ""
|
4908 |
|
4909 |
+
#: add-ons/user-listing/userlisting.php:2736
|
4910 |
msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
|
4911 |
msgstr ""
|
4912 |
|
4913 |
+
#: add-ons/user-listing/userlisting.php:2736
|
4914 |
msgid "You can find it in the Profile Builder menu."
|
4915 |
msgstr ""
|
4916 |
|
4917 |
+
#: add-ons/user-listing/userlisting.php:2911
|
4918 |
msgid "No results found!"
|
4919 |
msgstr ""
|
4920 |
|
7539 |
msgid "An error occurred, please try again later."
|
7540 |
msgstr ""
|
7541 |
|
7542 |
+
#: admin/advanced-settings/includes/fields/unique-display-name.php:20
|
7543 |
msgid "This display name is already in use. Please choose another one."
|
7544 |
msgstr ""
|
7545 |
|