User registration & user profile – Profile Builder - Version 3.3.7

Version Description

  • Some minor security improvements
  • Fix for Invalid argument supplied for foreach() warning triggered by empty field list.
  • Added filter to allow switching the reCAPTCHA source from www.google.com to www.recaptcha.net.
  • We now trim meta names when searching for them in the queries
  • Changed Email Confirmation field to type email
  • Fixed a possible php warning
Download this release

Release Info

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

Code changes from version 3.3.6 to 3.3.7

admin/advanced-settings/advanced-settings.php CHANGED
@@ -104,7 +104,7 @@ if( !class_exists('WPPB_toolbox') ){
104
  //update cases here
105
 
106
  //this is for the migration of Multiple Admin Emails Add-on
107
- $wppb_toolbox_admin_settings = get_option('wppb_toolbox_admin_settings');
108
  if( !isset( $wppb_toolbox_admin_settings['multiple-admin-emails'] ) || !isset( $wppb_toolbox_admin_settings['admin-emails'] ) ){
109
 
110
  if( !isset( $wppb_toolbox_admin_settings['multiple-admin-emails'] ) )
@@ -195,9 +195,9 @@ if( !class_exists('WPPB_toolbox') ){
195
 
196
  private function setup_functions() {
197
  foreach( $this->tabs as $slug => $label ) {
198
- $settings = get_option( 'wppb_toolbox_' . $slug . '_settings' );
199
 
200
- if ( $settings != false ) {
201
  foreach ( $settings as $key => $value ) {
202
  if ( !empty( $value ) || ( $key == 'redirect-delay-timer' && $value == 0 ) ) {
203
  $path = 'includes/' . $slug . '/' . $key . '.php';
104
  //update cases here
105
 
106
  //this is for the migration of Multiple Admin Emails Add-on
107
+ $wppb_toolbox_admin_settings = get_option('wppb_toolbox_admin_settings', array() );
108
  if( !isset( $wppb_toolbox_admin_settings['multiple-admin-emails'] ) || !isset( $wppb_toolbox_admin_settings['admin-emails'] ) ){
109
 
110
  if( !isset( $wppb_toolbox_admin_settings['multiple-admin-emails'] ) )
195
 
196
  private function setup_functions() {
197
  foreach( $this->tabs as $slug => $label ) {
198
+ $settings = get_option( 'wppb_toolbox_' . $slug . '_settings', array() );
199
 
200
+ if ( is_array( $settings ) ) {
201
  foreach ( $settings as $key => $value ) {
202
  if ( !empty( $value ) || ( $key == 'redirect-delay-timer' && $value == 0 ) ) {
203
  $path = 'includes/' . $slug . '/' . $key . '.php';
admin/advanced-settings/includes/admin/admin-approval-access.php CHANGED
@@ -7,3 +7,8 @@ function wppb_toolbox_rehook_admin_approval_page() {
7
  remove_submenu_page( 'users.php', 'admin_approval' );
8
  }
9
  add_action( 'admin_menu', 'wppb_toolbox_rehook_admin_approval_page', 5 );
 
 
 
 
 
7
  remove_submenu_page( 'users.php', 'admin_approval' );
8
  }
9
  add_action( 'admin_menu', 'wppb_toolbox_rehook_admin_approval_page', 5 );
10
+
11
+ function wppb_change_admin_approval_user_capability($cap){
12
+ return 'delete_users';
13
+ }
14
+ add_filter( 'wppb_admin_approval_user_capability', 'wppb_change_admin_approval_user_capability');
admin/advanced-settings/includes/admin/email-confirmation-access.php CHANGED
@@ -7,3 +7,8 @@ function wppb_toolbox_rehook_email_confirmation_page() {
7
  remove_submenu_page( 'users.php', 'unconfirmed_emails' ); //hide the page in the admin menu
8
  }
9
  add_action( 'admin_menu', 'wppb_toolbox_rehook_email_confirmation_page', 5 );
 
 
 
 
 
7
  remove_submenu_page( 'users.php', 'unconfirmed_emails' ); //hide the page in the admin menu
8
  }
9
  add_action( 'admin_menu', 'wppb_toolbox_rehook_email_confirmation_page', 5 );
10
+
11
+ function wppb_change_email_confirmation_user_capability($cap){
12
+ return 'delete_users';
13
+ }
14
+ add_filter( 'wppb_email_confirmation_user_capability', 'wppb_change_email_confirmation_user_capability');
admin/manage-fields.php CHANGED
@@ -1293,11 +1293,12 @@ function wppb_check_field_on_edit_add( $message, $fields, $required_fields, $met
1293
 
1294
  }else{
1295
  $fields_so_far = get_post_meta ( $post_id, $meta_name, true );
1296
-
1297
- foreach ( $fields_so_far as $key => $value ){
1298
- if ( $value['id'] == $posted_values['id'] )
1299
- $message .= __( "That field is already added in this form\n", 'profile-builder' );
1300
- }
 
1301
  }
1302
  }
1303
  return $message;
1293
 
1294
  }else{
1295
  $fields_so_far = get_post_meta ( $post_id, $meta_name, true );
1296
+ if ( !empty($fields_so_far) ){
1297
+ foreach ( $fields_so_far as $key => $value ){
1298
+ if ( $value['id'] == $posted_values['id'] )
1299
+ $message .= __( "That field is already added in this form\n", 'profile-builder' );
1300
+ }
1301
+ }
1302
  }
1303
  }
1304
  return $message;
features/email-confirmation/class-email-confirmation.php CHANGED
@@ -234,7 +234,7 @@ class wpp_list_unfonfirmed_email_table extends PB_WP_List_Table {
234
 
235
  function wppb_process_bulk_action_message( $message, $url ){
236
 
237
- echo "<script type=\"text/javascript\">confirmECActionBulk( '".$url."', '".$message."' )</script>";
238
  }
239
 
240
  function wppb_process_bulk_action() {
234
 
235
  function wppb_process_bulk_action_message( $message, $url ){
236
 
237
+ echo '<script type=\'text/javascript\'>confirmECActionBulk( "'.$url.'", "'.$message.'" )</script>';
238
  }
239
 
240
  function wppb_process_bulk_action() {
features/email-confirmation/email-confirmation.php CHANGED
@@ -682,7 +682,9 @@ if( $wppb_general_settings != 'not_found' )
682
  }
683
  }else{
684
  global $pagenow;
685
- if ( $pagenow == 'users.php' ){
 
 
686
  add_action( 'admin_head', 'wppb_add_pending_users_header_script' );
687
  }
688
  }
682
  }
683
  }else{
684
  global $pagenow;
685
+ // the Unconfirmed Email Address submenu page is added to profile.php if the user does not have the
686
+ // list_users capability so we also check for it
687
+ if ( $pagenow == 'users.php' || $pagenow == 'profile.php' ){
688
  add_action( 'admin_head', 'wppb_add_pending_users_header_script' );
689
  }
690
  }
features/functions.php CHANGED
@@ -992,6 +992,7 @@ add_filter('post_updated_messages','wppb_change_default_post_updated_messages',
992
 
993
  /* for meta-names with spaces in them PHP converts the space to underline in the $_POST */
994
  function wppb_handle_meta_name( $meta_name ){
 
995
  $meta_name = str_replace( ' ', '_', $meta_name );
996
  $meta_name = str_replace( '.', '_', $meta_name );
997
  return $meta_name;
992
 
993
  /* for meta-names with spaces in them PHP converts the space to underline in the $_POST */
994
  function wppb_handle_meta_name( $meta_name ){
995
+ $meta_name = trim( $meta_name );
996
  $meta_name = str_replace( ' ', '_', $meta_name );
997
  $meta_name = str_replace( '.', '_', $meta_name );
998
  return $meta_name;
front-end/default-fields/email-confirmation/email-confirmation.php CHANGED
@@ -20,7 +20,7 @@ function wppb_email_confirmation_handler( $output, $form_location, $field, $user
20
 
21
  $output = '
22
  <label for="wppb_email_confirmation">'.$item_title.$error_mark.'</label>
23
- <input class="extra_field_email_confirmation" name="wppb_email_confirmation" type="text" id="wppb_email_confirmation" value="'. esc_attr( wp_unslash( $input_value ) ) .'" '. $extra_attr .'/>';
24
  if( !empty( $item_description ) )
25
  $output .= '<span class="wppb-description-delimiter">'.$item_description.'</span>';
26
 
20
 
21
  $output = '
22
  <label for="wppb_email_confirmation">'.$item_title.$error_mark.'</label>
23
+ <input class="extra_field_email_confirmation" name="wppb_email_confirmation" type="email" id="wppb_email_confirmation" value="'. esc_attr( wp_unslash( $input_value ) ) .'" '. $extra_attr .'/>';
24
  if( !empty( $item_description ) )
25
  $output .= '<span class="wppb-description-delimiter">'.$item_description.'</span>';
26
 
front-end/default-fields/recaptcha/recaptcha.php CHANGED
@@ -185,7 +185,9 @@ function wppb_recaptcha_script_footer(){
185
  $lang = '&hl='.urlencode($locale_parts[0]);
186
  }
187
 
188
- echo '<script src="https://www.google.com/recaptcha/api.js?onload=wppbRecaptchaCallback&render=explicit'.$lang.'" async defer></script>';
 
 
189
  }
190
  add_action('wp_footer', 'wppb_recaptcha_script_footer', 9999);
191
  add_action('login_footer', 'wppb_recaptcha_script_footer');
@@ -224,8 +226,11 @@ function wppb_recaptcha_check_answer ( $privkey, $remoteip, $response ){
224
 
225
  return $recaptchaResponse;
226
  }
 
 
 
227
  $getResponse = _wppb_submitHTTPGet(
228
- "https://www.google.com/recaptcha/api/siteverify?",
229
  array (
230
  'secret' => $privkey,
231
  'remoteip' => $remoteip,
185
  $lang = '&hl='.urlencode($locale_parts[0]);
186
  }
187
 
188
+ $source = apply_filters( 'wppb_recaptcha_custom_field_source', 'www.google.com' );
189
+
190
+ echo '<script src="https://'.$source.'/recaptcha/api.js?onload=wppbRecaptchaCallback&render=explicit'.$lang.'" async defer></script>';
191
  }
192
  add_action('wp_footer', 'wppb_recaptcha_script_footer', 9999);
193
  add_action('login_footer', 'wppb_recaptcha_script_footer');
226
 
227
  return $recaptchaResponse;
228
  }
229
+
230
+ $source = apply_filters( 'wppb_recaptcha_custom_field_source', 'www.google.com' );
231
+
232
  $getResponse = _wppb_submitHTTPGet(
233
+ "https://".$source."/recaptcha/api/siteverify?",
234
  array (
235
  'secret' => $privkey,
236
  'remoteip' => $remoteip,
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.3.6
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
@@ -35,7 +35,12 @@ function wppb_free_plugin_init() {
35
  {
36
  ?>
37
  <div class="error">
38
- <p><?php printf( __( '%s is also activated. You need to deactivate it before activating this version of the plugin.', 'profile-builder'), PROFILE_BUILDER ); ?></p>
 
 
 
 
 
39
  </div>
40
  <?php
41
  }
@@ -65,7 +70,7 @@ function wppb_free_plugin_init() {
65
  *
66
  *
67
  */
68
- define('PROFILE_BUILDER_VERSION', '3.3.6' );
69
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
70
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
71
  define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
@@ -238,7 +243,8 @@ if (file_exists( plugin_dir_path(__FILE__) . '/front-end/extra-fields/upload/upl
238
  if( !function_exists( 'wppb_activate_plugin_redirect' ) ){
239
  function wppb_activate_plugin_redirect( $plugin ) {
240
  if( $plugin == plugin_basename( __FILE__ ) ) {
241
- exit( wp_redirect( admin_url( 'admin.php?page=profile-builder-basic-info' ) ) );
 
242
  }
243
  }
244
  add_action( 'activated_plugin', 'wppb_activate_plugin_redirect' );
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.3.7
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
35
  {
36
  ?>
37
  <div class="error">
38
+ <p>
39
+ <?php
40
+ /* translators: %s is the plugin version name */
41
+ echo wp_kses_post( sprintf( __( '%s is also activated. You need to deactivate it before activating this version of the plugin.', 'profile-builder'), PROFILE_BUILDER ) );
42
+ ?>
43
+ </p>
44
  </div>
45
  <?php
46
  }
70
  *
71
  *
72
  */
73
+ define('PROFILE_BUILDER_VERSION', '3.3.7' );
74
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
75
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
76
  define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
243
  if( !function_exists( 'wppb_activate_plugin_redirect' ) ){
244
  function wppb_activate_plugin_redirect( $plugin ) {
245
  if( $plugin == plugin_basename( __FILE__ ) ) {
246
+ wp_safe_redirect( admin_url( 'admin.php?page=profile-builder-basic-info' ) );
247
+ exit();
248
  }
249
  }
250
  add_action( 'activated_plugin', 'wppb_activate_plugin_redirect' );
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === User Registration & User Profile - Profile Builder ===
2
  Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungureanu, iova.mihai, barinagabriel, vadasan
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.6.0
7
- Stable tag: 3.3.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -153,20 +153,31 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
153
 
154
 
155
  == Screenshots ==
156
- 1. Basic Information - Profile Builder, front-end user registration plugin
157
- 2. General Settings - Profile Builder, front-end user registration plugin
158
- 3. Show/Hide Admin Bar
159
- 4. Profile Builder - Manage Default User Fields (Add, Edit or Delete)
160
- 5. Profile Builder - Drag & Drop to Reorder User Profile Fields
161
- 6. Register Form - Front-end User Registration Page
162
- 7. User Login Page
163
- 8. Edit User Profile Page
164
- 9. Recover Password Page
165
- 10. Profile Builder Login Widget
166
- 11. Role Editor Listing
167
- 12. Role Editor
 
 
 
168
 
169
  == Changelog ==
 
 
 
 
 
 
 
 
170
  = 3.3.6 =
171
  * Fixed a js error that was preventing a form to submit
172
 
1
  === User Registration & User Profile - Profile Builder ===
2
  Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungureanu, iova.mihai, barinagabriel, vadasan
3
  Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
4
+ Tags: user registration, user profile, user registration form, user fields, registration, 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.6.0
7
+ Stable tag: 3.3.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
153
 
154
 
155
  == Screenshots ==
156
+ 1. Basic Information - Profile Builder, user registration plugin
157
+ 2. General Settings in Profile Builder user profile plugin
158
+ 3. Manage User Registration Form Fields (Add, Edit or Delete)
159
+ 4. Drag & Drop to Reorder User Profile Fields
160
+ 5. Register Form - Front-end User Registration Page
161
+ 6. Login Form - Front-end User Login Page
162
+ 7. Profile Form - Front-end User Profile Page
163
+ 8. Recover Password Page
164
+ 9. Profile Builder Login Widget
165
+ 10. Admin Bar Settings - Choose which user roles view the admin bar
166
+ 11. Content Restriction settings - Profile Builder, user registration plugin
167
+ 12. Private Website - restrict access to entire site
168
+ 13. Profile Builder Advanced Settings
169
+ 14. User Roles Editor
170
+ 15. Edit or Add New User Role
171
 
172
  == Changelog ==
173
+ = 3.3.7 =
174
+ * Some minor security improvements
175
+ * Fix for Invalid argument supplied for foreach() warning triggered by empty field list.
176
+ * Added filter to allow switching the reCAPTCHA source from www.google.com to www.recaptcha.net.
177
+ * We now trim meta names when searching for them in the queries
178
+ * Changed Email Confirmation field to type email
179
+ * Fixed a possible php warning
180
+
181
  = 3.3.6 =
182
  * Fixed a js error that was preventing a form to submit
183
 
screenshot-1.png CHANGED
Binary file
screenshot-10.png CHANGED
Binary file
screenshot-11.png CHANGED
Binary file
screenshot-12.png CHANGED
Binary file
screenshot-13.png ADDED
Binary file
screenshot-14.png ADDED
Binary file
screenshot-15.png ADDED
Binary file
screenshot-2.png CHANGED
Binary file
screenshot-3.png CHANGED
Binary file
screenshot-4.png CHANGED
Binary file
screenshot-5.png CHANGED
Binary file
screenshot-6.png CHANGED
Binary file
screenshot-7.png CHANGED
Binary file
screenshot-8.png CHANGED
Binary file
screenshot-9.png CHANGED
Binary file
translation/profile-builder.catalog.php CHANGED
@@ -91,6 +91,25 @@
91
  <?php __("iFrame Size", "profile-builder"); ?>
92
  <?php __("Height (px)", "profile-builder"); ?>
93
  <?php __("Width (px)", "profile-builder"); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
94
  <?php __("Visibility", "profile-builder"); ?>
95
  <?php __("<strong>Admin Only</strong> field is visible only for administrators. <strong>User Locked</strong> field is visible for both administrators and users, but only administrators have the capability to edit it.", "profile-builder"); ?>
96
  <?php __("User Role Visibility", "profile-builder"); ?>
@@ -1479,8 +1498,6 @@
1479
  <?php __("Do you want to bulk delete the selected users?", "profile-builder"); ?>
1480
  <?php __("Do you want to bulk unapprove the selected users?", "profile-builder"); ?>
1481
  <?php __("Do you want to bulk approve the selected users?", "profile-builder"); ?>
1482
- <?php __("Unapproved", "profile-builder"); ?>
1483
- <?php __("Approved", "profile-builder"); ?>
1484
  <?php __("All Users", "profile-builder"); ?>
1485
  <?php __("Conditional Logic", "profile-builder"); ?>
1486
  <?php __("Conditional Rules", "profile-builder"); ?>
@@ -1626,6 +1643,7 @@
1626
  <?php __("This username is invalid because it uses illegal characters.", "profile-builder"); ?>
1627
  <?php __("Please enter a valid username.", "profile-builder"); ?>
1628
  <?php __("This username is already reserved to be used soon.", "profile-builder"); ?>
 
1629
  <?php __("required", "profile-builder"); ?>
1630
  <?php __("You must enter a valid URL.", "profile-builder"); ?>
1631
  <?php __("Please add the Google Maps API key for this field.", "profile-builder"); ?>
@@ -1636,7 +1654,6 @@
1636
  <?php __("Value must be less than or equal to %1$s", "profile-builder"); ?>
1637
  <?php __("Required phone number format: ", "profile-builder"); ?>
1638
  <?php __("...Choose", "profile-builder"); ?>
1639
- <?php __("Remove", "profile-builder"); ?>
1640
  <?php __("Select File", "profile-builder"); ?>
1641
  <?php __("Upload ", "profile-builder"); ?>
1642
  <?php __("Files must be smaller than ", "profile-builder"); ?>
91
  <?php __("iFrame Size", "profile-builder"); ?>
92
  <?php __("Height (px)", "profile-builder"); ?>
93
  <?php __("Width (px)", "profile-builder"); ?>
94
+ <?php __("Requires Admin Approval on Edit Profile", "profile-builder"); ?>
95
+ <?php __("Choose if this field requires an administrator to approve any modifications on the edit profile forms", "profile-builder"); ?>
96
+ <?php __("This field requires admin approval on edit profile", "profile-builder"); ?>
97
+ <?php __("Finish Review and Send Notifications", "profile-builder"); ?>
98
+ <?php __("Approve All", "profile-builder"); ?>
99
+ <?php __("This field requires approval by an administrator", "profile-builder"); ?>
100
+ <?php __("Unapproved", "profile-builder"); ?>
101
+ <?php __("Approved", "profile-builder"); ?>
102
+ <?php __("Your profile has been reviewed by an administrator", "profile-builder"); ?>
103
+ <?php __("Approved fields:%s", "profile-builder"); ?>
104
+ <?php __("Unapproved fields:%s", "profile-builder"); ?>
105
+ <?php __("Field %1$s changed from %2$s to %3$s", "profile-builder"); ?>
106
+ <?php __("The user %1$s has updated their profile and some of the fields require admin approval:<br><br> %2$s", "profile-builder"); ?>
107
+ <?php __("Access this link to approve changes: %1$s", "profile-builder"); ?>
108
+ <?php __("A user has updated their profile. Some fields need approval", "profile-builder"); ?>
109
+ <?php __("Field %1$s requires approval from an administrator", "profile-builder"); ?>
110
+ <?php __("Show users that require review", "profile-builder"); ?>
111
+ <?php __("Show reviewed users with unapproved fields", "profile-builder"); ?>
112
+ <?php __("Exit Review Mode", "profile-builder"); ?>
113
  <?php __("Visibility", "profile-builder"); ?>
114
  <?php __("<strong>Admin Only</strong> field is visible only for administrators. <strong>User Locked</strong> field is visible for both administrators and users, but only administrators have the capability to edit it.", "profile-builder"); ?>
115
  <?php __("User Role Visibility", "profile-builder"); ?>
1498
  <?php __("Do you want to bulk delete the selected users?", "profile-builder"); ?>
1499
  <?php __("Do you want to bulk unapprove the selected users?", "profile-builder"); ?>
1500
  <?php __("Do you want to bulk approve the selected users?", "profile-builder"); ?>
 
 
1501
  <?php __("All Users", "profile-builder"); ?>
1502
  <?php __("Conditional Logic", "profile-builder"); ?>
1503
  <?php __("Conditional Rules", "profile-builder"); ?>
1643
  <?php __("This username is invalid because it uses illegal characters.", "profile-builder"); ?>
1644
  <?php __("Please enter a valid username.", "profile-builder"); ?>
1645
  <?php __("This username is already reserved to be used soon.", "profile-builder"); ?>
1646
+ <?php __("Remove", "profile-builder"); ?>
1647
  <?php __("required", "profile-builder"); ?>
1648
  <?php __("You must enter a valid URL.", "profile-builder"); ?>
1649
  <?php __("Please add the Google Maps API key for this field.", "profile-builder"); ?>
1654
  <?php __("Value must be less than or equal to %1$s", "profile-builder"); ?>
1655
  <?php __("Required phone number format: ", "profile-builder"); ?>
1656
  <?php __("...Choose", "profile-builder"); ?>
 
1657
  <?php __("Select File", "profile-builder"); ?>
1658
  <?php __("Upload ", "profile-builder"); ?>
1659
  <?php __("Files must be smaller than ", "profile-builder"); ?>
translation/profile-builder.pot CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2020 Profile Builder
2
  # This file is distributed under the same license as the Profile Builder package.
3
  msgid ""
4
  msgstr ""
@@ -381,63 +381,139 @@ msgstr ""
381
  msgid "Width (px)"
382
  msgstr ""
383
 
384
- #: ../pb-add-on-field-visibility/index.php:219, admin/admin-bar.php:64
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
385
  msgid "Visibility"
386
  msgstr ""
387
 
388
- #: ../pb-add-on-field-visibility/index.php:219
389
  msgid "<strong>Admin Only</strong> field is visible only for administrators. <strong>User Locked</strong> field is visible for both administrators and users, but only administrators have the capability to edit it."
390
  msgstr ""
391
 
392
- #: ../pb-add-on-field-visibility/index.php:220
393
  msgid "User Role Visibility"
394
  msgstr ""
395
 
396
- #: ../pb-add-on-field-visibility/index.php:220
397
  msgid "Select which user roles see this field"
398
  msgstr ""
399
 
400
- #: ../pb-add-on-field-visibility/index.php:221
401
  msgid "Location Visibility"
402
  msgstr ""
403
 
404
- #: ../pb-add-on-field-visibility/index.php:221
405
  msgid "Select the locations you wish the field to appear"
406
  msgstr ""
407
 
408
- #: ../pb-add-on-field-visibility/index.php:239
409
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
410
  msgstr ""
411
 
412
- #: ../pb-add-on-field-visibility/index.php:239, admin/manage-fields.php:1350, features/functions.php:964, features/functions.php:971, add-ons/custom-redirects/custom_redirects_admin.php:183, add-ons/custom-redirects/custom_redirects_admin.php:197, add-ons/custom-redirects/custom_redirects_admin.php:211, add-ons/custom-redirects/custom_redirects_admin.php:225, add-ons/multiple-forms/multiple-forms.php:406, features/admin-approval/class-admin-approval.php:108, features/roles-editor/roles-editor.php:866
413
  msgid "Edit"
414
  msgstr ""
415
 
416
- #: ../pb-add-on-field-visibility/index.php:239, admin/manage-fields.php:1350, features/functions.php:957, features/functions.php:971, add-ons/custom-redirects/custom_redirects_admin.php:183, add-ons/custom-redirects/custom_redirects_admin.php:197, add-ons/custom-redirects/custom_redirects_admin.php:211, add-ons/custom-redirects/custom_redirects_admin.php:225, features/admin-approval/class-admin-approval.php:113, features/email-confirmation/class-email-confirmation.php:121, features/email-confirmation/class-email-confirmation.php:218, features/roles-editor/roles-editor.php:180, features/roles-editor/roles-editor.php:904, features/roles-editor/roles-editor.php:893, features/roles-editor/roles-editor.php:884, front-end/default-fields/gdpr-delete/gdpr-delete.php:20
417
  msgid "Delete"
418
  msgstr ""
419
 
420
- #: ../pb-add-on-field-visibility/index.php:260
421
  msgid "This field is visible only for administrators."
422
  msgstr ""
423
 
424
- #: ../pb-add-on-field-visibility/index.php:263
425
  msgid "This field is visible for both administrators and users, but only administrators have the capability to edit it."
426
  msgstr ""
427
 
428
- #: ../pb-add-on-field-visibility/index.php:286
429
  msgid "This field is visible only for the following user roles: %1$s"
430
  msgstr ""
431
 
432
- #: ../pb-add-on-field-visibility/index.php:332
433
  msgid "This field is visible only in the following locations: %1$s"
434
  msgstr ""
435
 
436
- #: ../pb-add-on-field-visibility/index.php:474
437
  msgid "Get file"
438
  msgstr ""
439
 
440
- #: ../pb-add-on-field-visibility/index.php:607
441
  msgid "You do not have the capabilities necessary to edit this field."
442
  msgstr ""
443
 
@@ -681,7 +757,7 @@ msgstr ""
681
  msgid "Display Social Connect buttons:"
682
  msgstr ""
683
 
684
- #: ../pb-add-on-social-connect/index.php:326, admin/general-settings.php:143, admin/general-settings.php:156, admin/general-settings.php:171, admin/general-settings.php:220, admin/general-settings.php:267, admin/general-settings.php:341, admin/manage-fields.php:190, admin/private-website.php:67, admin/private-website.php:134, admin/private-website.php:147, add-ons/multiple-forms/edit-profile-forms.php:206, add-ons/multiple-forms/register-forms.php:229, add-ons/multiple-forms/register-forms.php:230, add-ons/user-listing/userlisting.php:2436, features/content-restriction/content-restriction.php:89, admin/advanced-settings/includes/forms/placeholder-labels.php:134, admin/advanced-settings/includes/views/view-admin.php:18, admin/advanced-settings/includes/views/view-admin.php:34, admin/advanced-settings/includes/views/view-admin.php:50, admin/advanced-settings/includes/views/view-admin.php:69, admin/advanced-settings/includes/views/view-fields.php:18, admin/advanced-settings/includes/views/view-fields.php:66, admin/advanced-settings/includes/views/view-fields.php:181, admin/advanced-settings/includes/views/view-fields.php:197, admin/advanced-settings/includes/views/view-fields.php:217, admin/advanced-settings/includes/views/view-fields.php:240, admin/advanced-settings/includes/views/view-fields.php:261, admin/advanced-settings/includes/views/view-fields.php:279, admin/advanced-settings/includes/views/view-forms.php:19, admin/advanced-settings/includes/views/view-forms.php:148, admin/advanced-settings/includes/views/view-forms.php:165, admin/advanced-settings/includes/views/view-forms.php:180, admin/advanced-settings/includes/views/view-forms.php:200, admin/advanced-settings/includes/views/view-forms.php:217, admin/advanced-settings/includes/views/view-forms.php:255, admin/advanced-settings/includes/views/view-forms.php:276, admin/advanced-settings/includes/views/view-forms.php:296, admin/advanced-settings/includes/views/view-forms.php:318, admin/advanced-settings/includes/views/view-shortcodes.php:16, admin/advanced-settings/includes/views/view-shortcodes.php:32, admin/advanced-settings/includes/views/view-shortcodes.php:48, admin/advanced-settings/includes/views/view-shortcodes.php:64, admin/advanced-settings/includes/views/view-userlisting.php:53, admin/advanced-settings/includes/views/view-userlisting.php:75
685
  msgid "Yes"
686
  msgstr ""
687
 
@@ -733,7 +809,7 @@ msgstr ""
733
  msgid "You will be redirected in 5 seconds. If not, click %%."
734
  msgstr ""
735
 
736
- #: ../pb-add-on-social-connect/index.php:394, features/functions.php:1251
737
  msgid "here"
738
  msgstr ""
739
 
@@ -973,7 +1049,8 @@ msgstr ""
973
  msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
974
  msgstr ""
975
 
976
- #: index.php:38
 
977
  msgid "%s is also activated. You need to deactivate it before activating this version of the plugin."
978
  msgstr ""
979
 
@@ -1501,7 +1578,7 @@ msgstr ""
1501
  msgid "Show"
1502
  msgstr ""
1503
 
1504
- #: admin/admin-bar.php:81, add-ons/user-listing/userlisting.php:1696
1505
  msgid "Hide"
1506
  msgstr ""
1507
 
@@ -2017,11 +2094,11 @@ msgstr ""
2017
  msgid "Username and Email"
2018
  msgstr ""
2019
 
2020
- #: admin/general-settings.php:296, admin/manage-fields.php:330, front-end/login.php:255, front-end/login.php:269, front-end/login.php:409, add-ons/custom-redirects/custom_redirects_admin.php:60, add-ons/email-customizer/email-customizer.php:28, add-ons/user-listing/userlisting.php:112, add-ons/user-listing/userlisting.php:328, add-ons/user-listing/userlisting.php:823, add-ons/user-listing/userlisting.php:2390, features/admin-approval/class-admin-approval.php:166, features/email-confirmation/class-email-confirmation.php:168, admin/advanced-settings/includes/views/view-fields.php:121
2021
  msgid "Username"
2022
  msgstr ""
2023
 
2024
- #: admin/general-settings.php:297, front-end/login.php:406, front-end/recover.php:119, add-ons/email-customizer/email-customizer.php:29, add-ons/user-listing/userlisting.php:118, add-ons/user-listing/userlisting.php:829, add-ons/user-listing/userlisting.php:2391, features/admin-approval/class-admin-approval.php:169, features/email-confirmation/class-email-confirmation.php:169, admin/advanced-settings/includes/shortcodes/resend-activation.php:9
2025
  msgid "Email"
2026
  msgstr ""
2027
 
@@ -2541,7 +2618,7 @@ msgstr ""
2541
  msgid "Usernames cannot be changed."
2542
  msgstr ""
2543
 
2544
- #: admin/manage-fields.php:333, add-ons/user-listing/userlisting.php:862, add-ons/user-listing/userlisting.php:2398
2545
  msgid "Nickname"
2546
  msgstr ""
2547
 
@@ -2553,7 +2630,7 @@ msgstr ""
2553
  msgid "E-mail"
2554
  msgstr ""
2555
 
2556
- #: admin/manage-fields.php:337, add-ons/email-customizer/email-customizer.php:33, add-ons/user-listing/userlisting.php:121, add-ons/user-listing/userlisting.php:844, add-ons/user-listing/userlisting.php:2392
2557
  msgid "Website"
2558
  msgstr ""
2559
 
@@ -2569,7 +2646,7 @@ msgstr ""
2569
  msgid "Jabber / Google Talk"
2570
  msgstr ""
2571
 
2572
- #: admin/manage-fields.php:347, add-ons/user-listing/userlisting.php:124, add-ons/user-listing/userlisting.php:847, add-ons/user-listing/userlisting.php:2393
2573
  msgid "Biographical Info"
2574
  msgstr ""
2575
 
@@ -4161,23 +4238,23 @@ msgid ""
4161
  ""
4162
  msgstr ""
4163
 
4164
- #: admin/manage-fields.php:1350
4165
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4166
  msgstr ""
4167
 
4168
- #: admin/manage-fields.php:1365
4169
  msgid "Use these shortcodes on the pages you want the forms to be displayed:"
4170
  msgstr ""
4171
 
4172
- #: admin/manage-fields.php:1376
4173
  msgid "With Profile Builder Pro you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms add-on."
4174
  msgstr ""
4175
 
4176
- #: admin/manage-fields.php:1374
4177
  msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Add-ons."
4178
  msgstr ""
4179
 
4180
- #: admin/manage-fields.php:1475
4181
  msgid "Search Location"
4182
  msgstr ""
4183
 
@@ -4465,7 +4542,7 @@ msgstr ""
4465
  msgid "This field is required"
4466
  msgstr ""
4467
 
4468
- #: features/functions.php:900, front-end/default-fields/recaptcha/recaptcha.php:524, front-end/default-fields/recaptcha/recaptcha.php:515, front-end/default-fields/recaptcha/recaptcha.php:580, front-end/default-fields/recaptcha/recaptcha.php:628
4469
  msgid "Please enter a (valid) reCAPTCHA value"
4470
  msgstr ""
4471
 
@@ -4477,23 +4554,23 @@ msgstr ""
4477
  msgid "Content"
4478
  msgstr ""
4479
 
4480
- #: features/functions.php:1153
4481
  msgid "<br><br>Also, you will be able to visit your site at "
4482
  msgstr ""
4483
 
4484
- #: features/functions.php:1166
4485
  msgid "<br><br>You can visit your site at "
4486
  msgstr ""
4487
 
4488
- #: features/functions.php:1252
4489
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4490
  msgstr ""
4491
 
4492
- #: features/functions.php:1406
4493
  msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
4494
  msgstr ""
4495
 
4496
- #: features/functions.php:1447
4497
  msgid "You are not currently logged in."
4498
  msgstr ""
4499
 
@@ -5295,27 +5372,27 @@ msgstr ""
5295
  msgid "No Edit-profile Forms found in trash"
5296
  msgstr ""
5297
 
5298
- #: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:2286
5299
  msgid "Shortcode"
5300
  msgstr ""
5301
 
5302
- #: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:2307
5303
  msgid "(no title)"
5304
  msgstr ""
5305
 
5306
- #: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:2329
5307
  msgid "Use this shortcode on the page you want the form to be displayed:"
5308
  msgstr ""
5309
 
5310
- #: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:2333
5311
  msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5312
  msgstr ""
5313
 
5314
- #: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:2327
5315
  msgid "The shortcode will be available after you publish this form."
5316
  msgstr ""
5317
 
5318
- #: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:2366
5319
  msgid "Form Shortcode"
5320
  msgstr ""
5321
 
@@ -5479,7 +5556,7 @@ msgstr ""
5479
  msgid "Display name as"
5480
  msgstr ""
5481
 
5482
- #: add-ons/user-listing/userlisting.php:160, add-ons/user-listing/userlisting.php:330, add-ons/user-listing/userlisting.php:865, add-ons/user-listing/userlisting.php:2400, features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:256
5483
  msgid "Role"
5484
  msgstr ""
5485
 
@@ -5487,11 +5564,11 @@ msgstr ""
5487
  msgid "Role Slug"
5488
  msgstr ""
5489
 
5490
- #: add-ons/user-listing/userlisting.php:162, add-ons/user-listing/userlisting.php:2394
5491
  msgid "Registration Date"
5492
  msgstr ""
5493
 
5494
- #: add-ons/user-listing/userlisting.php:163, add-ons/user-listing/userlisting.php:2399
5495
  msgid "Number of Posts"
5496
  msgstr ""
5497
 
@@ -5519,7 +5596,7 @@ msgstr ""
5519
  msgid "Search all Fields"
5520
  msgstr ""
5521
 
5522
- #: add-ons/user-listing/userlisting.php:215, add-ons/user-listing/userlisting.php:2478
5523
  msgid "Faceted Menus"
5524
  msgstr ""
5525
 
@@ -5555,15 +5632,15 @@ msgstr ""
5555
  msgid "Avatar"
5556
  msgstr ""
5557
 
5558
- #: add-ons/user-listing/userlisting.php:329, add-ons/user-listing/userlisting.php:835, add-ons/user-listing/userlisting.php:2395, features/admin-approval/class-admin-approval.php:167
5559
  msgid "Firstname"
5560
  msgstr ""
5561
 
5562
- #: add-ons/user-listing/userlisting.php:331, add-ons/user-listing/userlisting.php:850
5563
  msgid "Posts"
5564
  msgstr ""
5565
 
5566
- #: add-ons/user-listing/userlisting.php:332, add-ons/user-listing/userlisting.php:832
5567
  msgid "Sign-up Date"
5568
  msgstr ""
5569
 
@@ -5571,291 +5648,291 @@ msgstr ""
5571
  msgid "More"
5572
  msgstr ""
5573
 
5574
- #: add-ons/user-listing/userlisting.php:427
5575
  msgid "You do not have permission to view this user list."
5576
  msgstr ""
5577
 
5578
- #: add-ons/user-listing/userlisting.php:440
5579
  msgid "You do not have the required user role to view this user list."
5580
  msgstr ""
5581
 
5582
- #: add-ons/user-listing/userlisting.php:464
5583
  msgid "User not found"
5584
  msgstr ""
5585
 
5586
- #: add-ons/user-listing/userlisting.php:859, add-ons/user-listing/userlisting.php:2406
5587
  msgid "Jabber"
5588
  msgstr ""
5589
 
5590
- #: add-ons/user-listing/userlisting.php:856, add-ons/user-listing/userlisting.php:2405
5591
  msgid "Yim"
5592
  msgstr ""
5593
 
5594
- #: add-ons/user-listing/userlisting.php:853, add-ons/user-listing/userlisting.php:2404
5595
  msgid "Aim"
5596
  msgstr ""
5597
 
5598
- #: add-ons/user-listing/userlisting.php:841, add-ons/user-listing/userlisting.php:2397
5599
  msgid "Display Name"
5600
  msgstr ""
5601
 
5602
- #: add-ons/user-listing/userlisting.php:838, add-ons/user-listing/userlisting.php:2396, features/admin-approval/class-admin-approval.php:168
5603
  msgid "Lastname"
5604
  msgstr ""
5605
 
5606
- #: add-ons/user-listing/userlisting.php:826
5607
  msgid "First/Lastname"
5608
  msgstr ""
5609
 
5610
- #: add-ons/user-listing/userlisting.php:1146, add-ons/user-listing/userlisting.php:1627, add-ons/user-listing/userlisting.php:2113, add-ons/user-listing/userlisting.php:2598
5611
  msgid "Search Users by All Fields"
5612
  msgstr ""
5613
 
5614
- #: add-ons/user-listing/userlisting.php:1423
5615
  msgid "Click here to see more information about this user."
5616
  msgstr ""
5617
 
5618
- #: add-ons/user-listing/userlisting.php:1420
5619
  msgid "Click here to see more information about this user"
5620
  msgstr ""
5621
 
5622
- #: add-ons/user-listing/userlisting.php:1420, add-ons/user-listing/userlisting.php:1420
5623
  msgid "More..."
5624
  msgstr ""
5625
 
5626
- #: add-ons/user-listing/userlisting.php:1450
5627
  msgid "View Map"
5628
  msgstr ""
5629
 
5630
- #: add-ons/user-listing/userlisting.php:1584, add-ons/user-listing/userlisting.php:1581
5631
  msgid "Click here to go back"
5632
  msgstr ""
5633
 
5634
- #: add-ons/user-listing/userlisting.php:1581, add-ons/user-listing/userlisting.php:1581
5635
  msgid "Back"
5636
  msgstr ""
5637
 
5638
- #: add-ons/user-listing/userlisting.php:1646
5639
  msgid "You don't have any pagination settings on this userlisting!"
5640
  msgstr ""
5641
 
5642
- #: add-ons/user-listing/userlisting.php:1614
5643
  msgid "&laquo;&laquo; First"
5644
  msgstr ""
5645
 
5646
- #: add-ons/user-listing/userlisting.php:1615
5647
  msgid "&laquo; Prev"
5648
  msgstr ""
5649
 
5650
- #: add-ons/user-listing/userlisting.php:1616
5651
  msgid "Next &raquo; "
5652
  msgstr ""
5653
 
5654
- #: add-ons/user-listing/userlisting.php:1617
5655
  msgid "Last &raquo;&raquo;"
5656
  msgstr ""
5657
 
5658
- #: add-ons/user-listing/userlisting.php:1695
5659
  msgid "Show All"
5660
  msgstr ""
5661
 
5662
- #: add-ons/user-listing/userlisting.php:1771
5663
  msgid "Choose..."
5664
  msgstr ""
5665
 
5666
- #: add-ons/user-listing/userlisting.php:1860
5667
  msgid "No options available"
5668
  msgstr ""
5669
 
5670
- #: add-ons/user-listing/userlisting.php:2015
5671
  msgid "Remove All Filters"
5672
  msgstr ""
5673
 
5674
- #: add-ons/user-listing/userlisting.php:2130
5675
  msgid "Search"
5676
  msgstr ""
5677
 
5678
- #: add-ons/user-listing/userlisting.php:2131
5679
  msgid "Clear Results"
5680
  msgstr ""
5681
 
5682
- #: add-ons/user-listing/userlisting.php:2336, add-ons/user-listing/userlisting.php:2340
5683
  msgid "Extra shortcode parameters"
5684
  msgstr ""
5685
 
5686
- #: add-ons/user-listing/userlisting.php:2338
5687
  msgid "View all extra shortcode parameters"
5688
  msgstr ""
5689
 
5690
- #: add-ons/user-listing/userlisting.php:2343
5691
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5692
  msgstr ""
5693
 
5694
- #: add-ons/user-listing/userlisting.php:2344
5695
  msgid "Example:"
5696
  msgstr ""
5697
 
5698
- #: add-ons/user-listing/userlisting.php:2346
5699
  msgid "Remember though, that the field-value combination must exist in the database."
5700
  msgstr ""
5701
 
5702
- #: add-ons/user-listing/userlisting.php:2352
5703
  msgid "displays only the users that you specified the user_id for"
5704
  msgstr ""
5705
 
5706
- #: add-ons/user-listing/userlisting.php:2358
5707
  msgid "displays all users except the ones you specified the user_id for"
5708
  msgstr ""
5709
 
5710
- #: add-ons/user-listing/userlisting.php:2421
5711
  msgid "Random (very slow on large databases > 10K user)"
5712
  msgstr ""
5713
 
5714
- #: add-ons/user-listing/userlisting.php:2424
5715
  msgid "Ascending"
5716
  msgstr ""
5717
 
5718
- #: add-ons/user-listing/userlisting.php:2425
5719
  msgid "Descending"
5720
  msgstr ""
5721
 
5722
- #: add-ons/user-listing/userlisting.php:2430
5723
  msgid "Roles to Display"
5724
  msgstr ""
5725
 
5726
- #: add-ons/user-listing/userlisting.php:2430
5727
  msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5728
  msgstr ""
5729
 
5730
- #: add-ons/user-listing/userlisting.php:2431
5731
  msgid "Number of Users/Page"
5732
  msgstr ""
5733
 
5734
- #: add-ons/user-listing/userlisting.php:2431
5735
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
5736
  msgstr ""
5737
 
5738
- #: add-ons/user-listing/userlisting.php:2432
5739
  msgid "Default Sorting Criteria"
5740
  msgstr ""
5741
 
5742
- #: add-ons/user-listing/userlisting.php:2432
5743
  msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5744
  msgstr ""
5745
 
5746
- #: add-ons/user-listing/userlisting.php:2433
5747
  msgid "Default Sorting Order"
5748
  msgstr ""
5749
 
5750
- #: add-ons/user-listing/userlisting.php:2433
5751
  msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5752
  msgstr ""
5753
 
5754
- #: add-ons/user-listing/userlisting.php:2434
5755
  msgid "Avatar Size (All-userlisting)"
5756
  msgstr ""
5757
 
5758
- #: add-ons/user-listing/userlisting.php:2434
5759
  msgid "Set the avatar size on the all-userlisting only"
5760
  msgstr ""
5761
 
5762
- #: add-ons/user-listing/userlisting.php:2435
5763
  msgid "Avatar Size (Single-userlisting)"
5764
  msgstr ""
5765
 
5766
- #: add-ons/user-listing/userlisting.php:2435
5767
  msgid "Set the avatar size on the single-userlisting only"
5768
  msgstr ""
5769
 
5770
- #: add-ons/user-listing/userlisting.php:2436
5771
  msgid "Visible only to logged in users?"
5772
  msgstr ""
5773
 
5774
- #: add-ons/user-listing/userlisting.php:2436
5775
  msgid "The userlisting will only be visible only to the logged in users"
5776
  msgstr ""
5777
 
5778
- #: add-ons/user-listing/userlisting.php:2437
5779
  msgid "Visible to following Roles"
5780
  msgstr ""
5781
 
5782
- #: add-ons/user-listing/userlisting.php:2437
5783
  msgid "The userlisting will only be visible to the following roles"
5784
  msgstr ""
5785
 
5786
- #: add-ons/user-listing/userlisting.php:2443
5787
  msgid "Userlisting Settings"
5788
  msgstr ""
5789
 
5790
- #: add-ons/user-listing/userlisting.php:2468
5791
  msgid "Label"
5792
  msgstr ""
5793
 
5794
- #: add-ons/user-listing/userlisting.php:2468
5795
  msgid "Choose the facet name that appears on the frontend"
5796
  msgstr ""
5797
 
5798
- #: add-ons/user-listing/userlisting.php:2469
5799
  msgid "Facet Type"
5800
  msgstr ""
5801
 
5802
- #: add-ons/user-listing/userlisting.php:2469
5803
  msgid "Choose the facet menu type"
5804
  msgstr ""
5805
 
5806
- #: add-ons/user-listing/userlisting.php:2470
5807
  msgid "Facet Meta"
5808
  msgstr ""
5809
 
5810
- #: add-ons/user-listing/userlisting.php:2470
5811
  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."
5812
  msgstr ""
5813
 
5814
- #: add-ons/user-listing/userlisting.php:2471
5815
  msgid "Behaviour"
5816
  msgstr ""
5817
 
5818
- #: add-ons/user-listing/userlisting.php:2471
5819
  msgid "Narrow the results"
5820
  msgstr ""
5821
 
5822
- #: add-ons/user-listing/userlisting.php:2471
5823
  msgid "Expand the results"
5824
  msgstr ""
5825
 
5826
- #: add-ons/user-listing/userlisting.php:2471
5827
  msgid "Choose how multiple selections affect the results"
5828
  msgstr ""
5829
 
5830
- #: add-ons/user-listing/userlisting.php:2472
5831
  msgid "Visible choices"
5832
  msgstr ""
5833
 
5834
- #: add-ons/user-listing/userlisting.php:2472
5835
  msgid "Show a toggle link after this many choices. Leave blank for all"
5836
  msgstr ""
5837
 
5838
- #: add-ons/user-listing/userlisting.php:2497
5839
  msgid "Search Fields"
5840
  msgstr ""
5841
 
5842
- #: add-ons/user-listing/userlisting.php:2497
5843
  msgid "Choose the fields in which the Search Field will look in"
5844
  msgstr ""
5845
 
5846
- #: add-ons/user-listing/userlisting.php:2502
5847
  msgid "Search Settings"
5848
  msgstr ""
5849
 
5850
- #: add-ons/user-listing/userlisting.php:2574
5851
  msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
5852
  msgstr ""
5853
 
5854
- #: add-ons/user-listing/userlisting.php:2574
5855
  msgid "You can find it in the Profile Builder menu."
5856
  msgstr ""
5857
 
5858
- #: add-ons/user-listing/userlisting.php:2737
5859
  msgid "No results found!"
5860
  msgstr ""
5861
 
@@ -6027,14 +6104,6 @@ msgstr ""
6027
  msgid "Do you want to bulk approve the selected users?"
6028
  msgstr ""
6029
 
6030
- #: features/admin-approval/class-admin-approval.php:346
6031
- msgid "Unapproved"
6032
- msgstr ""
6033
-
6034
- #: features/admin-approval/class-admin-approval.php:344
6035
- msgid "Approved"
6036
- msgstr ""
6037
-
6038
  #: features/admin-approval/class-admin-approval.php:463, features/email-confirmation/class-email-confirmation.php:461
6039
  msgid "All Users"
6040
  msgstr ""
@@ -6577,15 +6646,15 @@ msgstr ""
6577
  msgid "To use reCAPTCHA you must get an API key from"
6578
  msgstr ""
6579
 
6580
- #: front-end/default-fields/recaptcha/recaptcha.php:214
6581
  msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
6582
  msgstr ""
6583
 
6584
- #: front-end/default-fields/recaptcha/recaptcha.php:282
6585
  msgid "To use reCAPTCHA you must get an API public key from:"
6586
  msgstr ""
6587
 
6588
- #: front-end/default-fields/recaptcha/recaptcha.php:580
6589
  msgid "Click the BACK button on your browser, and try again."
6590
  msgstr ""
6591
 
@@ -6617,7 +6686,11 @@ msgstr ""
6617
  msgid "This username is already reserved to be used soon."
6618
  msgstr ""
6619
 
6620
- #: front-end/extra-fields/avatar/avatar.php:80, front-end/extra-fields/checkbox/checkbox.php:45, front-end/extra-fields/colorpicker/colorpicker.php:45, front-end/extra-fields/datepicker/datepicker.php:40, front-end/extra-fields/input/input.php:30, front-end/extra-fields/input-email/input-email.php:30, front-end/extra-fields/input-hidden/input-hidden.php:34, front-end/extra-fields/input-url/input-url.php:30, front-end/extra-fields/map/map.php:51, front-end/extra-fields/number/number.php:30, front-end/extra-fields/phone/phone.php:39, front-end/extra-fields/radio/radio.php:44, front-end/extra-fields/select/select.php:51, front-end/extra-fields/select-cpt/select-cpt.php:59, front-end/extra-fields/select-multiple/select-multiple.php:47, front-end/extra-fields/select-timezone/select-timezone.php:49, front-end/extra-fields/select2/select2-multiple.php:88, front-end/extra-fields/select2/select2.php:74, front-end/extra-fields/textarea/textarea.php:30, front-end/extra-fields/upload/upload.php:76, front-end/extra-fields/wysiwyg/wysiwyg.php:33
 
 
 
 
6621
  msgid "required"
6622
  msgstr ""
6623
 
@@ -6625,11 +6698,11 @@ msgstr ""
6625
  msgid "You must enter a valid URL."
6626
  msgstr ""
6627
 
6628
- #: front-end/extra-fields/map/map.php:69, front-end/extra-fields/map/map.php:46
6629
  msgid "Please add the Google Maps API key for this field."
6630
  msgstr ""
6631
 
6632
- #: front-end/extra-fields/map/map.php:134
6633
  msgid "Something went wrong. Please try again."
6634
  msgstr ""
6635
 
@@ -6657,23 +6730,19 @@ msgstr ""
6657
  msgid "...Choose"
6658
  msgstr ""
6659
 
6660
- #: front-end/extra-fields/upload/upload.php:124
6661
- msgid "Remove"
6662
- msgstr ""
6663
-
6664
- #: front-end/extra-fields/upload/upload.php:189
6665
  msgid "Select File"
6666
  msgstr ""
6667
 
6668
- #: front-end/extra-fields/upload/upload.php:195
6669
  msgid "Upload "
6670
  msgstr ""
6671
 
6672
- #: front-end/extra-fields/upload/upload.php:174, front-end/extra-fields/upload/upload_helper_functions.php:61
6673
  msgid "Files must be smaller than "
6674
  msgstr ""
6675
 
6676
- #: front-end/extra-fields/upload/upload.php:175, front-end/extra-fields/upload/upload_helper_functions.php:87, front-end/extra-fields/upload/upload_helper_functions.php:96
6677
  msgid "Sorry, you cannot upload this file type for this field."
6678
  msgstr ""
6679
 
1
+ # Copyright (C) 2021 Profile Builder
2
  # This file is distributed under the same license as the Profile Builder package.
3
  msgid ""
4
  msgstr ""
381
  msgid "Width (px)"
382
  msgstr ""
383
 
384
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:201
385
+ msgid "Requires Admin Approval on Edit Profile"
386
+ msgstr ""
387
+
388
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:201
389
+ msgid "Choose if this field requires an administrator to approve any modifications on the edit profile forms"
390
+ msgstr ""
391
+
392
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:302
393
+ msgid "This field requires admin approval on edit profile"
394
+ msgstr ""
395
+
396
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:371
397
+ msgid "Finish Review and Send Notifications"
398
+ msgstr ""
399
+
400
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:372
401
+ msgid "Approve All"
402
+ msgstr ""
403
+
404
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:390
405
+ msgid "This field requires approval by an administrator"
406
+ msgstr ""
407
+
408
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:419, features/admin-approval/class-admin-approval.php:346
409
+ msgid "Unapproved"
410
+ msgstr ""
411
+
412
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:419, features/admin-approval/class-admin-approval.php:344
413
+ msgid "Approved"
414
+ msgstr ""
415
+
416
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:759, ../pb-add-on-edit-profile-approved-by-admin/index.php:789
417
+ msgid "Your profile has been reviewed by an administrator"
418
+ msgstr ""
419
+
420
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:781
421
+ msgid "Approved fields:%s"
422
+ msgstr ""
423
+
424
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:785
425
+ msgid "Unapproved fields:%s"
426
+ msgstr ""
427
+
428
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:808
429
+ msgid "Field %1$s changed from %2$s to %3$s"
430
+ msgstr ""
431
+
432
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:816
433
+ msgid "The user %1$s has updated their profile and some of the fields require admin approval:<br><br> %2$s"
434
+ msgstr ""
435
+
436
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:818
437
+ msgid "Access this link to approve changes: %1$s"
438
+ msgstr ""
439
+
440
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:821
441
+ msgid "A user has updated their profile. Some fields need approval"
442
+ msgstr ""
443
+
444
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:841
445
+ msgid "Field %1$s requires approval from an administrator"
446
+ msgstr ""
447
+
448
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:916
449
+ msgid "Show users that require review"
450
+ msgstr ""
451
+
452
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:918
453
+ msgid "Show reviewed users with unapproved fields"
454
+ msgstr ""
455
+
456
+ #: ../pb-add-on-edit-profile-approved-by-admin/index.php:921
457
+ msgid "Exit Review Mode"
458
+ msgstr ""
459
+
460
+ #: ../pb-add-on-field-visibility/index.php:220, admin/admin-bar.php:64
461
  msgid "Visibility"
462
  msgstr ""
463
 
464
+ #: ../pb-add-on-field-visibility/index.php:220
465
  msgid "<strong>Admin Only</strong> field is visible only for administrators. <strong>User Locked</strong> field is visible for both administrators and users, but only administrators have the capability to edit it."
466
  msgstr ""
467
 
468
+ #: ../pb-add-on-field-visibility/index.php:221
469
  msgid "User Role Visibility"
470
  msgstr ""
471
 
472
+ #: ../pb-add-on-field-visibility/index.php:221
473
  msgid "Select which user roles see this field"
474
  msgstr ""
475
 
476
+ #: ../pb-add-on-field-visibility/index.php:222
477
  msgid "Location Visibility"
478
  msgstr ""
479
 
480
+ #: ../pb-add-on-field-visibility/index.php:222
481
  msgid "Select the locations you wish the field to appear"
482
  msgstr ""
483
 
484
+ #: ../pb-add-on-field-visibility/index.php:240
485
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
486
  msgstr ""
487
 
488
+ #: ../pb-add-on-field-visibility/index.php:240, admin/manage-fields.php:1351, features/functions.php:964, features/functions.php:971, add-ons/custom-redirects/custom_redirects_admin.php:183, add-ons/custom-redirects/custom_redirects_admin.php:197, add-ons/custom-redirects/custom_redirects_admin.php:211, add-ons/custom-redirects/custom_redirects_admin.php:225, add-ons/multiple-forms/multiple-forms.php:406, features/admin-approval/class-admin-approval.php:108, features/roles-editor/roles-editor.php:866
489
  msgid "Edit"
490
  msgstr ""
491
 
492
+ #: ../pb-add-on-field-visibility/index.php:240, admin/manage-fields.php:1351, features/functions.php:957, features/functions.php:971, add-ons/custom-redirects/custom_redirects_admin.php:183, add-ons/custom-redirects/custom_redirects_admin.php:197, add-ons/custom-redirects/custom_redirects_admin.php:211, add-ons/custom-redirects/custom_redirects_admin.php:225, features/admin-approval/class-admin-approval.php:113, features/email-confirmation/class-email-confirmation.php:121, features/email-confirmation/class-email-confirmation.php:218, features/roles-editor/roles-editor.php:180, features/roles-editor/roles-editor.php:904, features/roles-editor/roles-editor.php:893, features/roles-editor/roles-editor.php:884, front-end/default-fields/gdpr-delete/gdpr-delete.php:20
493
  msgid "Delete"
494
  msgstr ""
495
 
496
+ #: ../pb-add-on-field-visibility/index.php:261
497
  msgid "This field is visible only for administrators."
498
  msgstr ""
499
 
500
+ #: ../pb-add-on-field-visibility/index.php:264
501
  msgid "This field is visible for both administrators and users, but only administrators have the capability to edit it."
502
  msgstr ""
503
 
504
+ #: ../pb-add-on-field-visibility/index.php:287
505
  msgid "This field is visible only for the following user roles: %1$s"
506
  msgstr ""
507
 
508
+ #: ../pb-add-on-field-visibility/index.php:333
509
  msgid "This field is visible only in the following locations: %1$s"
510
  msgstr ""
511
 
512
+ #: ../pb-add-on-field-visibility/index.php:475
513
  msgid "Get file"
514
  msgstr ""
515
 
516
+ #: ../pb-add-on-field-visibility/index.php:616
517
  msgid "You do not have the capabilities necessary to edit this field."
518
  msgstr ""
519
 
757
  msgid "Display Social Connect buttons:"
758
  msgstr ""
759
 
760
+ #: ../pb-add-on-social-connect/index.php:326, admin/general-settings.php:143, admin/general-settings.php:156, admin/general-settings.php:171, admin/general-settings.php:220, admin/general-settings.php:267, admin/general-settings.php:341, admin/manage-fields.php:190, admin/private-website.php:67, admin/private-website.php:134, admin/private-website.php:147, add-ons/multiple-forms/edit-profile-forms.php:206, add-ons/multiple-forms/register-forms.php:229, add-ons/multiple-forms/register-forms.php:230, add-ons/user-listing/userlisting.php:2441, features/content-restriction/content-restriction.php:89, admin/advanced-settings/includes/forms/placeholder-labels.php:134, admin/advanced-settings/includes/views/view-admin.php:18, admin/advanced-settings/includes/views/view-admin.php:34, admin/advanced-settings/includes/views/view-admin.php:50, admin/advanced-settings/includes/views/view-admin.php:69, admin/advanced-settings/includes/views/view-fields.php:18, admin/advanced-settings/includes/views/view-fields.php:66, admin/advanced-settings/includes/views/view-fields.php:181, admin/advanced-settings/includes/views/view-fields.php:197, admin/advanced-settings/includes/views/view-fields.php:217, admin/advanced-settings/includes/views/view-fields.php:240, admin/advanced-settings/includes/views/view-fields.php:261, admin/advanced-settings/includes/views/view-fields.php:279, admin/advanced-settings/includes/views/view-forms.php:19, admin/advanced-settings/includes/views/view-forms.php:148, admin/advanced-settings/includes/views/view-forms.php:165, admin/advanced-settings/includes/views/view-forms.php:180, admin/advanced-settings/includes/views/view-forms.php:200, admin/advanced-settings/includes/views/view-forms.php:217, admin/advanced-settings/includes/views/view-forms.php:255, admin/advanced-settings/includes/views/view-forms.php:276, admin/advanced-settings/includes/views/view-forms.php:296, admin/advanced-settings/includes/views/view-forms.php:318, admin/advanced-settings/includes/views/view-shortcodes.php:16, admin/advanced-settings/includes/views/view-shortcodes.php:32, admin/advanced-settings/includes/views/view-shortcodes.php:48, admin/advanced-settings/includes/views/view-shortcodes.php:64, admin/advanced-settings/includes/views/view-userlisting.php:53, admin/advanced-settings/includes/views/view-userlisting.php:75
761
  msgid "Yes"
762
  msgstr ""
763
 
809
  msgid "You will be redirected in 5 seconds. If not, click %%."
810
  msgstr ""
811
 
812
+ #: ../pb-add-on-social-connect/index.php:394, features/functions.php:1252
813
  msgid "here"
814
  msgstr ""
815
 
1049
  msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1050
  msgstr ""
1051
 
1052
+ #. translators: %s is the plugin version name
1053
+ #: index.php:41
1054
  msgid "%s is also activated. You need to deactivate it before activating this version of the plugin."
1055
  msgstr ""
1056
 
1578
  msgid "Show"
1579
  msgstr ""
1580
 
1581
+ #: admin/admin-bar.php:81, add-ons/user-listing/userlisting.php:1701
1582
  msgid "Hide"
1583
  msgstr ""
1584
 
2094
  msgid "Username and Email"
2095
  msgstr ""
2096
 
2097
+ #: admin/general-settings.php:296, admin/manage-fields.php:330, front-end/login.php:255, front-end/login.php:269, front-end/login.php:409, add-ons/custom-redirects/custom_redirects_admin.php:60, add-ons/email-customizer/email-customizer.php:28, add-ons/user-listing/userlisting.php:112, add-ons/user-listing/userlisting.php:328, add-ons/user-listing/userlisting.php:828, add-ons/user-listing/userlisting.php:2395, features/admin-approval/class-admin-approval.php:166, features/email-confirmation/class-email-confirmation.php:168, admin/advanced-settings/includes/views/view-fields.php:121
2098
  msgid "Username"
2099
  msgstr ""
2100
 
2101
+ #: admin/general-settings.php:297, front-end/login.php:406, front-end/recover.php:119, add-ons/email-customizer/email-customizer.php:29, add-ons/user-listing/userlisting.php:118, add-ons/user-listing/userlisting.php:834, add-ons/user-listing/userlisting.php:2396, features/admin-approval/class-admin-approval.php:169, features/email-confirmation/class-email-confirmation.php:169, admin/advanced-settings/includes/shortcodes/resend-activation.php:9
2102
  msgid "Email"
2103
  msgstr ""
2104
 
2618
  msgid "Usernames cannot be changed."
2619
  msgstr ""
2620
 
2621
+ #: admin/manage-fields.php:333, add-ons/user-listing/userlisting.php:867, add-ons/user-listing/userlisting.php:2403
2622
  msgid "Nickname"
2623
  msgstr ""
2624
 
2630
  msgid "E-mail"
2631
  msgstr ""
2632
 
2633
+ #: admin/manage-fields.php:337, add-ons/email-customizer/email-customizer.php:33, add-ons/user-listing/userlisting.php:121, add-ons/user-listing/userlisting.php:849, add-ons/user-listing/userlisting.php:2397
2634
  msgid "Website"
2635
  msgstr ""
2636
 
2646
  msgid "Jabber / Google Talk"
2647
  msgstr ""
2648
 
2649
+ #: admin/manage-fields.php:347, add-ons/user-listing/userlisting.php:124, add-ons/user-listing/userlisting.php:852, add-ons/user-listing/userlisting.php:2398
2650
  msgid "Biographical Info"
2651
  msgstr ""
2652
 
4238
  ""
4239
  msgstr ""
4240
 
4241
+ #: admin/manage-fields.php:1351
4242
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4243
  msgstr ""
4244
 
4245
+ #: admin/manage-fields.php:1366
4246
  msgid "Use these shortcodes on the pages you want the forms to be displayed:"
4247
  msgstr ""
4248
 
4249
+ #: admin/manage-fields.php:1377
4250
  msgid "With Profile Builder Pro you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms add-on."
4251
  msgstr ""
4252
 
4253
+ #: admin/manage-fields.php:1375
4254
  msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Add-ons."
4255
  msgstr ""
4256
 
4257
+ #: admin/manage-fields.php:1476
4258
  msgid "Search Location"
4259
  msgstr ""
4260
 
4542
  msgid "This field is required"
4543
  msgstr ""
4544
 
4545
+ #: features/functions.php:900, front-end/default-fields/recaptcha/recaptcha.php:529, front-end/default-fields/recaptcha/recaptcha.php:520, front-end/default-fields/recaptcha/recaptcha.php:585, front-end/default-fields/recaptcha/recaptcha.php:633
4546
  msgid "Please enter a (valid) reCAPTCHA value"
4547
  msgstr ""
4548
 
4554
  msgid "Content"
4555
  msgstr ""
4556
 
4557
+ #: features/functions.php:1154
4558
  msgid "<br><br>Also, you will be able to visit your site at "
4559
  msgstr ""
4560
 
4561
+ #: features/functions.php:1167
4562
  msgid "<br><br>You can visit your site at "
4563
  msgstr ""
4564
 
4565
+ #: features/functions.php:1253
4566
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4567
  msgstr ""
4568
 
4569
+ #: features/functions.php:1407
4570
  msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
4571
  msgstr ""
4572
 
4573
+ #: features/functions.php:1448
4574
  msgid "You are not currently logged in."
4575
  msgstr ""
4576
 
5372
  msgid "No Edit-profile Forms found in trash"
5373
  msgstr ""
5374
 
5375
+ #: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:2291
5376
  msgid "Shortcode"
5377
  msgstr ""
5378
 
5379
+ #: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:2312
5380
  msgid "(no title)"
5381
  msgstr ""
5382
 
5383
+ #: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:2334
5384
  msgid "Use this shortcode on the page you want the form to be displayed:"
5385
  msgstr ""
5386
 
5387
+ #: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:2338
5388
  msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5389
  msgstr ""
5390
 
5391
+ #: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:2332
5392
  msgid "The shortcode will be available after you publish this form."
5393
  msgstr ""
5394
 
5395
+ #: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:2371
5396
  msgid "Form Shortcode"
5397
  msgstr ""
5398
 
5556
  msgid "Display name as"
5557
  msgstr ""
5558
 
5559
+ #: add-ons/user-listing/userlisting.php:160, add-ons/user-listing/userlisting.php:330, add-ons/user-listing/userlisting.php:870, add-ons/user-listing/userlisting.php:2405, features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:256
5560
  msgid "Role"
5561
  msgstr ""
5562
 
5564
  msgid "Role Slug"
5565
  msgstr ""
5566
 
5567
+ #: add-ons/user-listing/userlisting.php:162, add-ons/user-listing/userlisting.php:2399
5568
  msgid "Registration Date"
5569
  msgstr ""
5570
 
5571
+ #: add-ons/user-listing/userlisting.php:163, add-ons/user-listing/userlisting.php:2404
5572
  msgid "Number of Posts"
5573
  msgstr ""
5574
 
5596
  msgid "Search all Fields"
5597
  msgstr ""
5598
 
5599
+ #: add-ons/user-listing/userlisting.php:215, add-ons/user-listing/userlisting.php:2483
5600
  msgid "Faceted Menus"
5601
  msgstr ""
5602
 
5632
  msgid "Avatar"
5633
  msgstr ""
5634
 
5635
+ #: add-ons/user-listing/userlisting.php:329, add-ons/user-listing/userlisting.php:840, add-ons/user-listing/userlisting.php:2400, features/admin-approval/class-admin-approval.php:167
5636
  msgid "Firstname"
5637
  msgstr ""
5638
 
5639
+ #: add-ons/user-listing/userlisting.php:331, add-ons/user-listing/userlisting.php:855
5640
  msgid "Posts"
5641
  msgstr ""
5642
 
5643
+ #: add-ons/user-listing/userlisting.php:332, add-ons/user-listing/userlisting.php:837
5644
  msgid "Sign-up Date"
5645
  msgstr ""
5646
 
5648
  msgid "More"
5649
  msgstr ""
5650
 
5651
+ #: add-ons/user-listing/userlisting.php:428
5652
  msgid "You do not have permission to view this user list."
5653
  msgstr ""
5654
 
5655
+ #: add-ons/user-listing/userlisting.php:441
5656
  msgid "You do not have the required user role to view this user list."
5657
  msgstr ""
5658
 
5659
+ #: add-ons/user-listing/userlisting.php:465
5660
  msgid "User not found"
5661
  msgstr ""
5662
 
5663
+ #: add-ons/user-listing/userlisting.php:864, add-ons/user-listing/userlisting.php:2411
5664
  msgid "Jabber"
5665
  msgstr ""
5666
 
5667
+ #: add-ons/user-listing/userlisting.php:861, add-ons/user-listing/userlisting.php:2410
5668
  msgid "Yim"
5669
  msgstr ""
5670
 
5671
+ #: add-ons/user-listing/userlisting.php:858, add-ons/user-listing/userlisting.php:2409
5672
  msgid "Aim"
5673
  msgstr ""
5674
 
5675
+ #: add-ons/user-listing/userlisting.php:846, add-ons/user-listing/userlisting.php:2402
5676
  msgid "Display Name"
5677
  msgstr ""
5678
 
5679
+ #: add-ons/user-listing/userlisting.php:843, add-ons/user-listing/userlisting.php:2401, features/admin-approval/class-admin-approval.php:168
5680
  msgid "Lastname"
5681
  msgstr ""
5682
 
5683
+ #: add-ons/user-listing/userlisting.php:831
5684
  msgid "First/Lastname"
5685
  msgstr ""
5686
 
5687
+ #: add-ons/user-listing/userlisting.php:1151, add-ons/user-listing/userlisting.php:1632, add-ons/user-listing/userlisting.php:2118, add-ons/user-listing/userlisting.php:2603
5688
  msgid "Search Users by All Fields"
5689
  msgstr ""
5690
 
5691
+ #: add-ons/user-listing/userlisting.php:1428
5692
  msgid "Click here to see more information about this user."
5693
  msgstr ""
5694
 
5695
+ #: add-ons/user-listing/userlisting.php:1425
5696
  msgid "Click here to see more information about this user"
5697
  msgstr ""
5698
 
5699
+ #: add-ons/user-listing/userlisting.php:1425, add-ons/user-listing/userlisting.php:1425
5700
  msgid "More..."
5701
  msgstr ""
5702
 
5703
+ #: add-ons/user-listing/userlisting.php:1455
5704
  msgid "View Map"
5705
  msgstr ""
5706
 
5707
+ #: add-ons/user-listing/userlisting.php:1589, add-ons/user-listing/userlisting.php:1586
5708
  msgid "Click here to go back"
5709
  msgstr ""
5710
 
5711
+ #: add-ons/user-listing/userlisting.php:1586, add-ons/user-listing/userlisting.php:1586
5712
  msgid "Back"
5713
  msgstr ""
5714
 
5715
+ #: add-ons/user-listing/userlisting.php:1651
5716
  msgid "You don't have any pagination settings on this userlisting!"
5717
  msgstr ""
5718
 
5719
+ #: add-ons/user-listing/userlisting.php:1619
5720
  msgid "&laquo;&laquo; First"
5721
  msgstr ""
5722
 
5723
+ #: add-ons/user-listing/userlisting.php:1620
5724
  msgid "&laquo; Prev"
5725
  msgstr ""
5726
 
5727
+ #: add-ons/user-listing/userlisting.php:1621
5728
  msgid "Next &raquo; "
5729
  msgstr ""
5730
 
5731
+ #: add-ons/user-listing/userlisting.php:1622
5732
  msgid "Last &raquo;&raquo;"
5733
  msgstr ""
5734
 
5735
+ #: add-ons/user-listing/userlisting.php:1700
5736
  msgid "Show All"
5737
  msgstr ""
5738
 
5739
+ #: add-ons/user-listing/userlisting.php:1776
5740
  msgid "Choose..."
5741
  msgstr ""
5742
 
5743
+ #: add-ons/user-listing/userlisting.php:1865
5744
  msgid "No options available"
5745
  msgstr ""
5746
 
5747
+ #: add-ons/user-listing/userlisting.php:2020
5748
  msgid "Remove All Filters"
5749
  msgstr ""
5750
 
5751
+ #: add-ons/user-listing/userlisting.php:2135
5752
  msgid "Search"
5753
  msgstr ""
5754
 
5755
+ #: add-ons/user-listing/userlisting.php:2136
5756
  msgid "Clear Results"
5757
  msgstr ""
5758
 
5759
+ #: add-ons/user-listing/userlisting.php:2341, add-ons/user-listing/userlisting.php:2345
5760
  msgid "Extra shortcode parameters"
5761
  msgstr ""
5762
 
5763
+ #: add-ons/user-listing/userlisting.php:2343
5764
  msgid "View all extra shortcode parameters"
5765
  msgstr ""
5766
 
5767
+ #: add-ons/user-listing/userlisting.php:2348
5768
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5769
  msgstr ""
5770
 
5771
+ #: add-ons/user-listing/userlisting.php:2349
5772
  msgid "Example:"
5773
  msgstr ""
5774
 
5775
+ #: add-ons/user-listing/userlisting.php:2351
5776
  msgid "Remember though, that the field-value combination must exist in the database."
5777
  msgstr ""
5778
 
5779
+ #: add-ons/user-listing/userlisting.php:2357
5780
  msgid "displays only the users that you specified the user_id for"
5781
  msgstr ""
5782
 
5783
+ #: add-ons/user-listing/userlisting.php:2363
5784
  msgid "displays all users except the ones you specified the user_id for"
5785
  msgstr ""
5786
 
5787
+ #: add-ons/user-listing/userlisting.php:2426
5788
  msgid "Random (very slow on large databases > 10K user)"
5789
  msgstr ""
5790
 
5791
+ #: add-ons/user-listing/userlisting.php:2429
5792
  msgid "Ascending"
5793
  msgstr ""
5794
 
5795
+ #: add-ons/user-listing/userlisting.php:2430
5796
  msgid "Descending"
5797
  msgstr ""
5798
 
5799
+ #: add-ons/user-listing/userlisting.php:2435
5800
  msgid "Roles to Display"
5801
  msgstr ""
5802
 
5803
+ #: add-ons/user-listing/userlisting.php:2435
5804
  msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5805
  msgstr ""
5806
 
5807
+ #: add-ons/user-listing/userlisting.php:2436
5808
  msgid "Number of Users/Page"
5809
  msgstr ""
5810
 
5811
+ #: add-ons/user-listing/userlisting.php:2436
5812
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
5813
  msgstr ""
5814
 
5815
+ #: add-ons/user-listing/userlisting.php:2437
5816
  msgid "Default Sorting Criteria"
5817
  msgstr ""
5818
 
5819
+ #: add-ons/user-listing/userlisting.php:2437
5820
  msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5821
  msgstr ""
5822
 
5823
+ #: add-ons/user-listing/userlisting.php:2438
5824
  msgid "Default Sorting Order"
5825
  msgstr ""
5826
 
5827
+ #: add-ons/user-listing/userlisting.php:2438
5828
  msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5829
  msgstr ""
5830
 
5831
+ #: add-ons/user-listing/userlisting.php:2439
5832
  msgid "Avatar Size (All-userlisting)"
5833
  msgstr ""
5834
 
5835
+ #: add-ons/user-listing/userlisting.php:2439
5836
  msgid "Set the avatar size on the all-userlisting only"
5837
  msgstr ""
5838
 
5839
+ #: add-ons/user-listing/userlisting.php:2440
5840
  msgid "Avatar Size (Single-userlisting)"
5841
  msgstr ""
5842
 
5843
+ #: add-ons/user-listing/userlisting.php:2440
5844
  msgid "Set the avatar size on the single-userlisting only"
5845
  msgstr ""
5846
 
5847
+ #: add-ons/user-listing/userlisting.php:2441
5848
  msgid "Visible only to logged in users?"
5849
  msgstr ""
5850
 
5851
+ #: add-ons/user-listing/userlisting.php:2441
5852
  msgid "The userlisting will only be visible only to the logged in users"
5853
  msgstr ""
5854
 
5855
+ #: add-ons/user-listing/userlisting.php:2442
5856
  msgid "Visible to following Roles"
5857
  msgstr ""
5858
 
5859
+ #: add-ons/user-listing/userlisting.php:2442
5860
  msgid "The userlisting will only be visible to the following roles"
5861
  msgstr ""
5862
 
5863
+ #: add-ons/user-listing/userlisting.php:2448
5864
  msgid "Userlisting Settings"
5865
  msgstr ""
5866
 
5867
+ #: add-ons/user-listing/userlisting.php:2473
5868
  msgid "Label"
5869
  msgstr ""
5870
 
5871
+ #: add-ons/user-listing/userlisting.php:2473
5872
  msgid "Choose the facet name that appears on the frontend"
5873
  msgstr ""
5874
 
5875
+ #: add-ons/user-listing/userlisting.php:2474
5876
  msgid "Facet Type"
5877
  msgstr ""
5878
 
5879
+ #: add-ons/user-listing/userlisting.php:2474
5880
  msgid "Choose the facet menu type"
5881
  msgstr ""
5882
 
5883
+ #: add-ons/user-listing/userlisting.php:2475
5884
  msgid "Facet Meta"
5885
  msgstr ""
5886
 
5887
+ #: add-ons/user-listing/userlisting.php:2475
5888
  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."
5889
  msgstr ""
5890
 
5891
+ #: add-ons/user-listing/userlisting.php:2476
5892
  msgid "Behaviour"
5893
  msgstr ""
5894
 
5895
+ #: add-ons/user-listing/userlisting.php:2476
5896
  msgid "Narrow the results"
5897
  msgstr ""
5898
 
5899
+ #: add-ons/user-listing/userlisting.php:2476
5900
  msgid "Expand the results"
5901
  msgstr ""
5902
 
5903
+ #: add-ons/user-listing/userlisting.php:2476
5904
  msgid "Choose how multiple selections affect the results"
5905
  msgstr ""
5906
 
5907
+ #: add-ons/user-listing/userlisting.php:2477
5908
  msgid "Visible choices"
5909
  msgstr ""
5910
 
5911
+ #: add-ons/user-listing/userlisting.php:2477
5912
  msgid "Show a toggle link after this many choices. Leave blank for all"
5913
  msgstr ""
5914
 
5915
+ #: add-ons/user-listing/userlisting.php:2502
5916
  msgid "Search Fields"
5917
  msgstr ""
5918
 
5919
+ #: add-ons/user-listing/userlisting.php:2502
5920
  msgid "Choose the fields in which the Search Field will look in"
5921
  msgstr ""
5922
 
5923
+ #: add-ons/user-listing/userlisting.php:2507
5924
  msgid "Search Settings"
5925
  msgstr ""
5926
 
5927
+ #: add-ons/user-listing/userlisting.php:2579
5928
  msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
5929
  msgstr ""
5930
 
5931
+ #: add-ons/user-listing/userlisting.php:2579
5932
  msgid "You can find it in the Profile Builder menu."
5933
  msgstr ""
5934
 
5935
+ #: add-ons/user-listing/userlisting.php:2742
5936
  msgid "No results found!"
5937
  msgstr ""
5938
 
6104
  msgid "Do you want to bulk approve the selected users?"
6105
  msgstr ""
6106
 
 
 
 
 
 
 
 
 
6107
  #: features/admin-approval/class-admin-approval.php:463, features/email-confirmation/class-email-confirmation.php:461
6108
  msgid "All Users"
6109
  msgstr ""
6646
  msgid "To use reCAPTCHA you must get an API key from"
6647
  msgstr ""
6648
 
6649
+ #: front-end/default-fields/recaptcha/recaptcha.php:216
6650
  msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
6651
  msgstr ""
6652
 
6653
+ #: front-end/default-fields/recaptcha/recaptcha.php:287
6654
  msgid "To use reCAPTCHA you must get an API public key from:"
6655
  msgstr ""
6656
 
6657
+ #: front-end/default-fields/recaptcha/recaptcha.php:585
6658
  msgid "Click the BACK button on your browser, and try again."
6659
  msgstr ""
6660
 
6686
  msgid "This username is already reserved to be used soon."
6687
  msgstr ""
6688
 
6689
+ #: front-end/extra-fields/avatar/avatar.php:20, front-end/extra-fields/upload/upload.php:16, front-end/extra-fields/upload/upload.php:128
6690
+ msgid "Remove"
6691
+ msgstr ""
6692
+
6693
+ #: front-end/extra-fields/avatar/avatar.php:85, front-end/extra-fields/checkbox/checkbox.php:45, front-end/extra-fields/colorpicker/colorpicker.php:45, front-end/extra-fields/datepicker/datepicker.php:40, front-end/extra-fields/input/input.php:30, front-end/extra-fields/input-email/input-email.php:30, front-end/extra-fields/input-hidden/input-hidden.php:34, front-end/extra-fields/input-url/input-url.php:30, front-end/extra-fields/map/map.php:54, front-end/extra-fields/number/number.php:30, front-end/extra-fields/phone/phone.php:39, front-end/extra-fields/radio/radio.php:44, front-end/extra-fields/select/select.php:51, front-end/extra-fields/select-cpt/select-cpt.php:59, front-end/extra-fields/select-multiple/select-multiple.php:47, front-end/extra-fields/select-timezone/select-timezone.php:49, front-end/extra-fields/select2/select2-multiple.php:88, front-end/extra-fields/select2/select2.php:74, front-end/extra-fields/textarea/textarea.php:30, front-end/extra-fields/upload/upload.php:80, front-end/extra-fields/wysiwyg/wysiwyg.php:33
6694
  msgid "required"
6695
  msgstr ""
6696
 
6698
  msgid "You must enter a valid URL."
6699
  msgstr ""
6700
 
6701
+ #: front-end/extra-fields/map/map.php:75, front-end/extra-fields/map/map.php:49
6702
  msgid "Please add the Google Maps API key for this field."
6703
  msgstr ""
6704
 
6705
+ #: front-end/extra-fields/map/map.php:140
6706
  msgid "Something went wrong. Please try again."
6707
  msgstr ""
6708
 
6730
  msgid "...Choose"
6731
  msgstr ""
6732
 
6733
+ #: front-end/extra-fields/upload/upload.php:193
 
 
 
 
6734
  msgid "Select File"
6735
  msgstr ""
6736
 
6737
+ #: front-end/extra-fields/upload/upload.php:199
6738
  msgid "Upload "
6739
  msgstr ""
6740
 
6741
+ #: front-end/extra-fields/upload/upload.php:178, front-end/extra-fields/upload/upload_helper_functions.php:61
6742
  msgid "Files must be smaller than "
6743
  msgstr ""
6744
 
6745
+ #: front-end/extra-fields/upload/upload.php:179, front-end/extra-fields/upload/upload_helper_functions.php:87, front-end/extra-fields/upload/upload_helper_functions.php:96
6746
  msgid "Sorry, you cannot upload this file type for this field."
6747
  msgstr ""
6748