Version Description
- Added a feedback modal on plugin deactivate for profile builder
- Added 'form_name' parameter to the submit button value hook.
- Fixed small typos.
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 2.8.1 |
Comparing to | |
See all releases |
Code changes from version 2.8.0 to 2.8.1
- admin/feedback.php +114 -0
- front-end/class-formbuilder.php +1 -1
- index.php +4 -3
- readme.txt +6 -1
- translation/profile-builder.catalog.php +6 -7
- translation/profile-builder.pot +94 -98
admin/feedback.php
ADDED
@@ -0,0 +1,114 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/* add the modal on the plugin screen and embed a polldaddy form in it */
|
3 |
+
add_action( 'admin_footer', 'wppb_add_feedback_modal' );
|
4 |
+
function wppb_add_feedback_modal(){
|
5 |
+
global $current_screen;
|
6 |
+
if( $current_screen->base == 'plugins' ){
|
7 |
+
?>
|
8 |
+
<div id="wppb-feedback-modal" style="display:none;">
|
9 |
+
<h1 style="padding-left:10px;padding-top:15px;"><?php _e('Quick Feedback', 'profile-builder'); ?></h1>
|
10 |
+
<script type="text/javascript" charset="utf-8" src="https://secure.polldaddy.com/p/9985202.js"></script>
|
11 |
+
<noscript><a href="https://polldaddy.com/poll/9985202/"><?php _e( 'Because we care about our clients, please leave us feedback on why you are no longer using our plugin.', 'profile-builder'); ?></a></noscript>
|
12 |
+
<a href="#" class="button secondary wppb-feedback-skip"><?php _e('Skip and Deactivate', 'profile-builder'); ?></a>
|
13 |
+
</div>
|
14 |
+
<?php
|
15 |
+
}
|
16 |
+
}
|
17 |
+
|
18 |
+
/* add the scripts for the modal on the plugin screen */
|
19 |
+
add_action( 'admin_footer', 'wppb_add_feedback_script' );
|
20 |
+
function wppb_add_feedback_script(){
|
21 |
+
global $current_screen;
|
22 |
+
if( $current_screen->base == 'plugins' ) {
|
23 |
+
?>
|
24 |
+
<script>
|
25 |
+
jQuery(function () {
|
26 |
+
pluginSlug = 'profile-builder';// define the plugin slug here
|
27 |
+
|
28 |
+
if (jQuery('tr[data-slug="' + pluginSlug + '"] .deactivate a').length != 0) {
|
29 |
+
|
30 |
+
deactivationLink = jQuery('tr[data-slug="' + pluginSlug + '"] .deactivate a').attr('href');
|
31 |
+
|
32 |
+
jQuery('tr[data-slug="' + pluginSlug + '"] .deactivate a').click(function (e){
|
33 |
+
e . preventDefault();
|
34 |
+
e . stopPropagation();
|
35 |
+
tb_show("Profile Builder Quick Feedback", "#TB_inline?width=740&height=500&inlineId=wppb-feedback-modal");
|
36 |
+
jQuery('#TB_ajaxContent').closest('#TB_window').css({ height : "auto", top: "50%", marginTop: "-300px" });
|
37 |
+
});
|
38 |
+
|
39 |
+
jQuery('.pds-vote-button').on('click', function(e){
|
40 |
+
if(jQuery('.pds-radiobutton').is(':checked')) {
|
41 |
+
self.parent.tb_remove();
|
42 |
+
window.location.href = deactivationLink;
|
43 |
+
}
|
44 |
+
});
|
45 |
+
|
46 |
+
jQuery('.wppb-feedback-skip').on('click', function(e){
|
47 |
+
e.preventDefault();
|
48 |
+
self.parent.tb_remove();
|
49 |
+
window.location.href = deactivationLink;
|
50 |
+
});
|
51 |
+
|
52 |
+
}
|
53 |
+
});
|
54 |
+
</script>
|
55 |
+
<?php
|
56 |
+
}
|
57 |
+
}
|
58 |
+
|
59 |
+
/* add styling for the modal */
|
60 |
+
add_action( 'admin_footer', 'wppb_add_feedback_style' );
|
61 |
+
function wppb_add_feedback_style(){
|
62 |
+
global $current_screen;
|
63 |
+
if( $current_screen->base == 'plugins' ) {
|
64 |
+
?>
|
65 |
+
<style type="text/css">
|
66 |
+
#TB_window .pds-box{
|
67 |
+
border:0 !important;
|
68 |
+
}
|
69 |
+
#TB_window .pds-links{
|
70 |
+
display:none;
|
71 |
+
}
|
72 |
+
#TB_window .pds-question-top{
|
73 |
+
font-size:13px;
|
74 |
+
font-weight:normal;
|
75 |
+
}
|
76 |
+
#TB_window .pds-answer{
|
77 |
+
border:0;
|
78 |
+
}
|
79 |
+
#TB_window .pds-vote-button span{
|
80 |
+
display:none;
|
81 |
+
}
|
82 |
+
#TB_window .pds-vote-button:after{
|
83 |
+
content:"<?php _e('Submit and Deactivate', 'profile-builder')?>";
|
84 |
+
}
|
85 |
+
#TB_window .pds-vote-button{
|
86 |
+
padding: 6px 14px;
|
87 |
+
line-height: normal;
|
88 |
+
font-size: 14px;
|
89 |
+
font-weight: normal;
|
90 |
+
vertical-align: middle;
|
91 |
+
height: auto;
|
92 |
+
margin-bottom: 4px;
|
93 |
+
background: #0085ba;
|
94 |
+
border-color: #0073aa #006799 #006799;
|
95 |
+
box-shadow: 0 1px 0 #006799;
|
96 |
+
color: #fff;
|
97 |
+
text-decoration: none;
|
98 |
+
text-shadow: 0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799;
|
99 |
+
cursor: pointer;
|
100 |
+
border-width: 1px;
|
101 |
+
border-style: solid;
|
102 |
+
-webkit-appearance: none;
|
103 |
+
border-radius: 3px;
|
104 |
+
}
|
105 |
+
|
106 |
+
.wppb-feedback-skip{
|
107 |
+
float: right;
|
108 |
+
margin-top: -55px !important;
|
109 |
+
margin-right: 10px !important;
|
110 |
+
}
|
111 |
+
</style>
|
112 |
+
<?php
|
113 |
+
}
|
114 |
+
}
|
front-end/class-formbuilder.php
CHANGED
@@ -423,7 +423,7 @@ class Profile_Builder_Form_Creator{
|
|
423 |
$button_name = __( 'Update', 'profile-builder' );
|
424 |
?>
|
425 |
<?php do_action( 'wppb_form_before_submit_button', $this->args ); ?>
|
426 |
-
<input name="<?php echo $this->args['form_type']; ?>" type="submit" id="<?php echo $this->args['form_type']; ?>" class="<?php echo apply_filters( 'wppb_'. $this->args['form_type'] .'_submit_class', "submit button" );?>" value="<?php echo apply_filters( 'wppb_'. $this->args['form_type'] .'_button_name', $button_name ); ?>" <?php echo apply_filters( 'wppb_form_submit_button_extra_attributes', '', $this->args['form_type'] );?>/>
|
427 |
<?php do_action( 'wppb_form_after_submit_button', $this->args ); ?>
|
428 |
<input name="action" type="hidden" id="action" value="<?php echo $this->args['form_type']; ?>" />
|
429 |
<input name="form_name" type="hidden" id="form_name" value="<?php echo $this->args['form_name']; ?>" />
|
423 |
$button_name = __( 'Update', 'profile-builder' );
|
424 |
?>
|
425 |
<?php do_action( 'wppb_form_before_submit_button', $this->args ); ?>
|
426 |
+
<input name="<?php echo $this->args['form_type']; ?>" type="submit" id="<?php echo $this->args['form_type']; ?>" class="<?php echo apply_filters( 'wppb_'. $this->args['form_type'] .'_submit_class', "submit button" );?>" value="<?php echo apply_filters( 'wppb_'. $this->args['form_type'] .'_button_name', $button_name, $this->args['form_name'] ); ?>" <?php echo apply_filters( 'wppb_form_submit_button_extra_attributes', '', $this->args['form_type'] );?>/>
|
427 |
<?php do_action( 'wppb_form_after_submit_button', $this->args ); ?>
|
428 |
<input name="action" type="hidden" id="action" value="<?php echo $this->args['form_type']; ?>" />
|
429 |
<input name="form_name" type="hidden" id="form_name" value="<?php echo $this->args['form_name']; ?>" />
|
index.php
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
/*
|
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
|
6 |
-
Version: 2.8.
|
7 |
Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
@@ -75,7 +75,7 @@ function wppb_free_plugin_init() {
|
|
75 |
*
|
76 |
*
|
77 |
*/
|
78 |
-
define('PROFILE_BUILDER_VERSION', '2.8.
|
79 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
80 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
81 |
define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
|
@@ -129,6 +129,7 @@ function wppb_free_plugin_init() {
|
|
129 |
include_once(WPPB_PLUGIN_DIR . '/admin/admin-bar.php');
|
130 |
include_once(WPPB_PLUGIN_DIR . '/admin/manage-fields.php');
|
131 |
include_once(WPPB_PLUGIN_DIR . '/admin/pms-cross-promotion.php');
|
|
|
132 |
include_once(WPPB_PLUGIN_DIR . '/features/email-confirmation/email-confirmation.php');
|
133 |
include_once(WPPB_PLUGIN_DIR . '/features/email-confirmation/class-email-confirmation.php');
|
134 |
if (file_exists(WPPB_PLUGIN_DIR . '/features/admin-approval/admin-approval.php')) {
|
2 |
/*
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
+
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
+
Version: 2.8.1
|
7 |
Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
75 |
*
|
76 |
*
|
77 |
*/
|
78 |
+
define('PROFILE_BUILDER_VERSION', '2.8.1' );
|
79 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
80 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
81 |
define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
|
129 |
include_once(WPPB_PLUGIN_DIR . '/admin/admin-bar.php');
|
130 |
include_once(WPPB_PLUGIN_DIR . '/admin/manage-fields.php');
|
131 |
include_once(WPPB_PLUGIN_DIR . '/admin/pms-cross-promotion.php');
|
132 |
+
include_once(WPPB_PLUGIN_DIR . '/admin/feedback.php');
|
133 |
include_once(WPPB_PLUGIN_DIR . '/features/email-confirmation/email-confirmation.php');
|
134 |
include_once(WPPB_PLUGIN_DIR . '/features/email-confirmation/class-email-confirmation.php');
|
135 |
if (file_exists(WPPB_PLUGIN_DIR . '/features/admin-approval/admin-approval.php')) {
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 4.9.5
|
7 |
-
Stable tag: 2.8.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -165,6 +165,11 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
165 |
12. Role Editor
|
166 |
|
167 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
168 |
= 2.8.0 =
|
169 |
* Improved reCaptcha security on login forms
|
170 |
* Fixed issue with 'User to edit' field and multiple edit forms on the same page
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 4.9.5
|
7 |
+
Stable tag: 2.8.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
165 |
12. Role Editor
|
166 |
|
167 |
== Changelog ==
|
168 |
+
= 2.8.1 =
|
169 |
+
* Added a feedback modal on plugin deactivate for profile builder
|
170 |
+
* Added 'form_name' parameter to the submit button value hook.
|
171 |
+
* Fixed small typos.
|
172 |
+
|
173 |
= 2.8.0 =
|
174 |
* Improved reCaptcha security on login forms
|
175 |
* Fixed issue with 'User to edit' field and multiple edit forms on the same page
|
translation/profile-builder.catalog.php
CHANGED
@@ -213,10 +213,8 @@
|
|
213 |
<?php __("Wrong password!", "profile-builder"); ?>
|
214 |
<?php __("Please enter a valid email!", "profile-builder"); ?>
|
215 |
<?php __("You can only login on this form.<br>Register with your social account on the register form.", "profile-builder"); ?>
|
216 |
-
<?php __("Please enter your Facebook email", "profile-builder"); ?>
|
217 |
<?php __("Please enter your Facebook email!", "profile-builder"); ?>
|
218 |
<?php __("Waiting for Twitter...", "profile-builder"); ?>
|
219 |
-
<?php __("Please enter your Twitter email", "profile-builder"); ?>
|
220 |
<?php __("Please enter your Twitter email!", "profile-builder"); ?>
|
221 |
<?php __("Profile Builder not active!", "profile-builder"); ?>
|
222 |
<?php __("General Settings", "profile-builder"); ?>
|
@@ -340,7 +338,7 @@
|
|
340 |
<?php __("Double Opt-In", "profile-builder"); ?>
|
341 |
<?php __("If you select double opt-in, the user will receive an e-mail to confirm the subscription", "profile-builder"); ?>
|
342 |
<?php __("Send Welcome E-mail", "profile-builder"); ?>
|
343 |
-
<?php __("If checked will send an e-mail to welcome the user to the
|
344 |
<?php __("MailChimp API key is empty", "profile-builder"); ?>
|
345 |
<?php __("MailChimp API key is invalid", "profile-builder"); ?>
|
346 |
<?php __("Something went wrong. Either the API key is invalid or we could not connect to MailChimp to validate the key.", "profile-builder"); ?>
|
@@ -355,7 +353,6 @@
|
|
355 |
<?php __("Something went wrong. Either the MailChimp API key is missing or it is invalid.", "profile-builder"); ?>
|
356 |
<?php __("Select...", "profile-builder"); ?>
|
357 |
<?php __("Extra Options", "profile-builder"); ?>
|
358 |
-
<?php __("If you select double opt-in, the user will receive an e-mail to confirm the subscribtion", "profile-builder"); ?>
|
359 |
<?php __("Please select a list first", "profile-builder"); ?>
|
360 |
<?php __("No list was found.", "profile-builder"); ?>
|
361 |
<?php __("MailPoet List", "profile-builder"); ?>
|
@@ -376,7 +373,6 @@
|
|
376 |
<?php __("Sign in with LinkedIn", "profile-builder"); ?>
|
377 |
<?php __("Connection with twitter Failed", "profile-builder"); ?>
|
378 |
<?php __("Error Receiving Request Token", "profile-builder"); ?>
|
379 |
-
<?php __("Something went wrong. Please try again later.", "profile-builder"); ?>
|
380 |
<?php __("Link with Twitter", "profile-builder"); ?>
|
381 |
<?php __("Sign in with Twitter", "profile-builder"); ?>
|
382 |
<?php __("Add-Ons", "profile-builder"); ?>
|
@@ -499,6 +495,10 @@
|
|
499 |
<?php __("Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role.", "profile-builder"); ?>
|
500 |
<?php __(" * only available in the %1$sHobbyist and Pro versions%2$s.", "profile-builder"); ?>
|
501 |
<?php __("** only available in the %1$sPro version%2$s.", "profile-builder"); ?>
|
|
|
|
|
|
|
|
|
502 |
<?php __("Load Profile Builder's own CSS file in the front-end:", "profile-builder"); ?>
|
503 |
<?php __("You can find the default file here: %1$s", "profile-builder"); ?>
|
504 |
<?php __("\"Email Confirmation\" Activated:", "profile-builder"); ?>
|
@@ -1155,12 +1155,11 @@
|
|
1155 |
<?php __("Your account has to be confirmed by an administrator before you can log in.", "profile-builder"); ?>
|
1156 |
<?php __("Admin Approval", "profile-builder"); ?>
|
1157 |
<?php __("Do you want to", "profile-builder"); ?>
|
1158 |
-
<?php __("Your session has expired! Please refresh the page and try again", "profile-builder"); ?>
|
1159 |
<?php __("User successfully approved!", "profile-builder"); ?>
|
1160 |
<?php __("User successfully unapproved!", "profile-builder"); ?>
|
1161 |
<?php __("User successfully deleted!", "profile-builder"); ?>
|
1162 |
<?php __("You either don't have permission for that action or there was an error!", "profile-builder"); ?>
|
1163 |
-
<?php __("Your session has expired! Please refresh the page and try again.", "profile-builder"); ?>
|
1164 |
<?php __("Users successfully approved!", "profile-builder"); ?>
|
1165 |
<?php __("Users successfully unapproved!", "profile-builder"); ?>
|
1166 |
<?php __("Users successfully deleted!", "profile-builder"); ?>
|
213 |
<?php __("Wrong password!", "profile-builder"); ?>
|
214 |
<?php __("Please enter a valid email!", "profile-builder"); ?>
|
215 |
<?php __("You can only login on this form.<br>Register with your social account on the register form.", "profile-builder"); ?>
|
|
|
216 |
<?php __("Please enter your Facebook email!", "profile-builder"); ?>
|
217 |
<?php __("Waiting for Twitter...", "profile-builder"); ?>
|
|
|
218 |
<?php __("Please enter your Twitter email!", "profile-builder"); ?>
|
219 |
<?php __("Profile Builder not active!", "profile-builder"); ?>
|
220 |
<?php __("General Settings", "profile-builder"); ?>
|
338 |
<?php __("Double Opt-In", "profile-builder"); ?>
|
339 |
<?php __("If you select double opt-in, the user will receive an e-mail to confirm the subscription", "profile-builder"); ?>
|
340 |
<?php __("Send Welcome E-mail", "profile-builder"); ?>
|
341 |
+
<?php __("If checked will send an e-mail to welcome the user to the subscription area", "profile-builder"); ?>
|
342 |
<?php __("MailChimp API key is empty", "profile-builder"); ?>
|
343 |
<?php __("MailChimp API key is invalid", "profile-builder"); ?>
|
344 |
<?php __("Something went wrong. Either the API key is invalid or we could not connect to MailChimp to validate the key.", "profile-builder"); ?>
|
353 |
<?php __("Something went wrong. Either the MailChimp API key is missing or it is invalid.", "profile-builder"); ?>
|
354 |
<?php __("Select...", "profile-builder"); ?>
|
355 |
<?php __("Extra Options", "profile-builder"); ?>
|
|
|
356 |
<?php __("Please select a list first", "profile-builder"); ?>
|
357 |
<?php __("No list was found.", "profile-builder"); ?>
|
358 |
<?php __("MailPoet List", "profile-builder"); ?>
|
373 |
<?php __("Sign in with LinkedIn", "profile-builder"); ?>
|
374 |
<?php __("Connection with twitter Failed", "profile-builder"); ?>
|
375 |
<?php __("Error Receiving Request Token", "profile-builder"); ?>
|
|
|
376 |
<?php __("Link with Twitter", "profile-builder"); ?>
|
377 |
<?php __("Sign in with Twitter", "profile-builder"); ?>
|
378 |
<?php __("Add-Ons", "profile-builder"); ?>
|
495 |
<?php __("Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role.", "profile-builder"); ?>
|
496 |
<?php __(" * only available in the %1$sHobbyist and Pro versions%2$s.", "profile-builder"); ?>
|
497 |
<?php __("** only available in the %1$sPro version%2$s.", "profile-builder"); ?>
|
498 |
+
<?php __("Quick Feedback", "profile-builder"); ?>
|
499 |
+
<?php __("Because we care about our clients, please leave us feedback on why you are no longer using our plugin.", "profile-builder"); ?>
|
500 |
+
<?php __("Skip and Deactivate", "profile-builder"); ?>
|
501 |
+
<?php __("Submit and Deactivate", "profile-builder"); ?>
|
502 |
<?php __("Load Profile Builder's own CSS file in the front-end:", "profile-builder"); ?>
|
503 |
<?php __("You can find the default file here: %1$s", "profile-builder"); ?>
|
504 |
<?php __("\"Email Confirmation\" Activated:", "profile-builder"); ?>
|
1155 |
<?php __("Your account has to be confirmed by an administrator before you can log in.", "profile-builder"); ?>
|
1156 |
<?php __("Admin Approval", "profile-builder"); ?>
|
1157 |
<?php __("Do you want to", "profile-builder"); ?>
|
1158 |
+
<?php __("Your session has expired! Please refresh the page and try again.", "profile-builder"); ?>
|
1159 |
<?php __("User successfully approved!", "profile-builder"); ?>
|
1160 |
<?php __("User successfully unapproved!", "profile-builder"); ?>
|
1161 |
<?php __("User successfully deleted!", "profile-builder"); ?>
|
1162 |
<?php __("You either don't have permission for that action or there was an error!", "profile-builder"); ?>
|
|
|
1163 |
<?php __("Users successfully approved!", "profile-builder"); ?>
|
1164 |
<?php __("Users successfully unapproved!", "profile-builder"); ?>
|
1165 |
<?php __("Users successfully deleted!", "profile-builder"); ?>
|
translation/profile-builder.pot
CHANGED
@@ -653,7 +653,7 @@ msgstr ""
|
|
653 |
msgid "Replace labels with placeholders:"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: ../pb-add-on-placeholder-labels/pbpl.php:171, index.php:323, ../profile-builder-2.0/admin/general-settings.php:42, ../profile-builder-2.0/admin/general-settings.php:55, ../profile-builder-2.0/admin/general-settings.php:104, ../profile-builder-2.0/admin/general-settings.php:151, ../profile-builder-2.0/admin/general-settings.php:170, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
657 |
msgid "Yes"
|
658 |
msgstr ""
|
659 |
|
@@ -829,7 +829,7 @@ msgstr ""
|
|
829 |
msgid "You have successfully linked your account to %%."
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: index.php:384
|
833 |
msgid "Something went wrong. Please try again later!"
|
834 |
msgstr ""
|
835 |
|
@@ -873,11 +873,7 @@ msgstr ""
|
|
873 |
msgid "You can only login on this form.<br>Register with your social account on the register form."
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: index.php:400
|
877 |
-
msgid "Please enter your Facebook email"
|
878 |
-
msgstr ""
|
879 |
-
|
880 |
-
#: index.php:401
|
881 |
msgid "Please enter your Facebook email!"
|
882 |
msgstr ""
|
883 |
|
@@ -885,11 +881,7 @@ msgstr ""
|
|
885 |
msgid "Waiting for Twitter..."
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: index.php:414
|
889 |
-
msgid "Please enter your Twitter email"
|
890 |
-
msgstr ""
|
891 |
-
|
892 |
-
#: index.php:415
|
893 |
msgid "Please enter your Twitter email!"
|
894 |
msgstr ""
|
895 |
|
@@ -1375,7 +1367,7 @@ msgstr ""
|
|
1375 |
msgid "Double Opt-In"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:368
|
1379 |
msgid "If you select double opt-in, the user will receive an e-mail to confirm the subscription"
|
1380 |
msgstr ""
|
1381 |
|
@@ -1384,7 +1376,7 @@ msgid "Send Welcome E-mail"
|
|
1384 |
msgstr ""
|
1385 |
|
1386 |
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:384, ../pb-add-on-mailchimp-integration/admin/widget.php:231
|
1387 |
-
msgid "If checked will send an e-mail to welcome the user to the
|
1388 |
msgstr ""
|
1389 |
|
1390 |
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:429
|
@@ -1445,10 +1437,6 @@ msgstr ""
|
|
1445 |
msgid "Extra Options"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#: ../pb-add-on-mailchimp-integration/admin/widget.php:219
|
1449 |
-
msgid "If you select double opt-in, the user will receive an e-mail to confirm the subscribtion"
|
1450 |
-
msgstr ""
|
1451 |
-
|
1452 |
#: ../pb-add-on-mailchimp-integration/admin/widget.php:372
|
1453 |
msgid "Please select a list first"
|
1454 |
msgstr ""
|
@@ -1531,10 +1519,6 @@ msgstr ""
|
|
1531 |
msgid "Error Receiving Request Token"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: twitter/twitter.php:108
|
1535 |
-
msgid "Something went wrong. Please try again later."
|
1536 |
-
msgstr ""
|
1537 |
-
|
1538 |
#: twitter/twitter.php:141
|
1539 |
msgid "Link with Twitter"
|
1540 |
msgstr ""
|
@@ -2023,6 +2007,22 @@ msgstr ""
|
|
2023 |
msgid "** only available in the %1$sPro version%2$s."
|
2024 |
msgstr ""
|
2025 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2026 |
#: ../profile-builder-2.0/admin/general-settings.php:39
|
2027 |
msgid "Load Profile Builder's own CSS file in the front-end:"
|
2028 |
msgstr ""
|
@@ -2103,11 +2103,11 @@ msgstr ""
|
|
2103 |
msgid "Username and Email"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
-
#: ../profile-builder-2.0/admin/general-settings.php:199, ../profile-builder-2.0/admin/manage-fields.php:212, ../profile-builder-2.0/front-end/login.php:88, ../profile-builder-2.0/front-end/login.php:102, ../profile-builder-2.0/front-end/login.php:231, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:166, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:60, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:28, ../profile-builder-2.0/modules/user-listing/userlisting.php:111, ../profile-builder-2.0/modules/user-listing/userlisting.php:303, ../profile-builder-2.0/modules/user-listing/userlisting.php:769, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
2107 |
msgid "Username"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#: ../profile-builder-2.0/admin/general-settings.php:200, ../profile-builder-2.0/front-end/login.php:228, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:29, ../profile-builder-2.0/modules/user-listing/userlisting.php:775, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
2111 |
msgid "Email"
|
2112 |
msgstr ""
|
2113 |
|
@@ -2551,7 +2551,7 @@ msgstr ""
|
|
2551 |
msgid "Usernames cannot be changed."
|
2552 |
msgstr ""
|
2553 |
|
2554 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:215, ../profile-builder-2.0/modules/user-listing/userlisting.php:808, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
2555 |
msgid "Nickname"
|
2556 |
msgstr ""
|
2557 |
|
@@ -2563,7 +2563,7 @@ msgstr ""
|
|
2563 |
msgid "E-mail"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:219, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:33, ../profile-builder-2.0/modules/user-listing/userlisting.php:120, ../profile-builder-2.0/modules/user-listing/userlisting.php:790, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
2567 |
msgid "Website"
|
2568 |
msgstr ""
|
2569 |
|
@@ -2579,7 +2579,7 @@ msgstr ""
|
|
2579 |
msgid "Jabber / Google Talk"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:229, ../profile-builder-2.0/modules/user-listing/userlisting.php:123, ../profile-builder-2.0/modules/user-listing/userlisting.php:793, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
2583 |
msgid "Biographical Info"
|
2584 |
msgstr ""
|
2585 |
|
@@ -4681,8 +4681,8 @@ msgstr ""
|
|
4681 |
msgid "Do you want to"
|
4682 |
msgstr ""
|
4683 |
|
4684 |
-
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:51
|
4685 |
-
msgid "Your session has expired! Please refresh the page and try again"
|
4686 |
msgstr ""
|
4687 |
|
4688 |
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:67, ../profile-builder-2.0/features/admin-approval/admin-approval.php:279
|
@@ -4701,10 +4701,6 @@ msgstr ""
|
|
4701 |
msgid "You either don't have permission for that action or there was an error!"
|
4702 |
msgstr ""
|
4703 |
|
4704 |
-
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:99
|
4705 |
-
msgid "Your session has expired! Please refresh the page and try again."
|
4706 |
-
msgstr ""
|
4707 |
-
|
4708 |
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:112
|
4709 |
msgid "Users successfully approved!"
|
4710 |
msgstr ""
|
@@ -4773,15 +4769,15 @@ msgstr ""
|
|
4773 |
msgid "Approve"
|
4774 |
msgstr ""
|
4775 |
|
4776 |
-
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:167, ../profile-builder-2.0/modules/user-listing/userlisting.php:304, ../profile-builder-2.0/modules/user-listing/userlisting.php:781, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
4777 |
msgid "Firstname"
|
4778 |
msgstr ""
|
4779 |
|
4780 |
-
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:168, ../profile-builder-2.0/modules/user-listing/userlisting.php:784, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
4781 |
msgid "Lastname"
|
4782 |
msgstr ""
|
4783 |
|
4784 |
-
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:170, ../profile-builder-2.0/features/roles-editor/roles-editor.php:255, ../profile-builder-2.0/modules/user-listing/userlisting.php:159, ../profile-builder-2.0/modules/user-listing/userlisting.php:305, ../profile-builder-2.0/modules/user-listing/userlisting.php:811, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
4785 |
msgid "Role"
|
4786 |
msgstr ""
|
4787 |
|
@@ -5645,27 +5641,27 @@ msgstr ""
|
|
5645 |
msgid "No Edit-profile Forms found in trash"
|
5646 |
msgstr ""
|
5647 |
|
5648 |
-
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:138, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
5649 |
msgid "Shortcode"
|
5650 |
msgstr ""
|
5651 |
|
5652 |
-
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:159, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
5653 |
msgid "(no title)"
|
5654 |
msgstr ""
|
5655 |
|
5656 |
-
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:178, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
5657 |
msgid "The shortcode will be available after you publish this form."
|
5658 |
msgstr ""
|
5659 |
|
5660 |
-
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:180, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
5661 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
5662 |
msgstr ""
|
5663 |
|
5664 |
-
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:184, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
5665 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
5666 |
msgstr ""
|
5667 |
|
5668 |
-
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:190, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
5669 |
msgid "Form Shortcode"
|
5670 |
msgstr ""
|
5671 |
|
@@ -5817,11 +5813,11 @@ msgstr ""
|
|
5817 |
msgid "Display name as"
|
5818 |
msgstr ""
|
5819 |
|
5820 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:161, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
5821 |
msgid "Registration Date"
|
5822 |
msgstr ""
|
5823 |
|
5824 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:162, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
5825 |
msgid "Number of Posts"
|
5826 |
msgstr ""
|
5827 |
|
@@ -5857,7 +5853,7 @@ msgstr ""
|
|
5857 |
msgid "Search all Fields"
|
5858 |
msgstr ""
|
5859 |
|
5860 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:227, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
5861 |
msgid "Faceted Menus"
|
5862 |
msgstr ""
|
5863 |
|
@@ -5909,23 +5905,23 @@ msgstr ""
|
|
5909 |
msgid "First/Lastname"
|
5910 |
msgstr ""
|
5911 |
|
5912 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:787, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
5913 |
msgid "Display Name"
|
5914 |
msgstr ""
|
5915 |
|
5916 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:799, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
5917 |
msgid "Aim"
|
5918 |
msgstr ""
|
5919 |
|
5920 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:802, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
5921 |
msgid "Yim"
|
5922 |
msgstr ""
|
5923 |
|
5924 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:805, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
5925 |
msgid "Jabber"
|
5926 |
msgstr ""
|
5927 |
|
5928 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1077, ../profile-builder-2.0/modules/user-listing/userlisting.php:1537, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
5929 |
msgid "Search Users by All Fields"
|
5930 |
msgstr ""
|
5931 |
|
@@ -5985,195 +5981,195 @@ msgstr ""
|
|
5985 |
msgid "No options available"
|
5986 |
msgstr ""
|
5987 |
|
5988 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
5989 |
msgid "Remove All Filters"
|
5990 |
msgstr ""
|
5991 |
|
5992 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
5993 |
msgid "Search"
|
5994 |
msgstr ""
|
5995 |
|
5996 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
5997 |
msgid "Clear Results"
|
5998 |
msgstr ""
|
5999 |
|
6000 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6001 |
msgid "Extra shortcode parameters"
|
6002 |
msgstr ""
|
6003 |
|
6004 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6005 |
msgid "View all extra shortcode parameters"
|
6006 |
msgstr ""
|
6007 |
|
6008 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6009 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6010 |
msgstr ""
|
6011 |
|
6012 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6013 |
msgid "Example:"
|
6014 |
msgstr ""
|
6015 |
|
6016 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6017 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6018 |
msgstr ""
|
6019 |
|
6020 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6021 |
msgid "displays only the users that you specified the user_id for"
|
6022 |
msgstr ""
|
6023 |
|
6024 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6025 |
msgid "displays all users except the ones you specified the user_id for"
|
6026 |
msgstr ""
|
6027 |
|
6028 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6029 |
msgid "Random (very slow on large databases > 10K user)"
|
6030 |
msgstr ""
|
6031 |
|
6032 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6033 |
msgid "Ascending"
|
6034 |
msgstr ""
|
6035 |
|
6036 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6037 |
msgid "Descending"
|
6038 |
msgstr ""
|
6039 |
|
6040 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6041 |
msgid "Roles to Display"
|
6042 |
msgstr ""
|
6043 |
|
6044 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6045 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6046 |
msgstr ""
|
6047 |
|
6048 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6049 |
msgid "Number of Users/Page"
|
6050 |
msgstr ""
|
6051 |
|
6052 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6053 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6054 |
msgstr ""
|
6055 |
|
6056 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6057 |
msgid "Default Sorting Criteria"
|
6058 |
msgstr ""
|
6059 |
|
6060 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6061 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6062 |
msgstr ""
|
6063 |
|
6064 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6065 |
msgid "Default Sorting Order"
|
6066 |
msgstr ""
|
6067 |
|
6068 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6069 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6070 |
msgstr ""
|
6071 |
|
6072 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6073 |
msgid "Avatar Size (All-userlisting)"
|
6074 |
msgstr ""
|
6075 |
|
6076 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6077 |
msgid "Set the avatar size on the all-userlisting only"
|
6078 |
msgstr ""
|
6079 |
|
6080 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6081 |
msgid "Avatar Size (Single-userlisting)"
|
6082 |
msgstr ""
|
6083 |
|
6084 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6085 |
msgid "Set the avatar size on the single-userlisting only"
|
6086 |
msgstr ""
|
6087 |
|
6088 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6089 |
msgid "Visible only to logged in users?"
|
6090 |
msgstr ""
|
6091 |
|
6092 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6093 |
msgid "The userlisting will only be visible only to the logged in users"
|
6094 |
msgstr ""
|
6095 |
|
6096 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6097 |
msgid "Visible to following Roles"
|
6098 |
msgstr ""
|
6099 |
|
6100 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6101 |
msgid "The userlisting will only be visible to the following roles"
|
6102 |
msgstr ""
|
6103 |
|
6104 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6105 |
msgid "Userlisting Settings"
|
6106 |
msgstr ""
|
6107 |
|
6108 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6109 |
msgid "Label"
|
6110 |
msgstr ""
|
6111 |
|
6112 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6113 |
msgid "Choose the facet name that appears on the frontend"
|
6114 |
msgstr ""
|
6115 |
|
6116 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6117 |
msgid "Facet Type"
|
6118 |
msgstr ""
|
6119 |
|
6120 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6121 |
msgid "Choose the facet menu type"
|
6122 |
msgstr ""
|
6123 |
|
6124 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6125 |
msgid "Facet Meta"
|
6126 |
msgstr ""
|
6127 |
|
6128 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6129 |
msgid "Choose the meta field for the facet menu"
|
6130 |
msgstr ""
|
6131 |
|
6132 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6133 |
msgid "Behaviour"
|
6134 |
msgstr ""
|
6135 |
|
6136 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6137 |
msgid "Narrow the results"
|
6138 |
msgstr ""
|
6139 |
|
6140 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6141 |
msgid "Expand the results"
|
6142 |
msgstr ""
|
6143 |
|
6144 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6145 |
msgid "Choose how multiple selections affect the results"
|
6146 |
msgstr ""
|
6147 |
|
6148 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6149 |
msgid "Visible choices"
|
6150 |
msgstr ""
|
6151 |
|
6152 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6153 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6154 |
msgstr ""
|
6155 |
|
6156 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6157 |
msgid "Search Fields"
|
6158 |
msgstr ""
|
6159 |
|
6160 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6161 |
msgid "Choose the fields in which the Search Field will look in"
|
6162 |
msgstr ""
|
6163 |
|
6164 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6165 |
msgid "Search Settings"
|
6166 |
msgstr ""
|
6167 |
|
6168 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6169 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6170 |
msgstr ""
|
6171 |
|
6172 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6173 |
msgid "You can find it in the Profile Builder menu."
|
6174 |
msgstr ""
|
6175 |
|
6176 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6177 |
msgid "No results found!"
|
6178 |
msgstr ""
|
6179 |
|
653 |
msgid "Replace labels with placeholders:"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:171, index.php:323, ../profile-builder-2.0/admin/general-settings.php:42, ../profile-builder-2.0/admin/general-settings.php:55, ../profile-builder-2.0/admin/general-settings.php:104, ../profile-builder-2.0/admin/general-settings.php:151, ../profile-builder-2.0/admin/general-settings.php:170, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230, ../profile-builder-2.0/modules/user-listing/userlisting.php:2318
|
657 |
msgid "Yes"
|
658 |
msgstr ""
|
659 |
|
829 |
msgid "You have successfully linked your account to %%."
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: index.php:384, twitter/twitter.php:108
|
833 |
msgid "Something went wrong. Please try again later!"
|
834 |
msgstr ""
|
835 |
|
873 |
msgid "You can only login on this form.<br>Register with your social account on the register form."
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: index.php:400, index.php:401
|
|
|
|
|
|
|
|
|
877 |
msgid "Please enter your Facebook email!"
|
878 |
msgstr ""
|
879 |
|
881 |
msgid "Waiting for Twitter..."
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: index.php:414, index.php:415
|
|
|
|
|
|
|
|
|
885 |
msgid "Please enter your Twitter email!"
|
886 |
msgstr ""
|
887 |
|
1367 |
msgid "Double Opt-In"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:368, ../pb-add-on-mailchimp-integration/admin/widget.php:219
|
1371 |
msgid "If you select double opt-in, the user will receive an e-mail to confirm the subscription"
|
1372 |
msgstr ""
|
1373 |
|
1376 |
msgstr ""
|
1377 |
|
1378 |
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:384, ../pb-add-on-mailchimp-integration/admin/widget.php:231
|
1379 |
+
msgid "If checked will send an e-mail to welcome the user to the subscription area"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:429
|
1437 |
msgid "Extra Options"
|
1438 |
msgstr ""
|
1439 |
|
|
|
|
|
|
|
|
|
1440 |
#: ../pb-add-on-mailchimp-integration/admin/widget.php:372
|
1441 |
msgid "Please select a list first"
|
1442 |
msgstr ""
|
1519 |
msgid "Error Receiving Request Token"
|
1520 |
msgstr ""
|
1521 |
|
|
|
|
|
|
|
|
|
1522 |
#: twitter/twitter.php:141
|
1523 |
msgid "Link with Twitter"
|
1524 |
msgstr ""
|
2007 |
msgid "** only available in the %1$sPro version%2$s."
|
2008 |
msgstr ""
|
2009 |
|
2010 |
+
#: ../profile-builder-2.0/admin/feedback.php:9
|
2011 |
+
msgid "Quick Feedback"
|
2012 |
+
msgstr ""
|
2013 |
+
|
2014 |
+
#: ../profile-builder-2.0/admin/feedback.php:11
|
2015 |
+
msgid "Because we care about our clients, please leave us feedback on why you are no longer using our plugin."
|
2016 |
+
msgstr ""
|
2017 |
+
|
2018 |
+
#: ../profile-builder-2.0/admin/feedback.php:12
|
2019 |
+
msgid "Skip and Deactivate"
|
2020 |
+
msgstr ""
|
2021 |
+
|
2022 |
+
#: ../profile-builder-2.0/admin/feedback.php:83
|
2023 |
+
msgid "Submit and Deactivate"
|
2024 |
+
msgstr ""
|
2025 |
+
|
2026 |
#: ../profile-builder-2.0/admin/general-settings.php:39
|
2027 |
msgid "Load Profile Builder's own CSS file in the front-end:"
|
2028 |
msgstr ""
|
2103 |
msgid "Username and Email"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: ../profile-builder-2.0/admin/general-settings.php:199, ../profile-builder-2.0/admin/manage-fields.php:212, ../profile-builder-2.0/front-end/login.php:88, ../profile-builder-2.0/front-end/login.php:102, ../profile-builder-2.0/front-end/login.php:231, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:166, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:60, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:28, ../profile-builder-2.0/modules/user-listing/userlisting.php:111, ../profile-builder-2.0/modules/user-listing/userlisting.php:303, ../profile-builder-2.0/modules/user-listing/userlisting.php:769, ../profile-builder-2.0/modules/user-listing/userlisting.php:2269
|
2107 |
msgid "Username"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#: ../profile-builder-2.0/admin/general-settings.php:200, ../profile-builder-2.0/front-end/login.php:228, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:29, ../profile-builder-2.0/modules/user-listing/userlisting.php:775, ../profile-builder-2.0/modules/user-listing/userlisting.php:2270
|
2111 |
msgid "Email"
|
2112 |
msgstr ""
|
2113 |
|
2551 |
msgid "Usernames cannot be changed."
|
2552 |
msgstr ""
|
2553 |
|
2554 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:215, ../profile-builder-2.0/modules/user-listing/userlisting.php:808, ../profile-builder-2.0/modules/user-listing/userlisting.php:2277
|
2555 |
msgid "Nickname"
|
2556 |
msgstr ""
|
2557 |
|
2563 |
msgid "E-mail"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:219, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:33, ../profile-builder-2.0/modules/user-listing/userlisting.php:120, ../profile-builder-2.0/modules/user-listing/userlisting.php:790, ../profile-builder-2.0/modules/user-listing/userlisting.php:2271
|
2567 |
msgid "Website"
|
2568 |
msgstr ""
|
2569 |
|
2579 |
msgid "Jabber / Google Talk"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:229, ../profile-builder-2.0/modules/user-listing/userlisting.php:123, ../profile-builder-2.0/modules/user-listing/userlisting.php:793, ../profile-builder-2.0/modules/user-listing/userlisting.php:2272
|
2583 |
msgid "Biographical Info"
|
2584 |
msgstr ""
|
2585 |
|
4681 |
msgid "Do you want to"
|
4682 |
msgstr ""
|
4683 |
|
4684 |
+
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:51, ../profile-builder-2.0/features/admin-approval/admin-approval.php:99
|
4685 |
+
msgid "Your session has expired! Please refresh the page and try again."
|
4686 |
msgstr ""
|
4687 |
|
4688 |
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:67, ../profile-builder-2.0/features/admin-approval/admin-approval.php:279
|
4701 |
msgid "You either don't have permission for that action or there was an error!"
|
4702 |
msgstr ""
|
4703 |
|
|
|
|
|
|
|
|
|
4704 |
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:112
|
4705 |
msgid "Users successfully approved!"
|
4706 |
msgstr ""
|
4769 |
msgid "Approve"
|
4770 |
msgstr ""
|
4771 |
|
4772 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:167, ../profile-builder-2.0/modules/user-listing/userlisting.php:304, ../profile-builder-2.0/modules/user-listing/userlisting.php:781, ../profile-builder-2.0/modules/user-listing/userlisting.php:2274
|
4773 |
msgid "Firstname"
|
4774 |
msgstr ""
|
4775 |
|
4776 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:168, ../profile-builder-2.0/modules/user-listing/userlisting.php:784, ../profile-builder-2.0/modules/user-listing/userlisting.php:2275
|
4777 |
msgid "Lastname"
|
4778 |
msgstr ""
|
4779 |
|
4780 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:170, ../profile-builder-2.0/features/roles-editor/roles-editor.php:255, ../profile-builder-2.0/modules/user-listing/userlisting.php:159, ../profile-builder-2.0/modules/user-listing/userlisting.php:305, ../profile-builder-2.0/modules/user-listing/userlisting.php:811, ../profile-builder-2.0/modules/user-listing/userlisting.php:2279
|
4781 |
msgid "Role"
|
4782 |
msgstr ""
|
4783 |
|
5641 |
msgid "No Edit-profile Forms found in trash"
|
5642 |
msgstr ""
|
5643 |
|
5644 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:138, ../profile-builder-2.0/modules/user-listing/userlisting.php:2165
|
5645 |
msgid "Shortcode"
|
5646 |
msgstr ""
|
5647 |
|
5648 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:159, ../profile-builder-2.0/modules/user-listing/userlisting.php:2186
|
5649 |
msgid "(no title)"
|
5650 |
msgstr ""
|
5651 |
|
5652 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:178, ../profile-builder-2.0/modules/user-listing/userlisting.php:2206
|
5653 |
msgid "The shortcode will be available after you publish this form."
|
5654 |
msgstr ""
|
5655 |
|
5656 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:180, ../profile-builder-2.0/modules/user-listing/userlisting.php:2208
|
5657 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
5658 |
msgstr ""
|
5659 |
|
5660 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:184, ../profile-builder-2.0/modules/user-listing/userlisting.php:2212
|
5661 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
5662 |
msgstr ""
|
5663 |
|
5664 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:190, ../profile-builder-2.0/modules/user-listing/userlisting.php:2245
|
5665 |
msgid "Form Shortcode"
|
5666 |
msgstr ""
|
5667 |
|
5813 |
msgid "Display name as"
|
5814 |
msgstr ""
|
5815 |
|
5816 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:161, ../profile-builder-2.0/modules/user-listing/userlisting.php:2273
|
5817 |
msgid "Registration Date"
|
5818 |
msgstr ""
|
5819 |
|
5820 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:162, ../profile-builder-2.0/modules/user-listing/userlisting.php:2278
|
5821 |
msgid "Number of Posts"
|
5822 |
msgstr ""
|
5823 |
|
5853 |
msgid "Search all Fields"
|
5854 |
msgstr ""
|
5855 |
|
5856 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:227, ../profile-builder-2.0/modules/user-listing/userlisting.php:2360
|
5857 |
msgid "Faceted Menus"
|
5858 |
msgstr ""
|
5859 |
|
5905 |
msgid "First/Lastname"
|
5906 |
msgstr ""
|
5907 |
|
5908 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:787, ../profile-builder-2.0/modules/user-listing/userlisting.php:2276
|
5909 |
msgid "Display Name"
|
5910 |
msgstr ""
|
5911 |
|
5912 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:799, ../profile-builder-2.0/modules/user-listing/userlisting.php:2283
|
5913 |
msgid "Aim"
|
5914 |
msgstr ""
|
5915 |
|
5916 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:802, ../profile-builder-2.0/modules/user-listing/userlisting.php:2284
|
5917 |
msgid "Yim"
|
5918 |
msgstr ""
|
5919 |
|
5920 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:805, ../profile-builder-2.0/modules/user-listing/userlisting.php:2285
|
5921 |
msgid "Jabber"
|
5922 |
msgstr ""
|
5923 |
|
5924 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1077, ../profile-builder-2.0/modules/user-listing/userlisting.php:1537, ../profile-builder-2.0/modules/user-listing/userlisting.php:2003, ../profile-builder-2.0/modules/user-listing/userlisting.php:2480
|
5925 |
msgid "Search Users by All Fields"
|
5926 |
msgstr ""
|
5927 |
|
5981 |
msgid "No options available"
|
5982 |
msgstr ""
|
5983 |
|
5984 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1911
|
5985 |
msgid "Remove All Filters"
|
5986 |
msgstr ""
|
5987 |
|
5988 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2020
|
5989 |
msgid "Search"
|
5990 |
msgstr ""
|
5991 |
|
5992 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2021
|
5993 |
msgid "Clear Results"
|
5994 |
msgstr ""
|
5995 |
|
5996 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2215, ../profile-builder-2.0/modules/user-listing/userlisting.php:2219
|
5997 |
msgid "Extra shortcode parameters"
|
5998 |
msgstr ""
|
5999 |
|
6000 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2217
|
6001 |
msgid "View all extra shortcode parameters"
|
6002 |
msgstr ""
|
6003 |
|
6004 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2222
|
6005 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6006 |
msgstr ""
|
6007 |
|
6008 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2223
|
6009 |
msgid "Example:"
|
6010 |
msgstr ""
|
6011 |
|
6012 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2225
|
6013 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6014 |
msgstr ""
|
6015 |
|
6016 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2231
|
6017 |
msgid "displays only the users that you specified the user_id for"
|
6018 |
msgstr ""
|
6019 |
|
6020 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2237
|
6021 |
msgid "displays all users except the ones you specified the user_id for"
|
6022 |
msgstr ""
|
6023 |
|
6024 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2300
|
6025 |
msgid "Random (very slow on large databases > 10K user)"
|
6026 |
msgstr ""
|
6027 |
|
6028 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2303
|
6029 |
msgid "Ascending"
|
6030 |
msgstr ""
|
6031 |
|
6032 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2304
|
6033 |
msgid "Descending"
|
6034 |
msgstr ""
|
6035 |
|
6036 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2312
|
6037 |
msgid "Roles to Display"
|
6038 |
msgstr ""
|
6039 |
|
6040 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2312
|
6041 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6042 |
msgstr ""
|
6043 |
|
6044 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2313
|
6045 |
msgid "Number of Users/Page"
|
6046 |
msgstr ""
|
6047 |
|
6048 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2313
|
6049 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6050 |
msgstr ""
|
6051 |
|
6052 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2314
|
6053 |
msgid "Default Sorting Criteria"
|
6054 |
msgstr ""
|
6055 |
|
6056 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2314
|
6057 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6058 |
msgstr ""
|
6059 |
|
6060 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2315
|
6061 |
msgid "Default Sorting Order"
|
6062 |
msgstr ""
|
6063 |
|
6064 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2315
|
6065 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6066 |
msgstr ""
|
6067 |
|
6068 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2316
|
6069 |
msgid "Avatar Size (All-userlisting)"
|
6070 |
msgstr ""
|
6071 |
|
6072 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2316
|
6073 |
msgid "Set the avatar size on the all-userlisting only"
|
6074 |
msgstr ""
|
6075 |
|
6076 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2317
|
6077 |
msgid "Avatar Size (Single-userlisting)"
|
6078 |
msgstr ""
|
6079 |
|
6080 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2317
|
6081 |
msgid "Set the avatar size on the single-userlisting only"
|
6082 |
msgstr ""
|
6083 |
|
6084 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2318
|
6085 |
msgid "Visible only to logged in users?"
|
6086 |
msgstr ""
|
6087 |
|
6088 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2318
|
6089 |
msgid "The userlisting will only be visible only to the logged in users"
|
6090 |
msgstr ""
|
6091 |
|
6092 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2319
|
6093 |
msgid "Visible to following Roles"
|
6094 |
msgstr ""
|
6095 |
|
6096 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2319
|
6097 |
msgid "The userlisting will only be visible to the following roles"
|
6098 |
msgstr ""
|
6099 |
|
6100 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2325
|
6101 |
msgid "Userlisting Settings"
|
6102 |
msgstr ""
|
6103 |
|
6104 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2350
|
6105 |
msgid "Label"
|
6106 |
msgstr ""
|
6107 |
|
6108 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2350
|
6109 |
msgid "Choose the facet name that appears on the frontend"
|
6110 |
msgstr ""
|
6111 |
|
6112 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2351
|
6113 |
msgid "Facet Type"
|
6114 |
msgstr ""
|
6115 |
|
6116 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2351
|
6117 |
msgid "Choose the facet menu type"
|
6118 |
msgstr ""
|
6119 |
|
6120 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2352
|
6121 |
msgid "Facet Meta"
|
6122 |
msgstr ""
|
6123 |
|
6124 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2352
|
6125 |
msgid "Choose the meta field for the facet menu"
|
6126 |
msgstr ""
|
6127 |
|
6128 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2353
|
6129 |
msgid "Behaviour"
|
6130 |
msgstr ""
|
6131 |
|
6132 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2353
|
6133 |
msgid "Narrow the results"
|
6134 |
msgstr ""
|
6135 |
|
6136 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2353
|
6137 |
msgid "Expand the results"
|
6138 |
msgstr ""
|
6139 |
|
6140 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2353
|
6141 |
msgid "Choose how multiple selections affect the results"
|
6142 |
msgstr ""
|
6143 |
|
6144 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2354
|
6145 |
msgid "Visible choices"
|
6146 |
msgstr ""
|
6147 |
|
6148 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2354
|
6149 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6150 |
msgstr ""
|
6151 |
|
6152 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2379
|
6153 |
msgid "Search Fields"
|
6154 |
msgstr ""
|
6155 |
|
6156 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2379
|
6157 |
msgid "Choose the fields in which the Search Field will look in"
|
6158 |
msgstr ""
|
6159 |
|
6160 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2384
|
6161 |
msgid "Search Settings"
|
6162 |
msgstr ""
|
6163 |
|
6164 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2456
|
6165 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6166 |
msgstr ""
|
6167 |
|
6168 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2456
|
6169 |
msgid "You can find it in the Profile Builder menu."
|
6170 |
msgstr ""
|
6171 |
|
6172 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2619
|
6173 |
msgid "No results found!"
|
6174 |
msgstr ""
|
6175 |
|