Version Description
- Fixed an issue with default value for Biographical Info Field
- Fixed a notice on register forms when the form did not pass a required check
- Fixed a problem with User to Edit on pages with multiple edit forms on them
- Compatibility with Wordpress 5.4 nav_menu hooks
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 3.1.6 |
Comparing to | |
See all releases |
Code changes from version 3.1.5 to 3.1.6
- front-end/class-formbuilder.php +1 -1
- front-end/default-fields/description/description.php +1 -1
- index.php +2 -2
- readme.txt +7 -1
- translation/profile-builder.pot +110 -110
front-end/class-formbuilder.php
CHANGED
@@ -701,7 +701,7 @@ class Profile_Builder_Form_Creator{
|
|
701 |
/* turn it in a select2 */
|
702 |
wp_enqueue_script( 'wppb_select2_js', WPPB_PLUGIN_URL .'assets/js/select2/select2.min.js', array( 'jquery' ), PROFILE_BUILDER_VERSION );
|
703 |
wp_enqueue_style( 'wppb_select2_css', WPPB_PLUGIN_URL .'assets/css/select2/select2.min.css', array(), PROFILE_BUILDER_VERSION );
|
704 |
-
wp_add_inline_script( 'wppb_select2_js', 'jQuery("
|
705 |
?>
|
706 |
<form method="GET" action="" id="select_user_to_edit_form">
|
707 |
<p class="wppb-form-field">
|
701 |
/* turn it in a select2 */
|
702 |
wp_enqueue_script( 'wppb_select2_js', WPPB_PLUGIN_URL .'assets/js/select2/select2.min.js', array( 'jquery' ), PROFILE_BUILDER_VERSION );
|
703 |
wp_enqueue_style( 'wppb_select2_css', WPPB_PLUGIN_URL .'assets/css/select2/select2.min.css', array(), PROFILE_BUILDER_VERSION );
|
704 |
+
wp_add_inline_script( 'wppb_select2_js', 'jQuery(".wppb-user-to-edit").change(function () {window.location.href = jQuery(this).val(); });jQuery(function(){jQuery(".wppb-user-to-edit").select2(); })' );
|
705 |
?>
|
706 |
<form method="GET" action="" id="select_user_to_edit_form">
|
707 |
<p class="wppb-form-field">
|
front-end/default-fields/description/description.php
CHANGED
@@ -10,7 +10,7 @@ function wppb_description_handler( $output, $form_location, $field, $user_id, $f
|
|
10 |
}
|
11 |
|
12 |
if ( trim( $input_value ) == '' )
|
13 |
-
$input_value = $field['default-
|
14 |
|
15 |
$input_value = ( isset( $request_data['description'] ) ? trim( $request_data['description'] ) : $input_value );
|
16 |
|
10 |
}
|
11 |
|
12 |
if ( trim( $input_value ) == '' )
|
13 |
+
$input_value = $field['default-content'];
|
14 |
|
15 |
$input_value = ( isset( $request_data['description'] ) ? trim( $request_data['description'] ) : $input_value );
|
16 |
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
-
Version: 3.1.
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
@@ -63,7 +63,7 @@ function wppb_free_plugin_init() {
|
|
63 |
*
|
64 |
*
|
65 |
*/
|
66 |
-
define('PROFILE_BUILDER_VERSION', '3.1.
|
67 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
68 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
69 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
+
Version: 3.1.6
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
63 |
*
|
64 |
*
|
65 |
*/
|
66 |
+
define('PROFILE_BUILDER_VERSION', '3.1.6' );
|
67 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
68 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
69 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 5.4.0
|
7 |
-
Stable tag: 3.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -169,6 +169,12 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
169 |
12. Role Editor
|
170 |
|
171 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
= 3.1.5 =
|
173 |
* Fixed a problem on multisite where admins were not being able to confirm/unconfirm Email Confirmation users
|
174 |
* Fixed page title on admin pages for Email Confirmation User page
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 5.4.0
|
7 |
+
Stable tag: 3.1.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
169 |
12. Role Editor
|
170 |
|
171 |
== Changelog ==
|
172 |
+
= 3.1.6 =
|
173 |
+
* Fixed an issue with default value for Biographical Info Field
|
174 |
+
* Fixed a notice on register forms when the form did not pass a required check
|
175 |
+
* Fixed a problem with User to Edit on pages with multiple edit forms on them
|
176 |
+
* Compatibility with Wordpress 5.4 nav_menu hooks
|
177 |
+
|
178 |
= 3.1.5 =
|
179 |
* Fixed a problem on multisite where admins were not being able to confirm/unconfirm Email Confirmation users
|
180 |
* Fixed page title on admin pages for Email Confirmation User page
|
translation/profile-builder.pot
CHANGED
@@ -153,7 +153,7 @@ msgstr ""
|
|
153 |
msgid "Close"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: ../pb-add-on-buddypress/field-visibility.php:216, ../pb-add-on-custom-profile-menus/index.php:
|
157 |
msgid "Everyone"
|
158 |
msgstr ""
|
159 |
|
@@ -309,83 +309,83 @@ msgstr ""
|
|
309 |
msgid "Add a class to a field. Should not contain dots(.) and for multiple classes separate by space."
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: ../pb-add-on-custom-profile-menus/index.php:
|
313 |
msgid "Login Label"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: ../pb-add-on-custom-profile-menus/index.php:
|
317 |
msgid "Login"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: ../pb-add-on-custom-profile-menus/index.php:
|
321 |
msgid "Logout Label"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: ../pb-add-on-custom-profile-menus/index.php:
|
325 |
msgid "Logout"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: ../pb-add-on-custom-profile-menus/index.php:
|
329 |
msgid "Form page URL"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: ../pb-add-on-custom-profile-menus/index.php:
|
333 |
msgid "Login page URL"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: ../pb-add-on-custom-profile-menus/index.php:
|
337 |
msgid "Login Form page URL"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: ../pb-add-on-custom-profile-menus/index.php:
|
341 |
msgid "Edit Profile Form page URL"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: ../pb-add-on-custom-profile-menus/index.php:
|
345 |
msgid "Register Form page URL"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: ../pb-add-on-custom-profile-menus/index.php:
|
349 |
msgid "Display Mode"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: ../pb-add-on-custom-profile-menus/index.php:
|
353 |
msgid "Logged In Users"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: ../pb-add-on-custom-profile-menus/index.php:
|
357 |
msgid "Logged Out Users"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: ../pb-add-on-custom-profile-menus/index.php:
|
361 |
msgid "Restrict menu item to a minimum role"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: ../pb-add-on-custom-profile-menus/index.php:
|
365 |
msgid "Works only if Display Mode: Logged In Users is selected"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: ../pb-add-on-custom-profile-menus/index.php:
|
369 |
msgid "Edit Profile"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: ../pb-add-on-custom-profile-menus/index.php:
|
373 |
msgid "Register"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: ../pb-add-on-custom-profile-menus/index.php:
|
377 |
msgid "iFrame Title"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: ../pb-add-on-custom-profile-menus/index.php:
|
381 |
msgid "iFrame Size"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: ../pb-add-on-custom-profile-menus/index.php:
|
385 |
msgid "Height (px)"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: ../pb-add-on-custom-profile-menus/index.php:
|
389 |
msgid "Width (px)"
|
390 |
msgstr ""
|
391 |
|
@@ -683,7 +683,7 @@ msgstr ""
|
|
683 |
msgid "Replace labels with placeholders:"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:324, admin/general-settings.php:113, admin/general-settings.php:126, admin/general-settings.php:175, admin/general-settings.php:222, admin/general-settings.php:296, admin/private-website.php:60, admin/private-website.php:117, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:18, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:34, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:18, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:66, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:181, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:197, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:217, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:240, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:261, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:132, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:149, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:164, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:184, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:201, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:239, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:260, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:280, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:302, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:16, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:32, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:48, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:64, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:53, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:75, features/content-restriction/content-restriction.php:88, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:229, modules/multiple-forms/register-forms.php:230, modules/user-listing/userlisting.php:
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
@@ -1745,7 +1745,7 @@ msgstr ""
|
|
1745 |
msgid "Show"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: admin/admin-bar.php:80, modules/user-listing/userlisting.php:
|
1749 |
msgid "Hide"
|
1750 |
msgstr ""
|
1751 |
|
@@ -2253,11 +2253,11 @@ msgstr ""
|
|
2253 |
msgid "Username and Email"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
-
#: admin/general-settings.php:251, admin/manage-fields.php:318, front-end/login.php:246, front-end/login.php:260, front-end/login.php:389, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:121, features/admin-approval/class-admin-approval.php:166, features/email-confirmation/class-email-confirmation.php:168, modules/custom-redirects/custom_redirects_admin.php:60, modules/email-customizer/email-customizer.php:28, modules/user-listing/userlisting.php:111, modules/user-listing/userlisting.php:311, modules/user-listing/userlisting.php:
|
2257 |
msgid "Username"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
-
#: admin/general-settings.php:252, front-end/login.php:386, modules/email-customizer/email-customizer.php:29, modules/user-listing/userlisting.php:
|
2261 |
msgid "Email"
|
2262 |
msgstr ""
|
2263 |
|
@@ -2749,7 +2749,7 @@ msgstr ""
|
|
2749 |
msgid "Usernames cannot be changed."
|
2750 |
msgstr ""
|
2751 |
|
2752 |
-
#: admin/manage-fields.php:321, modules/user-listing/userlisting.php:
|
2753 |
msgid "Nickname"
|
2754 |
msgstr ""
|
2755 |
|
@@ -2757,7 +2757,7 @@ msgstr ""
|
|
2757 |
msgid "Display name publicly as"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: admin/manage-fields.php:325, modules/email-customizer/email-customizer.php:33, modules/user-listing/userlisting.php:120, modules/user-listing/userlisting.php:
|
2761 |
msgid "Website"
|
2762 |
msgstr ""
|
2763 |
|
@@ -2773,7 +2773,7 @@ msgstr ""
|
|
2773 |
msgid "Jabber / Google Talk"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
-
#: admin/manage-fields.php:335, modules/user-listing/userlisting.php:123, modules/user-listing/userlisting.php:
|
2777 |
msgid "Biographical Info"
|
2778 |
msgstr ""
|
2779 |
|
@@ -5401,15 +5401,15 @@ msgstr ""
|
|
5401 |
msgid "Approve"
|
5402 |
msgstr ""
|
5403 |
|
5404 |
-
#: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:312, modules/user-listing/userlisting.php:
|
5405 |
msgid "Firstname"
|
5406 |
msgstr ""
|
5407 |
|
5408 |
-
#: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:
|
5409 |
msgid "Lastname"
|
5410 |
msgstr ""
|
5411 |
|
5412 |
-
#: features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:255, modules/user-listing/userlisting.php:159, modules/user-listing/userlisting.php:313, modules/user-listing/userlisting.php:
|
5413 |
msgid "Role"
|
5414 |
msgstr ""
|
5415 |
|
@@ -6349,27 +6349,27 @@ msgstr ""
|
|
6349 |
msgid "No Edit-profile Forms found in trash"
|
6350 |
msgstr ""
|
6351 |
|
6352 |
-
#: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:
|
6353 |
msgid "Shortcode"
|
6354 |
msgstr ""
|
6355 |
|
6356 |
-
#: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:
|
6357 |
msgid "(no title)"
|
6358 |
msgstr ""
|
6359 |
|
6360 |
-
#: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:
|
6361 |
msgid "The shortcode will be available after you publish this form."
|
6362 |
msgstr ""
|
6363 |
|
6364 |
-
#: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:
|
6365 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6366 |
msgstr ""
|
6367 |
|
6368 |
-
#: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:
|
6369 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6370 |
msgstr ""
|
6371 |
|
6372 |
-
#: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:
|
6373 |
msgid "Form Shortcode"
|
6374 |
msgstr ""
|
6375 |
|
@@ -6525,11 +6525,11 @@ msgstr ""
|
|
6525 |
msgid "Display name as"
|
6526 |
msgstr ""
|
6527 |
|
6528 |
-
#: modules/user-listing/userlisting.php:161, modules/user-listing/userlisting.php:
|
6529 |
msgid "Registration Date"
|
6530 |
msgstr ""
|
6531 |
|
6532 |
-
#: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:
|
6533 |
msgid "Number of Posts"
|
6534 |
msgstr ""
|
6535 |
|
@@ -6565,7 +6565,7 @@ msgstr ""
|
|
6565 |
msgid "Search all Fields"
|
6566 |
msgstr ""
|
6567 |
|
6568 |
-
#: modules/user-listing/userlisting.php:227, modules/user-listing/userlisting.php:
|
6569 |
msgid "Faceted Menus"
|
6570 |
msgstr ""
|
6571 |
|
@@ -6593,11 +6593,11 @@ msgstr ""
|
|
6593 |
msgid "Avatar"
|
6594 |
msgstr ""
|
6595 |
|
6596 |
-
#: modules/user-listing/userlisting.php:314, modules/user-listing/userlisting.php:
|
6597 |
msgid "Posts"
|
6598 |
msgstr ""
|
6599 |
|
6600 |
-
#: modules/user-listing/userlisting.php:315, modules/user-listing/userlisting.php:
|
6601 |
msgid "Sign-up Date"
|
6602 |
msgstr ""
|
6603 |
|
@@ -6617,275 +6617,275 @@ msgstr ""
|
|
6617 |
msgid "User not found"
|
6618 |
msgstr ""
|
6619 |
|
6620 |
-
#: modules/user-listing/userlisting.php:
|
6621 |
msgid "First/Lastname"
|
6622 |
msgstr ""
|
6623 |
|
6624 |
-
#: modules/user-listing/userlisting.php:
|
6625 |
msgid "Display Name"
|
6626 |
msgstr ""
|
6627 |
|
6628 |
-
#: modules/user-listing/userlisting.php:
|
6629 |
msgid "Aim"
|
6630 |
msgstr ""
|
6631 |
|
6632 |
-
#: modules/user-listing/userlisting.php:
|
6633 |
msgid "Yim"
|
6634 |
msgstr ""
|
6635 |
|
6636 |
-
#: modules/user-listing/userlisting.php:
|
6637 |
msgid "Jabber"
|
6638 |
msgstr ""
|
6639 |
|
6640 |
-
#: modules/user-listing/userlisting.php:
|
6641 |
msgid "Search Users by All Fields"
|
6642 |
msgstr ""
|
6643 |
|
6644 |
-
#: modules/user-listing/userlisting.php:
|
6645 |
msgid "Click here to see more information about this user"
|
6646 |
msgstr ""
|
6647 |
|
6648 |
-
#: modules/user-listing/userlisting.php:
|
6649 |
msgid "More..."
|
6650 |
msgstr ""
|
6651 |
|
6652 |
-
#: modules/user-listing/userlisting.php:
|
6653 |
msgid "Click here to see more information about this user."
|
6654 |
msgstr ""
|
6655 |
|
6656 |
-
#: modules/user-listing/userlisting.php:
|
6657 |
msgid "View Map"
|
6658 |
msgstr ""
|
6659 |
|
6660 |
-
#: modules/user-listing/userlisting.php:
|
6661 |
msgid "Click here to go back"
|
6662 |
msgstr ""
|
6663 |
|
6664 |
-
#: modules/user-listing/userlisting.php:
|
6665 |
msgid "Back"
|
6666 |
msgstr ""
|
6667 |
|
6668 |
-
#: modules/user-listing/userlisting.php:
|
6669 |
msgid "«« First"
|
6670 |
msgstr ""
|
6671 |
|
6672 |
-
#: modules/user-listing/userlisting.php:
|
6673 |
msgid "« Prev"
|
6674 |
msgstr ""
|
6675 |
|
6676 |
-
#: modules/user-listing/userlisting.php:
|
6677 |
msgid "Next » "
|
6678 |
msgstr ""
|
6679 |
|
6680 |
-
#: modules/user-listing/userlisting.php:
|
6681 |
msgid "Last »»"
|
6682 |
msgstr ""
|
6683 |
|
6684 |
-
#: modules/user-listing/userlisting.php:
|
6685 |
msgid "You don't have any pagination settings on this userlisting!"
|
6686 |
msgstr ""
|
6687 |
|
6688 |
-
#: modules/user-listing/userlisting.php:
|
6689 |
msgid "Show All"
|
6690 |
msgstr ""
|
6691 |
|
6692 |
-
#: modules/user-listing/userlisting.php:
|
6693 |
msgid "Choose..."
|
6694 |
msgstr ""
|
6695 |
|
6696 |
-
#: modules/user-listing/userlisting.php:
|
6697 |
msgid "No options available"
|
6698 |
msgstr ""
|
6699 |
|
6700 |
-
#: modules/user-listing/userlisting.php:
|
6701 |
msgid "Remove All Filters"
|
6702 |
msgstr ""
|
6703 |
|
6704 |
-
#: modules/user-listing/userlisting.php:
|
6705 |
msgid "Search"
|
6706 |
msgstr ""
|
6707 |
|
6708 |
-
#: modules/user-listing/userlisting.php:
|
6709 |
msgid "Clear Results"
|
6710 |
msgstr ""
|
6711 |
|
6712 |
-
#: modules/user-listing/userlisting.php:
|
6713 |
msgid "Extra shortcode parameters"
|
6714 |
msgstr ""
|
6715 |
|
6716 |
-
#: modules/user-listing/userlisting.php:
|
6717 |
msgid "View all extra shortcode parameters"
|
6718 |
msgstr ""
|
6719 |
|
6720 |
-
#: modules/user-listing/userlisting.php:
|
6721 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6722 |
msgstr ""
|
6723 |
|
6724 |
-
#: modules/user-listing/userlisting.php:
|
6725 |
msgid "Example:"
|
6726 |
msgstr ""
|
6727 |
|
6728 |
-
#: modules/user-listing/userlisting.php:
|
6729 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6730 |
msgstr ""
|
6731 |
|
6732 |
-
#: modules/user-listing/userlisting.php:
|
6733 |
msgid "displays only the users that you specified the user_id for"
|
6734 |
msgstr ""
|
6735 |
|
6736 |
-
#: modules/user-listing/userlisting.php:
|
6737 |
msgid "displays all users except the ones you specified the user_id for"
|
6738 |
msgstr ""
|
6739 |
|
6740 |
-
#: modules/user-listing/userlisting.php:
|
6741 |
msgid "Random (very slow on large databases > 10K user)"
|
6742 |
msgstr ""
|
6743 |
|
6744 |
-
#: modules/user-listing/userlisting.php:
|
6745 |
msgid "Ascending"
|
6746 |
msgstr ""
|
6747 |
|
6748 |
-
#: modules/user-listing/userlisting.php:
|
6749 |
msgid "Descending"
|
6750 |
msgstr ""
|
6751 |
|
6752 |
-
#: modules/user-listing/userlisting.php:
|
6753 |
msgid "Roles to Display"
|
6754 |
msgstr ""
|
6755 |
|
6756 |
-
#: modules/user-listing/userlisting.php:
|
6757 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6758 |
msgstr ""
|
6759 |
|
6760 |
-
#: modules/user-listing/userlisting.php:
|
6761 |
msgid "Number of Users/Page"
|
6762 |
msgstr ""
|
6763 |
|
6764 |
-
#: modules/user-listing/userlisting.php:
|
6765 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6766 |
msgstr ""
|
6767 |
|
6768 |
-
#: modules/user-listing/userlisting.php:
|
6769 |
msgid "Default Sorting Criteria"
|
6770 |
msgstr ""
|
6771 |
|
6772 |
-
#: modules/user-listing/userlisting.php:
|
6773 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6774 |
msgstr ""
|
6775 |
|
6776 |
-
#: modules/user-listing/userlisting.php:
|
6777 |
msgid "Default Sorting Order"
|
6778 |
msgstr ""
|
6779 |
|
6780 |
-
#: modules/user-listing/userlisting.php:
|
6781 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6782 |
msgstr ""
|
6783 |
|
6784 |
-
#: modules/user-listing/userlisting.php:
|
6785 |
msgid "Avatar Size (All-userlisting)"
|
6786 |
msgstr ""
|
6787 |
|
6788 |
-
#: modules/user-listing/userlisting.php:
|
6789 |
msgid "Set the avatar size on the all-userlisting only"
|
6790 |
msgstr ""
|
6791 |
|
6792 |
-
#: modules/user-listing/userlisting.php:
|
6793 |
msgid "Avatar Size (Single-userlisting)"
|
6794 |
msgstr ""
|
6795 |
|
6796 |
-
#: modules/user-listing/userlisting.php:
|
6797 |
msgid "Set the avatar size on the single-userlisting only"
|
6798 |
msgstr ""
|
6799 |
|
6800 |
-
#: modules/user-listing/userlisting.php:
|
6801 |
msgid "Visible only to logged in users?"
|
6802 |
msgstr ""
|
6803 |
|
6804 |
-
#: modules/user-listing/userlisting.php:
|
6805 |
msgid "The userlisting will only be visible only to the logged in users"
|
6806 |
msgstr ""
|
6807 |
|
6808 |
-
#: modules/user-listing/userlisting.php:
|
6809 |
msgid "Visible to following Roles"
|
6810 |
msgstr ""
|
6811 |
|
6812 |
-
#: modules/user-listing/userlisting.php:
|
6813 |
msgid "The userlisting will only be visible to the following roles"
|
6814 |
msgstr ""
|
6815 |
|
6816 |
-
#: modules/user-listing/userlisting.php:
|
6817 |
msgid "Userlisting Settings"
|
6818 |
msgstr ""
|
6819 |
|
6820 |
-
#: modules/user-listing/userlisting.php:
|
6821 |
msgid "Label"
|
6822 |
msgstr ""
|
6823 |
|
6824 |
-
#: modules/user-listing/userlisting.php:
|
6825 |
msgid "Choose the facet name that appears on the frontend"
|
6826 |
msgstr ""
|
6827 |
|
6828 |
-
#: modules/user-listing/userlisting.php:
|
6829 |
msgid "Facet Type"
|
6830 |
msgstr ""
|
6831 |
|
6832 |
-
#: modules/user-listing/userlisting.php:
|
6833 |
msgid "Choose the facet menu type"
|
6834 |
msgstr ""
|
6835 |
|
6836 |
-
#: modules/user-listing/userlisting.php:
|
6837 |
msgid "Facet Meta"
|
6838 |
msgstr ""
|
6839 |
|
6840 |
-
#: modules/user-listing/userlisting.php:
|
6841 |
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."
|
6842 |
msgstr ""
|
6843 |
|
6844 |
-
#: modules/user-listing/userlisting.php:
|
6845 |
msgid "Behaviour"
|
6846 |
msgstr ""
|
6847 |
|
6848 |
-
#: modules/user-listing/userlisting.php:
|
6849 |
msgid "Narrow the results"
|
6850 |
msgstr ""
|
6851 |
|
6852 |
-
#: modules/user-listing/userlisting.php:
|
6853 |
msgid "Expand the results"
|
6854 |
msgstr ""
|
6855 |
|
6856 |
-
#: modules/user-listing/userlisting.php:
|
6857 |
msgid "Choose how multiple selections affect the results"
|
6858 |
msgstr ""
|
6859 |
|
6860 |
-
#: modules/user-listing/userlisting.php:
|
6861 |
msgid "Visible choices"
|
6862 |
msgstr ""
|
6863 |
|
6864 |
-
#: modules/user-listing/userlisting.php:
|
6865 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6866 |
msgstr ""
|
6867 |
|
6868 |
-
#: modules/user-listing/userlisting.php:
|
6869 |
msgid "Search Fields"
|
6870 |
msgstr ""
|
6871 |
|
6872 |
-
#: modules/user-listing/userlisting.php:
|
6873 |
msgid "Choose the fields in which the Search Field will look in"
|
6874 |
msgstr ""
|
6875 |
|
6876 |
-
#: modules/user-listing/userlisting.php:
|
6877 |
msgid "Search Settings"
|
6878 |
msgstr ""
|
6879 |
|
6880 |
-
#: modules/user-listing/userlisting.php:
|
6881 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6882 |
msgstr ""
|
6883 |
|
6884 |
-
#: modules/user-listing/userlisting.php:
|
6885 |
msgid "You can find it in the Profile Builder menu."
|
6886 |
msgstr ""
|
6887 |
|
6888 |
-
#: modules/user-listing/userlisting.php:
|
6889 |
msgid "No results found!"
|
6890 |
msgstr ""
|
6891 |
|
153 |
msgid "Close"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: ../pb-add-on-buddypress/field-visibility.php:216, ../pb-add-on-custom-profile-menus/index.php:269
|
157 |
msgid "Everyone"
|
158 |
msgstr ""
|
159 |
|
309 |
msgid "Add a class to a field. Should not contain dots(.) and for multiple classes separate by space."
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: ../pb-add-on-custom-profile-menus/index.php:178
|
313 |
msgid "Login Label"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: ../pb-add-on-custom-profile-menus/index.php:183, ../pb-add-on-custom-profile-menus/index.php:305, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:13, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:60, features/login-widget/login-widget.php:59
|
317 |
msgid "Login"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: ../pb-add-on-custom-profile-menus/index.php:186
|
321 |
msgid "Logout Label"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: ../pb-add-on-custom-profile-menus/index.php:191, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:16, front-end/class-formbuilder.php:174
|
325 |
msgid "Logout"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: ../pb-add-on-custom-profile-menus/index.php:197
|
329 |
msgid "Form page URL"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: ../pb-add-on-custom-profile-menus/index.php:200
|
333 |
msgid "Login page URL"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: ../pb-add-on-custom-profile-menus/index.php:203
|
337 |
msgid "Login Form page URL"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: ../pb-add-on-custom-profile-menus/index.php:206
|
341 |
msgid "Edit Profile Form page URL"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: ../pb-add-on-custom-profile-menus/index.php:209
|
345 |
msgid "Register Form page URL"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: ../pb-add-on-custom-profile-menus/index.php:248
|
349 |
msgid "Display Mode"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: ../pb-add-on-custom-profile-menus/index.php:255, features/content-restriction/content-restriction-meta-box.php:67
|
353 |
msgid "Logged In Users"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: ../pb-add-on-custom-profile-menus/index.php:262
|
357 |
msgid "Logged Out Users"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: ../pb-add-on-custom-profile-menus/index.php:276
|
361 |
msgid "Restrict menu item to a minimum role"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: ../pb-add-on-custom-profile-menus/index.php:277
|
365 |
msgid "Works only if Display Mode: Logged In Users is selected"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: ../pb-add-on-custom-profile-menus/index.php:308, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:67
|
369 |
msgid "Edit Profile"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: ../pb-add-on-custom-profile-menus/index.php:311, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, front-end/class-formbuilder.php:429, front-end/login.php:421
|
373 |
msgid "Register"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: ../pb-add-on-custom-profile-menus/index.php:317
|
377 |
msgid "iFrame Title"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: ../pb-add-on-custom-profile-menus/index.php:327
|
381 |
msgid "iFrame Size"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: ../pb-add-on-custom-profile-menus/index.php:330
|
385 |
msgid "Height (px)"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: ../pb-add-on-custom-profile-menus/index.php:337
|
389 |
msgid "Width (px)"
|
390 |
msgstr ""
|
391 |
|
683 |
msgid "Replace labels with placeholders:"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:324, admin/general-settings.php:113, admin/general-settings.php:126, admin/general-settings.php:175, admin/general-settings.php:222, admin/general-settings.php:296, admin/private-website.php:60, admin/private-website.php:117, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:18, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:34, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:18, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:66, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:181, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:197, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:217, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:240, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:261, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:132, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:149, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:164, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:184, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:201, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:239, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:260, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:280, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:302, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:16, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:32, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:48, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:64, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:53, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:75, features/content-restriction/content-restriction.php:88, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:229, modules/multiple-forms/register-forms.php:230, modules/user-listing/userlisting.php:2394
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
1745 |
msgid "Show"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: admin/admin-bar.php:80, modules/user-listing/userlisting.php:1670
|
1749 |
msgid "Hide"
|
1750 |
msgstr ""
|
1751 |
|
2253 |
msgid "Username and Email"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: admin/general-settings.php:251, admin/manage-fields.php:318, front-end/login.php:246, front-end/login.php:260, front-end/login.php:389, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:121, features/admin-approval/class-admin-approval.php:166, features/email-confirmation/class-email-confirmation.php:168, modules/custom-redirects/custom_redirects_admin.php:60, modules/email-customizer/email-customizer.php:28, modules/user-listing/userlisting.php:111, modules/user-listing/userlisting.php:311, modules/user-listing/userlisting.php:798, modules/user-listing/userlisting.php:2348
|
2257 |
msgid "Username"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: admin/general-settings.php:252, front-end/login.php:386, modules/email-customizer/email-customizer.php:29, modules/user-listing/userlisting.php:804, modules/user-listing/userlisting.php:2349
|
2261 |
msgid "Email"
|
2262 |
msgstr ""
|
2263 |
|
2749 |
msgid "Usernames cannot be changed."
|
2750 |
msgstr ""
|
2751 |
|
2752 |
+
#: admin/manage-fields.php:321, modules/user-listing/userlisting.php:837, modules/user-listing/userlisting.php:2356
|
2753 |
msgid "Nickname"
|
2754 |
msgstr ""
|
2755 |
|
2757 |
msgid "Display name publicly as"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
+
#: admin/manage-fields.php:325, modules/email-customizer/email-customizer.php:33, modules/user-listing/userlisting.php:120, modules/user-listing/userlisting.php:819, modules/user-listing/userlisting.php:2350
|
2761 |
msgid "Website"
|
2762 |
msgstr ""
|
2763 |
|
2773 |
msgid "Jabber / Google Talk"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
#: admin/manage-fields.php:335, modules/user-listing/userlisting.php:123, modules/user-listing/userlisting.php:822, modules/user-listing/userlisting.php:2351
|
2777 |
msgid "Biographical Info"
|
2778 |
msgstr ""
|
2779 |
|
5401 |
msgid "Approve"
|
5402 |
msgstr ""
|
5403 |
|
5404 |
+
#: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:312, modules/user-listing/userlisting.php:810, modules/user-listing/userlisting.php:2353
|
5405 |
msgid "Firstname"
|
5406 |
msgstr ""
|
5407 |
|
5408 |
+
#: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:813, modules/user-listing/userlisting.php:2354
|
5409 |
msgid "Lastname"
|
5410 |
msgstr ""
|
5411 |
|
5412 |
+
#: features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:255, modules/user-listing/userlisting.php:159, modules/user-listing/userlisting.php:313, modules/user-listing/userlisting.php:840, modules/user-listing/userlisting.php:2358
|
5413 |
msgid "Role"
|
5414 |
msgstr ""
|
5415 |
|
6349 |
msgid "No Edit-profile Forms found in trash"
|
6350 |
msgstr ""
|
6351 |
|
6352 |
+
#: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:2244
|
6353 |
msgid "Shortcode"
|
6354 |
msgstr ""
|
6355 |
|
6356 |
+
#: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:2265
|
6357 |
msgid "(no title)"
|
6358 |
msgstr ""
|
6359 |
|
6360 |
+
#: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:2285
|
6361 |
msgid "The shortcode will be available after you publish this form."
|
6362 |
msgstr ""
|
6363 |
|
6364 |
+
#: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:2287
|
6365 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6366 |
msgstr ""
|
6367 |
|
6368 |
+
#: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:2291
|
6369 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6370 |
msgstr ""
|
6371 |
|
6372 |
+
#: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:2324
|
6373 |
msgid "Form Shortcode"
|
6374 |
msgstr ""
|
6375 |
|
6525 |
msgid "Display name as"
|
6526 |
msgstr ""
|
6527 |
|
6528 |
+
#: modules/user-listing/userlisting.php:161, modules/user-listing/userlisting.php:2352
|
6529 |
msgid "Registration Date"
|
6530 |
msgstr ""
|
6531 |
|
6532 |
+
#: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:2357
|
6533 |
msgid "Number of Posts"
|
6534 |
msgstr ""
|
6535 |
|
6565 |
msgid "Search all Fields"
|
6566 |
msgstr ""
|
6567 |
|
6568 |
+
#: modules/user-listing/userlisting.php:227, modules/user-listing/userlisting.php:2436
|
6569 |
msgid "Faceted Menus"
|
6570 |
msgstr ""
|
6571 |
|
6593 |
msgid "Avatar"
|
6594 |
msgstr ""
|
6595 |
|
6596 |
+
#: modules/user-listing/userlisting.php:314, modules/user-listing/userlisting.php:825
|
6597 |
msgid "Posts"
|
6598 |
msgstr ""
|
6599 |
|
6600 |
+
#: modules/user-listing/userlisting.php:315, modules/user-listing/userlisting.php:807
|
6601 |
msgid "Sign-up Date"
|
6602 |
msgstr ""
|
6603 |
|
6617 |
msgid "User not found"
|
6618 |
msgstr ""
|
6619 |
|
6620 |
+
#: modules/user-listing/userlisting.php:801
|
6621 |
msgid "First/Lastname"
|
6622 |
msgstr ""
|
6623 |
|
6624 |
+
#: modules/user-listing/userlisting.php:816, modules/user-listing/userlisting.php:2355
|
6625 |
msgid "Display Name"
|
6626 |
msgstr ""
|
6627 |
|
6628 |
+
#: modules/user-listing/userlisting.php:828, modules/user-listing/userlisting.php:2362
|
6629 |
msgid "Aim"
|
6630 |
msgstr ""
|
6631 |
|
6632 |
+
#: modules/user-listing/userlisting.php:831, modules/user-listing/userlisting.php:2363
|
6633 |
msgid "Yim"
|
6634 |
msgstr ""
|
6635 |
|
6636 |
+
#: modules/user-listing/userlisting.php:834, modules/user-listing/userlisting.php:2364
|
6637 |
msgid "Jabber"
|
6638 |
msgstr ""
|
6639 |
|
6640 |
+
#: modules/user-listing/userlisting.php:1121, modules/user-listing/userlisting.php:1601, modules/user-listing/userlisting.php:2079, modules/user-listing/userlisting.php:2556
|
6641 |
msgid "Search Users by All Fields"
|
6642 |
msgstr ""
|
6643 |
|
6644 |
+
#: modules/user-listing/userlisting.php:1394
|
6645 |
msgid "Click here to see more information about this user"
|
6646 |
msgstr ""
|
6647 |
|
6648 |
+
#: modules/user-listing/userlisting.php:1394, modules/user-listing/userlisting.php:1394
|
6649 |
msgid "More..."
|
6650 |
msgstr ""
|
6651 |
|
6652 |
+
#: modules/user-listing/userlisting.php:1397
|
6653 |
msgid "Click here to see more information about this user."
|
6654 |
msgstr ""
|
6655 |
|
6656 |
+
#: modules/user-listing/userlisting.php:1424
|
6657 |
msgid "View Map"
|
6658 |
msgstr ""
|
6659 |
|
6660 |
+
#: modules/user-listing/userlisting.php:1555, modules/user-listing/userlisting.php:1558
|
6661 |
msgid "Click here to go back"
|
6662 |
msgstr ""
|
6663 |
|
6664 |
+
#: modules/user-listing/userlisting.php:1555, modules/user-listing/userlisting.php:1555
|
6665 |
msgid "Back"
|
6666 |
msgstr ""
|
6667 |
|
6668 |
+
#: modules/user-listing/userlisting.php:1588
|
6669 |
msgid "«« First"
|
6670 |
msgstr ""
|
6671 |
|
6672 |
+
#: modules/user-listing/userlisting.php:1589
|
6673 |
msgid "« Prev"
|
6674 |
msgstr ""
|
6675 |
|
6676 |
+
#: modules/user-listing/userlisting.php:1590
|
6677 |
msgid "Next » "
|
6678 |
msgstr ""
|
6679 |
|
6680 |
+
#: modules/user-listing/userlisting.php:1591
|
6681 |
msgid "Last »»"
|
6682 |
msgstr ""
|
6683 |
|
6684 |
+
#: modules/user-listing/userlisting.php:1620
|
6685 |
msgid "You don't have any pagination settings on this userlisting!"
|
6686 |
msgstr ""
|
6687 |
|
6688 |
+
#: modules/user-listing/userlisting.php:1669
|
6689 |
msgid "Show All"
|
6690 |
msgstr ""
|
6691 |
|
6692 |
+
#: modules/user-listing/userlisting.php:1743
|
6693 |
msgid "Choose..."
|
6694 |
msgstr ""
|
6695 |
|
6696 |
+
#: modules/user-listing/userlisting.php:1832
|
6697 |
msgid "No options available"
|
6698 |
msgstr ""
|
6699 |
|
6700 |
+
#: modules/user-listing/userlisting.php:1982
|
6701 |
msgid "Remove All Filters"
|
6702 |
msgstr ""
|
6703 |
|
6704 |
+
#: modules/user-listing/userlisting.php:2096
|
6705 |
msgid "Search"
|
6706 |
msgstr ""
|
6707 |
|
6708 |
+
#: modules/user-listing/userlisting.php:2097
|
6709 |
msgid "Clear Results"
|
6710 |
msgstr ""
|
6711 |
|
6712 |
+
#: modules/user-listing/userlisting.php:2294, modules/user-listing/userlisting.php:2298
|
6713 |
msgid "Extra shortcode parameters"
|
6714 |
msgstr ""
|
6715 |
|
6716 |
+
#: modules/user-listing/userlisting.php:2296
|
6717 |
msgid "View all extra shortcode parameters"
|
6718 |
msgstr ""
|
6719 |
|
6720 |
+
#: modules/user-listing/userlisting.php:2301
|
6721 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6722 |
msgstr ""
|
6723 |
|
6724 |
+
#: modules/user-listing/userlisting.php:2302
|
6725 |
msgid "Example:"
|
6726 |
msgstr ""
|
6727 |
|
6728 |
+
#: modules/user-listing/userlisting.php:2304
|
6729 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6730 |
msgstr ""
|
6731 |
|
6732 |
+
#: modules/user-listing/userlisting.php:2310
|
6733 |
msgid "displays only the users that you specified the user_id for"
|
6734 |
msgstr ""
|
6735 |
|
6736 |
+
#: modules/user-listing/userlisting.php:2316
|
6737 |
msgid "displays all users except the ones you specified the user_id for"
|
6738 |
msgstr ""
|
6739 |
|
6740 |
+
#: modules/user-listing/userlisting.php:2379
|
6741 |
msgid "Random (very slow on large databases > 10K user)"
|
6742 |
msgstr ""
|
6743 |
|
6744 |
+
#: modules/user-listing/userlisting.php:2382
|
6745 |
msgid "Ascending"
|
6746 |
msgstr ""
|
6747 |
|
6748 |
+
#: modules/user-listing/userlisting.php:2383
|
6749 |
msgid "Descending"
|
6750 |
msgstr ""
|
6751 |
|
6752 |
+
#: modules/user-listing/userlisting.php:2388
|
6753 |
msgid "Roles to Display"
|
6754 |
msgstr ""
|
6755 |
|
6756 |
+
#: modules/user-listing/userlisting.php:2388
|
6757 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6758 |
msgstr ""
|
6759 |
|
6760 |
+
#: modules/user-listing/userlisting.php:2389
|
6761 |
msgid "Number of Users/Page"
|
6762 |
msgstr ""
|
6763 |
|
6764 |
+
#: modules/user-listing/userlisting.php:2389
|
6765 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6766 |
msgstr ""
|
6767 |
|
6768 |
+
#: modules/user-listing/userlisting.php:2390
|
6769 |
msgid "Default Sorting Criteria"
|
6770 |
msgstr ""
|
6771 |
|
6772 |
+
#: modules/user-listing/userlisting.php:2390
|
6773 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6774 |
msgstr ""
|
6775 |
|
6776 |
+
#: modules/user-listing/userlisting.php:2391
|
6777 |
msgid "Default Sorting Order"
|
6778 |
msgstr ""
|
6779 |
|
6780 |
+
#: modules/user-listing/userlisting.php:2391
|
6781 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6782 |
msgstr ""
|
6783 |
|
6784 |
+
#: modules/user-listing/userlisting.php:2392
|
6785 |
msgid "Avatar Size (All-userlisting)"
|
6786 |
msgstr ""
|
6787 |
|
6788 |
+
#: modules/user-listing/userlisting.php:2392
|
6789 |
msgid "Set the avatar size on the all-userlisting only"
|
6790 |
msgstr ""
|
6791 |
|
6792 |
+
#: modules/user-listing/userlisting.php:2393
|
6793 |
msgid "Avatar Size (Single-userlisting)"
|
6794 |
msgstr ""
|
6795 |
|
6796 |
+
#: modules/user-listing/userlisting.php:2393
|
6797 |
msgid "Set the avatar size on the single-userlisting only"
|
6798 |
msgstr ""
|
6799 |
|
6800 |
+
#: modules/user-listing/userlisting.php:2394
|
6801 |
msgid "Visible only to logged in users?"
|
6802 |
msgstr ""
|
6803 |
|
6804 |
+
#: modules/user-listing/userlisting.php:2394
|
6805 |
msgid "The userlisting will only be visible only to the logged in users"
|
6806 |
msgstr ""
|
6807 |
|
6808 |
+
#: modules/user-listing/userlisting.php:2395
|
6809 |
msgid "Visible to following Roles"
|
6810 |
msgstr ""
|
6811 |
|
6812 |
+
#: modules/user-listing/userlisting.php:2395
|
6813 |
msgid "The userlisting will only be visible to the following roles"
|
6814 |
msgstr ""
|
6815 |
|
6816 |
+
#: modules/user-listing/userlisting.php:2401
|
6817 |
msgid "Userlisting Settings"
|
6818 |
msgstr ""
|
6819 |
|
6820 |
+
#: modules/user-listing/userlisting.php:2426
|
6821 |
msgid "Label"
|
6822 |
msgstr ""
|
6823 |
|
6824 |
+
#: modules/user-listing/userlisting.php:2426
|
6825 |
msgid "Choose the facet name that appears on the frontend"
|
6826 |
msgstr ""
|
6827 |
|
6828 |
+
#: modules/user-listing/userlisting.php:2427
|
6829 |
msgid "Facet Type"
|
6830 |
msgstr ""
|
6831 |
|
6832 |
+
#: modules/user-listing/userlisting.php:2427
|
6833 |
msgid "Choose the facet menu type"
|
6834 |
msgstr ""
|
6835 |
|
6836 |
+
#: modules/user-listing/userlisting.php:2428
|
6837 |
msgid "Facet Meta"
|
6838 |
msgstr ""
|
6839 |
|
6840 |
+
#: modules/user-listing/userlisting.php:2428
|
6841 |
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."
|
6842 |
msgstr ""
|
6843 |
|
6844 |
+
#: modules/user-listing/userlisting.php:2429
|
6845 |
msgid "Behaviour"
|
6846 |
msgstr ""
|
6847 |
|
6848 |
+
#: modules/user-listing/userlisting.php:2429
|
6849 |
msgid "Narrow the results"
|
6850 |
msgstr ""
|
6851 |
|
6852 |
+
#: modules/user-listing/userlisting.php:2429
|
6853 |
msgid "Expand the results"
|
6854 |
msgstr ""
|
6855 |
|
6856 |
+
#: modules/user-listing/userlisting.php:2429
|
6857 |
msgid "Choose how multiple selections affect the results"
|
6858 |
msgstr ""
|
6859 |
|
6860 |
+
#: modules/user-listing/userlisting.php:2430
|
6861 |
msgid "Visible choices"
|
6862 |
msgstr ""
|
6863 |
|
6864 |
+
#: modules/user-listing/userlisting.php:2430
|
6865 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6866 |
msgstr ""
|
6867 |
|
6868 |
+
#: modules/user-listing/userlisting.php:2455
|
6869 |
msgid "Search Fields"
|
6870 |
msgstr ""
|
6871 |
|
6872 |
+
#: modules/user-listing/userlisting.php:2455
|
6873 |
msgid "Choose the fields in which the Search Field will look in"
|
6874 |
msgstr ""
|
6875 |
|
6876 |
+
#: modules/user-listing/userlisting.php:2460
|
6877 |
msgid "Search Settings"
|
6878 |
msgstr ""
|
6879 |
|
6880 |
+
#: modules/user-listing/userlisting.php:2532
|
6881 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6882 |
msgstr ""
|
6883 |
|
6884 |
+
#: modules/user-listing/userlisting.php:2532
|
6885 |
msgid "You can find it in the Profile Builder menu."
|
6886 |
msgstr ""
|
6887 |
|
6888 |
+
#: modules/user-listing/userlisting.php:2695
|
6889 |
msgid "No results found!"
|
6890 |
msgstr ""
|
6891 |
|