User registration & user profile – Profile Builder - Version 3.2.1

Version Description

  • Fixed a warning regarding Admin Approval on settings page
  • Login widget uses correct redirect parameter now
Download this release

Release Info

Developer madalin.ungureanu
Plugin Icon 128x128 User registration & user profile – Profile Builder
Version 3.2.1
Comparing to
See all releases

Code changes from version 3.2.0 to 3.2.1

admin/general-settings.php CHANGED
@@ -173,7 +173,7 @@ function wppb_general_settings_content() {
173
  <td>
174
  <select id="adminApprovalSelect" name="wppb_general_settings[adminApproval]" class="wppb-select" onchange="wppb_display_page_select_aa(this.value)">
175
  <option value="yes" <?php if( !empty( $wppb_generalSettings['adminApproval'] ) && $wppb_generalSettings['adminApproval'] == 'yes' ) echo 'selected'; ?>><?php _e( 'Yes', 'profile-builder' ); ?></option>
176
- <option value="no" <?php if( empty( $wppb_generalSettings['adminApproval'] ) || ( !empty( $wppb_generalSettings['adminApproval'] ) && $wppb_generalSettings['adminApproval'] == no ) ) echo 'selected'; ?>><?php _e( 'No', 'profile-builder' ); ?></option>
177
  </select>
178
  <ul>
179
  <li class="description dynamic2"><?php printf( __( 'You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.', 'profile-builder' ), '<a href="'.get_bloginfo( 'url' ).'/wp-admin/users.php?page=admin_approval&orderby=registered&order=desc">', '</a>' )?></li>
173
  <td>
174
  <select id="adminApprovalSelect" name="wppb_general_settings[adminApproval]" class="wppb-select" onchange="wppb_display_page_select_aa(this.value)">
175
  <option value="yes" <?php if( !empty( $wppb_generalSettings['adminApproval'] ) && $wppb_generalSettings['adminApproval'] == 'yes' ) echo 'selected'; ?>><?php _e( 'Yes', 'profile-builder' ); ?></option>
176
+ <option value="no" <?php if( empty( $wppb_generalSettings['adminApproval'] ) || ( !empty( $wppb_generalSettings['adminApproval'] ) && $wppb_generalSettings['adminApproval'] == 'no' ) ) echo 'selected'; ?>><?php _e( 'No', 'profile-builder' ); ?></option>
177
  </select>
178
  <ul>
179
  <li class="description dynamic2"><?php printf( __( 'You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.', 'profile-builder' ), '<a href="'.get_bloginfo( 'url' ).'/wp-admin/users.php?page=admin_approval&orderby=registered&order=desc">', '</a>' )?></li>
features/login-widget/login-widget.php CHANGED
@@ -17,7 +17,7 @@ class wppb_login_widget extends WP_Widget {
17
  }
18
 
19
  function widget( $args, $instance ) {
20
- extract( $args );
21
 
22
  $title = apply_filters( 'wppb_login_widget_title', ( isset( $instance['title'] ) ? $instance['title'] : '' ) );
23
  $redirect = ( isset( $instance['redirect'] ) ? trim( $instance['redirect'] ) : '' );
@@ -29,7 +29,7 @@ class wppb_login_widget extends WP_Widget {
29
  if ( ! empty( $title ) )
30
  echo $before_title . $title . $after_title;
31
 
32
- echo do_shortcode('[wppb-login display="false" register_url="'.$register.'" lostpassword_url="'.$lostpass.'" redirect="'.$redirect.'"]');
33
 
34
  do_action( 'wppb_login_widget_display', $args, $instance);
35
 
17
  }
18
 
19
  function widget( $args, $instance ) {
20
+ extract( $args );
21
 
22
  $title = apply_filters( 'wppb_login_widget_title', ( isset( $instance['title'] ) ? $instance['title'] : '' ) );
23
  $redirect = ( isset( $instance['redirect'] ) ? trim( $instance['redirect'] ) : '' );
29
  if ( ! empty( $title ) )
30
  echo $before_title . $title . $after_title;
31
 
32
+ echo do_shortcode('[wppb-login display="false" register_url="'.$register.'" lostpassword_url="'.$lostpass.'" redirect_url="'.$redirect.'"]');
33
 
34
  do_action( 'wppb_login_widget_display', $args, $instance);
35
 
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.2.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.2.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.2.1
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
63
  *
64
  *
65
  */
66
+ define('PROFILE_BUILDER_VERSION', '3.2.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__));
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.2
7
- Stable tag: 3.2.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.2.0 =
173
  * Fixed a notice that appeared if the Email field was hidden on Edit Profile forms
174
  * Limited loading on recaptcha js scripts only to pages where it is needed
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.2
7
+ Stable tag: 3.2.1
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.2.1 =
173
+ * Fixed a warning regarding Admin Approval on settings page
174
+ * Login widget uses correct redirect parameter now
175
+
176
  = 3.2.0 =
177
  * Fixed a notice that appeared if the Email field was hidden on Edit Profile forms
178
  * Limited loading on recaptcha js scripts only to pages where it is needed
translation/profile-builder.pot CHANGED
@@ -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-fields.php:279, ../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
 
@@ -1749,7 +1749,7 @@ msgstr ""
1749
  msgid "Show"
1750
  msgstr ""
1751
 
1752
- #: admin/admin-bar.php:80, modules/user-listing/userlisting.php:1670
1753
  msgid "Hide"
1754
  msgstr ""
1755
 
@@ -2257,11 +2257,11 @@ msgstr ""
2257
  msgid "Username and Email"
2258
  msgstr ""
2259
 
2260
- #: admin/general-settings.php:251, admin/manage-fields.php:318, front-end/login.php:246, front-end/login.php:260, front-end/login.php:391, ../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
2261
  msgid "Username"
2262
  msgstr ""
2263
 
2264
- #: admin/general-settings.php:252, front-end/login.php:388, modules/email-customizer/email-customizer.php:29, modules/user-listing/userlisting.php:804, modules/user-listing/userlisting.php:2349
2265
  msgid "Email"
2266
  msgstr ""
2267
 
@@ -2753,7 +2753,7 @@ msgstr ""
2753
  msgid "Usernames cannot be changed."
2754
  msgstr ""
2755
 
2756
- #: admin/manage-fields.php:321, modules/user-listing/userlisting.php:837, modules/user-listing/userlisting.php:2356
2757
  msgid "Nickname"
2758
  msgstr ""
2759
 
@@ -2761,7 +2761,7 @@ msgstr ""
2761
  msgid "Display name publicly as"
2762
  msgstr ""
2763
 
2764
- #: 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
2765
  msgid "Website"
2766
  msgstr ""
2767
 
@@ -2777,7 +2777,7 @@ msgstr ""
2777
  msgid "Jabber / Google Talk"
2778
  msgstr ""
2779
 
2780
- #: admin/manage-fields.php:335, modules/user-listing/userlisting.php:123, modules/user-listing/userlisting.php:822, modules/user-listing/userlisting.php:2351
2781
  msgid "Biographical Info"
2782
  msgstr ""
2783
 
@@ -5409,15 +5409,15 @@ msgstr ""
5409
  msgid "Approve"
5410
  msgstr ""
5411
 
5412
- #: 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
5413
  msgid "Firstname"
5414
  msgstr ""
5415
 
5416
- #: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:813, modules/user-listing/userlisting.php:2354
5417
  msgid "Lastname"
5418
  msgstr ""
5419
 
5420
- #: 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
5421
  msgid "Role"
5422
  msgstr ""
5423
 
@@ -6357,27 +6357,27 @@ msgstr ""
6357
  msgid "No Edit-profile Forms found in trash"
6358
  msgstr ""
6359
 
6360
- #: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:2244
6361
  msgid "Shortcode"
6362
  msgstr ""
6363
 
6364
- #: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:2265
6365
  msgid "(no title)"
6366
  msgstr ""
6367
 
6368
- #: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:2285
6369
  msgid "The shortcode will be available after you publish this form."
6370
  msgstr ""
6371
 
6372
- #: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:2287
6373
  msgid "Use this shortcode on the page you want the form to be displayed:"
6374
  msgstr ""
6375
 
6376
- #: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:2291
6377
  msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
6378
  msgstr ""
6379
 
6380
- #: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:2324
6381
  msgid "Form Shortcode"
6382
  msgstr ""
6383
 
@@ -6533,11 +6533,11 @@ msgstr ""
6533
  msgid "Display name as"
6534
  msgstr ""
6535
 
6536
- #: modules/user-listing/userlisting.php:161, modules/user-listing/userlisting.php:2352
6537
  msgid "Registration Date"
6538
  msgstr ""
6539
 
6540
- #: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:2357
6541
  msgid "Number of Posts"
6542
  msgstr ""
6543
 
@@ -6573,7 +6573,7 @@ msgstr ""
6573
  msgid "Search all Fields"
6574
  msgstr ""
6575
 
6576
- #: modules/user-listing/userlisting.php:227, modules/user-listing/userlisting.php:2436
6577
  msgid "Faceted Menus"
6578
  msgstr ""
6579
 
@@ -6601,11 +6601,11 @@ msgstr ""
6601
  msgid "Avatar"
6602
  msgstr ""
6603
 
6604
- #: modules/user-listing/userlisting.php:314, modules/user-listing/userlisting.php:825
6605
  msgid "Posts"
6606
  msgstr ""
6607
 
6608
- #: modules/user-listing/userlisting.php:315, modules/user-listing/userlisting.php:807
6609
  msgid "Sign-up Date"
6610
  msgstr ""
6611
 
@@ -6625,275 +6625,275 @@ msgstr ""
6625
  msgid "User not found"
6626
  msgstr ""
6627
 
6628
- #: modules/user-listing/userlisting.php:801
6629
  msgid "First/Lastname"
6630
  msgstr ""
6631
 
6632
- #: modules/user-listing/userlisting.php:816, modules/user-listing/userlisting.php:2355
6633
  msgid "Display Name"
6634
  msgstr ""
6635
 
6636
- #: modules/user-listing/userlisting.php:828, modules/user-listing/userlisting.php:2362
6637
  msgid "Aim"
6638
  msgstr ""
6639
 
6640
- #: modules/user-listing/userlisting.php:831, modules/user-listing/userlisting.php:2363
6641
  msgid "Yim"
6642
  msgstr ""
6643
 
6644
- #: modules/user-listing/userlisting.php:834, modules/user-listing/userlisting.php:2364
6645
  msgid "Jabber"
6646
  msgstr ""
6647
 
6648
- #: modules/user-listing/userlisting.php:1121, modules/user-listing/userlisting.php:1601, modules/user-listing/userlisting.php:2079, modules/user-listing/userlisting.php:2556
6649
  msgid "Search Users by All Fields"
6650
  msgstr ""
6651
 
6652
- #: modules/user-listing/userlisting.php:1394
6653
  msgid "Click here to see more information about this user"
6654
  msgstr ""
6655
 
6656
- #: modules/user-listing/userlisting.php:1394, modules/user-listing/userlisting.php:1394
6657
  msgid "More..."
6658
  msgstr ""
6659
 
6660
- #: modules/user-listing/userlisting.php:1397
6661
  msgid "Click here to see more information about this user."
6662
  msgstr ""
6663
 
6664
- #: modules/user-listing/userlisting.php:1424
6665
  msgid "View Map"
6666
  msgstr ""
6667
 
6668
- #: modules/user-listing/userlisting.php:1555, modules/user-listing/userlisting.php:1558
6669
  msgid "Click here to go back"
6670
  msgstr ""
6671
 
6672
- #: modules/user-listing/userlisting.php:1555, modules/user-listing/userlisting.php:1555
6673
  msgid "Back"
6674
  msgstr ""
6675
 
6676
- #: modules/user-listing/userlisting.php:1588
6677
  msgid "&laquo;&laquo; First"
6678
  msgstr ""
6679
 
6680
- #: modules/user-listing/userlisting.php:1589
6681
  msgid "&laquo; Prev"
6682
  msgstr ""
6683
 
6684
- #: modules/user-listing/userlisting.php:1590
6685
  msgid "Next &raquo; "
6686
  msgstr ""
6687
 
6688
- #: modules/user-listing/userlisting.php:1591
6689
  msgid "Last &raquo;&raquo;"
6690
  msgstr ""
6691
 
6692
- #: modules/user-listing/userlisting.php:1620
6693
  msgid "You don't have any pagination settings on this userlisting!"
6694
  msgstr ""
6695
 
6696
- #: modules/user-listing/userlisting.php:1669
6697
  msgid "Show All"
6698
  msgstr ""
6699
 
6700
- #: modules/user-listing/userlisting.php:1743
6701
  msgid "Choose..."
6702
  msgstr ""
6703
 
6704
- #: modules/user-listing/userlisting.php:1832
6705
  msgid "No options available"
6706
  msgstr ""
6707
 
6708
- #: modules/user-listing/userlisting.php:1982
6709
  msgid "Remove All Filters"
6710
  msgstr ""
6711
 
6712
- #: modules/user-listing/userlisting.php:2096
6713
  msgid "Search"
6714
  msgstr ""
6715
 
6716
- #: modules/user-listing/userlisting.php:2097
6717
  msgid "Clear Results"
6718
  msgstr ""
6719
 
6720
- #: modules/user-listing/userlisting.php:2294, modules/user-listing/userlisting.php:2298
6721
  msgid "Extra shortcode parameters"
6722
  msgstr ""
6723
 
6724
- #: modules/user-listing/userlisting.php:2296
6725
  msgid "View all extra shortcode parameters"
6726
  msgstr ""
6727
 
6728
- #: modules/user-listing/userlisting.php:2301
6729
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
6730
  msgstr ""
6731
 
6732
- #: modules/user-listing/userlisting.php:2302
6733
  msgid "Example:"
6734
  msgstr ""
6735
 
6736
- #: modules/user-listing/userlisting.php:2304
6737
  msgid "Remember though, that the field-value combination must exist in the database."
6738
  msgstr ""
6739
 
6740
- #: modules/user-listing/userlisting.php:2310
6741
  msgid "displays only the users that you specified the user_id for"
6742
  msgstr ""
6743
 
6744
- #: modules/user-listing/userlisting.php:2316
6745
  msgid "displays all users except the ones you specified the user_id for"
6746
  msgstr ""
6747
 
6748
- #: modules/user-listing/userlisting.php:2379
6749
  msgid "Random (very slow on large databases > 10K user)"
6750
  msgstr ""
6751
 
6752
- #: modules/user-listing/userlisting.php:2382
6753
  msgid "Ascending"
6754
  msgstr ""
6755
 
6756
- #: modules/user-listing/userlisting.php:2383
6757
  msgid "Descending"
6758
  msgstr ""
6759
 
6760
- #: modules/user-listing/userlisting.php:2388
6761
  msgid "Roles to Display"
6762
  msgstr ""
6763
 
6764
- #: modules/user-listing/userlisting.php:2388
6765
  msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
6766
  msgstr ""
6767
 
6768
- #: modules/user-listing/userlisting.php:2389
6769
  msgid "Number of Users/Page"
6770
  msgstr ""
6771
 
6772
- #: modules/user-listing/userlisting.php:2389
6773
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
6774
  msgstr ""
6775
 
6776
- #: modules/user-listing/userlisting.php:2390
6777
  msgid "Default Sorting Criteria"
6778
  msgstr ""
6779
 
6780
- #: modules/user-listing/userlisting.php:2390
6781
  msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
6782
  msgstr ""
6783
 
6784
- #: modules/user-listing/userlisting.php:2391
6785
  msgid "Default Sorting Order"
6786
  msgstr ""
6787
 
6788
- #: modules/user-listing/userlisting.php:2391
6789
  msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
6790
  msgstr ""
6791
 
6792
- #: modules/user-listing/userlisting.php:2392
6793
  msgid "Avatar Size (All-userlisting)"
6794
  msgstr ""
6795
 
6796
- #: modules/user-listing/userlisting.php:2392
6797
  msgid "Set the avatar size on the all-userlisting only"
6798
  msgstr ""
6799
 
6800
- #: modules/user-listing/userlisting.php:2393
6801
  msgid "Avatar Size (Single-userlisting)"
6802
  msgstr ""
6803
 
6804
- #: modules/user-listing/userlisting.php:2393
6805
  msgid "Set the avatar size on the single-userlisting only"
6806
  msgstr ""
6807
 
6808
- #: modules/user-listing/userlisting.php:2394
6809
  msgid "Visible only to logged in users?"
6810
  msgstr ""
6811
 
6812
- #: modules/user-listing/userlisting.php:2394
6813
  msgid "The userlisting will only be visible only to the logged in users"
6814
  msgstr ""
6815
 
6816
- #: modules/user-listing/userlisting.php:2395
6817
  msgid "Visible to following Roles"
6818
  msgstr ""
6819
 
6820
- #: modules/user-listing/userlisting.php:2395
6821
  msgid "The userlisting will only be visible to the following roles"
6822
  msgstr ""
6823
 
6824
- #: modules/user-listing/userlisting.php:2401
6825
  msgid "Userlisting Settings"
6826
  msgstr ""
6827
 
6828
- #: modules/user-listing/userlisting.php:2426
6829
  msgid "Label"
6830
  msgstr ""
6831
 
6832
- #: modules/user-listing/userlisting.php:2426
6833
  msgid "Choose the facet name that appears on the frontend"
6834
  msgstr ""
6835
 
6836
- #: modules/user-listing/userlisting.php:2427
6837
  msgid "Facet Type"
6838
  msgstr ""
6839
 
6840
- #: modules/user-listing/userlisting.php:2427
6841
  msgid "Choose the facet menu type"
6842
  msgstr ""
6843
 
6844
- #: modules/user-listing/userlisting.php:2428
6845
  msgid "Facet Meta"
6846
  msgstr ""
6847
 
6848
- #: modules/user-listing/userlisting.php:2428
6849
  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."
6850
  msgstr ""
6851
 
6852
- #: modules/user-listing/userlisting.php:2429
6853
  msgid "Behaviour"
6854
  msgstr ""
6855
 
6856
- #: modules/user-listing/userlisting.php:2429
6857
  msgid "Narrow the results"
6858
  msgstr ""
6859
 
6860
- #: modules/user-listing/userlisting.php:2429
6861
  msgid "Expand the results"
6862
  msgstr ""
6863
 
6864
- #: modules/user-listing/userlisting.php:2429
6865
  msgid "Choose how multiple selections affect the results"
6866
  msgstr ""
6867
 
6868
- #: modules/user-listing/userlisting.php:2430
6869
  msgid "Visible choices"
6870
  msgstr ""
6871
 
6872
- #: modules/user-listing/userlisting.php:2430
6873
  msgid "Show a toggle link after this many choices. Leave blank for all"
6874
  msgstr ""
6875
 
6876
- #: modules/user-listing/userlisting.php:2455
6877
  msgid "Search Fields"
6878
  msgstr ""
6879
 
6880
- #: modules/user-listing/userlisting.php:2455
6881
  msgid "Choose the fields in which the Search Field will look in"
6882
  msgstr ""
6883
 
6884
- #: modules/user-listing/userlisting.php:2460
6885
  msgid "Search Settings"
6886
  msgstr ""
6887
 
6888
- #: modules/user-listing/userlisting.php:2532
6889
  msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
6890
  msgstr ""
6891
 
6892
- #: modules/user-listing/userlisting.php:2532
6893
  msgid "You can find it in the Profile Builder menu."
6894
  msgstr ""
6895
 
6896
- #: modules/user-listing/userlisting.php:2695
6897
  msgid "No results found!"
6898
  msgstr ""
6899
 
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-fields.php:279, ../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:2402
687
  msgid "Yes"
688
  msgstr ""
689
 
1749
  msgid "Show"
1750
  msgstr ""
1751
 
1752
+ #: admin/admin-bar.php:80, modules/user-listing/userlisting.php:1678
1753
  msgid "Hide"
1754
  msgstr ""
1755
 
2257
  msgid "Username and Email"
2258
  msgstr ""
2259
 
2260
+ #: admin/general-settings.php:251, admin/manage-fields.php:318, front-end/login.php:246, front-end/login.php:260, front-end/login.php:391, ../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:806, modules/user-listing/userlisting.php:2356
2261
  msgid "Username"
2262
  msgstr ""
2263
 
2264
+ #: admin/general-settings.php:252, front-end/login.php:388, modules/email-customizer/email-customizer.php:29, modules/user-listing/userlisting.php:812, modules/user-listing/userlisting.php:2357
2265
  msgid "Email"
2266
  msgstr ""
2267
 
2753
  msgid "Usernames cannot be changed."
2754
  msgstr ""
2755
 
2756
+ #: admin/manage-fields.php:321, modules/user-listing/userlisting.php:845, modules/user-listing/userlisting.php:2364
2757
  msgid "Nickname"
2758
  msgstr ""
2759
 
2761
  msgid "Display name publicly as"
2762
  msgstr ""
2763
 
2764
+ #: admin/manage-fields.php:325, modules/email-customizer/email-customizer.php:33, modules/user-listing/userlisting.php:120, modules/user-listing/userlisting.php:827, modules/user-listing/userlisting.php:2358
2765
  msgid "Website"
2766
  msgstr ""
2767
 
2777
  msgid "Jabber / Google Talk"
2778
  msgstr ""
2779
 
2780
+ #: admin/manage-fields.php:335, modules/user-listing/userlisting.php:123, modules/user-listing/userlisting.php:830, modules/user-listing/userlisting.php:2359
2781
  msgid "Biographical Info"
2782
  msgstr ""
2783
 
5409
  msgid "Approve"
5410
  msgstr ""
5411
 
5412
+ #: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:312, modules/user-listing/userlisting.php:818, modules/user-listing/userlisting.php:2361
5413
  msgid "Firstname"
5414
  msgstr ""
5415
 
5416
+ #: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:821, modules/user-listing/userlisting.php:2362
5417
  msgid "Lastname"
5418
  msgstr ""
5419
 
5420
+ #: 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:848, modules/user-listing/userlisting.php:2366
5421
  msgid "Role"
5422
  msgstr ""
5423
 
6357
  msgid "No Edit-profile Forms found in trash"
6358
  msgstr ""
6359
 
6360
+ #: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:2252
6361
  msgid "Shortcode"
6362
  msgstr ""
6363
 
6364
+ #: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:2273
6365
  msgid "(no title)"
6366
  msgstr ""
6367
 
6368
+ #: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:2293
6369
  msgid "The shortcode will be available after you publish this form."
6370
  msgstr ""
6371
 
6372
+ #: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:2295
6373
  msgid "Use this shortcode on the page you want the form to be displayed:"
6374
  msgstr ""
6375
 
6376
+ #: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:2299
6377
  msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
6378
  msgstr ""
6379
 
6380
+ #: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:2332
6381
  msgid "Form Shortcode"
6382
  msgstr ""
6383
 
6533
  msgid "Display name as"
6534
  msgstr ""
6535
 
6536
+ #: modules/user-listing/userlisting.php:161, modules/user-listing/userlisting.php:2360
6537
  msgid "Registration Date"
6538
  msgstr ""
6539
 
6540
+ #: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:2365
6541
  msgid "Number of Posts"
6542
  msgstr ""
6543
 
6573
  msgid "Search all Fields"
6574
  msgstr ""
6575
 
6576
+ #: modules/user-listing/userlisting.php:227, modules/user-listing/userlisting.php:2444
6577
  msgid "Faceted Menus"
6578
  msgstr ""
6579
 
6601
  msgid "Avatar"
6602
  msgstr ""
6603
 
6604
+ #: modules/user-listing/userlisting.php:314, modules/user-listing/userlisting.php:833
6605
  msgid "Posts"
6606
  msgstr ""
6607
 
6608
+ #: modules/user-listing/userlisting.php:315, modules/user-listing/userlisting.php:815
6609
  msgid "Sign-up Date"
6610
  msgstr ""
6611
 
6625
  msgid "User not found"
6626
  msgstr ""
6627
 
6628
+ #: modules/user-listing/userlisting.php:809
6629
  msgid "First/Lastname"
6630
  msgstr ""
6631
 
6632
+ #: modules/user-listing/userlisting.php:824, modules/user-listing/userlisting.php:2363
6633
  msgid "Display Name"
6634
  msgstr ""
6635
 
6636
+ #: modules/user-listing/userlisting.php:836, modules/user-listing/userlisting.php:2370
6637
  msgid "Aim"
6638
  msgstr ""
6639
 
6640
+ #: modules/user-listing/userlisting.php:839, modules/user-listing/userlisting.php:2371
6641
  msgid "Yim"
6642
  msgstr ""
6643
 
6644
+ #: modules/user-listing/userlisting.php:842, modules/user-listing/userlisting.php:2372
6645
  msgid "Jabber"
6646
  msgstr ""
6647
 
6648
+ #: modules/user-listing/userlisting.php:1129, modules/user-listing/userlisting.php:1609, modules/user-listing/userlisting.php:2087, modules/user-listing/userlisting.php:2564
6649
  msgid "Search Users by All Fields"
6650
  msgstr ""
6651
 
6652
+ #: modules/user-listing/userlisting.php:1402
6653
  msgid "Click here to see more information about this user"
6654
  msgstr ""
6655
 
6656
+ #: modules/user-listing/userlisting.php:1402, modules/user-listing/userlisting.php:1402
6657
  msgid "More..."
6658
  msgstr ""
6659
 
6660
+ #: modules/user-listing/userlisting.php:1405
6661
  msgid "Click here to see more information about this user."
6662
  msgstr ""
6663
 
6664
+ #: modules/user-listing/userlisting.php:1432
6665
  msgid "View Map"
6666
  msgstr ""
6667
 
6668
+ #: modules/user-listing/userlisting.php:1563, modules/user-listing/userlisting.php:1566
6669
  msgid "Click here to go back"
6670
  msgstr ""
6671
 
6672
+ #: modules/user-listing/userlisting.php:1563, modules/user-listing/userlisting.php:1563
6673
  msgid "Back"
6674
  msgstr ""
6675
 
6676
+ #: modules/user-listing/userlisting.php:1596
6677
  msgid "&laquo;&laquo; First"
6678
  msgstr ""
6679
 
6680
+ #: modules/user-listing/userlisting.php:1597
6681
  msgid "&laquo; Prev"
6682
  msgstr ""
6683
 
6684
+ #: modules/user-listing/userlisting.php:1598
6685
  msgid "Next &raquo; "
6686
  msgstr ""
6687
 
6688
+ #: modules/user-listing/userlisting.php:1599
6689
  msgid "Last &raquo;&raquo;"
6690
  msgstr ""
6691
 
6692
+ #: modules/user-listing/userlisting.php:1628
6693
  msgid "You don't have any pagination settings on this userlisting!"
6694
  msgstr ""
6695
 
6696
+ #: modules/user-listing/userlisting.php:1677
6697
  msgid "Show All"
6698
  msgstr ""
6699
 
6700
+ #: modules/user-listing/userlisting.php:1751
6701
  msgid "Choose..."
6702
  msgstr ""
6703
 
6704
+ #: modules/user-listing/userlisting.php:1840
6705
  msgid "No options available"
6706
  msgstr ""
6707
 
6708
+ #: modules/user-listing/userlisting.php:1990
6709
  msgid "Remove All Filters"
6710
  msgstr ""
6711
 
6712
+ #: modules/user-listing/userlisting.php:2104
6713
  msgid "Search"
6714
  msgstr ""
6715
 
6716
+ #: modules/user-listing/userlisting.php:2105
6717
  msgid "Clear Results"
6718
  msgstr ""
6719
 
6720
+ #: modules/user-listing/userlisting.php:2302, modules/user-listing/userlisting.php:2306
6721
  msgid "Extra shortcode parameters"
6722
  msgstr ""
6723
 
6724
+ #: modules/user-listing/userlisting.php:2304
6725
  msgid "View all extra shortcode parameters"
6726
  msgstr ""
6727
 
6728
+ #: modules/user-listing/userlisting.php:2309
6729
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
6730
  msgstr ""
6731
 
6732
+ #: modules/user-listing/userlisting.php:2310
6733
  msgid "Example:"
6734
  msgstr ""
6735
 
6736
+ #: modules/user-listing/userlisting.php:2312
6737
  msgid "Remember though, that the field-value combination must exist in the database."
6738
  msgstr ""
6739
 
6740
+ #: modules/user-listing/userlisting.php:2318
6741
  msgid "displays only the users that you specified the user_id for"
6742
  msgstr ""
6743
 
6744
+ #: modules/user-listing/userlisting.php:2324
6745
  msgid "displays all users except the ones you specified the user_id for"
6746
  msgstr ""
6747
 
6748
+ #: modules/user-listing/userlisting.php:2387
6749
  msgid "Random (very slow on large databases > 10K user)"
6750
  msgstr ""
6751
 
6752
+ #: modules/user-listing/userlisting.php:2390
6753
  msgid "Ascending"
6754
  msgstr ""
6755
 
6756
+ #: modules/user-listing/userlisting.php:2391
6757
  msgid "Descending"
6758
  msgstr ""
6759
 
6760
+ #: modules/user-listing/userlisting.php:2396
6761
  msgid "Roles to Display"
6762
  msgstr ""
6763
 
6764
+ #: modules/user-listing/userlisting.php:2396
6765
  msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
6766
  msgstr ""
6767
 
6768
+ #: modules/user-listing/userlisting.php:2397
6769
  msgid "Number of Users/Page"
6770
  msgstr ""
6771
 
6772
+ #: modules/user-listing/userlisting.php:2397
6773
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
6774
  msgstr ""
6775
 
6776
+ #: modules/user-listing/userlisting.php:2398
6777
  msgid "Default Sorting Criteria"
6778
  msgstr ""
6779
 
6780
+ #: modules/user-listing/userlisting.php:2398
6781
  msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
6782
  msgstr ""
6783
 
6784
+ #: modules/user-listing/userlisting.php:2399
6785
  msgid "Default Sorting Order"
6786
  msgstr ""
6787
 
6788
+ #: modules/user-listing/userlisting.php:2399
6789
  msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
6790
  msgstr ""
6791
 
6792
+ #: modules/user-listing/userlisting.php:2400
6793
  msgid "Avatar Size (All-userlisting)"
6794
  msgstr ""
6795
 
6796
+ #: modules/user-listing/userlisting.php:2400
6797
  msgid "Set the avatar size on the all-userlisting only"
6798
  msgstr ""
6799
 
6800
+ #: modules/user-listing/userlisting.php:2401
6801
  msgid "Avatar Size (Single-userlisting)"
6802
  msgstr ""
6803
 
6804
+ #: modules/user-listing/userlisting.php:2401
6805
  msgid "Set the avatar size on the single-userlisting only"
6806
  msgstr ""
6807
 
6808
+ #: modules/user-listing/userlisting.php:2402
6809
  msgid "Visible only to logged in users?"
6810
  msgstr ""
6811
 
6812
+ #: modules/user-listing/userlisting.php:2402
6813
  msgid "The userlisting will only be visible only to the logged in users"
6814
  msgstr ""
6815
 
6816
+ #: modules/user-listing/userlisting.php:2403
6817
  msgid "Visible to following Roles"
6818
  msgstr ""
6819
 
6820
+ #: modules/user-listing/userlisting.php:2403
6821
  msgid "The userlisting will only be visible to the following roles"
6822
  msgstr ""
6823
 
6824
+ #: modules/user-listing/userlisting.php:2409
6825
  msgid "Userlisting Settings"
6826
  msgstr ""
6827
 
6828
+ #: modules/user-listing/userlisting.php:2434
6829
  msgid "Label"
6830
  msgstr ""
6831
 
6832
+ #: modules/user-listing/userlisting.php:2434
6833
  msgid "Choose the facet name that appears on the frontend"
6834
  msgstr ""
6835
 
6836
+ #: modules/user-listing/userlisting.php:2435
6837
  msgid "Facet Type"
6838
  msgstr ""
6839
 
6840
+ #: modules/user-listing/userlisting.php:2435
6841
  msgid "Choose the facet menu type"
6842
  msgstr ""
6843
 
6844
+ #: modules/user-listing/userlisting.php:2436
6845
  msgid "Facet Meta"
6846
  msgstr ""
6847
 
6848
+ #: modules/user-listing/userlisting.php:2436
6849
  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."
6850
  msgstr ""
6851
 
6852
+ #: modules/user-listing/userlisting.php:2437
6853
  msgid "Behaviour"
6854
  msgstr ""
6855
 
6856
+ #: modules/user-listing/userlisting.php:2437
6857
  msgid "Narrow the results"
6858
  msgstr ""
6859
 
6860
+ #: modules/user-listing/userlisting.php:2437
6861
  msgid "Expand the results"
6862
  msgstr ""
6863
 
6864
+ #: modules/user-listing/userlisting.php:2437
6865
  msgid "Choose how multiple selections affect the results"
6866
  msgstr ""
6867
 
6868
+ #: modules/user-listing/userlisting.php:2438
6869
  msgid "Visible choices"
6870
  msgstr ""
6871
 
6872
+ #: modules/user-listing/userlisting.php:2438
6873
  msgid "Show a toggle link after this many choices. Leave blank for all"
6874
  msgstr ""
6875
 
6876
+ #: modules/user-listing/userlisting.php:2463
6877
  msgid "Search Fields"
6878
  msgstr ""
6879
 
6880
+ #: modules/user-listing/userlisting.php:2463
6881
  msgid "Choose the fields in which the Search Field will look in"
6882
  msgstr ""
6883
 
6884
+ #: modules/user-listing/userlisting.php:2468
6885
  msgid "Search Settings"
6886
  msgstr ""
6887
 
6888
+ #: modules/user-listing/userlisting.php:2540
6889
  msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
6890
  msgstr ""
6891
 
6892
+ #: modules/user-listing/userlisting.php:2540
6893
  msgid "You can find it in the Profile Builder menu."
6894
  msgstr ""
6895
 
6896
+ #: modules/user-listing/userlisting.php:2703
6897
  msgid "No results found!"
6898
  msgstr ""
6899