Version Description
- Now the Static Posts Page can be restricted as expected
- Added support for restricting Elementor Single Page templates.
- Fix issue with Elementor content restriction by user roles.
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 3.0.2 |
Comparing to | |
See all releases |
Code changes from version 3.0.1 to 3.0.2
- features/content-restriction/class-elementor-content-restriction.php +5 -2
- features/content-restriction/content-restriction-functions.php +41 -0
- features/email-confirmation/email-confirmation.php +2 -0
- index.php +2 -2
- readme.txt +6 -1
- translation/profile-builder.catalog.php +2 -2
- translation/profile-builder.pot +78 -75
features/content-restriction/class-elementor-content-restriction.php
CHANGED
@@ -35,6 +35,9 @@ class WPPB_Elementor {
|
|
35 |
// Filter sections display & add custom messages
|
36 |
add_action( 'elementor/frontend/section/should_render', array( $this, 'section_render' ), 10, 2 );
|
37 |
add_action( 'elementor/frontend/section/after_render', array( $this, 'section_custom_messages' ), 10, 2 );
|
|
|
|
|
|
|
38 |
}
|
39 |
|
40 |
/**
|
@@ -198,12 +201,12 @@ class WPPB_Elementor {
|
|
198 |
foreach( $settings['wppb_restriction_user_roles'] as $restriction_role ) {
|
199 |
foreach( $user_data->roles as $user_role ) {
|
200 |
if( $user_role == $restriction_role ) {
|
201 |
-
return
|
202 |
}
|
203 |
}
|
204 |
}
|
205 |
|
206 |
-
return
|
207 |
} else if ( !is_user_logged_in() && (
|
208 |
( $settings['wppb_restriction_loggedin_users'] == 'yes' ) || ( !empty( $settings['wppb_restriction_user_roles'] ) )
|
209 |
) ) {
|
35 |
// Filter sections display & add custom messages
|
36 |
add_action( 'elementor/frontend/section/should_render', array( $this, 'section_render' ), 10, 2 );
|
37 |
add_action( 'elementor/frontend/section/after_render', array( $this, 'section_custom_messages' ), 10, 2 );
|
38 |
+
|
39 |
+
// Filter Elementor `the_content` hook
|
40 |
+
add_action( 'elementor/frontend/the_content', 'wppb_content_restriction_filter_content', 20 );
|
41 |
}
|
42 |
|
43 |
/**
|
201 |
foreach( $settings['wppb_restriction_user_roles'] as $restriction_role ) {
|
202 |
foreach( $user_data->roles as $user_role ) {
|
203 |
if( $user_role == $restriction_role ) {
|
204 |
+
return false;
|
205 |
}
|
206 |
}
|
207 |
}
|
208 |
|
209 |
+
return true;
|
210 |
} else if ( !is_user_logged_in() && (
|
211 |
( $settings['wppb_restriction_loggedin_users'] == 'yes' ) || ( !empty( $settings['wppb_restriction_user_roles'] ) )
|
212 |
) ) {
|
features/content-restriction/content-restriction-functions.php
CHANGED
@@ -303,3 +303,44 @@ function wppb_content_restriction_shortcode( $atts, $content = null ) {
|
|
303 |
|
304 |
}
|
305 |
add_shortcode( 'wppb-restrict', 'wppb_content_restriction_shortcode' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
303 |
|
304 |
}
|
305 |
add_shortcode( 'wppb-restrict', 'wppb_content_restriction_shortcode' );
|
306 |
+
|
307 |
+
/* if the Static Posts Page has a restriction on it hijack the query */
|
308 |
+
add_action( 'template_redirect', 'wppb_content_restriction_posts_page_handle_query', 1 );
|
309 |
+
function wppb_content_restriction_posts_page_handle_query(){
|
310 |
+
if( is_home() ){
|
311 |
+
$posts_page_id = get_option( 'page_for_posts' );
|
312 |
+
if( $posts_page_id ) {
|
313 |
+
if (wppb_check_content_restriction_on_post_id($posts_page_id)) {
|
314 |
+
wppb_content_restriction_force_page($posts_page_id);
|
315 |
+
}
|
316 |
+
}
|
317 |
+
}
|
318 |
+
}
|
319 |
+
|
320 |
+
|
321 |
+
/* if the Static Posts Page has a restriction on it hijack the template back to the Page Template */
|
322 |
+
add_filter( 'template_include', 'wppb_content_restriction_posts_page_template', 100 );
|
323 |
+
function wppb_content_restriction_posts_page_template( $template ){
|
324 |
+
if( is_home() ){
|
325 |
+
$posts_page_id = get_option( 'page_for_posts' );
|
326 |
+
if( $posts_page_id ) {
|
327 |
+
if (wppb_check_content_restriction_on_post_id($posts_page_id)) {
|
328 |
+
$template = get_page_template();
|
329 |
+
}
|
330 |
+
}
|
331 |
+
}
|
332 |
+
return $template;
|
333 |
+
}
|
334 |
+
|
335 |
+
/* Change the query to a single post */
|
336 |
+
function wppb_content_restriction_force_page( $posts_page_id ){
|
337 |
+
if( $posts_page_id ) {
|
338 |
+
global $wp_query, $post;
|
339 |
+
$post = get_post($posts_page_id);
|
340 |
+
$wp_query->posts = array($post);
|
341 |
+
$wp_query->post_count = 1;
|
342 |
+
$wp_query->is_singular = true;
|
343 |
+
$wp_query->is_singule = true;
|
344 |
+
$wp_query->is_archive = false;
|
345 |
+
}
|
346 |
+
}
|
features/email-confirmation/email-confirmation.php
CHANGED
@@ -386,6 +386,8 @@ function wppb_signup_user_notification( $user, $user_email, $activation_key, $me
|
|
386 |
$registration_page_url = 'not_set';
|
387 |
}
|
388 |
|
|
|
|
|
389 |
if ( $registration_page_url == 'not_set' ){
|
390 |
global $post;
|
391 |
if( !empty( $post->ID ) )
|
386 |
$registration_page_url = 'not_set';
|
387 |
}
|
388 |
|
389 |
+
$registration_page_url = apply_filters( 'wppb_ec_landing_page', $registration_page_url, $user, $activation_key, $meta );
|
390 |
+
|
391 |
if ( $registration_page_url == 'not_set' ){
|
392 |
global $post;
|
393 |
if( !empty( $post->ID ) )
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
-
Version: 3.0.
|
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', '3.0.
|
79 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
80 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
81 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
+
Version: 3.0.2
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
75 |
*
|
76 |
*
|
77 |
*/
|
78 |
+
define('PROFILE_BUILDER_VERSION', '3.0.2' );
|
79 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
80 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
81 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 5.2.2
|
7 |
-
Stable tag: 3.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -169,6 +169,11 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
169 |
12. Role Editor
|
170 |
|
171 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
172 |
= 3.0.1 =
|
173 |
* Added GDPR Delete Button as a field
|
174 |
* Export Personal Data now exports Profile Builder fields
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 5.2.2
|
7 |
+
Stable tag: 3.0.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
169 |
12. Role Editor
|
170 |
|
171 |
== Changelog ==
|
172 |
+
= 3.0.2 =
|
173 |
+
* Now the Static Posts Page can be restricted as expected
|
174 |
+
* Added support for restricting Elementor Single Page templates.
|
175 |
+
* Fix issue with Elementor content restriction by user roles.
|
176 |
+
|
177 |
= 3.0.1 =
|
178 |
* Added GDPR Delete Button as a field
|
179 |
* Export Personal Data now exports Profile Builder fields
|
translation/profile-builder.catalog.php
CHANGED
@@ -356,8 +356,8 @@
|
|
356 |
<?php __("Associate each MailChimp group with a Profile Builder field", "profile-builder"); ?>
|
357 |
<?php __("Double Opt-In", "profile-builder"); ?>
|
358 |
<?php __("If you select double opt-in, the user will receive an e-mail to confirm the subscription", "profile-builder"); ?>
|
359 |
-
<?php __("
|
360 |
-
<?php __("If checked will
|
361 |
<?php __("MailChimp API key is empty", "profile-builder"); ?>
|
362 |
<?php __("MailChimp API key is invalid", "profile-builder"); ?>
|
363 |
<?php __("Something went wrong. Either the API key is invalid or we could not connect to MailChimp to validate the key.", "profile-builder"); ?>
|
356 |
<?php __("Associate each MailChimp group with a Profile Builder field", "profile-builder"); ?>
|
357 |
<?php __("Double Opt-In", "profile-builder"); ?>
|
358 |
<?php __("If you select double opt-in, the user will receive an e-mail to confirm the subscription", "profile-builder"); ?>
|
359 |
+
<?php __("Enable GDPR", "profile-builder"); ?>
|
360 |
+
<?php __("If checked will enable GDPR on this list. <a href=\"%s\" target=\"_blank\">You must also enable GDPR on the list from mailchimp</a>", "profile-builder"); ?>
|
361 |
<?php __("MailChimp API key is empty", "profile-builder"); ?>
|
362 |
<?php __("MailChimp API key is invalid", "profile-builder"); ?>
|
363 |
<?php __("Something went wrong. Either the API key is invalid or we could not connect to MailChimp to validate the key.", "profile-builder"); ?>
|
translation/profile-builder.pot
CHANGED
@@ -25,7 +25,7 @@ msgstr ""
|
|
25 |
msgid "Choose (Single) User Listing to display under bbPress user Profile tab:"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: ../pb-add-on-bbpress/bbpress-page.php:82, ../pb-add-on-bbpress/bbpress-page.php:117, ../pb-add-on-woocommerce/woosync-page.php:80, ../pb-add-on-woocommerce/woosync-page.php:115, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:552, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:
|
29 |
msgid "None"
|
30 |
msgstr ""
|
31 |
|
@@ -425,63 +425,63 @@ msgstr ""
|
|
425 |
msgid "The email confirmation does not match your email address."
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: ../pb-add-on-field-visibility/index.php:
|
429 |
msgid "Visibility"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: ../pb-add-on-field-visibility/index.php:
|
433 |
msgid "<strong>Admin Only</strong> field is visible only for administrators. <strong>User Locked</strong> field is visible for both administrators and users, but only administrators have the capability to edit it."
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: ../pb-add-on-field-visibility/index.php:
|
437 |
msgid "User Role Visibility"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: ../pb-add-on-field-visibility/index.php:
|
441 |
msgid "Select which user roles see this field"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: ../pb-add-on-field-visibility/index.php:
|
445 |
msgid "Location Visibility"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: ../pb-add-on-field-visibility/index.php:
|
449 |
msgid "Select the locations you wish the field to appear"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: ../pb-add-on-field-visibility/index.php:
|
453 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: ../pb-add-on-field-visibility/index.php:
|
457 |
msgid "Edit"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ../pb-add-on-field-visibility/index.php:
|
461 |
msgid "Delete"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: ../pb-add-on-field-visibility/index.php:
|
465 |
msgid "This field is visible only for administrators."
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: ../pb-add-on-field-visibility/index.php:
|
469 |
msgid "This field is visible for both administrators and users, but only administrators have the capability to edit it."
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: ../pb-add-on-field-visibility/index.php:
|
473 |
msgid "This field is visible only for the following user roles: %1$s"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: ../pb-add-on-field-visibility/index.php:
|
477 |
msgid "This field is visible only in the following locations: %1$s"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: ../pb-add-on-field-visibility/index.php:
|
481 |
msgid "Get file"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: ../pb-add-on-field-visibility/index.php:
|
485 |
msgid "You do not have the capabilities necessary to edit this field."
|
486 |
msgstr ""
|
487 |
|
@@ -583,15 +583,15 @@ msgstr ""
|
|
583 |
msgid "MailPoet Newsletters needs to be installed and activated for Profile Builder - MailPoet Add-on to work!"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: ../pb-add-on-maximum-character-length/index.php:
|
587 |
msgid "Maximum Character Length"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: ../pb-add-on-maximum-character-length/index.php:
|
591 |
msgid "Specify the maximum number of characters a user can type in this field"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: ../pb-add-on-maximum-character-length/index.php:
|
595 |
msgid ""
|
596 |
"The entered character number is not numerical\n"
|
597 |
""
|
@@ -1201,7 +1201,7 @@ msgstr ""
|
|
1201 |
msgid "Cancel"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:523, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:
|
1205 |
msgid "Field Associations:"
|
1206 |
msgstr ""
|
1207 |
|
@@ -1209,7 +1209,7 @@ msgstr ""
|
|
1209 |
msgid "Associate each Campaign Monitor field with a Profile Builder field"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:602, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:
|
1213 |
msgid "Extra Options:"
|
1214 |
msgstr ""
|
1215 |
|
@@ -1279,23 +1279,23 @@ msgstr ""
|
|
1279 |
msgid "Something went wrong. Either the Campaign Monitor API key is missing or it is invalid."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:93, ../pb-add-on-mailchimp-integration/admin/widget.php:
|
1283 |
msgid "%s"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:157, ../pb-add-on-mailchimp-integration/admin/widget.php:
|
1287 |
msgid "Submit"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:182, ../pb-add-on-mailchimp-integration/admin/widget.php:
|
1291 |
msgid "Subscribe to Newsletter"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:191, ../pb-add-on-mailchimp-integration/admin/widget.php:
|
1295 |
msgid "Title"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:197, ../pb-add-on-mailchimp-integration/admin/widget.php:
|
1299 |
msgid "Select the list your new subscriber will be added to"
|
1300 |
msgstr ""
|
1301 |
|
@@ -1307,7 +1307,7 @@ msgstr ""
|
|
1307 |
msgid "No lists found"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:213, ../pb-add-on-mailchimp-integration/admin/widget.php:
|
1311 |
msgid "Select which fields to show"
|
1312 |
msgstr ""
|
1313 |
|
@@ -1359,7 +1359,7 @@ msgstr ""
|
|
1359 |
msgid "Save the communication preferences order"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: ../pb-add-on-gdpr-communication-preferences/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:87, ../profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:
|
1363 |
msgid "required"
|
1364 |
msgstr ""
|
1365 |
|
@@ -1423,47 +1423,47 @@ msgstr ""
|
|
1423 |
msgid "Edit this item"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:
|
1427 |
msgid "This field is required in MailChimp"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:
|
1431 |
msgid "Associate each MailChimp field with a Profile Builder field"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:
|
1435 |
msgid "Group Associations:"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:
|
1439 |
msgid "Associate each MailChimp group with a Profile Builder field"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:
|
1443 |
msgid "Double Opt-In"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:
|
1447 |
msgid "If you select double opt-in, the user will receive an e-mail to confirm the subscription"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:
|
1451 |
-
msgid "
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:
|
1455 |
-
msgid "If checked will
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:
|
1459 |
msgid "MailChimp API key is empty"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:
|
1463 |
msgid "MailChimp API key is invalid"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:
|
1467 |
msgid "Something went wrong. Either the API key is invalid or we could not connect to MailChimp to validate the key."
|
1468 |
msgstr ""
|
1469 |
|
@@ -1501,19 +1501,22 @@ msgstr ""
|
|
1501 |
msgid "Adds a basic subscribe form so that your users can subscribe to your MailChimp lists"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: ../pb-add-on-mailchimp-integration/admin/widget.php:68, ../pb-add-on-mailchimp-integration/admin/widget.php:
|
1505 |
msgid "Something went wrong. Either the MailChimp API key is missing or it is invalid."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: ../pb-add-on-mailchimp-integration/admin/widget.php:
|
|
|
|
|
|
|
1509 |
msgid "Select..."
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: ../pb-add-on-mailchimp-integration/admin/widget.php:
|
1513 |
msgid "Extra Options"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: ../pb-add-on-mailchimp-integration/admin/widget.php:
|
1517 |
msgid "Please select a list first"
|
1518 |
msgstr ""
|
1519 |
|
@@ -4865,7 +4868,7 @@ msgstr ""
|
|
4865 |
msgid "This username is now active!"
|
4866 |
msgstr ""
|
4867 |
|
4868 |
-
#: ../profile-builder-2.0/front-end/register.php:71, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:
|
4869 |
msgid "Could not create user!"
|
4870 |
msgstr ""
|
4871 |
|
@@ -4877,7 +4880,7 @@ msgstr ""
|
|
4877 |
msgid "Your email was successfully confirmed."
|
4878 |
msgstr ""
|
4879 |
|
4880 |
-
#: ../profile-builder-2.0/front-end/register.php:125, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:
|
4881 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
4882 |
msgstr ""
|
4883 |
|
@@ -5445,59 +5448,59 @@ msgstr ""
|
|
5445 |
msgid "This field has conditional logic enabled."
|
5446 |
msgstr ""
|
5447 |
|
5448 |
-
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:
|
5449 |
msgid "Profile Builder Content Restriction"
|
5450 |
msgstr ""
|
5451 |
|
5452 |
-
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:
|
5453 |
msgid "Restrict to logged in users"
|
5454 |
msgstr ""
|
5455 |
|
5456 |
-
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:
|
5457 |
msgid "Allow only logged in users to see this content."
|
5458 |
msgstr ""
|
5459 |
|
5460 |
-
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:
|
5461 |
msgid "Restrict by User Roles"
|
5462 |
msgstr ""
|
5463 |
|
5464 |
-
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:
|
5465 |
msgid "Allow users which have the specified role to see this content."
|
5466 |
msgstr ""
|
5467 |
|
5468 |
-
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:
|
5469 |
msgid "Restriction Messages"
|
5470 |
msgstr ""
|
5471 |
|
5472 |
-
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:
|
5473 |
msgid "Enable Restriction Messages"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
-
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:
|
5477 |
msgid "Replace hidden content with the default messages from PB -> Settings -> Content Restriction, a custom message or an Elementor Template."
|
5478 |
msgstr ""
|
5479 |
|
5480 |
-
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:
|
5481 |
msgid "Enable Custom Messages"
|
5482 |
msgstr ""
|
5483 |
|
5484 |
-
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:
|
5485 |
msgid "Add a custom message or template."
|
5486 |
msgstr ""
|
5487 |
|
5488 |
-
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:
|
5489 |
msgid "Content type"
|
5490 |
msgstr ""
|
5491 |
|
5492 |
-
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:
|
5493 |
msgid "Text"
|
5494 |
msgstr ""
|
5495 |
|
5496 |
-
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:
|
5497 |
msgid "Template"
|
5498 |
msgstr ""
|
5499 |
|
5500 |
-
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:
|
5501 |
msgid "Select Template"
|
5502 |
msgstr ""
|
5503 |
|
@@ -5681,47 +5684,47 @@ msgstr ""
|
|
5681 |
msgid "Email notification resent to user"
|
5682 |
msgstr ""
|
5683 |
|
5684 |
-
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:
|
5685 |
msgid "[%1$s] Activate %2$s"
|
5686 |
msgstr ""
|
5687 |
|
5688 |
-
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:
|
5689 |
msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
|
5690 |
msgstr ""
|
5691 |
|
5692 |
-
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:
|
5693 |
msgid "That username is already activated!"
|
5694 |
msgstr ""
|
5695 |
|
5696 |
-
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:
|
5697 |
msgid "There was an error while trying to activate the user"
|
5698 |
msgstr ""
|
5699 |
|
5700 |
-
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:
|
5701 |
msgid "A new subscriber has (been) registered!"
|
5702 |
msgstr ""
|
5703 |
|
5704 |
-
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:
|
5705 |
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
5706 |
msgstr ""
|
5707 |
|
5708 |
-
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:
|
5709 |
msgid "[%1$s] Your new account information"
|
5710 |
msgstr ""
|
5711 |
|
5712 |
-
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:
|
5713 |
msgid "Your selected password at signup"
|
5714 |
msgstr ""
|
5715 |
|
5716 |
-
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:
|
5717 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and the password you selected on registration.<br/><br/>Access your account: %3$s "
|
5718 |
msgstr ""
|
5719 |
|
5720 |
-
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:
|
5721 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and the password: %3$s.<br/><br/>Access your account: %4$s "
|
5722 |
msgstr ""
|
5723 |
|
5724 |
-
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:
|
5725 |
msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
|
5726 |
msgstr ""
|
5727 |
|
@@ -7133,15 +7136,15 @@ msgstr ""
|
|
7133 |
msgid "...Choose"
|
7134 |
msgstr ""
|
7135 |
|
7136 |
-
#: ../profile-builder-2.0/front-end/extra-fields/upload/upload.php:
|
7137 |
msgid "Remove"
|
7138 |
msgstr ""
|
7139 |
|
7140 |
-
#: ../profile-builder-2.0/front-end/extra-fields/upload/upload.php:
|
7141 |
msgid "Select File"
|
7142 |
msgstr ""
|
7143 |
|
7144 |
-
#: ../profile-builder-2.0/front-end/extra-fields/upload/upload.php:
|
7145 |
msgid "Upload "
|
7146 |
msgstr ""
|
7147 |
|
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:232, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:307, ../profile-builder-2.0/features/content-restriction/content-restriction.php:133
|
29 |
msgid "None"
|
30 |
msgstr ""
|
31 |
|
425 |
msgid "The email confirmation does not match your email address."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ../pb-add-on-field-visibility/index.php:208, ../profile-builder-2.0/admin/admin-bar.php:61
|
429 |
msgid "Visibility"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: ../pb-add-on-field-visibility/index.php:208
|
433 |
msgid "<strong>Admin Only</strong> field is visible only for administrators. <strong>User Locked</strong> field is visible for both administrators and users, but only administrators have the capability to edit it."
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: ../pb-add-on-field-visibility/index.php:209
|
437 |
msgid "User Role Visibility"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: ../pb-add-on-field-visibility/index.php:209
|
441 |
msgid "Select which user roles see this field"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: ../pb-add-on-field-visibility/index.php:210
|
445 |
msgid "Location Visibility"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: ../pb-add-on-field-visibility/index.php:210
|
449 |
msgid "Select the locations you wish the field to appear"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: ../pb-add-on-field-visibility/index.php:228
|
453 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: ../pb-add-on-field-visibility/index.php:228, ../pb-add-on-labels-edit/pble.php:354, ../profile-builder-2.0/admin/manage-fields.php:1312, ../profile-builder-2.0/features/functions.php:788, ../profile-builder-2.0/features/functions.php:795, ../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
|
457 |
msgid "Edit"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: ../pb-add-on-field-visibility/index.php:228, ../profile-builder-2.0/admin/manage-fields.php:1312, ../profile-builder-2.0/features/functions.php:781, ../profile-builder-2.0/features/functions.php:795, ../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, ../profile-builder-2.0/front-end/default-fields/gdpr-delete/gdpr-delete.php:18
|
461 |
msgid "Delete"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: ../pb-add-on-field-visibility/index.php:249
|
465 |
msgid "This field is visible only for administrators."
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: ../pb-add-on-field-visibility/index.php:252
|
469 |
msgid "This field is visible for both administrators and users, but only administrators have the capability to edit it."
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: ../pb-add-on-field-visibility/index.php:275
|
473 |
msgid "This field is visible only for the following user roles: %1$s"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: ../pb-add-on-field-visibility/index.php:321
|
477 |
msgid "This field is visible only in the following locations: %1$s"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: ../pb-add-on-field-visibility/index.php:463
|
481 |
msgid "Get file"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: ../pb-add-on-field-visibility/index.php:592
|
485 |
msgid "You do not have the capabilities necessary to edit this field."
|
486 |
msgstr ""
|
487 |
|
583 |
msgid "MailPoet Newsletters needs to be installed and activated for Profile Builder - MailPoet Add-on to work!"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: ../pb-add-on-maximum-character-length/index.php:49
|
587 |
msgid "Maximum Character Length"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: ../pb-add-on-maximum-character-length/index.php:49
|
591 |
msgid "Specify the maximum number of characters a user can type in this field"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: ../pb-add-on-maximum-character-length/index.php:70
|
595 |
msgid ""
|
596 |
"The entered character number is not numerical\n"
|
597 |
""
|
1201 |
msgid "Cancel"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:523, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:202
|
1205 |
msgid "Field Associations:"
|
1206 |
msgstr ""
|
1207 |
|
1209 |
msgid "Associate each Campaign Monitor field with a Profile Builder field"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:602, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:357
|
1213 |
msgid "Extra Options:"
|
1214 |
msgstr ""
|
1215 |
|
1279 |
msgid "Something went wrong. Either the Campaign Monitor API key is missing or it is invalid."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:93, ../pb-add-on-mailchimp-integration/admin/widget.php:91, ../pb-add-on-mailchimp-integration/admin/widget.php:93, ../pb-add-on-mailchimp-integration/admin/widget.php:98
|
1283 |
msgid "%s"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:157, ../pb-add-on-mailchimp-integration/admin/widget.php:158
|
1287 |
msgid "Submit"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:182, ../pb-add-on-mailchimp-integration/admin/widget.php:185
|
1291 |
msgid "Subscribe to Newsletter"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:191, ../pb-add-on-mailchimp-integration/admin/widget.php:193
|
1295 |
msgid "Title"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:197, ../pb-add-on-mailchimp-integration/admin/widget.php:198
|
1299 |
msgid "Select the list your new subscriber will be added to"
|
1300 |
msgstr ""
|
1301 |
|
1307 |
msgid "No lists found"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:213, ../pb-add-on-mailchimp-integration/admin/widget.php:216
|
1311 |
msgid "Select which fields to show"
|
1312 |
msgstr ""
|
1313 |
|
1359 |
msgid "Save the communication preferences order"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: ../pb-add-on-gdpr-communication-preferences/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:87, ../profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:78, ../profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:46, ../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-email/input-email.php:30, ../profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34, ../profile-builder-2.0/front-end/extra-fields/input-url/input-url.php:30, ../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:47, ../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:74, ../profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
|
1363 |
msgid "required"
|
1364 |
msgstr ""
|
1365 |
|
1423 |
msgid "Edit this item"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:211
|
1427 |
msgid "This field is required in MailChimp"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:261
|
1431 |
msgid "Associate each MailChimp field with a Profile Builder field"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:295
|
1435 |
msgid "Group Associations:"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:334
|
1439 |
msgid "Associate each MailChimp group with a Profile Builder field"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:366, ../pb-add-on-mailchimp-integration/admin/widget.php:229
|
1443 |
msgid "Double Opt-In"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:367, ../pb-add-on-mailchimp-integration/admin/widget.php:230
|
1447 |
msgid "If you select double opt-in, the user will receive an e-mail to confirm the subscription"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:382, ../pb-add-on-mailchimp-integration/admin/widget.php:241
|
1451 |
+
msgid "Enable GDPR"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:383, ../pb-add-on-mailchimp-integration/admin/widget.php:242
|
1455 |
+
msgid "If checked will enable GDPR on this list. <a href=\"%s\" target=\"_blank\">You must also enable GDPR on the list from mailchimp</a>"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:428
|
1459 |
msgid "MailChimp API key is empty"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:430
|
1463 |
msgid "MailChimp API key is invalid"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:437, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:46
|
1467 |
msgid "Something went wrong. Either the API key is invalid or we could not connect to MailChimp to validate the key."
|
1468 |
msgstr ""
|
1469 |
|
1501 |
msgid "Adds a basic subscribe form so that your users can subscribe to your MailChimp lists"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
+
#: ../pb-add-on-mailchimp-integration/admin/widget.php:68, ../pb-add-on-mailchimp-integration/admin/widget.php:250
|
1505 |
msgid "Something went wrong. Either the MailChimp API key is missing or it is invalid."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: ../pb-add-on-mailchimp-integration/admin/widget.php:154, ../pb-add-on-mailchimp-integration/front-end/mailchimp-field.php:80, ../pb-add-on-mailchimp-integration/front-end/mailchimp-field.php:107
|
1509 |
+
msgstr ""
|
1510 |
+
|
1511 |
+
#: ../pb-add-on-mailchimp-integration/admin/widget.php:201
|
1512 |
msgid "Select..."
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: ../pb-add-on-mailchimp-integration/admin/widget.php:225
|
1516 |
msgid "Extra Options"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: ../pb-add-on-mailchimp-integration/admin/widget.php:383
|
1520 |
msgid "Please select a list first"
|
1521 |
msgstr ""
|
1522 |
|
4868 |
msgid "This username is now active!"
|
4869 |
msgstr ""
|
4870 |
|
4871 |
+
#: ../profile-builder-2.0/front-end/register.php:71, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:450
|
4872 |
msgid "Could not create user!"
|
4873 |
msgstr ""
|
4874 |
|
4880 |
msgid "Your email was successfully confirmed."
|
4881 |
msgstr ""
|
4882 |
|
4883 |
+
#: ../profile-builder-2.0/front-end/register.php:125, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:651
|
4884 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
4885 |
msgstr ""
|
4886 |
|
5448 |
msgid "This field has conditional logic enabled."
|
5449 |
msgstr ""
|
5450 |
|
5451 |
+
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:77, ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:18
|
5452 |
msgid "Profile Builder Content Restriction"
|
5453 |
msgstr ""
|
5454 |
|
5455 |
+
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:90
|
5456 |
msgid "Restrict to logged in users"
|
5457 |
msgstr ""
|
5458 |
|
5459 |
+
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:92
|
5460 |
msgid "Allow only logged in users to see this content."
|
5461 |
msgstr ""
|
5462 |
|
5463 |
+
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:98
|
5464 |
msgid "Restrict by User Roles"
|
5465 |
msgstr ""
|
5466 |
|
5467 |
+
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:110
|
5468 |
msgid "Allow users which have the specified role to see this content."
|
5469 |
msgstr ""
|
5470 |
|
5471 |
+
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:116, ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:119
|
5472 |
msgid "Restriction Messages"
|
5473 |
msgstr ""
|
5474 |
|
5475 |
+
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:124
|
5476 |
msgid "Enable Restriction Messages"
|
5477 |
msgstr ""
|
5478 |
|
5479 |
+
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:126
|
5480 |
msgid "Replace hidden content with the default messages from PB -> Settings -> Content Restriction, a custom message or an Elementor Template."
|
5481 |
msgstr ""
|
5482 |
|
5483 |
+
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:132, ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:125
|
5484 |
msgid "Enable Custom Messages"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
+
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:134
|
5488 |
msgid "Add a custom message or template."
|
5489 |
msgstr ""
|
5490 |
|
5491 |
+
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:143
|
5492 |
msgid "Content type"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
+
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:147
|
5496 |
msgid "Text"
|
5497 |
msgstr ""
|
5498 |
|
5499 |
+
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:151
|
5500 |
msgid "Template"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
+
#: ../profile-builder-2.0/features/content-restriction/class-elementor-content-restriction.php:168
|
5504 |
msgid "Select Template"
|
5505 |
msgstr ""
|
5506 |
|
5684 |
msgid "Email notification resent to user"
|
5685 |
msgstr ""
|
5686 |
|
5687 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:406
|
5688 |
msgid "[%1$s] Activate %2$s"
|
5689 |
msgstr ""
|
5690 |
|
5691 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:409
|
5692 |
msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
|
5693 |
msgstr ""
|
5694 |
|
5695 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:453
|
5696 |
msgid "That username is already activated!"
|
5697 |
msgstr ""
|
5698 |
|
5699 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:476
|
5700 |
msgid "There was an error while trying to activate the user"
|
5701 |
msgstr ""
|
5702 |
|
5703 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:524, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:76
|
5704 |
msgid "A new subscriber has (been) registered!"
|
5705 |
msgstr ""
|
5706 |
|
5707 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:527
|
5708 |
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
5709 |
msgstr ""
|
5710 |
|
5711 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:578
|
5712 |
msgid "[%1$s] Your new account information"
|
5713 |
msgstr ""
|
5714 |
|
5715 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:582, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:592, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:498, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:505, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:519
|
5716 |
msgid "Your selected password at signup"
|
5717 |
msgstr ""
|
5718 |
|
5719 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:588
|
5720 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and the password you selected on registration.<br/><br/>Access your account: %3$s "
|
5721 |
msgstr ""
|
5722 |
|
5723 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:590
|
5724 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and the password: %3$s.<br/><br/>Access your account: %4$s "
|
5725 |
msgstr ""
|
5726 |
|
5727 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:643
|
5728 |
msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
|
5729 |
msgstr ""
|
5730 |
|
7136 |
msgid "...Choose"
|
7137 |
msgstr ""
|
7138 |
|
7139 |
+
#: ../profile-builder-2.0/front-end/extra-fields/upload/upload.php:116
|
7140 |
msgid "Remove"
|
7141 |
msgstr ""
|
7142 |
|
7143 |
+
#: ../profile-builder-2.0/front-end/extra-fields/upload/upload.php:126
|
7144 |
msgid "Select File"
|
7145 |
msgstr ""
|
7146 |
|
7147 |
+
#: ../profile-builder-2.0/front-end/extra-fields/upload/upload.php:132
|
7148 |
msgid "Upload "
|
7149 |
msgstr ""
|
7150 |
|