User registration & user profile – Profile Builder - Version 2.9.0

Version Description

  • Fixed an issue with Private page settings not saving "Redirect to page" if "Allowed pages" was empty
  • Fixed some html validation issues in our forms
  • Added support for detecting the current page url based on WordPress home_url()
  • Removed a deprecated filter that we used in Private Page
  • Added a few extra filters in our forms
  • Fixed an issue with some menu items still appearing when not on Profile Builder pages
  • Fixed some compatibility issues with the import/export plugin
Download this release

Release Info

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

Code changes from version 2.8.9 to 2.9.0

admin/manage-fields.php CHANGED
@@ -319,7 +319,7 @@ function wppb_get_meta_name( $option = 'wppb_manage_fields', $prefix = 'custom_f
319
  function wppb_country_select_options( $form_location ) {
320
  $country_array = apply_filters( 'wppb_'.$form_location.'_country_select_array',
321
  array(
322
- '' => '',
323
  'AF' => __( 'Afghanistan', 'profile-builder' ),
324
  'AX' => __( 'Aland Islands', 'profile-builder' ),
325
  'AL' => __( 'Albania', 'profile-builder' ),
319
  function wppb_country_select_options( $form_location ) {
320
  $country_array = apply_filters( 'wppb_'.$form_location.'_country_select_array',
321
  array(
322
+ '' => __( 'Select a Country', 'profile-builder' ),
323
  'AF' => __( 'Afghanistan', 'profile-builder' ),
324
  'AX' => __( 'Aland Islands', 'profile-builder' ),
325
  'AL' => __( 'Albania', 'profile-builder' ),
admin/private-website.php CHANGED
@@ -72,7 +72,7 @@ function wppb_private_website_content() {
72
  if( !empty( $all_pages ) ){
73
  foreach ($all_pages as $page){
74
  ?>
75
- <option value="<?php echo $page->ID ?>" <?php echo ( ( $wppb_private_website_settings != 'not_found' && isset( $wppb_private_website_settings['allowed_pages'] ) && $wppb_private_website_settings['redirect_to'] == $page->ID ) ? 'selected' : '' ); ?>><?php echo $page->post_title ?></option>
76
  <?php
77
  }
78
  }
72
  if( !empty( $all_pages ) ){
73
  foreach ($all_pages as $page){
74
  ?>
75
+ <option value="<?php echo $page->ID ?>" <?php echo ( ( $wppb_private_website_settings != 'not_found' && isset( $wppb_private_website_settings['redirect_to'] ) && $wppb_private_website_settings['redirect_to'] == $page->ID ) ? 'selected' : '' ); ?>><?php echo $page->post_title ?></option>
76
  <?php
77
  }
78
  }
assets/css/serial-notice.css CHANGED
@@ -42,3 +42,10 @@ div.wppb-serial-notification p{
42
  color: #5693d3;
43
  text-decoration: none;
44
  }
 
 
 
 
 
 
 
42
  color: #5693d3;
43
  text-decoration: none;
44
  }
45
+
46
+
47
+ /* hide menu items */
48
+ .wp-submenu a[href="admin.php?page=profile-builder-admin-bar-settings"], .wp-submenu a[href="admin.php?page=profile-builder-content_restriction"],
49
+ .wp-submenu a[href="admin.php?page=admin-email-customizer"], .wp-submenu a[href="admin.php?page=user-email-customizer"]{
50
+ display:none !important;
51
+ }
assets/css/style-back-end.css CHANGED
@@ -824,10 +824,4 @@ div.wppb-notice .notice-dismiss {
824
 
825
  .profile-builder_page_user-email-customizer #poststuff, .profile-builder_page_admin-email-customizer #poststuff{
826
  padding:0;
827
- }
828
-
829
- /* hide menu items */
830
- .wp-submenu a[href="admin.php?page=profile-builder-admin-bar-settings"], .wp-submenu a[href="admin.php?page=profile-builder-content_restriction"],
831
- .wp-submenu a[href="admin.php?page=admin-email-customizer"], .wp-submenu a[href="admin.php?page=user-email-customizer"]{
832
- display:none !important;
833
  }
824
 
825
  .profile-builder_page_user-email-customizer #poststuff, .profile-builder_page_admin-email-customizer #poststuff{
826
  padding:0;
 
 
 
 
 
 
827
  }
assets/css/style-front-end.css CHANGED
@@ -256,6 +256,10 @@ input#send_credentials_via_email{
256
  padding:0 20px 0 0;
257
  }
258
 
 
 
 
 
259
  .wppb-form-field .wppb-checkboxes label,
260
  .wppb-form-field .wppb-radios label{
261
  float:none;
256
  padding:0 20px 0 0;
257
  }
258
 
259
+ .wppb-user-forms .wppb-checkboxes li.wppb-hidden{
260
+ padding: 0;
261
+ }
262
+
263
  .wppb-form-field .wppb-checkboxes label,
264
  .wppb-form-field .wppb-radios label{
265
  float:none;
features/functions.php CHANGED
@@ -73,28 +73,22 @@ function wppb_show_admin_bar($content){
73
 
74
 
75
  if(!function_exists('wppb_curpageurl')){
76
- function wppb_curpageurl() {
77
- $pageURL = 'http';
78
-
79
- if ((isset($_SERVER["HTTPS"])) && ($_SERVER["HTTPS"] == "on"))
80
- $pageURL .= "s";
81
-
82
- $pageURL .= "://";
83
 
84
- if( strpos( $_SERVER["HTTP_HOST"], $_SERVER["SERVER_NAME"] ) !== false ){
85
- $pageURL .=$_SERVER["HTTP_HOST"].$_SERVER["REQUEST_URI"];
86
- }
87
- else {
88
- if ($_SERVER["SERVER_PORT"] != "80")
89
- $pageURL .= $_SERVER["SERVER_NAME"] . ":" . $_SERVER["SERVER_PORT"] . $_SERVER["REQUEST_URI"];
90
- else
91
- $pageURL .= $_SERVER["SERVER_NAME"] . $_SERVER["REQUEST_URI"];
92
- }
93
-
94
- if ( function_exists('apply_filters') ) $pageURL = apply_filters('wppb_curpageurl', $pageURL);
95
 
96
- return $pageURL;
97
- }
 
 
 
 
 
 
 
 
98
  }
99
 
100
 
@@ -1171,7 +1165,7 @@ function wppb_disable_feed() {
1171
  /**
1172
  * Disable REST
1173
  */
1174
- add_filter('rest_enabled', 'wppb_disable_rest');
1175
  add_filter('rest_jsonp_enabled', 'wppb_disable_rest');
1176
  function wppb_disable_rest( $bool ){
1177
  $wppb_private_website_settings = get_option( 'wppb_private_website_settings', 'not_found' );
@@ -1185,6 +1179,25 @@ function wppb_disable_rest( $bool ){
1185
  return $bool;
1186
  }
1187
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1188
 
1189
  /**
1190
  * We can hide all menu items
73
 
74
 
75
  if(!function_exists('wppb_curpageurl')){
76
+ function wppb_curpageurl(){
77
+ $req_uri = $_SERVER['REQUEST_URI'];
 
 
 
 
 
78
 
79
+ $home_path = trim( parse_url( home_url(), PHP_URL_PATH ), '/' );
80
+ $home_path_regex = sprintf( '|^%s|i', preg_quote( $home_path, '|' ) );
 
 
 
 
 
 
 
 
 
81
 
82
+ // Trim path info from the end and the leading home path from the front.
83
+ $req_uri = ltrim($req_uri, '/');
84
+ $req_uri = preg_replace( $home_path_regex, '', $req_uri );
85
+ $req_uri = trim(home_url(), '/') . '/' . ltrim( $req_uri, '/' );
86
+
87
+
88
+ if ( function_exists('apply_filters') ) $req_uri = apply_filters('wppb_curpageurl', $req_uri);
89
+
90
+ return $req_uri;
91
+ }
92
  }
93
 
94
 
1165
  /**
1166
  * Disable REST
1167
  */
1168
+ //add_filter('rest_enabled', 'wppb_disable_rest'); // this is depracated
1169
  add_filter('rest_jsonp_enabled', 'wppb_disable_rest');
1170
  function wppb_disable_rest( $bool ){
1171
  $wppb_private_website_settings = get_option( 'wppb_private_website_settings', 'not_found' );
1179
  return $bool;
1180
  }
1181
 
1182
+ /* I should test this to not create any problems */
1183
+ //add_filter('rest_authentication_errors', 'wppb_disable_rest_api_authentication', 10, 1 );
1184
+ function wppb_disable_rest_api_authentication($result) {
1185
+ if (!empty($result)) {
1186
+ return $result;
1187
+ }
1188
+
1189
+ $wppb_private_website_settings = get_option( 'wppb_private_website_settings', 'not_found' );
1190
+ if( $wppb_private_website_settings != 'not_found' ) {
1191
+ if ($wppb_private_website_settings['private_website'] == 'yes') {
1192
+ if (!is_user_logged_in() && $_SERVER['REQUEST_URI'] !== "/wp-json/jwt-auth/v1/token" && $_SERVER['REQUEST_URI'] !== "/wp-json/jwt-auth/v1/token/validate") {
1193
+ return new WP_Error('rest_not_logged_in', __( 'You are not currently logged in.', 'profile-builder' ), array('status' => 401));
1194
+ }
1195
+ }
1196
+ }
1197
+
1198
+ return $result;
1199
+ }
1200
+
1201
 
1202
  /**
1203
  * We can hide all menu items
front-end/class-formbuilder.php CHANGED
@@ -301,7 +301,7 @@ class Profile_Builder_Form_Creator{
301
  // aa = admin approval setting
302
  $wppb_general_settings = get_option( 'wppb_general_settings', 'false' );
303
  if ( $wppb_general_settings ) {
304
- if( !empty( $wppb_general_settings['emailConfirmation'] ) )
305
  $wppb_email_confirmation = $wppb_general_settings['emailConfirmation'];
306
  else
307
  $wppb_email_confirmation = 'no';
@@ -400,7 +400,7 @@ class Profile_Builder_Form_Creator{
400
  $wppb_form_class .= $wppb_user_role_class;
401
 
402
  ?>
403
- <form enctype="multipart/form-data" method="post" id="<?php echo apply_filters( 'wppb_form_id', $wppb_form_id, $this ); ?>" class="<?php echo apply_filters( 'wppb_form_class', $wppb_form_class, $this ); ?>" action="<?php echo apply_filters( 'wppb_form_action', '' ); ?>">
404
  <?php
405
  do_action( 'wppb_form_args_before_output', $this->args );
406
 
@@ -508,7 +508,7 @@ class Profile_Builder_Form_Creator{
508
 
509
  function wppb_save_form_values( $global_request ){
510
  $user_id = $this->wppb_get_desired_user_id();
511
- $userdata = apply_filters( 'wppb_build_userdata', array(), $global_request );
512
  $new_user_signup = false;
513
 
514
  $wppb_general_settings = get_option( 'wppb_general_settings' );
@@ -551,7 +551,8 @@ class Profile_Builder_Form_Creator{
551
 
552
  if( !empty( $this->args['form_fields'] ) && !$new_user_signup ){
553
  foreach( $this->args['form_fields'] as $field ){
554
- do_action( 'wppb_save_form_field', $field, $user_id, $global_request, $this->args['form_type'] );
 
555
  }
556
 
557
  if ( $this->args['form_type'] == 'register' ){
301
  // aa = admin approval setting
302
  $wppb_general_settings = get_option( 'wppb_general_settings', 'false' );
303
  if ( $wppb_general_settings ) {
304
+ if( !empty( $wppb_general_settings['emailConfirmation'] ) && apply_filters( 'wppb_email_confirmation_on_register', $wppb_general_settings['emailConfirmation'], $_POST ) == 'yes' )
305
  $wppb_email_confirmation = $wppb_general_settings['emailConfirmation'];
306
  else
307
  $wppb_email_confirmation = 'no';
400
  $wppb_form_class .= $wppb_user_role_class;
401
 
402
  ?>
403
+ <form enctype="multipart/form-data" method="post" id="<?php echo apply_filters( 'wppb_form_id', $wppb_form_id, $this ); ?>" class="<?php echo apply_filters( 'wppb_form_class', $wppb_form_class, $this ); ?>" action="<?php echo apply_filters( 'wppb_form_action', wppb_curpageurl() ); ?>">
404
  <?php
405
  do_action( 'wppb_form_args_before_output', $this->args );
406
 
508
 
509
  function wppb_save_form_values( $global_request ){
510
  $user_id = $this->wppb_get_desired_user_id();
511
+ $userdata = apply_filters( 'wppb_build_userdata', array(), $global_request, $this->args );
512
  $new_user_signup = false;
513
 
514
  $wppb_general_settings = get_option( 'wppb_general_settings' );
551
 
552
  if( !empty( $this->args['form_fields'] ) && !$new_user_signup ){
553
  foreach( $this->args['form_fields'] as $field ){
554
+ if( apply_filters( 'wppb_pre_save_form_field', true, $field, $user_id, $global_request, $this->args['form_type'] ) )
555
+ do_action( 'wppb_save_form_field', $field, $user_id, $global_request, $this->args['form_type'] );
556
  }
557
 
558
  if ( $this->args['form_type'] == 'register' ){
front-end/login.php CHANGED
@@ -142,7 +142,7 @@ function wppb_login_form( $args = array() ) {
142
  $form_location = 'widget';
143
 
144
  $form = '
145
- <form name="' . $args['form_id'] . '" id="' . $args['form_id'] . '" action="" method="post">
146
  ' . $login_form_top . '
147
  <p class="login-username">
148
  <label for="' . esc_attr( $args['id_username'] ) . '">' . esc_html( $args['label_username'] ) . '</label>
142
  $form_location = 'widget';
143
 
144
  $form = '
145
+ <form name="' . $args['form_id'] . '" id="' . $args['form_id'] . '" action="'. wppb_curpageurl() .'" method="post">
146
  ' . $login_form_top . '
147
  <p class="login-username">
148
  <label for="' . esc_attr( $args['id_username'] ) . '">' . esc_html( $args['label_username'] ) . '</label>
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: 2.8.9
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
@@ -75,7 +75,7 @@ function wppb_free_plugin_init() {
75
  *
76
  *
77
  */
78
- define('PROFILE_BUILDER_VERSION', '2.8.9' );
79
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
80
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
81
  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: 2.9.0
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
75
  *
76
  *
77
  */
78
+ define('PROFILE_BUILDER_VERSION', '2.9.0' );
79
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
80
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
81
  define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
4
  Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
5
  Requires at least: 3.1
6
  Tested up to: 4.9.8
7
- Stable tag: 2.8.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -167,6 +167,15 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
167
  12. Role Editor
168
 
169
  == Changelog ==
 
 
 
 
 
 
 
 
 
170
  = 2.8.9 =
171
  * Added Private Website functionality
172
  * Added a plugin notice for Private Website
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
5
  Requires at least: 3.1
6
  Tested up to: 4.9.8
7
+ Stable tag: 2.9.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
167
  12. Role Editor
168
 
169
  == Changelog ==
170
+ = 2.9.0 =
171
+ * Fixed an issue with Private page settings not saving "Redirect to page" if "Allowed pages" was empty
172
+ * Fixed some html validation issues in our forms
173
+ * Added support for detecting the current page url based on WordPress home_url()
174
+ * Removed a deprecated filter that we used in Private Page
175
+ * Added a few extra filters in our forms
176
+ * Fixed an issue with some menu items still appearing when not on Profile Builder pages
177
+ * Fixed some compatibility issues with the import/export plugin
178
+
179
  = 2.8.9 =
180
  * Added Private Website functionality
181
  * Added a plugin notice for Private Website
translation/profile-builder.catalog.php CHANGED
@@ -674,6 +674,7 @@
674
  <?php __("Repeat Password", "profile-builder"); ?>
675
  <?php __("Type your password again. ", "profile-builder"); ?>
676
  <?php __("Blog Details", "profile-builder"); ?>
 
677
  <?php __("Afghanistan", "profile-builder"); ?>
678
  <?php __("Aland Islands", "profile-builder"); ?>
679
  <?php __("Albania", "profile-builder"); ?>
@@ -1120,6 +1121,7 @@
1120
  <?php __("<br><br>You can visit your site at ", "profile-builder"); ?>
1121
  <?php __("You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s", "profile-builder"); ?>
1122
  <?php __("No feed available,please visit our <a href=\"%s\">homepage</a>!", "profile-builder"); ?>
 
1123
  <?php __("The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form.", "profile-builder"); ?>
1124
  <?php __("Only an administrator can add new users.", "profile-builder"); ?>
1125
  <?php __("Users can register themselves or you can manually create users here.", "profile-builder"); ?>
674
  <?php __("Repeat Password", "profile-builder"); ?>
675
  <?php __("Type your password again. ", "profile-builder"); ?>
676
  <?php __("Blog Details", "profile-builder"); ?>
677
+ <?php __("Select a Country", "profile-builder"); ?>
678
  <?php __("Afghanistan", "profile-builder"); ?>
679
  <?php __("Aland Islands", "profile-builder"); ?>
680
  <?php __("Albania", "profile-builder"); ?>
1121
  <?php __("<br><br>You can visit your site at ", "profile-builder"); ?>
1122
  <?php __("You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s", "profile-builder"); ?>
1123
  <?php __("No feed available,please visit our <a href=\"%s\">homepage</a>!", "profile-builder"); ?>
1124
+ <?php __("You are not currently logged in.", "profile-builder"); ?>
1125
  <?php __("The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form.", "profile-builder"); ?>
1126
  <?php __("Only an administrator can add new users.", "profile-builder"); ?>
1127
  <?php __("Users can register themselves or you can manually create users here.", "profile-builder"); ?>
translation/profile-builder.pot CHANGED
@@ -421,11 +421,11 @@ msgstr ""
421
  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>"
422
  msgstr ""
423
 
424
- #: ../pb-add-on-field-visibility/index.php:223, ../pb-add-on-labels-edit/pble.php:354, ../profile-builder-2.0/admin/manage-fields.php:1236, ../profile-builder-2.0/features/functions.php:789, ../profile-builder-2.0/features/functions.php:796, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:108, ../profile-builder-2.0/features/roles-editor/roles-editor.php:866, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:183, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:197, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:211, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:225, ../profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
425
  msgid "Edit"
426
  msgstr ""
427
 
428
- #: ../pb-add-on-field-visibility/index.php:223, ../profile-builder-2.0/admin/manage-fields.php:1236, ../profile-builder-2.0/features/functions.php:782, ../profile-builder-2.0/features/functions.php:796, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:113, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218, ../profile-builder-2.0/features/roles-editor/roles-editor.php:179, ../profile-builder-2.0/features/roles-editor/roles-editor.php:884, ../profile-builder-2.0/features/roles-editor/roles-editor.php:893, ../profile-builder-2.0/features/roles-editor/roles-editor.php:904, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:183, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:197, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:211, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:225
429
  msgid "Delete"
430
  msgstr ""
431
 
@@ -453,11 +453,11 @@ msgstr ""
453
  msgid "You do not have the capabilities necessary to edit this field."
454
  msgstr ""
455
 
456
- #: ../pb-add-on-import-export/pbie-export.php:102
457
  msgid "Export Profile Builder options as a .json file. This allows you to easily import the configuration into another site."
458
  msgstr ""
459
 
460
- #: ../pb-add-on-import-export/pbie-export.php:104, ../pb-add-on-import-export/pbie.php:55, ../pb-add-on-labels-edit/pble.php:318
461
  msgid "Export"
462
  msgstr ""
463
 
@@ -565,7 +565,7 @@ msgid ""
565
  ""
566
  msgstr ""
567
 
568
- #: ../pb-add-on-multi-step-forms/index.php:102, ../pb-add-on-multi-step-forms/index.php:534
569
  msgid "Step"
570
  msgstr ""
571
 
@@ -581,7 +581,7 @@ msgstr ""
581
  msgid "Publish the form to edit tabs title."
582
  msgstr ""
583
 
584
- #: ../pb-add-on-multi-step-forms/index.php:106, ../pb-add-on-multi-step-forms/index.php:224
585
  msgid "Publish the form before adding Break Points!"
586
  msgstr ""
587
 
@@ -589,59 +589,59 @@ msgstr ""
589
  msgid "Request in process, please wait a few seconds before a new one!"
590
  msgstr ""
591
 
592
- #: ../pb-add-on-multi-step-forms/index.php:152
593
  msgid "Multi-Step Forms"
594
  msgstr ""
595
 
596
- #: ../pb-add-on-multi-step-forms/index.php:196
597
  msgid "Multi-Step Forms options updated."
598
  msgstr ""
599
 
600
- #: ../pb-add-on-multi-step-forms/index.php:201
601
  msgid "Enable on:"
602
  msgstr ""
603
 
604
- #: ../pb-add-on-multi-step-forms/index.php:202
605
  msgid "PB Default Register Form"
606
  msgstr ""
607
 
608
- #: ../pb-add-on-multi-step-forms/index.php:203
609
  msgid "PB Default Edit Profile Form"
610
  msgstr ""
611
 
612
- #: ../pb-add-on-multi-step-forms/index.php:204
613
  msgid "To enable it on Multiple Registration and Edit-Profile Forms you must add Break Points in each form page."
614
  msgstr ""
615
 
616
- #: ../pb-add-on-multi-step-forms/index.php:205, ../pb-add-on-multi-step-forms/index.php:230
617
  msgid "Pagination and Tabs:"
618
  msgstr ""
619
 
620
- #: ../pb-add-on-multi-step-forms/index.php:206, ../pb-add-on-multi-step-forms/index.php:231
621
  msgid "Enable Pagination"
622
  msgstr ""
623
 
624
- #: ../pb-add-on-multi-step-forms/index.php:207, ../pb-add-on-multi-step-forms/index.php:232
625
  msgid "Enable Tabs"
626
  msgstr ""
627
 
628
- #: ../pb-add-on-multi-step-forms/index.php:207, ../pb-add-on-multi-step-forms/index.php:232
629
  msgid "Edit Tabs Title"
630
  msgstr ""
631
 
632
- #: ../pb-add-on-multi-step-forms/index.php:209
633
  msgid "Update Multi-Step"
634
  msgstr ""
635
 
636
- #: ../pb-add-on-multi-step-forms/index.php:229
637
  msgid "To enable MSF you must add Break Points."
638
  msgstr ""
639
 
640
- #: ../pb-add-on-multi-step-forms/index.php:463
641
  msgid "Next"
642
  msgstr ""
643
 
644
- #: ../pb-add-on-multi-step-forms/index.php:464
645
  msgid "Previous"
646
  msgstr ""
647
 
@@ -653,7 +653,7 @@ msgstr ""
653
  msgid "Replace labels with placeholders:"
654
  msgstr ""
655
 
656
- #: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:323, ../profile-builder-2.0/admin/general-settings.php:111, ../profile-builder-2.0/admin/general-settings.php:124, ../profile-builder-2.0/admin/general-settings.php:173, ../profile-builder-2.0/admin/general-settings.php:220, ../profile-builder-2.0/admin/private-website.php:58, ../profile-builder-2.0/admin/private-website.php:115, ../profile-builder-2.0/features/content-restriction/content-restriction.php:86, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230, ../profile-builder-2.0/modules/user-listing/userlisting.php:2330
657
  msgid "Yes"
658
  msgstr ""
659
 
@@ -853,7 +853,7 @@ msgstr ""
853
  msgid "You will be redirected in 5 seconds. If not, click %%."
854
  msgstr ""
855
 
856
- #: ../pb-add-on-social-connect/index.php:390, ../profile-builder-2.0/features/functions.php:1061
857
  msgid "here"
858
  msgstr ""
859
 
@@ -1165,7 +1165,7 @@ msgstr ""
1165
  msgid "Click to edit"
1166
  msgstr ""
1167
 
1168
- #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:451, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, ../profile-builder-2.0/features/functions.php:775, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:403, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:395
1169
  msgid "Cancel"
1170
  msgstr ""
1171
 
@@ -1715,7 +1715,7 @@ msgstr ""
1715
  msgid "Show"
1716
  msgstr ""
1717
 
1718
- #: ../profile-builder-2.0/admin/admin-bar.php:78, ../profile-builder-2.0/modules/user-listing/userlisting.php:1612
1719
  msgid "Hide"
1720
  msgstr ""
1721
 
@@ -1739,15 +1739,15 @@ msgstr ""
1739
  msgid "Very weak"
1740
  msgstr ""
1741
 
1742
- #: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:280, ../profile-builder-2.0/features/functions.php:609, ../profile-builder-2.0/features/functions.php:633
1743
  msgid "Weak"
1744
  msgstr ""
1745
 
1746
- #: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:281, ../profile-builder-2.0/features/functions.php:609, ../profile-builder-2.0/features/functions.php:633
1747
  msgid "Medium"
1748
  msgstr ""
1749
 
1750
- #: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:282, ../profile-builder-2.0/features/functions.php:609, ../profile-builder-2.0/features/functions.php:633
1751
  msgid "Strong"
1752
  msgstr ""
1753
 
@@ -2223,11 +2223,11 @@ msgstr ""
2223
  msgid "Username and Email"
2224
  msgstr ""
2225
 
2226
- #: ../profile-builder-2.0/admin/general-settings.php:249, ../profile-builder-2.0/admin/manage-fields.php:242, ../profile-builder-2.0/front-end/login.php:246, ../profile-builder-2.0/front-end/login.php:260, ../profile-builder-2.0/front-end/login.php:388, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:166, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:60, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:28, ../profile-builder-2.0/modules/user-listing/userlisting.php:111, ../profile-builder-2.0/modules/user-listing/userlisting.php:303, ../profile-builder-2.0/modules/user-listing/userlisting.php:769, ../profile-builder-2.0/modules/user-listing/userlisting.php:2281
2227
  msgid "Username"
2228
  msgstr ""
2229
 
2230
- #: ../profile-builder-2.0/admin/general-settings.php:250, ../profile-builder-2.0/front-end/login.php:385, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:29, ../profile-builder-2.0/modules/user-listing/userlisting.php:775, ../profile-builder-2.0/modules/user-listing/userlisting.php:2282
2231
  msgid "Email"
2232
  msgstr ""
2233
 
@@ -2671,7 +2671,7 @@ msgstr ""
2671
  msgid "Usernames cannot be changed."
2672
  msgstr ""
2673
 
2674
- #: ../profile-builder-2.0/admin/manage-fields.php:245, ../profile-builder-2.0/modules/user-listing/userlisting.php:808, ../profile-builder-2.0/modules/user-listing/userlisting.php:2289
2675
  msgid "Nickname"
2676
  msgstr ""
2677
 
@@ -2679,7 +2679,7 @@ msgstr ""
2679
  msgid "Display name publicly as"
2680
  msgstr ""
2681
 
2682
- #: ../profile-builder-2.0/admin/manage-fields.php:249, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:33, ../profile-builder-2.0/modules/user-listing/userlisting.php:120, ../profile-builder-2.0/modules/user-listing/userlisting.php:790, ../profile-builder-2.0/modules/user-listing/userlisting.php:2283
2683
  msgid "Website"
2684
  msgstr ""
2685
 
@@ -2695,7 +2695,7 @@ msgstr ""
2695
  msgid "Jabber / Google Talk"
2696
  msgstr ""
2697
 
2698
- #: ../profile-builder-2.0/admin/manage-fields.php:259, ../profile-builder-2.0/modules/user-listing/userlisting.php:123, ../profile-builder-2.0/modules/user-listing/userlisting.php:793, ../profile-builder-2.0/modules/user-listing/userlisting.php:2284
2699
  msgid "Biographical Info"
2700
  msgstr ""
2701
 
@@ -2723,6 +2723,10 @@ msgstr ""
2723
  msgid "Blog Details"
2724
  msgstr ""
2725
 
 
 
 
 
2726
  #: ../profile-builder-2.0/admin/manage-fields.php:323, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2727
  msgid "Afghanistan"
2728
  msgstr ""
@@ -4409,7 +4413,7 @@ msgstr ""
4409
  msgid "We recommend \"<a href=\"%s\" target=\"_blank\">Custom Profile Menus</a>\" addon if you need different menu items for logged in / logged out users."
4410
  msgstr ""
4411
 
4412
- #: ../profile-builder-2.0/admin/private-website.php:127, ../profile-builder-2.0/features/functions.php:768, ../profile-builder-2.0/features/content-restriction/content-restriction.php:159, ../profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:402, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:394
4413
  msgid "Save Changes"
4414
  msgstr ""
4415
 
@@ -4485,62 +4489,66 @@ msgstr ""
4485
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
4486
  msgstr ""
4487
 
4488
- #: ../profile-builder-2.0/features/functions.php:258
4489
  msgid "GDPR Checkbox"
4490
  msgstr ""
4491
 
4492
- #: ../profile-builder-2.0/features/functions.php:258
4493
  msgid "I allow the website to collect and store the data I submit through this form."
4494
  msgstr ""
4495
 
4496
- #: ../profile-builder-2.0/features/functions.php:583
4497
  msgid "Strength indicator"
4498
  msgstr ""
4499
 
4500
- #: ../profile-builder-2.0/features/functions.php:609, ../profile-builder-2.0/features/functions.php:633
4501
  msgid "Very Weak"
4502
  msgstr ""
4503
 
4504
- #: ../profile-builder-2.0/features/functions.php:623
4505
  msgid "Minimum length of %d characters."
4506
  msgstr ""
4507
 
4508
- #: ../profile-builder-2.0/features/functions.php:634
4509
  msgid "The password must have a minimum strength of %s."
4510
  msgstr ""
4511
 
4512
- #: ../profile-builder-2.0/features/functions.php:711
4513
  msgid "This field is required"
4514
  msgstr ""
4515
 
4516
- #: ../profile-builder-2.0/features/functions.php:749, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:461, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:470, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:523, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:568
4517
  msgid "Please enter a (valid) reCAPTCHA value"
4518
  msgstr ""
4519
 
4520
- #: ../profile-builder-2.0/features/functions.php:756
4521
  msgid "Incorrect phone number"
4522
  msgstr ""
4523
 
4524
- #: ../profile-builder-2.0/features/functions.php:796, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:444, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:436
4525
  msgid "Content"
4526
  msgstr ""
4527
 
4528
- #: ../profile-builder-2.0/features/functions.php:963
4529
  msgid "<br><br>Also, you will be able to visit your site at "
4530
  msgstr ""
4531
 
4532
- #: ../profile-builder-2.0/features/functions.php:976
4533
  msgid "<br><br>You can visit your site at "
4534
  msgstr ""
4535
 
4536
- #: ../profile-builder-2.0/features/functions.php:1062
4537
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4538
  msgstr ""
4539
 
4540
- #: ../profile-builder-2.0/features/functions.php:1164
4541
  msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
4542
  msgstr ""
4543
 
 
 
 
 
4544
  #: ../profile-builder-2.0/front-end/class-formbuilder.php:124
4545
  msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
4546
  msgstr ""
@@ -4605,11 +4613,11 @@ msgstr ""
4605
  msgid "Send these credentials via email."
4606
  msgstr ""
4607
 
4608
- #: ../profile-builder-2.0/front-end/class-formbuilder.php:680
4609
  msgid "User to edit:"
4610
  msgstr ""
4611
 
4612
- #: ../profile-builder-2.0/front-end/class-formbuilder.php:714
4613
  msgid "Something went wrong. Please try again!"
4614
  msgstr ""
4615
 
@@ -4929,15 +4937,15 @@ msgstr ""
4929
  msgid "Approve"
4930
  msgstr ""
4931
 
4932
- #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:167, ../profile-builder-2.0/modules/user-listing/userlisting.php:304, ../profile-builder-2.0/modules/user-listing/userlisting.php:781, ../profile-builder-2.0/modules/user-listing/userlisting.php:2286
4933
  msgid "Firstname"
4934
  msgstr ""
4935
 
4936
- #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:168, ../profile-builder-2.0/modules/user-listing/userlisting.php:784, ../profile-builder-2.0/modules/user-listing/userlisting.php:2287
4937
  msgid "Lastname"
4938
  msgstr ""
4939
 
4940
- #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:170, ../profile-builder-2.0/features/roles-editor/roles-editor.php:255, ../profile-builder-2.0/modules/user-listing/userlisting.php:159, ../profile-builder-2.0/modules/user-listing/userlisting.php:305, ../profile-builder-2.0/modules/user-listing/userlisting.php:811, ../profile-builder-2.0/modules/user-listing/userlisting.php:2291
4941
  msgid "Role"
4942
  msgstr ""
4943
 
@@ -5829,27 +5837,27 @@ msgstr ""
5829
  msgid "No Edit-profile Forms found in trash"
5830
  msgstr ""
5831
 
5832
- #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:138, ../profile-builder-2.0/modules/user-listing/userlisting.php:2177
5833
  msgid "Shortcode"
5834
  msgstr ""
5835
 
5836
- #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:159, ../profile-builder-2.0/modules/user-listing/userlisting.php:2198
5837
  msgid "(no title)"
5838
  msgstr ""
5839
 
5840
- #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:178, ../profile-builder-2.0/modules/user-listing/userlisting.php:2218
5841
  msgid "The shortcode will be available after you publish this form."
5842
  msgstr ""
5843
 
5844
- #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:180, ../profile-builder-2.0/modules/user-listing/userlisting.php:2220
5845
  msgid "Use this shortcode on the page you want the form to be displayed:"
5846
  msgstr ""
5847
 
5848
- #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:184, ../profile-builder-2.0/modules/user-listing/userlisting.php:2224
5849
  msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5850
  msgstr ""
5851
 
5852
- #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:190, ../profile-builder-2.0/modules/user-listing/userlisting.php:2257
5853
  msgid "Form Shortcode"
5854
  msgstr ""
5855
 
@@ -5961,7 +5969,7 @@ msgstr ""
5961
  msgid "After Registration..."
5962
  msgstr ""
5963
 
5964
- #: ../profile-builder-2.0/modules/repeater-field/repeater-field.php:267
5965
  msgid "Are you sure you want to delete this?"
5966
  msgstr ""
5967
 
@@ -5997,11 +6005,11 @@ msgstr ""
5997
  msgid "Display name as"
5998
  msgstr ""
5999
 
6000
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:161, ../profile-builder-2.0/modules/user-listing/userlisting.php:2285
6001
  msgid "Registration Date"
6002
  msgstr ""
6003
 
6004
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:162, ../profile-builder-2.0/modules/user-listing/userlisting.php:2290
6005
  msgid "Number of Posts"
6006
  msgstr ""
6007
 
@@ -6037,7 +6045,7 @@ msgstr ""
6037
  msgid "Search all Fields"
6038
  msgstr ""
6039
 
6040
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:227, ../profile-builder-2.0/modules/user-listing/userlisting.php:2372
6041
  msgid "Faceted Menus"
6042
  msgstr ""
6043
 
@@ -6061,11 +6069,11 @@ msgstr ""
6061
  msgid "Avatar"
6062
  msgstr ""
6063
 
6064
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:306, ../profile-builder-2.0/modules/user-listing/userlisting.php:796
6065
  msgid "Posts"
6066
  msgstr ""
6067
 
6068
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:307, ../profile-builder-2.0/modules/user-listing/userlisting.php:778
6069
  msgid "Sign-up Date"
6070
  msgstr ""
6071
 
@@ -6085,275 +6093,275 @@ msgstr ""
6085
  msgid "User not found"
6086
  msgstr ""
6087
 
6088
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:772
6089
  msgid "First/Lastname"
6090
  msgstr ""
6091
 
6092
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:787, ../profile-builder-2.0/modules/user-listing/userlisting.php:2288
6093
  msgid "Display Name"
6094
  msgstr ""
6095
 
6096
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:799, ../profile-builder-2.0/modules/user-listing/userlisting.php:2295
6097
  msgid "Aim"
6098
  msgstr ""
6099
 
6100
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:802, ../profile-builder-2.0/modules/user-listing/userlisting.php:2296
6101
  msgid "Yim"
6102
  msgstr ""
6103
 
6104
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:805, ../profile-builder-2.0/modules/user-listing/userlisting.php:2297
6105
  msgid "Jabber"
6106
  msgstr ""
6107
 
6108
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1083, ../profile-builder-2.0/modules/user-listing/userlisting.php:1543, ../profile-builder-2.0/modules/user-listing/userlisting.php:2015, ../profile-builder-2.0/modules/user-listing/userlisting.php:2492
6109
  msgid "Search Users by All Fields"
6110
  msgstr ""
6111
 
6112
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1348
6113
  msgid "Click here to see more information about this user"
6114
  msgstr ""
6115
 
6116
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1348, ../profile-builder-2.0/modules/user-listing/userlisting.php:1348
6117
  msgid "More..."
6118
  msgstr ""
6119
 
6120
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1351
6121
  msgid "Click here to see more information about this user."
6122
  msgstr ""
6123
 
6124
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1378
6125
  msgid "View Map"
6126
  msgstr ""
6127
 
6128
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1497, ../profile-builder-2.0/modules/user-listing/userlisting.php:1500
6129
  msgid "Click here to go back"
6130
  msgstr ""
6131
 
6132
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1497, ../profile-builder-2.0/modules/user-listing/userlisting.php:1497
6133
  msgid "Back"
6134
  msgstr ""
6135
 
6136
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1530
6137
  msgid "&laquo;&laquo; First"
6138
  msgstr ""
6139
 
6140
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1531
6141
  msgid "&laquo; Prev"
6142
  msgstr ""
6143
 
6144
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1532
6145
  msgid "Next &raquo; "
6146
  msgstr ""
6147
 
6148
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1533
6149
  msgid "Last &raquo;&raquo;"
6150
  msgstr ""
6151
 
6152
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1562
6153
  msgid "You don't have any pagination settings on this userlisting!"
6154
  msgstr ""
6155
 
6156
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1611
6157
  msgid "Show All"
6158
  msgstr ""
6159
 
6160
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1685
6161
  msgid "Choose..."
6162
  msgstr ""
6163
 
6164
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1774
6165
  msgid "No options available"
6166
  msgstr ""
6167
 
6168
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1923
6169
  msgid "Remove All Filters"
6170
  msgstr ""
6171
 
6172
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2032
6173
  msgid "Search"
6174
  msgstr ""
6175
 
6176
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2033
6177
  msgid "Clear Results"
6178
  msgstr ""
6179
 
6180
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2227, ../profile-builder-2.0/modules/user-listing/userlisting.php:2231
6181
  msgid "Extra shortcode parameters"
6182
  msgstr ""
6183
 
6184
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2229
6185
  msgid "View all extra shortcode parameters"
6186
  msgstr ""
6187
 
6188
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2234
6189
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
6190
  msgstr ""
6191
 
6192
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2235
6193
  msgid "Example:"
6194
  msgstr ""
6195
 
6196
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2237
6197
  msgid "Remember though, that the field-value combination must exist in the database."
6198
  msgstr ""
6199
 
6200
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2243
6201
  msgid "displays only the users that you specified the user_id for"
6202
  msgstr ""
6203
 
6204
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2249
6205
  msgid "displays all users except the ones you specified the user_id for"
6206
  msgstr ""
6207
 
6208
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2312
6209
  msgid "Random (very slow on large databases > 10K user)"
6210
  msgstr ""
6211
 
6212
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2315
6213
  msgid "Ascending"
6214
  msgstr ""
6215
 
6216
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2316
6217
  msgid "Descending"
6218
  msgstr ""
6219
 
6220
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2324
6221
  msgid "Roles to Display"
6222
  msgstr ""
6223
 
6224
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2324
6225
  msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
6226
  msgstr ""
6227
 
6228
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2325
6229
  msgid "Number of Users/Page"
6230
  msgstr ""
6231
 
6232
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2325
6233
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
6234
  msgstr ""
6235
 
6236
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2326
6237
  msgid "Default Sorting Criteria"
6238
  msgstr ""
6239
 
6240
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2326
6241
  msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
6242
  msgstr ""
6243
 
6244
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2327
6245
  msgid "Default Sorting Order"
6246
  msgstr ""
6247
 
6248
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2327
6249
  msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
6250
  msgstr ""
6251
 
6252
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2328
6253
  msgid "Avatar Size (All-userlisting)"
6254
  msgstr ""
6255
 
6256
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2328
6257
  msgid "Set the avatar size on the all-userlisting only"
6258
  msgstr ""
6259
 
6260
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2329
6261
  msgid "Avatar Size (Single-userlisting)"
6262
  msgstr ""
6263
 
6264
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2329
6265
  msgid "Set the avatar size on the single-userlisting only"
6266
  msgstr ""
6267
 
6268
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2330
6269
  msgid "Visible only to logged in users?"
6270
  msgstr ""
6271
 
6272
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2330
6273
  msgid "The userlisting will only be visible only to the logged in users"
6274
  msgstr ""
6275
 
6276
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2331
6277
  msgid "Visible to following Roles"
6278
  msgstr ""
6279
 
6280
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2331
6281
  msgid "The userlisting will only be visible to the following roles"
6282
  msgstr ""
6283
 
6284
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2337
6285
  msgid "Userlisting Settings"
6286
  msgstr ""
6287
 
6288
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2362
6289
  msgid "Label"
6290
  msgstr ""
6291
 
6292
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2362
6293
  msgid "Choose the facet name that appears on the frontend"
6294
  msgstr ""
6295
 
6296
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2363
6297
  msgid "Facet Type"
6298
  msgstr ""
6299
 
6300
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2363
6301
  msgid "Choose the facet menu type"
6302
  msgstr ""
6303
 
6304
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2364
6305
  msgid "Facet Meta"
6306
  msgstr ""
6307
 
6308
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2364
6309
  msgid "Choose the meta field for the facet menu"
6310
  msgstr ""
6311
 
6312
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2365
6313
  msgid "Behaviour"
6314
  msgstr ""
6315
 
6316
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2365
6317
  msgid "Narrow the results"
6318
  msgstr ""
6319
 
6320
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2365
6321
  msgid "Expand the results"
6322
  msgstr ""
6323
 
6324
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2365
6325
  msgid "Choose how multiple selections affect the results"
6326
  msgstr ""
6327
 
6328
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2366
6329
  msgid "Visible choices"
6330
  msgstr ""
6331
 
6332
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2366
6333
  msgid "Show a toggle link after this many choices. Leave blank for all"
6334
  msgstr ""
6335
 
6336
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2391
6337
  msgid "Search Fields"
6338
  msgstr ""
6339
 
6340
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2391
6341
  msgid "Choose the fields in which the Search Field will look in"
6342
  msgstr ""
6343
 
6344
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2396
6345
  msgid "Search Settings"
6346
  msgstr ""
6347
 
6348
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2468
6349
  msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
6350
  msgstr ""
6351
 
6352
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2468
6353
  msgid "You can find it in the Profile Builder menu."
6354
  msgstr ""
6355
 
6356
- #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2631
6357
  msgid "No results found!"
6358
  msgstr ""
6359
 
421
  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>"
422
  msgstr ""
423
 
424
+ #: ../pb-add-on-field-visibility/index.php:223, ../pb-add-on-labels-edit/pble.php:354, ../profile-builder-2.0/admin/manage-fields.php:1236, ../profile-builder-2.0/features/functions.php:783, ../profile-builder-2.0/features/functions.php:790, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:108, ../profile-builder-2.0/features/roles-editor/roles-editor.php:866, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:183, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:197, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:211, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:225, ../profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
425
  msgid "Edit"
426
  msgstr ""
427
 
428
+ #: ../pb-add-on-field-visibility/index.php:223, ../profile-builder-2.0/admin/manage-fields.php:1236, ../profile-builder-2.0/features/functions.php:776, ../profile-builder-2.0/features/functions.php:790, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:113, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218, ../profile-builder-2.0/features/roles-editor/roles-editor.php:179, ../profile-builder-2.0/features/roles-editor/roles-editor.php:884, ../profile-builder-2.0/features/roles-editor/roles-editor.php:893, ../profile-builder-2.0/features/roles-editor/roles-editor.php:904, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:183, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:197, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:211, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:225
429
  msgid "Delete"
430
  msgstr ""
431
 
453
  msgid "You do not have the capabilities necessary to edit this field."
454
  msgstr ""
455
 
456
+ #: ../pb-add-on-import-export/pbie-export.php:112
457
  msgid "Export Profile Builder options as a .json file. This allows you to easily import the configuration into another site."
458
  msgstr ""
459
 
460
+ #: ../pb-add-on-import-export/pbie-export.php:114, ../pb-add-on-import-export/pbie.php:55, ../pb-add-on-labels-edit/pble.php:318
461
  msgid "Export"
462
  msgstr ""
463
 
565
  ""
566
  msgstr ""
567
 
568
+ #: ../pb-add-on-multi-step-forms/index.php:102, ../pb-add-on-multi-step-forms/index.php:525
569
  msgid "Step"
570
  msgstr ""
571
 
581
  msgid "Publish the form to edit tabs title."
582
  msgstr ""
583
 
584
+ #: ../pb-add-on-multi-step-forms/index.php:106, ../pb-add-on-multi-step-forms/index.php:215
585
  msgid "Publish the form before adding Break Points!"
586
  msgstr ""
587
 
589
  msgid "Request in process, please wait a few seconds before a new one!"
590
  msgstr ""
591
 
592
+ #: ../pb-add-on-multi-step-forms/index.php:143
593
  msgid "Multi-Step Forms"
594
  msgstr ""
595
 
596
+ #: ../pb-add-on-multi-step-forms/index.php:187
597
  msgid "Multi-Step Forms options updated."
598
  msgstr ""
599
 
600
+ #: ../pb-add-on-multi-step-forms/index.php:192
601
  msgid "Enable on:"
602
  msgstr ""
603
 
604
+ #: ../pb-add-on-multi-step-forms/index.php:193
605
  msgid "PB Default Register Form"
606
  msgstr ""
607
 
608
+ #: ../pb-add-on-multi-step-forms/index.php:194
609
  msgid "PB Default Edit Profile Form"
610
  msgstr ""
611
 
612
+ #: ../pb-add-on-multi-step-forms/index.php:195
613
  msgid "To enable it on Multiple Registration and Edit-Profile Forms you must add Break Points in each form page."
614
  msgstr ""
615
 
616
+ #: ../pb-add-on-multi-step-forms/index.php:196, ../pb-add-on-multi-step-forms/index.php:221
617
  msgid "Pagination and Tabs:"
618
  msgstr ""
619
 
620
+ #: ../pb-add-on-multi-step-forms/index.php:197, ../pb-add-on-multi-step-forms/index.php:222
621
  msgid "Enable Pagination"
622
  msgstr ""
623
 
624
+ #: ../pb-add-on-multi-step-forms/index.php:198, ../pb-add-on-multi-step-forms/index.php:223
625
  msgid "Enable Tabs"
626
  msgstr ""
627
 
628
+ #: ../pb-add-on-multi-step-forms/index.php:198, ../pb-add-on-multi-step-forms/index.php:223
629
  msgid "Edit Tabs Title"
630
  msgstr ""
631
 
632
+ #: ../pb-add-on-multi-step-forms/index.php:200
633
  msgid "Update Multi-Step"
634
  msgstr ""
635
 
636
+ #: ../pb-add-on-multi-step-forms/index.php:220
637
  msgid "To enable MSF you must add Break Points."
638
  msgstr ""
639
 
640
+ #: ../pb-add-on-multi-step-forms/index.php:454
641
  msgid "Next"
642
  msgstr ""
643
 
644
+ #: ../pb-add-on-multi-step-forms/index.php:455
645
  msgid "Previous"
646
  msgstr ""
647
 
653
  msgid "Replace labels with placeholders:"
654
  msgstr ""
655
 
656
+ #: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:323, ../profile-builder-2.0/admin/general-settings.php:111, ../profile-builder-2.0/admin/general-settings.php:124, ../profile-builder-2.0/admin/general-settings.php:173, ../profile-builder-2.0/admin/general-settings.php:220, ../profile-builder-2.0/admin/private-website.php:58, ../profile-builder-2.0/admin/private-website.php:115, ../profile-builder-2.0/features/content-restriction/content-restriction.php:86, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230, ../profile-builder-2.0/modules/user-listing/userlisting.php:2339
657
  msgid "Yes"
658
  msgstr ""
659
 
853
  msgid "You will be redirected in 5 seconds. If not, click %%."
854
  msgstr ""
855
 
856
+ #: ../pb-add-on-social-connect/index.php:390, ../profile-builder-2.0/features/functions.php:1055
857
  msgid "here"
858
  msgstr ""
859
 
1165
  msgid "Click to edit"
1166
  msgstr ""
1167
 
1168
+ #: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:451, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, ../profile-builder-2.0/features/functions.php:769, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:403, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:395
1169
  msgid "Cancel"
1170
  msgstr ""
1171
 
1715
  msgid "Show"
1716
  msgstr ""
1717
 
1718
+ #: ../profile-builder-2.0/admin/admin-bar.php:78, ../profile-builder-2.0/modules/user-listing/userlisting.php:1621
1719
  msgid "Hide"
1720
  msgstr ""
1721
 
1739
  msgid "Very weak"
1740
  msgstr ""
1741
 
1742
+ #: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:280, ../profile-builder-2.0/features/functions.php:603, ../profile-builder-2.0/features/functions.php:627
1743
  msgid "Weak"
1744
  msgstr ""
1745
 
1746
+ #: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:281, ../profile-builder-2.0/features/functions.php:603, ../profile-builder-2.0/features/functions.php:627
1747
  msgid "Medium"
1748
  msgstr ""
1749
 
1750
+ #: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:282, ../profile-builder-2.0/features/functions.php:603, ../profile-builder-2.0/features/functions.php:627
1751
  msgid "Strong"
1752
  msgstr ""
1753
 
2223
  msgid "Username and Email"
2224
  msgstr ""
2225
 
2226
+ #: ../profile-builder-2.0/admin/general-settings.php:249, ../profile-builder-2.0/admin/manage-fields.php:242, ../profile-builder-2.0/front-end/login.php:246, ../profile-builder-2.0/front-end/login.php:260, ../profile-builder-2.0/front-end/login.php:388, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:166, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:60, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:28, ../profile-builder-2.0/modules/user-listing/userlisting.php:111, ../profile-builder-2.0/modules/user-listing/userlisting.php:303, ../profile-builder-2.0/modules/user-listing/userlisting.php:778, ../profile-builder-2.0/modules/user-listing/userlisting.php:2290
2227
  msgid "Username"
2228
  msgstr ""
2229
 
2230
+ #: ../profile-builder-2.0/admin/general-settings.php:250, ../profile-builder-2.0/front-end/login.php:385, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:29, ../profile-builder-2.0/modules/user-listing/userlisting.php:784, ../profile-builder-2.0/modules/user-listing/userlisting.php:2291
2231
  msgid "Email"
2232
  msgstr ""
2233
 
2671
  msgid "Usernames cannot be changed."
2672
  msgstr ""
2673
 
2674
+ #: ../profile-builder-2.0/admin/manage-fields.php:245, ../profile-builder-2.0/modules/user-listing/userlisting.php:817, ../profile-builder-2.0/modules/user-listing/userlisting.php:2298
2675
  msgid "Nickname"
2676
  msgstr ""
2677
 
2679
  msgid "Display name publicly as"
2680
  msgstr ""
2681
 
2682
+ #: ../profile-builder-2.0/admin/manage-fields.php:249, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:33, ../profile-builder-2.0/modules/user-listing/userlisting.php:120, ../profile-builder-2.0/modules/user-listing/userlisting.php:799, ../profile-builder-2.0/modules/user-listing/userlisting.php:2292
2683
  msgid "Website"
2684
  msgstr ""
2685
 
2695
  msgid "Jabber / Google Talk"
2696
  msgstr ""
2697
 
2698
+ #: ../profile-builder-2.0/admin/manage-fields.php:259, ../profile-builder-2.0/modules/user-listing/userlisting.php:123, ../profile-builder-2.0/modules/user-listing/userlisting.php:802, ../profile-builder-2.0/modules/user-listing/userlisting.php:2293
2699
  msgid "Biographical Info"
2700
  msgstr ""
2701
 
2723
  msgid "Blog Details"
2724
  msgstr ""
2725
 
2726
+ #: ../profile-builder-2.0/admin/manage-fields.php:322
2727
+ msgid "Select a Country"
2728
+ msgstr ""
2729
+
2730
  #: ../profile-builder-2.0/admin/manage-fields.php:323, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2731
  msgid "Afghanistan"
2732
  msgstr ""
4413
  msgid "We recommend \"<a href=\"%s\" target=\"_blank\">Custom Profile Menus</a>\" addon if you need different menu items for logged in / logged out users."
4414
  msgstr ""
4415
 
4416
+ #: ../profile-builder-2.0/admin/private-website.php:127, ../profile-builder-2.0/features/functions.php:762, ../profile-builder-2.0/features/content-restriction/content-restriction.php:159, ../profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:402, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:394
4417
  msgid "Save Changes"
4418
  msgstr ""
4419
 
4489
  msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
4490
  msgstr ""
4491
 
4492
+ #: ../profile-builder-2.0/features/functions.php:252
4493
  msgid "GDPR Checkbox"
4494
  msgstr ""
4495
 
4496
+ #: ../profile-builder-2.0/features/functions.php:252
4497
  msgid "I allow the website to collect and store the data I submit through this form."
4498
  msgstr ""
4499
 
4500
+ #: ../profile-builder-2.0/features/functions.php:577
4501
  msgid "Strength indicator"
4502
  msgstr ""
4503
 
4504
+ #: ../profile-builder-2.0/features/functions.php:603, ../profile-builder-2.0/features/functions.php:627
4505
  msgid "Very Weak"
4506
  msgstr ""
4507
 
4508
+ #: ../profile-builder-2.0/features/functions.php:617
4509
  msgid "Minimum length of %d characters."
4510
  msgstr ""
4511
 
4512
+ #: ../profile-builder-2.0/features/functions.php:628
4513
  msgid "The password must have a minimum strength of %s."
4514
  msgstr ""
4515
 
4516
+ #: ../profile-builder-2.0/features/functions.php:705
4517
  msgid "This field is required"
4518
  msgstr ""
4519
 
4520
+ #: ../profile-builder-2.0/features/functions.php:743, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:461, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:470, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:523, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:568
4521
  msgid "Please enter a (valid) reCAPTCHA value"
4522
  msgstr ""
4523
 
4524
+ #: ../profile-builder-2.0/features/functions.php:750
4525
  msgid "Incorrect phone number"
4526
  msgstr ""
4527
 
4528
+ #: ../profile-builder-2.0/features/functions.php:790, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:444, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:436
4529
  msgid "Content"
4530
  msgstr ""
4531
 
4532
+ #: ../profile-builder-2.0/features/functions.php:957
4533
  msgid "<br><br>Also, you will be able to visit your site at "
4534
  msgstr ""
4535
 
4536
+ #: ../profile-builder-2.0/features/functions.php:970
4537
  msgid "<br><br>You can visit your site at "
4538
  msgstr ""
4539
 
4540
+ #: ../profile-builder-2.0/features/functions.php:1056
4541
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4542
  msgstr ""
4543
 
4544
+ #: ../profile-builder-2.0/features/functions.php:1158
4545
  msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
4546
  msgstr ""
4547
 
4548
+ #: ../profile-builder-2.0/features/functions.php:1193
4549
+ msgid "You are not currently logged in."
4550
+ msgstr ""
4551
+
4552
  #: ../profile-builder-2.0/front-end/class-formbuilder.php:124
4553
  msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
4554
  msgstr ""
4613
  msgid "Send these credentials via email."
4614
  msgstr ""
4615
 
4616
+ #: ../profile-builder-2.0/front-end/class-formbuilder.php:681
4617
  msgid "User to edit:"
4618
  msgstr ""
4619
 
4620
+ #: ../profile-builder-2.0/front-end/class-formbuilder.php:715
4621
  msgid "Something went wrong. Please try again!"
4622
  msgstr ""
4623
 
4937
  msgid "Approve"
4938
  msgstr ""
4939
 
4940
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:167, ../profile-builder-2.0/modules/user-listing/userlisting.php:304, ../profile-builder-2.0/modules/user-listing/userlisting.php:790, ../profile-builder-2.0/modules/user-listing/userlisting.php:2295
4941
  msgid "Firstname"
4942
  msgstr ""
4943
 
4944
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:168, ../profile-builder-2.0/modules/user-listing/userlisting.php:793, ../profile-builder-2.0/modules/user-listing/userlisting.php:2296
4945
  msgid "Lastname"
4946
  msgstr ""
4947
 
4948
+ #: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:170, ../profile-builder-2.0/features/roles-editor/roles-editor.php:255, ../profile-builder-2.0/modules/user-listing/userlisting.php:159, ../profile-builder-2.0/modules/user-listing/userlisting.php:305, ../profile-builder-2.0/modules/user-listing/userlisting.php:820, ../profile-builder-2.0/modules/user-listing/userlisting.php:2300
4949
  msgid "Role"
4950
  msgstr ""
4951
 
5837
  msgid "No Edit-profile Forms found in trash"
5838
  msgstr ""
5839
 
5840
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:138, ../profile-builder-2.0/modules/user-listing/userlisting.php:2186
5841
  msgid "Shortcode"
5842
  msgstr ""
5843
 
5844
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:159, ../profile-builder-2.0/modules/user-listing/userlisting.php:2207
5845
  msgid "(no title)"
5846
  msgstr ""
5847
 
5848
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:178, ../profile-builder-2.0/modules/user-listing/userlisting.php:2227
5849
  msgid "The shortcode will be available after you publish this form."
5850
  msgstr ""
5851
 
5852
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:180, ../profile-builder-2.0/modules/user-listing/userlisting.php:2229
5853
  msgid "Use this shortcode on the page you want the form to be displayed:"
5854
  msgstr ""
5855
 
5856
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:184, ../profile-builder-2.0/modules/user-listing/userlisting.php:2233
5857
  msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5858
  msgstr ""
5859
 
5860
+ #: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:190, ../profile-builder-2.0/modules/user-listing/userlisting.php:2266
5861
  msgid "Form Shortcode"
5862
  msgstr ""
5863
 
5969
  msgid "After Registration..."
5970
  msgstr ""
5971
 
5972
+ #: ../profile-builder-2.0/modules/repeater-field/repeater-field.php:287
5973
  msgid "Are you sure you want to delete this?"
5974
  msgstr ""
5975
 
6005
  msgid "Display name as"
6006
  msgstr ""
6007
 
6008
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:161, ../profile-builder-2.0/modules/user-listing/userlisting.php:2294
6009
  msgid "Registration Date"
6010
  msgstr ""
6011
 
6012
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:162, ../profile-builder-2.0/modules/user-listing/userlisting.php:2299
6013
  msgid "Number of Posts"
6014
  msgstr ""
6015
 
6045
  msgid "Search all Fields"
6046
  msgstr ""
6047
 
6048
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:227, ../profile-builder-2.0/modules/user-listing/userlisting.php:2381
6049
  msgid "Faceted Menus"
6050
  msgstr ""
6051
 
6069
  msgid "Avatar"
6070
  msgstr ""
6071
 
6072
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:306, ../profile-builder-2.0/modules/user-listing/userlisting.php:805
6073
  msgid "Posts"
6074
  msgstr ""
6075
 
6076
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:307, ../profile-builder-2.0/modules/user-listing/userlisting.php:787
6077
  msgid "Sign-up Date"
6078
  msgstr ""
6079
 
6093
  msgid "User not found"
6094
  msgstr ""
6095
 
6096
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:781
6097
  msgid "First/Lastname"
6098
  msgstr ""
6099
 
6100
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:796, ../profile-builder-2.0/modules/user-listing/userlisting.php:2297
6101
  msgid "Display Name"
6102
  msgstr ""
6103
 
6104
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:808, ../profile-builder-2.0/modules/user-listing/userlisting.php:2304
6105
  msgid "Aim"
6106
  msgstr ""
6107
 
6108
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:811, ../profile-builder-2.0/modules/user-listing/userlisting.php:2305
6109
  msgid "Yim"
6110
  msgstr ""
6111
 
6112
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:814, ../profile-builder-2.0/modules/user-listing/userlisting.php:2306
6113
  msgid "Jabber"
6114
  msgstr ""
6115
 
6116
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1092, ../profile-builder-2.0/modules/user-listing/userlisting.php:1552, ../profile-builder-2.0/modules/user-listing/userlisting.php:2024, ../profile-builder-2.0/modules/user-listing/userlisting.php:2501
6117
  msgid "Search Users by All Fields"
6118
  msgstr ""
6119
 
6120
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1357
6121
  msgid "Click here to see more information about this user"
6122
  msgstr ""
6123
 
6124
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1357, ../profile-builder-2.0/modules/user-listing/userlisting.php:1357
6125
  msgid "More..."
6126
  msgstr ""
6127
 
6128
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1360
6129
  msgid "Click here to see more information about this user."
6130
  msgstr ""
6131
 
6132
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1387
6133
  msgid "View Map"
6134
  msgstr ""
6135
 
6136
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1506, ../profile-builder-2.0/modules/user-listing/userlisting.php:1509
6137
  msgid "Click here to go back"
6138
  msgstr ""
6139
 
6140
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1506, ../profile-builder-2.0/modules/user-listing/userlisting.php:1506
6141
  msgid "Back"
6142
  msgstr ""
6143
 
6144
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1539
6145
  msgid "&laquo;&laquo; First"
6146
  msgstr ""
6147
 
6148
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1540
6149
  msgid "&laquo; Prev"
6150
  msgstr ""
6151
 
6152
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1541
6153
  msgid "Next &raquo; "
6154
  msgstr ""
6155
 
6156
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1542
6157
  msgid "Last &raquo;&raquo;"
6158
  msgstr ""
6159
 
6160
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1571
6161
  msgid "You don't have any pagination settings on this userlisting!"
6162
  msgstr ""
6163
 
6164
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1620
6165
  msgid "Show All"
6166
  msgstr ""
6167
 
6168
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1694
6169
  msgid "Choose..."
6170
  msgstr ""
6171
 
6172
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1783
6173
  msgid "No options available"
6174
  msgstr ""
6175
 
6176
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:1932
6177
  msgid "Remove All Filters"
6178
  msgstr ""
6179
 
6180
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2041
6181
  msgid "Search"
6182
  msgstr ""
6183
 
6184
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2042
6185
  msgid "Clear Results"
6186
  msgstr ""
6187
 
6188
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2236, ../profile-builder-2.0/modules/user-listing/userlisting.php:2240
6189
  msgid "Extra shortcode parameters"
6190
  msgstr ""
6191
 
6192
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2238
6193
  msgid "View all extra shortcode parameters"
6194
  msgstr ""
6195
 
6196
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2243
6197
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
6198
  msgstr ""
6199
 
6200
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2244
6201
  msgid "Example:"
6202
  msgstr ""
6203
 
6204
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2246
6205
  msgid "Remember though, that the field-value combination must exist in the database."
6206
  msgstr ""
6207
 
6208
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2252
6209
  msgid "displays only the users that you specified the user_id for"
6210
  msgstr ""
6211
 
6212
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2258
6213
  msgid "displays all users except the ones you specified the user_id for"
6214
  msgstr ""
6215
 
6216
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2321
6217
  msgid "Random (very slow on large databases > 10K user)"
6218
  msgstr ""
6219
 
6220
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2324
6221
  msgid "Ascending"
6222
  msgstr ""
6223
 
6224
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2325
6225
  msgid "Descending"
6226
  msgstr ""
6227
 
6228
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2333
6229
  msgid "Roles to Display"
6230
  msgstr ""
6231
 
6232
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2333
6233
  msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
6234
  msgstr ""
6235
 
6236
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2334
6237
  msgid "Number of Users/Page"
6238
  msgstr ""
6239
 
6240
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2334
6241
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
6242
  msgstr ""
6243
 
6244
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2335
6245
  msgid "Default Sorting Criteria"
6246
  msgstr ""
6247
 
6248
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2335
6249
  msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
6250
  msgstr ""
6251
 
6252
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2336
6253
  msgid "Default Sorting Order"
6254
  msgstr ""
6255
 
6256
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2336
6257
  msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
6258
  msgstr ""
6259
 
6260
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2337
6261
  msgid "Avatar Size (All-userlisting)"
6262
  msgstr ""
6263
 
6264
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2337
6265
  msgid "Set the avatar size on the all-userlisting only"
6266
  msgstr ""
6267
 
6268
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2338
6269
  msgid "Avatar Size (Single-userlisting)"
6270
  msgstr ""
6271
 
6272
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2338
6273
  msgid "Set the avatar size on the single-userlisting only"
6274
  msgstr ""
6275
 
6276
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2339
6277
  msgid "Visible only to logged in users?"
6278
  msgstr ""
6279
 
6280
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2339
6281
  msgid "The userlisting will only be visible only to the logged in users"
6282
  msgstr ""
6283
 
6284
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2340
6285
  msgid "Visible to following Roles"
6286
  msgstr ""
6287
 
6288
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2340
6289
  msgid "The userlisting will only be visible to the following roles"
6290
  msgstr ""
6291
 
6292
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2346
6293
  msgid "Userlisting Settings"
6294
  msgstr ""
6295
 
6296
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2371
6297
  msgid "Label"
6298
  msgstr ""
6299
 
6300
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2371
6301
  msgid "Choose the facet name that appears on the frontend"
6302
  msgstr ""
6303
 
6304
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2372
6305
  msgid "Facet Type"
6306
  msgstr ""
6307
 
6308
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2372
6309
  msgid "Choose the facet menu type"
6310
  msgstr ""
6311
 
6312
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2373
6313
  msgid "Facet Meta"
6314
  msgstr ""
6315
 
6316
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2373
6317
  msgid "Choose the meta field for the facet menu"
6318
  msgstr ""
6319
 
6320
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2374
6321
  msgid "Behaviour"
6322
  msgstr ""
6323
 
6324
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2374
6325
  msgid "Narrow the results"
6326
  msgstr ""
6327
 
6328
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2374
6329
  msgid "Expand the results"
6330
  msgstr ""
6331
 
6332
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2374
6333
  msgid "Choose how multiple selections affect the results"
6334
  msgstr ""
6335
 
6336
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2375
6337
  msgid "Visible choices"
6338
  msgstr ""
6339
 
6340
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2375
6341
  msgid "Show a toggle link after this many choices. Leave blank for all"
6342
  msgstr ""
6343
 
6344
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2400
6345
  msgid "Search Fields"
6346
  msgstr ""
6347
 
6348
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2400
6349
  msgid "Choose the fields in which the Search Field will look in"
6350
  msgstr ""
6351
 
6352
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2405
6353
  msgid "Search Settings"
6354
  msgstr ""
6355
 
6356
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2477
6357
  msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
6358
  msgstr ""
6359
 
6360
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2477
6361
  msgid "You can find it in the Profile Builder menu."
6362
  msgstr ""
6363
 
6364
+ #: ../profile-builder-2.0/modules/user-listing/userlisting.php:2640
6365
  msgid "No results found!"
6366
  msgstr ""
6367