Version Description
- Added nocache_headers before some wp_redirects to prevent issues with private website and other redirects
- Improved error messages on password recover form if Recaptcha was present
- Allow the GDPR Checkbox field to be added to the Form Fields list again once it has been deleted.
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 3.2.6 |
Comparing to | |
See all releases |
Code changes from version 3.2.5 to 3.2.6
- admin/manage-fields.php +4 -2
- features/content-restriction/content-restriction-filtering.php +4 -2
- features/content-restriction/content-restriction-functions.php +1 -0
- features/functions.php +3 -0
- front-end/recover.php +14 -4
- index.php +2 -2
- readme.txt +7 -2
- translation/profile-builder.catalog.php +2 -0
- translation/profile-builder.pot +155 -147
admin/manage-fields.php
CHANGED
@@ -1060,6 +1060,8 @@ function wppb_return_unique_field_list( $only_default_fields = false ){
|
|
1060 |
$unique_field_list[] = 'Default - Biographical Info';
|
1061 |
$unique_field_list[] = 'Default - Display name publicly as';
|
1062 |
|
|
|
|
|
1063 |
if ( wppb_can_users_signup_blog() ) {
|
1064 |
$unique_field_list[] = 'Default - Blog Details';
|
1065 |
}
|
@@ -1510,9 +1512,9 @@ function wppb_delete_user_map_markers( $user_id, $meta_name ) {
|
|
1510 |
|
1511 |
global $wpdb;
|
1512 |
|
1513 |
-
$meta_name .= '_';
|
1514 |
|
1515 |
-
$delete = $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->usermeta} WHERE user_id=%d AND meta_key LIKE %s", $user_id,
|
1516 |
|
1517 |
wp_cache_delete( $user_id, 'user_meta' );
|
1518 |
|
1060 |
$unique_field_list[] = 'Default - Biographical Info';
|
1061 |
$unique_field_list[] = 'Default - Display name publicly as';
|
1062 |
|
1063 |
+
$unique_field_list[] = 'GDPR Checkbox';
|
1064 |
+
|
1065 |
if ( wppb_can_users_signup_blog() ) {
|
1066 |
$unique_field_list[] = 'Default - Blog Details';
|
1067 |
}
|
1512 |
|
1513 |
global $wpdb;
|
1514 |
|
1515 |
+
$meta_name .= '\_';
|
1516 |
|
1517 |
+
$delete = $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->usermeta} WHERE user_id=%d AND meta_key LIKE %s", $user_id, $meta_name . '%' ) );
|
1518 |
|
1519 |
wp_cache_delete( $user_id, 'user_meta' );
|
1520 |
|
features/content-restriction/content-restriction-filtering.php
CHANGED
@@ -32,8 +32,10 @@ function wppb_content_restriction_filter_content( $content, $post = null ) {
|
|
32 |
}
|
33 |
|
34 |
// Get user roles that have access to this post
|
35 |
-
$
|
36 |
-
|
|
|
|
|
37 |
|
38 |
if( empty( $user_status ) && empty( $post_user_roles ) ) {
|
39 |
return $content;
|
32 |
}
|
33 |
|
34 |
// Get user roles that have access to this post
|
35 |
+
if ( isset( $post ) && isset( $post->ID ) ) {
|
36 |
+
$user_status = get_post_meta($post->ID, 'wppb-content-restrict-user-status', true);
|
37 |
+
$post_user_roles = get_post_meta($post->ID, 'wppb-content-restrict-user-role');
|
38 |
+
}
|
39 |
|
40 |
if( empty( $user_status ) && empty( $post_user_roles ) ) {
|
41 |
return $content;
|
features/content-restriction/content-restriction-functions.php
CHANGED
@@ -172,6 +172,7 @@ function wppb_content_restriction_post_redirect() {
|
|
172 |
}
|
173 |
|
174 |
// Redirect
|
|
|
175 |
wp_redirect( wppb_add_missing_http( $redirect_url ) );
|
176 |
exit;
|
177 |
|
172 |
}
|
173 |
|
174 |
// Redirect
|
175 |
+
nocache_headers();
|
176 |
wp_redirect( wppb_add_missing_http( $redirect_url ) );
|
177 |
exit;
|
178 |
|
features/functions.php
CHANGED
@@ -263,6 +263,7 @@ function wppb_activate_account_check(){
|
|
263 |
|
264 |
}elseif ( strpos( $post->post_content, '[wppb-register' ) === false ){
|
265 |
//no activation page was selected, and the sent link pointed to the home url
|
|
|
266 |
wp_redirect( apply_filters( 'wppb_activatate_account_redirect_url', WPPB_PLUGIN_URL.'assets/misc/fallback-page.php?activation_key='.urlencode( $activation_key ).'&site_name='.urlencode( get_bloginfo( 'name' ) ).'&site_url='.urlencode( get_bloginfo( 'url' ) ).'&message='.urlencode( $activation_message = wppb_activate_signup( $activation_key ) ), $activation_key, $activation_message ) );
|
267 |
exit;
|
268 |
}
|
@@ -1249,6 +1250,7 @@ function wppb_private_website_functionality(){
|
|
1249 |
$post_id = $post->ID;
|
1250 |
|
1251 |
if( ( !in_array( $post_id, $allowed_pages ) && $redirect_url !== strtok( wppb_curpageurl(), '?' ) ) || is_search() ){
|
|
|
1252 |
wp_safe_redirect( $redirect_url );
|
1253 |
exit;
|
1254 |
}
|
@@ -1452,6 +1454,7 @@ function wppb_gdpr_delete_user() {
|
|
1452 |
}
|
1453 |
|
1454 |
$args = array('wppb_user', 'wppb_action', 'wppb_nonce');
|
|
|
1455 |
wp_redirect(remove_query_arg($args));
|
1456 |
}
|
1457 |
}
|
263 |
|
264 |
}elseif ( strpos( $post->post_content, '[wppb-register' ) === false ){
|
265 |
//no activation page was selected, and the sent link pointed to the home url
|
266 |
+
nocache_headers();
|
267 |
wp_redirect( apply_filters( 'wppb_activatate_account_redirect_url', WPPB_PLUGIN_URL.'assets/misc/fallback-page.php?activation_key='.urlencode( $activation_key ).'&site_name='.urlencode( get_bloginfo( 'name' ) ).'&site_url='.urlencode( get_bloginfo( 'url' ) ).'&message='.urlencode( $activation_message = wppb_activate_signup( $activation_key ) ), $activation_key, $activation_message ) );
|
268 |
exit;
|
269 |
}
|
1250 |
$post_id = $post->ID;
|
1251 |
|
1252 |
if( ( !in_array( $post_id, $allowed_pages ) && $redirect_url !== strtok( wppb_curpageurl(), '?' ) ) || is_search() ){
|
1253 |
+
nocache_headers();
|
1254 |
wp_safe_redirect( $redirect_url );
|
1255 |
exit;
|
1256 |
}
|
1454 |
}
|
1455 |
|
1456 |
$args = array('wppb_user', 'wppb_action', 'wppb_nonce');
|
1457 |
+
nocache_headers();
|
1458 |
wp_redirect(remove_query_arg($args));
|
1459 |
}
|
1460 |
}
|
front-end/recover.php
CHANGED
@@ -317,9 +317,15 @@ function wppb_front_end_password_recovery(){
|
|
317 |
|
318 |
}
|
319 |
}elseif ( !email_exists( $username_email ) ){
|
320 |
-
|
321 |
-
$
|
322 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
323 |
}
|
324 |
}
|
325 |
}
|
@@ -436,7 +442,11 @@ function wppb_password_recovery_success( $message, $filter ){
|
|
436 |
|
437 |
/* function for displaying warning messages on the recover password page */
|
438 |
function wppb_password_recovery_warning( $message, $filter ){
|
439 |
-
|
|
|
|
|
|
|
|
|
440 |
}
|
441 |
|
442 |
/* function for displaying error messages on the recover password page */
|
317 |
|
318 |
}
|
319 |
}elseif ( !email_exists( $username_email ) ){
|
320 |
+
// check reCAPTCHA
|
321 |
+
$output = wppb_password_recovery_warning( '', 'wppb_recover_password_displayed_message1' );
|
322 |
+
|
323 |
+
// if there is no reCAPTCHA error show the invalid email address error
|
324 |
+
if( $output === '' ) {
|
325 |
+
$warning = __('The email address entered wasn\'t found in the database!', 'profile-builder').'<br/>'.__('Please check that you entered the correct email address.', 'profile-builder');
|
326 |
+
$warning = apply_filters('wppb_recover_password_sent_message2', $warning);
|
327 |
+
$output .= '<p class="wppb-warning">'.$warning.'</p>';
|
328 |
+
}
|
329 |
}
|
330 |
}
|
331 |
}
|
442 |
|
443 |
/* function for displaying warning messages on the recover password page */
|
444 |
function wppb_password_recovery_warning( $message, $filter ){
|
445 |
+
if( $message !== '' ) {
|
446 |
+
return apply_filters( $filter, '<p class="wppb-warning">'.$message.'</p>', $message );
|
447 |
+
} else {
|
448 |
+
return apply_filters( $filter, '', $message );
|
449 |
+
}
|
450 |
}
|
451 |
|
452 |
/* function for displaying error messages on the recover password page */
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
-
Version: 3.2.
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
@@ -63,7 +63,7 @@ function wppb_free_plugin_init() {
|
|
63 |
*
|
64 |
*
|
65 |
*/
|
66 |
-
define('PROFILE_BUILDER_VERSION', '3.2.
|
67 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
68 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
69 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
+
Version: 3.2.6
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
63 |
*
|
64 |
*
|
65 |
*/
|
66 |
+
define('PROFILE_BUILDER_VERSION', '3.2.6' );
|
67 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
68 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
69 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungurea
|
|
3 |
Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
|
5 |
Requires at least: 3.1
|
6 |
-
Tested up to: 5.5
|
7 |
-
Stable tag: 3.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -169,6 +169,11 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
169 |
12. Role Editor
|
170 |
|
171 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
172 |
= 3.2.5 =
|
173 |
* Removed a deprecated jQuery event from our code
|
174 |
* Added a filter for form request data
|
3 |
Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
|
5 |
Requires at least: 3.1
|
6 |
+
Tested up to: 5.5.1
|
7 |
+
Stable tag: 3.2.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
169 |
12. Role Editor
|
170 |
|
171 |
== Changelog ==
|
172 |
+
= 3.2.6 =
|
173 |
+
* Added nocache_headers before some wp_redirects to prevent issues with private website and other redirects
|
174 |
+
* Improved error messages on password recover form if Recaptcha was present
|
175 |
+
* Allow the GDPR Checkbox field to be added to the Form Fields list again once it has been deleted.
|
176 |
+
|
177 |
= 3.2.5 =
|
178 |
* Removed a deprecated jQuery event from our code
|
179 |
* Added a filter for form request data
|
translation/profile-builder.catalog.php
CHANGED
@@ -221,6 +221,8 @@
|
|
221 |
<?php __("Wrong password!", "profile-builder"); ?>
|
222 |
<?php __("Please enter a valid email!", "profile-builder"); ?>
|
223 |
<?php __("You can only login on this form.<br>Register with your social account on the register form.", "profile-builder"); ?>
|
|
|
|
|
224 |
<?php __("Please enter your Facebook email!", "profile-builder"); ?>
|
225 |
<?php __("Waiting for Twitter...", "profile-builder"); ?>
|
226 |
<?php __("Please enter your Twitter email!", "profile-builder"); ?>
|
221 |
<?php __("Wrong password!", "profile-builder"); ?>
|
222 |
<?php __("Please enter a valid email!", "profile-builder"); ?>
|
223 |
<?php __("You can only login on this form.<br>Register with your social account on the register form.", "profile-builder"); ?>
|
224 |
+
<?php __("To create a new account please confirm:", "profile-builder"); ?>
|
225 |
+
<?php __("You must agree to the Terms And Conditions to create a new account.", "profile-builder"); ?>
|
226 |
<?php __("Please enter your Facebook email!", "profile-builder"); ?>
|
227 |
<?php __("Waiting for Twitter...", "profile-builder"); ?>
|
228 |
<?php __("Please enter your Twitter email!", "profile-builder"); ?>
|
translation/profile-builder.pot
CHANGED
@@ -161,11 +161,11 @@ msgstr ""
|
|
161 |
msgid "Only Me"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: ../pb-add-on-buddypress/field-visibility.php:224, ../pb-add-on-buddypress/mustache-vars.php:
|
165 |
msgid "All Members"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: ../pb-add-on-buddypress/field-visibility.php:228, ../pb-add-on-buddypress/mustache-vars.php:
|
169 |
msgid "My Friends"
|
170 |
msgstr ""
|
171 |
|
@@ -249,15 +249,15 @@ msgstr ""
|
|
249 |
msgid "Biographical Info:"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: ../pb-add-on-buddypress/mustache-vars.php:15, ../pb-add-on-buddypress/mustache-vars.php:
|
253 |
msgid "BuddyPress Avatar"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: ../pb-add-on-buddypress/mustache-vars.php:16, ../pb-add-on-buddypress/mustache-vars.php:
|
257 |
msgid "BuddyPress Cover Photo"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: ../pb-add-on-buddypress/mustache-vars.php:17, ../pb-add-on-buddypress/mustache-vars.php:
|
261 |
msgid "BuddyPress Last Active"
|
262 |
msgstr ""
|
263 |
|
@@ -269,35 +269,35 @@ msgstr ""
|
|
269 |
msgid "BuddyPress Latest Update"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: ../pb-add-on-buddypress/mustache-vars.php:
|
273 |
msgid "Never active"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: ../pb-add-on-buddypress/mustache-vars.php:
|
277 |
msgid "Last Active"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: ../pb-add-on-buddypress/mustache-vars.php:
|
281 |
msgid "My BuddyPress Friends Tab"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: ../pb-add-on-buddypress/mustache-vars.php:
|
285 |
msgid "BuddyPress field visibility syntax"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: ../pb-add-on-buddypress/mustache-vars.php:
|
289 |
msgid "Are you sure you want to reset this template?"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: ../pb-add-on-buddypress/mustache-vars.php:
|
293 |
msgid "Reset to Default BuddyPress User Listing Templates"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: ../pb-add-on-buddypress/mustache-vars.php:
|
297 |
msgid "<b>Note:</b> This action is not reversible. All modifications to this template will be lost!"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: ../pb-add-on-buddypress/mustache-vars.php:
|
301 |
msgid "Reset template"
|
302 |
msgstr ""
|
303 |
|
@@ -453,11 +453,11 @@ msgstr ""
|
|
453 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: ../pb-add-on-field-visibility/index.php:239, ../pb-add-on-labels-edit/pble.php:381, admin/manage-fields.php:
|
457 |
msgid "Edit"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ../pb-add-on-field-visibility/index.php:239, admin/manage-fields.php:
|
461 |
msgid "Delete"
|
462 |
msgstr ""
|
463 |
|
@@ -683,7 +683,7 @@ msgstr ""
|
|
683 |
msgid "Replace labels with placeholders:"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:324, admin/general-settings.php:113, admin/general-settings.php:126, admin/general-settings.php:175, admin/general-settings.php:222, admin/general-settings.php:296, admin/private-website.php:67, admin/private-website.php:124, admin/private-website.php:137, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:18, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:34, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:18, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:66, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:181, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:197, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:217, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:240, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:261, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:279, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:132, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:149, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:164, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:184, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:201, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:239, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:260, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:280, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:302, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:16, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:32, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:48, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:64, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:53, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:75, features/content-restriction/content-restriction.php:88, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:229, modules/multiple-forms/register-forms.php:230, modules/user-listing/userlisting.php:
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
@@ -883,7 +883,7 @@ msgstr ""
|
|
883 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: ../pb-add-on-social-connect/index.php:392, features/functions.php:
|
887 |
msgid "here"
|
888 |
msgstr ""
|
889 |
|
@@ -903,39 +903,47 @@ msgstr ""
|
|
903 |
msgid "You can only login on this form.<br>Register with your social account on the register form."
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: ../pb-add-on-social-connect/index.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
907 |
msgid "Please enter your Facebook email!"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: ../pb-add-on-social-connect/index.php:
|
911 |
msgid "Waiting for Twitter..."
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: ../pb-add-on-social-connect/index.php:
|
915 |
msgid "Please enter your Twitter email!"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: ../pb-add-on-social-connect/index.php:
|
919 |
msgid "Profile Builder not active!"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: ../pb-add-on-social-connect/index.php:
|
923 |
msgid "General Settings"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: ../pb-add-on-social-connect/index.php:
|
927 |
msgid "Application Settings"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: ../pb-add-on-social-connect/index.php:
|
931 |
msgid "Appearance Settings"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: ../pb-add-on-social-connect/index.php:
|
935 |
msgid "Unlink"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: ../pb-add-on-social-connect/index.php:
|
939 |
msgid "Your account is linked with:"
|
940 |
msgstr ""
|
941 |
|
@@ -1227,7 +1235,7 @@ msgstr ""
|
|
1227 |
msgid "Edit this item"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:
|
1231 |
msgid "Cancel"
|
1232 |
msgstr ""
|
1233 |
|
@@ -1627,15 +1635,15 @@ msgstr ""
|
|
1627 |
msgid "Very weak"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: admin/admin-functions.php:137, admin/general-settings.php:282, features/functions.php:
|
1631 |
msgid "Weak"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: admin/admin-functions.php:137, admin/general-settings.php:283, features/functions.php:
|
1635 |
msgid "Medium"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: admin/admin-functions.php:137, admin/general-settings.php:284, features/functions.php:
|
1639 |
msgid "Strong"
|
1640 |
msgstr ""
|
1641 |
|
@@ -2111,11 +2119,11 @@ msgstr ""
|
|
2111 |
msgid "Username and Email"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: admin/general-settings.php:251, admin/manage-fields.php:318, front-end/login.php:246, front-end/login.php:260, front-end/login.php:391, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:121, features/admin-approval/class-admin-approval.php:166, features/email-confirmation/class-email-confirmation.php:168, modules/custom-redirects/custom_redirects_admin.php:60, modules/email-customizer/email-customizer.php:28, modules/user-listing/userlisting.php:112, modules/user-listing/userlisting.php:312, modules/user-listing/userlisting.php:807, modules/user-listing/userlisting.php:
|
2115 |
msgid "Username"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: admin/general-settings.php:252, front-end/login.php:388, modules/email-customizer/email-customizer.php:29, modules/user-listing/userlisting.php:813, modules/user-listing/userlisting.php:
|
2119 |
msgid "Email"
|
2120 |
msgstr ""
|
2121 |
|
@@ -2607,7 +2615,7 @@ msgstr ""
|
|
2607 |
msgid "Usernames cannot be changed."
|
2608 |
msgstr ""
|
2609 |
|
2610 |
-
#: admin/manage-fields.php:321, modules/user-listing/userlisting.php:846, modules/user-listing/userlisting.php:
|
2611 |
msgid "Nickname"
|
2612 |
msgstr ""
|
2613 |
|
@@ -2615,7 +2623,7 @@ msgstr ""
|
|
2615 |
msgid "Display name publicly as"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
-
#: admin/manage-fields.php:325, modules/email-customizer/email-customizer.php:33, modules/user-listing/userlisting.php:121, modules/user-listing/userlisting.php:828, modules/user-listing/userlisting.php:
|
2619 |
msgid "Website"
|
2620 |
msgstr ""
|
2621 |
|
@@ -2631,7 +2639,7 @@ msgstr ""
|
|
2631 |
msgid "Jabber / Google Talk"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
-
#: admin/manage-fields.php:335, modules/user-listing/userlisting.php:124, modules/user-listing/userlisting.php:831, modules/user-listing/userlisting.php:
|
2635 |
msgid "Biographical Info"
|
2636 |
msgstr ""
|
2637 |
|
@@ -4115,131 +4123,131 @@ msgstr ""
|
|
4115 |
msgid "Zimbabwe Dollar"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
-
#: admin/manage-fields.php:
|
4119 |
msgid ""
|
4120 |
"That field is already added in this form\n"
|
4121 |
""
|
4122 |
msgstr ""
|
4123 |
|
4124 |
-
#: admin/manage-fields.php:
|
4125 |
msgid ""
|
4126 |
"You must select a field\n"
|
4127 |
""
|
4128 |
msgstr ""
|
4129 |
|
4130 |
-
#: admin/manage-fields.php:
|
4131 |
msgid ""
|
4132 |
"Please choose a different field type as this one already exists in your form (must be unique)\n"
|
4133 |
""
|
4134 |
msgstr ""
|
4135 |
|
4136 |
-
#: admin/manage-fields.php:
|
4137 |
msgid ""
|
4138 |
"The entered avatar size is not numerical\n"
|
4139 |
""
|
4140 |
msgstr ""
|
4141 |
|
4142 |
-
#: admin/manage-fields.php:
|
4143 |
msgid ""
|
4144 |
"The entered avatar size is not between 20 and 200\n"
|
4145 |
""
|
4146 |
msgstr ""
|
4147 |
|
4148 |
-
#: admin/manage-fields.php:
|
4149 |
msgid ""
|
4150 |
"You must enter a value for the row number\n"
|
4151 |
""
|
4152 |
msgstr ""
|
4153 |
|
4154 |
-
#: admin/manage-fields.php:
|
4155 |
msgid ""
|
4156 |
"The entered row number is not numerical\n"
|
4157 |
""
|
4158 |
msgstr ""
|
4159 |
|
4160 |
-
#: admin/manage-fields.php:
|
4161 |
msgid ""
|
4162 |
"You must enter the site key\n"
|
4163 |
""
|
4164 |
msgstr ""
|
4165 |
|
4166 |
-
#: admin/manage-fields.php:
|
4167 |
msgid ""
|
4168 |
"You must enter the secret key\n"
|
4169 |
""
|
4170 |
msgstr ""
|
4171 |
|
4172 |
-
#: admin/manage-fields.php:
|
4173 |
msgid ""
|
4174 |
"The entered value for the Datepicker is not a valid date-format\n"
|
4175 |
""
|
4176 |
msgstr ""
|
4177 |
|
4178 |
-
#: admin/manage-fields.php:
|
4179 |
msgid ""
|
4180 |
"You must enter a value for the date-format\n"
|
4181 |
""
|
4182 |
msgstr ""
|
4183 |
|
4184 |
-
#: admin/manage-fields.php:
|
4185 |
msgid ""
|
4186 |
"The meta-name cannot be empty\n"
|
4187 |
""
|
4188 |
msgstr ""
|
4189 |
|
4190 |
-
#: admin/manage-fields.php:
|
4191 |
msgid ""
|
4192 |
"That meta-name is already in use\n"
|
4193 |
""
|
4194 |
msgstr ""
|
4195 |
|
4196 |
-
#: admin/manage-fields.php:
|
4197 |
msgid ""
|
4198 |
"That meta-name can't be used, please choose another\n"
|
4199 |
""
|
4200 |
msgstr ""
|
4201 |
|
4202 |
-
#: admin/manage-fields.php:
|
4203 |
msgid ""
|
4204 |
"The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
|
4205 |
""
|
4206 |
msgstr ""
|
4207 |
|
4208 |
-
#: admin/manage-fields.php:
|
4209 |
msgid ""
|
4210 |
"The following option did not coincide with the ones in the options list: %s\n"
|
4211 |
""
|
4212 |
msgstr ""
|
4213 |
|
4214 |
-
#: admin/manage-fields.php:
|
4215 |
msgid ""
|
4216 |
"The following option(s) did not coincide with the ones in the options list: %s\n"
|
4217 |
""
|
4218 |
msgstr ""
|
4219 |
|
4220 |
-
#: admin/manage-fields.php:
|
4221 |
msgid ""
|
4222 |
"Please select at least one user role\n"
|
4223 |
""
|
4224 |
msgstr ""
|
4225 |
|
4226 |
-
#: admin/manage-fields.php:
|
4227 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
4228 |
msgstr ""
|
4229 |
|
4230 |
-
#: admin/manage-fields.php:
|
4231 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
4232 |
msgstr ""
|
4233 |
|
4234 |
-
#: admin/manage-fields.php:
|
4235 |
msgid "With Profile Builder Pro you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
|
4236 |
msgstr ""
|
4237 |
|
4238 |
-
#: admin/manage-fields.php:
|
4239 |
msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
|
4240 |
msgstr ""
|
4241 |
|
4242 |
-
#: admin/manage-fields.php:
|
4243 |
msgid "Search Location"
|
4244 |
msgstr ""
|
4245 |
|
@@ -4363,7 +4371,7 @@ msgstr ""
|
|
4363 |
msgid "Disable the WordPress REST-API for non-logged in users when Private Website is enabled"
|
4364 |
msgstr ""
|
4365 |
|
4366 |
-
#: admin/private-website.php:149, features/functions.php:
|
4367 |
msgid "Save Changes"
|
4368 |
msgstr ""
|
4369 |
|
@@ -4443,63 +4451,63 @@ msgstr ""
|
|
4443 |
msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
|
4444 |
msgstr ""
|
4445 |
|
4446 |
-
#: features/functions.php:
|
4447 |
msgid "GDPR Checkbox"
|
4448 |
msgstr ""
|
4449 |
|
4450 |
-
#: features/functions.php:
|
4451 |
msgid "I allow the website to collect and store the data I submit through this form."
|
4452 |
msgstr ""
|
4453 |
|
4454 |
-
#: features/functions.php:
|
4455 |
msgid "Strength indicator"
|
4456 |
msgstr ""
|
4457 |
|
4458 |
-
#: features/functions.php:
|
4459 |
msgid "Very Weak"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
-
#: features/functions.php:
|
4463 |
msgid "Minimum length of %d characters."
|
4464 |
msgstr ""
|
4465 |
|
4466 |
-
#: features/functions.php:
|
4467 |
msgid "The password must have a minimum strength of %s"
|
4468 |
msgstr ""
|
4469 |
|
4470 |
-
#: features/functions.php:
|
4471 |
msgid "This field is required"
|
4472 |
msgstr ""
|
4473 |
|
4474 |
-
#: features/functions.php:
|
4475 |
msgid "Please enter a (valid) reCAPTCHA value"
|
4476 |
msgstr ""
|
4477 |
|
4478 |
-
#: features/functions.php:
|
4479 |
msgid "Incorrect phone number"
|
4480 |
msgstr ""
|
4481 |
|
4482 |
-
#: features/functions.php:
|
4483 |
msgid "Content"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
-
#: features/functions.php:
|
4487 |
msgid "<br><br>Also, you will be able to visit your site at "
|
4488 |
msgstr ""
|
4489 |
|
4490 |
-
#: features/functions.php:
|
4491 |
msgid "<br><br>You can visit your site at "
|
4492 |
msgstr ""
|
4493 |
|
4494 |
-
#: features/functions.php:
|
4495 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4496 |
msgstr ""
|
4497 |
|
4498 |
-
#: features/functions.php:
|
4499 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
4500 |
msgstr ""
|
4501 |
|
4502 |
-
#: features/functions.php:
|
4503 |
msgid "You are not currently logged in."
|
4504 |
msgstr ""
|
4505 |
|
@@ -4691,19 +4699,19 @@ msgstr ""
|
|
4691 |
msgid "You are already logged in. You can change your password on the edit profile form."
|
4692 |
msgstr ""
|
4693 |
|
4694 |
-
#: front-end/recover.php:
|
4695 |
msgid "The password must not be empty!"
|
4696 |
msgstr ""
|
4697 |
|
4698 |
-
#: front-end/recover.php:
|
4699 |
msgid "The entered passwords don't match!"
|
4700 |
msgstr ""
|
4701 |
|
4702 |
-
#: front-end/recover.php:
|
4703 |
msgid "The password must have the minimum length of %s characters"
|
4704 |
msgstr ""
|
4705 |
|
4706 |
-
#: front-end/recover.php:
|
4707 |
msgid "Your password has been successfully changed!"
|
4708 |
msgstr ""
|
4709 |
|
@@ -4715,11 +4723,11 @@ msgstr ""
|
|
4715 |
msgid "Please check that you entered the correct username."
|
4716 |
msgstr ""
|
4717 |
|
4718 |
-
#: front-end/recover.php:
|
4719 |
msgid "The email address entered wasn't found in the database!"
|
4720 |
msgstr ""
|
4721 |
|
4722 |
-
#: front-end/recover.php:
|
4723 |
msgid "Please check that you entered the correct email address."
|
4724 |
msgstr ""
|
4725 |
|
@@ -4731,11 +4739,11 @@ msgstr ""
|
|
4731 |
msgid "There was an error while trying to send the activation link to %1$s!"
|
4732 |
msgstr ""
|
4733 |
|
4734 |
-
#: front-end/recover.php:
|
4735 |
msgid "ERROR:"
|
4736 |
msgstr ""
|
4737 |
|
4738 |
-
#: front-end/recover.php:
|
4739 |
msgid "Invalid key!"
|
4740 |
msgstr ""
|
4741 |
|
@@ -5267,15 +5275,15 @@ msgstr ""
|
|
5267 |
msgid "Unapprove"
|
5268 |
msgstr ""
|
5269 |
|
5270 |
-
#: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:313, modules/user-listing/userlisting.php:819, modules/user-listing/userlisting.php:
|
5271 |
msgid "Firstname"
|
5272 |
msgstr ""
|
5273 |
|
5274 |
-
#: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:822, modules/user-listing/userlisting.php:
|
5275 |
msgid "Lastname"
|
5276 |
msgstr ""
|
5277 |
|
5278 |
-
#: features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:255, modules/user-listing/userlisting.php:160, modules/user-listing/userlisting.php:314, modules/user-listing/userlisting.php:849, modules/user-listing/userlisting.php:
|
5279 |
msgid "Role"
|
5280 |
msgstr ""
|
5281 |
|
@@ -5323,7 +5331,7 @@ msgstr ""
|
|
5323 |
msgid "Conditional Rules"
|
5324 |
msgstr ""
|
5325 |
|
5326 |
-
#: features/conditional-fields/conditional-fields.php:
|
5327 |
msgid "This field has conditional logic enabled."
|
5328 |
msgstr ""
|
5329 |
|
@@ -5383,11 +5391,11 @@ msgstr ""
|
|
5383 |
msgid "Select Template"
|
5384 |
msgstr ""
|
5385 |
|
5386 |
-
#: features/content-restriction/content-restriction-filtering.php:
|
5387 |
msgid "You must be logged in to view the comments."
|
5388 |
msgstr ""
|
5389 |
|
5390 |
-
#: features/content-restriction/content-restriction-filtering.php:
|
5391 |
msgid "Comments are restricted for your user role."
|
5392 |
msgstr ""
|
5393 |
|
@@ -6273,27 +6281,27 @@ msgstr ""
|
|
6273 |
msgid "No Edit-profile Forms found in trash"
|
6274 |
msgstr ""
|
6275 |
|
6276 |
-
#: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:
|
6277 |
msgid "Shortcode"
|
6278 |
msgstr ""
|
6279 |
|
6280 |
-
#: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:
|
6281 |
msgid "(no title)"
|
6282 |
msgstr ""
|
6283 |
|
6284 |
-
#: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:
|
6285 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6286 |
msgstr ""
|
6287 |
|
6288 |
-
#: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:
|
6289 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6290 |
msgstr ""
|
6291 |
|
6292 |
-
#: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:
|
6293 |
msgid "The shortcode will be available after you publish this form."
|
6294 |
msgstr ""
|
6295 |
|
6296 |
-
#: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:
|
6297 |
msgid "Form Shortcode"
|
6298 |
msgstr ""
|
6299 |
|
@@ -6449,11 +6457,11 @@ msgstr ""
|
|
6449 |
msgid "Display name as"
|
6450 |
msgstr ""
|
6451 |
|
6452 |
-
#: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:
|
6453 |
msgid "Registration Date"
|
6454 |
msgstr ""
|
6455 |
|
6456 |
-
#: modules/user-listing/userlisting.php:163, modules/user-listing/userlisting.php:
|
6457 |
msgid "Number of Posts"
|
6458 |
msgstr ""
|
6459 |
|
@@ -6489,7 +6497,7 @@ msgstr ""
|
|
6489 |
msgid "Search all Fields"
|
6490 |
msgstr ""
|
6491 |
|
6492 |
-
#: modules/user-listing/userlisting.php:228, modules/user-listing/userlisting.php:
|
6493 |
msgid "Faceted Menus"
|
6494 |
msgstr ""
|
6495 |
|
@@ -6541,19 +6549,19 @@ msgstr ""
|
|
6541 |
msgid "User not found"
|
6542 |
msgstr ""
|
6543 |
|
6544 |
-
#: modules/user-listing/userlisting.php:843, modules/user-listing/userlisting.php:
|
6545 |
msgid "Jabber"
|
6546 |
msgstr ""
|
6547 |
|
6548 |
-
#: modules/user-listing/userlisting.php:840, modules/user-listing/userlisting.php:
|
6549 |
msgid "Yim"
|
6550 |
msgstr ""
|
6551 |
|
6552 |
-
#: modules/user-listing/userlisting.php:837, modules/user-listing/userlisting.php:
|
6553 |
msgid "Aim"
|
6554 |
msgstr ""
|
6555 |
|
6556 |
-
#: modules/user-listing/userlisting.php:825, modules/user-listing/userlisting.php:
|
6557 |
msgid "Display Name"
|
6558 |
msgstr ""
|
6559 |
|
@@ -6561,7 +6569,7 @@ msgstr ""
|
|
6561 |
msgid "First/Lastname"
|
6562 |
msgstr ""
|
6563 |
|
6564 |
-
#: modules/user-listing/userlisting.php:1130, modules/user-listing/userlisting.php:1610, modules/user-listing/userlisting.php:2088, modules/user-listing/userlisting.php:
|
6565 |
msgid "Search Users by All Fields"
|
6566 |
msgstr ""
|
6567 |
|
@@ -6633,183 +6641,183 @@ msgstr ""
|
|
6633 |
msgid "Clear Results"
|
6634 |
msgstr ""
|
6635 |
|
6636 |
-
#: modules/user-listing/userlisting.php:
|
6637 |
msgid "Extra shortcode parameters"
|
6638 |
msgstr ""
|
6639 |
|
6640 |
-
#: modules/user-listing/userlisting.php:
|
6641 |
msgid "View all extra shortcode parameters"
|
6642 |
msgstr ""
|
6643 |
|
6644 |
-
#: modules/user-listing/userlisting.php:
|
6645 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6646 |
msgstr ""
|
6647 |
|
6648 |
-
#: modules/user-listing/userlisting.php:
|
6649 |
msgid "Example:"
|
6650 |
msgstr ""
|
6651 |
|
6652 |
-
#: modules/user-listing/userlisting.php:
|
6653 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6654 |
msgstr ""
|
6655 |
|
6656 |
-
#: modules/user-listing/userlisting.php:
|
6657 |
msgid "displays only the users that you specified the user_id for"
|
6658 |
msgstr ""
|
6659 |
|
6660 |
-
#: modules/user-listing/userlisting.php:
|
6661 |
msgid "displays all users except the ones you specified the user_id for"
|
6662 |
msgstr ""
|
6663 |
|
6664 |
-
#: modules/user-listing/userlisting.php:
|
6665 |
msgid "Random (very slow on large databases > 10K user)"
|
6666 |
msgstr ""
|
6667 |
|
6668 |
-
#: modules/user-listing/userlisting.php:
|
6669 |
msgid "Ascending"
|
6670 |
msgstr ""
|
6671 |
|
6672 |
-
#: modules/user-listing/userlisting.php:
|
6673 |
msgid "Descending"
|
6674 |
msgstr ""
|
6675 |
|
6676 |
-
#: modules/user-listing/userlisting.php:
|
6677 |
msgid "Roles to Display"
|
6678 |
msgstr ""
|
6679 |
|
6680 |
-
#: modules/user-listing/userlisting.php:
|
6681 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6682 |
msgstr ""
|
6683 |
|
6684 |
-
#: modules/user-listing/userlisting.php:
|
6685 |
msgid "Number of Users/Page"
|
6686 |
msgstr ""
|
6687 |
|
6688 |
-
#: modules/user-listing/userlisting.php:
|
6689 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6690 |
msgstr ""
|
6691 |
|
6692 |
-
#: modules/user-listing/userlisting.php:
|
6693 |
msgid "Default Sorting Criteria"
|
6694 |
msgstr ""
|
6695 |
|
6696 |
-
#: modules/user-listing/userlisting.php:
|
6697 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6698 |
msgstr ""
|
6699 |
|
6700 |
-
#: modules/user-listing/userlisting.php:
|
6701 |
msgid "Default Sorting Order"
|
6702 |
msgstr ""
|
6703 |
|
6704 |
-
#: modules/user-listing/userlisting.php:
|
6705 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6706 |
msgstr ""
|
6707 |
|
6708 |
-
#: modules/user-listing/userlisting.php:
|
6709 |
msgid "Avatar Size (All-userlisting)"
|
6710 |
msgstr ""
|
6711 |
|
6712 |
-
#: modules/user-listing/userlisting.php:
|
6713 |
msgid "Set the avatar size on the all-userlisting only"
|
6714 |
msgstr ""
|
6715 |
|
6716 |
-
#: modules/user-listing/userlisting.php:
|
6717 |
msgid "Avatar Size (Single-userlisting)"
|
6718 |
msgstr ""
|
6719 |
|
6720 |
-
#: modules/user-listing/userlisting.php:
|
6721 |
msgid "Set the avatar size on the single-userlisting only"
|
6722 |
msgstr ""
|
6723 |
|
6724 |
-
#: modules/user-listing/userlisting.php:
|
6725 |
msgid "Visible only to logged in users?"
|
6726 |
msgstr ""
|
6727 |
|
6728 |
-
#: modules/user-listing/userlisting.php:
|
6729 |
msgid "The userlisting will only be visible only to the logged in users"
|
6730 |
msgstr ""
|
6731 |
|
6732 |
-
#: modules/user-listing/userlisting.php:
|
6733 |
msgid "Visible to following Roles"
|
6734 |
msgstr ""
|
6735 |
|
6736 |
-
#: modules/user-listing/userlisting.php:
|
6737 |
msgid "The userlisting will only be visible to the following roles"
|
6738 |
msgstr ""
|
6739 |
|
6740 |
-
#: modules/user-listing/userlisting.php:
|
6741 |
msgid "Userlisting Settings"
|
6742 |
msgstr ""
|
6743 |
|
6744 |
-
#: modules/user-listing/userlisting.php:
|
6745 |
msgid "Label"
|
6746 |
msgstr ""
|
6747 |
|
6748 |
-
#: modules/user-listing/userlisting.php:
|
6749 |
msgid "Choose the facet name that appears on the frontend"
|
6750 |
msgstr ""
|
6751 |
|
6752 |
-
#: modules/user-listing/userlisting.php:
|
6753 |
msgid "Facet Type"
|
6754 |
msgstr ""
|
6755 |
|
6756 |
-
#: modules/user-listing/userlisting.php:
|
6757 |
msgid "Choose the facet menu type"
|
6758 |
msgstr ""
|
6759 |
|
6760 |
-
#: modules/user-listing/userlisting.php:
|
6761 |
msgid "Facet Meta"
|
6762 |
msgstr ""
|
6763 |
|
6764 |
-
#: modules/user-listing/userlisting.php:
|
6765 |
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."
|
6766 |
msgstr ""
|
6767 |
|
6768 |
-
#: modules/user-listing/userlisting.php:
|
6769 |
msgid "Behaviour"
|
6770 |
msgstr ""
|
6771 |
|
6772 |
-
#: modules/user-listing/userlisting.php:
|
6773 |
msgid "Narrow the results"
|
6774 |
msgstr ""
|
6775 |
|
6776 |
-
#: modules/user-listing/userlisting.php:
|
6777 |
msgid "Expand the results"
|
6778 |
msgstr ""
|
6779 |
|
6780 |
-
#: modules/user-listing/userlisting.php:
|
6781 |
msgid "Choose how multiple selections affect the results"
|
6782 |
msgstr ""
|
6783 |
|
6784 |
-
#: modules/user-listing/userlisting.php:
|
6785 |
msgid "Visible choices"
|
6786 |
msgstr ""
|
6787 |
|
6788 |
-
#: modules/user-listing/userlisting.php:
|
6789 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6790 |
msgstr ""
|
6791 |
|
6792 |
-
#: modules/user-listing/userlisting.php:
|
6793 |
msgid "Search Fields"
|
6794 |
msgstr ""
|
6795 |
|
6796 |
-
#: modules/user-listing/userlisting.php:
|
6797 |
msgid "Choose the fields in which the Search Field will look in"
|
6798 |
msgstr ""
|
6799 |
|
6800 |
-
#: modules/user-listing/userlisting.php:
|
6801 |
msgid "Search Settings"
|
6802 |
msgstr ""
|
6803 |
|
6804 |
-
#: modules/user-listing/userlisting.php:
|
6805 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6806 |
msgstr ""
|
6807 |
|
6808 |
-
#: modules/user-listing/userlisting.php:
|
6809 |
msgid "You can find it in the Profile Builder menu."
|
6810 |
msgstr ""
|
6811 |
|
6812 |
-
#: modules/user-listing/userlisting.php:
|
6813 |
msgid "No results found!"
|
6814 |
msgstr ""
|
6815 |
|
161 |
msgid "Only Me"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: ../pb-add-on-buddypress/field-visibility.php:224, ../pb-add-on-buddypress/mustache-vars.php:329
|
165 |
msgid "All Members"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: ../pb-add-on-buddypress/field-visibility.php:228, ../pb-add-on-buddypress/mustache-vars.php:333
|
169 |
msgid "My Friends"
|
170 |
msgstr ""
|
171 |
|
249 |
msgid "Biographical Info:"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:15, ../pb-add-on-buddypress/mustache-vars.php:47
|
253 |
msgid "BuddyPress Avatar"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:16, ../pb-add-on-buddypress/mustache-vars.php:48
|
257 |
msgid "BuddyPress Cover Photo"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:17, ../pb-add-on-buddypress/mustache-vars.php:29, ../pb-add-on-buddypress/mustache-vars.php:256
|
261 |
msgid "BuddyPress Last Active"
|
262 |
msgstr ""
|
263 |
|
269 |
msgid "BuddyPress Latest Update"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:134
|
273 |
msgid "Never active"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:239
|
277 |
msgid "Last Active"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:272
|
281 |
msgid "My BuddyPress Friends Tab"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:373
|
285 |
msgid "BuddyPress field visibility syntax"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:393
|
289 |
msgid "Are you sure you want to reset this template?"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:393
|
293 |
msgid "Reset to Default BuddyPress User Listing Templates"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:394
|
297 |
msgid "<b>Note:</b> This action is not reversible. All modifications to this template will be lost!"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:408
|
301 |
msgid "Reset template"
|
302 |
msgstr ""
|
303 |
|
453 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: ../pb-add-on-field-visibility/index.php:239, ../pb-add-on-labels-edit/pble.php:381, admin/manage-fields.php:1320, features/functions.php:878, features/functions.php:885, features/admin-approval/class-admin-approval.php:108, features/roles-editor/roles-editor.php:866, modules/custom-redirects/custom_redirects_admin.php:183, modules/custom-redirects/custom_redirects_admin.php:197, modules/custom-redirects/custom_redirects_admin.php:211, modules/custom-redirects/custom_redirects_admin.php:225, modules/multiple-forms/multiple-forms.php:406
|
457 |
msgid "Edit"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: ../pb-add-on-field-visibility/index.php:239, admin/manage-fields.php:1320, features/functions.php:871, features/functions.php:885, features/admin-approval/class-admin-approval.php:113, features/email-confirmation/class-email-confirmation.php:121, features/email-confirmation/class-email-confirmation.php:218, features/roles-editor/roles-editor.php:179, features/roles-editor/roles-editor.php:904, features/roles-editor/roles-editor.php:893, features/roles-editor/roles-editor.php:884, modules/custom-redirects/custom_redirects_admin.php:183, modules/custom-redirects/custom_redirects_admin.php:197, modules/custom-redirects/custom_redirects_admin.php:211, modules/custom-redirects/custom_redirects_admin.php:225, front-end/default-fields/gdpr-delete/gdpr-delete.php:18
|
461 |
msgid "Delete"
|
462 |
msgstr ""
|
463 |
|
683 |
msgid "Replace labels with placeholders:"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:324, admin/general-settings.php:113, admin/general-settings.php:126, admin/general-settings.php:175, admin/general-settings.php:222, admin/general-settings.php:296, admin/private-website.php:67, admin/private-website.php:124, admin/private-website.php:137, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:18, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:34, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:18, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:66, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:181, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:197, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:217, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:240, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:261, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:279, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:132, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:149, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:164, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:184, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:201, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:239, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:260, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:280, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:302, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:16, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:32, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:48, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:64, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:53, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:75, features/content-restriction/content-restriction.php:88, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:229, modules/multiple-forms/register-forms.php:230, modules/user-listing/userlisting.php:2411
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
883 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: ../pb-add-on-social-connect/index.php:392, features/functions.php:1165
|
887 |
msgid "here"
|
888 |
msgstr ""
|
889 |
|
903 |
msgid "You can only login on this form.<br>Register with your social account on the register form."
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: ../pb-add-on-social-connect/index.php:404
|
907 |
+
msgid "To create a new account please confirm:"
|
908 |
+
msgstr ""
|
909 |
+
|
910 |
+
#: ../pb-add-on-social-connect/index.php:405
|
911 |
+
msgid "You must agree to the Terms And Conditions to create a new account."
|
912 |
+
msgstr ""
|
913 |
+
|
914 |
+
#: ../pb-add-on-social-connect/index.php:413, ../pb-add-on-social-connect/index.php:414
|
915 |
msgid "Please enter your Facebook email!"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: ../pb-add-on-social-connect/index.php:426
|
919 |
msgid "Waiting for Twitter..."
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: ../pb-add-on-social-connect/index.php:427, ../pb-add-on-social-connect/index.php:428
|
923 |
msgid "Please enter your Twitter email!"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: ../pb-add-on-social-connect/index.php:720
|
927 |
msgid "Profile Builder not active!"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: ../pb-add-on-social-connect/index.php:864, admin/admin-functions.php:37, admin/general-settings.php:8
|
931 |
msgid "General Settings"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: ../pb-add-on-social-connect/index.php:868
|
935 |
msgid "Application Settings"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: ../pb-add-on-social-connect/index.php:872
|
939 |
msgid "Appearance Settings"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: ../pb-add-on-social-connect/index.php:936
|
943 |
msgid "Unlink"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: ../pb-add-on-social-connect/index.php:943
|
947 |
msgid "Your account is linked with:"
|
948 |
msgstr ""
|
949 |
|
1235 |
msgid "Edit this item"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:864, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:403, assets/lib/wck-api/wordpress-creation-kit.php:406
|
1239 |
msgid "Cancel"
|
1240 |
msgstr ""
|
1241 |
|
1635 |
msgid "Very weak"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: admin/admin-functions.php:137, admin/general-settings.php:282, features/functions.php:674, features/functions.php:698
|
1639 |
msgid "Weak"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: admin/admin-functions.php:137, admin/general-settings.php:283, features/functions.php:674, features/functions.php:698
|
1643 |
msgid "Medium"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
#: admin/admin-functions.php:137, admin/general-settings.php:284, features/functions.php:674, features/functions.php:698
|
1647 |
msgid "Strong"
|
1648 |
msgstr ""
|
1649 |
|
2119 |
msgid "Username and Email"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
#: admin/general-settings.php:251, admin/manage-fields.php:318, front-end/login.php:246, front-end/login.php:260, front-end/login.php:391, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:121, features/admin-approval/class-admin-approval.php:166, features/email-confirmation/class-email-confirmation.php:168, modules/custom-redirects/custom_redirects_admin.php:60, modules/email-customizer/email-customizer.php:28, modules/user-listing/userlisting.php:112, modules/user-listing/userlisting.php:312, modules/user-listing/userlisting.php:807, modules/user-listing/userlisting.php:2365
|
2123 |
msgid "Username"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
+
#: admin/general-settings.php:252, front-end/login.php:388, modules/email-customizer/email-customizer.php:29, modules/user-listing/userlisting.php:813, modules/user-listing/userlisting.php:2366
|
2127 |
msgid "Email"
|
2128 |
msgstr ""
|
2129 |
|
2615 |
msgid "Usernames cannot be changed."
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: admin/manage-fields.php:321, modules/user-listing/userlisting.php:846, modules/user-listing/userlisting.php:2373
|
2619 |
msgid "Nickname"
|
2620 |
msgstr ""
|
2621 |
|
2623 |
msgid "Display name publicly as"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: admin/manage-fields.php:325, modules/email-customizer/email-customizer.php:33, modules/user-listing/userlisting.php:121, modules/user-listing/userlisting.php:828, modules/user-listing/userlisting.php:2367
|
2627 |
msgid "Website"
|
2628 |
msgstr ""
|
2629 |
|
2639 |
msgid "Jabber / Google Talk"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: admin/manage-fields.php:335, modules/user-listing/userlisting.php:124, modules/user-listing/userlisting.php:831, modules/user-listing/userlisting.php:2368
|
2643 |
msgid "Biographical Info"
|
2644 |
msgstr ""
|
2645 |
|
4123 |
msgid "Zimbabwe Dollar"
|
4124 |
msgstr ""
|
4125 |
|
4126 |
+
#: admin/manage-fields.php:1269
|
4127 |
msgid ""
|
4128 |
"That field is already added in this form\n"
|
4129 |
""
|
4130 |
msgstr ""
|
4131 |
|
4132 |
+
#: admin/manage-fields.php:1262, admin/manage-fields.php:1100
|
4133 |
msgid ""
|
4134 |
"You must select a field\n"
|
4135 |
""
|
4136 |
msgstr ""
|
4137 |
|
4138 |
+
#: admin/manage-fields.php:1110
|
4139 |
msgid ""
|
4140 |
"Please choose a different field type as this one already exists in your form (must be unique)\n"
|
4141 |
""
|
4142 |
msgstr ""
|
4143 |
|
4144 |
+
#: admin/manage-fields.php:1124
|
4145 |
msgid ""
|
4146 |
"The entered avatar size is not numerical\n"
|
4147 |
""
|
4148 |
msgstr ""
|
4149 |
|
4150 |
+
#: admin/manage-fields.php:1121
|
4151 |
msgid ""
|
4152 |
"The entered avatar size is not between 20 and 200\n"
|
4153 |
""
|
4154 |
msgstr ""
|
4155 |
|
4156 |
+
#: admin/manage-fields.php:1135
|
4157 |
msgid ""
|
4158 |
"You must enter a value for the row number\n"
|
4159 |
""
|
4160 |
msgstr ""
|
4161 |
|
4162 |
+
#: admin/manage-fields.php:1132
|
4163 |
msgid ""
|
4164 |
"The entered row number is not numerical\n"
|
4165 |
""
|
4166 |
msgstr ""
|
4167 |
|
4168 |
+
#: admin/manage-fields.php:1143
|
4169 |
msgid ""
|
4170 |
"You must enter the site key\n"
|
4171 |
""
|
4172 |
msgstr ""
|
4173 |
|
4174 |
+
#: admin/manage-fields.php:1145
|
4175 |
msgid ""
|
4176 |
"You must enter the secret key\n"
|
4177 |
""
|
4178 |
msgstr ""
|
4179 |
|
4180 |
+
#: admin/manage-fields.php:1167
|
4181 |
msgid ""
|
4182 |
"The entered value for the Datepicker is not a valid date-format\n"
|
4183 |
""
|
4184 |
msgstr ""
|
4185 |
|
4186 |
+
#: admin/manage-fields.php:1153
|
4187 |
msgid ""
|
4188 |
"You must enter a value for the date-format\n"
|
4189 |
""
|
4190 |
msgstr ""
|
4191 |
|
4192 |
+
#: admin/manage-fields.php:1186
|
4193 |
msgid ""
|
4194 |
"The meta-name cannot be empty\n"
|
4195 |
""
|
4196 |
msgstr ""
|
4197 |
|
4198 |
+
#: admin/manage-fields.php:1200, admin/manage-fields.php:1211
|
4199 |
msgid ""
|
4200 |
"That meta-name is already in use\n"
|
4201 |
""
|
4202 |
msgstr ""
|
4203 |
|
4204 |
+
#: admin/manage-fields.php:1192
|
4205 |
msgid ""
|
4206 |
"That meta-name can't be used, please choose another\n"
|
4207 |
""
|
4208 |
msgstr ""
|
4209 |
|
4210 |
+
#: admin/manage-fields.php:1222
|
4211 |
msgid ""
|
4212 |
"The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
|
4213 |
""
|
4214 |
msgstr ""
|
4215 |
|
4216 |
+
#: admin/manage-fields.php:1246
|
4217 |
msgid ""
|
4218 |
"The following option did not coincide with the ones in the options list: %s\n"
|
4219 |
""
|
4220 |
msgstr ""
|
4221 |
|
4222 |
+
#: admin/manage-fields.php:1242
|
4223 |
msgid ""
|
4224 |
"The following option(s) did not coincide with the ones in the options list: %s\n"
|
4225 |
""
|
4226 |
msgstr ""
|
4227 |
|
4228 |
+
#: admin/manage-fields.php:1253
|
4229 |
msgid ""
|
4230 |
"Please select at least one user role\n"
|
4231 |
""
|
4232 |
msgstr ""
|
4233 |
|
4234 |
+
#: admin/manage-fields.php:1320
|
4235 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
4236 |
msgstr ""
|
4237 |
|
4238 |
+
#: admin/manage-fields.php:1335
|
4239 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
4240 |
msgstr ""
|
4241 |
|
4242 |
+
#: admin/manage-fields.php:1346
|
4243 |
msgid "With Profile Builder Pro you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
|
4244 |
msgstr ""
|
4245 |
|
4246 |
+
#: admin/manage-fields.php:1344
|
4247 |
msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
|
4248 |
msgstr ""
|
4249 |
|
4250 |
+
#: admin/manage-fields.php:1443
|
4251 |
msgid "Search Location"
|
4252 |
msgstr ""
|
4253 |
|
4371 |
msgid "Disable the WordPress REST-API for non-logged in users when Private Website is enabled"
|
4372 |
msgstr ""
|
4373 |
|
4374 |
+
#: admin/private-website.php:149, features/functions.php:857, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:47, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:293, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:321, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:77, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:91, features/content-restriction/content-restriction.php:161, modules/class-mustache-templates/class-mustache-templates.php:390, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:402, assets/lib/wck-api/wordpress-creation-kit.php:405
|
4375 |
msgid "Save Changes"
|
4376 |
msgstr ""
|
4377 |
|
4451 |
msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
|
4452 |
msgstr ""
|
4453 |
|
4454 |
+
#: features/functions.php:319
|
4455 |
msgid "GDPR Checkbox"
|
4456 |
msgstr ""
|
4457 |
|
4458 |
+
#: features/functions.php:319
|
4459 |
msgid "I allow the website to collect and store the data I submit through this form."
|
4460 |
msgstr ""
|
4461 |
|
4462 |
+
#: features/functions.php:648
|
4463 |
msgid "Strength indicator"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
+
#: features/functions.php:674, features/functions.php:698
|
4467 |
msgid "Very Weak"
|
4468 |
msgstr ""
|
4469 |
|
4470 |
+
#: features/functions.php:688
|
4471 |
msgid "Minimum length of %d characters."
|
4472 |
msgstr ""
|
4473 |
|
4474 |
+
#: features/functions.php:699, front-end/recover.php:349, front-end/default-fields/password/password.php:54
|
4475 |
msgid "The password must have a minimum strength of %s"
|
4476 |
msgstr ""
|
4477 |
|
4478 |
+
#: features/functions.php:776
|
4479 |
msgid "This field is required"
|
4480 |
msgstr ""
|
4481 |
|
4482 |
+
#: features/functions.php:814, front-end/default-fields/recaptcha/recaptcha.php:512, front-end/default-fields/recaptcha/recaptcha.php:503, front-end/default-fields/recaptcha/recaptcha.php:568, front-end/default-fields/recaptcha/recaptcha.php:616
|
4483 |
msgid "Please enter a (valid) reCAPTCHA value"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
+
#: features/functions.php:821
|
4487 |
msgid "Incorrect phone number"
|
4488 |
msgstr ""
|
4489 |
|
4490 |
+
#: features/functions.php:885, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:444, assets/lib/wck-api/wordpress-creation-kit.php:447
|
4491 |
msgid "Content"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
+
#: features/functions.php:1067
|
4495 |
msgid "<br><br>Also, you will be able to visit your site at "
|
4496 |
msgstr ""
|
4497 |
|
4498 |
+
#: features/functions.php:1080
|
4499 |
msgid "<br><br>You can visit your site at "
|
4500 |
msgstr ""
|
4501 |
|
4502 |
+
#: features/functions.php:1166
|
4503 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4504 |
msgstr ""
|
4505 |
|
4506 |
+
#: features/functions.php:1297
|
4507 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
4508 |
msgstr ""
|
4509 |
|
4510 |
+
#: features/functions.php:1338
|
4511 |
msgid "You are not currently logged in."
|
4512 |
msgstr ""
|
4513 |
|
4699 |
msgid "You are already logged in. You can change your password on the edit profile form."
|
4700 |
msgstr ""
|
4701 |
|
4702 |
+
#: front-end/recover.php:392
|
4703 |
msgid "The password must not be empty!"
|
4704 |
msgstr ""
|
4705 |
|
4706 |
+
#: front-end/recover.php:339
|
4707 |
msgid "The entered passwords don't match!"
|
4708 |
msgstr ""
|
4709 |
|
4710 |
+
#: front-end/recover.php:345, front-end/default-fields/password/password.php:50
|
4711 |
msgid "The password must have the minimum length of %s characters"
|
4712 |
msgstr ""
|
4713 |
|
4714 |
+
#: front-end/recover.php:356
|
4715 |
msgid "Your password has been successfully changed!"
|
4716 |
msgstr ""
|
4717 |
|
4723 |
msgid "Please check that you entered the correct username."
|
4724 |
msgstr ""
|
4725 |
|
4726 |
+
#: front-end/recover.php:325
|
4727 |
msgid "The email address entered wasn't found in the database!"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
+
#: front-end/recover.php:325
|
4731 |
msgid "Please check that you entered the correct email address."
|
4732 |
msgstr ""
|
4733 |
|
4739 |
msgid "There was an error while trying to send the activation link to %1$s!"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
+
#: front-end/recover.php:417
|
4743 |
msgid "ERROR:"
|
4744 |
msgstr ""
|
4745 |
|
4746 |
+
#: front-end/recover.php:417
|
4747 |
msgid "Invalid key!"
|
4748 |
msgstr ""
|
4749 |
|
5275 |
msgid "Unapprove"
|
5276 |
msgstr ""
|
5277 |
|
5278 |
+
#: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:313, modules/user-listing/userlisting.php:819, modules/user-listing/userlisting.php:2370
|
5279 |
msgid "Firstname"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
+
#: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:822, modules/user-listing/userlisting.php:2371
|
5283 |
msgid "Lastname"
|
5284 |
msgstr ""
|
5285 |
|
5286 |
+
#: features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:255, modules/user-listing/userlisting.php:160, modules/user-listing/userlisting.php:314, modules/user-listing/userlisting.php:849, modules/user-listing/userlisting.php:2375
|
5287 |
msgid "Role"
|
5288 |
msgstr ""
|
5289 |
|
5331 |
msgid "Conditional Rules"
|
5332 |
msgstr ""
|
5333 |
|
5334 |
+
#: features/conditional-fields/conditional-fields.php:565
|
5335 |
msgid "This field has conditional logic enabled."
|
5336 |
msgstr ""
|
5337 |
|
5391 |
msgid "Select Template"
|
5392 |
msgstr ""
|
5393 |
|
5394 |
+
#: features/content-restriction/content-restriction-filtering.php:350
|
5395 |
msgid "You must be logged in to view the comments."
|
5396 |
msgstr ""
|
5397 |
|
5398 |
+
#: features/content-restriction/content-restriction-filtering.php:348
|
5399 |
msgid "Comments are restricted for your user role."
|
5400 |
msgstr ""
|
5401 |
|
6281 |
msgid "No Edit-profile Forms found in trash"
|
6282 |
msgstr ""
|
6283 |
|
6284 |
+
#: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:2261
|
6285 |
msgid "Shortcode"
|
6286 |
msgstr ""
|
6287 |
|
6288 |
+
#: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:2282
|
6289 |
msgid "(no title)"
|
6290 |
msgstr ""
|
6291 |
|
6292 |
+
#: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:2304
|
6293 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6294 |
msgstr ""
|
6295 |
|
6296 |
+
#: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:2308
|
6297 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6298 |
msgstr ""
|
6299 |
|
6300 |
+
#: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:2302
|
6301 |
msgid "The shortcode will be available after you publish this form."
|
6302 |
msgstr ""
|
6303 |
|
6304 |
+
#: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:2341
|
6305 |
msgid "Form Shortcode"
|
6306 |
msgstr ""
|
6307 |
|
6457 |
msgid "Display name as"
|
6458 |
msgstr ""
|
6459 |
|
6460 |
+
#: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:2369
|
6461 |
msgid "Registration Date"
|
6462 |
msgstr ""
|
6463 |
|
6464 |
+
#: modules/user-listing/userlisting.php:163, modules/user-listing/userlisting.php:2374
|
6465 |
msgid "Number of Posts"
|
6466 |
msgstr ""
|
6467 |
|
6497 |
msgid "Search all Fields"
|
6498 |
msgstr ""
|
6499 |
|
6500 |
+
#: modules/user-listing/userlisting.php:228, modules/user-listing/userlisting.php:2453
|
6501 |
msgid "Faceted Menus"
|
6502 |
msgstr ""
|
6503 |
|
6549 |
msgid "User not found"
|
6550 |
msgstr ""
|
6551 |
|
6552 |
+
#: modules/user-listing/userlisting.php:843, modules/user-listing/userlisting.php:2381
|
6553 |
msgid "Jabber"
|
6554 |
msgstr ""
|
6555 |
|
6556 |
+
#: modules/user-listing/userlisting.php:840, modules/user-listing/userlisting.php:2380
|
6557 |
msgid "Yim"
|
6558 |
msgstr ""
|
6559 |
|
6560 |
+
#: modules/user-listing/userlisting.php:837, modules/user-listing/userlisting.php:2379
|
6561 |
msgid "Aim"
|
6562 |
msgstr ""
|
6563 |
|
6564 |
+
#: modules/user-listing/userlisting.php:825, modules/user-listing/userlisting.php:2372
|
6565 |
msgid "Display Name"
|
6566 |
msgstr ""
|
6567 |
|
6569 |
msgid "First/Lastname"
|
6570 |
msgstr ""
|
6571 |
|
6572 |
+
#: modules/user-listing/userlisting.php:1130, modules/user-listing/userlisting.php:1610, modules/user-listing/userlisting.php:2088, modules/user-listing/userlisting.php:2573
|
6573 |
msgid "Search Users by All Fields"
|
6574 |
msgstr ""
|
6575 |
|
6641 |
msgid "Clear Results"
|
6642 |
msgstr ""
|
6643 |
|
6644 |
+
#: modules/user-listing/userlisting.php:2311, modules/user-listing/userlisting.php:2315
|
6645 |
msgid "Extra shortcode parameters"
|
6646 |
msgstr ""
|
6647 |
|
6648 |
+
#: modules/user-listing/userlisting.php:2313
|
6649 |
msgid "View all extra shortcode parameters"
|
6650 |
msgstr ""
|
6651 |
|
6652 |
+
#: modules/user-listing/userlisting.php:2318
|
6653 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6654 |
msgstr ""
|
6655 |
|
6656 |
+
#: modules/user-listing/userlisting.php:2319
|
6657 |
msgid "Example:"
|
6658 |
msgstr ""
|
6659 |
|
6660 |
+
#: modules/user-listing/userlisting.php:2321
|
6661 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6662 |
msgstr ""
|
6663 |
|
6664 |
+
#: modules/user-listing/userlisting.php:2327
|
6665 |
msgid "displays only the users that you specified the user_id for"
|
6666 |
msgstr ""
|
6667 |
|
6668 |
+
#: modules/user-listing/userlisting.php:2333
|
6669 |
msgid "displays all users except the ones you specified the user_id for"
|
6670 |
msgstr ""
|
6671 |
|
6672 |
+
#: modules/user-listing/userlisting.php:2396
|
6673 |
msgid "Random (very slow on large databases > 10K user)"
|
6674 |
msgstr ""
|
6675 |
|
6676 |
+
#: modules/user-listing/userlisting.php:2399
|
6677 |
msgid "Ascending"
|
6678 |
msgstr ""
|
6679 |
|
6680 |
+
#: modules/user-listing/userlisting.php:2400
|
6681 |
msgid "Descending"
|
6682 |
msgstr ""
|
6683 |
|
6684 |
+
#: modules/user-listing/userlisting.php:2405
|
6685 |
msgid "Roles to Display"
|
6686 |
msgstr ""
|
6687 |
|
6688 |
+
#: modules/user-listing/userlisting.php:2405
|
6689 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6690 |
msgstr ""
|
6691 |
|
6692 |
+
#: modules/user-listing/userlisting.php:2406
|
6693 |
msgid "Number of Users/Page"
|
6694 |
msgstr ""
|
6695 |
|
6696 |
+
#: modules/user-listing/userlisting.php:2406
|
6697 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6698 |
msgstr ""
|
6699 |
|
6700 |
+
#: modules/user-listing/userlisting.php:2407
|
6701 |
msgid "Default Sorting Criteria"
|
6702 |
msgstr ""
|
6703 |
|
6704 |
+
#: modules/user-listing/userlisting.php:2407
|
6705 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6706 |
msgstr ""
|
6707 |
|
6708 |
+
#: modules/user-listing/userlisting.php:2408
|
6709 |
msgid "Default Sorting Order"
|
6710 |
msgstr ""
|
6711 |
|
6712 |
+
#: modules/user-listing/userlisting.php:2408
|
6713 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6714 |
msgstr ""
|
6715 |
|
6716 |
+
#: modules/user-listing/userlisting.php:2409
|
6717 |
msgid "Avatar Size (All-userlisting)"
|
6718 |
msgstr ""
|
6719 |
|
6720 |
+
#: modules/user-listing/userlisting.php:2409
|
6721 |
msgid "Set the avatar size on the all-userlisting only"
|
6722 |
msgstr ""
|
6723 |
|
6724 |
+
#: modules/user-listing/userlisting.php:2410
|
6725 |
msgid "Avatar Size (Single-userlisting)"
|
6726 |
msgstr ""
|
6727 |
|
6728 |
+
#: modules/user-listing/userlisting.php:2410
|
6729 |
msgid "Set the avatar size on the single-userlisting only"
|
6730 |
msgstr ""
|
6731 |
|
6732 |
+
#: modules/user-listing/userlisting.php:2411
|
6733 |
msgid "Visible only to logged in users?"
|
6734 |
msgstr ""
|
6735 |
|
6736 |
+
#: modules/user-listing/userlisting.php:2411
|
6737 |
msgid "The userlisting will only be visible only to the logged in users"
|
6738 |
msgstr ""
|
6739 |
|
6740 |
+
#: modules/user-listing/userlisting.php:2412
|
6741 |
msgid "Visible to following Roles"
|
6742 |
msgstr ""
|
6743 |
|
6744 |
+
#: modules/user-listing/userlisting.php:2412
|
6745 |
msgid "The userlisting will only be visible to the following roles"
|
6746 |
msgstr ""
|
6747 |
|
6748 |
+
#: modules/user-listing/userlisting.php:2418
|
6749 |
msgid "Userlisting Settings"
|
6750 |
msgstr ""
|
6751 |
|
6752 |
+
#: modules/user-listing/userlisting.php:2443
|
6753 |
msgid "Label"
|
6754 |
msgstr ""
|
6755 |
|
6756 |
+
#: modules/user-listing/userlisting.php:2443
|
6757 |
msgid "Choose the facet name that appears on the frontend"
|
6758 |
msgstr ""
|
6759 |
|
6760 |
+
#: modules/user-listing/userlisting.php:2444
|
6761 |
msgid "Facet Type"
|
6762 |
msgstr ""
|
6763 |
|
6764 |
+
#: modules/user-listing/userlisting.php:2444
|
6765 |
msgid "Choose the facet menu type"
|
6766 |
msgstr ""
|
6767 |
|
6768 |
+
#: modules/user-listing/userlisting.php:2445
|
6769 |
msgid "Facet Meta"
|
6770 |
msgstr ""
|
6771 |
|
6772 |
+
#: modules/user-listing/userlisting.php:2445
|
6773 |
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."
|
6774 |
msgstr ""
|
6775 |
|
6776 |
+
#: modules/user-listing/userlisting.php:2446
|
6777 |
msgid "Behaviour"
|
6778 |
msgstr ""
|
6779 |
|
6780 |
+
#: modules/user-listing/userlisting.php:2446
|
6781 |
msgid "Narrow the results"
|
6782 |
msgstr ""
|
6783 |
|
6784 |
+
#: modules/user-listing/userlisting.php:2446
|
6785 |
msgid "Expand the results"
|
6786 |
msgstr ""
|
6787 |
|
6788 |
+
#: modules/user-listing/userlisting.php:2446
|
6789 |
msgid "Choose how multiple selections affect the results"
|
6790 |
msgstr ""
|
6791 |
|
6792 |
+
#: modules/user-listing/userlisting.php:2447
|
6793 |
msgid "Visible choices"
|
6794 |
msgstr ""
|
6795 |
|
6796 |
+
#: modules/user-listing/userlisting.php:2447
|
6797 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6798 |
msgstr ""
|
6799 |
|
6800 |
+
#: modules/user-listing/userlisting.php:2472
|
6801 |
msgid "Search Fields"
|
6802 |
msgstr ""
|
6803 |
|
6804 |
+
#: modules/user-listing/userlisting.php:2472
|
6805 |
msgid "Choose the fields in which the Search Field will look in"
|
6806 |
msgstr ""
|
6807 |
|
6808 |
+
#: modules/user-listing/userlisting.php:2477
|
6809 |
msgid "Search Settings"
|
6810 |
msgstr ""
|
6811 |
|
6812 |
+
#: modules/user-listing/userlisting.php:2549
|
6813 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6814 |
msgstr ""
|
6815 |
|
6816 |
+
#: modules/user-listing/userlisting.php:2549
|
6817 |
msgid "You can find it in the Profile Builder menu."
|
6818 |
msgstr ""
|
6819 |
|
6820 |
+
#: modules/user-listing/userlisting.php:2712
|
6821 |
msgid "No results found!"
|
6822 |
msgstr ""
|
6823 |
|