User registration & user profile – Profile Builder - Version 3.5.5

Version Description

  • Fix: Don't show required asterisk for password fields on the edit profile form
  • Fix: A display issue for the Show Password toggle on Repeat Password fields
  • Fix: Strings changed through Labels Edit are now only changed in the front-end
Download this release

Release Info

Developer raster02
Plugin Icon 128x128 User registration & user profile – Profile Builder
Version 3.5.5
Comparing to
See all releases

Code changes from version 3.5.4 to 3.5.5

add-ons-free/labels-edit/labels-edit.php CHANGED
@@ -121,6 +121,9 @@ add_action( 'admin_notices', 'wppb_le_rescan_success_message' );
121
  * @link http://codex.wordpress.org/Plugin_API/Filter_Reference/gettext
122
  */
123
  function wppb_le_text_strings( $translated_text, $text, $domain ) {
 
 
 
124
  $edited_labels = get_option( 'pble' );
125
 
126
  if( empty( $edited_labels ) || $edited_labels === 'not_set' ) {
@@ -140,6 +143,9 @@ function wppb_le_text_strings( $translated_text, $text, $domain ) {
140
  add_filter( 'gettext', 'wppb_le_text_strings', 8, 3 );
141
 
142
  function wppb_le_ngettext_strings( $translated_text, $single, $plural, $number, $domain ){
 
 
 
143
  if( $domain != 'profile-builder' )
144
  return $translated_text;
145
 
121
  * @link http://codex.wordpress.org/Plugin_API/Filter_Reference/gettext
122
  */
123
  function wppb_le_text_strings( $translated_text, $text, $domain ) {
124
+ if( is_admin() )
125
+ return $translated_text;
126
+
127
  $edited_labels = get_option( 'pble' );
128
 
129
  if( empty( $edited_labels ) || $edited_labels === 'not_set' ) {
143
  add_filter( 'gettext', 'wppb_le_text_strings', 8, 3 );
144
 
145
  function wppb_le_ngettext_strings( $translated_text, $single, $plural, $number, $domain ){
146
+ if( is_admin() )
147
+ return $translated_text;
148
+
149
  if( $domain != 'profile-builder' )
150
  return $translated_text;
151
 
assets/lib/wck-api/wordpress-creation-kit.php CHANGED
@@ -498,7 +498,7 @@ class Wordpress_Creation_Kit_PB{
498
  } elseif ( $details['type'] == 'checkbox' && is_array( $value ) ){
499
  $display_value = implode( ', ', $value );
500
  } elseif ( $details['type'] == 'select' || $details['type'] === 'select-2' ){
501
- if ( $details['slug'] === 'pble-label' ){
502
  $display_value = '<pre>' . self::wck_get_entry_field_select( $value, $details ) . '</pre>';
503
  } else {
504
  $display_value = '<pre>' . __(self::wck_get_entry_field_select( $value, $details ), 'profile-builder') . '</pre>'; //phpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralText
498
  } elseif ( $details['type'] == 'checkbox' && is_array( $value ) ){
499
  $display_value = implode( ', ', $value );
500
  } elseif ( $details['type'] == 'select' || $details['type'] === 'select-2' ){
501
+ if ( $details['slug'] === 'pble-label' || $details['slug'] === 'field'){
502
  $display_value = '<pre>' . self::wck_get_entry_field_select( $value, $details ) . '</pre>';
503
  } else {
504
  $display_value = '<pre>' . __(self::wck_get_entry_field_select( $value, $details ), 'profile-builder') . '</pre>'; //phpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralText
assets/misc/elementor/widgets/class-pb-widget-base.php CHANGED
@@ -310,7 +310,7 @@ abstract class PB_Elementor_Widget extends \Elementor\Widget_Base {
310
  'logout_redirect_url' => $settings['pb_after_logout_redirect_url'],
311
  'register_url' => $settings['pb_register_url'],
312
  'lostpassword_url' => $settings['pb_lostpassword_url'],
313
- 'show_2fa_field' => $settings['pb_auth_field'],
314
  ];
315
  return wppb_front_end_login( $atts );
316
  case 'rp':
310
  'logout_redirect_url' => $settings['pb_after_logout_redirect_url'],
311
  'register_url' => $settings['pb_register_url'],
312
  'lostpassword_url' => $settings['pb_lostpassword_url'],
313
+ 'show_2fa_field' => isset( $settings['pb_auth_field'] ) ? $settings['pb_auth_field'] : false,
314
  ];
315
  return wppb_front_end_login( $atts );
316
  case 'rp':
features/functions.php CHANGED
@@ -888,21 +888,20 @@ function wppb_enqueue_password_visibility_toggle() {
888
  ?>
889
  <script type="text/javascript">
890
  jQuery( document ).ready( function() {
891
- jQuery( "button.wppb-toggle-pw" ).on( "click", wppb_password_visibility_toggle );
892
 
893
- var toggle = jQuery( 'button.wppb-toggle-pw' )
894
 
895
- if( toggle.length > 0 ){
896
 
897
- var parent = toggle.parent()
898
 
899
- if( parent.hasClass( 'wppb-form-field' ) && jQuery( '.wppb-description-delimiter', parent ) ){
900
 
901
- toggle.css( 'top', parseInt( toggle.css('top') ) - ( jQuery( '.wppb-description-delimiter', parent ).outerHeight() / 2 ) )
902
 
903
- }
904
 
905
- }
906
 
907
  });
908
  function wppb_password_visibility_toggle() {
888
  ?>
889
  <script type="text/javascript">
890
  jQuery( document ).ready( function() {
 
891
 
892
+ jQuery( "button.wppb-toggle-pw" ).on( "click", wppb_password_visibility_toggle );
893
 
894
+ jQuery( 'button.wppb-toggle-pw' ).each( function( index, toggle ){
895
 
896
+ var parent = jQuery( toggle ).parent()
897
 
898
+ if( parent.hasClass( 'wppb-form-field' ) && jQuery( '.wppb-description-delimiter', parent ) ){
899
 
900
+ jQuery( toggle ).css( 'top', parseInt( jQuery( toggle ).css('top') ) - ( jQuery( '.wppb-description-delimiter', parent ).outerHeight() / 2 ) )
901
 
902
+ }
903
 
904
+ })
905
 
906
  });
907
  function wppb_password_visibility_toggle() {
front-end/default-fields/password-repeat/password-repeat.php CHANGED
@@ -7,7 +7,7 @@ function wppb_password_repeat_handler( $output, $form_location, $field, $user_id
7
  $item_description = wppb_icl_t( 'plugin profile-builder-pro', 'default_field_'.$field['id'].'_description_translation', $field['description'] );
8
 
9
  if ( $form_location != 'back_end' ){
10
- $error_mark = ( ( $field['required'] == 'Yes' ) ? '<span class="wppb-required" title="'.wppb_required_field_error($field["field-title"]).'">*</span>' : '' );
11
 
12
  if ( array_key_exists( $field['id'], $field_check_errors ) )
13
  $error_mark = '<img src="'.WPPB_PLUGIN_URL.'assets/images/pencil_delete.png" title="'.wppb_required_field_error($field["field-title"]).'"/>';
7
  $item_description = wppb_icl_t( 'plugin profile-builder-pro', 'default_field_'.$field['id'].'_description_translation', $field['description'] );
8
 
9
  if ( $form_location != 'back_end' ){
10
+ $error_mark = ( ( $field['required'] == 'Yes' ) ? ( $form_location != 'edit_profile' ? '<span class="wppb-required" title="'.wppb_required_field_error($field["field-title"]).'">*</span>' : '' ) : '' );
11
 
12
  if ( array_key_exists( $field['id'], $field_check_errors ) )
13
  $error_mark = '<img src="'.WPPB_PLUGIN_URL.'assets/images/pencil_delete.png" title="'.wppb_required_field_error($field["field-title"]).'"/>';
front-end/default-fields/password/password.php CHANGED
@@ -9,7 +9,7 @@ function wppb_password_handler( $output, $form_location, $field, $user_id, $fiel
9
  $item_description = wppb_icl_t( 'plugin profile-builder-pro', 'default_field_'.$field['id'].'_description_translation', $field['description'] );
10
 
11
  if ( $form_location != 'back_end' ){
12
- $error_mark = ( ( $field['required'] == 'Yes' ) ? '<span class="wppb-required" title="'.wppb_required_field_error($field["field-title"]).'">*</span>' : '' );
13
 
14
  if ( array_key_exists( $field['id'], $field_check_errors ) )
15
  $error_mark = '<img src="'.WPPB_PLUGIN_URL.'assets/images/pencil_delete.png" title="'.wppb_required_field_error($field["field-title"]).'"/>';
9
  $item_description = wppb_icl_t( 'plugin profile-builder-pro', 'default_field_'.$field['id'].'_description_translation', $field['description'] );
10
 
11
  if ( $form_location != 'back_end' ){
12
+ $error_mark = ( ( $field['required'] == 'Yes' ) ? ( $form_location != 'edit_profile' ? '<span class="wppb-required" title="'.wppb_required_field_error($field["field-title"]).'">*</span>' : '' ) : '' );
13
 
14
  if ( array_key_exists( $field['id'], $field_check_errors ) )
15
  $error_mark = '<img src="'.WPPB_PLUGIN_URL.'assets/images/pencil_delete.png" title="'.wppb_required_field_error($field["field-title"]).'"/>';
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.5.4
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
@@ -70,7 +70,7 @@ function wppb_free_plugin_init() {
70
  *
71
  *
72
  */
73
- define('PROFILE_BUILDER_VERSION', '3.5.4' );
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__));
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.5.5
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
70
  *
71
  *
72
  */
73
+ define('PROFILE_BUILDER_VERSION', '3.5.5' );
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__));
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
4
  Tags: user registration, user profile, registration, profile, user registration form, 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: 5.8.0
7
- Stable tag: 3.5.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -176,6 +176,11 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
176
  15. Edit or Add New User Role
177
 
178
  == Changelog ==
 
 
 
 
 
179
  = 3.5.4 =
180
  * Feature: Improved login error when an user with an unconfirmed email address is trying to login
181
  * Feature: Added the ability resend the email confirmation from the login error message
4
  Tags: user registration, user profile, registration, profile, user registration form, 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: 5.8.0
7
+ Stable tag: 3.5.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
176
  15. Edit or Add New User Role
177
 
178
  == Changelog ==
179
+ = 3.5.5 =
180
+ * Fix: Don't show required asterisk for password fields on the edit profile form
181
+ * Fix: A display issue for the Show Password toggle on Repeat Password fields
182
+ * Fix: Strings changed through Labels Edit are now only changed in the front-end
183
+
184
  = 3.5.4 =
185
  * Feature: Improved login error when an user with an unconfirmed email address is trying to login
186
  * Feature: Added the ability resend the email confirmation from the login error message
translation/profile-builder.catalog.php CHANGED
@@ -546,7 +546,7 @@
546
  <?php __("Avatar Size", "profile-builder"); ?>
547
  <?php __("Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100", "profile-builder"); ?>
548
  <?php __("Date-format", "profile-builder"); ?>
549
- <?php __("Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, mm/yy, mm/dd, dd/mm, @<br/>If not specified, defaults to mm/dd/yy", "profile-builder"); ?>
550
  <?php __("Terms of Agreement", "profile-builder"); ?>
551
  <?php __("Enter a detailed description of the terms of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;", "profile-builder"); ?>
552
  <?php __("Options", "profile-builder"); ?>
@@ -1160,7 +1160,10 @@
1160
  <?php __("Username or Email Address", "profile-builder"); ?>
1161
  <?php __("Remember Me", "profile-builder"); ?>
1162
  <?php __("Log In", "profile-builder"); ?>
 
 
1163
  <?php __("ERROR", "profile-builder"); ?>
 
1164
  <?php __("The password field is empty.", "profile-builder"); ?>
1165
  <?php __("The password you entered is incorrect.", "profile-builder"); ?>
1166
  <?php __("The username field is empty", "profile-builder"); ?>
@@ -1411,7 +1414,6 @@
1411
  <?php __("Yim", "profile-builder"); ?>
1412
  <?php __("Aim", "profile-builder"); ?>
1413
  <?php __("Display Name", "profile-builder"); ?>
1414
- <?php __("Lastname", "profile-builder"); ?>
1415
  <?php __("First/Lastname", "profile-builder"); ?>
1416
  <?php __("Search Users by All Fields", "profile-builder"); ?>
1417
  <?php __("Click here to see more information about this user.", "profile-builder"); ?>
@@ -1438,6 +1440,7 @@
1438
  <?php __("Remember though, that the field-value combination must exist in the database.", "profile-builder"); ?>
1439
  <?php __("displays only the users that you specified the user_id for", "profile-builder"); ?>
1440
  <?php __("displays all users except the ones you specified the user_id for", "profile-builder"); ?>
 
1441
  <?php __("Random (very slow on large databases > 10K user)", "profile-builder"); ?>
1442
  <?php __("Ascending", "profile-builder"); ?>
1443
  <?php __("Descending", "profile-builder"); ?>
@@ -1532,6 +1535,8 @@
1532
  <?php __("Profile Builder Content Restriction", "profile-builder"); ?>
1533
  <?php __("Restrict to logged in users", "profile-builder"); ?>
1534
  <?php __("Allow only logged in users to see this content.", "profile-builder"); ?>
 
 
1535
  <?php __("Restrict by User Roles", "profile-builder"); ?>
1536
  <?php __("Allow users which have the specified role to see this content.", "profile-builder"); ?>
1537
  <?php __("Restriction Messages", "profile-builder"); ?>
@@ -1662,17 +1667,9 @@
1662
  <?php __("Activate the Authenticator functionality", "profile-builder"); ?>
1663
  <?php __("Enable Authenticator for these user roles", "profile-builder"); ?>
1664
  <?php __("\"*\" - Two-Factor Authentication will be enabled for all user roles.", "profile-builder"); ?>
1665
- <?php __("Show Authenticator code field", "profile-builder"); ?>
1666
- <?php __("Backend", "profile-builder"); ?>
1667
- <?php __("Frontend", "profile-builder"); ?>
1668
- <?php __("Everywhere", "profile-builder"); ?>
1669
- <?php __("\"No\" - only show the field when a user that has Two-Factor Authentication enabled attempts to log in.", "profile-builder"); ?>
1670
- <?php __("\"Backend\" - always show the field on the default backend form.", "profile-builder"); ?>
1671
- <?php __("\"Frontend\" - always show the field on the Profile Builder frontend form.", "profile-builder"); ?>
1672
- <?php __("\"Everywhere\" - always show the field both on the Profile Builder frontend form and on the default backend form.", "profile-builder"); ?>
1673
  <?php __("2fa_settings", "profile-builder"); ?>
1674
  <?php __("Relaxed Mode", "profile-builder"); ?>
1675
- <?php __(" Allow for higher time drifting on your phone clock ( &#177;4 min ).", "profile-builder"); ?>
1676
  <?php __("Description that you'll see in the Authenticator app.", "profile-builder"); ?>
1677
  <?php __("Secret", "profile-builder"); ?>
1678
  <?php __("New Secret", "profile-builder"); ?>
@@ -1680,15 +1677,12 @@
1680
  <?php __("Scan this with the Authenticator app:", "profile-builder"); ?>
1681
  <?php __("Verify TOTP", "profile-builder"); ?>
1682
  <?php __("Check", "profile-builder"); ?>
1683
- <?php __(" Allow for more time drifting on your phone clock ( &#177;4 min ).", "profile-builder"); ?>
1684
  <?php __("Description that you'll see in the Authenticator app on your phone.", "profile-builder"); ?>
1685
  <?php __("Create new secret", "profile-builder"); ?>
1686
  <?php __("Show/Hide QR code", "profile-builder"); ?>
1687
- <?php __("Scan this your Authenticator app:", "profile-builder"); ?>
1688
  <?php __("Please verify TOTP to change Two-Factor Authentication settings", "profile-builder"); ?>
1689
- <?php __("Please enter your Authenticator code.", "profile-builder"); ?>
1690
- <?php __("Your Authenticator code was incorrect. Please try again.", "profile-builder"); ?>
1691
  <?php __("Please enter the code from your Authenticator app.", "profile-builder"); ?>
 
1692
  <?php __("Authenticator Code", "profile-builder"); ?>
1693
  <?php __("The usernames cannot be changed.", "profile-builder"); ?>
1694
  <?php __("This Profile Builder add-on has been migrated to the main plugin and is no longer used. You can delete it.", "profile-builder"); ?>
@@ -1890,3 +1884,13 @@
1890
  <?php __("Redirect after Registration", "profile-builder"); ?>
1891
  <?php __("Redirect after Logout", "profile-builder"); ?>
1892
  <?php __("There are no available controls for the Password Recovery form", "profile-builder"); ?>
 
 
 
 
 
 
 
 
 
 
546
  <?php __("Avatar Size", "profile-builder"); ?>
547
  <?php __("Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100", "profile-builder"); ?>
548
  <?php __("Date-format", "profile-builder"); ?>
549
+ <?php __("Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, mm/yy, mm/dd, dd/mm, @<br/>If not specified, defaults to mm/dd/yy<br/>ATTENTION: if you plan to use this field for sorting, please make sure to use year first, then month, and day last.", "profile-builder"); ?>
550
  <?php __("Terms of Agreement", "profile-builder"); ?>
551
  <?php __("Enter a detailed description of the terms of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;", "profile-builder"); ?>
552
  <?php __("Options", "profile-builder"); ?>
1160
  <?php __("Username or Email Address", "profile-builder"); ?>
1161
  <?php __("Remember Me", "profile-builder"); ?>
1162
  <?php __("Log In", "profile-builder"); ?>
1163
+ <?php __("SUCCESS", "profile-builder"); ?>
1164
+ <?php __("Activation email sent to %s", "profile-builder"); ?>
1165
  <?php __("ERROR", "profile-builder"); ?>
1166
+ <?php __("You need to confirm your Email Address before logging in! To resend the Confirmation Email %1$sclick here%2$s", "profile-builder"); ?>
1167
  <?php __("The password field is empty.", "profile-builder"); ?>
1168
  <?php __("The password you entered is incorrect.", "profile-builder"); ?>
1169
  <?php __("The username field is empty", "profile-builder"); ?>
1414
  <?php __("Yim", "profile-builder"); ?>
1415
  <?php __("Aim", "profile-builder"); ?>
1416
  <?php __("Display Name", "profile-builder"); ?>
 
1417
  <?php __("First/Lastname", "profile-builder"); ?>
1418
  <?php __("Search Users by All Fields", "profile-builder"); ?>
1419
  <?php __("Click here to see more information about this user.", "profile-builder"); ?>
1440
  <?php __("Remember though, that the field-value combination must exist in the database.", "profile-builder"); ?>
1441
  <?php __("displays only the users that you specified the user_id for", "profile-builder"); ?>
1442
  <?php __("displays all users except the ones you specified the user_id for", "profile-builder"); ?>
1443
+ <?php __("Lastname", "profile-builder"); ?>
1444
  <?php __("Random (very slow on large databases > 10K user)", "profile-builder"); ?>
1445
  <?php __("Ascending", "profile-builder"); ?>
1446
  <?php __("Descending", "profile-builder"); ?>
1535
  <?php __("Profile Builder Content Restriction", "profile-builder"); ?>
1536
  <?php __("Restrict to logged in users", "profile-builder"); ?>
1537
  <?php __("Allow only logged in users to see this content.", "profile-builder"); ?>
1538
+ <?php __("Restrict to logged out users", "profile-builder"); ?>
1539
+ <?php __("Allow only logged out users to see this content.", "profile-builder"); ?>
1540
  <?php __("Restrict by User Roles", "profile-builder"); ?>
1541
  <?php __("Allow users which have the specified role to see this content.", "profile-builder"); ?>
1542
  <?php __("Restriction Messages", "profile-builder"); ?>
1667
  <?php __("Activate the Authenticator functionality", "profile-builder"); ?>
1668
  <?php __("Enable Authenticator for these user roles", "profile-builder"); ?>
1669
  <?php __("\"*\" - Two-Factor Authentication will be enabled for all user roles.", "profile-builder"); ?>
 
 
 
 
 
 
 
 
1670
  <?php __("2fa_settings", "profile-builder"); ?>
1671
  <?php __("Relaxed Mode", "profile-builder"); ?>
1672
+ <?php __("Allow for more time drift on your phone clock ( &#177;4 min ).", "profile-builder"); ?>
1673
  <?php __("Description that you'll see in the Authenticator app.", "profile-builder"); ?>
1674
  <?php __("Secret", "profile-builder"); ?>
1675
  <?php __("New Secret", "profile-builder"); ?>
1677
  <?php __("Scan this with the Authenticator app:", "profile-builder"); ?>
1678
  <?php __("Verify TOTP", "profile-builder"); ?>
1679
  <?php __("Check", "profile-builder"); ?>
 
1680
  <?php __("Description that you'll see in the Authenticator app on your phone.", "profile-builder"); ?>
1681
  <?php __("Create new secret", "profile-builder"); ?>
1682
  <?php __("Show/Hide QR code", "profile-builder"); ?>
 
1683
  <?php __("Please verify TOTP to change Two-Factor Authentication settings", "profile-builder"); ?>
 
 
1684
  <?php __("Please enter the code from your Authenticator app.", "profile-builder"); ?>
1685
+ <?php __("Your Authenticator code was incorrect. Please try again.", "profile-builder"); ?>
1686
  <?php __("Authenticator Code", "profile-builder"); ?>
1687
  <?php __("The usernames cannot be changed.", "profile-builder"); ?>
1688
  <?php __("This Profile Builder add-on has been migrated to the main plugin and is no longer used. You can delete it.", "profile-builder"); ?>
1884
  <?php __("Redirect after Registration", "profile-builder"); ?>
1885
  <?php __("Redirect after Logout", "profile-builder"); ?>
1886
  <?php __("There are no available controls for the Password Recovery form", "profile-builder"); ?>
1887
+ <?php __("Listing Settings", "profile-builder"); ?>
1888
+ <?php __("Single", "profile-builder"); ?>
1889
+ <?php __("Meta Key", "profile-builder"); ?>
1890
+ <?php __("Enter Meta Key", "profile-builder"); ?>
1891
+ <?php __("Meta Value", "profile-builder"); ?>
1892
+ <?php __("Enter Meta Value", "profile-builder"); ?>
1893
+ <?php __("Include", "profile-builder"); ?>
1894
+ <?php __("Enter User IDs", "profile-builder"); ?>
1895
+ <?php __("Exclude", "profile-builder"); ?>
1896
+ <?php __("Enter User ID", "profile-builder"); ?>
translation/profile-builder.pot CHANGED
@@ -25,7 +25,7 @@ msgstr ""
25
  msgid "Choose (Single) User Listing to display under bbPress user Profile tab:"
26
  msgstr ""
27
 
28
- #: ../pb-add-on-bbpress/bbpress-page.php:82, ../pb-add-on-bbpress/bbpress-page.php:117, ../pb-add-on-woocommerce/woosync-page.php:80, ../pb-add-on-woocommerce/woosync-page.php:115, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:232, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:307, add-ons/user-listing/userlisting.php:583, add-ons/user-listing/userlisting.php:580, add-ons/user-listing/userlisting.php:578, add-ons/user-listing/userlisting.php:561, add-ons/user-listing/userlisting.php:558, add-ons/user-listing/userlisting.php:556, features/content-restriction/content-restriction.php:136
29
  msgid "None"
30
  msgstr ""
31
 
@@ -49,11 +49,11 @@ msgstr ""
49
  msgid "Replace bbPress Login form:"
50
  msgstr ""
51
 
52
- #: ../pb-add-on-bbpress/bbpress-page.php:152, ../pb-add-on-social-connect/index.php:327, admin/general-settings.php:158, admin/general-settings.php:173, admin/general-settings.php:222, admin/general-settings.php:267, admin/private-website.php:69, admin/private-website.php:136, admin/private-website.php:151, 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, features/content-restriction/content-restriction.php:88, features/two-factor-authentication/class-two-factor-authentication.php:112, features/two-factor-authentication/class-two-factor-authentication.php:146, admin/advanced-settings/includes/forms/placeholder-labels.php:136, assets/misc/elementor/widgets/class-pb-widget-l.php:76, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:180
53
  msgid "No"
54
  msgstr ""
55
 
56
- #: ../pb-add-on-bbpress/bbpress-page.php:153, ../pb-add-on-social-connect/index.php:326, admin/general-settings.php:144, admin/general-settings.php:157, admin/general-settings.php:172, admin/general-settings.php:221, admin/general-settings.php:268, admin/manage-fields.php:193, admin/private-website.php:70, admin/private-website.php:137, admin/private-website.php:150, 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:2451, features/content-restriction/content-restriction.php:89, features/two-factor-authentication/class-two-factor-authentication.php:113, admin/advanced-settings/includes/forms/placeholder-labels.php:135, 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-admin.php:100, 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:260, admin/advanced-settings/includes/views/view-fields.php:277, admin/advanced-settings/includes/views/view-fields.php:295, 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:253, admin/advanced-settings/includes/views/view-forms.php:274, admin/advanced-settings/includes/views/view-forms.php:294, admin/advanced-settings/includes/views/view-forms.php:316, admin/advanced-settings/includes/views/view-forms.php:338, admin/advanced-settings/includes/views/view-forms.php:358, 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, assets/misc/elementor/widgets/class-pb-widget-l.php:75, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:179
57
  msgid "Yes"
58
  msgstr ""
59
 
@@ -377,7 +377,7 @@ msgstr ""
377
  msgid "Edit Profile"
378
  msgstr ""
379
 
380
- #: ../pb-add-on-custom-profile-menus/index.php:311, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, front-end/class-formbuilder.php:464, front-end/login.php:494, assets/misc/elementor/widgets/class-pb-widget-rf.php:32
381
  msgid "Register"
382
  msgstr ""
383
 
@@ -757,7 +757,7 @@ msgstr ""
757
  msgid "You will be redirected in 5 seconds. If not, click %%."
758
  msgstr ""
759
 
760
- #: ../pb-add-on-social-connect/index.php:394, features/functions.php:1339
761
  msgid "here"
762
  msgstr ""
763
 
@@ -797,27 +797,27 @@ msgstr ""
797
  msgid "Please enter your Twitter email!"
798
  msgstr ""
799
 
800
- #: ../pb-add-on-social-connect/index.php:722
801
  msgid "Profile Builder not active!"
802
  msgstr ""
803
 
804
- #: ../pb-add-on-social-connect/index.php:871, admin/admin-functions.php:38, admin/general-settings.php:11
805
  msgid "General Settings"
806
  msgstr ""
807
 
808
- #: ../pb-add-on-social-connect/index.php:875
809
  msgid "Application Settings"
810
  msgstr ""
811
 
812
- #: ../pb-add-on-social-connect/index.php:879
813
  msgid "Appearance Settings"
814
  msgstr ""
815
 
816
- #: ../pb-add-on-social-connect/index.php:943
817
  msgid "Unlink"
818
  msgstr ""
819
 
820
- #: ../pb-add-on-social-connect/index.php:950
821
  msgid "Your account is linked with:"
822
  msgstr ""
823
 
@@ -825,11 +825,11 @@ msgstr ""
825
  msgid "Country"
826
  msgstr ""
827
 
828
- #: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, admin/manage-fields.php:334, admin/advanced-settings/includes/views/view-fields.php:127
829
  msgid "First Name"
830
  msgstr ""
831
 
832
- #: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, admin/manage-fields.php:335, admin/advanced-settings/includes/views/view-fields.php:133
833
  msgid "Last Name"
834
  msgstr ""
835
 
@@ -1050,7 +1050,7 @@ msgstr ""
1050
  msgid "Edit this item"
1051
  msgstr ""
1052
 
1053
- #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:1028, features/roles-editor/roles-editor.php:181, assets/lib/wck-api/wordpress-creation-kit.php:406
1054
  msgid "Cancel"
1055
  msgstr ""
1056
 
@@ -1294,7 +1294,7 @@ msgstr ""
1294
  msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
1295
  msgstr ""
1296
 
1297
- #: admin/add-ons.php:59, admin/basic-info.php:160, add-ons/user-listing/userlisting.php:11, add-ons/user-listing/userlisting.php:12, add-ons/user-listing/userlisting.php:17, add-ons/user-listing/userlisting.php:23
1298
  msgid "User Listing"
1299
  msgstr ""
1300
 
@@ -1530,11 +1530,11 @@ msgstr ""
1530
  msgid "Show"
1531
  msgstr ""
1532
 
1533
- #: admin/admin-bar.php:81, add-ons/user-listing/userlisting.php:1704
1534
  msgid "Hide"
1535
  msgstr ""
1536
 
1537
- #: admin/admin-bar.php:92, admin/general-settings.php:341, admin/private-website.php:162, admin/register-version.php:96, features/functions.php:1021, features/content-restriction/content-restriction.php:162, features/two-factor-authentication/class-two-factor-authentication.php:162, assets/lib/class-mustache-templates/class-mustache-templates.php:392, assets/lib/wck-api/wordpress-creation-kit.php:405, admin/advanced-settings/includes/views/view-admin.php:112, admin/advanced-settings/includes/views/view-fields.php:309, admin/advanced-settings/includes/views/view-forms.php:374, admin/advanced-settings/includes/views/view-shortcodes.php:77, admin/advanced-settings/includes/views/view-userlisting.php:91
1538
  msgid "Save Changes"
1539
  msgstr ""
1540
 
@@ -1942,7 +1942,7 @@ msgstr ""
1942
  msgid "Private Website"
1943
  msgstr ""
1944
 
1945
- #: admin/general-settings.php:15, features/two-factor-authentication/class-two-factor-authentication.php:61, features/two-factor-authentication/class-two-factor-authentication.php:61, features/two-factor-authentication/class-two-factor-authentication.php:181, features/two-factor-authentication/class-two-factor-authentication.php:182, features/two-factor-authentication/class-two-factor-authentication.php:235
1946
  msgid "Two-Factor Authentication"
1947
  msgstr ""
1948
 
@@ -2062,11 +2062,11 @@ msgstr ""
2062
  msgid "Username and Email"
2063
  msgstr ""
2064
 
2065
- #: admin/general-settings.php:297, admin/manage-fields.php:333, front-end/login.php:263, front-end/login.php:277, front-end/login.php:449, 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:2405, features/admin-approval/class-admin-approval.php:174, features/email-confirmation/class-email-confirmation.php:168, admin/advanced-settings/includes/views/view-fields.php:121
2066
  msgid "Username"
2067
  msgstr ""
2068
 
2069
- #: admin/general-settings.php:298, front-end/login.php:446, 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:2406, features/admin-approval/class-admin-approval.php:177, features/email-confirmation/class-email-confirmation.php:169, admin/advanced-settings/includes/shortcodes/resend-activation.php:9
2070
  msgid "Email"
2071
  msgstr ""
2072
 
@@ -2146,7 +2146,7 @@ msgstr ""
2146
  msgid "Meta-name"
2147
  msgstr ""
2148
 
2149
- #: admin/manage-fields.php:189, add-ons/custom-redirects/custom_redirects_admin.php:69, add-ons/custom-redirects/custom_redirects_admin.php:99, add-ons/custom-redirects/custom_redirects_admin.php:118, add-ons/custom-redirects/custom_redirects_admin.php:143, add-ons/multiple-forms/edit-profile-forms.php:246, add-ons/multiple-forms/register-forms.php:267
2150
  msgid "ID"
2151
  msgstr ""
2152
 
@@ -2154,7 +2154,7 @@ msgstr ""
2154
  msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
2155
  msgstr ""
2156
 
2157
- #: admin/manage-fields.php:190, features/two-factor-authentication/class-two-factor-authentication.php:247, features/two-factor-authentication/class-two-factor-authentication.php:354
2158
  msgid "Description"
2159
  msgstr ""
2160
 
@@ -2207,7 +2207,7 @@ msgid "Date-format"
2207
  msgstr ""
2208
 
2209
  #: admin/manage-fields.php:196
2210
- msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, mm/yy, mm/dd, dd/mm, @<br/>If not specified, defaults to mm/dd/yy"
2211
  msgstr ""
2212
 
2213
  #: admin/manage-fields.php:197
@@ -2586,7 +2586,7 @@ msgstr ""
2586
  msgid "Usernames cannot be changed."
2587
  msgstr ""
2588
 
2589
- #: admin/manage-fields.php:336, add-ons/user-listing/userlisting.php:867, add-ons/user-listing/userlisting.php:2413
2590
  msgid "Nickname"
2591
  msgstr ""
2592
 
@@ -2598,7 +2598,7 @@ msgstr ""
2598
  msgid "E-mail"
2599
  msgstr ""
2600
 
2601
- #: admin/manage-fields.php:340, 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:2407
2602
  msgid "Website"
2603
  msgstr ""
2604
 
@@ -2614,7 +2614,7 @@ msgstr ""
2614
  msgid "Jabber / Google Talk"
2615
  msgstr ""
2616
 
2617
- #: admin/manage-fields.php:350, add-ons/user-listing/userlisting.php:124, add-ons/user-listing/userlisting.php:852, add-ons/user-listing/userlisting.php:2408
2618
  msgid "Biographical Info"
2619
  msgstr ""
2620
 
@@ -4226,11 +4226,11 @@ msgstr ""
4226
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4227
  msgstr ""
4228
 
4229
- #: admin/manage-fields.php:1362, features/functions.php:1042, features/functions.php:1049, 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:411, features/admin-approval/class-admin-approval.php:111, features/roles-editor/roles-editor.php:869, assets/lib/wck-api/wordpress-creation-kit.php:447, assets/lib/wck-api/wordpress-creation-kit.php:548
4230
  msgid "Edit"
4231
  msgstr ""
4232
 
4233
- #: admin/manage-fields.php:1362, features/functions.php:1035, features/functions.php:1049, 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:116, features/admin-approval/class-admin-approval.php:232, 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:907, features/roles-editor/roles-editor.php:896, features/roles-editor/roles-editor.php:887, assets/lib/wck-api/wordpress-creation-kit.php:447, assets/lib/wck-api/wordpress-creation-kit.php:549, front-end/default-fields/gdpr-delete/gdpr-delete.php:20
4234
  msgid "Delete"
4235
  msgstr ""
4236
 
@@ -4290,7 +4290,7 @@ msgstr ""
4290
  msgid "Payment Management"
4291
  msgstr ""
4292
 
4293
- #: admin/pms-cross-promotion.php:79, admin/pms-cross-promotion.php:115, admin/pms-cross-promotion.php:194, features/two-factor-authentication/class-two-factor-authentication.php:237, features/two-factor-authentication/class-two-factor-authentication.php:341
4294
  msgid "Activate"
4295
  msgstr ""
4296
 
@@ -4554,51 +4554,51 @@ msgstr ""
4554
  msgid "Minimum length of %d characters."
4555
  msgstr ""
4556
 
4557
- #: features/functions.php:794, front-end/recover.php:383, front-end/default-fields/password/password.php:59
4558
  msgid "The password must have a minimum strength of %s"
4559
  msgstr ""
4560
 
4561
- #: features/functions.php:940
4562
  msgid "This field is required"
4563
  msgstr ""
4564
 
4565
- #: features/functions.php:978, front-end/default-fields/recaptcha/recaptcha.php:530, front-end/default-fields/recaptcha/recaptcha.php:521, front-end/default-fields/recaptcha/recaptcha.php:586, front-end/default-fields/recaptcha/recaptcha.php:634
4566
  msgid "Please enter a (valid) reCAPTCHA value"
4567
  msgstr ""
4568
 
4569
- #: features/functions.php:985
4570
  msgid "Incorrect phone number"
4571
  msgstr ""
4572
 
4573
- #: features/functions.php:1049, assets/lib/wck-api/wordpress-creation-kit.php:447
4574
  msgid "Content"
4575
  msgstr ""
4576
 
4577
- #: features/functions.php:1237
4578
  msgid "<br><br>Also, you will be able to visit your site at "
4579
  msgstr ""
4580
 
4581
- #: features/functions.php:1250
4582
  msgid "<br><br>You can visit your site at "
4583
  msgstr ""
4584
 
4585
- #: features/functions.php:1340
4586
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4587
  msgstr ""
4588
 
4589
- #: features/functions.php:1494
4590
  msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
4591
  msgstr ""
4592
 
4593
- #: features/functions.php:1535
4594
  msgid "You are not currently logged in."
4595
  msgstr ""
4596
 
4597
- #: features/functions.php:1572
4598
  msgid "Profile Builder"
4599
  msgstr ""
4600
 
4601
- #: features/functions.php:1590, features/email-confirmation/class-email-confirmation.php:92, features/email-confirmation/class-email-confirmation.php:171
4602
  msgid "User Meta"
4603
  msgstr ""
4604
 
@@ -4634,7 +4634,7 @@ msgstr ""
4634
  msgid "Only an administrator can add new users."
4635
  msgstr ""
4636
 
4637
- #: front-end/class-formbuilder.php:302, front-end/login.php:552, assets/lib/wck-api/wordpress-creation-kit.php:786
4638
  msgid "You are not allowed to do this."
4639
  msgstr ""
4640
 
@@ -4703,67 +4703,79 @@ msgstr ""
4703
  msgid "Log In"
4704
  msgstr ""
4705
 
4706
- #: front-end/login.php:328, front-end/login.php:364, front-end/recover.php:18, front-end/recover.php:325, features/two-factor-authentication/class-two-factor-authentication.php:570, front-end/extra-fields/extra-fields.php:95
 
 
 
 
 
 
 
 
4707
  msgid "ERROR"
4708
  msgstr ""
4709
 
4710
- #: front-end/login.php:332
 
 
 
 
4711
  msgid "The password field is empty."
4712
  msgstr ""
4713
 
4714
- #: front-end/login.php:336
4715
  msgid "The password you entered is incorrect."
4716
  msgstr ""
4717
 
4718
- #: front-end/login.php:345
4719
  msgid "The username field is empty"
4720
  msgstr ""
4721
 
4722
- #: front-end/login.php:343
4723
  msgid "The username/email field is empty"
4724
  msgstr ""
4725
 
4726
- #: front-end/login.php:341
4727
  msgid "The email field is empty."
4728
  msgstr ""
4729
 
4730
- #: front-end/login.php:354
4731
  msgid "Invalid username."
4732
  msgstr ""
4733
 
4734
- #: front-end/login.php:352
4735
  msgid "Invalid username or email."
4736
  msgstr ""
4737
 
4738
- #: front-end/login.php:350
4739
  msgid "Invalid email."
4740
  msgstr ""
4741
 
4742
- #: front-end/login.php:358
4743
  msgid "Password Lost and Found."
4744
  msgstr ""
4745
 
4746
- #: front-end/login.php:358, front-end/login.php:500
4747
  msgid "Lost your password?"
4748
  msgstr ""
4749
 
4750
- #: front-end/login.php:364
4751
  msgid "Both fields are empty."
4752
  msgstr ""
4753
 
4754
- #: front-end/login.php:539, front-end/logout.php:38
4755
  msgid "Log out of this account"
4756
  msgstr ""
4757
 
4758
- #: front-end/login.php:539, front-end/logout.php:25
4759
  msgid "Log out &raquo;"
4760
  msgstr ""
4761
 
4762
- #: front-end/login.php:540
4763
  msgid "You are currently logged in as %1$s. %2$s"
4764
  msgstr ""
4765
 
4766
- #: front-end/login.php:453, front-end/recover.php:123
4767
  msgid "Username or Email"
4768
  msgstr ""
4769
 
@@ -4775,99 +4787,99 @@ msgstr ""
4775
  msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
4776
  msgstr ""
4777
 
4778
- #: front-end/recover.php:94
4779
  msgid "Reset Password"
4780
  msgstr ""
4781
 
4782
- #: front-end/recover.php:122
4783
  msgid "Please enter your username or email address."
4784
  msgstr ""
4785
 
4786
- #: front-end/recover.php:118
4787
  msgid "Please enter your email address."
4788
  msgstr ""
4789
 
4790
- #: front-end/recover.php:126
4791
  msgid "You will receive a link to create a new password via email."
4792
  msgstr ""
4793
 
4794
- #: front-end/recover.php:139
4795
  msgid "Get New Password"
4796
  msgstr ""
4797
 
4798
- #: front-end/recover.php:185
4799
  msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
4800
  msgstr ""
4801
 
4802
- #: front-end/recover.php:188
4803
  msgid "Password Reset from \"%1$s\""
4804
  msgstr ""
4805
 
4806
- #: front-end/recover.php:215
4807
  msgid "You have successfully reset your password."
4808
  msgstr ""
4809
 
4810
- #: front-end/recover.php:217
4811
  msgid "Password Successfully Reset for %1$s on \"%2$s\""
4812
  msgstr ""
4813
 
4814
- #: front-end/recover.php:235
4815
  msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
4816
  msgstr ""
4817
 
4818
- #: front-end/recover.php:270
4819
  msgid "You are already logged in. You can change your password on the edit profile form."
4820
  msgstr ""
4821
 
4822
- #: front-end/recover.php:426
4823
  msgid "The password must not be empty!"
4824
  msgstr ""
4825
 
4826
- #: front-end/recover.php:362
4827
  msgid "The key cannot be empty!"
4828
  msgstr ""
4829
 
4830
- #: front-end/recover.php:368, front-end/recover.php:452
4831
  msgid "Invalid key!"
4832
  msgstr ""
4833
 
4834
- #: front-end/recover.php:373
4835
  msgid "The entered passwords don't match!"
4836
  msgstr ""
4837
 
4838
- #: front-end/recover.php:379, front-end/default-fields/password/password.php:55
4839
  msgid "The password must have the minimum length of %s characters"
4840
  msgstr ""
4841
 
4842
- #: front-end/recover.php:390
4843
  msgid "Your password has been successfully changed!"
4844
  msgstr ""
4845
 
4846
- #: front-end/recover.php:298
4847
  msgid "The username entered wasn't found in the database!"
4848
  msgstr ""
4849
 
4850
- #: front-end/recover.php:298
4851
  msgid "Please check that you entered the correct username."
4852
  msgstr ""
4853
 
4854
- #: front-end/recover.php:341
4855
  msgid "The email address entered wasn't found in the database!"
4856
  msgstr ""
4857
 
4858
- #: front-end/recover.php:341
4859
  msgid "Please check that you entered the correct email address."
4860
  msgstr ""
4861
 
4862
- #: front-end/recover.php:311
4863
  msgid "Check your email for the confirmation link."
4864
  msgstr ""
4865
 
4866
- #: front-end/recover.php:325
4867
  msgid "There was an error while trying to send the activation link to %1$s!"
4868
  msgstr ""
4869
 
4870
- #: front-end/recover.php:452
4871
  msgid "ERROR:"
4872
  msgstr ""
4873
 
@@ -5180,7 +5192,7 @@ msgstr ""
5180
  msgid "Available Tags"
5181
  msgstr ""
5182
 
5183
- #: add-ons/email-customizer/email-customizer.php:11, add-ons/user-listing/userlisting.php:244
5184
  msgid "User Fields Tags"
5185
  msgstr ""
5186
 
@@ -5192,7 +5204,7 @@ msgstr ""
5192
  msgid "Site Name"
5193
  msgstr ""
5194
 
5195
- #: add-ons/email-customizer/email-customizer.php:25, add-ons/user-listing/userlisting.php:170
5196
  msgid "User Id"
5197
  msgstr ""
5198
 
@@ -5457,27 +5469,27 @@ msgstr ""
5457
  msgid "No Edit-profile Forms found in trash"
5458
  msgstr ""
5459
 
5460
- #: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:2301
5461
  msgid "Shortcode"
5462
  msgstr ""
5463
 
5464
- #: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:2322
5465
  msgid "(no title)"
5466
  msgstr ""
5467
 
5468
- #: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:2344
5469
  msgid "Use this shortcode on the page you want the form to be displayed:"
5470
  msgstr ""
5471
 
5472
- #: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:2348
5473
  msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5474
  msgstr ""
5475
 
5476
- #: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:2342
5477
  msgid "The shortcode will be available after you publish this form."
5478
  msgstr ""
5479
 
5480
- #: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:2381
5481
  msgid "Form Shortcode"
5482
  msgstr ""
5483
 
@@ -5601,11 +5613,11 @@ msgstr ""
5601
  msgid "Are you sure you want to delete this?"
5602
  msgstr ""
5603
 
5604
- #: add-ons/user-listing/one-map-listing.php:439
5605
  msgid "Please wait while the pins are loading..."
5606
  msgstr ""
5607
 
5608
- #: add-ons/user-listing/one-map-listing.php:554
5609
  msgid "The API Key was not provided."
5610
  msgstr ""
5611
 
@@ -5641,383 +5653,383 @@ msgstr ""
5641
  msgid "Display name as"
5642
  msgstr ""
5643
 
5644
- #: 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:2415, features/admin-approval/class-admin-approval.php:178, features/roles-editor/roles-editor.php:256
5645
  msgid "Role"
5646
  msgstr ""
5647
 
5648
- #: add-ons/user-listing/userlisting.php:161, features/roles-editor/roles-editor.php:366, features/roles-editor/roles-editor.php:530
5649
  msgid "Role Slug"
5650
  msgstr ""
5651
 
5652
- #: add-ons/user-listing/userlisting.php:162, add-ons/user-listing/userlisting.php:2409
5653
  msgid "Registration Date"
5654
  msgstr ""
5655
 
5656
- #: add-ons/user-listing/userlisting.php:163, add-ons/user-listing/userlisting.php:2414
5657
  msgid "Number of Posts"
5658
  msgstr ""
5659
 
5660
- #: add-ons/user-listing/userlisting.php:167
5661
  msgid "More Info"
5662
  msgstr ""
5663
 
5664
- #: add-ons/user-listing/userlisting.php:168
5665
  msgid "More Info Url"
5666
  msgstr ""
5667
 
5668
- #: add-ons/user-listing/userlisting.php:169
5669
  msgid "Avatar or Gravatar"
5670
  msgstr ""
5671
 
5672
- #: add-ons/user-listing/userlisting.php:171
5673
  msgid "User Nicename"
5674
  msgstr ""
5675
 
5676
- #: add-ons/user-listing/userlisting.php:213
5677
  msgid "Pagination"
5678
  msgstr ""
5679
 
5680
- #: add-ons/user-listing/userlisting.php:214
5681
  msgid "Search all Fields"
5682
  msgstr ""
5683
 
5684
- #: add-ons/user-listing/userlisting.php:215, add-ons/user-listing/userlisting.php:2493
5685
  msgid "Faceted Menus"
5686
  msgstr ""
5687
 
5688
- #: add-ons/user-listing/userlisting.php:216
5689
  msgid "User Count"
5690
  msgstr ""
5691
 
5692
- #: add-ons/user-listing/userlisting.php:223
5693
  msgid "Map of listed users"
5694
  msgstr ""
5695
 
5696
- #: add-ons/user-listing/userlisting.php:250
5697
  msgid "Sort Tags"
5698
  msgstr ""
5699
 
5700
- #: add-ons/user-listing/userlisting.php:254, add-ons/user-listing/userlisting.php:278
5701
  msgid "Extra Functions"
5702
  msgstr ""
5703
 
5704
- #: add-ons/user-listing/userlisting.php:280
5705
  msgid "Go Back Link"
5706
  msgstr ""
5707
 
5708
- #: add-ons/user-listing/userlisting.php:298
5709
  msgid "All-userlisting Template"
5710
  msgstr ""
5711
 
5712
- #: add-ons/user-listing/userlisting.php:301
5713
  msgid "Single-userlisting Template"
5714
  msgstr ""
5715
 
5716
- #: add-ons/user-listing/userlisting.php:327
5717
  msgid "Avatar"
5718
  msgstr ""
5719
 
5720
- #: add-ons/user-listing/userlisting.php:329, add-ons/user-listing/userlisting.php:840, add-ons/user-listing/userlisting.php:2410, features/admin-approval/class-admin-approval.php:175
5721
  msgid "Firstname"
5722
  msgstr ""
5723
 
5724
- #: add-ons/user-listing/userlisting.php:331, add-ons/user-listing/userlisting.php:855, features/roles-editor/roles-editor.php:451
5725
  msgid "Posts"
5726
  msgstr ""
5727
 
5728
- #: add-ons/user-listing/userlisting.php:332, add-ons/user-listing/userlisting.php:837
5729
  msgid "Sign-up Date"
5730
  msgstr ""
5731
 
5732
- #: add-ons/user-listing/userlisting.php:333
5733
  msgid "More"
5734
  msgstr ""
5735
 
5736
- #: add-ons/user-listing/userlisting.php:428
5737
  msgid "You do not have permission to view this user list."
5738
  msgstr ""
5739
 
5740
- #: add-ons/user-listing/userlisting.php:441
5741
  msgid "You do not have the required user role to view this user list."
5742
  msgstr ""
5743
 
5744
- #: add-ons/user-listing/userlisting.php:465
5745
  msgid "User not found"
5746
  msgstr ""
5747
 
5748
- #: add-ons/user-listing/userlisting.php:864, add-ons/user-listing/userlisting.php:2421
5749
  msgid "Jabber"
5750
  msgstr ""
5751
 
5752
- #: add-ons/user-listing/userlisting.php:861, add-ons/user-listing/userlisting.php:2420
5753
  msgid "Yim"
5754
  msgstr ""
5755
 
5756
- #: add-ons/user-listing/userlisting.php:858, add-ons/user-listing/userlisting.php:2419
5757
  msgid "Aim"
5758
  msgstr ""
5759
 
5760
- #: add-ons/user-listing/userlisting.php:846, add-ons/user-listing/userlisting.php:2412
5761
  msgid "Display Name"
5762
  msgstr ""
5763
 
5764
- #: add-ons/user-listing/userlisting.php:843, add-ons/user-listing/userlisting.php:2411, features/admin-approval/class-admin-approval.php:176
5765
- msgid "Lastname"
5766
- msgstr ""
5767
-
5768
- #: add-ons/user-listing/userlisting.php:831
5769
  msgid "First/Lastname"
5770
  msgstr ""
5771
 
5772
- #: add-ons/user-listing/userlisting.php:1151, add-ons/user-listing/userlisting.php:1635, add-ons/user-listing/userlisting.php:2128, add-ons/user-listing/userlisting.php:2613
5773
  msgid "Search Users by All Fields"
5774
  msgstr ""
5775
 
5776
- #: add-ons/user-listing/userlisting.php:1428
5777
  msgid "Click here to see more information about this user."
5778
  msgstr ""
5779
 
5780
- #: add-ons/user-listing/userlisting.php:1425
5781
  msgid "Click here to see more information about this user"
5782
  msgstr ""
5783
 
5784
- #: add-ons/user-listing/userlisting.php:1425, add-ons/user-listing/userlisting.php:1425
5785
  msgid "More..."
5786
  msgstr ""
5787
 
5788
- #: add-ons/user-listing/userlisting.php:1455
5789
  msgid "View Map"
5790
  msgstr ""
5791
 
5792
- #: add-ons/user-listing/userlisting.php:1592, add-ons/user-listing/userlisting.php:1589
5793
  msgid "Click here to go back"
5794
  msgstr ""
5795
 
5796
- #: add-ons/user-listing/userlisting.php:1589, add-ons/user-listing/userlisting.php:1589
5797
  msgid "Back"
5798
  msgstr ""
5799
 
5800
- #: add-ons/user-listing/userlisting.php:1654
5801
  msgid "You don't have any pagination settings on this userlisting!"
5802
  msgstr ""
5803
 
5804
- #: add-ons/user-listing/userlisting.php:1622
5805
  msgid "&laquo;&laquo; First"
5806
  msgstr ""
5807
 
5808
- #: add-ons/user-listing/userlisting.php:1623
5809
  msgid "&laquo; Prev"
5810
  msgstr ""
5811
 
5812
- #: add-ons/user-listing/userlisting.php:1624
5813
  msgid "Next &raquo; "
5814
  msgstr ""
5815
 
5816
- #: add-ons/user-listing/userlisting.php:1625
5817
  msgid "Last &raquo;&raquo;"
5818
  msgstr ""
5819
 
5820
- #: add-ons/user-listing/userlisting.php:1703
5821
  msgid "Show All"
5822
  msgstr ""
5823
 
5824
- #: add-ons/user-listing/userlisting.php:1779, admin/advanced-settings/includes/views/view-fields.php:78
5825
  msgid "Choose..."
5826
  msgstr ""
5827
 
5828
- #: add-ons/user-listing/userlisting.php:1875
5829
  msgid "No options available"
5830
  msgstr ""
5831
 
5832
- #: add-ons/user-listing/userlisting.php:2030
5833
  msgid "Remove All Filters"
5834
  msgstr ""
5835
 
5836
- #: add-ons/user-listing/userlisting.php:2145
5837
  msgid "Search"
5838
  msgstr ""
5839
 
5840
- #: add-ons/user-listing/userlisting.php:2146
5841
  msgid "Clear Results"
5842
  msgstr ""
5843
 
5844
- #: add-ons/user-listing/userlisting.php:2351, add-ons/user-listing/userlisting.php:2355
5845
  msgid "Extra shortcode parameters"
5846
  msgstr ""
5847
 
5848
- #: add-ons/user-listing/userlisting.php:2353
5849
  msgid "View all extra shortcode parameters"
5850
  msgstr ""
5851
 
5852
- #: add-ons/user-listing/userlisting.php:2358
5853
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5854
  msgstr ""
5855
 
5856
- #: add-ons/user-listing/userlisting.php:2359
5857
  msgid "Example:"
5858
  msgstr ""
5859
 
5860
- #: add-ons/user-listing/userlisting.php:2361
5861
  msgid "Remember though, that the field-value combination must exist in the database."
5862
  msgstr ""
5863
 
5864
- #: add-ons/user-listing/userlisting.php:2367
5865
  msgid "displays only the users that you specified the user_id for"
5866
  msgstr ""
5867
 
5868
- #: add-ons/user-listing/userlisting.php:2373
5869
  msgid "displays all users except the ones you specified the user_id for"
5870
  msgstr ""
5871
 
5872
- #: add-ons/user-listing/userlisting.php:2436
 
 
 
 
5873
  msgid "Random (very slow on large databases > 10K user)"
5874
  msgstr ""
5875
 
5876
- #: add-ons/user-listing/userlisting.php:2439
5877
  msgid "Ascending"
5878
  msgstr ""
5879
 
5880
- #: add-ons/user-listing/userlisting.php:2440
5881
  msgid "Descending"
5882
  msgstr ""
5883
 
5884
- #: add-ons/user-listing/userlisting.php:2445
5885
  msgid "Roles to Display"
5886
  msgstr ""
5887
 
5888
- #: add-ons/user-listing/userlisting.php:2445
5889
  msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5890
  msgstr ""
5891
 
5892
- #: add-ons/user-listing/userlisting.php:2446
5893
  msgid "Number of Users/Page"
5894
  msgstr ""
5895
 
5896
- #: add-ons/user-listing/userlisting.php:2446
5897
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
5898
  msgstr ""
5899
 
5900
- #: add-ons/user-listing/userlisting.php:2447
5901
  msgid "Default Sorting Criteria"
5902
  msgstr ""
5903
 
5904
- #: add-ons/user-listing/userlisting.php:2447
5905
  msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5906
  msgstr ""
5907
 
5908
- #: add-ons/user-listing/userlisting.php:2448
5909
  msgid "Default Sorting Order"
5910
  msgstr ""
5911
 
5912
- #: add-ons/user-listing/userlisting.php:2448
5913
  msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5914
  msgstr ""
5915
 
5916
- #: add-ons/user-listing/userlisting.php:2449
5917
  msgid "Avatar Size (All-userlisting)"
5918
  msgstr ""
5919
 
5920
- #: add-ons/user-listing/userlisting.php:2449
5921
  msgid "Set the avatar size on the all-userlisting only"
5922
  msgstr ""
5923
 
5924
- #: add-ons/user-listing/userlisting.php:2450
5925
  msgid "Avatar Size (Single-userlisting)"
5926
  msgstr ""
5927
 
5928
- #: add-ons/user-listing/userlisting.php:2450
5929
  msgid "Set the avatar size on the single-userlisting only"
5930
  msgstr ""
5931
 
5932
- #: add-ons/user-listing/userlisting.php:2451
5933
  msgid "Visible only to logged in users?"
5934
  msgstr ""
5935
 
5936
- #: add-ons/user-listing/userlisting.php:2451
5937
  msgid "The userlisting will only be visible only to the logged in users"
5938
  msgstr ""
5939
 
5940
- #: add-ons/user-listing/userlisting.php:2452
5941
  msgid "Visible to following Roles"
5942
  msgstr ""
5943
 
5944
- #: add-ons/user-listing/userlisting.php:2452
5945
  msgid "The userlisting will only be visible to the following roles"
5946
  msgstr ""
5947
 
5948
- #: add-ons/user-listing/userlisting.php:2458
5949
  msgid "Userlisting Settings"
5950
  msgstr ""
5951
 
5952
- #: add-ons/user-listing/userlisting.php:2483
5953
  msgid "Label"
5954
  msgstr ""
5955
 
5956
- #: add-ons/user-listing/userlisting.php:2483
5957
  msgid "Choose the facet name that appears on the frontend"
5958
  msgstr ""
5959
 
5960
- #: add-ons/user-listing/userlisting.php:2484
5961
  msgid "Facet Type"
5962
  msgstr ""
5963
 
5964
- #: add-ons/user-listing/userlisting.php:2484
5965
  msgid "Choose the facet menu type"
5966
  msgstr ""
5967
 
5968
- #: add-ons/user-listing/userlisting.php:2485
5969
  msgid "Facet Meta"
5970
  msgstr ""
5971
 
5972
- #: add-ons/user-listing/userlisting.php:2485
5973
  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."
5974
  msgstr ""
5975
 
5976
- #: add-ons/user-listing/userlisting.php:2486
5977
  msgid "Behaviour"
5978
  msgstr ""
5979
 
5980
- #: add-ons/user-listing/userlisting.php:2486
5981
  msgid "Narrow the results"
5982
  msgstr ""
5983
 
5984
- #: add-ons/user-listing/userlisting.php:2486
5985
  msgid "Expand the results"
5986
  msgstr ""
5987
 
5988
- #: add-ons/user-listing/userlisting.php:2486
5989
  msgid "Choose how multiple selections affect the results"
5990
  msgstr ""
5991
 
5992
- #: add-ons/user-listing/userlisting.php:2487
5993
  msgid "Visible choices"
5994
  msgstr ""
5995
 
5996
- #: add-ons/user-listing/userlisting.php:2487
5997
  msgid "Show a toggle link after this many choices. Leave blank for all"
5998
  msgstr ""
5999
 
6000
- #: add-ons/user-listing/userlisting.php:2512
6001
  msgid "Search Fields"
6002
  msgstr ""
6003
 
6004
- #: add-ons/user-listing/userlisting.php:2512
6005
  msgid "Choose the fields in which the Search Field will look in"
6006
  msgstr ""
6007
 
6008
- #: add-ons/user-listing/userlisting.php:2517
6009
  msgid "Search Settings"
6010
  msgstr ""
6011
 
6012
- #: add-ons/user-listing/userlisting.php:2589
6013
  msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
6014
  msgstr ""
6015
 
6016
- #: add-ons/user-listing/userlisting.php:2589
6017
  msgid "You can find it in the Profile Builder menu."
6018
  msgstr ""
6019
 
6020
- #: add-ons/user-listing/userlisting.php:2752
6021
  msgid "No results found!"
6022
  msgstr ""
6023
 
@@ -6245,47 +6257,55 @@ msgstr ""
6245
  msgid "Allow only logged in users to see this content."
6246
  msgstr ""
6247
 
6248
- #: features/content-restriction/class-elementor-content-restriction.php:98
 
 
 
 
 
 
 
 
6249
  msgid "Restrict by User Roles"
6250
  msgstr ""
6251
 
6252
- #: features/content-restriction/class-elementor-content-restriction.php:110
6253
  msgid "Allow users which have the specified role to see this content."
6254
  msgstr ""
6255
 
6256
- #: features/content-restriction/class-elementor-content-restriction.php:116, features/content-restriction/content-restriction-meta-box.php:127
6257
  msgid "Restriction Messages"
6258
  msgstr ""
6259
 
6260
- #: features/content-restriction/class-elementor-content-restriction.php:124
6261
  msgid "Enable Restriction Messages"
6262
  msgstr ""
6263
 
6264
- #: features/content-restriction/class-elementor-content-restriction.php:126
6265
  msgid "Replace hidden content with the default messages from PB -> Settings -> Content Restriction, a custom message or an Elementor Template."
6266
  msgstr ""
6267
 
6268
- #: features/content-restriction/class-elementor-content-restriction.php:132, features/content-restriction/content-restriction-meta-box.php:133
6269
  msgid "Enable Custom Messages"
6270
  msgstr ""
6271
 
6272
- #: features/content-restriction/class-elementor-content-restriction.php:134
6273
  msgid "Add a custom message or template."
6274
  msgstr ""
6275
 
6276
- #: features/content-restriction/class-elementor-content-restriction.php:143
6277
  msgid "Content type"
6278
  msgstr ""
6279
 
6280
- #: features/content-restriction/class-elementor-content-restriction.php:147
6281
  msgid "Text"
6282
  msgstr ""
6283
 
6284
- #: features/content-restriction/class-elementor-content-restriction.php:151
6285
  msgid "Template"
6286
  msgstr ""
6287
 
6288
- #: features/content-restriction/class-elementor-content-restriction.php:168
6289
  msgid "Select Template"
6290
  msgstr ""
6291
 
@@ -6740,143 +6760,99 @@ msgstr ""
6740
  msgid "Edit User Roles"
6741
  msgstr ""
6742
 
6743
- #: features/two-factor-authentication/class-two-factor-authentication.php:51
6744
  msgid "Valid"
6745
  msgstr ""
6746
 
6747
- #: features/two-factor-authentication/class-two-factor-authentication.php:52
6748
  msgid "Invalid"
6749
  msgstr ""
6750
 
6751
- #: features/two-factor-authentication/class-two-factor-authentication.php:97, features/two-factor-authentication/class-two-factor-authentication.php:337
6752
  msgid "Two-Factor Authentication Settings"
6753
  msgstr ""
6754
 
6755
- #: features/two-factor-authentication/class-two-factor-authentication.php:109
6756
  msgid "Enable Two-Factor Authentication"
6757
  msgstr ""
6758
 
6759
- #: features/two-factor-authentication/class-two-factor-authentication.php:116
6760
  msgid "Activate the Authenticator functionality"
6761
  msgstr ""
6762
 
6763
- #: features/two-factor-authentication/class-two-factor-authentication.php:121
6764
  msgid "Enable Authenticator for these user roles"
6765
  msgstr ""
6766
 
6767
- #: features/two-factor-authentication/class-two-factor-authentication.php:138
6768
  msgid "\"*\" - Two-Factor Authentication will be enabled for all user roles."
6769
  msgstr ""
6770
 
6771
- #: features/two-factor-authentication/class-two-factor-authentication.php:143
6772
- msgid "Show Authenticator code field"
6773
- msgstr ""
6774
-
6775
- #: features/two-factor-authentication/class-two-factor-authentication.php:147
6776
- msgid "Backend"
6777
- msgstr ""
6778
-
6779
- #: features/two-factor-authentication/class-two-factor-authentication.php:148
6780
- msgid "Frontend"
6781
- msgstr ""
6782
-
6783
- #: features/two-factor-authentication/class-two-factor-authentication.php:149
6784
- msgid "Everywhere"
6785
- msgstr ""
6786
-
6787
- #: features/two-factor-authentication/class-two-factor-authentication.php:152
6788
- msgid "\"No\" - only show the field when a user that has Two-Factor Authentication enabled attempts to log in."
6789
- msgstr ""
6790
-
6791
- #: features/two-factor-authentication/class-two-factor-authentication.php:153
6792
- msgid "\"Backend\" - always show the field on the default backend form."
6793
- msgstr ""
6794
-
6795
- #: features/two-factor-authentication/class-two-factor-authentication.php:154
6796
- msgid "\"Frontend\" - always show the field on the Profile Builder frontend form."
6797
- msgstr ""
6798
-
6799
- #: features/two-factor-authentication/class-two-factor-authentication.php:155
6800
- msgid "\"Everywhere\" - always show the field both on the Profile Builder frontend form and on the default backend form."
6801
- msgstr ""
6802
-
6803
- #: features/two-factor-authentication/class-two-factor-authentication.php:183, features/two-factor-authentication/class-two-factor-authentication.php:184
6804
  msgid "2fa_settings"
6805
  msgstr ""
6806
 
6807
- #: features/two-factor-authentication/class-two-factor-authentication.php:242, features/two-factor-authentication/class-two-factor-authentication.php:347
6808
  msgid "Relaxed Mode"
6809
  msgstr ""
6810
 
6811
- #: features/two-factor-authentication/class-two-factor-authentication.php:244
6812
- msgid " Allow for higher time drifting on your phone clock ( &#177;4 min )."
6813
  msgstr ""
6814
 
6815
- #: features/two-factor-authentication/class-two-factor-authentication.php:249
6816
  msgid "Description that you'll see in the Authenticator app."
6817
  msgstr ""
6818
 
6819
- #: features/two-factor-authentication/class-two-factor-authentication.php:252, features/two-factor-authentication/class-two-factor-authentication.php:361
6820
  msgid "Secret"
6821
  msgstr ""
6822
 
6823
- #: features/two-factor-authentication/class-two-factor-authentication.php:256
6824
  msgid "New Secret"
6825
  msgstr ""
6826
 
6827
- #: features/two-factor-authentication/class-two-factor-authentication.php:257
6828
  msgid "QR Code"
6829
  msgstr ""
6830
 
6831
- #: features/two-factor-authentication/class-two-factor-authentication.php:260
6832
  msgid "Scan this with the Authenticator app:"
6833
  msgstr ""
6834
 
6835
- #: features/two-factor-authentication/class-two-factor-authentication.php:264, features/two-factor-authentication/class-two-factor-authentication.php:377
6836
  msgid "Verify TOTP"
6837
  msgstr ""
6838
 
6839
- #: features/two-factor-authentication/class-two-factor-authentication.php:267, features/two-factor-authentication/class-two-factor-authentication.php:380
6840
  msgid "Check"
6841
  msgstr ""
6842
 
6843
- #: features/two-factor-authentication/class-two-factor-authentication.php:350
6844
- msgid " Allow for more time drifting on your phone clock ( &#177;4 min )."
6845
- msgstr ""
6846
-
6847
- #: features/two-factor-authentication/class-two-factor-authentication.php:357
6848
  msgid "Description that you'll see in the Authenticator app on your phone."
6849
  msgstr ""
6850
 
6851
- #: features/two-factor-authentication/class-two-factor-authentication.php:364
6852
  msgid "Create new secret"
6853
  msgstr ""
6854
 
6855
- #: features/two-factor-authentication/class-two-factor-authentication.php:365
6856
  msgid "Show/Hide QR code"
6857
  msgstr ""
6858
 
6859
- #: features/two-factor-authentication/class-two-factor-authentication.php:371
6860
- msgid "Scan this your Authenticator app:"
6861
- msgstr ""
6862
-
6863
- #: features/two-factor-authentication/class-two-factor-authentication.php:431
6864
  msgid "Please verify TOTP to change Two-Factor Authentication settings"
6865
  msgstr ""
6866
 
6867
- #: features/two-factor-authentication/class-two-factor-authentication.php:566
6868
- msgid "Please enter your Authenticator code."
6869
  msgstr ""
6870
 
6871
- #: features/two-factor-authentication/class-two-factor-authentication.php:570
6872
  msgid "Your Authenticator code was incorrect. Please try again."
6873
  msgstr ""
6874
 
6875
- #: features/two-factor-authentication/class-two-factor-authentication.php:650
6876
- msgid "Please enter the code from your Authenticator app."
6877
- msgstr ""
6878
-
6879
- #: features/two-factor-authentication/class-two-factor-authentication.php:674
6880
  msgid "Authenticator Code"
6881
  msgstr ""
6882
 
@@ -6962,7 +6938,7 @@ msgstr ""
6962
  msgid "Please enter a value for the required field "
6963
  msgstr ""
6964
 
6965
- #: assets/misc/elementor/class-elementor.php:72
6966
  msgid "Profile Builder Forms"
6967
  msgstr ""
6968
 
@@ -7681,3 +7657,43 @@ msgstr ""
7681
  #: assets/misc/elementor/widgets/class-pb-widget-rp.php:55
7682
  msgid "There are no available controls for the Password Recovery form"
7683
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  msgid "Choose (Single) User Listing to display under bbPress user Profile tab:"
26
  msgstr ""
27
 
28
+ #: ../pb-add-on-bbpress/bbpress-page.php:82, ../pb-add-on-bbpress/bbpress-page.php:117, ../pb-add-on-woocommerce/woosync-page.php:80, ../pb-add-on-woocommerce/woosync-page.php:115, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:232, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:307, add-ons/user-listing/userlisting.php:587, add-ons/user-listing/userlisting.php:584, add-ons/user-listing/userlisting.php:582, add-ons/user-listing/userlisting.php:565, add-ons/user-listing/userlisting.php:562, add-ons/user-listing/userlisting.php:560, features/content-restriction/content-restriction.php:136
29
  msgid "None"
30
  msgstr ""
31
 
49
  msgid "Replace bbPress Login form:"
50
  msgstr ""
51
 
52
+ #: ../pb-add-on-bbpress/bbpress-page.php:152, ../pb-add-on-social-connect/index.php:327, admin/general-settings.php:158, admin/general-settings.php:173, admin/general-settings.php:222, admin/general-settings.php:267, admin/private-website.php:69, admin/private-website.php:136, admin/private-website.php:151, 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, features/content-restriction/content-restriction.php:88, features/two-factor-authentication/class-two-factor-authentication.php:124, admin/advanced-settings/includes/forms/placeholder-labels.php:136, assets/misc/elementor/widgets/class-pb-widget-l.php:76, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:180, assets/misc/elementor/widgets/class-pb-widget-ul.php:108
53
  msgid "No"
54
  msgstr ""
55
 
56
+ #: ../pb-add-on-bbpress/bbpress-page.php:153, ../pb-add-on-social-connect/index.php:326, admin/general-settings.php:144, admin/general-settings.php:157, admin/general-settings.php:172, admin/general-settings.php:221, admin/general-settings.php:268, admin/manage-fields.php:193, admin/private-website.php:70, admin/private-website.php:137, admin/private-website.php:150, 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:2476, features/content-restriction/content-restriction.php:89, features/two-factor-authentication/class-two-factor-authentication.php:125, admin/advanced-settings/includes/forms/placeholder-labels.php:135, 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-admin.php:100, 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:260, admin/advanced-settings/includes/views/view-fields.php:277, admin/advanced-settings/includes/views/view-fields.php:295, 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:253, admin/advanced-settings/includes/views/view-forms.php:274, admin/advanced-settings/includes/views/view-forms.php:294, admin/advanced-settings/includes/views/view-forms.php:316, admin/advanced-settings/includes/views/view-forms.php:338, admin/advanced-settings/includes/views/view-forms.php:358, 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, assets/misc/elementor/widgets/class-pb-widget-l.php:75, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:179, assets/misc/elementor/widgets/class-pb-widget-ul.php:107
57
  msgid "Yes"
58
  msgstr ""
59
 
377
  msgid "Edit Profile"
378
  msgstr ""
379
 
380
+ #: ../pb-add-on-custom-profile-menus/index.php:311, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, front-end/class-formbuilder.php:464, front-end/login.php:562, assets/misc/elementor/widgets/class-pb-widget-rf.php:32
381
  msgid "Register"
382
  msgstr ""
383
 
757
  msgid "You will be redirected in 5 seconds. If not, click %%."
758
  msgstr ""
759
 
760
+ #: ../pb-add-on-social-connect/index.php:394, features/functions.php:1338
761
  msgid "here"
762
  msgstr ""
763
 
797
  msgid "Please enter your Twitter email!"
798
  msgstr ""
799
 
800
+ #: ../pb-add-on-social-connect/index.php:721
801
  msgid "Profile Builder not active!"
802
  msgstr ""
803
 
804
+ #: ../pb-add-on-social-connect/index.php:870, admin/admin-functions.php:38, admin/general-settings.php:11
805
  msgid "General Settings"
806
  msgstr ""
807
 
808
+ #: ../pb-add-on-social-connect/index.php:874
809
  msgid "Application Settings"
810
  msgstr ""
811
 
812
+ #: ../pb-add-on-social-connect/index.php:878
813
  msgid "Appearance Settings"
814
  msgstr ""
815
 
816
+ #: ../pb-add-on-social-connect/index.php:942
817
  msgid "Unlink"
818
  msgstr ""
819
 
820
+ #: ../pb-add-on-social-connect/index.php:949
821
  msgid "Your account is linked with:"
822
  msgstr ""
823
 
825
  msgid "Country"
826
  msgstr ""
827
 
828
+ #: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, admin/manage-fields.php:334, add-ons/user-listing/userlisting.php:865, admin/advanced-settings/includes/views/view-fields.php:127
829
  msgid "First Name"
830
  msgstr ""
831
 
832
+ #: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, admin/manage-fields.php:335, add-ons/user-listing/userlisting.php:868, admin/advanced-settings/includes/views/view-fields.php:133
833
  msgid "Last Name"
834
  msgstr ""
835
 
1050
  msgid "Edit this item"
1051
  msgstr ""
1052
 
1053
+ #: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:1027, features/roles-editor/roles-editor.php:181, assets/lib/wck-api/wordpress-creation-kit.php:406
1054
  msgid "Cancel"
1055
  msgstr ""
1056
 
1294
  msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
1295
  msgstr ""
1296
 
1297
+ #: admin/add-ons.php:59, admin/basic-info.php:160, add-ons/user-listing/userlisting.php:11, add-ons/user-listing/userlisting.php:12, add-ons/user-listing/userlisting.php:17, add-ons/user-listing/userlisting.php:23, assets/misc/elementor/widgets/class-pb-widget-ul.php:56, assets/misc/elementor/widgets/class-pb-widget-ul.php:95
1298
  msgid "User Listing"
1299
  msgstr ""
1300
 
1530
  msgid "Show"
1531
  msgstr ""
1532
 
1533
+ #: admin/admin-bar.php:81, add-ons/user-listing/userlisting.php:1729
1534
  msgid "Hide"
1535
  msgstr ""
1536
 
1537
+ #: admin/admin-bar.php:92, admin/general-settings.php:341, admin/private-website.php:162, admin/register-version.php:96, features/functions.php:1020, features/content-restriction/content-restriction.php:162, features/two-factor-authentication/class-two-factor-authentication.php:156, assets/lib/class-mustache-templates/class-mustache-templates.php:392, assets/lib/wck-api/wordpress-creation-kit.php:405, admin/advanced-settings/includes/views/view-admin.php:112, admin/advanced-settings/includes/views/view-fields.php:309, admin/advanced-settings/includes/views/view-forms.php:374, admin/advanced-settings/includes/views/view-shortcodes.php:77, admin/advanced-settings/includes/views/view-userlisting.php:91
1538
  msgid "Save Changes"
1539
  msgstr ""
1540
 
1942
  msgid "Private Website"
1943
  msgstr ""
1944
 
1945
+ #: admin/general-settings.php:15, features/two-factor-authentication/class-two-factor-authentication.php:78, features/two-factor-authentication/class-two-factor-authentication.php:78, features/two-factor-authentication/class-two-factor-authentication.php:175, features/two-factor-authentication/class-two-factor-authentication.php:176, features/two-factor-authentication/class-two-factor-authentication.php:229
1946
  msgid "Two-Factor Authentication"
1947
  msgstr ""
1948
 
2062
  msgid "Username and Email"
2063
  msgstr ""
2064
 
2065
+ #: admin/general-settings.php:297, admin/manage-fields.php:333, front-end/login.php:324, front-end/login.php:338, front-end/login.php:516, 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:332, add-ons/user-listing/userlisting.php:853, add-ons/user-listing/userlisting.php:2430, features/admin-approval/class-admin-approval.php:174, features/email-confirmation/class-email-confirmation.php:168, admin/advanced-settings/includes/views/view-fields.php:121
2066
  msgid "Username"
2067
  msgstr ""
2068
 
2069
+ #: admin/general-settings.php:298, front-end/login.php:513, front-end/recover.php:118, add-ons/email-customizer/email-customizer.php:29, add-ons/user-listing/userlisting.php:118, add-ons/user-listing/userlisting.php:859, add-ons/user-listing/userlisting.php:2431, features/admin-approval/class-admin-approval.php:177, features/email-confirmation/class-email-confirmation.php:169, admin/advanced-settings/includes/shortcodes/resend-activation.php:9
2070
  msgid "Email"
2071
  msgstr ""
2072
 
2146
  msgid "Meta-name"
2147
  msgstr ""
2148
 
2149
+ #: admin/manage-fields.php:189, add-ons/custom-redirects/custom_redirects_admin.php:69, add-ons/custom-redirects/custom_redirects_admin.php:99, add-ons/custom-redirects/custom_redirects_admin.php:118, add-ons/custom-redirects/custom_redirects_admin.php:143, add-ons/multiple-forms/edit-profile-forms.php:246, add-ons/multiple-forms/register-forms.php:267, assets/misc/elementor/widgets/class-pb-widget-ul.php:170
2150
  msgid "ID"
2151
  msgstr ""
2152
 
2154
  msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
2155
  msgstr ""
2156
 
2157
+ #: admin/manage-fields.php:190, features/two-factor-authentication/class-two-factor-authentication.php:241, features/two-factor-authentication/class-two-factor-authentication.php:356
2158
  msgid "Description"
2159
  msgstr ""
2160
 
2207
  msgstr ""
2208
 
2209
  #: admin/manage-fields.php:196
2210
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, mm/yy, mm/dd, dd/mm, @<br/>If not specified, defaults to mm/dd/yy<br/>ATTENTION: if you plan to use this field for sorting, please make sure to use year first, then month, and day last."
2211
  msgstr ""
2212
 
2213
  #: admin/manage-fields.php:197
2586
  msgid "Usernames cannot be changed."
2587
  msgstr ""
2588
 
2589
+ #: admin/manage-fields.php:336, add-ons/user-listing/userlisting.php:892, add-ons/user-listing/userlisting.php:2438
2590
  msgid "Nickname"
2591
  msgstr ""
2592
 
2598
  msgid "E-mail"
2599
  msgstr ""
2600
 
2601
+ #: admin/manage-fields.php:340, add-ons/email-customizer/email-customizer.php:33, add-ons/user-listing/userlisting.php:121, add-ons/user-listing/userlisting.php:874, add-ons/user-listing/userlisting.php:2432
2602
  msgid "Website"
2603
  msgstr ""
2604
 
2614
  msgid "Jabber / Google Talk"
2615
  msgstr ""
2616
 
2617
+ #: admin/manage-fields.php:350, add-ons/user-listing/userlisting.php:124, add-ons/user-listing/userlisting.php:877, add-ons/user-listing/userlisting.php:2433
2618
  msgid "Biographical Info"
2619
  msgstr ""
2620
 
4226
  msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4227
  msgstr ""
4228
 
4229
+ #: admin/manage-fields.php:1362, features/functions.php:1041, features/functions.php:1048, 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:411, features/admin-approval/class-admin-approval.php:111, features/roles-editor/roles-editor.php:869, assets/lib/wck-api/wordpress-creation-kit.php:447, assets/lib/wck-api/wordpress-creation-kit.php:548
4230
  msgid "Edit"
4231
  msgstr ""
4232
 
4233
+ #: admin/manage-fields.php:1362, features/functions.php:1034, features/functions.php:1048, 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:116, features/admin-approval/class-admin-approval.php:232, 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:907, features/roles-editor/roles-editor.php:896, features/roles-editor/roles-editor.php:887, assets/lib/wck-api/wordpress-creation-kit.php:447, assets/lib/wck-api/wordpress-creation-kit.php:549, front-end/default-fields/gdpr-delete/gdpr-delete.php:20
4234
  msgid "Delete"
4235
  msgstr ""
4236
 
4290
  msgid "Payment Management"
4291
  msgstr ""
4292
 
4293
+ #: admin/pms-cross-promotion.php:79, admin/pms-cross-promotion.php:115, admin/pms-cross-promotion.php:194, features/two-factor-authentication/class-two-factor-authentication.php:231, features/two-factor-authentication/class-two-factor-authentication.php:343
4294
  msgid "Activate"
4295
  msgstr ""
4296
 
4554
  msgid "Minimum length of %d characters."
4555
  msgstr ""
4556
 
4557
+ #: features/functions.php:794, front-end/recover.php:384, front-end/default-fields/password/password.php:59
4558
  msgid "The password must have a minimum strength of %s"
4559
  msgstr ""
4560
 
4561
+ #: features/functions.php:939
4562
  msgid "This field is required"
4563
  msgstr ""
4564
 
4565
+ #: features/functions.php:977, front-end/default-fields/recaptcha/recaptcha.php:530, front-end/default-fields/recaptcha/recaptcha.php:521, front-end/default-fields/recaptcha/recaptcha.php:586, front-end/default-fields/recaptcha/recaptcha.php:634
4566
  msgid "Please enter a (valid) reCAPTCHA value"
4567
  msgstr ""
4568
 
4569
+ #: features/functions.php:984
4570
  msgid "Incorrect phone number"
4571
  msgstr ""
4572
 
4573
+ #: features/functions.php:1048, assets/lib/wck-api/wordpress-creation-kit.php:447
4574
  msgid "Content"
4575
  msgstr ""
4576
 
4577
+ #: features/functions.php:1236
4578
  msgid "<br><br>Also, you will be able to visit your site at "
4579
  msgstr ""
4580
 
4581
+ #: features/functions.php:1249
4582
  msgid "<br><br>You can visit your site at "
4583
  msgstr ""
4584
 
4585
+ #: features/functions.php:1339
4586
  msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4587
  msgstr ""
4588
 
4589
+ #: features/functions.php:1493
4590
  msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
4591
  msgstr ""
4592
 
4593
+ #: features/functions.php:1534
4594
  msgid "You are not currently logged in."
4595
  msgstr ""
4596
 
4597
+ #: features/functions.php:1571
4598
  msgid "Profile Builder"
4599
  msgstr ""
4600
 
4601
+ #: features/functions.php:1589, features/email-confirmation/class-email-confirmation.php:92, features/email-confirmation/class-email-confirmation.php:171
4602
  msgid "User Meta"
4603
  msgstr ""
4604
 
4634
  msgid "Only an administrator can add new users."
4635
  msgstr ""
4636
 
4637
+ #: front-end/class-formbuilder.php:302, front-end/login.php:620, assets/lib/wck-api/wordpress-creation-kit.php:786
4638
  msgid "You are not allowed to do this."
4639
  msgstr ""
4640
 
4703
  msgid "Log In"
4704
  msgstr ""
4705
 
4706
+ #: front-end/login.php:274
4707
+ msgid "SUCCESS"
4708
+ msgstr ""
4709
+
4710
+ #: front-end/login.php:274
4711
+ msgid "Activation email sent to %s"
4712
+ msgstr ""
4713
+
4714
+ #: front-end/login.php:305, front-end/login.php:389, front-end/login.php:427, front-end/recover.php:18, front-end/recover.php:324, features/two-factor-authentication/class-two-factor-authentication.php:574, front-end/extra-fields/extra-fields.php:95
4715
  msgid "ERROR"
4716
  msgstr ""
4717
 
4718
+ #: front-end/login.php:305
4719
+ msgid "You need to confirm your Email Address before logging in! To resend the Confirmation Email %1$sclick here%2$s"
4720
+ msgstr ""
4721
+
4722
+ #: front-end/login.php:393
4723
  msgid "The password field is empty."
4724
  msgstr ""
4725
 
4726
+ #: front-end/login.php:397
4727
  msgid "The password you entered is incorrect."
4728
  msgstr ""
4729
 
4730
+ #: front-end/login.php:406
4731
  msgid "The username field is empty"
4732
  msgstr ""
4733
 
4734
+ #: front-end/login.php:404
4735
  msgid "The username/email field is empty"
4736
  msgstr ""
4737
 
4738
+ #: front-end/login.php:402
4739
  msgid "The email field is empty."
4740
  msgstr ""
4741
 
4742
+ #: front-end/login.php:415
4743
  msgid "Invalid username."
4744
  msgstr ""
4745
 
4746
+ #: front-end/login.php:413
4747
  msgid "Invalid username or email."
4748
  msgstr ""
4749
 
4750
+ #: front-end/login.php:411
4751
  msgid "Invalid email."
4752
  msgstr ""
4753
 
4754
+ #: front-end/login.php:421
4755
  msgid "Password Lost and Found."
4756
  msgstr ""
4757
 
4758
+ #: front-end/login.php:421, front-end/login.php:568
4759
  msgid "Lost your password?"
4760
  msgstr ""
4761
 
4762
+ #: front-end/login.php:427
4763
  msgid "Both fields are empty."
4764
  msgstr ""
4765
 
4766
+ #: front-end/login.php:607, front-end/logout.php:38
4767
  msgid "Log out of this account"
4768
  msgstr ""
4769
 
4770
+ #: front-end/login.php:607, front-end/logout.php:25
4771
  msgid "Log out &raquo;"
4772
  msgstr ""
4773
 
4774
+ #: front-end/login.php:608
4775
  msgid "You are currently logged in as %1$s. %2$s"
4776
  msgstr ""
4777
 
4778
+ #: front-end/login.php:520, front-end/recover.php:122
4779
  msgid "Username or Email"
4780
  msgstr ""
4781
 
4787
  msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
4788
  msgstr ""
4789
 
4790
+ #: front-end/recover.php:93
4791
  msgid "Reset Password"
4792
  msgstr ""
4793
 
4794
+ #: front-end/recover.php:121
4795
  msgid "Please enter your username or email address."
4796
  msgstr ""
4797
 
4798
+ #: front-end/recover.php:117
4799
  msgid "Please enter your email address."
4800
  msgstr ""
4801
 
4802
+ #: front-end/recover.php:125
4803
  msgid "You will receive a link to create a new password via email."
4804
  msgstr ""
4805
 
4806
+ #: front-end/recover.php:138
4807
  msgid "Get New Password"
4808
  msgstr ""
4809
 
4810
+ #: front-end/recover.php:184
4811
  msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
4812
  msgstr ""
4813
 
4814
+ #: front-end/recover.php:187
4815
  msgid "Password Reset from \"%1$s\""
4816
  msgstr ""
4817
 
4818
+ #: front-end/recover.php:214
4819
  msgid "You have successfully reset your password."
4820
  msgstr ""
4821
 
4822
+ #: front-end/recover.php:216
4823
  msgid "Password Successfully Reset for %1$s on \"%2$s\""
4824
  msgstr ""
4825
 
4826
+ #: front-end/recover.php:234
4827
  msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
4828
  msgstr ""
4829
 
4830
+ #: front-end/recover.php:269
4831
  msgid "You are already logged in. You can change your password on the edit profile form."
4832
  msgstr ""
4833
 
4834
+ #: front-end/recover.php:427
4835
  msgid "The password must not be empty!"
4836
  msgstr ""
4837
 
4838
+ #: front-end/recover.php:363
4839
  msgid "The key cannot be empty!"
4840
  msgstr ""
4841
 
4842
+ #: front-end/recover.php:369, front-end/recover.php:453
4843
  msgid "Invalid key!"
4844
  msgstr ""
4845
 
4846
+ #: front-end/recover.php:374
4847
  msgid "The entered passwords don't match!"
4848
  msgstr ""
4849
 
4850
+ #: front-end/recover.php:380, front-end/default-fields/password/password.php:55
4851
  msgid "The password must have the minimum length of %s characters"
4852
  msgstr ""
4853
 
4854
+ #: front-end/recover.php:391
4855
  msgid "Your password has been successfully changed!"
4856
  msgstr ""
4857
 
4858
+ #: front-end/recover.php:297
4859
  msgid "The username entered wasn't found in the database!"
4860
  msgstr ""
4861
 
4862
+ #: front-end/recover.php:297
4863
  msgid "Please check that you entered the correct username."
4864
  msgstr ""
4865
 
4866
+ #: front-end/recover.php:340
4867
  msgid "The email address entered wasn't found in the database!"
4868
  msgstr ""
4869
 
4870
+ #: front-end/recover.php:340
4871
  msgid "Please check that you entered the correct email address."
4872
  msgstr ""
4873
 
4874
+ #: front-end/recover.php:310
4875
  msgid "Check your email for the confirmation link."
4876
  msgstr ""
4877
 
4878
+ #: front-end/recover.php:324
4879
  msgid "There was an error while trying to send the activation link to %1$s!"
4880
  msgstr ""
4881
 
4882
+ #: front-end/recover.php:453
4883
  msgid "ERROR:"
4884
  msgstr ""
4885
 
5192
  msgid "Available Tags"
5193
  msgstr ""
5194
 
5195
+ #: add-ons/email-customizer/email-customizer.php:11, add-ons/user-listing/userlisting.php:248
5196
  msgid "User Fields Tags"
5197
  msgstr ""
5198
 
5204
  msgid "Site Name"
5205
  msgstr ""
5206
 
5207
+ #: add-ons/email-customizer/email-customizer.php:25, add-ons/user-listing/userlisting.php:174
5208
  msgid "User Id"
5209
  msgstr ""
5210
 
5469
  msgid "No Edit-profile Forms found in trash"
5470
  msgstr ""
5471
 
5472
+ #: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:2326
5473
  msgid "Shortcode"
5474
  msgstr ""
5475
 
5476
+ #: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:2347
5477
  msgid "(no title)"
5478
  msgstr ""
5479
 
5480
+ #: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:2369
5481
  msgid "Use this shortcode on the page you want the form to be displayed:"
5482
  msgstr ""
5483
 
5484
+ #: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:2373
5485
  msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5486
  msgstr ""
5487
 
5488
+ #: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:2367
5489
  msgid "The shortcode will be available after you publish this form."
5490
  msgstr ""
5491
 
5492
+ #: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:2406
5493
  msgid "Form Shortcode"
5494
  msgstr ""
5495
 
5613
  msgid "Are you sure you want to delete this?"
5614
  msgstr ""
5615
 
5616
+ #: add-ons/user-listing/one-map-listing.php:441
5617
  msgid "Please wait while the pins are loading..."
5618
  msgstr ""
5619
 
5620
+ #: add-ons/user-listing/one-map-listing.php:556
5621
  msgid "The API Key was not provided."
5622
  msgstr ""
5623
 
5653
  msgid "Display name as"
5654
  msgstr ""
5655
 
5656
+ #: add-ons/user-listing/userlisting.php:164, add-ons/user-listing/userlisting.php:334, add-ons/user-listing/userlisting.php:895, add-ons/user-listing/userlisting.php:2440, features/admin-approval/class-admin-approval.php:178, features/roles-editor/roles-editor.php:256
5657
  msgid "Role"
5658
  msgstr ""
5659
 
5660
+ #: add-ons/user-listing/userlisting.php:165, features/roles-editor/roles-editor.php:366, features/roles-editor/roles-editor.php:530
5661
  msgid "Role Slug"
5662
  msgstr ""
5663
 
5664
+ #: add-ons/user-listing/userlisting.php:166, add-ons/user-listing/userlisting.php:2434
5665
  msgid "Registration Date"
5666
  msgstr ""
5667
 
5668
+ #: add-ons/user-listing/userlisting.php:167, add-ons/user-listing/userlisting.php:2439
5669
  msgid "Number of Posts"
5670
  msgstr ""
5671
 
5672
+ #: add-ons/user-listing/userlisting.php:171
5673
  msgid "More Info"
5674
  msgstr ""
5675
 
5676
+ #: add-ons/user-listing/userlisting.php:172
5677
  msgid "More Info Url"
5678
  msgstr ""
5679
 
5680
+ #: add-ons/user-listing/userlisting.php:173
5681
  msgid "Avatar or Gravatar"
5682
  msgstr ""
5683
 
5684
+ #: add-ons/user-listing/userlisting.php:175
5685
  msgid "User Nicename"
5686
  msgstr ""
5687
 
5688
+ #: add-ons/user-listing/userlisting.php:217
5689
  msgid "Pagination"
5690
  msgstr ""
5691
 
5692
+ #: add-ons/user-listing/userlisting.php:218
5693
  msgid "Search all Fields"
5694
  msgstr ""
5695
 
5696
+ #: add-ons/user-listing/userlisting.php:219, add-ons/user-listing/userlisting.php:2518
5697
  msgid "Faceted Menus"
5698
  msgstr ""
5699
 
5700
+ #: add-ons/user-listing/userlisting.php:220
5701
  msgid "User Count"
5702
  msgstr ""
5703
 
5704
+ #: add-ons/user-listing/userlisting.php:227
5705
  msgid "Map of listed users"
5706
  msgstr ""
5707
 
5708
+ #: add-ons/user-listing/userlisting.php:254
5709
  msgid "Sort Tags"
5710
  msgstr ""
5711
 
5712
+ #: add-ons/user-listing/userlisting.php:258, add-ons/user-listing/userlisting.php:282
5713
  msgid "Extra Functions"
5714
  msgstr ""
5715
 
5716
+ #: add-ons/user-listing/userlisting.php:284
5717
  msgid "Go Back Link"
5718
  msgstr ""
5719
 
5720
+ #: add-ons/user-listing/userlisting.php:302
5721
  msgid "All-userlisting Template"
5722
  msgstr ""
5723
 
5724
+ #: add-ons/user-listing/userlisting.php:305
5725
  msgid "Single-userlisting Template"
5726
  msgstr ""
5727
 
5728
+ #: add-ons/user-listing/userlisting.php:331
5729
  msgid "Avatar"
5730
  msgstr ""
5731
 
5732
+ #: add-ons/user-listing/userlisting.php:333, add-ons/user-listing/userlisting.php:2435, features/admin-approval/class-admin-approval.php:175
5733
  msgid "Firstname"
5734
  msgstr ""
5735
 
5736
+ #: add-ons/user-listing/userlisting.php:335, add-ons/user-listing/userlisting.php:880, features/roles-editor/roles-editor.php:451
5737
  msgid "Posts"
5738
  msgstr ""
5739
 
5740
+ #: add-ons/user-listing/userlisting.php:336, add-ons/user-listing/userlisting.php:862
5741
  msgid "Sign-up Date"
5742
  msgstr ""
5743
 
5744
+ #: add-ons/user-listing/userlisting.php:337
5745
  msgid "More"
5746
  msgstr ""
5747
 
5748
+ #: add-ons/user-listing/userlisting.php:432
5749
  msgid "You do not have permission to view this user list."
5750
  msgstr ""
5751
 
5752
+ #: add-ons/user-listing/userlisting.php:445
5753
  msgid "You do not have the required user role to view this user list."
5754
  msgstr ""
5755
 
5756
+ #: add-ons/user-listing/userlisting.php:469
5757
  msgid "User not found"
5758
  msgstr ""
5759
 
5760
+ #: add-ons/user-listing/userlisting.php:889, add-ons/user-listing/userlisting.php:2446
5761
  msgid "Jabber"
5762
  msgstr ""
5763
 
5764
+ #: add-ons/user-listing/userlisting.php:886, add-ons/user-listing/userlisting.php:2445
5765
  msgid "Yim"
5766
  msgstr ""
5767
 
5768
+ #: add-ons/user-listing/userlisting.php:883, add-ons/user-listing/userlisting.php:2444
5769
  msgid "Aim"
5770
  msgstr ""
5771
 
5772
+ #: add-ons/user-listing/userlisting.php:871, add-ons/user-listing/userlisting.php:2437
5773
  msgid "Display Name"
5774
  msgstr ""
5775
 
5776
+ #: add-ons/user-listing/userlisting.php:856
 
 
 
 
5777
  msgid "First/Lastname"
5778
  msgstr ""
5779
 
5780
+ #: add-ons/user-listing/userlisting.php:1176, add-ons/user-listing/userlisting.php:1660, add-ons/user-listing/userlisting.php:2153, add-ons/user-listing/userlisting.php:2638
5781
  msgid "Search Users by All Fields"
5782
  msgstr ""
5783
 
5784
+ #: add-ons/user-listing/userlisting.php:1453
5785
  msgid "Click here to see more information about this user."
5786
  msgstr ""
5787
 
5788
+ #: add-ons/user-listing/userlisting.php:1450
5789
  msgid "Click here to see more information about this user"
5790
  msgstr ""
5791
 
5792
+ #: add-ons/user-listing/userlisting.php:1450, add-ons/user-listing/userlisting.php:1450
5793
  msgid "More..."
5794
  msgstr ""
5795
 
5796
+ #: add-ons/user-listing/userlisting.php:1480
5797
  msgid "View Map"
5798
  msgstr ""
5799
 
5800
+ #: add-ons/user-listing/userlisting.php:1617, add-ons/user-listing/userlisting.php:1614
5801
  msgid "Click here to go back"
5802
  msgstr ""
5803
 
5804
+ #: add-ons/user-listing/userlisting.php:1614, add-ons/user-listing/userlisting.php:1614
5805
  msgid "Back"
5806
  msgstr ""
5807
 
5808
+ #: add-ons/user-listing/userlisting.php:1679
5809
  msgid "You don't have any pagination settings on this userlisting!"
5810
  msgstr ""
5811
 
5812
+ #: add-ons/user-listing/userlisting.php:1647
5813
  msgid "&laquo;&laquo; First"
5814
  msgstr ""
5815
 
5816
+ #: add-ons/user-listing/userlisting.php:1648
5817
  msgid "&laquo; Prev"
5818
  msgstr ""
5819
 
5820
+ #: add-ons/user-listing/userlisting.php:1649
5821
  msgid "Next &raquo; "
5822
  msgstr ""
5823
 
5824
+ #: add-ons/user-listing/userlisting.php:1650
5825
  msgid "Last &raquo;&raquo;"
5826
  msgstr ""
5827
 
5828
+ #: add-ons/user-listing/userlisting.php:1728
5829
  msgid "Show All"
5830
  msgstr ""
5831
 
5832
+ #: add-ons/user-listing/userlisting.php:1804, admin/advanced-settings/includes/views/view-fields.php:78
5833
  msgid "Choose..."
5834
  msgstr ""
5835
 
5836
+ #: add-ons/user-listing/userlisting.php:1900
5837
  msgid "No options available"
5838
  msgstr ""
5839
 
5840
+ #: add-ons/user-listing/userlisting.php:2055
5841
  msgid "Remove All Filters"
5842
  msgstr ""
5843
 
5844
+ #: add-ons/user-listing/userlisting.php:2170
5845
  msgid "Search"
5846
  msgstr ""
5847
 
5848
+ #: add-ons/user-listing/userlisting.php:2171
5849
  msgid "Clear Results"
5850
  msgstr ""
5851
 
5852
+ #: add-ons/user-listing/userlisting.php:2376, add-ons/user-listing/userlisting.php:2380
5853
  msgid "Extra shortcode parameters"
5854
  msgstr ""
5855
 
5856
+ #: add-ons/user-listing/userlisting.php:2378
5857
  msgid "View all extra shortcode parameters"
5858
  msgstr ""
5859
 
5860
+ #: add-ons/user-listing/userlisting.php:2383
5861
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5862
  msgstr ""
5863
 
5864
+ #: add-ons/user-listing/userlisting.php:2384
5865
  msgid "Example:"
5866
  msgstr ""
5867
 
5868
+ #: add-ons/user-listing/userlisting.php:2386
5869
  msgid "Remember though, that the field-value combination must exist in the database."
5870
  msgstr ""
5871
 
5872
+ #: add-ons/user-listing/userlisting.php:2392
5873
  msgid "displays only the users that you specified the user_id for"
5874
  msgstr ""
5875
 
5876
+ #: add-ons/user-listing/userlisting.php:2398
5877
  msgid "displays all users except the ones you specified the user_id for"
5878
  msgstr ""
5879
 
5880
+ #: add-ons/user-listing/userlisting.php:2436, features/admin-approval/class-admin-approval.php:176
5881
+ msgid "Lastname"
5882
+ msgstr ""
5883
+
5884
+ #: add-ons/user-listing/userlisting.php:2461
5885
  msgid "Random (very slow on large databases > 10K user)"
5886
  msgstr ""
5887
 
5888
+ #: add-ons/user-listing/userlisting.php:2464
5889
  msgid "Ascending"
5890
  msgstr ""
5891
 
5892
+ #: add-ons/user-listing/userlisting.php:2465
5893
  msgid "Descending"
5894
  msgstr ""
5895
 
5896
+ #: add-ons/user-listing/userlisting.php:2470
5897
  msgid "Roles to Display"
5898
  msgstr ""
5899
 
5900
+ #: add-ons/user-listing/userlisting.php:2470
5901
  msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5902
  msgstr ""
5903
 
5904
+ #: add-ons/user-listing/userlisting.php:2471
5905
  msgid "Number of Users/Page"
5906
  msgstr ""
5907
 
5908
+ #: add-ons/user-listing/userlisting.php:2471
5909
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
5910
  msgstr ""
5911
 
5912
+ #: add-ons/user-listing/userlisting.php:2472
5913
  msgid "Default Sorting Criteria"
5914
  msgstr ""
5915
 
5916
+ #: add-ons/user-listing/userlisting.php:2472
5917
  msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5918
  msgstr ""
5919
 
5920
+ #: add-ons/user-listing/userlisting.php:2473
5921
  msgid "Default Sorting Order"
5922
  msgstr ""
5923
 
5924
+ #: add-ons/user-listing/userlisting.php:2473
5925
  msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5926
  msgstr ""
5927
 
5928
+ #: add-ons/user-listing/userlisting.php:2474
5929
  msgid "Avatar Size (All-userlisting)"
5930
  msgstr ""
5931
 
5932
+ #: add-ons/user-listing/userlisting.php:2474
5933
  msgid "Set the avatar size on the all-userlisting only"
5934
  msgstr ""
5935
 
5936
+ #: add-ons/user-listing/userlisting.php:2475
5937
  msgid "Avatar Size (Single-userlisting)"
5938
  msgstr ""
5939
 
5940
+ #: add-ons/user-listing/userlisting.php:2475
5941
  msgid "Set the avatar size on the single-userlisting only"
5942
  msgstr ""
5943
 
5944
+ #: add-ons/user-listing/userlisting.php:2476
5945
  msgid "Visible only to logged in users?"
5946
  msgstr ""
5947
 
5948
+ #: add-ons/user-listing/userlisting.php:2476
5949
  msgid "The userlisting will only be visible only to the logged in users"
5950
  msgstr ""
5951
 
5952
+ #: add-ons/user-listing/userlisting.php:2477
5953
  msgid "Visible to following Roles"
5954
  msgstr ""
5955
 
5956
+ #: add-ons/user-listing/userlisting.php:2477
5957
  msgid "The userlisting will only be visible to the following roles"
5958
  msgstr ""
5959
 
5960
+ #: add-ons/user-listing/userlisting.php:2483
5961
  msgid "Userlisting Settings"
5962
  msgstr ""
5963
 
5964
+ #: add-ons/user-listing/userlisting.php:2508
5965
  msgid "Label"
5966
  msgstr ""
5967
 
5968
+ #: add-ons/user-listing/userlisting.php:2508
5969
  msgid "Choose the facet name that appears on the frontend"
5970
  msgstr ""
5971
 
5972
+ #: add-ons/user-listing/userlisting.php:2509
5973
  msgid "Facet Type"
5974
  msgstr ""
5975
 
5976
+ #: add-ons/user-listing/userlisting.php:2509
5977
  msgid "Choose the facet menu type"
5978
  msgstr ""
5979
 
5980
+ #: add-ons/user-listing/userlisting.php:2510
5981
  msgid "Facet Meta"
5982
  msgstr ""
5983
 
5984
+ #: add-ons/user-listing/userlisting.php:2510
5985
  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."
5986
  msgstr ""
5987
 
5988
+ #: add-ons/user-listing/userlisting.php:2511
5989
  msgid "Behaviour"
5990
  msgstr ""
5991
 
5992
+ #: add-ons/user-listing/userlisting.php:2511
5993
  msgid "Narrow the results"
5994
  msgstr ""
5995
 
5996
+ #: add-ons/user-listing/userlisting.php:2511
5997
  msgid "Expand the results"
5998
  msgstr ""
5999
 
6000
+ #: add-ons/user-listing/userlisting.php:2511
6001
  msgid "Choose how multiple selections affect the results"
6002
  msgstr ""
6003
 
6004
+ #: add-ons/user-listing/userlisting.php:2512
6005
  msgid "Visible choices"
6006
  msgstr ""
6007
 
6008
+ #: add-ons/user-listing/userlisting.php:2512
6009
  msgid "Show a toggle link after this many choices. Leave blank for all"
6010
  msgstr ""
6011
 
6012
+ #: add-ons/user-listing/userlisting.php:2537
6013
  msgid "Search Fields"
6014
  msgstr ""
6015
 
6016
+ #: add-ons/user-listing/userlisting.php:2537
6017
  msgid "Choose the fields in which the Search Field will look in"
6018
  msgstr ""
6019
 
6020
+ #: add-ons/user-listing/userlisting.php:2542
6021
  msgid "Search Settings"
6022
  msgstr ""
6023
 
6024
+ #: add-ons/user-listing/userlisting.php:2614
6025
  msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
6026
  msgstr ""
6027
 
6028
+ #: add-ons/user-listing/userlisting.php:2614
6029
  msgid "You can find it in the Profile Builder menu."
6030
  msgstr ""
6031
 
6032
+ #: add-ons/user-listing/userlisting.php:2777
6033
  msgid "No results found!"
6034
  msgstr ""
6035
 
6257
  msgid "Allow only logged in users to see this content."
6258
  msgstr ""
6259
 
6260
+ #: features/content-restriction/class-elementor-content-restriction.php:102
6261
+ msgid "Restrict to logged out users"
6262
+ msgstr ""
6263
+
6264
+ #: features/content-restriction/class-elementor-content-restriction.php:104
6265
+ msgid "Allow only logged out users to see this content."
6266
+ msgstr ""
6267
+
6268
+ #: features/content-restriction/class-elementor-content-restriction.php:114
6269
  msgid "Restrict by User Roles"
6270
  msgstr ""
6271
 
6272
+ #: features/content-restriction/class-elementor-content-restriction.php:129
6273
  msgid "Allow users which have the specified role to see this content."
6274
  msgstr ""
6275
 
6276
+ #: features/content-restriction/class-elementor-content-restriction.php:138, features/content-restriction/content-restriction-meta-box.php:127
6277
  msgid "Restriction Messages"
6278
  msgstr ""
6279
 
6280
+ #: features/content-restriction/class-elementor-content-restriction.php:146
6281
  msgid "Enable Restriction Messages"
6282
  msgstr ""
6283
 
6284
+ #: features/content-restriction/class-elementor-content-restriction.php:148
6285
  msgid "Replace hidden content with the default messages from PB -> Settings -> Content Restriction, a custom message or an Elementor Template."
6286
  msgstr ""
6287
 
6288
+ #: features/content-restriction/class-elementor-content-restriction.php:154, features/content-restriction/content-restriction-meta-box.php:133
6289
  msgid "Enable Custom Messages"
6290
  msgstr ""
6291
 
6292
+ #: features/content-restriction/class-elementor-content-restriction.php:156
6293
  msgid "Add a custom message or template."
6294
  msgstr ""
6295
 
6296
+ #: features/content-restriction/class-elementor-content-restriction.php:165
6297
  msgid "Content type"
6298
  msgstr ""
6299
 
6300
+ #: features/content-restriction/class-elementor-content-restriction.php:169
6301
  msgid "Text"
6302
  msgstr ""
6303
 
6304
+ #: features/content-restriction/class-elementor-content-restriction.php:173
6305
  msgid "Template"
6306
  msgstr ""
6307
 
6308
+ #: features/content-restriction/class-elementor-content-restriction.php:190
6309
  msgid "Select Template"
6310
  msgstr ""
6311
 
6760
  msgid "Edit User Roles"
6761
  msgstr ""
6762
 
6763
+ #: features/two-factor-authentication/class-two-factor-authentication.php:68
6764
  msgid "Valid"
6765
  msgstr ""
6766
 
6767
+ #: features/two-factor-authentication/class-two-factor-authentication.php:69
6768
  msgid "Invalid"
6769
  msgstr ""
6770
 
6771
+ #: features/two-factor-authentication/class-two-factor-authentication.php:109, features/two-factor-authentication/class-two-factor-authentication.php:339
6772
  msgid "Two-Factor Authentication Settings"
6773
  msgstr ""
6774
 
6775
+ #: features/two-factor-authentication/class-two-factor-authentication.php:121
6776
  msgid "Enable Two-Factor Authentication"
6777
  msgstr ""
6778
 
6779
+ #: features/two-factor-authentication/class-two-factor-authentication.php:128
6780
  msgid "Activate the Authenticator functionality"
6781
  msgstr ""
6782
 
6783
+ #: features/two-factor-authentication/class-two-factor-authentication.php:133
6784
  msgid "Enable Authenticator for these user roles"
6785
  msgstr ""
6786
 
6787
+ #: features/two-factor-authentication/class-two-factor-authentication.php:150
6788
  msgid "\"*\" - Two-Factor Authentication will be enabled for all user roles."
6789
  msgstr ""
6790
 
6791
+ #: features/two-factor-authentication/class-two-factor-authentication.php:177, features/two-factor-authentication/class-two-factor-authentication.php:178
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6792
  msgid "2fa_settings"
6793
  msgstr ""
6794
 
6795
+ #: features/two-factor-authentication/class-two-factor-authentication.php:236, features/two-factor-authentication/class-two-factor-authentication.php:349
6796
  msgid "Relaxed Mode"
6797
  msgstr ""
6798
 
6799
+ #: features/two-factor-authentication/class-two-factor-authentication.php:238, features/two-factor-authentication/class-two-factor-authentication.php:352
6800
+ msgid "Allow for more time drift on your phone clock ( &#177;4 min )."
6801
  msgstr ""
6802
 
6803
+ #: features/two-factor-authentication/class-two-factor-authentication.php:243
6804
  msgid "Description that you'll see in the Authenticator app."
6805
  msgstr ""
6806
 
6807
+ #: features/two-factor-authentication/class-two-factor-authentication.php:246, features/two-factor-authentication/class-two-factor-authentication.php:363
6808
  msgid "Secret"
6809
  msgstr ""
6810
 
6811
+ #: features/two-factor-authentication/class-two-factor-authentication.php:250
6812
  msgid "New Secret"
6813
  msgstr ""
6814
 
6815
+ #: features/two-factor-authentication/class-two-factor-authentication.php:251
6816
  msgid "QR Code"
6817
  msgstr ""
6818
 
6819
+ #: features/two-factor-authentication/class-two-factor-authentication.php:254, features/two-factor-authentication/class-two-factor-authentication.php:373
6820
  msgid "Scan this with the Authenticator app:"
6821
  msgstr ""
6822
 
6823
+ #: features/two-factor-authentication/class-two-factor-authentication.php:258, features/two-factor-authentication/class-two-factor-authentication.php:379
6824
  msgid "Verify TOTP"
6825
  msgstr ""
6826
 
6827
+ #: features/two-factor-authentication/class-two-factor-authentication.php:261, features/two-factor-authentication/class-two-factor-authentication.php:382
6828
  msgid "Check"
6829
  msgstr ""
6830
 
6831
+ #: features/two-factor-authentication/class-two-factor-authentication.php:359
 
 
 
 
6832
  msgid "Description that you'll see in the Authenticator app on your phone."
6833
  msgstr ""
6834
 
6835
+ #: features/two-factor-authentication/class-two-factor-authentication.php:366
6836
  msgid "Create new secret"
6837
  msgstr ""
6838
 
6839
+ #: features/two-factor-authentication/class-two-factor-authentication.php:367
6840
  msgid "Show/Hide QR code"
6841
  msgstr ""
6842
 
6843
+ #: features/two-factor-authentication/class-two-factor-authentication.php:435
 
 
 
 
6844
  msgid "Please verify TOTP to change Two-Factor Authentication settings"
6845
  msgstr ""
6846
 
6847
+ #: features/two-factor-authentication/class-two-factor-authentication.php:570, features/two-factor-authentication/class-two-factor-authentication.php:684, features/two-factor-authentication/class-two-factor-authentication.php:688
6848
+ msgid "Please enter the code from your Authenticator app."
6849
  msgstr ""
6850
 
6851
+ #: features/two-factor-authentication/class-two-factor-authentication.php:574
6852
  msgid "Your Authenticator code was incorrect. Please try again."
6853
  msgstr ""
6854
 
6855
+ #: features/two-factor-authentication/class-two-factor-authentication.php:712
 
 
 
 
6856
  msgid "Authenticator Code"
6857
  msgstr ""
6858
 
6938
  msgid "Please enter a value for the required field "
6939
  msgstr ""
6940
 
6941
+ #: assets/misc/elementor/class-elementor.php:74
6942
  msgid "Profile Builder Forms"
6943
  msgstr ""
6944
 
7657
  #: assets/misc/elementor/widgets/class-pb-widget-rp.php:55
7658
  msgid "There are no available controls for the Password Recovery form"
7659
  msgstr ""
7660
+
7661
+ #: assets/misc/elementor/widgets/class-pb-widget-ul.php:76
7662
+ msgid "Listing Settings"
7663
+ msgstr ""
7664
+
7665
+ #: assets/misc/elementor/widgets/class-pb-widget-ul.php:105
7666
+ msgid "Single"
7667
+ msgstr ""
7668
+
7669
+ #: assets/misc/elementor/widgets/class-pb-widget-ul.php:117
7670
+ msgid "Meta Key"
7671
+ msgstr ""
7672
+
7673
+ #: assets/misc/elementor/widgets/class-pb-widget-ul.php:119
7674
+ msgid "Enter Meta Key"
7675
+ msgstr ""
7676
+
7677
+ #: assets/misc/elementor/widgets/class-pb-widget-ul.php:130
7678
+ msgid "Meta Value"
7679
+ msgstr ""
7680
+
7681
+ #: assets/misc/elementor/widgets/class-pb-widget-ul.php:132
7682
+ msgid "Enter Meta Value"
7683
+ msgstr ""
7684
+
7685
+ #: assets/misc/elementor/widgets/class-pb-widget-ul.php:144
7686
+ msgid "Include"
7687
+ msgstr ""
7688
+
7689
+ #: assets/misc/elementor/widgets/class-pb-widget-ul.php:146, assets/misc/elementor/widgets/class-pb-widget-ul.php:159
7690
+ msgid "Enter User IDs"
7691
+ msgstr ""
7692
+
7693
+ #: assets/misc/elementor/widgets/class-pb-widget-ul.php:157
7694
+ msgid "Exclude"
7695
+ msgstr ""
7696
+
7697
+ #: assets/misc/elementor/widgets/class-pb-widget-ul.php:172
7698
+ msgid "Enter User ID"
7699
+ msgstr ""