User registration & user profile – Profile Builder - Version 3.0.7

Version Description

  • Fixed a possible notice on Recover Password page for an undefined variable
  • Fixed an issue with GDPR checkbox and multi-step forms
  • Fixed the height of the search button in some cases
  • reCAPTCHA field language is now set reliably
Download this release

Release Info

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

Code changes from version 3.0.6 to 3.0.7

.gitignore DELETED
@@ -1 +0,0 @@
1
- node_modules
 
assets/css/style-front-end.css CHANGED
@@ -668,6 +668,68 @@ ul.wppb-faceted-list .hide-this{
668
  max-width:300px;
669
  }
670
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
671
 
672
  @media screen and ( max-width: 720px ) {
673
 
668
  max-width:300px;
669
  }
670
 
671
+ li.wppb-facet-search{
672
+ position: relative;
673
+ }
674
+
675
+ .wppb-facet-search-wrap label {
676
+ display: inline-block;
677
+ position: relative;
678
+ padding: 0 !important;
679
+ margin: 0 !important;
680
+ }
681
+
682
+ .wppb-facet-search{
683
+ width: 75% !important;
684
+ margin-right: 5px !important;
685
+ }
686
+
687
+ .wppb-facet-search .screen-reader-text{
688
+ display: none;
689
+ }
690
+
691
+ .wppb-facet-search,
692
+ .wppb-search-submit {
693
+ box-sizing: border-box;
694
+ display: inline-block !important;
695
+ vertical-align: middle;
696
+ }
697
+
698
+ .wppb-search-submit{
699
+ display: inline-block;
700
+ width: 20%;
701
+ height: 100%;
702
+ background: #4F5963;
703
+ position: absolute;
704
+ right: 0;
705
+
706
+ cursor: pointer;
707
+ border: 1px solid #444D57;
708
+ border-radius: 3px;
709
+ padding: 0 !important;
710
+ margin: 0 !important;
711
+ }
712
+
713
+ .wppb-search-submit:hover {
714
+ background: #fff;
715
+ color: #4F5963;
716
+ }
717
+
718
+ .wppb-search-submit::before{
719
+ content: "\26B2";
720
+ display: inline-block;
721
+ color: #fff;
722
+ font-size: 120%;
723
+
724
+ -webkit-transform: rotate(-45deg);
725
+ -moz-transform: rotate(-45deg);
726
+ -o-transform: rotate(-45deg);
727
+ transform: rotate(-45deg);
728
+ }
729
+
730
+ .wppb-search-submit:hover::before{
731
+ color: #4F5963;
732
+ }
733
 
734
  @media screen and ( max-width: 720px ) {
735
 
front-end/default-fields/gdpr/gdpr.php CHANGED
@@ -50,11 +50,22 @@ add_action( 'wppb_save_form_field', 'wppb_save_gdpr_value', 10, 4 );
50
  function wppb_check_gdpr_value( $message, $field, $request_data, $form_location ){
51
  if( $field['field'] == 'GDPR Checkbox' ){
52
  if ( $form_location != 'back_end' ){
53
- if ( ( ( isset( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) && ( trim( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) == '' ) ) && ( $field['required'] == 'Yes' ) ) || ( !isset( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) && ( $field['required'] == 'Yes' ) ) ){
54
- return wppb_required_field_error($field["field-title"]);
 
 
 
 
 
 
 
55
  }
 
 
 
56
  }
57
  }
 
58
  return $message;
59
  }
60
  add_filter( 'wppb_check_form_field_gdpr-checkbox', 'wppb_check_gdpr_value', 10, 4 );
50
  function wppb_check_gdpr_value( $message, $field, $request_data, $form_location ){
51
  if( $field['field'] == 'GDPR Checkbox' ){
52
  if ( $form_location != 'back_end' ){
53
+ $checked_values = '';
54
+
55
+ if( isset( $request_data[ wppb_handle_meta_name( $field['meta-name'] ) ] ) ) {
56
+
57
+ if( is_array( $request_data[ wppb_handle_meta_name( $field['meta-name'] ) ] ) )
58
+ $checked_values = implode( ',', $request_data[ wppb_handle_meta_name( $field['meta-name'] ) ] );
59
+ else
60
+ $checked_values = $request_data[ wppb_handle_meta_name( $field['meta-name'] ) ];
61
+
62
  }
63
+
64
+ if ( ( $field['required'] == 'Yes' ) && empty( $checked_values ) )
65
+ return wppb_required_field_error($field['field-title']);
66
  }
67
  }
68
+
69
  return $message;
70
  }
71
  add_filter( 'wppb_check_form_field_gdpr-checkbox', 'wppb_check_gdpr_value', 10, 4 );
front-end/default-fields/recaptcha/recaptcha.php CHANGED
@@ -79,7 +79,7 @@ function wppb_recaptcha_script_footer(){
79
  }else if(!wp_script_is('jquery')){
80
  wp_print_scripts('jquery');
81
  }
82
-
83
  //get site key
84
  $pubkey = '';
85
  if( isset( $field['public-key'] ) ) {
@@ -89,8 +89,8 @@ function wppb_recaptcha_script_footer(){
89
  // Check if we have a reCAPTCHA type
90
  if ( !isset($field['recaptcha-type']) )
91
  $field['recaptcha-type'] = 'v2' ;
92
-
93
- /*for invisible recaptcha we have extra parameters and the selector is different. v2 is initialized on the id of the div
94
  that must be unique and invisible is on the submit button of the forms that have the div */
95
  if( $field['recaptcha-type'] === 'invisible' ) {
96
  $callback_conditions = 'jQuery("input[type=\'submit\']", jQuery( ".wppb-recaptcha-element" ).closest("form") )';
@@ -100,28 +100,28 @@ function wppb_recaptcha_script_footer(){
100
  $invisible_parameters = '';
101
  }
102
 
103
- echo '<script>
104
  var wppbRecaptchaCallback = function() {
105
  if( typeof window.wppbRecaptchaCallbackExecuted == "undefined" ){//see if we executed this before
106
  '.$callback_conditions.'.each(function(){
107
  recID = grecaptcha.render( jQuery(this).attr("id"), {
108
- "sitekey" : "' . $pubkey . '",
109
  "error-callback": wppbRecaptchaInitializationError,
110
- '.$invisible_parameters.'
111
- });
112
  });
113
  window.wppbRecaptchaCallbackExecuted = true;//we use this to make sure we only run the callback once
114
  }
115
  };
116
-
117
  /* the callback function for when the captcha does not load propperly, maybe network problem or wrong keys */
118
- function wppbRecaptchaInitializationError(){
119
  window.wppbRecaptchaInitError = true;
120
  //add a captcha field so we do not just let the form submit if we do not have a captcha response
121
  jQuery( ".wppb-recaptcha-element" ).after(\''. wp_nonce_field( 'wppb_recaptcha_init_error', 'wppb_recaptcha_load_error', false, false ) .'\');
122
  }
123
-
124
- /* compatibility with other plugins that may include recaptcha with an onload callback. if their script loads first then our callback will not execute so call it explicitly */
125
  jQuery( window ).on( "load", function() {
126
  wppbRecaptchaCallback();
127
  });
@@ -130,14 +130,14 @@ function wppb_recaptcha_script_footer(){
130
  if( $field['recaptcha-type'] === 'invisible' ) {
131
  echo '<script>
132
  /* success callback for invisible recaptcha. it submits the form that contains the right token response */
133
- function wppbInvisibleRecaptchaOnSubmit(token){
134
  var elem = jQuery(".g-recaptcha-response").filter(function(){
135
  return jQuery(this).val() === token;
136
- });
137
- var form = elem.closest("form");
138
  form.submit();
139
  }
140
-
141
  /* make sure if the invisible recaptcha did not load properly ( network error or wrong keys ) we can still submit the form */
142
  jQuery(document).ready(function(){
143
  if( window.wppbRecaptchaInitError === true ){
@@ -149,7 +149,13 @@ function wppb_recaptcha_script_footer(){
149
  </script>';
150
  }
151
 
152
- echo '<script src="https://www.google.com/recaptcha/api.js?onload=wppbRecaptchaCallback&render=explicit" async defer></script>';
 
 
 
 
 
 
153
  }
154
  add_action('wp_footer', 'wppb_recaptcha_script_footer', 9999);
155
  add_action('login_footer', 'wppb_recaptcha_script_footer');
@@ -588,4 +594,4 @@ function wppb_recaptcha_set_default_values() {
588
  }
589
  update_option('wppb_manage_fields', $manage_fields);
590
  }
591
- }
79
  }else if(!wp_script_is('jquery')){
80
  wp_print_scripts('jquery');
81
  }
82
+
83
  //get site key
84
  $pubkey = '';
85
  if( isset( $field['public-key'] ) ) {
89
  // Check if we have a reCAPTCHA type
90
  if ( !isset($field['recaptcha-type']) )
91
  $field['recaptcha-type'] = 'v2' ;
92
+
93
+ /*for invisible recaptcha we have extra parameters and the selector is different. v2 is initialized on the id of the div
94
  that must be unique and invisible is on the submit button of the forms that have the div */
95
  if( $field['recaptcha-type'] === 'invisible' ) {
96
  $callback_conditions = 'jQuery("input[type=\'submit\']", jQuery( ".wppb-recaptcha-element" ).closest("form") )';
100
  $invisible_parameters = '';
101
  }
102
 
103
+ echo '<script>
104
  var wppbRecaptchaCallback = function() {
105
  if( typeof window.wppbRecaptchaCallbackExecuted == "undefined" ){//see if we executed this before
106
  '.$callback_conditions.'.each(function(){
107
  recID = grecaptcha.render( jQuery(this).attr("id"), {
108
+ "sitekey" : "' . $pubkey . '",
109
  "error-callback": wppbRecaptchaInitializationError,
110
+ '.$invisible_parameters.'
111
+ });
112
  });
113
  window.wppbRecaptchaCallbackExecuted = true;//we use this to make sure we only run the callback once
114
  }
115
  };
116
+
117
  /* the callback function for when the captcha does not load propperly, maybe network problem or wrong keys */
118
+ function wppbRecaptchaInitializationError(){
119
  window.wppbRecaptchaInitError = true;
120
  //add a captcha field so we do not just let the form submit if we do not have a captcha response
121
  jQuery( ".wppb-recaptcha-element" ).after(\''. wp_nonce_field( 'wppb_recaptcha_init_error', 'wppb_recaptcha_load_error', false, false ) .'\');
122
  }
123
+
124
+ /* compatibility with other plugins that may include recaptcha with an onload callback. if their script loads first then our callback will not execute so call it explicitly */
125
  jQuery( window ).on( "load", function() {
126
  wppbRecaptchaCallback();
127
  });
130
  if( $field['recaptcha-type'] === 'invisible' ) {
131
  echo '<script>
132
  /* success callback for invisible recaptcha. it submits the form that contains the right token response */
133
+ function wppbInvisibleRecaptchaOnSubmit(token){
134
  var elem = jQuery(".g-recaptcha-response").filter(function(){
135
  return jQuery(this).val() === token;
136
+ });
137
+ var form = elem.closest("form");
138
  form.submit();
139
  }
140
+
141
  /* make sure if the invisible recaptcha did not load properly ( network error or wrong keys ) we can still submit the form */
142
  jQuery(document).ready(function(){
143
  if( window.wppbRecaptchaInitError === true ){
149
  </script>';
150
  }
151
 
152
+ $lang = '&hl=en';
153
+
154
+ if(!empty(get_locale())) {
155
+ $lang = '&hl='.urlencode(explode('_',get_locale())[0]);
156
+ }
157
+
158
+ echo '<script src="https://www.google.com/recaptcha/api.js?onload=wppbRecaptchaCallback&render=explicit'.$lang.'" async defer></script>';
159
  }
160
  add_action('wp_footer', 'wppb_recaptcha_script_footer', 9999);
161
  add_action('login_footer', 'wppb_recaptcha_script_footer');
594
  }
595
  update_option('wppb_manage_fields', $manage_fields);
596
  }
597
+ }
front-end/recover.php CHANGED
@@ -245,6 +245,7 @@ function wppb_send_admin_password_reset_email( $user ){
245
  function wppb_front_end_password_recovery(){
246
  global $wppb_shortcode_on_front;
247
  $wppb_shortcode_on_front = true;
 
248
 
249
  $output = '<div class="wppb_holder" id="wppb-recover-password-container">';
250
 
245
  function wppb_front_end_password_recovery(){
246
  global $wppb_shortcode_on_front;
247
  $wppb_shortcode_on_front = true;
248
+ $password_email_sent = false;
249
 
250
  $output = '<div class="wppb_holder" id="wppb-recover-password-container">';
251
 
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.6
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.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__));
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
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.7' );
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
@@ -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.2.3
7
- Stable tag: 3.0.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -169,7 +169,13 @@ 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.6=
 
 
 
 
 
 
173
  * Fix: php notice. Check if global actually is set before moving forward
174
  * Fix: check add-ons for 'Profile Builder' in their names before determining if an add-on is activated.
175
  * Fix: refactored the password reset shortcode
@@ -179,7 +185,6 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
179
  = 3.0.5 =
180
  * Fixed: Elementor Templates restriction brakes rendering of templates
181
 
182
- == Changelog ==
183
  = 3.0.4 =
184
  * We now show a success message when settings are saved
185
  * Translation updates
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.1
7
+ Stable tag: 3.0.7
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.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
175
+ * Fixed the height of the search button in some cases
176
+ * reCAPTCHA field language is now set reliably
177
+
178
+ = 3.0.6 =
179
  * Fix: php notice. Check if global actually is set before moving forward
180
  * Fix: check add-ons for 'Profile Builder' in their names before determining if an add-on is activated.
181
  * Fix: refactored the password reset shortcode
185
  = 3.0.5 =
186
  * Fixed: Elementor Templates restriction brakes rendering of templates
187
 
 
188
  = 3.0.4 =
189
  * We now show a success message when settings are saved
190
  * Translation updates
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/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:2365
687
  msgid "Yes"
688
  msgstr ""
689
 
@@ -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:2316
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:2317
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:2324
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:2318
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:2319
2761
  msgid "Biographical Info"
2762
  msgstr ""
2763
 
@@ -4583,7 +4583,7 @@ msgstr ""
4583
  msgid "This field is required"
4584
  msgstr ""
4585
 
4586
- #: features/functions.php:748, front-end/default-fields/recaptcha/recaptcha.php:463, front-end/default-fields/recaptcha/recaptcha.php:472, front-end/default-fields/recaptcha/recaptcha.php:525, front-end/default-fields/recaptcha/recaptcha.php:570
4587
  msgid "Please enter a (valid) reCAPTCHA value"
4588
  msgstr ""
4589
 
@@ -4695,7 +4695,7 @@ msgstr ""
4695
  msgid "Something went wrong. Please try again!"
4696
  msgstr ""
4697
 
4698
- #: front-end/login.php:309, front-end/login.php:330, front-end/recover.php:16, front-end/recover.php:302, front-end/extra-fields/extra-fields.php:93
4699
  msgid "ERROR"
4700
  msgstr ""
4701
 
@@ -4803,59 +4803,59 @@ msgstr ""
4803
  msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
4804
  msgstr ""
4805
 
4806
- #: front-end/recover.php:254
4807
  msgid "You are already logged in. You can change your password on the edit profile form."
4808
  msgstr ""
4809
 
4810
- #: front-end/recover.php:277
4811
  msgid "The username entered wasn't found in the database!"
4812
  msgstr ""
4813
 
4814
- #: front-end/recover.php:277
4815
  msgid "Please check that you entered the correct username."
4816
  msgstr ""
4817
 
4818
- #: front-end/recover.php:290
4819
  msgid "Check your e-mail for the confirmation link."
4820
  msgstr ""
4821
 
4822
- #: front-end/recover.php:302
4823
  msgid "There was an error while trying to send the activation link to %1$s!"
4824
  msgstr ""
4825
 
4826
- #: front-end/recover.php:313
4827
  msgid "The email address entered wasn't found in the database!"
4828
  msgstr ""
4829
 
4830
- #: front-end/recover.php:313
4831
  msgid "Please check that you entered the correct email address."
4832
  msgstr ""
4833
 
4834
- #: front-end/recover.php:326
4835
  msgid "The entered passwords don't match!"
4836
  msgstr ""
4837
 
4838
- #: front-end/recover.php:332, front-end/default-fields/password/password.php:50
4839
  msgid "The password must have the minimum length of %s characters"
4840
  msgstr ""
4841
 
4842
- #: front-end/recover.php:336, front-end/default-fields/password/password.php:54
4843
  msgid "The password must have a minimum strength of %s"
4844
  msgstr ""
4845
 
4846
- #: front-end/recover.php:343
4847
  msgid "Your password has been successfully changed!"
4848
  msgstr ""
4849
 
4850
- #: front-end/recover.php:379
4851
  msgid "The password must not be empty!"
4852
  msgstr ""
4853
 
4854
- #: front-end/recover.php:404
4855
  msgid "ERROR:"
4856
  msgstr ""
4857
 
4858
- #: front-end/recover.php:404
4859
  msgid "Invalid key!"
4860
  msgstr ""
4861
 
@@ -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:2321
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:2322
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:2326
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:2212
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:2233
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:2253
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:2255
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:2259
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:2292
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:2320
6507
  msgid "Registration Date"
6508
  msgstr ""
6509
 
6510
- #: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:2325
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:2407
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:2323
6603
  msgid "Display Name"
6604
  msgstr ""
6605
 
6606
- #: modules/user-listing/userlisting.php:822, modules/user-listing/userlisting.php:2330
6607
  msgid "Aim"
6608
  msgstr ""
6609
 
6610
- #: modules/user-listing/userlisting.php:825, modules/user-listing/userlisting.php:2331
6611
  msgid "Yim"
6612
  msgstr ""
6613
 
6614
- #: modules/user-listing/userlisting.php:828, modules/user-listing/userlisting.php:2332
6615
  msgid "Jabber"
6616
  msgstr ""
6617
 
6618
- #: modules/user-listing/userlisting.php:1106, modules/user-listing/userlisting.php:1575, modules/user-listing/userlisting.php:2047, modules/user-listing/userlisting.php:2527
6619
  msgid "Search Users by All Fields"
6620
  msgstr ""
6621
 
@@ -6675,195 +6675,195 @@ msgstr ""
6675
  msgid "No options available"
6676
  msgstr ""
6677
 
6678
- #: modules/user-listing/userlisting.php:1955
6679
  msgid "Remove All Filters"
6680
  msgstr ""
6681
 
6682
- #: modules/user-listing/userlisting.php:2064
6683
  msgid "Search"
6684
  msgstr ""
6685
 
6686
- #: modules/user-listing/userlisting.php:2065
6687
  msgid "Clear Results"
6688
  msgstr ""
6689
 
6690
- #: modules/user-listing/userlisting.php:2262, modules/user-listing/userlisting.php:2266
6691
  msgid "Extra shortcode parameters"
6692
  msgstr ""
6693
 
6694
- #: modules/user-listing/userlisting.php:2264
6695
  msgid "View all extra shortcode parameters"
6696
  msgstr ""
6697
 
6698
- #: modules/user-listing/userlisting.php:2269
6699
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
6700
  msgstr ""
6701
 
6702
- #: modules/user-listing/userlisting.php:2270
6703
  msgid "Example:"
6704
  msgstr ""
6705
 
6706
- #: modules/user-listing/userlisting.php:2272
6707
  msgid "Remember though, that the field-value combination must exist in the database."
6708
  msgstr ""
6709
 
6710
- #: modules/user-listing/userlisting.php:2278
6711
  msgid "displays only the users that you specified the user_id for"
6712
  msgstr ""
6713
 
6714
- #: modules/user-listing/userlisting.php:2284
6715
  msgid "displays all users except the ones you specified the user_id for"
6716
  msgstr ""
6717
 
6718
- #: modules/user-listing/userlisting.php:2347
6719
  msgid "Random (very slow on large databases > 10K user)"
6720
  msgstr ""
6721
 
6722
- #: modules/user-listing/userlisting.php:2350
6723
  msgid "Ascending"
6724
  msgstr ""
6725
 
6726
- #: modules/user-listing/userlisting.php:2351
6727
  msgid "Descending"
6728
  msgstr ""
6729
 
6730
- #: modules/user-listing/userlisting.php:2359
6731
  msgid "Roles to Display"
6732
  msgstr ""
6733
 
6734
- #: modules/user-listing/userlisting.php:2359
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:2360
6739
  msgid "Number of Users/Page"
6740
  msgstr ""
6741
 
6742
- #: modules/user-listing/userlisting.php:2360
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:2361
6747
  msgid "Default Sorting Criteria"
6748
  msgstr ""
6749
 
6750
- #: modules/user-listing/userlisting.php:2361
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:2362
6755
  msgid "Default Sorting Order"
6756
  msgstr ""
6757
 
6758
- #: modules/user-listing/userlisting.php:2362
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:2363
6763
  msgid "Avatar Size (All-userlisting)"
6764
  msgstr ""
6765
 
6766
- #: modules/user-listing/userlisting.php:2363
6767
  msgid "Set the avatar size on the all-userlisting only"
6768
  msgstr ""
6769
 
6770
- #: modules/user-listing/userlisting.php:2364
6771
  msgid "Avatar Size (Single-userlisting)"
6772
  msgstr ""
6773
 
6774
- #: modules/user-listing/userlisting.php:2364
6775
  msgid "Set the avatar size on the single-userlisting only"
6776
  msgstr ""
6777
 
6778
- #: modules/user-listing/userlisting.php:2365
6779
  msgid "Visible only to logged in users?"
6780
  msgstr ""
6781
 
6782
- #: modules/user-listing/userlisting.php:2365
6783
  msgid "The userlisting will only be visible only to the logged in users"
6784
  msgstr ""
6785
 
6786
- #: modules/user-listing/userlisting.php:2366
6787
  msgid "Visible to following Roles"
6788
  msgstr ""
6789
 
6790
- #: modules/user-listing/userlisting.php:2366
6791
  msgid "The userlisting will only be visible to the following roles"
6792
  msgstr ""
6793
 
6794
- #: modules/user-listing/userlisting.php:2372
6795
  msgid "Userlisting Settings"
6796
  msgstr ""
6797
 
6798
- #: modules/user-listing/userlisting.php:2397
6799
  msgid "Label"
6800
  msgstr ""
6801
 
6802
- #: modules/user-listing/userlisting.php:2397
6803
  msgid "Choose the facet name that appears on the frontend"
6804
  msgstr ""
6805
 
6806
- #: modules/user-listing/userlisting.php:2398
6807
  msgid "Facet Type"
6808
  msgstr ""
6809
 
6810
- #: modules/user-listing/userlisting.php:2398
6811
  msgid "Choose the facet menu type"
6812
  msgstr ""
6813
 
6814
- #: modules/user-listing/userlisting.php:2399
6815
  msgid "Facet Meta"
6816
  msgstr ""
6817
 
6818
- #: modules/user-listing/userlisting.php:2399
6819
  msgid "Choose the meta field for the facet menu"
6820
  msgstr ""
6821
 
6822
- #: modules/user-listing/userlisting.php:2400
6823
  msgid "Behaviour"
6824
  msgstr ""
6825
 
6826
- #: modules/user-listing/userlisting.php:2400
6827
  msgid "Narrow the results"
6828
  msgstr ""
6829
 
6830
- #: modules/user-listing/userlisting.php:2400
6831
  msgid "Expand the results"
6832
  msgstr ""
6833
 
6834
- #: modules/user-listing/userlisting.php:2400
6835
  msgid "Choose how multiple selections affect the results"
6836
  msgstr ""
6837
 
6838
- #: modules/user-listing/userlisting.php:2401
6839
  msgid "Visible choices"
6840
  msgstr ""
6841
 
6842
- #: modules/user-listing/userlisting.php:2401
6843
  msgid "Show a toggle link after this many choices. Leave blank for all"
6844
  msgstr ""
6845
 
6846
- #: modules/user-listing/userlisting.php:2426
6847
  msgid "Search Fields"
6848
  msgstr ""
6849
 
6850
- #: modules/user-listing/userlisting.php:2426
6851
  msgid "Choose the fields in which the Search Field will look in"
6852
  msgstr ""
6853
 
6854
- #: modules/user-listing/userlisting.php:2431
6855
  msgid "Search Settings"
6856
  msgstr ""
6857
 
6858
- #: modules/user-listing/userlisting.php:2503
6859
  msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
6860
  msgstr ""
6861
 
6862
- #: modules/user-listing/userlisting.php:2503
6863
  msgid "You can find it in the Profile Builder menu."
6864
  msgstr ""
6865
 
6866
- #: modules/user-listing/userlisting.php:2666
6867
  msgid "No results found!"
6868
  msgstr ""
6869
 
@@ -6931,15 +6931,15 @@ msgstr ""
6931
  msgid "To use reCAPTCHA you must get an API key from"
6932
  msgstr ""
6933
 
6934
- #: front-end/default-fields/recaptcha/recaptcha.php:178
6935
  msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
6936
  msgstr ""
6937
 
6938
- #: front-end/default-fields/recaptcha/recaptcha.php:243
6939
  msgid "To use reCAPTCHA you must get an API public key from:"
6940
  msgstr ""
6941
 
6942
- #: front-end/default-fields/recaptcha/recaptcha.php:525
6943
  msgid "Click the BACK button on your browser, and try again."
6944
  msgstr ""
6945
 
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:2366
687
  msgid "Yes"
688
  msgstr ""
689
 
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:2317
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:2318
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:2325
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:2319
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:2320
2761
  msgid "Biographical Info"
2762
  msgstr ""
2763
 
4583
  msgid "This field is required"
4584
  msgstr ""
4585
 
4586
+ #: features/functions.php:748, front-end/default-fields/recaptcha/recaptcha.php:469, front-end/default-fields/recaptcha/recaptcha.php:478, front-end/default-fields/recaptcha/recaptcha.php:531, front-end/default-fields/recaptcha/recaptcha.php:576
4587
  msgid "Please enter a (valid) reCAPTCHA value"
4588
  msgstr ""
4589
 
4695
  msgid "Something went wrong. Please try again!"
4696
  msgstr ""
4697
 
4698
+ #: front-end/login.php:309, front-end/login.php:330, front-end/recover.php:16, front-end/recover.php:303, front-end/extra-fields/extra-fields.php:93
4699
  msgid "ERROR"
4700
  msgstr ""
4701
 
4803
  msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
4804
  msgstr ""
4805
 
4806
+ #: front-end/recover.php:255
4807
  msgid "You are already logged in. You can change your password on the edit profile form."
4808
  msgstr ""
4809
 
4810
+ #: front-end/recover.php:278
4811
  msgid "The username entered wasn't found in the database!"
4812
  msgstr ""
4813
 
4814
+ #: front-end/recover.php:278
4815
  msgid "Please check that you entered the correct username."
4816
  msgstr ""
4817
 
4818
+ #: front-end/recover.php:291
4819
  msgid "Check your e-mail for the confirmation link."
4820
  msgstr ""
4821
 
4822
+ #: front-end/recover.php:303
4823
  msgid "There was an error while trying to send the activation link to %1$s!"
4824
  msgstr ""
4825
 
4826
+ #: front-end/recover.php:314
4827
  msgid "The email address entered wasn't found in the database!"
4828
  msgstr ""
4829
 
4830
+ #: front-end/recover.php:314
4831
  msgid "Please check that you entered the correct email address."
4832
  msgstr ""
4833
 
4834
+ #: front-end/recover.php:327
4835
  msgid "The entered passwords don't match!"
4836
  msgstr ""
4837
 
4838
+ #: front-end/recover.php:333, front-end/default-fields/password/password.php:50
4839
  msgid "The password must have the minimum length of %s characters"
4840
  msgstr ""
4841
 
4842
+ #: front-end/recover.php:337, front-end/default-fields/password/password.php:54
4843
  msgid "The password must have a minimum strength of %s"
4844
  msgstr ""
4845
 
4846
+ #: front-end/recover.php:344
4847
  msgid "Your password has been successfully changed!"
4848
  msgstr ""
4849
 
4850
+ #: front-end/recover.php:380
4851
  msgid "The password must not be empty!"
4852
  msgstr ""
4853
 
4854
+ #: front-end/recover.php:405
4855
  msgid "ERROR:"
4856
  msgstr ""
4857
 
4858
+ #: front-end/recover.php:405
4859
  msgid "Invalid key!"
4860
  msgstr ""
4861
 
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:2322
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:2323
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:2327
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:2213
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:2234
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:2254
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:2256
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:2260
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:2293
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:2321
6507
  msgid "Registration Date"
6508
  msgstr ""
6509
 
6510
+ #: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:2326
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:2408
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:2324
6603
  msgid "Display Name"
6604
  msgstr ""
6605
 
6606
+ #: modules/user-listing/userlisting.php:822, modules/user-listing/userlisting.php:2331
6607
  msgid "Aim"
6608
  msgstr ""
6609
 
6610
+ #: modules/user-listing/userlisting.php:825, modules/user-listing/userlisting.php:2332
6611
  msgid "Yim"
6612
  msgstr ""
6613
 
6614
+ #: modules/user-listing/userlisting.php:828, modules/user-listing/userlisting.php:2333
6615
  msgid "Jabber"
6616
  msgstr ""
6617
 
6618
+ #: modules/user-listing/userlisting.php:1106, modules/user-listing/userlisting.php:1575, modules/user-listing/userlisting.php:2048, modules/user-listing/userlisting.php:2528
6619
  msgid "Search Users by All Fields"
6620
  msgstr ""
6621
 
6675
  msgid "No options available"
6676
  msgstr ""
6677
 
6678
+ #: modules/user-listing/userlisting.php:1956
6679
  msgid "Remove All Filters"
6680
  msgstr ""
6681
 
6682
+ #: modules/user-listing/userlisting.php:2065
6683
  msgid "Search"
6684
  msgstr ""
6685
 
6686
+ #: modules/user-listing/userlisting.php:2066
6687
  msgid "Clear Results"
6688
  msgstr ""
6689
 
6690
+ #: modules/user-listing/userlisting.php:2263, modules/user-listing/userlisting.php:2267
6691
  msgid "Extra shortcode parameters"
6692
  msgstr ""
6693
 
6694
+ #: modules/user-listing/userlisting.php:2265
6695
  msgid "View all extra shortcode parameters"
6696
  msgstr ""
6697
 
6698
+ #: modules/user-listing/userlisting.php:2270
6699
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
6700
  msgstr ""
6701
 
6702
+ #: modules/user-listing/userlisting.php:2271
6703
  msgid "Example:"
6704
  msgstr ""
6705
 
6706
+ #: modules/user-listing/userlisting.php:2273
6707
  msgid "Remember though, that the field-value combination must exist in the database."
6708
  msgstr ""
6709
 
6710
+ #: modules/user-listing/userlisting.php:2279
6711
  msgid "displays only the users that you specified the user_id for"
6712
  msgstr ""
6713
 
6714
+ #: modules/user-listing/userlisting.php:2285
6715
  msgid "displays all users except the ones you specified the user_id for"
6716
  msgstr ""
6717
 
6718
+ #: modules/user-listing/userlisting.php:2348
6719
  msgid "Random (very slow on large databases > 10K user)"
6720
  msgstr ""
6721
 
6722
+ #: modules/user-listing/userlisting.php:2351
6723
  msgid "Ascending"
6724
  msgstr ""
6725
 
6726
+ #: modules/user-listing/userlisting.php:2352
6727
  msgid "Descending"
6728
  msgstr ""
6729
 
6730
+ #: modules/user-listing/userlisting.php:2360
6731
  msgid "Roles to Display"
6732
  msgstr ""
6733
 
6734
+ #: modules/user-listing/userlisting.php:2360
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:2361
6739
  msgid "Number of Users/Page"
6740
  msgstr ""
6741
 
6742
+ #: modules/user-listing/userlisting.php:2361
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:2362
6747
  msgid "Default Sorting Criteria"
6748
  msgstr ""
6749
 
6750
+ #: modules/user-listing/userlisting.php:2362
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:2363
6755
  msgid "Default Sorting Order"
6756
  msgstr ""
6757
 
6758
+ #: modules/user-listing/userlisting.php:2363
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:2364
6763
  msgid "Avatar Size (All-userlisting)"
6764
  msgstr ""
6765
 
6766
+ #: modules/user-listing/userlisting.php:2364
6767
  msgid "Set the avatar size on the all-userlisting only"
6768
  msgstr ""
6769
 
6770
+ #: modules/user-listing/userlisting.php:2365
6771
  msgid "Avatar Size (Single-userlisting)"
6772
  msgstr ""
6773
 
6774
+ #: modules/user-listing/userlisting.php:2365
6775
  msgid "Set the avatar size on the single-userlisting only"
6776
  msgstr ""
6777
 
6778
+ #: modules/user-listing/userlisting.php:2366
6779
  msgid "Visible only to logged in users?"
6780
  msgstr ""
6781
 
6782
+ #: modules/user-listing/userlisting.php:2366
6783
  msgid "The userlisting will only be visible only to the logged in users"
6784
  msgstr ""
6785
 
6786
+ #: modules/user-listing/userlisting.php:2367
6787
  msgid "Visible to following Roles"
6788
  msgstr ""
6789
 
6790
+ #: modules/user-listing/userlisting.php:2367
6791
  msgid "The userlisting will only be visible to the following roles"
6792
  msgstr ""
6793
 
6794
+ #: modules/user-listing/userlisting.php:2373
6795
  msgid "Userlisting Settings"
6796
  msgstr ""
6797
 
6798
+ #: modules/user-listing/userlisting.php:2398
6799
  msgid "Label"
6800
  msgstr ""
6801
 
6802
+ #: modules/user-listing/userlisting.php:2398
6803
  msgid "Choose the facet name that appears on the frontend"
6804
  msgstr ""
6805
 
6806
+ #: modules/user-listing/userlisting.php:2399
6807
  msgid "Facet Type"
6808
  msgstr ""
6809
 
6810
+ #: modules/user-listing/userlisting.php:2399
6811
  msgid "Choose the facet menu type"
6812
  msgstr ""
6813
 
6814
+ #: modules/user-listing/userlisting.php:2400
6815
  msgid "Facet Meta"
6816
  msgstr ""
6817
 
6818
+ #: modules/user-listing/userlisting.php:2400
6819
  msgid "Choose the meta field for the facet menu"
6820
  msgstr ""
6821
 
6822
+ #: modules/user-listing/userlisting.php:2401
6823
  msgid "Behaviour"
6824
  msgstr ""
6825
 
6826
+ #: modules/user-listing/userlisting.php:2401
6827
  msgid "Narrow the results"
6828
  msgstr ""
6829
 
6830
+ #: modules/user-listing/userlisting.php:2401
6831
  msgid "Expand the results"
6832
  msgstr ""
6833
 
6834
+ #: modules/user-listing/userlisting.php:2401
6835
  msgid "Choose how multiple selections affect the results"
6836
  msgstr ""
6837
 
6838
+ #: modules/user-listing/userlisting.php:2402
6839
  msgid "Visible choices"
6840
  msgstr ""
6841
 
6842
+ #: modules/user-listing/userlisting.php:2402
6843
  msgid "Show a toggle link after this many choices. Leave blank for all"
6844
  msgstr ""
6845
 
6846
+ #: modules/user-listing/userlisting.php:2427
6847
  msgid "Search Fields"
6848
  msgstr ""
6849
 
6850
+ #: modules/user-listing/userlisting.php:2427
6851
  msgid "Choose the fields in which the Search Field will look in"
6852
  msgstr ""
6853
 
6854
+ #: modules/user-listing/userlisting.php:2432
6855
  msgid "Search Settings"
6856
  msgstr ""
6857
 
6858
+ #: modules/user-listing/userlisting.php:2504
6859
  msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
6860
  msgstr ""
6861
 
6862
+ #: modules/user-listing/userlisting.php:2504
6863
  msgid "You can find it in the Profile Builder menu."
6864
  msgstr ""
6865
 
6866
+ #: modules/user-listing/userlisting.php:2667
6867
  msgid "No results found!"
6868
  msgstr ""
6869
 
6931
  msgid "To use reCAPTCHA you must get an API key from"
6932
  msgstr ""
6933
 
6934
+ #: front-end/default-fields/recaptcha/recaptcha.php:184
6935
  msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
6936
  msgstr ""
6937
 
6938
+ #: front-end/default-fields/recaptcha/recaptcha.php:249
6939
  msgid "To use reCAPTCHA you must get an API public key from:"
6940
  msgstr ""
6941
 
6942
+ #: front-end/default-fields/recaptcha/recaptcha.php:531
6943
  msgid "Click the BACK button on your browser, and try again."
6944
  msgstr ""
6945