Version Description
- Modified how we display the user roles in backend edit users to be consistent with how wordpress does it
- Fixed an issue with user role search not working when pressing enter key
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 3.0.8 |
Comparing to | |
See all releases |
Code changes from version 3.0.7 to 3.0.8
- admin/register-version.php +4 -2
- features/roles-editor/assets/js/roles-editor.js +4 -0
- features/roles-editor/roles-editor.php +3 -3
- index.php +2 -2
- package.json +0 -12
- readme.txt +6 -2
- translation/profile-builder.pot +87 -87
admin/register-version.php
CHANGED
@@ -235,8 +235,10 @@ class WPPB_add_notices{
|
|
235 |
}
|
236 |
}
|
237 |
|
238 |
-
|
239 |
-
|
|
|
|
|
240 |
|
241 |
if ( PROFILE_BUILDER == 'Profile Builder Pro' ){
|
242 |
$wppb_profile_builder_pro_hobbyist_serial_status = get_option( 'wppb_profile_builder_pro_serial_status', 'empty' );
|
235 |
}
|
236 |
}
|
237 |
|
238 |
+
// Switch to the main site
|
239 |
+
if( is_multisite() && function_exists( 'switch_to_blog' )
|
240 |
+
&& function_exists( 'get_main_site_id' ))
|
241 |
+
switch_to_blog( get_main_site_id() );
|
242 |
|
243 |
if ( PROFILE_BUILDER == 'Profile Builder Pro' ){
|
244 |
$wppb_profile_builder_pro_hobbyist_serial_status = get_option( 'wppb_profile_builder_pro_serial_status', 'empty' );
|
features/roles-editor/assets/js/roles-editor.js
CHANGED
@@ -7,6 +7,10 @@ var wppb_re_capabilities_to_delete = {};
|
|
7 |
jQuery( document ).ready( function() {
|
8 |
// Disable Enter key
|
9 |
jQuery( window ).keydown( function( e ) {
|
|
|
|
|
|
|
|
|
10 |
if( e.keyCode == 13 ) {
|
11 |
event.preventDefault();
|
12 |
return false;
|
7 |
jQuery( document ).ready( function() {
|
8 |
// Disable Enter key
|
9 |
jQuery( window ).keydown( function( e ) {
|
10 |
+
|
11 |
+
if( typeof e.target.id !== "undefined" && e.target.id === 'post-search-input' )
|
12 |
+
return true;
|
13 |
+
|
14 |
if( e.keyCode == 13 ) {
|
15 |
event.preventDefault();
|
16 |
return false;
|
features/roles-editor/roles-editor.php
CHANGED
@@ -1108,7 +1108,7 @@ class WPPB_Roles_Editor {
|
|
1108 |
// Output roles edit checkboxes
|
1109 |
function roles_field_display( $user_roles ) {
|
1110 |
|
1111 |
-
|
1112 |
|
1113 |
?>
|
1114 |
<table class="form-table">
|
@@ -1118,11 +1118,11 @@ class WPPB_Roles_Editor {
|
|
1118 |
<td>
|
1119 |
<div>
|
1120 |
<ul style="margin: 5px 0;">
|
1121 |
-
<?php foreach( $
|
1122 |
<li>
|
1123 |
<label>
|
1124 |
<input type="checkbox" name="wppb_re_user_roles[]" value="<?php echo esc_attr( $role_slug ); ?>" <?php checked( in_array( $role_slug, $user_roles ) ); ?> />
|
1125 |
-
<?php echo esc_html( $
|
1126 |
</label>
|
1127 |
</li>
|
1128 |
<?php } ?>
|
1108 |
// Output roles edit checkboxes
|
1109 |
function roles_field_display( $user_roles ) {
|
1110 |
|
1111 |
+
$wppb_roles = get_editable_roles();
|
1112 |
|
1113 |
?>
|
1114 |
<table class="form-table">
|
1118 |
<td>
|
1119 |
<div>
|
1120 |
<ul style="margin: 5px 0;">
|
1121 |
+
<?php foreach( $wppb_roles as $role_slug => $role_details ) { ?>
|
1122 |
<li>
|
1123 |
<label>
|
1124 |
<input type="checkbox" name="wppb_re_user_roles[]" value="<?php echo esc_attr( $role_slug ); ?>" <?php checked( in_array( $role_slug, $user_roles ) ); ?> />
|
1125 |
+
<?php echo esc_html( translate_user_role( $role_details['name'] ) ); ?>
|
1126 |
</label>
|
1127 |
</li>
|
1128 |
<?php } ?>
|
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.0.
|
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.0.
|
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.0.8
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
63 |
*
|
64 |
*
|
65 |
*/
|
66 |
+
define('PROFILE_BUILDER_VERSION', '3.0.8' );
|
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__));
|
package.json
DELETED
@@ -1,12 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"name": "profile-builder",
|
3 |
-
"version": "1.0.0",
|
4 |
-
"description": "",
|
5 |
-
"private": true,
|
6 |
-
"main": "index.js",
|
7 |
-
"dependencies": {
|
8 |
-
"gulp": "^4.0.0",
|
9 |
-
"gulp-git": "^2.8.1",
|
10 |
-
"gulp-wp-pot": "^2.3.3"
|
11 |
-
}
|
12 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungurea
|
|
3 |
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.3.
|
7 |
-
Stable tag: 3.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -169,6 +169,10 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
169 |
12. Role Editor
|
170 |
|
171 |
== Changelog ==
|
|
|
|
|
|
|
|
|
172 |
= 3.0.7 =
|
173 |
* Fixed a possible notice on Recover Password page for an undefined variable
|
174 |
* Fixed an issue with GDPR checkbox and multi-step forms
|
3 |
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.3.2
|
7 |
+
Stable tag: 3.0.8
|
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.0.8 =
|
173 |
+
* Modified how we display the user roles in backend edit users to be consistent with how wordpress does it
|
174 |
+
* Fixed an issue with user role search not working when pressing enter key
|
175 |
+
|
176 |
= 3.0.7 =
|
177 |
* Fixed a possible notice on Recover Password page for an undefined variable
|
178 |
* Fixed an issue with GDPR checkbox and multi-step forms
|
translation/profile-builder.pot
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the Profile Builder package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
@@ -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/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:317, 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:792, 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:798, modules/user-listing/userlisting.php:
|
2261 |
msgid "Email"
|
2262 |
msgstr ""
|
2263 |
|
@@ -2733,7 +2733,7 @@ msgstr ""
|
|
2733 |
msgid "Usernames cannot be changed."
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#: admin/manage-fields.php:320, modules/user-listing/userlisting.php:831, modules/user-listing/userlisting.php:
|
2737 |
msgid "Nickname"
|
2738 |
msgstr ""
|
2739 |
|
@@ -2741,7 +2741,7 @@ msgstr ""
|
|
2741 |
msgid "Display name publicly as"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
-
#: admin/manage-fields.php:324, modules/email-customizer/email-customizer.php:33, modules/user-listing/userlisting.php:120, modules/user-listing/userlisting.php:813, modules/user-listing/userlisting.php:
|
2745 |
msgid "Website"
|
2746 |
msgstr ""
|
2747 |
|
@@ -2757,7 +2757,7 @@ msgstr ""
|
|
2757 |
msgid "Jabber / Google Talk"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: admin/manage-fields.php:334, modules/user-listing/userlisting.php:123, modules/user-listing/userlisting.php:816, modules/user-listing/userlisting.php:
|
2761 |
msgid "Biographical Info"
|
2762 |
msgstr ""
|
2763 |
|
@@ -4539,19 +4539,19 @@ msgstr ""
|
|
4539 |
msgid "(e.g. CLPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
4540 |
msgstr ""
|
4541 |
|
4542 |
-
#: admin/register-version.php:
|
4543 |
msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
|
4544 |
msgstr ""
|
4545 |
|
4546 |
-
#: admin/register-version.php:
|
4547 |
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s</p>"
|
4548 |
msgstr ""
|
4549 |
|
4550 |
-
#: admin/register-version.php:
|
4551 |
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %5$sDismiss%6$s</p>"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
-
#: admin/register-version.php:
|
4555 |
msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %6$sDismiss%7$s</p>"
|
4556 |
msgstr ""
|
4557 |
|
@@ -5379,15 +5379,15 @@ msgstr ""
|
|
5379 |
msgid "Approve"
|
5380 |
msgstr ""
|
5381 |
|
5382 |
-
#: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:312, modules/user-listing/userlisting.php:804, modules/user-listing/userlisting.php:
|
5383 |
msgid "Firstname"
|
5384 |
msgstr ""
|
5385 |
|
5386 |
-
#: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:807, modules/user-listing/userlisting.php:
|
5387 |
msgid "Lastname"
|
5388 |
msgstr ""
|
5389 |
|
5390 |
-
#: 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:834, modules/user-listing/userlisting.php:
|
5391 |
msgid "Role"
|
5392 |
msgstr ""
|
5393 |
|
@@ -6327,27 +6327,27 @@ msgstr ""
|
|
6327 |
msgid "No Edit-profile Forms found in trash"
|
6328 |
msgstr ""
|
6329 |
|
6330 |
-
#: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:
|
6331 |
msgid "Shortcode"
|
6332 |
msgstr ""
|
6333 |
|
6334 |
-
#: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:
|
6335 |
msgid "(no title)"
|
6336 |
msgstr ""
|
6337 |
|
6338 |
-
#: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:
|
6339 |
msgid "The shortcode will be available after you publish this form."
|
6340 |
msgstr ""
|
6341 |
|
6342 |
-
#: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:
|
6343 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6344 |
msgstr ""
|
6345 |
|
6346 |
-
#: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:
|
6347 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6348 |
msgstr ""
|
6349 |
|
6350 |
-
#: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:
|
6351 |
msgid "Form Shortcode"
|
6352 |
msgstr ""
|
6353 |
|
@@ -6503,11 +6503,11 @@ msgstr ""
|
|
6503 |
msgid "Display name as"
|
6504 |
msgstr ""
|
6505 |
|
6506 |
-
#: modules/user-listing/userlisting.php:161, modules/user-listing/userlisting.php:
|
6507 |
msgid "Registration Date"
|
6508 |
msgstr ""
|
6509 |
|
6510 |
-
#: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:
|
6511 |
msgid "Number of Posts"
|
6512 |
msgstr ""
|
6513 |
|
@@ -6543,7 +6543,7 @@ msgstr ""
|
|
6543 |
msgid "Search all Fields"
|
6544 |
msgstr ""
|
6545 |
|
6546 |
-
#: modules/user-listing/userlisting.php:227, modules/user-listing/userlisting.php:
|
6547 |
msgid "Faceted Menus"
|
6548 |
msgstr ""
|
6549 |
|
@@ -6599,23 +6599,23 @@ msgstr ""
|
|
6599 |
msgid "First/Lastname"
|
6600 |
msgstr ""
|
6601 |
|
6602 |
-
#: modules/user-listing/userlisting.php:810, modules/user-listing/userlisting.php:
|
6603 |
msgid "Display Name"
|
6604 |
msgstr ""
|
6605 |
|
6606 |
-
#: modules/user-listing/userlisting.php:822, modules/user-listing/userlisting.php:
|
6607 |
msgid "Aim"
|
6608 |
msgstr ""
|
6609 |
|
6610 |
-
#: modules/user-listing/userlisting.php:825, modules/user-listing/userlisting.php:
|
6611 |
msgid "Yim"
|
6612 |
msgstr ""
|
6613 |
|
6614 |
-
#: modules/user-listing/userlisting.php:828, modules/user-listing/userlisting.php:
|
6615 |
msgid "Jabber"
|
6616 |
msgstr ""
|
6617 |
|
6618 |
-
#: modules/user-listing/userlisting.php:1106, modules/user-listing/userlisting.php:
|
6619 |
msgid "Search Users by All Fields"
|
6620 |
msgstr ""
|
6621 |
|
@@ -6635,235 +6635,235 @@ msgstr ""
|
|
6635 |
msgid "View Map"
|
6636 |
msgstr ""
|
6637 |
|
6638 |
-
#: modules/user-listing/userlisting.php:
|
6639 |
msgid "Click here to go back"
|
6640 |
msgstr ""
|
6641 |
|
6642 |
-
#: modules/user-listing/userlisting.php:
|
6643 |
msgid "Back"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
-
#: modules/user-listing/userlisting.php:
|
6647 |
msgid "«« First"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
-
#: modules/user-listing/userlisting.php:
|
6651 |
msgid "« Prev"
|
6652 |
msgstr ""
|
6653 |
|
6654 |
-
#: modules/user-listing/userlisting.php:
|
6655 |
msgid "Next » "
|
6656 |
msgstr ""
|
6657 |
|
6658 |
-
#: modules/user-listing/userlisting.php:
|
6659 |
msgid "Last »»"
|
6660 |
msgstr ""
|
6661 |
|
6662 |
-
#: modules/user-listing/userlisting.php:
|
6663 |
msgid "You don't have any pagination settings on this userlisting!"
|
6664 |
msgstr ""
|
6665 |
|
6666 |
-
#: modules/user-listing/userlisting.php:
|
6667 |
msgid "Show All"
|
6668 |
msgstr ""
|
6669 |
|
6670 |
-
#: modules/user-listing/userlisting.php:
|
6671 |
msgid "Choose..."
|
6672 |
msgstr ""
|
6673 |
|
6674 |
-
#: modules/user-listing/userlisting.php:
|
6675 |
msgid "No options available"
|
6676 |
msgstr ""
|
6677 |
|
6678 |
-
#: modules/user-listing/userlisting.php:
|
6679 |
msgid "Remove All Filters"
|
6680 |
msgstr ""
|
6681 |
|
6682 |
-
#: modules/user-listing/userlisting.php:
|
6683 |
msgid "Search"
|
6684 |
msgstr ""
|
6685 |
|
6686 |
-
#: modules/user-listing/userlisting.php:
|
6687 |
msgid "Clear Results"
|
6688 |
msgstr ""
|
6689 |
|
6690 |
-
#: modules/user-listing/userlisting.php:
|
6691 |
msgid "Extra shortcode parameters"
|
6692 |
msgstr ""
|
6693 |
|
6694 |
-
#: modules/user-listing/userlisting.php:
|
6695 |
msgid "View all extra shortcode parameters"
|
6696 |
msgstr ""
|
6697 |
|
6698 |
-
#: modules/user-listing/userlisting.php:
|
6699 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6700 |
msgstr ""
|
6701 |
|
6702 |
-
#: modules/user-listing/userlisting.php:
|
6703 |
msgid "Example:"
|
6704 |
msgstr ""
|
6705 |
|
6706 |
-
#: modules/user-listing/userlisting.php:
|
6707 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6708 |
msgstr ""
|
6709 |
|
6710 |
-
#: modules/user-listing/userlisting.php:
|
6711 |
msgid "displays only the users that you specified the user_id for"
|
6712 |
msgstr ""
|
6713 |
|
6714 |
-
#: modules/user-listing/userlisting.php:
|
6715 |
msgid "displays all users except the ones you specified the user_id for"
|
6716 |
msgstr ""
|
6717 |
|
6718 |
-
#: modules/user-listing/userlisting.php:
|
6719 |
msgid "Random (very slow on large databases > 10K user)"
|
6720 |
msgstr ""
|
6721 |
|
6722 |
-
#: modules/user-listing/userlisting.php:
|
6723 |
msgid "Ascending"
|
6724 |
msgstr ""
|
6725 |
|
6726 |
-
#: modules/user-listing/userlisting.php:
|
6727 |
msgid "Descending"
|
6728 |
msgstr ""
|
6729 |
|
6730 |
-
#: modules/user-listing/userlisting.php:
|
6731 |
msgid "Roles to Display"
|
6732 |
msgstr ""
|
6733 |
|
6734 |
-
#: modules/user-listing/userlisting.php:
|
6735 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6736 |
msgstr ""
|
6737 |
|
6738 |
-
#: modules/user-listing/userlisting.php:
|
6739 |
msgid "Number of Users/Page"
|
6740 |
msgstr ""
|
6741 |
|
6742 |
-
#: modules/user-listing/userlisting.php:
|
6743 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6744 |
msgstr ""
|
6745 |
|
6746 |
-
#: modules/user-listing/userlisting.php:
|
6747 |
msgid "Default Sorting Criteria"
|
6748 |
msgstr ""
|
6749 |
|
6750 |
-
#: modules/user-listing/userlisting.php:
|
6751 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6752 |
msgstr ""
|
6753 |
|
6754 |
-
#: modules/user-listing/userlisting.php:
|
6755 |
msgid "Default Sorting Order"
|
6756 |
msgstr ""
|
6757 |
|
6758 |
-
#: modules/user-listing/userlisting.php:
|
6759 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6760 |
msgstr ""
|
6761 |
|
6762 |
-
#: modules/user-listing/userlisting.php:
|
6763 |
msgid "Avatar Size (All-userlisting)"
|
6764 |
msgstr ""
|
6765 |
|
6766 |
-
#: modules/user-listing/userlisting.php:
|
6767 |
msgid "Set the avatar size on the all-userlisting only"
|
6768 |
msgstr ""
|
6769 |
|
6770 |
-
#: modules/user-listing/userlisting.php:
|
6771 |
msgid "Avatar Size (Single-userlisting)"
|
6772 |
msgstr ""
|
6773 |
|
6774 |
-
#: modules/user-listing/userlisting.php:
|
6775 |
msgid "Set the avatar size on the single-userlisting only"
|
6776 |
msgstr ""
|
6777 |
|
6778 |
-
#: modules/user-listing/userlisting.php:
|
6779 |
msgid "Visible only to logged in users?"
|
6780 |
msgstr ""
|
6781 |
|
6782 |
-
#: modules/user-listing/userlisting.php:
|
6783 |
msgid "The userlisting will only be visible only to the logged in users"
|
6784 |
msgstr ""
|
6785 |
|
6786 |
-
#: modules/user-listing/userlisting.php:
|
6787 |
msgid "Visible to following Roles"
|
6788 |
msgstr ""
|
6789 |
|
6790 |
-
#: modules/user-listing/userlisting.php:
|
6791 |
msgid "The userlisting will only be visible to the following roles"
|
6792 |
msgstr ""
|
6793 |
|
6794 |
-
#: modules/user-listing/userlisting.php:
|
6795 |
msgid "Userlisting Settings"
|
6796 |
msgstr ""
|
6797 |
|
6798 |
-
#: modules/user-listing/userlisting.php:
|
6799 |
msgid "Label"
|
6800 |
msgstr ""
|
6801 |
|
6802 |
-
#: modules/user-listing/userlisting.php:
|
6803 |
msgid "Choose the facet name that appears on the frontend"
|
6804 |
msgstr ""
|
6805 |
|
6806 |
-
#: modules/user-listing/userlisting.php:
|
6807 |
msgid "Facet Type"
|
6808 |
msgstr ""
|
6809 |
|
6810 |
-
#: modules/user-listing/userlisting.php:
|
6811 |
msgid "Choose the facet menu type"
|
6812 |
msgstr ""
|
6813 |
|
6814 |
-
#: modules/user-listing/userlisting.php:
|
6815 |
msgid "Facet Meta"
|
6816 |
msgstr ""
|
6817 |
|
6818 |
-
#: modules/user-listing/userlisting.php:
|
6819 |
msgid "Choose the meta field for the facet menu"
|
6820 |
msgstr ""
|
6821 |
|
6822 |
-
#: modules/user-listing/userlisting.php:
|
6823 |
msgid "Behaviour"
|
6824 |
msgstr ""
|
6825 |
|
6826 |
-
#: modules/user-listing/userlisting.php:
|
6827 |
msgid "Narrow the results"
|
6828 |
msgstr ""
|
6829 |
|
6830 |
-
#: modules/user-listing/userlisting.php:
|
6831 |
msgid "Expand the results"
|
6832 |
msgstr ""
|
6833 |
|
6834 |
-
#: modules/user-listing/userlisting.php:
|
6835 |
msgid "Choose how multiple selections affect the results"
|
6836 |
msgstr ""
|
6837 |
|
6838 |
-
#: modules/user-listing/userlisting.php:
|
6839 |
msgid "Visible choices"
|
6840 |
msgstr ""
|
6841 |
|
6842 |
-
#: modules/user-listing/userlisting.php:
|
6843 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6844 |
msgstr ""
|
6845 |
|
6846 |
-
#: modules/user-listing/userlisting.php:
|
6847 |
msgid "Search Fields"
|
6848 |
msgstr ""
|
6849 |
|
6850 |
-
#: modules/user-listing/userlisting.php:
|
6851 |
msgid "Choose the fields in which the Search Field will look in"
|
6852 |
msgstr ""
|
6853 |
|
6854 |
-
#: modules/user-listing/userlisting.php:
|
6855 |
msgid "Search Settings"
|
6856 |
msgstr ""
|
6857 |
|
6858 |
-
#: modules/user-listing/userlisting.php:
|
6859 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6860 |
msgstr ""
|
6861 |
|
6862 |
-
#: modules/user-listing/userlisting.php:
|
6863 |
msgid "You can find it in the Profile Builder menu."
|
6864 |
msgstr ""
|
6865 |
|
6866 |
-
#: modules/user-listing/userlisting.php:
|
6867 |
msgid "No results found!"
|
6868 |
msgstr ""
|
6869 |
|
1 |
+
# Copyright (C) 2020 Profile Builder
|
2 |
# This file is distributed under the same license as the Profile Builder package.
|
3 |
msgid ""
|
4 |
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/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:2373
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
1745 |
msgid "Show"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: admin/admin-bar.php:80, modules/user-listing/userlisting.php:1651
|
1749 |
msgid "Hide"
|
1750 |
msgstr ""
|
1751 |
|
2253 |
msgid "Username and Email"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: admin/general-settings.php:251, admin/manage-fields.php:317, 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:792, modules/user-listing/userlisting.php:2324
|
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:798, modules/user-listing/userlisting.php:2325
|
2261 |
msgid "Email"
|
2262 |
msgstr ""
|
2263 |
|
2733 |
msgid "Usernames cannot be changed."
|
2734 |
msgstr ""
|
2735 |
|
2736 |
+
#: admin/manage-fields.php:320, modules/user-listing/userlisting.php:831, modules/user-listing/userlisting.php:2332
|
2737 |
msgid "Nickname"
|
2738 |
msgstr ""
|
2739 |
|
2741 |
msgid "Display name publicly as"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
+
#: admin/manage-fields.php:324, modules/email-customizer/email-customizer.php:33, modules/user-listing/userlisting.php:120, modules/user-listing/userlisting.php:813, modules/user-listing/userlisting.php:2326
|
2745 |
msgid "Website"
|
2746 |
msgstr ""
|
2747 |
|
2757 |
msgid "Jabber / Google Talk"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
+
#: admin/manage-fields.php:334, modules/user-listing/userlisting.php:123, modules/user-listing/userlisting.php:816, modules/user-listing/userlisting.php:2327
|
2761 |
msgid "Biographical Info"
|
2762 |
msgstr ""
|
2763 |
|
4539 |
msgid "(e.g. CLPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
4540 |
msgstr ""
|
4541 |
|
4542 |
+
#: admin/register-version.php:260
|
4543 |
msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
|
4544 |
msgstr ""
|
4545 |
|
4546 |
+
#: admin/register-version.php:266
|
4547 |
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s</p>"
|
4548 |
msgstr ""
|
4549 |
|
4550 |
+
#: admin/register-version.php:268
|
4551 |
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %5$sDismiss%6$s</p>"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
+
#: admin/register-version.php:275
|
4555 |
msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %6$sDismiss%7$s</p>"
|
4556 |
msgstr ""
|
4557 |
|
5379 |
msgid "Approve"
|
5380 |
msgstr ""
|
5381 |
|
5382 |
+
#: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:312, modules/user-listing/userlisting.php:804, modules/user-listing/userlisting.php:2329
|
5383 |
msgid "Firstname"
|
5384 |
msgstr ""
|
5385 |
|
5386 |
+
#: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:807, modules/user-listing/userlisting.php:2330
|
5387 |
msgid "Lastname"
|
5388 |
msgstr ""
|
5389 |
|
5390 |
+
#: 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:834, modules/user-listing/userlisting.php:2334
|
5391 |
msgid "Role"
|
5392 |
msgstr ""
|
5393 |
|
6327 |
msgid "No Edit-profile Forms found in trash"
|
6328 |
msgstr ""
|
6329 |
|
6330 |
+
#: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:2220
|
6331 |
msgid "Shortcode"
|
6332 |
msgstr ""
|
6333 |
|
6334 |
+
#: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:2241
|
6335 |
msgid "(no title)"
|
6336 |
msgstr ""
|
6337 |
|
6338 |
+
#: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:2261
|
6339 |
msgid "The shortcode will be available after you publish this form."
|
6340 |
msgstr ""
|
6341 |
|
6342 |
+
#: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:2263
|
6343 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6344 |
msgstr ""
|
6345 |
|
6346 |
+
#: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:2267
|
6347 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6348 |
msgstr ""
|
6349 |
|
6350 |
+
#: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:2300
|
6351 |
msgid "Form Shortcode"
|
6352 |
msgstr ""
|
6353 |
|
6503 |
msgid "Display name as"
|
6504 |
msgstr ""
|
6505 |
|
6506 |
+
#: modules/user-listing/userlisting.php:161, modules/user-listing/userlisting.php:2328
|
6507 |
msgid "Registration Date"
|
6508 |
msgstr ""
|
6509 |
|
6510 |
+
#: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:2333
|
6511 |
msgid "Number of Posts"
|
6512 |
msgstr ""
|
6513 |
|
6543 |
msgid "Search all Fields"
|
6544 |
msgstr ""
|
6545 |
|
6546 |
+
#: modules/user-listing/userlisting.php:227, modules/user-listing/userlisting.php:2415
|
6547 |
msgid "Faceted Menus"
|
6548 |
msgstr ""
|
6549 |
|
6599 |
msgid "First/Lastname"
|
6600 |
msgstr ""
|
6601 |
|
6602 |
+
#: modules/user-listing/userlisting.php:810, modules/user-listing/userlisting.php:2331
|
6603 |
msgid "Display Name"
|
6604 |
msgstr ""
|
6605 |
|
6606 |
+
#: modules/user-listing/userlisting.php:822, modules/user-listing/userlisting.php:2338
|
6607 |
msgid "Aim"
|
6608 |
msgstr ""
|
6609 |
|
6610 |
+
#: modules/user-listing/userlisting.php:825, modules/user-listing/userlisting.php:2339
|
6611 |
msgid "Yim"
|
6612 |
msgstr ""
|
6613 |
|
6614 |
+
#: modules/user-listing/userlisting.php:828, modules/user-listing/userlisting.php:2340
|
6615 |
msgid "Jabber"
|
6616 |
msgstr ""
|
6617 |
|
6618 |
+
#: modules/user-listing/userlisting.php:1106, modules/user-listing/userlisting.php:1582, modules/user-listing/userlisting.php:2055, modules/user-listing/userlisting.php:2535
|
6619 |
msgid "Search Users by All Fields"
|
6620 |
msgstr ""
|
6621 |
|
6635 |
msgid "View Map"
|
6636 |
msgstr ""
|
6637 |
|
6638 |
+
#: modules/user-listing/userlisting.php:1536, modules/user-listing/userlisting.php:1539
|
6639 |
msgid "Click here to go back"
|
6640 |
msgstr ""
|
6641 |
|
6642 |
+
#: modules/user-listing/userlisting.php:1536, modules/user-listing/userlisting.php:1536
|
6643 |
msgid "Back"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
+
#: modules/user-listing/userlisting.php:1569
|
6647 |
msgid "«« First"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
+
#: modules/user-listing/userlisting.php:1570
|
6651 |
msgid "« Prev"
|
6652 |
msgstr ""
|
6653 |
|
6654 |
+
#: modules/user-listing/userlisting.php:1571
|
6655 |
msgid "Next » "
|
6656 |
msgstr ""
|
6657 |
|
6658 |
+
#: modules/user-listing/userlisting.php:1572
|
6659 |
msgid "Last »»"
|
6660 |
msgstr ""
|
6661 |
|
6662 |
+
#: modules/user-listing/userlisting.php:1601
|
6663 |
msgid "You don't have any pagination settings on this userlisting!"
|
6664 |
msgstr ""
|
6665 |
|
6666 |
+
#: modules/user-listing/userlisting.php:1650
|
6667 |
msgid "Show All"
|
6668 |
msgstr ""
|
6669 |
|
6670 |
+
#: modules/user-listing/userlisting.php:1724
|
6671 |
msgid "Choose..."
|
6672 |
msgstr ""
|
6673 |
|
6674 |
+
#: modules/user-listing/userlisting.php:1813
|
6675 |
msgid "No options available"
|
6676 |
msgstr ""
|
6677 |
|
6678 |
+
#: modules/user-listing/userlisting.php:1963
|
6679 |
msgid "Remove All Filters"
|
6680 |
msgstr ""
|
6681 |
|
6682 |
+
#: modules/user-listing/userlisting.php:2072
|
6683 |
msgid "Search"
|
6684 |
msgstr ""
|
6685 |
|
6686 |
+
#: modules/user-listing/userlisting.php:2073
|
6687 |
msgid "Clear Results"
|
6688 |
msgstr ""
|
6689 |
|
6690 |
+
#: modules/user-listing/userlisting.php:2270, modules/user-listing/userlisting.php:2274
|
6691 |
msgid "Extra shortcode parameters"
|
6692 |
msgstr ""
|
6693 |
|
6694 |
+
#: modules/user-listing/userlisting.php:2272
|
6695 |
msgid "View all extra shortcode parameters"
|
6696 |
msgstr ""
|
6697 |
|
6698 |
+
#: modules/user-listing/userlisting.php:2277
|
6699 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6700 |
msgstr ""
|
6701 |
|
6702 |
+
#: modules/user-listing/userlisting.php:2278
|
6703 |
msgid "Example:"
|
6704 |
msgstr ""
|
6705 |
|
6706 |
+
#: modules/user-listing/userlisting.php:2280
|
6707 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6708 |
msgstr ""
|
6709 |
|
6710 |
+
#: modules/user-listing/userlisting.php:2286
|
6711 |
msgid "displays only the users that you specified the user_id for"
|
6712 |
msgstr ""
|
6713 |
|
6714 |
+
#: modules/user-listing/userlisting.php:2292
|
6715 |
msgid "displays all users except the ones you specified the user_id for"
|
6716 |
msgstr ""
|
6717 |
|
6718 |
+
#: modules/user-listing/userlisting.php:2355
|
6719 |
msgid "Random (very slow on large databases > 10K user)"
|
6720 |
msgstr ""
|
6721 |
|
6722 |
+
#: modules/user-listing/userlisting.php:2358
|
6723 |
msgid "Ascending"
|
6724 |
msgstr ""
|
6725 |
|
6726 |
+
#: modules/user-listing/userlisting.php:2359
|
6727 |
msgid "Descending"
|
6728 |
msgstr ""
|
6729 |
|
6730 |
+
#: modules/user-listing/userlisting.php:2367
|
6731 |
msgid "Roles to Display"
|
6732 |
msgstr ""
|
6733 |
|
6734 |
+
#: modules/user-listing/userlisting.php:2367
|
6735 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6736 |
msgstr ""
|
6737 |
|
6738 |
+
#: modules/user-listing/userlisting.php:2368
|
6739 |
msgid "Number of Users/Page"
|
6740 |
msgstr ""
|
6741 |
|
6742 |
+
#: modules/user-listing/userlisting.php:2368
|
6743 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6744 |
msgstr ""
|
6745 |
|
6746 |
+
#: modules/user-listing/userlisting.php:2369
|
6747 |
msgid "Default Sorting Criteria"
|
6748 |
msgstr ""
|
6749 |
|
6750 |
+
#: modules/user-listing/userlisting.php:2369
|
6751 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6752 |
msgstr ""
|
6753 |
|
6754 |
+
#: modules/user-listing/userlisting.php:2370
|
6755 |
msgid "Default Sorting Order"
|
6756 |
msgstr ""
|
6757 |
|
6758 |
+
#: modules/user-listing/userlisting.php:2370
|
6759 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6760 |
msgstr ""
|
6761 |
|
6762 |
+
#: modules/user-listing/userlisting.php:2371
|
6763 |
msgid "Avatar Size (All-userlisting)"
|
6764 |
msgstr ""
|
6765 |
|
6766 |
+
#: modules/user-listing/userlisting.php:2371
|
6767 |
msgid "Set the avatar size on the all-userlisting only"
|
6768 |
msgstr ""
|
6769 |
|
6770 |
+
#: modules/user-listing/userlisting.php:2372
|
6771 |
msgid "Avatar Size (Single-userlisting)"
|
6772 |
msgstr ""
|
6773 |
|
6774 |
+
#: modules/user-listing/userlisting.php:2372
|
6775 |
msgid "Set the avatar size on the single-userlisting only"
|
6776 |
msgstr ""
|
6777 |
|
6778 |
+
#: modules/user-listing/userlisting.php:2373
|
6779 |
msgid "Visible only to logged in users?"
|
6780 |
msgstr ""
|
6781 |
|
6782 |
+
#: modules/user-listing/userlisting.php:2373
|
6783 |
msgid "The userlisting will only be visible only to the logged in users"
|
6784 |
msgstr ""
|
6785 |
|
6786 |
+
#: modules/user-listing/userlisting.php:2374
|
6787 |
msgid "Visible to following Roles"
|
6788 |
msgstr ""
|
6789 |
|
6790 |
+
#: modules/user-listing/userlisting.php:2374
|
6791 |
msgid "The userlisting will only be visible to the following roles"
|
6792 |
msgstr ""
|
6793 |
|
6794 |
+
#: modules/user-listing/userlisting.php:2380
|
6795 |
msgid "Userlisting Settings"
|
6796 |
msgstr ""
|
6797 |
|
6798 |
+
#: modules/user-listing/userlisting.php:2405
|
6799 |
msgid "Label"
|
6800 |
msgstr ""
|
6801 |
|
6802 |
+
#: modules/user-listing/userlisting.php:2405
|
6803 |
msgid "Choose the facet name that appears on the frontend"
|
6804 |
msgstr ""
|
6805 |
|
6806 |
+
#: modules/user-listing/userlisting.php:2406
|
6807 |
msgid "Facet Type"
|
6808 |
msgstr ""
|
6809 |
|
6810 |
+
#: modules/user-listing/userlisting.php:2406
|
6811 |
msgid "Choose the facet menu type"
|
6812 |
msgstr ""
|
6813 |
|
6814 |
+
#: modules/user-listing/userlisting.php:2407
|
6815 |
msgid "Facet Meta"
|
6816 |
msgstr ""
|
6817 |
|
6818 |
+
#: modules/user-listing/userlisting.php:2407
|
6819 |
msgid "Choose the meta field for the facet menu"
|
6820 |
msgstr ""
|
6821 |
|
6822 |
+
#: modules/user-listing/userlisting.php:2408
|
6823 |
msgid "Behaviour"
|
6824 |
msgstr ""
|
6825 |
|
6826 |
+
#: modules/user-listing/userlisting.php:2408
|
6827 |
msgid "Narrow the results"
|
6828 |
msgstr ""
|
6829 |
|
6830 |
+
#: modules/user-listing/userlisting.php:2408
|
6831 |
msgid "Expand the results"
|
6832 |
msgstr ""
|
6833 |
|
6834 |
+
#: modules/user-listing/userlisting.php:2408
|
6835 |
msgid "Choose how multiple selections affect the results"
|
6836 |
msgstr ""
|
6837 |
|
6838 |
+
#: modules/user-listing/userlisting.php:2409
|
6839 |
msgid "Visible choices"
|
6840 |
msgstr ""
|
6841 |
|
6842 |
+
#: modules/user-listing/userlisting.php:2409
|
6843 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6844 |
msgstr ""
|
6845 |
|
6846 |
+
#: modules/user-listing/userlisting.php:2434
|
6847 |
msgid "Search Fields"
|
6848 |
msgstr ""
|
6849 |
|
6850 |
+
#: modules/user-listing/userlisting.php:2434
|
6851 |
msgid "Choose the fields in which the Search Field will look in"
|
6852 |
msgstr ""
|
6853 |
|
6854 |
+
#: modules/user-listing/userlisting.php:2439
|
6855 |
msgid "Search Settings"
|
6856 |
msgstr ""
|
6857 |
|
6858 |
+
#: modules/user-listing/userlisting.php:2511
|
6859 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6860 |
msgstr ""
|
6861 |
|
6862 |
+
#: modules/user-listing/userlisting.php:2511
|
6863 |
msgid "You can find it in the Profile Builder menu."
|
6864 |
msgstr ""
|
6865 |
|
6866 |
+
#: modules/user-listing/userlisting.php:2674
|
6867 |
msgid "No results found!"
|
6868 |
msgstr ""
|
6869 |
|