Version Description
- Fix: Allow back-end user profile edits when the Unique Display Name for users settings is active
- Fix: Issue with Export Settings functionality not exporting the new add-ons page settings
- Fix: A case where the Email Change request pending message was displayed incorrectly
- Misc: Added a filter which can be used to modify the required permission in order to use the User Role Select field on an Edit Profile form: wppb_user_role_select_field_capability
Download this release
Release Info
Developer | raster02 |
Plugin | User registration & user profile – Profile Builder |
Version | 3.7.5 |
Comparing to | |
See all releases |
Code changes from version 3.7.4 to 3.7.5
- add-ons-free/import-export/pbie-export.php +2 -0
- admin/advanced-settings/includes/fields/unique-display-name.php +9 -4
- admin/advanced-settings/includes/forms/confirm-user-email-change.php +4 -1
- front-end/default-fields/user-role/user-role.php +2 -2
- index.php +3 -3
- readme.txt +7 -1
- translation/profile-builder.pot +94 -94
add-ons-free/import-export/pbie-export.php
CHANGED
@@ -36,6 +36,8 @@ function wppb_pbie_export_our_json() {
|
|
36 |
// Module Settings
|
37 |
'wppb_module_settings',
|
38 |
'wppb_module_settings_description',
|
|
|
|
|
39 |
// Email Customizer Settings
|
40 |
'wppb_emailc_common_settings_from_name',
|
41 |
'wppb_emailc_common_settings_from_reply_to_email',
|
36 |
// Module Settings
|
37 |
'wppb_module_settings',
|
38 |
'wppb_module_settings_description',
|
39 |
+
'wppb_free_add_ons_settings',
|
40 |
+
'wppb_advanced_add_ons_settings',
|
41 |
// Email Customizer Settings
|
42 |
'wppb_emailc_common_settings_from_name',
|
43 |
'wppb_emailc_common_settings_from_reply_to_email',
|
admin/advanced-settings/includes/fields/unique-display-name.php
CHANGED
@@ -3,10 +3,15 @@
|
|
3 |
function wppb_toolbox_unique_display_name( $message, $field, $request_data, $form_location ) {
|
4 |
|
5 |
if ( isset( $request_data['display_name']) ) {
|
6 |
-
if ( isset( $_GET['edit_user'] ) )
|
7 |
-
|
8 |
-
|
9 |
-
|
|
|
|
|
|
|
|
|
|
|
10 |
|
11 |
if ( $request_data['display_name'] == $user->display_name )
|
12 |
return $message;
|
3 |
function wppb_toolbox_unique_display_name( $message, $field, $request_data, $form_location ) {
|
4 |
|
5 |
if ( isset( $request_data['display_name']) ) {
|
6 |
+
if ( isset( $_GET['edit_user'] ) ) {
|
7 |
+
$user = get_userdata(sanitize_text_field($_GET['edit_user']));
|
8 |
+
}
|
9 |
+
else if ( isset( $request_data['user_id'] ) ) {
|
10 |
+
$user = get_userdata($request_data['user_id']);
|
11 |
+
}
|
12 |
+
else {
|
13 |
+
$user = wp_get_current_user();
|
14 |
+
}
|
15 |
|
16 |
if ( $request_data['display_name'] == $user->display_name )
|
17 |
return $message;
|
admin/advanced-settings/includes/forms/confirm-user-email-change.php
CHANGED
@@ -40,7 +40,10 @@ function wppb_toolbox_check_pending_email() {
|
|
40 |
|
41 |
if ( empty( $unapproved_email_address ) && !isset( $_GET['wppb_epaa_review_users'] )) {
|
42 |
$transient_check_key = apply_filters('wppb_pending_email_change_transient_key', '');
|
43 |
-
|
|
|
|
|
|
|
44 |
|
45 |
if ( $transient_check !== false )
|
46 |
$input_status = 'disabled';
|
40 |
|
41 |
if ( empty( $unapproved_email_address ) && !isset( $_GET['wppb_epaa_review_users'] )) {
|
42 |
$transient_check_key = apply_filters('wppb_pending_email_change_transient_key', '');
|
43 |
+
|
44 |
+
if ( !empty( $transient_check_key ) )
|
45 |
+
$transient_check = get_transient( 'wppb_pending_email_change_request_exists_' . $transient_check_key );
|
46 |
+
else $transient_check = false;
|
47 |
|
48 |
if ( $transient_check !== false )
|
49 |
$input_status = 'disabled';
|
front-end/default-fields/user-role/user-role.php
CHANGED
@@ -62,7 +62,7 @@ function wppb_user_role_handler( $output, $form_location, $field, $user_id, $fie
|
|
62 |
|
63 |
$extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location );
|
64 |
|
65 |
-
if( $form_location == 'register' || ( $form_location == 'edit_profile' && current_user_can('manage_options') && $user_can_manage_options == false ) || ( $show_user_role_on_edit_profile && !current_user_can('manage_options') ) ) {
|
66 |
$error_mark = ( ( $field['required'] == 'Yes' ) ? '<span class="wppb-required" title="'.wppb_required_field_error($field["field-title"]).'">*</span>' : '' );
|
67 |
|
68 |
if ( array_key_exists( $field['id'], $field_check_errors ) )
|
@@ -95,7 +95,7 @@ function wppb_user_role_handler( $output, $form_location, $field, $user_id, $fie
|
|
95 |
|
96 |
$output .= '</select>';
|
97 |
|
98 |
-
if( $form_location == 'edit_profile' && !$show_user_role_on_edit_profile )
|
99 |
$output .= '<span class="wppb-description-delimiter">'. __( 'Only administrators can see this field on edit profile forms.', 'profile-builder' ) .'</span>';
|
100 |
|
101 |
if( !empty( $item_description ) )
|
62 |
|
63 |
$extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location );
|
64 |
|
65 |
+
if( $form_location == 'register' || ( $form_location == 'edit_profile' && apply_filters( 'wppb_user_role_select_field_capability', current_user_can('manage_options' )) && $user_can_manage_options == false ) || ( $show_user_role_on_edit_profile && !current_user_can('manage_options') ) ) {
|
66 |
$error_mark = ( ( $field['required'] == 'Yes' ) ? '<span class="wppb-required" title="'.wppb_required_field_error($field["field-title"]).'">*</span>' : '' );
|
67 |
|
68 |
if ( array_key_exists( $field['id'], $field_check_errors ) )
|
95 |
|
96 |
$output .= '</select>';
|
97 |
|
98 |
+
if( $form_location == 'edit_profile' && !$show_user_role_on_edit_profile && !apply_filters( 'wppb_user_role_select_field_capability', current_user_can('manage_options' )) )
|
99 |
$output .= '<span class="wppb-description-delimiter">'. __( 'Only administrators can see this field on edit profile forms.', 'profile-builder' ) .'</span>';
|
100 |
|
101 |
if( !empty( $item_description ) )
|
index.php
CHANGED
@@ -3,13 +3,13 @@
|
|
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.6.4
|
14 |
*
|
15 |
* == Copyright ==
|
@@ -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.5
|
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.5
|
13 |
* Elementor Pro tested up to: 3.6.4
|
14 |
*
|
15 |
* == Copyright ==
|
362 |
*
|
363 |
*
|
364 |
*/
|
365 |
+
define('PROFILE_BUILDER_VERSION', '3.7.5' );
|
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: 5.9
|
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,12 @@ 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.4 =
|
181 |
* Fix: Admin menu position with a future WordPress update
|
182 |
* Fix: An issue when cloning a user role
|
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: 5.9
|
7 |
+
Stable tag: 3.7.5
|
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.5 =
|
181 |
+
* Fix: Allow back-end user profile edits when the Unique Display Name for users settings is active
|
182 |
+
* Fix: Issue with Export Settings functionality not exporting the new add-ons page settings
|
183 |
+
* Fix: A case where the Email Change request pending message was displayed incorrectly
|
184 |
+
* Misc: Added a filter which can be used to modify the required permission in order to use the User Role Select field on an Edit Profile form: wppb_user_role_select_field_capability
|
185 |
+
|
186 |
= 3.7.4 =
|
187 |
* Fix: Admin menu position with a future WordPress update
|
188 |
* Fix: An issue when cloning a user role
|
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 |
|
@@ -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 |
|
@@ -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:60, 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 |
|
@@ -3782,7 +3782,7 @@ msgstr ""
|
|
3782 |
msgid "Dashboard (redirect users from accessing the dashboard)"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
-
#: add-ons/custom-redirects/custom_redirects_admin.php:59, add-ons/user-listing/userlisting.php:168, add-ons/user-listing/userlisting.php:
|
3786 |
msgid "User ID"
|
3787 |
msgstr ""
|
3788 |
|
@@ -4338,27 +4338,27 @@ msgstr ""
|
|
4338 |
msgid "No Edit-profile Forms found in trash"
|
4339 |
msgstr ""
|
4340 |
|
4341 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:
|
4342 |
msgid "Shortcode"
|
4343 |
msgstr ""
|
4344 |
|
4345 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:
|
4346 |
msgid "(no title)"
|
4347 |
msgstr ""
|
4348 |
|
4349 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:
|
4350 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
4351 |
msgstr ""
|
4352 |
|
4353 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:
|
4354 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
4355 |
msgstr ""
|
4356 |
|
4357 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:
|
4358 |
msgid "The shortcode will be available after you publish this form."
|
4359 |
msgstr ""
|
4360 |
|
4361 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:
|
4362 |
msgid "Form Shortcode"
|
4363 |
msgstr ""
|
4364 |
|
@@ -4522,7 +4522,7 @@ msgstr ""
|
|
4522 |
msgid "Display name as"
|
4523 |
msgstr ""
|
4524 |
|
4525 |
-
#: 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:
|
4526 |
msgid "Role"
|
4527 |
msgstr ""
|
4528 |
|
@@ -4530,11 +4530,11 @@ msgstr ""
|
|
4530 |
msgid "Role Slug"
|
4531 |
msgstr ""
|
4532 |
|
4533 |
-
#: add-ons/user-listing/userlisting.php:171, add-ons/user-listing/userlisting.php:
|
4534 |
msgid "Registration Date"
|
4535 |
msgstr ""
|
4536 |
|
4537 |
-
#: add-ons/user-listing/userlisting.php:172, add-ons/user-listing/userlisting.php:
|
4538 |
msgid "Number of Posts"
|
4539 |
msgstr ""
|
4540 |
|
@@ -4562,7 +4562,7 @@ msgstr ""
|
|
4562 |
msgid "Search all Fields"
|
4563 |
msgstr ""
|
4564 |
|
4565 |
-
#: add-ons/user-listing/userlisting.php:223, add-ons/user-listing/userlisting.php:
|
4566 |
msgid "Faceted Menus"
|
4567 |
msgstr ""
|
4568 |
|
@@ -4598,7 +4598,7 @@ msgstr ""
|
|
4598 |
msgid "Avatar"
|
4599 |
msgstr ""
|
4600 |
|
4601 |
-
#: add-ons/user-listing/userlisting.php:337, add-ons/user-listing/userlisting.php:
|
4602 |
msgid "Firstname"
|
4603 |
msgstr ""
|
4604 |
|
@@ -4630,19 +4630,19 @@ msgstr ""
|
|
4630 |
msgid "None"
|
4631 |
msgstr ""
|
4632 |
|
4633 |
-
#: add-ons/user-listing/userlisting.php:914, add-ons/user-listing/userlisting.php:
|
4634 |
msgid "Jabber"
|
4635 |
msgstr ""
|
4636 |
|
4637 |
-
#: add-ons/user-listing/userlisting.php:911, add-ons/user-listing/userlisting.php:
|
4638 |
msgid "Yim"
|
4639 |
msgstr ""
|
4640 |
|
4641 |
-
#: add-ons/user-listing/userlisting.php:908, add-ons/user-listing/userlisting.php:
|
4642 |
msgid "Aim"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
-
#: add-ons/user-listing/userlisting.php:896, add-ons/user-listing/userlisting.php:
|
4646 |
msgid "Display Name"
|
4647 |
msgstr ""
|
4648 |
|
@@ -4650,267 +4650,267 @@ msgstr ""
|
|
4650 |
msgid "First/Lastname"
|
4651 |
msgstr ""
|
4652 |
|
4653 |
-
#: add-ons/user-listing/userlisting.php:1209, add-ons/user-listing/userlisting.php:
|
4654 |
msgid "Search Users by All Fields"
|
4655 |
msgstr ""
|
4656 |
|
4657 |
-
#: add-ons/user-listing/userlisting.php:
|
4658 |
msgid "Click here to see more information about this user."
|
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 "More..."
|
4667 |
msgstr ""
|
4668 |
|
4669 |
-
#: add-ons/user-listing/userlisting.php:
|
4670 |
msgid "Remove Marker"
|
4671 |
msgstr ""
|
4672 |
|
4673 |
-
#: add-ons/user-listing/userlisting.php:
|
4674 |
msgid "View Map"
|
4675 |
msgstr ""
|
4676 |
|
4677 |
-
#: add-ons/user-listing/userlisting.php:
|
4678 |
msgid "Click here to go back"
|
4679 |
msgstr ""
|
4680 |
|
4681 |
-
#: add-ons/user-listing/userlisting.php:
|
4682 |
msgid "Back"
|
4683 |
msgstr ""
|
4684 |
|
4685 |
-
#: add-ons/user-listing/userlisting.php:
|
4686 |
msgid "You don't have any pagination settings on this userlisting!"
|
4687 |
msgstr ""
|
4688 |
|
4689 |
-
#: add-ons/user-listing/userlisting.php:
|
4690 |
msgid "«« First"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
-
#: add-ons/user-listing/userlisting.php:
|
4694 |
msgid "« Prev"
|
4695 |
msgstr ""
|
4696 |
|
4697 |
-
#: add-ons/user-listing/userlisting.php:
|
4698 |
msgid "Next » "
|
4699 |
msgstr ""
|
4700 |
|
4701 |
-
#: add-ons/user-listing/userlisting.php:
|
4702 |
msgid "Last »»"
|
4703 |
msgstr ""
|
4704 |
|
4705 |
-
#: add-ons/user-listing/userlisting.php:
|
4706 |
msgid "Show All"
|
4707 |
msgstr ""
|
4708 |
|
4709 |
-
#: add-ons/user-listing/userlisting.php:
|
4710 |
msgid "Choose..."
|
4711 |
msgstr ""
|
4712 |
|
4713 |
-
#: add-ons/user-listing/userlisting.php:
|
4714 |
msgid "Choose or type in an option..."
|
4715 |
msgstr ""
|
4716 |
|
4717 |
-
#: add-ons/user-listing/userlisting.php:
|
4718 |
msgid "No options available"
|
4719 |
msgstr ""
|
4720 |
|
4721 |
-
#: add-ons/user-listing/userlisting.php:
|
4722 |
msgid "Remove All Filters"
|
4723 |
msgstr ""
|
4724 |
|
4725 |
-
#: add-ons/user-listing/userlisting.php:
|
4726 |
msgid "Search"
|
4727 |
msgstr ""
|
4728 |
|
4729 |
-
#: add-ons/user-listing/userlisting.php:
|
4730 |
msgid "Clear Results"
|
4731 |
msgstr ""
|
4732 |
|
4733 |
-
#: add-ons/user-listing/userlisting.php:
|
4734 |
msgid "Extra shortcode parameters"
|
4735 |
msgstr ""
|
4736 |
|
4737 |
-
#: add-ons/user-listing/userlisting.php:
|
4738 |
msgid "View all extra shortcode parameters"
|
4739 |
msgstr ""
|
4740 |
|
4741 |
-
#: add-ons/user-listing/userlisting.php:
|
4742 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
4743 |
msgstr ""
|
4744 |
|
4745 |
-
#: add-ons/user-listing/userlisting.php:
|
4746 |
msgid "Example:"
|
4747 |
msgstr ""
|
4748 |
|
4749 |
-
#: add-ons/user-listing/userlisting.php:
|
4750 |
msgid "Remember though, that the field-value combination must exist in the database."
|
4751 |
msgstr ""
|
4752 |
|
4753 |
-
#: add-ons/user-listing/userlisting.php:
|
4754 |
msgid "displays only the users that you specified the user_id for"
|
4755 |
msgstr ""
|
4756 |
|
4757 |
-
#: add-ons/user-listing/userlisting.php:
|
4758 |
msgid "displays all users except the ones you specified the user_id for"
|
4759 |
msgstr ""
|
4760 |
|
4761 |
-
#: add-ons/user-listing/userlisting.php:
|
4762 |
msgid "Lastname"
|
4763 |
msgstr ""
|
4764 |
|
4765 |
-
#: add-ons/user-listing/userlisting.php:
|
4766 |
msgid "Random (very slow on large databases > 10K user)"
|
4767 |
msgstr ""
|
4768 |
|
4769 |
-
#: add-ons/user-listing/userlisting.php:
|
4770 |
msgid "Ascending"
|
4771 |
msgstr ""
|
4772 |
|
4773 |
-
#: add-ons/user-listing/userlisting.php:
|
4774 |
msgid "Descending"
|
4775 |
msgstr ""
|
4776 |
|
4777 |
-
#: add-ons/user-listing/userlisting.php:
|
4778 |
msgid "Roles to Display"
|
4779 |
msgstr ""
|
4780 |
|
4781 |
-
#: add-ons/user-listing/userlisting.php:
|
4782 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
4783 |
msgstr ""
|
4784 |
|
4785 |
-
#: add-ons/user-listing/userlisting.php:
|
4786 |
msgid "Number of Users/Page"
|
4787 |
msgstr ""
|
4788 |
|
4789 |
-
#: add-ons/user-listing/userlisting.php:
|
4790 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
4791 |
msgstr ""
|
4792 |
|
4793 |
-
#: add-ons/user-listing/userlisting.php:
|
4794 |
msgid "Default Sorting Criteria"
|
4795 |
msgstr ""
|
4796 |
|
4797 |
-
#: add-ons/user-listing/userlisting.php:
|
4798 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
4799 |
msgstr ""
|
4800 |
|
4801 |
-
#: add-ons/user-listing/userlisting.php:
|
4802 |
msgid "Default Sorting Order"
|
4803 |
msgstr ""
|
4804 |
|
4805 |
-
#: add-ons/user-listing/userlisting.php:
|
4806 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
4807 |
msgstr ""
|
4808 |
|
4809 |
-
#: add-ons/user-listing/userlisting.php:
|
4810 |
msgid "Avatar Size (All-userlisting)"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
-
#: add-ons/user-listing/userlisting.php:
|
4814 |
msgid "Set the avatar size on the all-userlisting only"
|
4815 |
msgstr ""
|
4816 |
|
4817 |
-
#: add-ons/user-listing/userlisting.php:
|
4818 |
msgid "Avatar Size (Single-userlisting)"
|
4819 |
msgstr ""
|
4820 |
|
4821 |
-
#: add-ons/user-listing/userlisting.php:
|
4822 |
msgid "Set the avatar size on the single-userlisting only"
|
4823 |
msgstr ""
|
4824 |
|
4825 |
-
#: add-ons/user-listing/userlisting.php:
|
4826 |
msgid "Visible only to logged in users?"
|
4827 |
msgstr ""
|
4828 |
|
4829 |
-
#: add-ons/user-listing/userlisting.php:
|
4830 |
msgid "The userlisting will only be visible only to the logged in users"
|
4831 |
msgstr ""
|
4832 |
|
4833 |
-
#: add-ons/user-listing/userlisting.php:
|
4834 |
msgid "Visible to following Roles"
|
4835 |
msgstr ""
|
4836 |
|
4837 |
-
#: add-ons/user-listing/userlisting.php:
|
4838 |
msgid "The userlisting will only be visible to the following roles"
|
4839 |
msgstr ""
|
4840 |
|
4841 |
-
#: add-ons/user-listing/userlisting.php:
|
4842 |
msgid "Userlisting Settings"
|
4843 |
msgstr ""
|
4844 |
|
4845 |
-
#: add-ons/user-listing/userlisting.php:
|
4846 |
msgid "Label"
|
4847 |
msgstr ""
|
4848 |
|
4849 |
-
#: add-ons/user-listing/userlisting.php:
|
4850 |
msgid "Choose the facet name that appears on the frontend"
|
4851 |
msgstr ""
|
4852 |
|
4853 |
-
#: add-ons/user-listing/userlisting.php:
|
4854 |
msgid "Facet Type"
|
4855 |
msgstr ""
|
4856 |
|
4857 |
-
#: add-ons/user-listing/userlisting.php:
|
4858 |
msgid "Choose the facet menu type"
|
4859 |
msgstr ""
|
4860 |
|
4861 |
-
#: add-ons/user-listing/userlisting.php:
|
4862 |
msgid "Facet Meta"
|
4863 |
msgstr ""
|
4864 |
|
4865 |
-
#: add-ons/user-listing/userlisting.php:
|
4866 |
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."
|
4867 |
msgstr ""
|
4868 |
|
4869 |
-
#: add-ons/user-listing/userlisting.php:
|
4870 |
msgid "Behaviour"
|
4871 |
msgstr ""
|
4872 |
|
4873 |
-
#: add-ons/user-listing/userlisting.php:
|
4874 |
msgid "Narrow the results"
|
4875 |
msgstr ""
|
4876 |
|
4877 |
-
#: add-ons/user-listing/userlisting.php:
|
4878 |
msgid "Expand the results"
|
4879 |
msgstr ""
|
4880 |
|
4881 |
-
#: add-ons/user-listing/userlisting.php:
|
4882 |
msgid "Choose how multiple selections affect the results"
|
4883 |
msgstr ""
|
4884 |
|
4885 |
-
#: add-ons/user-listing/userlisting.php:
|
4886 |
msgid "Visible choices"
|
4887 |
msgstr ""
|
4888 |
|
4889 |
-
#: add-ons/user-listing/userlisting.php:
|
4890 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
4891 |
msgstr ""
|
4892 |
|
4893 |
-
#: add-ons/user-listing/userlisting.php:
|
4894 |
msgid "Search Fields"
|
4895 |
msgstr ""
|
4896 |
|
4897 |
-
#: add-ons/user-listing/userlisting.php:
|
4898 |
msgid "Choose the fields in which the Search Field will look in"
|
4899 |
msgstr ""
|
4900 |
|
4901 |
-
#: add-ons/user-listing/userlisting.php:
|
4902 |
msgid "Search Settings"
|
4903 |
msgstr ""
|
4904 |
|
4905 |
-
#: add-ons/user-listing/userlisting.php:
|
4906 |
msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
|
4907 |
msgstr ""
|
4908 |
|
4909 |
-
#: add-ons/user-listing/userlisting.php:
|
4910 |
msgid "You can find it in the Profile Builder menu."
|
4911 |
msgstr ""
|
4912 |
|
4913 |
-
#: add-ons/user-listing/userlisting.php:
|
4914 |
msgid "No results found!"
|
4915 |
msgstr ""
|
4916 |
|
@@ -5726,11 +5726,11 @@ msgstr ""
|
|
5726 |
msgid "Import"
|
5727 |
msgstr ""
|
5728 |
|
5729 |
-
#: add-ons-free/import-export/import-export.php:29, add-ons-free/import-export/pbie-export.php:
|
5730 |
msgid "Export"
|
5731 |
msgstr ""
|
5732 |
|
5733 |
-
#: add-ons-free/import-export/pbie-export.php:
|
5734 |
msgid "Export Profile Builder options as a .json file. This allows you to easily import the configuration into another site."
|
5735 |
msgstr ""
|
5736 |
|
@@ -7535,15 +7535,15 @@ msgstr ""
|
|
7535 |
msgid "An error occurred, please try again later."
|
7536 |
msgstr ""
|
7537 |
|
7538 |
-
#: admin/advanced-settings/includes/fields/unique-display-name.php:
|
7539 |
msgid "This display name is already in use. Please choose another one."
|
7540 |
msgstr ""
|
7541 |
|
7542 |
-
#: admin/advanced-settings/includes/forms/confirm-user-email-change.php:
|
7543 |
msgid "Email address change request for %s"
|
7544 |
msgstr ""
|
7545 |
|
7546 |
-
#: admin/advanced-settings/includes/forms/confirm-user-email-change.php:
|
7547 |
msgid "Someone requested to change the email address for your account.<br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To update your account email address to the one requested (%1$s), visit the following link: %2$s"
|
7548 |
msgstr ""
|
7549 |
|
317 |
msgid "Show"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: admin/admin-bar.php:81, add-ons/user-listing/userlisting.php:1799
|
321 |
msgid "Hide"
|
322 |
msgstr ""
|
323 |
|
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:2590, add-ons-advanced/bbpress/bbpress-page.php:157, 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:182, assets/misc/elementor/widgets/class-pb-widget-ul.php:109
|
785 |
msgid "Yes"
|
786 |
msgstr ""
|
787 |
|
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:60, 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:2543, 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:2544, 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:2552
|
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:2546
|
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:2547
|
1445 |
msgid "Biographical Info"
|
1446 |
msgstr ""
|
1447 |
|
3782 |
msgid "Dashboard (redirect users from accessing the dashboard)"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
+
#: add-ons/custom-redirects/custom_redirects_admin.php:59, add-ons/user-listing/userlisting.php:168, add-ons/user-listing/userlisting.php:2545
|
3786 |
msgid "User ID"
|
3787 |
msgstr ""
|
3788 |
|
4338 |
msgid "No Edit-profile Forms found in trash"
|
4339 |
msgstr ""
|
4340 |
|
4341 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:2439
|
4342 |
msgid "Shortcode"
|
4343 |
msgstr ""
|
4344 |
|
4345 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:2460
|
4346 |
msgid "(no title)"
|
4347 |
msgstr ""
|
4348 |
|
4349 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:2482
|
4350 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
4351 |
msgstr ""
|
4352 |
|
4353 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:2486
|
4354 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
4355 |
msgstr ""
|
4356 |
|
4357 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:2480
|
4358 |
msgid "The shortcode will be available after you publish this form."
|
4359 |
msgstr ""
|
4360 |
|
4361 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:2519
|
4362 |
msgid "Form Shortcode"
|
4363 |
msgstr ""
|
4364 |
|
4522 |
msgid "Display name as"
|
4523 |
msgstr ""
|
4524 |
|
4525 |
+
#: 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:2554, features/admin-approval/class-admin-approval.php:178, features/roles-editor/roles-editor.php:256
|
4526 |
msgid "Role"
|
4527 |
msgstr ""
|
4528 |
|
4530 |
msgid "Role Slug"
|
4531 |
msgstr ""
|
4532 |
|
4533 |
+
#: add-ons/user-listing/userlisting.php:171, add-ons/user-listing/userlisting.php:2548
|
4534 |
msgid "Registration Date"
|
4535 |
msgstr ""
|
4536 |
|
4537 |
+
#: add-ons/user-listing/userlisting.php:172, add-ons/user-listing/userlisting.php:2553
|
4538 |
msgid "Number of Posts"
|
4539 |
msgstr ""
|
4540 |
|
4562 |
msgid "Search all Fields"
|
4563 |
msgstr ""
|
4564 |
|
4565 |
+
#: add-ons/user-listing/userlisting.php:223, add-ons/user-listing/userlisting.php:2632
|
4566 |
msgid "Faceted Menus"
|
4567 |
msgstr ""
|
4568 |
|
4598 |
msgid "Avatar"
|
4599 |
msgstr ""
|
4600 |
|
4601 |
+
#: add-ons/user-listing/userlisting.php:337, add-ons/user-listing/userlisting.php:2549, features/admin-approval/class-admin-approval.php:175
|
4602 |
msgid "Firstname"
|
4603 |
msgstr ""
|
4604 |
|
4630 |
msgid "None"
|
4631 |
msgstr ""
|
4632 |
|
4633 |
+
#: add-ons/user-listing/userlisting.php:914, add-ons/user-listing/userlisting.php:2560
|
4634 |
msgid "Jabber"
|
4635 |
msgstr ""
|
4636 |
|
4637 |
+
#: add-ons/user-listing/userlisting.php:911, add-ons/user-listing/userlisting.php:2559
|
4638 |
msgid "Yim"
|
4639 |
msgstr ""
|
4640 |
|
4641 |
+
#: add-ons/user-listing/userlisting.php:908, add-ons/user-listing/userlisting.php:2558
|
4642 |
msgid "Aim"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
+
#: add-ons/user-listing/userlisting.php:896, add-ons/user-listing/userlisting.php:2551
|
4646 |
msgid "Display Name"
|
4647 |
msgstr ""
|
4648 |
|
4650 |
msgid "First/Lastname"
|
4651 |
msgstr ""
|
4652 |
|
4653 |
+
#: add-ons/user-listing/userlisting.php:1209, add-ons/user-listing/userlisting.php:1730, add-ons/user-listing/userlisting.php:2266, add-ons/user-listing/userlisting.php:2752
|
4654 |
msgid "Search Users by All Fields"
|
4655 |
msgstr ""
|
4656 |
|
4657 |
+
#: add-ons/user-listing/userlisting.php:1511
|
4658 |
msgid "Click here to see more information about this user."
|
4659 |
msgstr ""
|
4660 |
|
4661 |
+
#: add-ons/user-listing/userlisting.php:1508
|
4662 |
msgid "Click here to see more information about this user"
|
4663 |
msgstr ""
|
4664 |
|
4665 |
+
#: add-ons/user-listing/userlisting.php:1508, add-ons/user-listing/userlisting.php:1508
|
4666 |
msgid "More..."
|
4667 |
msgstr ""
|
4668 |
|
4669 |
+
#: add-ons/user-listing/userlisting.php:1556, front-end/extra-fields/map/map.php:12
|
4670 |
msgid "Remove Marker"
|
4671 |
msgstr ""
|
4672 |
|
4673 |
+
#: add-ons/user-listing/userlisting.php:1538
|
4674 |
msgid "View Map"
|
4675 |
msgstr ""
|
4676 |
|
4677 |
+
#: add-ons/user-listing/userlisting.php:1687, add-ons/user-listing/userlisting.php:1684
|
4678 |
msgid "Click here to go back"
|
4679 |
msgstr ""
|
4680 |
|
4681 |
+
#: add-ons/user-listing/userlisting.php:1684, add-ons/user-listing/userlisting.php:1684
|
4682 |
msgid "Back"
|
4683 |
msgstr ""
|
4684 |
|
4685 |
+
#: add-ons/user-listing/userlisting.php:1749
|
4686 |
msgid "You don't have any pagination settings on this userlisting!"
|
4687 |
msgstr ""
|
4688 |
|
4689 |
+
#: add-ons/user-listing/userlisting.php:1717
|
4690 |
msgid "«« First"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
+
#: add-ons/user-listing/userlisting.php:1718
|
4694 |
msgid "« Prev"
|
4695 |
msgstr ""
|
4696 |
|
4697 |
+
#: add-ons/user-listing/userlisting.php:1719
|
4698 |
msgid "Next » "
|
4699 |
msgstr ""
|
4700 |
|
4701 |
+
#: add-ons/user-listing/userlisting.php:1720
|
4702 |
msgid "Last »»"
|
4703 |
msgstr ""
|
4704 |
|
4705 |
+
#: add-ons/user-listing/userlisting.php:1798
|
4706 |
msgid "Show All"
|
4707 |
msgstr ""
|
4708 |
|
4709 |
+
#: add-ons/user-listing/userlisting.php:1874, admin/advanced-settings/includes/views/view-fields.php:78
|
4710 |
msgid "Choose..."
|
4711 |
msgstr ""
|
4712 |
|
4713 |
+
#: add-ons/user-listing/userlisting.php:1910
|
4714 |
msgid "Choose or type in an option..."
|
4715 |
msgstr ""
|
4716 |
|
4717 |
+
#: add-ons/user-listing/userlisting.php:2013
|
4718 |
msgid "No options available"
|
4719 |
msgstr ""
|
4720 |
|
4721 |
+
#: add-ons/user-listing/userlisting.php:2168
|
4722 |
msgid "Remove All Filters"
|
4723 |
msgstr ""
|
4724 |
|
4725 |
+
#: add-ons/user-listing/userlisting.php:2283
|
4726 |
msgid "Search"
|
4727 |
msgstr ""
|
4728 |
|
4729 |
+
#: add-ons/user-listing/userlisting.php:2284
|
4730 |
msgid "Clear Results"
|
4731 |
msgstr ""
|
4732 |
|
4733 |
+
#: add-ons/user-listing/userlisting.php:2489, add-ons/user-listing/userlisting.php:2493
|
4734 |
msgid "Extra shortcode parameters"
|
4735 |
msgstr ""
|
4736 |
|
4737 |
+
#: add-ons/user-listing/userlisting.php:2491
|
4738 |
msgid "View all extra shortcode parameters"
|
4739 |
msgstr ""
|
4740 |
|
4741 |
+
#: add-ons/user-listing/userlisting.php:2496
|
4742 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
4743 |
msgstr ""
|
4744 |
|
4745 |
+
#: add-ons/user-listing/userlisting.php:2497
|
4746 |
msgid "Example:"
|
4747 |
msgstr ""
|
4748 |
|
4749 |
+
#: add-ons/user-listing/userlisting.php:2499
|
4750 |
msgid "Remember though, that the field-value combination must exist in the database."
|
4751 |
msgstr ""
|
4752 |
|
4753 |
+
#: add-ons/user-listing/userlisting.php:2505
|
4754 |
msgid "displays only the users that you specified the user_id for"
|
4755 |
msgstr ""
|
4756 |
|
4757 |
+
#: add-ons/user-listing/userlisting.php:2511
|
4758 |
msgid "displays all users except the ones you specified the user_id for"
|
4759 |
msgstr ""
|
4760 |
|
4761 |
+
#: add-ons/user-listing/userlisting.php:2550, features/admin-approval/class-admin-approval.php:176
|
4762 |
msgid "Lastname"
|
4763 |
msgstr ""
|
4764 |
|
4765 |
+
#: add-ons/user-listing/userlisting.php:2575
|
4766 |
msgid "Random (very slow on large databases > 10K user)"
|
4767 |
msgstr ""
|
4768 |
|
4769 |
+
#: add-ons/user-listing/userlisting.php:2578
|
4770 |
msgid "Ascending"
|
4771 |
msgstr ""
|
4772 |
|
4773 |
+
#: add-ons/user-listing/userlisting.php:2579
|
4774 |
msgid "Descending"
|
4775 |
msgstr ""
|
4776 |
|
4777 |
+
#: add-ons/user-listing/userlisting.php:2584
|
4778 |
msgid "Roles to Display"
|
4779 |
msgstr ""
|
4780 |
|
4781 |
+
#: add-ons/user-listing/userlisting.php:2584
|
4782 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
4783 |
msgstr ""
|
4784 |
|
4785 |
+
#: add-ons/user-listing/userlisting.php:2585
|
4786 |
msgid "Number of Users/Page"
|
4787 |
msgstr ""
|
4788 |
|
4789 |
+
#: add-ons/user-listing/userlisting.php:2585
|
4790 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
4791 |
msgstr ""
|
4792 |
|
4793 |
+
#: add-ons/user-listing/userlisting.php:2586
|
4794 |
msgid "Default Sorting Criteria"
|
4795 |
msgstr ""
|
4796 |
|
4797 |
+
#: add-ons/user-listing/userlisting.php:2586
|
4798 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
4799 |
msgstr ""
|
4800 |
|
4801 |
+
#: add-ons/user-listing/userlisting.php:2587
|
4802 |
msgid "Default Sorting Order"
|
4803 |
msgstr ""
|
4804 |
|
4805 |
+
#: add-ons/user-listing/userlisting.php:2587
|
4806 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
4807 |
msgstr ""
|
4808 |
|
4809 |
+
#: add-ons/user-listing/userlisting.php:2588
|
4810 |
msgid "Avatar Size (All-userlisting)"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
+
#: add-ons/user-listing/userlisting.php:2588
|
4814 |
msgid "Set the avatar size on the all-userlisting only"
|
4815 |
msgstr ""
|
4816 |
|
4817 |
+
#: add-ons/user-listing/userlisting.php:2589
|
4818 |
msgid "Avatar Size (Single-userlisting)"
|
4819 |
msgstr ""
|
4820 |
|
4821 |
+
#: add-ons/user-listing/userlisting.php:2589
|
4822 |
msgid "Set the avatar size on the single-userlisting only"
|
4823 |
msgstr ""
|
4824 |
|
4825 |
+
#: add-ons/user-listing/userlisting.php:2590
|
4826 |
msgid "Visible only to logged in users?"
|
4827 |
msgstr ""
|
4828 |
|
4829 |
+
#: add-ons/user-listing/userlisting.php:2590
|
4830 |
msgid "The userlisting will only be visible only to the logged in users"
|
4831 |
msgstr ""
|
4832 |
|
4833 |
+
#: add-ons/user-listing/userlisting.php:2591
|
4834 |
msgid "Visible to following Roles"
|
4835 |
msgstr ""
|
4836 |
|
4837 |
+
#: add-ons/user-listing/userlisting.php:2591
|
4838 |
msgid "The userlisting will only be visible to the following roles"
|
4839 |
msgstr ""
|
4840 |
|
4841 |
+
#: add-ons/user-listing/userlisting.php:2597
|
4842 |
msgid "Userlisting Settings"
|
4843 |
msgstr ""
|
4844 |
|
4845 |
+
#: add-ons/user-listing/userlisting.php:2622
|
4846 |
msgid "Label"
|
4847 |
msgstr ""
|
4848 |
|
4849 |
+
#: add-ons/user-listing/userlisting.php:2622
|
4850 |
msgid "Choose the facet name that appears on the frontend"
|
4851 |
msgstr ""
|
4852 |
|
4853 |
+
#: add-ons/user-listing/userlisting.php:2623
|
4854 |
msgid "Facet Type"
|
4855 |
msgstr ""
|
4856 |
|
4857 |
+
#: add-ons/user-listing/userlisting.php:2623
|
4858 |
msgid "Choose the facet menu type"
|
4859 |
msgstr ""
|
4860 |
|
4861 |
+
#: add-ons/user-listing/userlisting.php:2624
|
4862 |
msgid "Facet Meta"
|
4863 |
msgstr ""
|
4864 |
|
4865 |
+
#: add-ons/user-listing/userlisting.php:2624
|
4866 |
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."
|
4867 |
msgstr ""
|
4868 |
|
4869 |
+
#: add-ons/user-listing/userlisting.php:2625
|
4870 |
msgid "Behaviour"
|
4871 |
msgstr ""
|
4872 |
|
4873 |
+
#: add-ons/user-listing/userlisting.php:2625
|
4874 |
msgid "Narrow the results"
|
4875 |
msgstr ""
|
4876 |
|
4877 |
+
#: add-ons/user-listing/userlisting.php:2625
|
4878 |
msgid "Expand the results"
|
4879 |
msgstr ""
|
4880 |
|
4881 |
+
#: add-ons/user-listing/userlisting.php:2625
|
4882 |
msgid "Choose how multiple selections affect the results"
|
4883 |
msgstr ""
|
4884 |
|
4885 |
+
#: add-ons/user-listing/userlisting.php:2626
|
4886 |
msgid "Visible choices"
|
4887 |
msgstr ""
|
4888 |
|
4889 |
+
#: add-ons/user-listing/userlisting.php:2626
|
4890 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
4891 |
msgstr ""
|
4892 |
|
4893 |
+
#: add-ons/user-listing/userlisting.php:2651
|
4894 |
msgid "Search Fields"
|
4895 |
msgstr ""
|
4896 |
|
4897 |
+
#: add-ons/user-listing/userlisting.php:2651
|
4898 |
msgid "Choose the fields in which the Search Field will look in"
|
4899 |
msgstr ""
|
4900 |
|
4901 |
+
#: add-ons/user-listing/userlisting.php:2656
|
4902 |
msgid "Search Settings"
|
4903 |
msgstr ""
|
4904 |
|
4905 |
+
#: add-ons/user-listing/userlisting.php:2728
|
4906 |
msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
|
4907 |
msgstr ""
|
4908 |
|
4909 |
+
#: add-ons/user-listing/userlisting.php:2728
|
4910 |
msgid "You can find it in the Profile Builder menu."
|
4911 |
msgstr ""
|
4912 |
|
4913 |
+
#: add-ons/user-listing/userlisting.php:2891
|
4914 |
msgid "No results found!"
|
4915 |
msgstr ""
|
4916 |
|
5726 |
msgid "Import"
|
5727 |
msgstr ""
|
5728 |
|
5729 |
+
#: add-ons-free/import-export/import-export.php:29, add-ons-free/import-export/pbie-export.php:125, add-ons-free/labels-edit/labels-edit.php:336
|
5730 |
msgid "Export"
|
5731 |
msgstr ""
|
5732 |
|
5733 |
+
#: add-ons-free/import-export/pbie-export.php:121
|
5734 |
msgid "Export Profile Builder options as a .json file. This allows you to easily import the configuration into another site."
|
5735 |
msgstr ""
|
5736 |
|
7535 |
msgid "An error occurred, please try again later."
|
7536 |
msgstr ""
|
7537 |
|
7538 |
+
#: admin/advanced-settings/includes/fields/unique-display-name.php:24
|
7539 |
msgid "This display name is already in use. Please choose another one."
|
7540 |
msgstr ""
|
7541 |
|
7542 |
+
#: admin/advanced-settings/includes/forms/confirm-user-email-change.php:145
|
7543 |
msgid "Email address change request for %s"
|
7544 |
msgstr ""
|
7545 |
|
7546 |
+
#: admin/advanced-settings/includes/forms/confirm-user-email-change.php:148
|
7547 |
msgid "Someone requested to change the email address for your account.<br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To update your account email address to the one requested (%1$s), visit the following link: %2$s"
|
7548 |
msgstr ""
|
7549 |
|