Version Description
- Fixed a potential php notice on recover password form
- Added filters over the submit button classes of the login and password reset form.
- Refactored wppb_curpageurl() function
Download this release
Release Info
| Developer | madalin.ungureanu |
| Plugin | |
| Version | 3.1.3 |
| Comparing to | |
| See all releases | |
Code changes from version 3.1.2 to 3.1.3
- features/functions.php +49 -8
- front-end/login.php +1 -1
- front-end/recover.php +3 -2
- index.php +2 -2
- readme.txt +6 -1
- translation/profile-builder.pot +52 -52
features/functions.php
CHANGED
|
@@ -76,14 +76,15 @@ if(!function_exists('wppb_curpageurl')){
|
|
| 76 |
function wppb_curpageurl(){
|
| 77 |
$req_uri = $_SERVER['REQUEST_URI'];
|
| 78 |
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
|
|
|
| 87 |
|
| 88 |
if ( function_exists('apply_filters') ) $req_uri = apply_filters('wppb_curpageurl', $req_uri);
|
| 89 |
|
|
@@ -91,6 +92,46 @@ if(!function_exists('wppb_curpageurl')){
|
|
| 91 |
}
|
| 92 |
}
|
| 93 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 94 |
|
| 95 |
if ( is_admin() ){
|
| 96 |
|
| 76 |
function wppb_curpageurl(){
|
| 77 |
$req_uri = $_SERVER['REQUEST_URI'];
|
| 78 |
|
| 79 |
+
if( function_exists('wppb_get_abs_home') ) {
|
| 80 |
+
$home_path = trim(parse_url(wppb_get_abs_home(), PHP_URL_PATH), '/');
|
| 81 |
+
$home_path_regex = sprintf('|^%s|i', preg_quote($home_path, '|'));
|
| 82 |
+
|
| 83 |
+
// Trim path info from the end and the leading home path from the front.
|
| 84 |
+
$req_uri = ltrim($req_uri, '/');
|
| 85 |
+
$req_uri = preg_replace($home_path_regex, '', $req_uri);
|
| 86 |
+
$req_uri = trim(wppb_get_abs_home(), '/') . '/' . ltrim($req_uri, '/');
|
| 87 |
+
}
|
| 88 |
|
| 89 |
if ( function_exists('apply_filters') ) $req_uri = apply_filters('wppb_curpageurl', $req_uri);
|
| 90 |
|
| 92 |
}
|
| 93 |
}
|
| 94 |
|
| 95 |
+
/**
|
| 96 |
+
* Return absolute home url as stored in database, unfiltered.
|
| 97 |
+
*
|
| 98 |
+
* @return string
|
| 99 |
+
*/
|
| 100 |
+
if(!function_exists('wppb_get_abs_home')) {
|
| 101 |
+
function wppb_get_abs_home(){
|
| 102 |
+
global $wpdb;
|
| 103 |
+
|
| 104 |
+
// returns the unfiltered home_url by directly retrieving it from wp_options.
|
| 105 |
+
$absolute_home = (!is_multisite() && defined('WP_HOME')
|
| 106 |
+
? WP_HOME
|
| 107 |
+
: (is_multisite() && !is_main_site()
|
| 108 |
+
? (preg_match('/^(https)/', get_option('home')) === 1 ? 'https://'
|
| 109 |
+
: 'http://') . $wpdb->get_var(" SELECT CONCAT(b.domain, b.path)
|
| 110 |
+
FROM {$wpdb->blogs} b
|
| 111 |
+
WHERE blog_id = {$wpdb->blogid}
|
| 112 |
+
LIMIT 1")
|
| 113 |
+
|
| 114 |
+
: $wpdb->get_var(" SELECT option_value
|
| 115 |
+
FROM {$wpdb->options}
|
| 116 |
+
WHERE option_name = 'home'
|
| 117 |
+
LIMIT 1"))
|
| 118 |
+
);
|
| 119 |
+
|
| 120 |
+
if (empty($absolute_home)) {
|
| 121 |
+
$absolute_home = get_option("siteurl");
|
| 122 |
+
}
|
| 123 |
+
|
| 124 |
+
// always return absolute_home based on the http or https version of the current page request. This means no more redirects.
|
| 125 |
+
if (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') {
|
| 126 |
+
$absolute_home = str_replace('http://', 'https://', $absolute_home);
|
| 127 |
+
} else {
|
| 128 |
+
$absolute_home = str_replace('https://', 'http://', $absolute_home);
|
| 129 |
+
}
|
| 130 |
+
|
| 131 |
+
return $absolute_home;
|
| 132 |
+
}
|
| 133 |
+
}
|
| 134 |
+
|
| 135 |
|
| 136 |
if ( is_admin() ){
|
| 137 |
|
front-end/login.php
CHANGED
|
@@ -155,7 +155,7 @@ function wppb_login_form( $args = array() ) {
|
|
| 155 |
' . $login_form_middle . '
|
| 156 |
' . ( $args['remember'] ? '<p class="login-remember"><label><input name="rememberme" type="checkbox" id="' . esc_attr( $args['id_remember'] ) . '" value="forever"' . ( $args['value_remember'] ? ' checked="checked"' : '' ) . ' /> ' . esc_html( $args['label_remember'] ) . '</label></p>' : '' ) . '
|
| 157 |
<p class="login-submit">
|
| 158 |
-
<input type="submit" name="wp-submit" id="' . esc_attr( $args['id_submit'] ) . '" class="button button-primary" value="' . esc_attr( $args['label_log_in'] ) . '" />
|
| 159 |
<input type="hidden" name="redirect_to" value="' . esc_url( $args['redirect'] ) . '" />
|
| 160 |
</p>
|
| 161 |
<input type="hidden" name="wppb_login" value="true"/>
|
| 155 |
' . $login_form_middle . '
|
| 156 |
' . ( $args['remember'] ? '<p class="login-remember"><label><input name="rememberme" type="checkbox" id="' . esc_attr( $args['id_remember'] ) . '" value="forever"' . ( $args['value_remember'] ? ' checked="checked"' : '' ) . ' /> ' . esc_html( $args['label_remember'] ) . '</label></p>' : '' ) . '
|
| 157 |
<p class="login-submit">
|
| 158 |
+
<input type="submit" name="wp-submit" id="' . esc_attr( $args['id_submit'] ) . '" class="'. apply_filters( 'wppb_login_submit_class', "button button-primary" ) . '" value="' . esc_attr( $args['label_log_in'] ) . '" />
|
| 159 |
<input type="hidden" name="redirect_to" value="' . esc_url( $args['redirect'] ) . '" />
|
| 160 |
</p>
|
| 161 |
<input type="hidden" name="wppb_login" value="true"/>
|
front-end/recover.php
CHANGED
|
@@ -90,7 +90,7 @@ function wppb_create_recover_password_form( $user, $post_data ){
|
|
| 90 |
</ul>
|
| 91 |
<p class="form-submit">
|
| 92 |
<?php $button_name = __('Reset Password', 'profile-builder'); ?>
|
| 93 |
-
<input name="recover_password2" type="submit" id="wppb-recover-password-button" class="<?php echo apply_filters( 'wppb_recover_submit_class', "submit button" )
|
| 94 |
<input name="action2" type="hidden" id="action2" value="recover_password2" />
|
| 95 |
</p><!-- .form-submit -->
|
| 96 |
<?php wp_nonce_field( 'verify_true_password_recovery2_'.$user->ID, 'password_recovery_nonce_field2' ); ?>
|
|
@@ -134,7 +134,7 @@ function wppb_create_recover_password_form( $user, $post_data ){
|
|
| 134 |
?>
|
| 135 |
<p class="form-submit">
|
| 136 |
<?php $button_name = __('Get New Password', 'profile-builder'); ?>
|
| 137 |
-
<input name="recover_password" type="submit" id="wppb-recover-password-button" class="submit button" value="<?php echo apply_filters('wppb_recover_password_button_name3', $button_name); ?>" />
|
| 138 |
<input name="action" type="hidden" id="action" value="recover_password" />
|
| 139 |
</p>
|
| 140 |
<?php wp_nonce_field( 'verify_true_password_recovery', 'password_recovery_nonce_field' ); ?>
|
|
@@ -246,6 +246,7 @@ function wppb_front_end_password_recovery(){
|
|
| 246 |
global $wppb_shortcode_on_front;
|
| 247 |
$wppb_shortcode_on_front = true;
|
| 248 |
$password_email_sent = false;
|
|
|
|
| 249 |
|
| 250 |
$output = '<div class="wppb_holder" id="wppb-recover-password-container">';
|
| 251 |
|
| 90 |
</ul>
|
| 91 |
<p class="form-submit">
|
| 92 |
<?php $button_name = __('Reset Password', 'profile-builder'); ?>
|
| 93 |
+
<input name="recover_password2" type="submit" id="wppb-recover-password-button" class="<?php echo apply_filters( 'wppb_recover_submit_class', "submit button" ); ?>" value="<?php echo apply_filters('wppb_recover_password_button_name1', $button_name); ?>" />
|
| 94 |
<input name="action2" type="hidden" id="action2" value="recover_password2" />
|
| 95 |
</p><!-- .form-submit -->
|
| 96 |
<?php wp_nonce_field( 'verify_true_password_recovery2_'.$user->ID, 'password_recovery_nonce_field2' ); ?>
|
| 134 |
?>
|
| 135 |
<p class="form-submit">
|
| 136 |
<?php $button_name = __('Get New Password', 'profile-builder'); ?>
|
| 137 |
+
<input name="recover_password" type="submit" id="wppb-recover-password-button" class="<?php echo apply_filters( 'wppb_recover_submit_class', "submit button" );?>" value="<?php echo apply_filters('wppb_recover_password_button_name3', $button_name); ?>" />
|
| 138 |
<input name="action" type="hidden" id="action" value="recover_password" />
|
| 139 |
</p>
|
| 140 |
<?php wp_nonce_field( 'verify_true_password_recovery', 'password_recovery_nonce_field' ); ?>
|
| 246 |
global $wppb_shortcode_on_front;
|
| 247 |
$wppb_shortcode_on_front = true;
|
| 248 |
$password_email_sent = false;
|
| 249 |
+
$password_changed_success = false;
|
| 250 |
|
| 251 |
$output = '<div class="wppb_holder" id="wppb-recover-password-container">';
|
| 252 |
|
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.1.
|
| 7 |
Author: Cozmoslabs
|
| 8 |
Author URI: https://www.cozmoslabs.com/
|
| 9 |
Text Domain: profile-builder
|
|
@@ -63,7 +63,7 @@ function wppb_free_plugin_init() {
|
|
| 63 |
*
|
| 64 |
*
|
| 65 |
*/
|
| 66 |
-
define('PROFILE_BUILDER_VERSION', '3.1.
|
| 67 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
| 68 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
| 69 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
| 3 |
Plugin Name: Profile Builder
|
| 4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
| 5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
| 6 |
+
Version: 3.1.3
|
| 7 |
Author: Cozmoslabs
|
| 8 |
Author URI: https://www.cozmoslabs.com/
|
| 9 |
Text Domain: profile-builder
|
| 63 |
*
|
| 64 |
*
|
| 65 |
*/
|
| 66 |
+
define('PROFILE_BUILDER_VERSION', '3.1.3' );
|
| 67 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
| 68 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
| 69 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
readme.txt
CHANGED
|
@@ -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.3.2
|
| 7 |
-
Stable tag: 3.1.
|
| 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.1.2 =
|
| 173 |
* We now make sure you cant use a meta-name for a field that is a reserved query var in WP. which would result in an unexpected behaviour
|
| 174 |
* Fixed a potential php error regarding a filter
|
| 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.3.2
|
| 7 |
+
Stable tag: 3.1.3
|
| 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.1.3 =
|
| 173 |
+
* Fixed a potential php notice on recover password form
|
| 174 |
+
* Added filters over the submit button classes of the login and password reset form.
|
| 175 |
+
* Refactored wppb_curpageurl() function
|
| 176 |
+
|
| 177 |
= 3.1.2 =
|
| 178 |
* We now make sure you cant use a meta-name for a field that is a reserved query var in WP. which would result in an unexpected behaviour
|
| 179 |
* Fixed a potential php error regarding a filter
|
translation/profile-builder.pot
CHANGED
|
@@ -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 |
|
|
@@ -883,7 +883,7 @@ msgstr ""
|
|
| 883 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
| 884 |
msgstr ""
|
| 885 |
|
| 886 |
-
#: ../pb-add-on-social-connect/index.php:392, features/functions.php:
|
| 887 |
msgid "here"
|
| 888 |
msgstr ""
|
| 889 |
|
|
@@ -1195,7 +1195,7 @@ msgstr ""
|
|
| 1195 |
msgid "Click to edit"
|
| 1196 |
msgstr ""
|
| 1197 |
|
| 1198 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:451, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:
|
| 1199 |
msgid "Cancel"
|
| 1200 |
msgstr ""
|
| 1201 |
|
|
@@ -1769,15 +1769,15 @@ msgstr ""
|
|
| 1769 |
msgid "Very weak"
|
| 1770 |
msgstr ""
|
| 1771 |
|
| 1772 |
-
#: admin/admin-functions.php:137, admin/general-settings.php:282, features/functions.php:
|
| 1773 |
msgid "Weak"
|
| 1774 |
msgstr ""
|
| 1775 |
|
| 1776 |
-
#: admin/admin-functions.php:137, admin/general-settings.php:283, features/functions.php:
|
| 1777 |
msgid "Medium"
|
| 1778 |
msgstr ""
|
| 1779 |
|
| 1780 |
-
#: admin/admin-functions.php:137, admin/general-settings.php:284, features/functions.php:
|
| 1781 |
msgid "Strong"
|
| 1782 |
msgstr ""
|
| 1783 |
|
|
@@ -4489,7 +4489,7 @@ msgstr ""
|
|
| 4489 |
msgid "We recommend \"<a href=\"%s\" target=\"_blank\">Custom Profile Menus</a>\" addon if you need different menu items for logged in / logged out users."
|
| 4490 |
msgstr ""
|
| 4491 |
|
| 4492 |
-
#: admin/private-website.php:129, features/functions.php:
|
| 4493 |
msgid "Save Changes"
|
| 4494 |
msgstr ""
|
| 4495 |
|
|
@@ -4569,63 +4569,63 @@ msgstr ""
|
|
| 4569 |
msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %6$sDismiss%7$s</p>"
|
| 4570 |
msgstr ""
|
| 4571 |
|
| 4572 |
-
#: features/functions.php:
|
| 4573 |
msgid "GDPR Checkbox"
|
| 4574 |
msgstr ""
|
| 4575 |
|
| 4576 |
-
#: features/functions.php:
|
| 4577 |
msgid "I allow the website to collect and store the data I submit through this form."
|
| 4578 |
msgstr ""
|
| 4579 |
|
| 4580 |
-
#: features/functions.php:
|
| 4581 |
msgid "Strength indicator"
|
| 4582 |
msgstr ""
|
| 4583 |
|
| 4584 |
-
#: features/functions.php:
|
| 4585 |
msgid "Very Weak"
|
| 4586 |
msgstr ""
|
| 4587 |
|
| 4588 |
-
#: features/functions.php:
|
| 4589 |
msgid "Minimum length of %d characters."
|
| 4590 |
msgstr ""
|
| 4591 |
|
| 4592 |
-
#: features/functions.php:
|
| 4593 |
msgid "The password must have a minimum strength of %s."
|
| 4594 |
msgstr ""
|
| 4595 |
|
| 4596 |
-
#: features/functions.php:
|
| 4597 |
msgid "This field is required"
|
| 4598 |
msgstr ""
|
| 4599 |
|
| 4600 |
-
#: features/functions.php:
|
| 4601 |
msgid "Please enter a (valid) reCAPTCHA value"
|
| 4602 |
msgstr ""
|
| 4603 |
|
| 4604 |
-
#: features/functions.php:
|
| 4605 |
msgid "Incorrect phone number"
|
| 4606 |
msgstr ""
|
| 4607 |
|
| 4608 |
-
#: features/functions.php:
|
| 4609 |
msgid "Content"
|
| 4610 |
msgstr ""
|
| 4611 |
|
| 4612 |
-
#: features/functions.php:
|
| 4613 |
msgid "<br><br>Also, you will be able to visit your site at "
|
| 4614 |
msgstr ""
|
| 4615 |
|
| 4616 |
-
#: features/functions.php:
|
| 4617 |
msgid "<br><br>You can visit your site at "
|
| 4618 |
msgstr ""
|
| 4619 |
|
| 4620 |
-
#: features/functions.php:
|
| 4621 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
| 4622 |
msgstr ""
|
| 4623 |
|
| 4624 |
-
#: features/functions.php:
|
| 4625 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
| 4626 |
msgstr ""
|
| 4627 |
|
| 4628 |
-
#: features/functions.php:
|
| 4629 |
msgid "You are not currently logged in."
|
| 4630 |
msgstr ""
|
| 4631 |
|
|
@@ -4709,7 +4709,7 @@ msgstr ""
|
|
| 4709 |
msgid "Something went wrong. Please try again!"
|
| 4710 |
msgstr ""
|
| 4711 |
|
| 4712 |
-
#: front-end/login.php:309, front-end/login.php:330, front-end/recover.php:16, front-end/recover.php:
|
| 4713 |
msgid "ERROR"
|
| 4714 |
msgstr ""
|
| 4715 |
|
|
@@ -4817,59 +4817,59 @@ msgstr ""
|
|
| 4817 |
msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
|
| 4818 |
msgstr ""
|
| 4819 |
|
| 4820 |
-
#: front-end/recover.php:
|
| 4821 |
msgid "You are already logged in. You can change your password on the edit profile form."
|
| 4822 |
msgstr ""
|
| 4823 |
|
| 4824 |
-
#: front-end/recover.php:
|
| 4825 |
msgid "The username entered wasn't found in the database!"
|
| 4826 |
msgstr ""
|
| 4827 |
|
| 4828 |
-
#: front-end/recover.php:
|
| 4829 |
msgid "Please check that you entered the correct username."
|
| 4830 |
msgstr ""
|
| 4831 |
|
| 4832 |
-
#: front-end/recover.php:
|
| 4833 |
msgid "Check your e-mail for the confirmation link."
|
| 4834 |
msgstr ""
|
| 4835 |
|
| 4836 |
-
#: front-end/recover.php:
|
| 4837 |
msgid "There was an error while trying to send the activation link to %1$s!"
|
| 4838 |
msgstr ""
|
| 4839 |
|
| 4840 |
-
#: front-end/recover.php:
|
| 4841 |
msgid "The email address entered wasn't found in the database!"
|
| 4842 |
msgstr ""
|
| 4843 |
|
| 4844 |
-
#: front-end/recover.php:
|
| 4845 |
msgid "Please check that you entered the correct email address."
|
| 4846 |
msgstr ""
|
| 4847 |
|
| 4848 |
-
#: front-end/recover.php:
|
| 4849 |
msgid "The entered passwords don't match!"
|
| 4850 |
msgstr ""
|
| 4851 |
|
| 4852 |
-
#: front-end/recover.php:
|
| 4853 |
msgid "The password must have the minimum length of %s characters"
|
| 4854 |
msgstr ""
|
| 4855 |
|
| 4856 |
-
#: front-end/recover.php:
|
| 4857 |
msgid "The password must have a minimum strength of %s"
|
| 4858 |
msgstr ""
|
| 4859 |
|
| 4860 |
-
#: front-end/recover.php:
|
| 4861 |
msgid "Your password has been successfully changed!"
|
| 4862 |
msgstr ""
|
| 4863 |
|
| 4864 |
-
#: front-end/recover.php:
|
| 4865 |
msgid "The password must not be empty!"
|
| 4866 |
msgstr ""
|
| 4867 |
|
| 4868 |
-
#: front-end/recover.php:
|
| 4869 |
msgid "ERROR:"
|
| 4870 |
msgstr ""
|
| 4871 |
|
| 4872 |
-
#: front-end/recover.php:
|
| 4873 |
msgid "Invalid key!"
|
| 4874 |
msgstr ""
|
| 4875 |
|
|
@@ -6473,7 +6473,7 @@ msgstr ""
|
|
| 6473 |
msgid "After Registration..."
|
| 6474 |
msgstr ""
|
| 6475 |
|
| 6476 |
-
#: modules/repeater-field/repeater-field.php:
|
| 6477 |
msgid "Are you sure you want to delete this?"
|
| 6478 |
msgstr ""
|
| 6479 |
|
| 425 |
msgid "The email confirmation does not match your email address."
|
| 426 |
msgstr ""
|
| 427 |
|
| 428 |
+
#: ../pb-add-on-field-visibility/index.php:215, admin/admin-bar.php:63
|
| 429 |
msgid "Visibility"
|
| 430 |
msgstr ""
|
| 431 |
|
| 432 |
+
#: ../pb-add-on-field-visibility/index.php:215
|
| 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:216
|
| 437 |
msgid "User Role Visibility"
|
| 438 |
msgstr ""
|
| 439 |
|
| 440 |
+
#: ../pb-add-on-field-visibility/index.php:216
|
| 441 |
msgid "Select which user roles see this field"
|
| 442 |
msgstr ""
|
| 443 |
|
| 444 |
+
#: ../pb-add-on-field-visibility/index.php:217
|
| 445 |
msgid "Location Visibility"
|
| 446 |
msgstr ""
|
| 447 |
|
| 448 |
+
#: ../pb-add-on-field-visibility/index.php:217
|
| 449 |
msgid "Select the locations you wish the field to appear"
|
| 450 |
msgstr ""
|
| 451 |
|
| 452 |
+
#: ../pb-add-on-field-visibility/index.php:235
|
| 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:235, ../pb-add-on-labels-edit/pble.php:381, admin/manage-fields.php:1307, features/functions.php:853, features/functions.php:860, features/admin-approval/class-admin-approval.php:108, features/roles-editor/roles-editor.php:866, modules/custom-redirects/custom_redirects_admin.php:183, modules/custom-redirects/custom_redirects_admin.php:197, modules/custom-redirects/custom_redirects_admin.php:211, modules/custom-redirects/custom_redirects_admin.php:225, modules/multiple-forms/multiple-forms.php:406
|
| 457 |
msgid "Edit"
|
| 458 |
msgstr ""
|
| 459 |
|
| 460 |
+
#: ../pb-add-on-field-visibility/index.php:235, admin/manage-fields.php:1307, features/functions.php:846, features/functions.php:860, features/admin-approval/class-admin-approval.php:113, features/email-confirmation/class-email-confirmation.php:121, features/email-confirmation/class-email-confirmation.php:218, features/roles-editor/roles-editor.php:179, features/roles-editor/roles-editor.php:884, features/roles-editor/roles-editor.php:893, features/roles-editor/roles-editor.php:904, modules/custom-redirects/custom_redirects_admin.php:183, modules/custom-redirects/custom_redirects_admin.php:197, modules/custom-redirects/custom_redirects_admin.php:211, modules/custom-redirects/custom_redirects_admin.php:225, front-end/default-fields/gdpr-delete/gdpr-delete.php:18
|
| 461 |
msgid "Delete"
|
| 462 |
msgstr ""
|
| 463 |
|
| 464 |
+
#: ../pb-add-on-field-visibility/index.php:256
|
| 465 |
msgid "This field is visible only for administrators."
|
| 466 |
msgstr ""
|
| 467 |
|
| 468 |
+
#: ../pb-add-on-field-visibility/index.php:259
|
| 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:282
|
| 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:328
|
| 477 |
msgid "This field is visible only in the following locations: %1$s"
|
| 478 |
msgstr ""
|
| 479 |
|
| 480 |
+
#: ../pb-add-on-field-visibility/index.php:470
|
| 481 |
msgid "Get file"
|
| 482 |
msgstr ""
|
| 483 |
|
| 484 |
+
#: ../pb-add-on-field-visibility/index.php:603
|
| 485 |
msgid "You do not have the capabilities necessary to edit this field."
|
| 486 |
msgstr ""
|
| 487 |
|
| 883 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
| 884 |
msgstr ""
|
| 885 |
|
| 886 |
+
#: ../pb-add-on-social-connect/index.php:392, features/functions.php:1140
|
| 887 |
msgid "here"
|
| 888 |
msgstr ""
|
| 889 |
|
| 1195 |
msgid "Click to edit"
|
| 1196 |
msgstr ""
|
| 1197 |
|
| 1198 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:451, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:839, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:403, assets/lib/wck-api/wordpress-creation-kit.php:406
|
| 1199 |
msgid "Cancel"
|
| 1200 |
msgstr ""
|
| 1201 |
|
| 1769 |
msgid "Very weak"
|
| 1770 |
msgstr ""
|
| 1771 |
|
| 1772 |
+
#: admin/admin-functions.php:137, admin/general-settings.php:282, features/functions.php:673, features/functions.php:697
|
| 1773 |
msgid "Weak"
|
| 1774 |
msgstr ""
|
| 1775 |
|
| 1776 |
+
#: admin/admin-functions.php:137, admin/general-settings.php:283, features/functions.php:673, features/functions.php:697
|
| 1777 |
msgid "Medium"
|
| 1778 |
msgstr ""
|
| 1779 |
|
| 1780 |
+
#: admin/admin-functions.php:137, admin/general-settings.php:284, features/functions.php:673, features/functions.php:697
|
| 1781 |
msgid "Strong"
|
| 1782 |
msgstr ""
|
| 1783 |
|
| 4489 |
msgid "We recommend \"<a href=\"%s\" target=\"_blank\">Custom Profile Menus</a>\" addon if you need different menu items for logged in / logged out users."
|
| 4490 |
msgstr ""
|
| 4491 |
|
| 4492 |
+
#: admin/private-website.php:129, features/functions.php:832, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:47, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:275, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:321, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:77, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:91, features/content-restriction/content-restriction.php:161, modules/class-mustache-templates/class-mustache-templates.php:390, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:402, assets/lib/wck-api/wordpress-creation-kit.php:405
|
| 4493 |
msgid "Save Changes"
|
| 4494 |
msgstr ""
|
| 4495 |
|
| 4569 |
msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %6$sDismiss%7$s</p>"
|
| 4570 |
msgstr ""
|
| 4571 |
|
| 4572 |
+
#: features/functions.php:318
|
| 4573 |
msgid "GDPR Checkbox"
|
| 4574 |
msgstr ""
|
| 4575 |
|
| 4576 |
+
#: features/functions.php:318
|
| 4577 |
msgid "I allow the website to collect and store the data I submit through this form."
|
| 4578 |
msgstr ""
|
| 4579 |
|
| 4580 |
+
#: features/functions.php:647
|
| 4581 |
msgid "Strength indicator"
|
| 4582 |
msgstr ""
|
| 4583 |
|
| 4584 |
+
#: features/functions.php:673, features/functions.php:697
|
| 4585 |
msgid "Very Weak"
|
| 4586 |
msgstr ""
|
| 4587 |
|
| 4588 |
+
#: features/functions.php:687
|
| 4589 |
msgid "Minimum length of %d characters."
|
| 4590 |
msgstr ""
|
| 4591 |
|
| 4592 |
+
#: features/functions.php:698
|
| 4593 |
msgid "The password must have a minimum strength of %s."
|
| 4594 |
msgstr ""
|
| 4595 |
|
| 4596 |
+
#: features/functions.php:775
|
| 4597 |
msgid "This field is required"
|
| 4598 |
msgstr ""
|
| 4599 |
|
| 4600 |
+
#: features/functions.php:813, front-end/default-fields/recaptcha/recaptcha.php:474, front-end/default-fields/recaptcha/recaptcha.php:483, front-end/default-fields/recaptcha/recaptcha.php:536, front-end/default-fields/recaptcha/recaptcha.php:581
|
| 4601 |
msgid "Please enter a (valid) reCAPTCHA value"
|
| 4602 |
msgstr ""
|
| 4603 |
|
| 4604 |
+
#: features/functions.php:820
|
| 4605 |
msgid "Incorrect phone number"
|
| 4606 |
msgstr ""
|
| 4607 |
|
| 4608 |
+
#: features/functions.php:860, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:444, assets/lib/wck-api/wordpress-creation-kit.php:447
|
| 4609 |
msgid "Content"
|
| 4610 |
msgstr ""
|
| 4611 |
|
| 4612 |
+
#: features/functions.php:1042
|
| 4613 |
msgid "<br><br>Also, you will be able to visit your site at "
|
| 4614 |
msgstr ""
|
| 4615 |
|
| 4616 |
+
#: features/functions.php:1055
|
| 4617 |
msgid "<br><br>You can visit your site at "
|
| 4618 |
msgstr ""
|
| 4619 |
|
| 4620 |
+
#: features/functions.php:1141
|
| 4621 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
| 4622 |
msgstr ""
|
| 4623 |
|
| 4624 |
+
#: features/functions.php:1271
|
| 4625 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
| 4626 |
msgstr ""
|
| 4627 |
|
| 4628 |
+
#: features/functions.php:1306
|
| 4629 |
msgid "You are not currently logged in."
|
| 4630 |
msgstr ""
|
| 4631 |
|
| 4709 |
msgid "Something went wrong. Please try again!"
|
| 4710 |
msgstr ""
|
| 4711 |
|
| 4712 |
+
#: front-end/login.php:309, front-end/login.php:330, front-end/recover.php:16, front-end/recover.php:304, front-end/extra-fields/extra-fields.php:93
|
| 4713 |
msgid "ERROR"
|
| 4714 |
msgstr ""
|
| 4715 |
|
| 4817 |
msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
|
| 4818 |
msgstr ""
|
| 4819 |
|
| 4820 |
+
#: front-end/recover.php:256
|
| 4821 |
msgid "You are already logged in. You can change your password on the edit profile form."
|
| 4822 |
msgstr ""
|
| 4823 |
|
| 4824 |
+
#: front-end/recover.php:279
|
| 4825 |
msgid "The username entered wasn't found in the database!"
|
| 4826 |
msgstr ""
|
| 4827 |
|
| 4828 |
+
#: front-end/recover.php:279
|
| 4829 |
msgid "Please check that you entered the correct username."
|
| 4830 |
msgstr ""
|
| 4831 |
|
| 4832 |
+
#: front-end/recover.php:292
|
| 4833 |
msgid "Check your e-mail for the confirmation link."
|
| 4834 |
msgstr ""
|
| 4835 |
|
| 4836 |
+
#: front-end/recover.php:304
|
| 4837 |
msgid "There was an error while trying to send the activation link to %1$s!"
|
| 4838 |
msgstr ""
|
| 4839 |
|
| 4840 |
+
#: front-end/recover.php:315
|
| 4841 |
msgid "The email address entered wasn't found in the database!"
|
| 4842 |
msgstr ""
|
| 4843 |
|
| 4844 |
+
#: front-end/recover.php:315
|
| 4845 |
msgid "Please check that you entered the correct email address."
|
| 4846 |
msgstr ""
|
| 4847 |
|
| 4848 |
+
#: front-end/recover.php:328
|
| 4849 |
msgid "The entered passwords don't match!"
|
| 4850 |
msgstr ""
|
| 4851 |
|
| 4852 |
+
#: front-end/recover.php:334, front-end/default-fields/password/password.php:50
|
| 4853 |
msgid "The password must have the minimum length of %s characters"
|
| 4854 |
msgstr ""
|
| 4855 |
|
| 4856 |
+
#: front-end/recover.php:338, front-end/default-fields/password/password.php:54
|
| 4857 |
msgid "The password must have a minimum strength of %s"
|
| 4858 |
msgstr ""
|
| 4859 |
|
| 4860 |
+
#: front-end/recover.php:345
|
| 4861 |
msgid "Your password has been successfully changed!"
|
| 4862 |
msgstr ""
|
| 4863 |
|
| 4864 |
+
#: front-end/recover.php:381
|
| 4865 |
msgid "The password must not be empty!"
|
| 4866 |
msgstr ""
|
| 4867 |
|
| 4868 |
+
#: front-end/recover.php:406
|
| 4869 |
msgid "ERROR:"
|
| 4870 |
msgstr ""
|
| 4871 |
|
| 4872 |
+
#: front-end/recover.php:406
|
| 4873 |
msgid "Invalid key!"
|
| 4874 |
msgstr ""
|
| 4875 |
|
| 6473 |
msgid "After Registration..."
|
| 6474 |
msgstr ""
|
| 6475 |
|
| 6476 |
+
#: modules/repeater-field/repeater-field.php:298
|
| 6477 |
msgid "Are you sure you want to delete this?"
|
| 6478 |
msgstr ""
|
| 6479 |
|
