Version Description
- Secupress plugin compatiblity when activating "Move the login and admin pages"
- Fixed issue with content restriction and url redirect if url was missing 'http'
- Select2 now offers a labels tag in the Userlisting
- Small css change
- Reimplemented the deactivation feedback poll
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 2.8.7 |
Comparing to | |
See all releases |
Code changes from version 2.8.6 to 2.8.7
- admin/feedback.php +158 -30
- assets/css/style-front-end.css +1 -1
- assets/misc/plugin-compatibilities.php +11 -0
- features/content-restriction/content-restriction-functions.php +1 -1
- features/functions.php +12 -0
- index.php +2 -2
- readme.txt +9 -2
- translation/profile-builder.catalog.php +11 -1
- translation/profile-builder.pot +119 -79
admin/feedback.php
CHANGED
@@ -1,15 +1,68 @@
|
|
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="
|
9 |
-
|
10 |
-
<
|
11 |
-
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
</div>
|
14 |
<?php
|
15 |
}
|
@@ -19,38 +72,65 @@ function wppb_add_feedback_modal(){
|
|
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 |
-
|
26 |
-
|
27 |
|
28 |
-
|
29 |
|
30 |
-
|
|
|
|
|
|
|
|
|
|
|
31 |
|
32 |
-
|
33 |
-
|
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 |
-
|
40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
}
|
@@ -103,11 +183,59 @@ function wppb_add_feedback_style(){
|
|
103 |
border-radius: 3px;
|
104 |
}
|
105 |
|
106 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
float: right;
|
108 |
-
margin-top: -55px !important;
|
109 |
-
margin-right: 10px !important;
|
110 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
</style>
|
112 |
<?php
|
113 |
}
|
1 |
<?php
|
2 |
+
global $gf_feedback_custom_poll_id;
|
3 |
+
global $gf_feedback_custom_poll_action_link;
|
4 |
+
$gf_feedback_custom_poll_id = '14';
|
5 |
+
$gf_feedback_custom_poll_action_link = 'https://www.cozmoslabs.com/profile-builder-poll/';
|
6 |
+
|
7 |
/* add the modal on the plugin screen and embed a polldaddy form in it */
|
8 |
add_action( 'admin_footer', 'wppb_add_feedback_modal' );
|
9 |
function wppb_add_feedback_modal(){
|
10 |
global $current_screen;
|
11 |
+
global $gf_feedback_custom_poll_id;
|
12 |
+
global $gf_feedback_custom_poll_action_link;
|
13 |
+
|
14 |
+
$gf_id = $gf_feedback_custom_poll_id;
|
15 |
+
$action_link = $gf_feedback_custom_poll_action_link;
|
16 |
+
|
17 |
if( $current_screen->base == 'plugins' ){
|
18 |
?>
|
19 |
+
<div id="custom-feedback-modal">
|
20 |
+
|
21 |
+
<div class="custom-feedback-poll-content">
|
22 |
+
|
23 |
+
<h1 style="padding-left:10px;padding-top:15px;"><?php _e('Quick Feedback', 'profile-builder'); ?></h1>
|
24 |
+
<p><?php _e( 'Because we care about our clients, please leave us feedback on why you are no longer using our plugin.', 'profile-builder'); ?></p>
|
25 |
+
<form method="post" enctype="multipart/form-data" id="gform_<?php echo $gf_id; ?>" class="gpoll_enabled gpoll" action="<?php echo $action_link; ?>">
|
26 |
+
<div>
|
27 |
+
<ul>
|
28 |
+
<li>
|
29 |
+
<input name="input_1" type="radio" value="gpoll1d7fc0436" id="choice_<?php echo $gf_id; ?>_1_0">
|
30 |
+
<label for="choice_<?php echo $gf_id; ?>_1_0" id="label_<?php echo $gf_id; ?>_1_0"><?php _e( 'Lacking certain features', 'profile-builder'); ?></label>
|
31 |
+
<input class="poll_custom_hidden_detail" name="input_2" id="input_<?php echo $gf_id; ?>_2" type="text" value="" placeholder="<?php _e( 'What feature would you like to see?', 'profile-builder' ); ?>">
|
32 |
+
</li>
|
33 |
+
<li>
|
34 |
+
<input name="input_1" type="radio" value="gpoll19c993bd1" id="choice_<?php echo $gf_id; ?>_1_1">
|
35 |
+
<label for="choice_<?php echo $gf_id; ?>_1_1" id="label_<?php echo $gf_id; ?>_1_1"><?php _e( 'Hard to use', 'profile-builder'); ?></label>
|
36 |
+
<input class="poll_custom_hidden_detail" name="input_3" id="input_<?php echo $gf_id; ?>_3" type="text" value="" placeholder="<?php _e( 'How can we improve our user experience ?', 'profile-builder' ); ?>">
|
37 |
+
</li>
|
38 |
+
<li>
|
39 |
+
<input name="input_1" type="radio" value="gpoll147502d8a" id="choice_<?php echo $gf_id; ?>_1_2">
|
40 |
+
<label for="choice_<?php echo $gf_id; ?>_1_2" id="label_<?php echo $gf_id; ?>_1_2"><?php _e( 'Unsatisfactory support', 'profile-builder' ); ?></label>
|
41 |
+
<span class="poll_custom_hidden_detail"><?php _e( "Give us another try! Open a support ticket <a href='https://www.cozmoslabs.com/support/open-ticket/' target='_blank'>here</a>" ) ?></span>
|
42 |
+
</li>
|
43 |
+
<li>
|
44 |
+
<input name="input_1" type="radio" value="gpoll18cbe0189" id="choice_<?php echo $gf_id; ?>_1_3">
|
45 |
+
<label for="choice_<?php echo $gf_id; ?>_1_3" id="label_<?php echo $gf_id; ?>_1_3"><?php _e( 'Poor Documentation', 'profile-builder'); ?></label>
|
46 |
+
<input class="poll_custom_hidden_detail" name="input_5" id="input_<?php echo $gf_id; ?>_5" type="text" value="" placeholder="<?php _e( "Tell us what you couldn't find", 'profile-builder' ); ?>">
|
47 |
+
</li>
|
48 |
+
<li>
|
49 |
+
<input name="input_1" type="radio" value="gpoll1353bb209" id="choice_<?php echo $gf_id; ?>_1_4">
|
50 |
+
<label for="choice_<?php echo $gf_id; ?>_1_4" id="label_<?php echo $gf_id; ?>_1_4"><?php _e( 'Other', 'profile-builder'); ?></label>
|
51 |
+
<input class="poll_custom_hidden_detail" name="input_4" id="input_<?php echo $gf_id; ?>_4" type="text" value="" placeholder="<?php _e( 'Please tell us more', 'profile-builder' ); ?>">
|
52 |
+
</li>
|
53 |
+
</ul>
|
54 |
+
</div>
|
55 |
+
<div class="gform_footer">
|
56 |
+
<input type="submit" id="gform_submit_button_<?php echo $gf_id; ?>" class="button button-primary" value="<?php _e( 'Submit & Deactivate', 'profile-builder' ); ?>" disabled="disabled">
|
57 |
+
<input type="hidden" class="gform_hidden" name="is_submit_<?php echo $gf_id; ?>" value="1">
|
58 |
+
<input type="hidden" class="gform_hidden" name="gform_submit" value="<?php echo $gf_id; ?>">
|
59 |
+
<a href="#" class="button secondary custom-feedback-skip"><?php _e('Skip and Deactivate', 'profile-builder'); ?></a>
|
60 |
+
</div>
|
61 |
+
</form>
|
62 |
+
|
63 |
+
|
64 |
+
</div>
|
65 |
+
|
66 |
</div>
|
67 |
<?php
|
68 |
}
|
72 |
add_action( 'admin_footer', 'wppb_add_feedback_script' );
|
73 |
function wppb_add_feedback_script(){
|
74 |
global $current_screen;
|
75 |
+
global $gf_feedback_custom_poll_id;
|
76 |
+
global $gf_feedback_custom_poll_action_link;
|
77 |
+
$action_link = $gf_feedback_custom_poll_action_link;
|
78 |
+
|
79 |
+
$gf_id = $gf_feedback_custom_poll_id;
|
80 |
+
|
81 |
if( $current_screen->base == 'plugins' ) {
|
82 |
?>
|
83 |
<script>
|
84 |
+
jQuery(function () {
|
85 |
+
pluginSlug = 'profile-builder';// define the plugin slug here
|
86 |
|
87 |
+
if (jQuery('tr[data-slug="' + pluginSlug + '"] .deactivate a').length != 0) {
|
88 |
|
89 |
+
/* the conditional fields */
|
90 |
+
jQuery("#gform_<?php echo $gf_id; ?> input[type='radio']").click(function(){
|
91 |
+
jQuery("#gform_<?php echo $gf_id; ?> input[type='submit']").prop("disabled", false);
|
92 |
+
jQuery( '.poll_custom_hidden_detail' ).hide();
|
93 |
+
jQuery( '.poll_custom_hidden_detail', jQuery(this).parent() ).show();
|
94 |
+
});
|
95 |
|
96 |
+
/* this is the deactivation link */
|
97 |
+
deactivationLink = jQuery('tr[data-slug="' + pluginSlug + '"] .deactivate a').attr('href');
|
|
|
|
|
|
|
|
|
98 |
|
99 |
+
/* show the modal when you click deactivate */
|
100 |
+
jQuery('tr[data-slug="' + pluginSlug + '"] .deactivate a').click(function (e){
|
101 |
+
e . preventDefault();
|
102 |
+
e . stopPropagation();
|
103 |
+
tb_show("Profile Builder Quick Feedback", "#TB_inline?width=740&height=500&inlineId=custom-feedback-modal");
|
104 |
+
jQuery('#TB_ajaxContent').closest('#TB_window').css({ height : "auto", top: "50%", marginTop: "-300px" });
|
105 |
+
});
|
106 |
+
|
107 |
+
/* on submit */
|
108 |
+
jQuery("#gform_<?php echo $gf_id; ?>").submit(function(e) {
|
109 |
+
var url = "<?php echo $action_link; ?>"; // the script where you handle the form input.
|
110 |
+
|
111 |
+
jQuery.ajax({
|
112 |
+
type: "POST",
|
113 |
+
url: url,
|
114 |
+
data: jQuery("#gform_<?php echo $gf_id; ?>").serialize(), // serializes the form's elements.
|
115 |
+
complete: function()
|
116 |
+
{
|
117 |
+
tb_remove();
|
118 |
+
window.location.href = deactivationLink;
|
119 |
+
}
|
120 |
+
});
|
121 |
+
|
122 |
+
e.preventDefault(); // avoid to execute the actual submit of the form.
|
123 |
+
});
|
124 |
+
|
125 |
+
/* on skip */
|
126 |
+
jQuery('.custom-feedback-skip').on('click', function(e){
|
127 |
+
e.preventDefault();
|
128 |
self.parent.tb_remove();
|
129 |
window.location.href = deactivationLink;
|
130 |
+
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
|
132 |
+
}
|
133 |
+
});
|
134 |
</script>
|
135 |
<?php
|
136 |
}
|
183 |
border-radius: 3px;
|
184 |
}
|
185 |
|
186 |
+
#custom-feedback-modal{
|
187 |
+
display: none;
|
188 |
+
}
|
189 |
+
|
190 |
+
.custom-feedback-poll-content{
|
191 |
+
font-size:15px;
|
192 |
+
padding:0 10px;
|
193 |
+
}
|
194 |
+
|
195 |
+
.custom-feedback-poll-content h1{
|
196 |
+
padding-left: 0 !important;
|
197 |
+
margin-left:0;
|
198 |
+
}
|
199 |
+
|
200 |
+
.custom-feedback-poll-content form ul li > *{
|
201 |
+
vertical-align: middle;
|
202 |
+
}
|
203 |
+
|
204 |
+
.custom-feedback-poll-content label{
|
205 |
+
line-height:27px;
|
206 |
+
}
|
207 |
+
|
208 |
+
.custom-feedback-poll-content span{
|
209 |
+
font-size: 13px;
|
210 |
+
line-height:27px;
|
211 |
+
}
|
212 |
+
|
213 |
+
.custom-feedback-poll-content input[type='radio']{
|
214 |
+
margin-top:2px;
|
215 |
+
}
|
216 |
+
|
217 |
+
.custom-feedback-poll-content p{
|
218 |
+
margin-bottom:30px;
|
219 |
+
}
|
220 |
+
|
221 |
+
.custom-feedback-poll-content .gform_footer{
|
222 |
+
margin-top:25px;
|
223 |
+
}
|
224 |
+
|
225 |
+
.custom-feedback-poll-content .button-primary{
|
226 |
+
font-size:15px;
|
227 |
+
}
|
228 |
+
|
229 |
+
.custom-feedback-skip{
|
230 |
float: right;
|
|
|
|
|
231 |
}
|
232 |
+
|
233 |
+
.poll_custom_hidden_detail{
|
234 |
+
display:none;
|
235 |
+
width:300px;
|
236 |
+
margin-left:15px;
|
237 |
+
}
|
238 |
+
|
239 |
</style>
|
240 |
<?php
|
241 |
}
|
assets/css/style-front-end.css
CHANGED
@@ -796,6 +796,6 @@ ul.wppb-faceted-list .hide-this{
|
|
796 |
/**************************************************/
|
797 |
/* This is very weird: if in the css there is a rule on table of border-collapse:collapse; then on FFox and Edge the Media upload won't open
|
798 |
/**************************************************/
|
799 |
-
table{
|
800 |
border-collapse:separate;
|
801 |
}
|
796 |
/**************************************************/
|
797 |
/* This is very weird: if in the css there is a rule on table of border-collapse:collapse; then on FFox and Edge the Media upload won't open
|
798 |
/**************************************************/
|
799 |
+
.wppb-user-forms table{
|
800 |
border-collapse:separate;
|
801 |
}
|
assets/misc/plugin-compatibilities.php
CHANGED
@@ -322,3 +322,14 @@
|
|
322 |
return true;
|
323 |
}
|
324 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
return true;
|
323 |
}
|
324 |
}
|
325 |
+
|
326 |
+
|
327 |
+
/****************************************************
|
328 |
+
* Secupress Compatibility
|
329 |
+
* Compatibility with Secupress plugin when activating Move the login and admin pages
|
330 |
+
****************************************************/
|
331 |
+
if( isset( $_POST['wppb_login'] ) ) {
|
332 |
+
remove_action('login_init', 'secupress_move_login_maybe_deny_login_page', 0);
|
333 |
+
remove_action('secure_auth_redirect', 'secupress_move_login_maybe_deny_login_page', 0);
|
334 |
+
}
|
335 |
+
|
features/content-restriction/content-restriction-functions.php
CHANGED
@@ -168,7 +168,7 @@ function wppb_content_restriction_post_redirect() {
|
|
168 |
}
|
169 |
|
170 |
// Redirect
|
171 |
-
wp_redirect( $redirect_url );
|
172 |
exit;
|
173 |
|
174 |
}
|
168 |
}
|
169 |
|
170 |
// Redirect
|
171 |
+
wp_redirect( wppb_add_missing_http( $redirect_url ) );
|
172 |
exit;
|
173 |
|
174 |
}
|
features/functions.php
CHANGED
@@ -536,6 +536,18 @@ function wppb_check_missing_http( $redirectLink ) {
|
|
536 |
return preg_match( '#^(?:[a-z\d]+(?:-+[a-z\d]+)*\.)+[a-z]+(?::\d+)?(?:/|$)#i', $redirectLink );
|
537 |
}
|
538 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
539 |
|
540 |
|
541 |
//function to output the password strength checker on frontend forms
|
536 |
return preg_match( '#^(?:[a-z\d]+(?:-+[a-z\d]+)*\.)+[a-z]+(?::\d+)?(?:/|$)#i', $redirectLink );
|
537 |
}
|
538 |
|
539 |
+
//function that adds missing http to a link
|
540 |
+
function wppb_add_missing_http( $link ){
|
541 |
+
$http = '';
|
542 |
+
if ( wppb_check_missing_http( $link ) ) { //if missing http(s)
|
543 |
+
$http = 'http';
|
544 |
+
if ((isset($_SERVER["HTTPS"])) && ($_SERVER["HTTPS"] == "on"))
|
545 |
+
$http .= "s";
|
546 |
+
$http .= "://";
|
547 |
+
}
|
548 |
+
|
549 |
+
return $http . $link;
|
550 |
+
}
|
551 |
|
552 |
|
553 |
//function to output the password strength checker on frontend forms
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
-
Version: 2.8.
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
@@ -75,7 +75,7 @@ function wppb_free_plugin_init() {
|
|
75 |
*
|
76 |
*
|
77 |
*/
|
78 |
-
define('PROFILE_BUILDER_VERSION', '2.8.
|
79 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
80 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
81 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
+
Version: 2.8.7
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
75 |
*
|
76 |
*
|
77 |
*/
|
78 |
+
define('PROFILE_BUILDER_VERSION', '2.8.7' );
|
79 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
80 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
81 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
readme.txt
CHANGED
@@ -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
|
5 |
Requires at least: 3.1
|
6 |
-
Tested up to: 4.9.
|
7 |
-
Stable tag: 2.8.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -166,6 +166,13 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
166 |
12. Role Editor
|
167 |
|
168 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
= 2.8.6 =
|
170 |
* Implemented a tabbed settings interface
|
171 |
* Content restriction activated setting is now in the Content Restriction tab
|
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
|
5 |
Requires at least: 3.1
|
6 |
+
Tested up to: 4.9.7
|
7 |
+
Stable tag: 2.8.7
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
166 |
12. Role Editor
|
167 |
|
168 |
== Changelog ==
|
169 |
+
= 2.8.7 =
|
170 |
+
* Secupress plugin compatiblity when activating "Move the login and admin pages"
|
171 |
+
* Fixed issue with content restriction and url redirect if url was missing 'http'
|
172 |
+
* Select2 now offers a labels tag in the Userlisting
|
173 |
+
* Small css change
|
174 |
+
* Reimplemented the deactivation feedback poll
|
175 |
+
|
176 |
= 2.8.6 =
|
177 |
* Implemented a tabbed settings interface
|
178 |
* Content restriction activated setting is now in the Content Restriction tab
|
translation/profile-builder.catalog.php
CHANGED
@@ -512,6 +512,16 @@
|
|
512 |
<?php __("** only available in the %1$sPro version%2$s.", "profile-builder"); ?>
|
513 |
<?php __("Quick Feedback", "profile-builder"); ?>
|
514 |
<?php __("Because we care about our clients, please leave us feedback on why you are no longer using our plugin.", "profile-builder"); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
515 |
<?php __("Skip and Deactivate", "profile-builder"); ?>
|
516 |
<?php __("Submit and Deactivate", "profile-builder"); ?>
|
517 |
<?php __("Admin Bar", "profile-builder"); ?>
|
@@ -1316,7 +1326,7 @@
|
|
1316 |
<?php __("Select a user role.", "profile-builder"); ?>
|
1317 |
<?php __("User Role based Redirects", "profile-builder"); ?>
|
1318 |
<?php __("Global Redirects", "profile-builder"); ?>
|
1319 |
-
<?php __("Login (
|
1320 |
<?php __("Register ( wp-login.php?action=register )", "profile-builder"); ?>
|
1321 |
<?php __("Lost Password ( wp-login.php?action=lostpassword )", "profile-builder"); ?>
|
1322 |
<?php __("Author Archive ( http://sitename.com/author/admin )", "profile-builder"); ?>
|
512 |
<?php __("** only available in the %1$sPro version%2$s.", "profile-builder"); ?>
|
513 |
<?php __("Quick Feedback", "profile-builder"); ?>
|
514 |
<?php __("Because we care about our clients, please leave us feedback on why you are no longer using our plugin.", "profile-builder"); ?>
|
515 |
+
<?php __("Lacking certain features", "profile-builder"); ?>
|
516 |
+
<?php __("What feature would you like to see?", "profile-builder"); ?>
|
517 |
+
<?php __("Hard to use", "profile-builder"); ?>
|
518 |
+
<?php __("How can we improve our user experience ?", "profile-builder"); ?>
|
519 |
+
<?php __("Unsatisfactory support", "profile-builder"); ?>
|
520 |
+
<?php __("Poor Documentation", "profile-builder"); ?>
|
521 |
+
<?php __("Tell us what you couldn't find", "profile-builder"); ?>
|
522 |
+
<?php __("Other", "profile-builder"); ?>
|
523 |
+
<?php __("Please tell us more", "profile-builder"); ?>
|
524 |
+
<?php __("Submit & Deactivate", "profile-builder"); ?>
|
525 |
<?php __("Skip and Deactivate", "profile-builder"); ?>
|
526 |
<?php __("Submit and Deactivate", "profile-builder"); ?>
|
527 |
<?php __("Admin Bar", "profile-builder"); ?>
|
1326 |
<?php __("Select a user role.", "profile-builder"); ?>
|
1327 |
<?php __("User Role based Redirects", "profile-builder"); ?>
|
1328 |
<?php __("Global Redirects", "profile-builder"); ?>
|
1329 |
+
<?php __("Login ( wp-login.php )", "profile-builder"); ?>
|
1330 |
<?php __("Register ( wp-login.php?action=register )", "profile-builder"); ?>
|
1331 |
<?php __("Lost Password ( wp-login.php?action=lostpassword )", "profile-builder"); ?>
|
1332 |
<?php __("Author Archive ( http://sitename.com/author/admin )", "profile-builder"); ?>
|
translation/profile-builder.pot
CHANGED
@@ -25,7 +25,7 @@ msgstr ""
|
|
25 |
msgid "Choose (Single) User Listing to display under bbPress user Profile tab:"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: ../pb-add-on-bbpress/bbpress-page.php:82, ../pb-add-on-bbpress/bbpress-page.php:117, woosync-page.php:80, woosync-page.php:115, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:552, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:233, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:308, ../profile-builder-2.0/features/content-restriction/content-restriction.php:133
|
29 |
msgid "None"
|
30 |
msgstr ""
|
31 |
|
@@ -37,7 +37,7 @@ msgstr ""
|
|
37 |
msgid "Choose Edit Profile form to display under bbPress Profile Edit tab:"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: ../pb-add-on-bbpress/bbpress-page.php:118, ../pb-add-on-buddypress/buddypress-page.php:98, woosync-page.php:116
|
41 |
msgid "Default Edit Profile"
|
42 |
msgstr ""
|
43 |
|
@@ -421,11 +421,11 @@ msgstr ""
|
|
421 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: ../pb-add-on-field-visibility/index.php:222, ../pb-add-on-labels-edit/pble.php:354, ../profile-builder-2.0/admin/manage-fields.php:1238, ../profile-builder-2.0/features/functions.php:
|
425 |
msgid "Edit"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: ../pb-add-on-field-visibility/index.php:222, ../profile-builder-2.0/admin/manage-fields.php:1238, ../profile-builder-2.0/features/functions.php:
|
429 |
msgid "Delete"
|
430 |
msgstr ""
|
431 |
|
@@ -853,7 +853,7 @@ msgstr ""
|
|
853 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: ../pb-add-on-social-connect/index.php:390, ../profile-builder-2.0/features/functions.php:
|
857 |
msgid "here"
|
858 |
msgstr ""
|
859 |
|
@@ -909,179 +909,179 @@ msgstr ""
|
|
909 |
msgid "Your account is linked with:"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: billing-fields.php:5, shipping-fields.php:5
|
913 |
msgid "Country"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: billing-fields.php:6, shipping-fields.php:6, ../profile-builder-2.0/admin/manage-fields.php:245
|
917 |
msgid "First Name"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: billing-fields.php:7, shipping-fields.php:7, ../profile-builder-2.0/admin/manage-fields.php:246
|
921 |
msgid "Last Name"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: billing-fields.php:8, shipping-fields.php:8
|
925 |
msgid "Company Name"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: billing-fields.php:9, shipping-fields.php:9
|
929 |
msgid "Address"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: billing-fields.php:11, shipping-fields.php:11
|
933 |
msgid "Town / City"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: billing-fields.php:12, shipping-fields.php:12
|
937 |
msgid "State / County"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: billing-fields.php:13, shipping-fields.php:13
|
941 |
msgid "Postcode / Zip"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: billing-fields.php:14
|
945 |
msgid "Email Address"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: billing-fields.php:15
|
949 |
msgid "Phone"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: billing-fields.php:278
|
953 |
msgid "Ship to a different address?"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: index.php:160, index.php:729
|
957 |
msgid "Billing Address"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: index.php:160
|
961 |
msgid "Displays customer billing fields in front-end. "
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: index.php:164, index.php:730
|
965 |
msgid "Shipping Address"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: index.php:164
|
969 |
msgid "Displays customer shipping fields in front-end. "
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: index.php:239, index.php:258, index.php:355, index.php:358, index.php:785
|
973 |
msgid "Address line 2"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: index.php:247
|
977 |
msgid "Billing Fields"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: index.php:247
|
981 |
msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: index.php:248
|
985 |
msgid "Billing Fields Order"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: index.php:248
|
989 |
msgid "Save the billing fields order from the billing fields checkboxes"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: index.php:249
|
993 |
msgid "Billing Fields Name"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: index.php:249
|
997 |
msgid "Save the billing fields names"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: index.php:266
|
1001 |
msgid "Shipping Fields"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: index.php:266
|
1005 |
msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: index.php:267
|
1009 |
msgid "Shipping Fields Order"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: index.php:267
|
1013 |
msgid "Save the shipping fields order from the billing fields checkboxes"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: index.php:268
|
1017 |
msgid "Shipping Fields Name"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: index.php:268
|
1021 |
msgid "Save the shipping fields names"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: index.php:296
|
1025 |
msgid "Field Name"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: index.php:297, ../profile-builder-2.0/admin/manage-fields.php:203
|
1029 |
msgid "Required"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: index.php:360
|
1033 |
msgid "Click to edit "
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: index.php:384, ../profile-builder-2.0/front-end/default-fields/email/email.php:47
|
1037 |
msgid "The email you entered is not a valid email address."
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: index.php:642
|
1041 |
msgid "No options available. Please select one country."
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: index.php:661, index.php:686
|
1045 |
msgid "Billing "
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: index.php:669, index.php:693
|
1049 |
msgid "Shipping "
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: index.php:846
|
1053 |
msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: woo-checkout-field-support.php:
|
1057 |
msgid "Display on WooCommerce Checkout"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: woo-checkout-field-support.php:
|
1061 |
msgid "Whether the field should be added to the WooCommerce checkout form or not"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: woosync-page.php:23, woosync-page.php:23, woosync-page.php:70
|
1065 |
msgid "WooCommerce Sync"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: woosync-page.php:76
|
1069 |
msgid "Choose Register form to display on My Account page:"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: woosync-page.php:81
|
1073 |
msgid "Default Register"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: woosync-page.php:104
|
1077 |
msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: woosync-page.php:111
|
1081 |
msgid "Choose Edit Profile form to display on My Account page:"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: woosync-page.php:139
|
1085 |
msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
|
1086 |
msgstr ""
|
1087 |
|
@@ -1165,7 +1165,7 @@ msgstr ""
|
|
1165 |
msgid "Click to edit"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:451, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, ../profile-builder-2.0/features/functions.php:
|
1169 |
msgid "Cancel"
|
1170 |
msgstr ""
|
1171 |
|
@@ -1295,39 +1295,39 @@ msgstr ""
|
|
1295 |
msgid "The Campaign Monitor API key is either missing or is invalid."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#:
|
1299 |
msgid "Communication Preferences"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#:
|
1303 |
msgid "E-mail"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#:
|
1307 |
msgid "Telephone"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#:
|
1311 |
msgid "SMS"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#:
|
1315 |
msgid "Post"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#:
|
1319 |
msgid "Select which communication preferences are available on your site ( drag and drop to re-order )"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#:
|
1323 |
msgid "Communication Preferences Order"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#:
|
1327 |
msgid "Save the communication preferences order"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#:
|
1331 |
msgid "required"
|
1332 |
msgstr ""
|
1333 |
|
@@ -1731,15 +1731,15 @@ msgstr ""
|
|
1731 |
msgid "Very weak"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:279, ../profile-builder-2.0/features/functions.php:
|
1735 |
msgid "Weak"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:280, ../profile-builder-2.0/features/functions.php:
|
1739 |
msgid "Medium"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:281, ../profile-builder-2.0/features/functions.php:
|
1743 |
msgid "Strong"
|
1744 |
msgstr ""
|
1745 |
|
@@ -2067,19 +2067,59 @@ msgstr ""
|
|
2067 |
msgid "** only available in the %1$sPro version%2$s."
|
2068 |
msgstr ""
|
2069 |
|
2070 |
-
#: ../profile-builder-2.0/admin/feedback.php:
|
2071 |
msgid "Quick Feedback"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
-
#: ../profile-builder-2.0/admin/feedback.php:
|
2075 |
msgid "Because we care about our clients, please leave us feedback on why you are no longer using our plugin."
|
2076 |
msgstr ""
|
2077 |
|
2078 |
-
#: ../profile-builder-2.0/admin/feedback.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2079 |
msgid "Skip and Deactivate"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
-
#: ../profile-builder-2.0/admin/feedback.php:
|
2083 |
msgid "Submit and Deactivate"
|
2084 |
msgstr ""
|
2085 |
|
@@ -4389,51 +4429,51 @@ msgstr ""
|
|
4389 |
msgid "I allow the website to collect and store the data I submit through this form."
|
4390 |
msgstr ""
|
4391 |
|
4392 |
-
#: ../profile-builder-2.0/features/functions.php:
|
4393 |
msgid "Strength indicator"
|
4394 |
msgstr ""
|
4395 |
|
4396 |
-
#: ../profile-builder-2.0/features/functions.php:
|
4397 |
msgid "Very Weak"
|
4398 |
msgstr ""
|
4399 |
|
4400 |
-
#: ../profile-builder-2.0/features/functions.php:
|
4401 |
msgid "Minimum length of %d characters."
|
4402 |
msgstr ""
|
4403 |
|
4404 |
-
#: ../profile-builder-2.0/features/functions.php:
|
4405 |
msgid "The password must have a minimum strength of %s."
|
4406 |
msgstr ""
|
4407 |
|
4408 |
-
#: ../profile-builder-2.0/features/functions.php:
|
4409 |
msgid "This field is required"
|
4410 |
msgstr ""
|
4411 |
|
4412 |
-
#: ../profile-builder-2.0/features/functions.php:
|
4413 |
msgid "Please enter a (valid) reCAPTCHA value"
|
4414 |
msgstr ""
|
4415 |
|
4416 |
-
#: ../profile-builder-2.0/features/functions.php:
|
4417 |
msgid "Incorrect phone number"
|
4418 |
msgstr ""
|
4419 |
|
4420 |
-
#: ../profile-builder-2.0/features/functions.php:
|
4421 |
msgid "Save Changes"
|
4422 |
msgstr ""
|
4423 |
|
4424 |
-
#: ../profile-builder-2.0/features/functions.php:
|
4425 |
msgid "Content"
|
4426 |
msgstr ""
|
4427 |
|
4428 |
-
#: ../profile-builder-2.0/features/functions.php:
|
4429 |
msgid "<br><br>Also, you will be able to visit your site at "
|
4430 |
msgstr ""
|
4431 |
|
4432 |
-
#: ../profile-builder-2.0/features/functions.php:
|
4433 |
msgid "<br><br>You can visit your site at "
|
4434 |
msgstr ""
|
4435 |
|
4436 |
-
#: ../profile-builder-2.0/features/functions.php:
|
4437 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4438 |
msgstr ""
|
4439 |
|
@@ -5326,7 +5366,7 @@ msgid "Global Redirects"
|
|
5326 |
msgstr ""
|
5327 |
|
5328 |
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:137
|
5329 |
-
msgid "Login (
|
5330 |
msgstr ""
|
5331 |
|
5332 |
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
|
25 |
msgid "Choose (Single) User Listing to display under bbPress user Profile tab:"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: ../pb-add-on-bbpress/bbpress-page.php:82, ../pb-add-on-bbpress/bbpress-page.php:117, ../pb-add-on-woocommerce/woosync-page.php:80, ../pb-add-on-woocommerce/woosync-page.php:115, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:552, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:233, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:308, ../profile-builder-2.0/features/content-restriction/content-restriction.php:133
|
29 |
msgid "None"
|
30 |
msgstr ""
|
31 |
|
37 |
msgid "Choose Edit Profile form to display under bbPress Profile Edit tab:"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ../pb-add-on-bbpress/bbpress-page.php:118, ../pb-add-on-buddypress/buddypress-page.php:98, ../pb-add-on-woocommerce/woosync-page.php:116
|
41 |
msgid "Default Edit Profile"
|
42 |
msgstr ""
|
43 |
|
421 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: ../pb-add-on-field-visibility/index.php:222, ../pb-add-on-labels-edit/pble.php:354, ../profile-builder-2.0/admin/manage-fields.php:1238, ../profile-builder-2.0/features/functions.php:763, ../profile-builder-2.0/features/functions.php:770, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:108, ../profile-builder-2.0/features/roles-editor/roles-editor.php:866, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:183, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:197, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:211, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:225, ../profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
|
425 |
msgid "Edit"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ../pb-add-on-field-visibility/index.php:222, ../profile-builder-2.0/admin/manage-fields.php:1238, ../profile-builder-2.0/features/functions.php:756, ../profile-builder-2.0/features/functions.php:770, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:113, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218, ../profile-builder-2.0/features/roles-editor/roles-editor.php:179, ../profile-builder-2.0/features/roles-editor/roles-editor.php:884, ../profile-builder-2.0/features/roles-editor/roles-editor.php:893, ../profile-builder-2.0/features/roles-editor/roles-editor.php:904, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:183, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:197, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:211, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:225
|
429 |
msgid "Delete"
|
430 |
msgstr ""
|
431 |
|
853 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: ../pb-add-on-social-connect/index.php:390, ../profile-builder-2.0/features/functions.php:1035
|
857 |
msgid "here"
|
858 |
msgstr ""
|
859 |
|
909 |
msgid "Your account is linked with:"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:5, ../pb-add-on-woocommerce/shipping-fields.php:5
|
913 |
msgid "Country"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, ../profile-builder-2.0/admin/manage-fields.php:245
|
917 |
msgid "First Name"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, ../profile-builder-2.0/admin/manage-fields.php:246
|
921 |
msgid "Last Name"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:8, ../pb-add-on-woocommerce/shipping-fields.php:8
|
925 |
msgid "Company Name"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:9, ../pb-add-on-woocommerce/shipping-fields.php:9
|
929 |
msgid "Address"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:11, ../pb-add-on-woocommerce/shipping-fields.php:11
|
933 |
msgid "Town / City"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:12, ../pb-add-on-woocommerce/shipping-fields.php:12
|
937 |
msgid "State / County"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:13, ../pb-add-on-woocommerce/shipping-fields.php:13
|
941 |
msgid "Postcode / Zip"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:14
|
945 |
msgid "Email Address"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:15
|
949 |
msgid "Phone"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:278
|
953 |
msgid "Ship to a different address?"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: ../pb-add-on-woocommerce/index.php:160, ../pb-add-on-woocommerce/index.php:729
|
957 |
msgid "Billing Address"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: ../pb-add-on-woocommerce/index.php:160
|
961 |
msgid "Displays customer billing fields in front-end. "
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: ../pb-add-on-woocommerce/index.php:164, ../pb-add-on-woocommerce/index.php:730
|
965 |
msgid "Shipping Address"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: ../pb-add-on-woocommerce/index.php:164
|
969 |
msgid "Displays customer shipping fields in front-end. "
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: ../pb-add-on-woocommerce/index.php:239, ../pb-add-on-woocommerce/index.php:258, ../pb-add-on-woocommerce/index.php:355, ../pb-add-on-woocommerce/index.php:358, ../pb-add-on-woocommerce/index.php:785
|
973 |
msgid "Address line 2"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: ../pb-add-on-woocommerce/index.php:247
|
977 |
msgid "Billing Fields"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: ../pb-add-on-woocommerce/index.php:247
|
981 |
msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: ../pb-add-on-woocommerce/index.php:248
|
985 |
msgid "Billing Fields Order"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: ../pb-add-on-woocommerce/index.php:248
|
989 |
msgid "Save the billing fields order from the billing fields checkboxes"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: ../pb-add-on-woocommerce/index.php:249
|
993 |
msgid "Billing Fields Name"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: ../pb-add-on-woocommerce/index.php:249
|
997 |
msgid "Save the billing fields names"
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: ../pb-add-on-woocommerce/index.php:266
|
1001 |
msgid "Shipping Fields"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: ../pb-add-on-woocommerce/index.php:266
|
1005 |
msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: ../pb-add-on-woocommerce/index.php:267
|
1009 |
msgid "Shipping Fields Order"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: ../pb-add-on-woocommerce/index.php:267
|
1013 |
msgid "Save the shipping fields order from the billing fields checkboxes"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: ../pb-add-on-woocommerce/index.php:268
|
1017 |
msgid "Shipping Fields Name"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: ../pb-add-on-woocommerce/index.php:268
|
1021 |
msgid "Save the shipping fields names"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: ../pb-add-on-woocommerce/index.php:296
|
1025 |
msgid "Field Name"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: ../pb-add-on-woocommerce/index.php:297, ../profile-builder-2.0/admin/manage-fields.php:203
|
1029 |
msgid "Required"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: ../pb-add-on-woocommerce/index.php:360
|
1033 |
msgid "Click to edit "
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: ../pb-add-on-woocommerce/index.php:384, ../profile-builder-2.0/front-end/default-fields/email/email.php:47
|
1037 |
msgid "The email you entered is not a valid email address."
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: ../pb-add-on-woocommerce/index.php:642
|
1041 |
msgid "No options available. Please select one country."
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: ../pb-add-on-woocommerce/index.php:661, ../pb-add-on-woocommerce/index.php:686
|
1045 |
msgid "Billing "
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: ../pb-add-on-woocommerce/index.php:669, ../pb-add-on-woocommerce/index.php:693
|
1049 |
msgid "Shipping "
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: ../pb-add-on-woocommerce/index.php:846
|
1053 |
msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: ../pb-add-on-woocommerce/woo-checkout-field-support.php:69
|
1057 |
msgid "Display on WooCommerce Checkout"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: ../pb-add-on-woocommerce/woo-checkout-field-support.php:69
|
1061 |
msgid "Whether the field should be added to the WooCommerce checkout form or not"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: ../pb-add-on-woocommerce/woosync-page.php:23, ../pb-add-on-woocommerce/woosync-page.php:23, ../pb-add-on-woocommerce/woosync-page.php:70
|
1065 |
msgid "WooCommerce Sync"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: ../pb-add-on-woocommerce/woosync-page.php:76
|
1069 |
msgid "Choose Register form to display on My Account page:"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: ../pb-add-on-woocommerce/woosync-page.php:81
|
1073 |
msgid "Default Register"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: ../pb-add-on-woocommerce/woosync-page.php:104
|
1077 |
msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: ../pb-add-on-woocommerce/woosync-page.php:111
|
1081 |
msgid "Choose Edit Profile form to display on My Account page:"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: ../pb-add-on-woocommerce/woosync-page.php:139
|
1085 |
msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
|
1086 |
msgstr ""
|
1087 |
|
1165 |
msgid "Click to edit"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:451, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, ../profile-builder-2.0/features/functions.php:749, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:403, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:395
|
1169 |
msgid "Cancel"
|
1170 |
msgstr ""
|
1171 |
|
1295 |
msgid "The Campaign Monitor API key is either missing or is invalid."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: admin/manage-fields.php:29
|
1299 |
msgid "Communication Preferences"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: admin/manage-fields.php:29, front-end/gdpr-communication-preferences.php:9, ../profile-builder-2.0/admin/manage-fields.php:250, ../profile-builder-2.0/front-end/recover.php:119, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:169, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169, ../profile-builder-2.0/modules/user-listing/userlisting.php:117
|
1303 |
msgid "E-mail"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: admin/manage-fields.php:29, front-end/gdpr-communication-preferences.php:9
|
1307 |
msgid "Telephone"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: admin/manage-fields.php:29, front-end/gdpr-communication-preferences.php:9
|
1311 |
msgid "SMS"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: admin/manage-fields.php:29, front-end/gdpr-communication-preferences.php:9
|
1315 |
msgid "Post"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: admin/manage-fields.php:29
|
1319 |
msgid "Select which communication preferences are available on your site ( drag and drop to re-order )"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: admin/manage-fields.php:30
|
1323 |
msgid "Communication Preferences Order"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: admin/manage-fields.php:30
|
1327 |
msgid "Save the communication preferences order"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: front-end/gdpr-communication-preferences.php:44, ../pb-add-on-select2/front-end/select2-field.php:72, ../pb-add-on-select2/front-end/select2-multiple-field.php:86, ../profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:74, ../profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45, ../profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45, ../profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40, ../profile-builder-2.0/front-end/extra-fields/input/input.php:30, ../profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34, ../profile-builder-2.0/front-end/extra-fields/map/map.php:51, ../profile-builder-2.0/front-end/extra-fields/number/number.php:30, ../profile-builder-2.0/front-end/extra-fields/phone/phone.php:39, ../profile-builder-2.0/front-end/extra-fields/radio/radio.php:44, ../profile-builder-2.0/front-end/extra-fields/select/select.php:51, ../profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:58, ../profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46, ../profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49, ../profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30, ../profile-builder-2.0/front-end/extra-fields/upload/upload.php:70, ../profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
|
1331 |
msgid "required"
|
1332 |
msgstr ""
|
1333 |
|
1731 |
msgid "Very weak"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:279, ../profile-builder-2.0/features/functions.php:583, ../profile-builder-2.0/features/functions.php:607
|
1735 |
msgid "Weak"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:280, ../profile-builder-2.0/features/functions.php:583, ../profile-builder-2.0/features/functions.php:607
|
1739 |
msgid "Medium"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:281, ../profile-builder-2.0/features/functions.php:583, ../profile-builder-2.0/features/functions.php:607
|
1743 |
msgid "Strong"
|
1744 |
msgstr ""
|
1745 |
|
2067 |
msgid "** only available in the %1$sPro version%2$s."
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: ../profile-builder-2.0/admin/feedback.php:23
|
2071 |
msgid "Quick Feedback"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: ../profile-builder-2.0/admin/feedback.php:24
|
2075 |
msgid "Because we care about our clients, please leave us feedback on why you are no longer using our plugin."
|
2076 |
msgstr ""
|
2077 |
|
2078 |
+
#: ../profile-builder-2.0/admin/feedback.php:30
|
2079 |
+
msgid "Lacking certain features"
|
2080 |
+
msgstr ""
|
2081 |
+
|
2082 |
+
#: ../profile-builder-2.0/admin/feedback.php:31
|
2083 |
+
msgid "What feature would you like to see?"
|
2084 |
+
msgstr ""
|
2085 |
+
|
2086 |
+
#: ../profile-builder-2.0/admin/feedback.php:35
|
2087 |
+
msgid "Hard to use"
|
2088 |
+
msgstr ""
|
2089 |
+
|
2090 |
+
#: ../profile-builder-2.0/admin/feedback.php:36
|
2091 |
+
msgid "How can we improve our user experience ?"
|
2092 |
+
msgstr ""
|
2093 |
+
|
2094 |
+
#: ../profile-builder-2.0/admin/feedback.php:40
|
2095 |
+
msgid "Unsatisfactory support"
|
2096 |
+
msgstr ""
|
2097 |
+
|
2098 |
+
#: ../profile-builder-2.0/admin/feedback.php:45
|
2099 |
+
msgid "Poor Documentation"
|
2100 |
+
msgstr ""
|
2101 |
+
|
2102 |
+
#: ../profile-builder-2.0/admin/feedback.php:46
|
2103 |
+
msgid "Tell us what you couldn't find"
|
2104 |
+
msgstr ""
|
2105 |
+
|
2106 |
+
#: ../profile-builder-2.0/admin/feedback.php:50
|
2107 |
+
msgid "Other"
|
2108 |
+
msgstr ""
|
2109 |
+
|
2110 |
+
#: ../profile-builder-2.0/admin/feedback.php:51
|
2111 |
+
msgid "Please tell us more"
|
2112 |
+
msgstr ""
|
2113 |
+
|
2114 |
+
#: ../profile-builder-2.0/admin/feedback.php:56
|
2115 |
+
msgid "Submit & Deactivate"
|
2116 |
+
msgstr ""
|
2117 |
+
|
2118 |
+
#: ../profile-builder-2.0/admin/feedback.php:59
|
2119 |
msgid "Skip and Deactivate"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
#: ../profile-builder-2.0/admin/feedback.php:163
|
2123 |
msgid "Submit and Deactivate"
|
2124 |
msgstr ""
|
2125 |
|
4429 |
msgid "I allow the website to collect and store the data I submit through this form."
|
4430 |
msgstr ""
|
4431 |
|
4432 |
+
#: ../profile-builder-2.0/features/functions.php:557
|
4433 |
msgid "Strength indicator"
|
4434 |
msgstr ""
|
4435 |
|
4436 |
+
#: ../profile-builder-2.0/features/functions.php:583, ../profile-builder-2.0/features/functions.php:607
|
4437 |
msgid "Very Weak"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
+
#: ../profile-builder-2.0/features/functions.php:597
|
4441 |
msgid "Minimum length of %d characters."
|
4442 |
msgstr ""
|
4443 |
|
4444 |
+
#: ../profile-builder-2.0/features/functions.php:608
|
4445 |
msgid "The password must have a minimum strength of %s."
|
4446 |
msgstr ""
|
4447 |
|
4448 |
+
#: ../profile-builder-2.0/features/functions.php:685
|
4449 |
msgid "This field is required"
|
4450 |
msgstr ""
|
4451 |
|
4452 |
+
#: ../profile-builder-2.0/features/functions.php:723, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:461, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:470, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:523, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:568
|
4453 |
msgid "Please enter a (valid) reCAPTCHA value"
|
4454 |
msgstr ""
|
4455 |
|
4456 |
+
#: ../profile-builder-2.0/features/functions.php:730
|
4457 |
msgid "Incorrect phone number"
|
4458 |
msgstr ""
|
4459 |
|
4460 |
+
#: ../profile-builder-2.0/features/functions.php:742, ../profile-builder-2.0/features/content-restriction/content-restriction.php:159, ../profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:402, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:394
|
4461 |
msgid "Save Changes"
|
4462 |
msgstr ""
|
4463 |
|
4464 |
+
#: ../profile-builder-2.0/features/functions.php:770, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:444, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:436
|
4465 |
msgid "Content"
|
4466 |
msgstr ""
|
4467 |
|
4468 |
+
#: ../profile-builder-2.0/features/functions.php:937
|
4469 |
msgid "<br><br>Also, you will be able to visit your site at "
|
4470 |
msgstr ""
|
4471 |
|
4472 |
+
#: ../profile-builder-2.0/features/functions.php:950
|
4473 |
msgid "<br><br>You can visit your site at "
|
4474 |
msgstr ""
|
4475 |
|
4476 |
+
#: ../profile-builder-2.0/features/functions.php:1036
|
4477 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4478 |
msgstr ""
|
4479 |
|
5366 |
msgstr ""
|
5367 |
|
5368 |
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:137
|
5369 |
+
msgid "Login ( wp-login.php )"
|
5370 |
msgstr ""
|
5371 |
|
5372 |
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
|