Version Description
- Fix: Do not load Gutenberg blocks on older versions of WordPress
- Fix: Notices regarding Avatar field
- Misc: Moved Select User To Edit script from admin edit profile to footer
Download this release
Release Info
Developer | raster02 |
Plugin | User registration & user profile – Profile Builder |
Version | 3.8.5 |
Comparing to | |
See all releases |
Code changes from version 3.8.4 to 3.8.5
- assets/js/select-user-to-edit.js +22 -0
- front-end/class-formbuilder.php +6 -20
- front-end/default-fields/avatar/avatar.php +3 -3
- index.php +9 -5
- readme.txt +6 -1
- translation/profile-builder.pot +82 -82
assets/js/select-user-to-edit.js
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery(document).ready(function(){
|
2 |
+
|
3 |
+
jQuery("select").filter(function() {
|
4 |
+
if ( this.id.startsWith( "wppb-" ) && this.id.endsWith( "user-to-edit" ) ) {
|
5 |
+
return this;
|
6 |
+
}
|
7 |
+
}).on("change", function () {
|
8 |
+
window.location.href = jQuery(this).val();
|
9 |
+
});
|
10 |
+
jQuery(function(){
|
11 |
+
jQuery("select").filter(function() {
|
12 |
+
if ( this.id.startsWith( "wppb-" ) && this.id.endsWith( "user-to-edit" ) ) {
|
13 |
+
return this;
|
14 |
+
}
|
15 |
+
}).select2().on("select2:open", function(){
|
16 |
+
if( jQuery(".wppb-user-to-edit").parents( ".overlay-container" ).length ){
|
17 |
+
jQuery(".wppb-user-to-edit").data("select2").dropdown.$dropdownContainer.css( "z-index", "99999999" );
|
18 |
+
}
|
19 |
+
});
|
20 |
+
})
|
21 |
+
|
22 |
+
})
|
front-end/class-formbuilder.php
CHANGED
@@ -764,26 +764,6 @@ class Profile_Builder_Form_Creator{
|
|
764 |
</select>
|
765 |
</p>
|
766 |
</form>
|
767 |
-
<script type="text/javascript">
|
768 |
-
jQuery("select").filter(function() {
|
769 |
-
if ( this.id.startsWith( "wppb-" ) && this.id.endsWith( "user-to-edit" ) ) {
|
770 |
-
return this;
|
771 |
-
}
|
772 |
-
}).on("change", function () {
|
773 |
-
window.location.href = jQuery(this).val();
|
774 |
-
});
|
775 |
-
jQuery(function(){
|
776 |
-
jQuery("select").filter(function() {
|
777 |
-
if ( this.id.startsWith( "wppb-" ) && this.id.endsWith( "user-to-edit" ) ) {
|
778 |
-
return this;
|
779 |
-
}
|
780 |
-
}).select2().on("select2:open", function(){
|
781 |
-
if( jQuery(".wppb-user-to-edit").parents( ".overlay-container" ).length ){
|
782 |
-
jQuery(".wppb-user-to-edit").data("select2").dropdown.$dropdownContainer.css( "z-index", "99999999" );
|
783 |
-
}
|
784 |
-
});
|
785 |
-
})
|
786 |
-
</script>
|
787 |
<?php
|
788 |
}
|
789 |
else{
|
@@ -797,6 +777,12 @@ class Profile_Builder_Form_Creator{
|
|
797 |
wp_enqueue_script( 'wppb_front_end_script', WPPB_PLUGIN_URL. 'assets/js/script-front-end.js', array('jquery'), PROFILE_BUILDER_VERSION, true );
|
798 |
wp_print_scripts( 'wppb_front_end_script' );
|
799 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
800 |
}
|
801 |
|
802 |
/**
|
764 |
</select>
|
765 |
</p>
|
766 |
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
767 |
<?php
|
768 |
}
|
769 |
else{
|
777 |
wp_enqueue_script( 'wppb_front_end_script', WPPB_PLUGIN_URL. 'assets/js/script-front-end.js', array('jquery'), PROFILE_BUILDER_VERSION, true );
|
778 |
wp_print_scripts( 'wppb_front_end_script' );
|
779 |
}
|
780 |
+
|
781 |
+
if ( current_user_can( 'manage_options' ) ) {
|
782 |
+
wp_enqueue_script( 'wppb_select_user_to_edit_js', WPPB_PLUGIN_URL. 'assets/js/select-user-to-edit.js', array('jquery'), PROFILE_BUILDER_VERSION, true );
|
783 |
+
wp_print_scripts( 'wppb_select_user_to_edit_js' );
|
784 |
+
}
|
785 |
+
|
786 |
}
|
787 |
|
788 |
/**
|
front-end/default-fields/avatar/avatar.php
CHANGED
@@ -109,7 +109,7 @@ add_filter( 'wppb_admin_output_form_field_avatar', 'wppb_avatar_handler', 10, 6
|
|
109 |
function wppb_save_avatar_value( $field, $user_id, $request_data, $form_location ){
|
110 |
if( $field['field'] == 'Avatar' ){
|
111 |
$field['meta-name'] = Wordpress_Creation_Kit_PB::wck_generate_slug( $field['meta-name'] );
|
112 |
-
if ( isset( $field[ 'simple-upload' ] ) && $field[ 'simple-upload' ] == 'yes' && $field[ 'woocommerce-checkout-field' ] !== 'Yes' ) {
|
113 |
//Save data in the case the simple upload field is used
|
114 |
$field_name = 'simple_upload_' . wppb_handle_meta_name( $field[ 'meta-name' ] );
|
115 |
if( isset( $_FILES[ $field_name ] ) ) {
|
@@ -186,7 +186,7 @@ function wppb_avatar_add_upload_for_user_signup( $field_value, $field, $request_
|
|
186 |
// Save the uploaded file
|
187 |
// It will have no author until the user's email is confirmed
|
188 |
if( $field['field'] == 'Avatar' ) {
|
189 |
-
if( isset( $field[ 'simple-upload' ] ) && $field[ 'simple-upload' ] === 'yes' && $field[ 'woocommerce-checkout-field' ] !== 'Yes' ) {
|
190 |
$field_name = 'simple_upload_' . $field['meta-name'];
|
191 |
|
192 |
if (isset($_FILES[$field_name]) &&
|
@@ -224,7 +224,7 @@ function wppb_check_avatar_value( $message, $field, $request_data, $form_locatio
|
|
224 |
if( $field['field'] == 'Avatar' ){
|
225 |
if( $field['required'] == 'Yes' ){
|
226 |
$field['meta-name'] = Wordpress_Creation_Kit_PB::wck_generate_slug( $field['meta-name'] );
|
227 |
-
if ( isset( $field[ 'simple-upload' ] ) && $field[ 'simple-upload' ] == 'yes' && $field[ 'woocommerce-checkout-field' ] !== 'Yes' ) {
|
228 |
//Check the required field in case simple upload is used
|
229 |
$field_name = 'simple_upload_' . wppb_handle_meta_name( $field[ 'meta-name' ] );
|
230 |
if ( (!isset( $_FILES[ $field_name ] ) || ( isset( $_FILES[ $field_name ] ) && isset( $_FILES[ $field_name ][ 'size' ] ) && $_FILES[ $field_name ][ 'size' ] == 0 ) || !wppb_valid_simple_upload( $field, $_FILES[ $field_name ] ) ) && isset( $request_data[ $field[ 'meta-name' ] ] ) && empty( $request_data[ $field[ 'meta-name' ] ] ) ){ /* phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized */ /* no need here for wppb_valid_simple_upload() */
|
109 |
function wppb_save_avatar_value( $field, $user_id, $request_data, $form_location ){
|
110 |
if( $field['field'] == 'Avatar' ){
|
111 |
$field['meta-name'] = Wordpress_Creation_Kit_PB::wck_generate_slug( $field['meta-name'] );
|
112 |
+
if ( isset( $field[ 'simple-upload' ] ) && $field[ 'simple-upload' ] == 'yes' && ( !isset( $field[ 'woocommerce-checkout-field' ] ) || $field[ 'woocommerce-checkout-field' ] !== 'Yes' ) ) {
|
113 |
//Save data in the case the simple upload field is used
|
114 |
$field_name = 'simple_upload_' . wppb_handle_meta_name( $field[ 'meta-name' ] );
|
115 |
if( isset( $_FILES[ $field_name ] ) ) {
|
186 |
// Save the uploaded file
|
187 |
// It will have no author until the user's email is confirmed
|
188 |
if( $field['field'] == 'Avatar' ) {
|
189 |
+
if( isset( $field[ 'simple-upload' ] ) && $field[ 'simple-upload' ] === 'yes' && ( !isset( $field[ 'woocommerce-checkout-field' ] ) || $field[ 'woocommerce-checkout-field' ] !== 'Yes' ) ) {
|
190 |
$field_name = 'simple_upload_' . $field['meta-name'];
|
191 |
|
192 |
if (isset($_FILES[$field_name]) &&
|
224 |
if( $field['field'] == 'Avatar' ){
|
225 |
if( $field['required'] == 'Yes' ){
|
226 |
$field['meta-name'] = Wordpress_Creation_Kit_PB::wck_generate_slug( $field['meta-name'] );
|
227 |
+
if ( isset( $field[ 'simple-upload' ] ) && $field[ 'simple-upload' ] == 'yes' && ( !isset( $field[ 'woocommerce-checkout-field' ] ) || $field[ 'woocommerce-checkout-field' ] !== 'Yes' ) ) {
|
228 |
//Check the required field in case simple upload is used
|
229 |
$field_name = 'simple_upload_' . wppb_handle_meta_name( $field[ 'meta-name' ] );
|
230 |
if ( (!isset( $_FILES[ $field_name ] ) || ( isset( $_FILES[ $field_name ] ) && isset( $_FILES[ $field_name ][ 'size' ] ) && $_FILES[ $field_name ][ 'size' ] == 0 ) || !wppb_valid_simple_upload( $field, $_FILES[ $field_name ] ) ) && isset( $request_data[ $field[ 'meta-name' ] ] ) && empty( $request_data[ $field[ 'meta-name' ] ] ) ){ /* phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized */ /* no need here for wppb_valid_simple_upload() */
|
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.8.
|
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.
|
13 |
-
* Elementor Pro tested up to: 3.
|
14 |
*
|
15 |
* == Copyright ==
|
16 |
* Copyright 2014 Cozmoslabs (www.cozmoslabs.com)
|
@@ -190,7 +190,11 @@ function wppb_plugin_init() {
|
|
190 |
}
|
191 |
|
192 |
//Blocks
|
193 |
-
|
|
|
|
|
|
|
|
|
194 |
|
195 |
//Elementor Content Restriction
|
196 |
global $content_restriction_activated;
|
@@ -392,7 +396,7 @@ add_action( 'plugins_loaded', 'wppb_plugin_init' );
|
|
392 |
*
|
393 |
*
|
394 |
*/
|
395 |
-
define('PROFILE_BUILDER_VERSION', '3.8.
|
396 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
397 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
398 |
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.8.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.8.1
|
13 |
+
* Elementor Pro tested up to: 3.8.1
|
14 |
*
|
15 |
* == Copyright ==
|
16 |
* Copyright 2014 Cozmoslabs (www.cozmoslabs.com)
|
190 |
}
|
191 |
|
192 |
//Blocks
|
193 |
+
global $wp_version;
|
194 |
+
if ( version_compare( $wp_version, "5.0.0", ">=" ) ) {
|
195 |
+
if( file_exists( WPPB_PLUGIN_DIR . '/assets/misc/gutenberg-blocks/manage-blocks.php' ) )
|
196 |
+
include_once WPPB_PLUGIN_DIR . '/assets/misc/gutenberg-blocks/manage-blocks.php';
|
197 |
+
}
|
198 |
|
199 |
//Elementor Content Restriction
|
200 |
global $content_restriction_activated;
|
396 |
*
|
397 |
*
|
398 |
*/
|
399 |
+
define('PROFILE_BUILDER_VERSION', '3.8.5' );
|
400 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
401 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
402 |
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.1
|
7 |
-
Stable tag: 3.8.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -177,6 +177,11 @@ 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.8.4 =
|
181 |
* Fix: an issue regarding the new Email Customizer functionality not working correctly in a case
|
182 |
* Fix: notices appearing in the dashboard in some cases
|
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.1
|
7 |
+
Stable tag: 3.8.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.8.5 =
|
181 |
+
* Fix: Do not load Gutenberg blocks on older versions of WordPress
|
182 |
+
* Fix: Notices regarding Avatar field
|
183 |
+
* Misc: Moved Select User To Edit script from admin edit profile to footer
|
184 |
+
|
185 |
= 3.8.4 =
|
186 |
* Fix: an issue regarding the new Email Customizer functionality not working correctly in a case
|
187 |
* Fix: notices appearing in the dashboard in some cases
|
translation/profile-builder.pot
CHANGED
@@ -13,11 +13,11 @@ msgstr ""
|
|
13 |
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
|
16 |
-
#: index.php:
|
17 |
msgid "To enable updates, your licence needs to be renewed. Please go to the <a href=\"%s\">Cozmoslabs Account</a> page and login to renew."
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: index.php:
|
21 |
msgid "To enable updates, please enter your serial number on the <a href=\"%s\">Register Version</a> page. If you don't have a serial number, please see <a href=\"%s\" target=\"_blank\">details & pricing</a>."
|
22 |
msgstr ""
|
23 |
|
@@ -385,7 +385,7 @@ msgstr ""
|
|
385 |
msgid "See details"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: admin/admin-functions.php:260, admin/review.php:94, add-ons/user-listing/userlisting.php:
|
389 |
msgid "Dismiss this notice."
|
390 |
msgstr ""
|
391 |
|
@@ -761,7 +761,7 @@ msgstr ""
|
|
761 |
msgid "Load Profile Builder's own CSS file in the front-end:"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: admin/general-settings.php:160, admin/general-settings.php:173, admin/general-settings.php:188, admin/general-settings.php:237, admin/general-settings.php:284, admin/manage-fields.php:240, admin/private-website.php:73, admin/private-website.php:140, admin/private-website.php:153, 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:
|
765 |
msgid "Yes"
|
766 |
msgstr ""
|
767 |
|
@@ -845,11 +845,11 @@ msgstr ""
|
|
845 |
msgid "Username and Email"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: admin/general-settings.php:313, admin/manage-fields.php:380, 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:339, add-ons/user-listing/userlisting.php:885, add-ons/user-listing/userlisting.php:
|
849 |
msgid "Username"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: admin/general-settings.php:314, 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:891, add-ons/user-listing/userlisting.php:
|
853 |
msgid "Email"
|
854 |
msgstr ""
|
855 |
|
@@ -1397,7 +1397,7 @@ msgstr ""
|
|
1397 |
msgid "Last Name"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: admin/manage-fields.php:383, add-ons/user-listing/userlisting.php:924, add-ons/user-listing/userlisting.php:
|
1401 |
msgid "Nickname"
|
1402 |
msgstr ""
|
1403 |
|
@@ -1413,7 +1413,7 @@ msgstr ""
|
|
1413 |
msgid "E-mail"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: admin/manage-fields.php:387, add-ons/email-customizer/email-customizer.php:33, add-ons/user-listing/userlisting.php:122, add-ons/user-listing/userlisting.php:906, add-ons/user-listing/userlisting.php:
|
1417 |
msgid "Website"
|
1418 |
msgstr ""
|
1419 |
|
@@ -1433,7 +1433,7 @@ msgstr ""
|
|
1433 |
msgid "About Yourself"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: admin/manage-fields.php:397, add-ons/user-listing/userlisting.php:125, add-ons/user-listing/userlisting.php:909, add-ons/user-listing/userlisting.php:
|
1437 |
msgid "Biographical Info"
|
1438 |
msgstr ""
|
1439 |
|
@@ -3497,7 +3497,7 @@ msgstr ""
|
|
3497 |
msgid "Send these credentials via email."
|
3498 |
msgstr ""
|
3499 |
|
3500 |
-
#: front-end/class-formbuilder.php:
|
3501 |
msgid "There are no other users to edit"
|
3502 |
msgstr ""
|
3503 |
|
@@ -3509,7 +3509,7 @@ msgstr ""
|
|
3509 |
msgid "Select User"
|
3510 |
msgstr ""
|
3511 |
|
3512 |
-
#: front-end/class-formbuilder.php:
|
3513 |
msgid "Something went wrong. Please try again!"
|
3514 |
msgstr ""
|
3515 |
|
@@ -3770,7 +3770,7 @@ msgstr ""
|
|
3770 |
msgid "Dashboard (redirect users from accessing the dashboard)"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
-
#: add-ons/custom-redirects/custom_redirects_admin.php:60, add-ons/user-listing/userlisting.php:168, add-ons/user-listing/userlisting.php:
|
3774 |
msgid "User ID"
|
3775 |
msgstr ""
|
3776 |
|
@@ -4326,27 +4326,27 @@ msgstr ""
|
|
4326 |
msgid "No Edit-profile Forms found in trash"
|
4327 |
msgstr ""
|
4328 |
|
4329 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:
|
4330 |
msgid "Shortcode"
|
4331 |
msgstr ""
|
4332 |
|
4333 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:
|
4334 |
msgid "(no title)"
|
4335 |
msgstr ""
|
4336 |
|
4337 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:
|
4338 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
4339 |
msgstr ""
|
4340 |
|
4341 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:
|
4342 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
4343 |
msgstr ""
|
4344 |
|
4345 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:
|
4346 |
msgid "The shortcode will be available after you publish this form."
|
4347 |
msgstr ""
|
4348 |
|
4349 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:
|
4350 |
msgid "Form Shortcode"
|
4351 |
msgstr ""
|
4352 |
|
@@ -4510,7 +4510,7 @@ msgstr ""
|
|
4510 |
msgid "Display name as"
|
4511 |
msgstr ""
|
4512 |
|
4513 |
-
#: add-ons/user-listing/userlisting.php:169, add-ons/user-listing/userlisting.php:341, add-ons/user-listing/userlisting.php:927, add-ons/user-listing/userlisting.php:
|
4514 |
msgid "Role"
|
4515 |
msgstr ""
|
4516 |
|
@@ -4518,11 +4518,11 @@ msgstr ""
|
|
4518 |
msgid "Role Slug"
|
4519 |
msgstr ""
|
4520 |
|
4521 |
-
#: add-ons/user-listing/userlisting.php:171, add-ons/user-listing/userlisting.php:
|
4522 |
msgid "Registration Date"
|
4523 |
msgstr ""
|
4524 |
|
4525 |
-
#: add-ons/user-listing/userlisting.php:172, add-ons/user-listing/userlisting.php:
|
4526 |
msgid "Number of Posts"
|
4527 |
msgstr ""
|
4528 |
|
@@ -4550,7 +4550,7 @@ msgstr ""
|
|
4550 |
msgid "Search all Fields"
|
4551 |
msgstr ""
|
4552 |
|
4553 |
-
#: add-ons/user-listing/userlisting.php:223, add-ons/user-listing/userlisting.php:
|
4554 |
msgid "Faceted Menus"
|
4555 |
msgstr ""
|
4556 |
|
@@ -4586,7 +4586,7 @@ msgstr ""
|
|
4586 |
msgid "Avatar"
|
4587 |
msgstr ""
|
4588 |
|
4589 |
-
#: add-ons/user-listing/userlisting.php:340, add-ons/user-listing/userlisting.php:
|
4590 |
msgid "Firstname"
|
4591 |
msgstr ""
|
4592 |
|
@@ -4614,19 +4614,19 @@ msgstr ""
|
|
4614 |
msgid "User not found"
|
4615 |
msgstr ""
|
4616 |
|
4617 |
-
#: add-ons/user-listing/userlisting.php:921, add-ons/user-listing/userlisting.php:
|
4618 |
msgid "Jabber"
|
4619 |
msgstr ""
|
4620 |
|
4621 |
-
#: add-ons/user-listing/userlisting.php:918, add-ons/user-listing/userlisting.php:
|
4622 |
msgid "Yim"
|
4623 |
msgstr ""
|
4624 |
|
4625 |
-
#: add-ons/user-listing/userlisting.php:915, add-ons/user-listing/userlisting.php:
|
4626 |
msgid "Aim"
|
4627 |
msgstr ""
|
4628 |
|
4629 |
-
#: add-ons/user-listing/userlisting.php:903, add-ons/user-listing/userlisting.php:
|
4630 |
msgid "Display Name"
|
4631 |
msgstr ""
|
4632 |
|
@@ -4634,7 +4634,7 @@ msgstr ""
|
|
4634 |
msgid "First/Lastname"
|
4635 |
msgstr ""
|
4636 |
|
4637 |
-
#: add-ons/user-listing/userlisting.php:1224, add-ons/user-listing/userlisting.php:1745, add-ons/user-listing/userlisting.php:
|
4638 |
msgid "Search Users by All Fields"
|
4639 |
msgstr ""
|
4640 |
|
@@ -4690,219 +4690,219 @@ msgstr ""
|
|
4690 |
msgid "Show All"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
-
#: add-ons/user-listing/userlisting.php:
|
4694 |
msgid "Choose..."
|
4695 |
msgstr ""
|
4696 |
|
4697 |
-
#: add-ons/user-listing/userlisting.php:
|
4698 |
msgid "Choose or type in an option..."
|
4699 |
msgstr ""
|
4700 |
|
4701 |
-
#: add-ons/user-listing/userlisting.php:
|
4702 |
msgid "No options available"
|
4703 |
msgstr ""
|
4704 |
|
4705 |
-
#: add-ons/user-listing/userlisting.php:
|
4706 |
msgid "Remove All Filters"
|
4707 |
msgstr ""
|
4708 |
|
4709 |
-
#: add-ons/user-listing/userlisting.php:
|
4710 |
msgid "Search"
|
4711 |
msgstr ""
|
4712 |
|
4713 |
-
#: add-ons/user-listing/userlisting.php:
|
4714 |
msgid "Clear Results"
|
4715 |
msgstr ""
|
4716 |
|
4717 |
-
#: add-ons/user-listing/userlisting.php:
|
4718 |
msgid "Extra shortcode parameters"
|
4719 |
msgstr ""
|
4720 |
|
4721 |
-
#: add-ons/user-listing/userlisting.php:
|
4722 |
msgid "View all extra shortcode parameters"
|
4723 |
msgstr ""
|
4724 |
|
4725 |
-
#: add-ons/user-listing/userlisting.php:
|
4726 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
4727 |
msgstr ""
|
4728 |
|
4729 |
-
#: add-ons/user-listing/userlisting.php:
|
4730 |
msgid "Example:"
|
4731 |
msgstr ""
|
4732 |
|
4733 |
-
#: add-ons/user-listing/userlisting.php:
|
4734 |
msgid "Remember though, that the field-value combination must exist in the database."
|
4735 |
msgstr ""
|
4736 |
|
4737 |
-
#: add-ons/user-listing/userlisting.php:
|
4738 |
msgid "displays only the users that you specified the user_id for"
|
4739 |
msgstr ""
|
4740 |
|
4741 |
-
#: add-ons/user-listing/userlisting.php:
|
4742 |
msgid "displays all users except the ones you specified the user_id for"
|
4743 |
msgstr ""
|
4744 |
|
4745 |
-
#: add-ons/user-listing/userlisting.php:
|
4746 |
msgid "Lastname"
|
4747 |
msgstr ""
|
4748 |
|
4749 |
-
#: add-ons/user-listing/userlisting.php:
|
4750 |
msgid "Random (very slow on large databases > 10K user)"
|
4751 |
msgstr ""
|
4752 |
|
4753 |
-
#: add-ons/user-listing/userlisting.php:
|
4754 |
msgid "Ascending"
|
4755 |
msgstr ""
|
4756 |
|
4757 |
-
#: add-ons/user-listing/userlisting.php:
|
4758 |
msgid "Descending"
|
4759 |
msgstr ""
|
4760 |
|
4761 |
-
#: add-ons/user-listing/userlisting.php:
|
4762 |
msgid "Roles to Display"
|
4763 |
msgstr ""
|
4764 |
|
4765 |
-
#: add-ons/user-listing/userlisting.php:
|
4766 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
4767 |
msgstr ""
|
4768 |
|
4769 |
-
#: add-ons/user-listing/userlisting.php:
|
4770 |
msgid "Number of Users/Page"
|
4771 |
msgstr ""
|
4772 |
|
4773 |
-
#: add-ons/user-listing/userlisting.php:
|
4774 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
4775 |
msgstr ""
|
4776 |
|
4777 |
-
#: add-ons/user-listing/userlisting.php:
|
4778 |
msgid "Default Sorting Criteria"
|
4779 |
msgstr ""
|
4780 |
|
4781 |
-
#: add-ons/user-listing/userlisting.php:
|
4782 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
4783 |
msgstr ""
|
4784 |
|
4785 |
-
#: add-ons/user-listing/userlisting.php:
|
4786 |
msgid "Default Sorting Order"
|
4787 |
msgstr ""
|
4788 |
|
4789 |
-
#: add-ons/user-listing/userlisting.php:
|
4790 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
4791 |
msgstr ""
|
4792 |
|
4793 |
-
#: add-ons/user-listing/userlisting.php:
|
4794 |
msgid "Avatar Size (All-userlisting)"
|
4795 |
msgstr ""
|
4796 |
|
4797 |
-
#: add-ons/user-listing/userlisting.php:
|
4798 |
msgid "Set the avatar size on the all-userlisting only"
|
4799 |
msgstr ""
|
4800 |
|
4801 |
-
#: add-ons/user-listing/userlisting.php:
|
4802 |
msgid "Avatar Size (Single-userlisting)"
|
4803 |
msgstr ""
|
4804 |
|
4805 |
-
#: add-ons/user-listing/userlisting.php:
|
4806 |
msgid "Set the avatar size on the single-userlisting only"
|
4807 |
msgstr ""
|
4808 |
|
4809 |
-
#: add-ons/user-listing/userlisting.php:
|
4810 |
msgid "Visible only to logged in users?"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
-
#: add-ons/user-listing/userlisting.php:
|
4814 |
msgid "The userlisting will only be visible only to the logged in users"
|
4815 |
msgstr ""
|
4816 |
|
4817 |
-
#: add-ons/user-listing/userlisting.php:
|
4818 |
msgid "Visible to following Roles"
|
4819 |
msgstr ""
|
4820 |
|
4821 |
-
#: add-ons/user-listing/userlisting.php:
|
4822 |
msgid "The userlisting will only be visible to the following roles"
|
4823 |
msgstr ""
|
4824 |
|
4825 |
-
#: add-ons/user-listing/userlisting.php:
|
4826 |
msgid "Userlisting Settings"
|
4827 |
msgstr ""
|
4828 |
|
4829 |
-
#: add-ons/user-listing/userlisting.php:
|
4830 |
msgid "Label"
|
4831 |
msgstr ""
|
4832 |
|
4833 |
-
#: add-ons/user-listing/userlisting.php:
|
4834 |
msgid "Choose the facet name that appears on the frontend"
|
4835 |
msgstr ""
|
4836 |
|
4837 |
-
#: add-ons/user-listing/userlisting.php:
|
4838 |
msgid "Facet Type"
|
4839 |
msgstr ""
|
4840 |
|
4841 |
-
#: add-ons/user-listing/userlisting.php:
|
4842 |
msgid "Choose the facet menu type"
|
4843 |
msgstr ""
|
4844 |
|
4845 |
-
#: add-ons/user-listing/userlisting.php:
|
4846 |
msgid "Facet Meta"
|
4847 |
msgstr ""
|
4848 |
|
4849 |
-
#: add-ons/user-listing/userlisting.php:
|
4850 |
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."
|
4851 |
msgstr ""
|
4852 |
|
4853 |
-
#: add-ons/user-listing/userlisting.php:
|
4854 |
msgid "Behaviour"
|
4855 |
msgstr ""
|
4856 |
|
4857 |
-
#: add-ons/user-listing/userlisting.php:
|
4858 |
msgid "Narrow the results"
|
4859 |
msgstr ""
|
4860 |
|
4861 |
-
#: add-ons/user-listing/userlisting.php:
|
4862 |
msgid "Expand the results"
|
4863 |
msgstr ""
|
4864 |
|
4865 |
-
#: add-ons/user-listing/userlisting.php:
|
4866 |
msgid "Choose how multiple selections affect the results"
|
4867 |
msgstr ""
|
4868 |
|
4869 |
-
#: add-ons/user-listing/userlisting.php:
|
4870 |
msgid "Visible choices"
|
4871 |
msgstr ""
|
4872 |
|
4873 |
-
#: add-ons/user-listing/userlisting.php:
|
4874 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
4875 |
msgstr ""
|
4876 |
|
4877 |
-
#: add-ons/user-listing/userlisting.php:
|
4878 |
msgid "Search Fields"
|
4879 |
msgstr ""
|
4880 |
|
4881 |
-
#: add-ons/user-listing/userlisting.php:
|
4882 |
msgid "Choose the fields in which the Search Field will look in"
|
4883 |
msgstr ""
|
4884 |
|
4885 |
-
#: add-ons/user-listing/userlisting.php:
|
4886 |
msgid "Search Settings"
|
4887 |
msgstr ""
|
4888 |
|
4889 |
-
#: add-ons/user-listing/userlisting.php:
|
4890 |
msgid "Themes: add style to your user listing section"
|
4891 |
msgstr ""
|
4892 |
|
4893 |
-
#: add-ons/user-listing/userlisting.php:
|
4894 |
msgid "You can now add beautifully pre-designed templates to showcase the user base on your website using one of the <strong>user listing templates</strong> available in the %sUser Listing add-on%s."
|
4895 |
msgstr ""
|
4896 |
|
4897 |
-
#: add-ons/user-listing/userlisting.php:
|
4898 |
msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
|
4899 |
msgstr ""
|
4900 |
|
4901 |
-
#: add-ons/user-listing/userlisting.php:
|
4902 |
msgid "You can find it in the Profile Builder menu."
|
4903 |
msgstr ""
|
4904 |
|
4905 |
-
#: add-ons/user-listing/userlisting.php:
|
4906 |
msgid "No results found!"
|
4907 |
msgstr ""
|
4908 |
|
13 |
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
|
16 |
+
#: index.php:377
|
17 |
msgid "To enable updates, your licence needs to be renewed. Please go to the <a href=\"%s\">Cozmoslabs Account</a> page and login to renew."
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: index.php:373
|
21 |
msgid "To enable updates, please enter your serial number on the <a href=\"%s\">Register Version</a> page. If you don't have a serial number, please see <a href=\"%s\" target=\"_blank\">details & pricing</a>."
|
22 |
msgstr ""
|
23 |
|
385 |
msgid "See details"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: admin/admin-functions.php:260, admin/review.php:94, add-ons/user-listing/userlisting.php:3427
|
389 |
msgid "Dismiss this notice."
|
390 |
msgstr ""
|
391 |
|
761 |
msgid "Load Profile Builder's own CSS file in the front-end:"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: admin/general-settings.php:160, admin/general-settings.php:173, admin/general-settings.php:188, admin/general-settings.php:237, admin/general-settings.php:284, admin/manage-fields.php:240, admin/private-website.php:73, admin/private-website.php:140, admin/private-website.php:153, 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:2614, add-ons-advanced/bbpress/bbpress-page.php:164, add-ons-advanced/social-connect/index.php:347, add-ons-advanced/social-connect/index.php:406, features/content-restriction/content-restriction.php:93, features/two-factor-authentication/class-two-factor-authentication.php:128, 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:184, admin/advanced-settings/includes/views/view-fields.php:200, admin/advanced-settings/includes/views/view-fields.php:220, admin/advanced-settings/includes/views/view-fields.php:243, admin/advanced-settings/includes/views/view-fields.php:263, admin/advanced-settings/includes/views/view-fields.php:280, admin/advanced-settings/includes/views/view-fields.php:296, 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:79, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:184, assets/misc/elementor/widgets/class-pb-widget-ul.php:119
|
765 |
msgid "Yes"
|
766 |
msgstr ""
|
767 |
|
845 |
msgid "Username and Email"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: admin/general-settings.php:313, admin/manage-fields.php:380, 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:339, add-ons/user-listing/userlisting.php:885, add-ons/user-listing/userlisting.php:2567, features/admin-approval/class-admin-approval.php:174, features/email-confirmation/class-email-confirmation.php:168, features/email-customizer/email-customizer.php:28, admin/advanced-settings/includes/views/view-fields.php:124
|
849 |
msgid "Username"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: admin/general-settings.php:314, 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:891, add-ons/user-listing/userlisting.php:2568, features/admin-approval/class-admin-approval.php:177, features/email-confirmation/class-email-confirmation.php:169, features/email-customizer/email-customizer.php:29, 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
|
853 |
msgid "Email"
|
854 |
msgstr ""
|
855 |
|
1397 |
msgid "Last Name"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: admin/manage-fields.php:383, add-ons/user-listing/userlisting.php:924, add-ons/user-listing/userlisting.php:2576
|
1401 |
msgid "Nickname"
|
1402 |
msgstr ""
|
1403 |
|
1413 |
msgid "E-mail"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: admin/manage-fields.php:387, add-ons/email-customizer/email-customizer.php:33, add-ons/user-listing/userlisting.php:122, add-ons/user-listing/userlisting.php:906, add-ons/user-listing/userlisting.php:2570, features/email-customizer/email-customizer.php:33
|
1417 |
msgid "Website"
|
1418 |
msgstr ""
|
1419 |
|
1433 |
msgid "About Yourself"
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: admin/manage-fields.php:397, add-ons/user-listing/userlisting.php:125, add-ons/user-listing/userlisting.php:909, add-ons/user-listing/userlisting.php:2571
|
1437 |
msgid "Biographical Info"
|
1438 |
msgstr ""
|
1439 |
|
3497 |
msgid "Send these credentials via email."
|
3498 |
msgstr ""
|
3499 |
|
3500 |
+
#: front-end/class-formbuilder.php:770
|
3501 |
msgid "There are no other users to edit"
|
3502 |
msgstr ""
|
3503 |
|
3509 |
msgid "Select User"
|
3510 |
msgstr ""
|
3511 |
|
3512 |
+
#: front-end/class-formbuilder.php:802
|
3513 |
msgid "Something went wrong. Please try again!"
|
3514 |
msgstr ""
|
3515 |
|
3770 |
msgid "Dashboard (redirect users from accessing the dashboard)"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
+
#: add-ons/custom-redirects/custom_redirects_admin.php:60, add-ons/user-listing/userlisting.php:168, add-ons/user-listing/userlisting.php:2569
|
3774 |
msgid "User ID"
|
3775 |
msgstr ""
|
3776 |
|
4326 |
msgid "No Edit-profile Forms found in trash"
|
4327 |
msgstr ""
|
4328 |
|
4329 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:2463
|
4330 |
msgid "Shortcode"
|
4331 |
msgstr ""
|
4332 |
|
4333 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:2484
|
4334 |
msgid "(no title)"
|
4335 |
msgstr ""
|
4336 |
|
4337 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:2506
|
4338 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
4339 |
msgstr ""
|
4340 |
|
4341 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:2510
|
4342 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
4343 |
msgstr ""
|
4344 |
|
4345 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:2504
|
4346 |
msgid "The shortcode will be available after you publish this form."
|
4347 |
msgstr ""
|
4348 |
|
4349 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:2543
|
4350 |
msgid "Form Shortcode"
|
4351 |
msgstr ""
|
4352 |
|
4510 |
msgid "Display name as"
|
4511 |
msgstr ""
|
4512 |
|
4513 |
+
#: add-ons/user-listing/userlisting.php:169, add-ons/user-listing/userlisting.php:341, add-ons/user-listing/userlisting.php:927, add-ons/user-listing/userlisting.php:2578, features/admin-approval/class-admin-approval.php:178, features/roles-editor/roles-editor.php:286
|
4514 |
msgid "Role"
|
4515 |
msgstr ""
|
4516 |
|
4518 |
msgid "Role Slug"
|
4519 |
msgstr ""
|
4520 |
|
4521 |
+
#: add-ons/user-listing/userlisting.php:171, add-ons/user-listing/userlisting.php:2572
|
4522 |
msgid "Registration Date"
|
4523 |
msgstr ""
|
4524 |
|
4525 |
+
#: add-ons/user-listing/userlisting.php:172, add-ons/user-listing/userlisting.php:2577
|
4526 |
msgid "Number of Posts"
|
4527 |
msgstr ""
|
4528 |
|
4550 |
msgid "Search all Fields"
|
4551 |
msgstr ""
|
4552 |
|
4553 |
+
#: add-ons/user-listing/userlisting.php:223, add-ons/user-listing/userlisting.php:2656
|
4554 |
msgid "Faceted Menus"
|
4555 |
msgstr ""
|
4556 |
|
4586 |
msgid "Avatar"
|
4587 |
msgstr ""
|
4588 |
|
4589 |
+
#: add-ons/user-listing/userlisting.php:340, add-ons/user-listing/userlisting.php:2573, features/admin-approval/class-admin-approval.php:175
|
4590 |
msgid "Firstname"
|
4591 |
msgstr ""
|
4592 |
|
4614 |
msgid "User not found"
|
4615 |
msgstr ""
|
4616 |
|
4617 |
+
#: add-ons/user-listing/userlisting.php:921, add-ons/user-listing/userlisting.php:2584
|
4618 |
msgid "Jabber"
|
4619 |
msgstr ""
|
4620 |
|
4621 |
+
#: add-ons/user-listing/userlisting.php:918, add-ons/user-listing/userlisting.php:2583
|
4622 |
msgid "Yim"
|
4623 |
msgstr ""
|
4624 |
|
4625 |
+
#: add-ons/user-listing/userlisting.php:915, add-ons/user-listing/userlisting.php:2582
|
4626 |
msgid "Aim"
|
4627 |
msgstr ""
|
4628 |
|
4629 |
+
#: add-ons/user-listing/userlisting.php:903, add-ons/user-listing/userlisting.php:2575
|
4630 |
msgid "Display Name"
|
4631 |
msgstr ""
|
4632 |
|
4634 |
msgid "First/Lastname"
|
4635 |
msgstr ""
|
4636 |
|
4637 |
+
#: add-ons/user-listing/userlisting.php:1224, add-ons/user-listing/userlisting.php:1745, add-ons/user-listing/userlisting.php:2290, add-ons/user-listing/userlisting.php:3518
|
4638 |
msgid "Search Users by All Fields"
|
4639 |
msgstr ""
|
4640 |
|
4690 |
msgid "Show All"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
+
#: add-ons/user-listing/userlisting.php:1895, admin/advanced-settings/includes/views/view-fields.php:78
|
4694 |
msgid "Choose..."
|
4695 |
msgstr ""
|
4696 |
|
4697 |
+
#: add-ons/user-listing/userlisting.php:1934
|
4698 |
msgid "Choose or type in an option..."
|
4699 |
msgstr ""
|
4700 |
|
4701 |
+
#: add-ons/user-listing/userlisting.php:2037
|
4702 |
msgid "No options available"
|
4703 |
msgstr ""
|
4704 |
|
4705 |
+
#: add-ons/user-listing/userlisting.php:2192
|
4706 |
msgid "Remove All Filters"
|
4707 |
msgstr ""
|
4708 |
|
4709 |
+
#: add-ons/user-listing/userlisting.php:2307
|
4710 |
msgid "Search"
|
4711 |
msgstr ""
|
4712 |
|
4713 |
+
#: add-ons/user-listing/userlisting.php:2308
|
4714 |
msgid "Clear Results"
|
4715 |
msgstr ""
|
4716 |
|
4717 |
+
#: add-ons/user-listing/userlisting.php:2513, add-ons/user-listing/userlisting.php:2517
|
4718 |
msgid "Extra shortcode parameters"
|
4719 |
msgstr ""
|
4720 |
|
4721 |
+
#: add-ons/user-listing/userlisting.php:2515
|
4722 |
msgid "View all extra shortcode parameters"
|
4723 |
msgstr ""
|
4724 |
|
4725 |
+
#: add-ons/user-listing/userlisting.php:2520
|
4726 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
4727 |
msgstr ""
|
4728 |
|
4729 |
+
#: add-ons/user-listing/userlisting.php:2521
|
4730 |
msgid "Example:"
|
4731 |
msgstr ""
|
4732 |
|
4733 |
+
#: add-ons/user-listing/userlisting.php:2523
|
4734 |
msgid "Remember though, that the field-value combination must exist in the database."
|
4735 |
msgstr ""
|
4736 |
|
4737 |
+
#: add-ons/user-listing/userlisting.php:2529
|
4738 |
msgid "displays only the users that you specified the user_id for"
|
4739 |
msgstr ""
|
4740 |
|
4741 |
+
#: add-ons/user-listing/userlisting.php:2535
|
4742 |
msgid "displays all users except the ones you specified the user_id for"
|
4743 |
msgstr ""
|
4744 |
|
4745 |
+
#: add-ons/user-listing/userlisting.php:2574, features/admin-approval/class-admin-approval.php:176
|
4746 |
msgid "Lastname"
|
4747 |
msgstr ""
|
4748 |
|
4749 |
+
#: add-ons/user-listing/userlisting.php:2599
|
4750 |
msgid "Random (very slow on large databases > 10K user)"
|
4751 |
msgstr ""
|
4752 |
|
4753 |
+
#: add-ons/user-listing/userlisting.php:2602
|
4754 |
msgid "Ascending"
|
4755 |
msgstr ""
|
4756 |
|
4757 |
+
#: add-ons/user-listing/userlisting.php:2603
|
4758 |
msgid "Descending"
|
4759 |
msgstr ""
|
4760 |
|
4761 |
+
#: add-ons/user-listing/userlisting.php:2608
|
4762 |
msgid "Roles to Display"
|
4763 |
msgstr ""
|
4764 |
|
4765 |
+
#: add-ons/user-listing/userlisting.php:2608
|
4766 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
4767 |
msgstr ""
|
4768 |
|
4769 |
+
#: add-ons/user-listing/userlisting.php:2609
|
4770 |
msgid "Number of Users/Page"
|
4771 |
msgstr ""
|
4772 |
|
4773 |
+
#: add-ons/user-listing/userlisting.php:2609
|
4774 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
4775 |
msgstr ""
|
4776 |
|
4777 |
+
#: add-ons/user-listing/userlisting.php:2610
|
4778 |
msgid "Default Sorting Criteria"
|
4779 |
msgstr ""
|
4780 |
|
4781 |
+
#: add-ons/user-listing/userlisting.php:2610
|
4782 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
4783 |
msgstr ""
|
4784 |
|
4785 |
+
#: add-ons/user-listing/userlisting.php:2611
|
4786 |
msgid "Default Sorting Order"
|
4787 |
msgstr ""
|
4788 |
|
4789 |
+
#: add-ons/user-listing/userlisting.php:2611
|
4790 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
4791 |
msgstr ""
|
4792 |
|
4793 |
+
#: add-ons/user-listing/userlisting.php:2612
|
4794 |
msgid "Avatar Size (All-userlisting)"
|
4795 |
msgstr ""
|
4796 |
|
4797 |
+
#: add-ons/user-listing/userlisting.php:2612
|
4798 |
msgid "Set the avatar size on the all-userlisting only"
|
4799 |
msgstr ""
|
4800 |
|
4801 |
+
#: add-ons/user-listing/userlisting.php:2613
|
4802 |
msgid "Avatar Size (Single-userlisting)"
|
4803 |
msgstr ""
|
4804 |
|
4805 |
+
#: add-ons/user-listing/userlisting.php:2613
|
4806 |
msgid "Set the avatar size on the single-userlisting only"
|
4807 |
msgstr ""
|
4808 |
|
4809 |
+
#: add-ons/user-listing/userlisting.php:2614
|
4810 |
msgid "Visible only to logged in users?"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
+
#: add-ons/user-listing/userlisting.php:2614
|
4814 |
msgid "The userlisting will only be visible only to the logged in users"
|
4815 |
msgstr ""
|
4816 |
|
4817 |
+
#: add-ons/user-listing/userlisting.php:2615
|
4818 |
msgid "Visible to following Roles"
|
4819 |
msgstr ""
|
4820 |
|
4821 |
+
#: add-ons/user-listing/userlisting.php:2615
|
4822 |
msgid "The userlisting will only be visible to the following roles"
|
4823 |
msgstr ""
|
4824 |
|
4825 |
+
#: add-ons/user-listing/userlisting.php:2621
|
4826 |
msgid "Userlisting Settings"
|
4827 |
msgstr ""
|
4828 |
|
4829 |
+
#: add-ons/user-listing/userlisting.php:2646
|
4830 |
msgid "Label"
|
4831 |
msgstr ""
|
4832 |
|
4833 |
+
#: add-ons/user-listing/userlisting.php:2646
|
4834 |
msgid "Choose the facet name that appears on the frontend"
|
4835 |
msgstr ""
|
4836 |
|
4837 |
+
#: add-ons/user-listing/userlisting.php:2647
|
4838 |
msgid "Facet Type"
|
4839 |
msgstr ""
|
4840 |
|
4841 |
+
#: add-ons/user-listing/userlisting.php:2647
|
4842 |
msgid "Choose the facet menu type"
|
4843 |
msgstr ""
|
4844 |
|
4845 |
+
#: add-ons/user-listing/userlisting.php:2648
|
4846 |
msgid "Facet Meta"
|
4847 |
msgstr ""
|
4848 |
|
4849 |
+
#: add-ons/user-listing/userlisting.php:2648
|
4850 |
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."
|
4851 |
msgstr ""
|
4852 |
|
4853 |
+
#: add-ons/user-listing/userlisting.php:2649
|
4854 |
msgid "Behaviour"
|
4855 |
msgstr ""
|
4856 |
|
4857 |
+
#: add-ons/user-listing/userlisting.php:2649
|
4858 |
msgid "Narrow the results"
|
4859 |
msgstr ""
|
4860 |
|
4861 |
+
#: add-ons/user-listing/userlisting.php:2649
|
4862 |
msgid "Expand the results"
|
4863 |
msgstr ""
|
4864 |
|
4865 |
+
#: add-ons/user-listing/userlisting.php:2649
|
4866 |
msgid "Choose how multiple selections affect the results"
|
4867 |
msgstr ""
|
4868 |
|
4869 |
+
#: add-ons/user-listing/userlisting.php:2650
|
4870 |
msgid "Visible choices"
|
4871 |
msgstr ""
|
4872 |
|
4873 |
+
#: add-ons/user-listing/userlisting.php:2650
|
4874 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
4875 |
msgstr ""
|
4876 |
|
4877 |
+
#: add-ons/user-listing/userlisting.php:2675
|
4878 |
msgid "Search Fields"
|
4879 |
msgstr ""
|
4880 |
|
4881 |
+
#: add-ons/user-listing/userlisting.php:2675
|
4882 |
msgid "Choose the fields in which the Search Field will look in"
|
4883 |
msgstr ""
|
4884 |
|
4885 |
+
#: add-ons/user-listing/userlisting.php:2680
|
4886 |
msgid "Search Settings"
|
4887 |
msgstr ""
|
4888 |
|
4889 |
+
#: add-ons/user-listing/userlisting.php:2696
|
4890 |
msgid "Themes: add style to your user listing section"
|
4891 |
msgstr ""
|
4892 |
|
4893 |
+
#: add-ons/user-listing/userlisting.php:3426
|
4894 |
msgid "You can now add beautifully pre-designed templates to showcase the user base on your website using one of the <strong>user listing templates</strong> available in the %sUser Listing add-on%s."
|
4895 |
msgstr ""
|
4896 |
|
4897 |
+
#: add-ons/user-listing/userlisting.php:3494
|
4898 |
msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
|
4899 |
msgstr ""
|
4900 |
|
4901 |
+
#: add-ons/user-listing/userlisting.php:3494
|
4902 |
msgid "You can find it in the Profile Builder menu."
|
4903 |
msgstr ""
|
4904 |
|
4905 |
+
#: add-ons/user-listing/userlisting.php:3669
|
4906 |
msgid "No results found!"
|
4907 |
msgstr ""
|
4908 |
|