Version Description
- Fixed an issue with private website and login forms that didn't work even though they were on the allowed pages list
- Fixed a issue with the reCaptcha field on themes that did not enqueue jQuery
- Removed the deactivation feedback form
Download this release
Release Info
| Developer | madalin.ungureanu |
| Plugin | |
| Version | 2.9.7 |
| Comparing to | |
| See all releases | |
Code changes from version 2.9.6 to 2.9.7
- features/functions.php +7 -2
- front-end/default-fields/recaptcha/recaptcha.php +3 -1
- index.php +3 -3
- readme.txt +20 -14
- translation/profile-builder.catalog.php +6 -6
- translation/profile-builder.pot +29 -29
features/functions.php
CHANGED
|
@@ -1133,8 +1133,13 @@ function wppb_private_website_functionality(){
|
|
| 1133 |
$allowed_pages = apply_filters( 'wppb_private_website_allowed_pages', $allowed_pages );
|
| 1134 |
|
| 1135 |
global $post;
|
| 1136 |
-
if( !isset( $post ) )
|
| 1137 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1138 |
else
|
| 1139 |
$post_id = $post->ID;
|
| 1140 |
|
| 1133 |
$allowed_pages = apply_filters( 'wppb_private_website_allowed_pages', $allowed_pages );
|
| 1134 |
|
| 1135 |
global $post;
|
| 1136 |
+
if( !isset( $post ) ) {
|
| 1137 |
+
if( function_exists('url_to_postid') ) {
|
| 1138 |
+
$post_id = url_to_postid(wppb_curpageurl());//try to get the id from the actual url
|
| 1139 |
+
}else {
|
| 1140 |
+
$post_id = 0;
|
| 1141 |
+
}
|
| 1142 |
+
}
|
| 1143 |
else
|
| 1144 |
$post_id = $post->ID;
|
| 1145 |
|
front-end/default-fields/recaptcha/recaptcha.php
CHANGED
|
@@ -76,6 +76,8 @@ function wppb_recaptcha_script_footer(){
|
|
| 76 |
//we don't have jquery on the backend
|
| 77 |
if( current_filter() != 'wp_footer' ) {
|
| 78 |
wp_print_scripts('jquery');
|
|
|
|
|
|
|
| 79 |
}
|
| 80 |
|
| 81 |
//get site key
|
|
@@ -149,7 +151,7 @@ function wppb_recaptcha_script_footer(){
|
|
| 149 |
|
| 150 |
echo '<script src="https://www.google.com/recaptcha/api.js?onload=wppbRecaptchaCallback&render=explicit" async defer></script>';
|
| 151 |
}
|
| 152 |
-
add_action('wp_footer', 'wppb_recaptcha_script_footer',
|
| 153 |
add_action('login_footer', 'wppb_recaptcha_script_footer');
|
| 154 |
add_action('register_form', 'wppb_recaptcha_script_footer');
|
| 155 |
add_action('lost_password', 'wppb_recaptcha_script_footer');
|
| 76 |
//we don't have jquery on the backend
|
| 77 |
if( current_filter() != 'wp_footer' ) {
|
| 78 |
wp_print_scripts('jquery');
|
| 79 |
+
}else if(!wp_script_is('jquery')){
|
| 80 |
+
wp_print_scripts('jquery');
|
| 81 |
}
|
| 82 |
|
| 83 |
//get site key
|
| 151 |
|
| 152 |
echo '<script src="https://www.google.com/recaptcha/api.js?onload=wppbRecaptchaCallback&render=explicit" async defer></script>';
|
| 153 |
}
|
| 154 |
+
add_action('wp_footer', 'wppb_recaptcha_script_footer', 9999);
|
| 155 |
add_action('login_footer', 'wppb_recaptcha_script_footer');
|
| 156 |
add_action('register_form', 'wppb_recaptcha_script_footer');
|
| 157 |
add_action('lost_password', 'wppb_recaptcha_script_footer');
|
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.9.
|
| 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.9.
|
| 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__));
|
|
@@ -131,7 +131,7 @@ function wppb_free_plugin_init() {
|
|
| 131 |
include_once(WPPB_PLUGIN_DIR . '/admin/private-website.php');
|
| 132 |
include_once(WPPB_PLUGIN_DIR . '/admin/manage-fields.php');
|
| 133 |
include_once(WPPB_PLUGIN_DIR . '/admin/pms-cross-promotion.php');
|
| 134 |
-
include_once(WPPB_PLUGIN_DIR . '/admin/feedback.php')
|
| 135 |
include_once(WPPB_PLUGIN_DIR . '/features/email-confirmation/email-confirmation.php');
|
| 136 |
include_once(WPPB_PLUGIN_DIR . '/features/email-confirmation/class-email-confirmation.php');
|
| 137 |
if (file_exists(WPPB_PLUGIN_DIR . '/features/admin-approval/admin-approval.php')) {
|
| 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.9.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.9.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__));
|
| 131 |
include_once(WPPB_PLUGIN_DIR . '/admin/private-website.php');
|
| 132 |
include_once(WPPB_PLUGIN_DIR . '/admin/manage-fields.php');
|
| 133 |
include_once(WPPB_PLUGIN_DIR . '/admin/pms-cross-promotion.php');
|
| 134 |
+
//include_once(WPPB_PLUGIN_DIR . '/admin/feedback.php');//removed in version 2.9.7
|
| 135 |
include_once(WPPB_PLUGIN_DIR . '/features/email-confirmation/email-confirmation.php');
|
| 136 |
include_once(WPPB_PLUGIN_DIR . '/features/email-confirmation/class-email-confirmation.php');
|
| 137 |
if (file_exists(WPPB_PLUGIN_DIR . '/features/admin-approval/admin-approval.php')) {
|
readme.txt
CHANGED
|
@@ -1,26 +1,26 @@
|
|
| 1 |
-
=== User
|
| 2 |
Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungureanu, iova.mihai, barinagabriel
|
| 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: 5.
|
| 7 |
-
Stable tag: 2.9.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 11 |
-
|
| 12 |
|
| 13 |
== Description ==
|
| 14 |
|
| 15 |
-
**Profile Builder is
|
| 16 |
|
| 17 |
-
Easy to use profile plugin
|
| 18 |
|
| 19 |
-
Restrict Content based on user role or logged in status
|
| 20 |
|
| 21 |
**Like this plugin?** Consider leaving a [5 star review](https://wordpress.org/support/view/plugin-reviews/profile-builder?filter=5).
|
| 22 |
|
| 23 |
-
|
| 24 |
Users with administrator rights can customize basic user fields or add custom user fields to the front-end forms.
|
| 25 |
|
| 26 |
To achieve this, simply create a new page and give it an intuitive name(i.e. Edit Profile).
|
|
@@ -35,7 +35,7 @@ You can use the following shortcode list:
|
|
| 35 |
* **[wppb-logout]** - to add logout functionality.
|
| 36 |
* **[wppb-register]** - register users via a front-end register form.
|
| 37 |
* **[wppb-recover-password]** - to add a password recovery form.
|
| 38 |
-
* **[wppb-restrict]**Content to restrict**[/wppb-restrict]** - to restrict
|
| 39 |
|
| 40 |
Users with administrator rights have access to the following features:
|
| 41 |
|
|
@@ -44,7 +44,7 @@ Users with administrator rights have access to the following features:
|
|
| 44 |
* choose between login with **only Username, Email** or **both**
|
| 45 |
* enforce a **minimum password length** and **minimum password strength** (using the default WordPress password strength meter)
|
| 46 |
* assign users a specific role at registration (using **[wppb-register role="desired_role"]** shortcode argument for the register form)
|
| 47 |
-
* redirect users after login, register and edit-profile using redirect_url shortcode argument ( e.g **[wppb-login redirect_url="www.example.com"]** )
|
| 48 |
* add register and lost password links below the login form (using **[wppb-login register_url="www.example.com" lostpassword_url="www.example.com"]** shortcode arguments)
|
| 49 |
* customizable user login widget
|
| 50 |
* add a custom stylesheet/inherit values from the current theme or use the default one built into this plugin
|
|
@@ -54,7 +54,7 @@ Users with administrator rights have access to the following features:
|
|
| 54 |
* **Roles Editor**: add, edit, remove or clone roles and capabilities
|
| 55 |
* **reCAPTCHA** support for Profile Builder and Wordpress default forms
|
| 56 |
* **User Role Select** field on register and edit profile forms
|
| 57 |
-
* **Content Restriction**: restrict content based on current users role or logged in status
|
| 58 |
* Restrict WooCommerce shop page and products
|
| 59 |
* Invisible reCAPTCHA support for both Profile Builder forms as well as default WordPress forms
|
| 60 |
* **Private Website**: If you have a WordPress website that you wish is visible only to members then this feature is what you want.
|
|
@@ -69,7 +69,7 @@ The [Pro version](http://www.cozmoslabs.com/wordpress-profile-builder/?utm_sourc
|
|
| 69 |
* Front-end User Listing (fully customizable, sorting included)
|
| 70 |
* Create Multiple User Listings
|
| 71 |
* Custom Redirects
|
| 72 |
-
* Multiple Registration Forms (set up multiple registration forms with different profile fields for certain user roles)
|
| 73 |
* Multiple Edit Profile Forms
|
| 74 |
* Admin Approval
|
| 75 |
* Email Customizer (Personalize all emails sent to your users or admins; customize default WordPress registration email)
|
|
@@ -86,6 +86,7 @@ For more functionality check out [Profile Builder Add-ons page](http://www.cozmo
|
|
| 86 |
|
| 87 |
**Free Add-ons**
|
| 88 |
|
|
|
|
| 89 |
* [Custom Login Page Templates](https://www.cozmoslabs.com/add-ons/custom-login-page-templates/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) - customize the default WordPress login page with your own design.
|
| 90 |
* [Client Portal](https://www.cozmoslabs.com/add-ons/client-portal/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) - create private pages for your website users that only an administrator can edit.
|
| 91 |
* [Email Confirmation Field](http://www.cozmoslabs.com/add-ons/email-confirmation-field/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) - check if the email address entered matches the first one, making sure a user submits a valid and correct email address
|
|
@@ -101,7 +102,7 @@ For more functionality check out [Profile Builder Add-ons page](http://www.cozmo
|
|
| 101 |
|
| 102 |
**Premium Add-ons**
|
| 103 |
|
| 104 |
-
* [WooCommerce Sync](http://www.cozmoslabs.com/add-ons/woocommerce-sync/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) - integrates Profile Builder with WooCommerce, allowing you to manage Shipping and Billing fields from WooCommerce with PB and more
|
| 105 |
* [Social Connect](http://www.cozmoslabs.com/add-ons/social-connect/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) - enable social login on your website, users can login with Facebook, Google+ or Twitter
|
| 106 |
* [Custom Profile Menus](http://www.cozmoslabs.com/add-ons/custom-profile-menus/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) - add custom menu items like Login/Logout or just Logout button and Login/Register/Edit Profile in iFrame Popup
|
| 107 |
* [MailChimp](http://www.cozmoslabs.com/add-ons/profile-builder-mailchimp/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) - allow users to subscribe to your Mailchimp lists directly from the Register or Edit Profile forms
|
|
@@ -167,6 +168,11 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
| 167 |
12. Role Editor
|
| 168 |
|
| 169 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 170 |
= 2.9.6 =
|
| 171 |
* Added Divi PageBuilder compatibility with Content Restriction
|
| 172 |
* Fix password recovery issue when username contained spaces.
|
| 1 |
+
=== User Registration & User Profile - Profile Builder ===
|
| 2 |
Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungureanu, iova.mihai, barinagabriel
|
| 3 |
Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
| 4 |
+
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
|
| 5 |
Requires at least: 3.1
|
| 6 |
+
Tested up to: 5.1.1
|
| 7 |
+
Stable tag: 2.9.7
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 11 |
+
Powerful user profile plugin for creating front-end login, user registration and edit profile forms. Includes content restriction and user role editor.
|
| 12 |
|
| 13 |
== Description ==
|
| 14 |
|
| 15 |
+
**[Profile Builder](http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) is the all in one user profile plugin for WordPress.**
|
| 16 |
|
| 17 |
+
Easy to use profile plugin for creating front-end login, user registration and edit profile forms by using shortcodes.
|
| 18 |
|
| 19 |
+
Restrict Content based on user role or logged in status. Manage user roles and capabilities using the built in Role Editor.
|
| 20 |
|
| 21 |
**Like this plugin?** Consider leaving a [5 star review](https://wordpress.org/support/view/plugin-reviews/profile-builder?filter=5).
|
| 22 |
|
| 23 |
+
Profile Builder lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user profile or register (front-end user registration).
|
| 24 |
Users with administrator rights can customize basic user fields or add custom user fields to the front-end forms.
|
| 25 |
|
| 26 |
To achieve this, simply create a new page and give it an intuitive name(i.e. Edit Profile).
|
| 35 |
* **[wppb-logout]** - to add logout functionality.
|
| 36 |
* **[wppb-register]** - register users via a front-end register form.
|
| 37 |
* **[wppb-recover-password]** - to add a password recovery form.
|
| 38 |
+
* **[wppb-restrict]**Content to restrict**[/wppb-restrict]** - to restrict content of any type
|
| 39 |
|
| 40 |
Users with administrator rights have access to the following features:
|
| 41 |
|
| 44 |
* choose between login with **only Username, Email** or **both**
|
| 45 |
* enforce a **minimum password length** and **minimum password strength** (using the default WordPress password strength meter)
|
| 46 |
* assign users a specific role at registration (using **[wppb-register role="desired_role"]** shortcode argument for the register form)
|
| 47 |
+
* [redirect users](https://www.cozmoslabs.com/46469-redirect-users-after-login-registration-wordpress/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) after login, register and edit-profile using redirect_url shortcode argument ( e.g **[wppb-login redirect_url="www.example.com"]** )
|
| 48 |
* add register and lost password links below the login form (using **[wppb-login register_url="www.example.com" lostpassword_url="www.example.com"]** shortcode arguments)
|
| 49 |
* customizable user login widget
|
| 50 |
* add a custom stylesheet/inherit values from the current theme or use the default one built into this plugin
|
| 54 |
* **Roles Editor**: add, edit, remove or clone roles and capabilities
|
| 55 |
* **reCAPTCHA** support for Profile Builder and Wordpress default forms
|
| 56 |
* **User Role Select** field on register and edit profile forms
|
| 57 |
+
* **Content Restriction**: [restrict content](https://www.cozmoslabs.com/105571-restrict-content-user-role-profile-builder/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) based on current users role or logged in status
|
| 58 |
* Restrict WooCommerce shop page and products
|
| 59 |
* Invisible reCAPTCHA support for both Profile Builder forms as well as default WordPress forms
|
| 60 |
* **Private Website**: If you have a WordPress website that you wish is visible only to members then this feature is what you want.
|
| 69 |
* Front-end User Listing (fully customizable, sorting included)
|
| 70 |
* Create Multiple User Listings
|
| 71 |
* Custom Redirects
|
| 72 |
+
* Multiple Registration Forms (set up [multiple registration forms](https://www.cozmoslabs.com/docs/profile-builder-2/modules/multiple-registration-forms/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) with different profile fields for certain user roles)
|
| 73 |
* Multiple Edit Profile Forms
|
| 74 |
* Admin Approval
|
| 75 |
* Email Customizer (Personalize all emails sent to your users or admins; customize default WordPress registration email)
|
| 86 |
|
| 87 |
**Free Add-ons**
|
| 88 |
|
| 89 |
+
* [Customization Toolbox](https://www.cozmoslabs.com/add-ons/customization-toolbox/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) - all in one toolbox packing Profile Builder's most popular customization requests.
|
| 90 |
* [Custom Login Page Templates](https://www.cozmoslabs.com/add-ons/custom-login-page-templates/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) - customize the default WordPress login page with your own design.
|
| 91 |
* [Client Portal](https://www.cozmoslabs.com/add-ons/client-portal/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) - create private pages for your website users that only an administrator can edit.
|
| 92 |
* [Email Confirmation Field](http://www.cozmoslabs.com/add-ons/email-confirmation-field/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) - check if the email address entered matches the first one, making sure a user submits a valid and correct email address
|
| 102 |
|
| 103 |
**Premium Add-ons**
|
| 104 |
|
| 105 |
+
* [WooCommerce Sync](http://www.cozmoslabs.com/add-ons/woocommerce-sync/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) - integrates Profile Builder with [WooCommerce](https://www.cozmoslabs.com/33671-manage-woocommerce-customer-fields-profile-builder/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree), allowing you to manage Shipping and Billing fields from WooCommerce with PB and [more](https://www.cozmoslabs.com/113343-add-conditional-logic-fields-woocommerce-checkout-page/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree)
|
| 106 |
* [Social Connect](http://www.cozmoslabs.com/add-ons/social-connect/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) - enable social login on your website, users can login with Facebook, Google+ or Twitter
|
| 107 |
* [Custom Profile Menus](http://www.cozmoslabs.com/add-ons/custom-profile-menus/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) - add custom menu items like Login/Logout or just Logout button and Login/Register/Edit Profile in iFrame Popup
|
| 108 |
* [MailChimp](http://www.cozmoslabs.com/add-ons/profile-builder-mailchimp/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) - allow users to subscribe to your Mailchimp lists directly from the Register or Edit Profile forms
|
| 168 |
12. Role Editor
|
| 169 |
|
| 170 |
== Changelog ==
|
| 171 |
+
= 2.9.7 =
|
| 172 |
+
* Fixed an issue with private website and login forms that didn't work even though they were on the allowed pages list
|
| 173 |
+
* Fixed a issue with the reCaptcha field on themes that did not enqueue jQuery
|
| 174 |
+
* Removed the deactivation feedback form
|
| 175 |
+
|
| 176 |
= 2.9.6 =
|
| 177 |
* Added Divi PageBuilder compatibility with Content Restriction
|
| 178 |
* Fix password recovery issue when username contained spaces.
|
translation/profile-builder.catalog.php
CHANGED
|
@@ -173,8 +173,8 @@
|
|
| 173 |
<?php __("Allow only login with Social Connect on Profile Builder Login Form.<br>Social Connect will still automatically register users on other forms.", "profile-builder"); ?>
|
| 174 |
<?php __("Facebook Login", "profile-builder"); ?>
|
| 175 |
<?php __("Facebook App ID", "profile-builder"); ?>
|
| 176 |
-
<?php __("Google
|
| 177 |
-
<?php __("Google
|
| 178 |
<?php __("Twitter Login", "profile-builder"); ?>
|
| 179 |
<?php __("Twitter API Key", "profile-builder"); ?>
|
| 180 |
<?php __("Twitter API Secret", "profile-builder"); ?>
|
|
@@ -191,11 +191,11 @@
|
|
| 191 |
<?php __("Empty field will remove the heading.", "profile-builder"); ?>
|
| 192 |
<?php __("Heading Before Buttons (Edit Profile)", "profile-builder"); ?>
|
| 193 |
<?php __("Facebook Button Text (Login/Register)", "profile-builder"); ?>
|
| 194 |
-
<?php __("Google
|
| 195 |
<?php __("Twitter Button Text (Login/Register)", "profile-builder"); ?>
|
| 196 |
<?php __("LinkedIn Button Text (Login/Register)", "profile-builder"); ?>
|
| 197 |
<?php __("Facebook Button Text (Edit Profile)", "profile-builder"); ?>
|
| 198 |
-
<?php __("Google
|
| 199 |
<?php __("Twitter Button Text (Edit Profile)", "profile-builder"); ?>
|
| 200 |
<?php __("LinkedIn Button Text (Edit Profile)", "profile-builder"); ?>
|
| 201 |
<?php __("Unlink Accounts (Edit Profile)", "profile-builder"); ?>
|
|
@@ -383,8 +383,8 @@
|
|
| 383 |
<?php __("Check this to allow users to create their own options beside the pre-existing ones.", "profile-builder"); ?>
|
| 384 |
<?php __("Link with Facebook", "profile-builder"); ?>
|
| 385 |
<?php __("Sign in with Facebook", "profile-builder"); ?>
|
| 386 |
-
<?php __("Link with Google
|
| 387 |
-
<?php __("Sign in with Google
|
| 388 |
<?php __("Link with LinkedIn", "profile-builder"); ?>
|
| 389 |
<?php __("Sign in with LinkedIn", "profile-builder"); ?>
|
| 390 |
<?php __("Connection with twitter Failed", "profile-builder"); ?>
|
| 173 |
<?php __("Allow only login with Social Connect on Profile Builder Login Form.<br>Social Connect will still automatically register users on other forms.", "profile-builder"); ?>
|
| 174 |
<?php __("Facebook Login", "profile-builder"); ?>
|
| 175 |
<?php __("Facebook App ID", "profile-builder"); ?>
|
| 176 |
+
<?php __("Google Login", "profile-builder"); ?>
|
| 177 |
+
<?php __("Google Client ID", "profile-builder"); ?>
|
| 178 |
<?php __("Twitter Login", "profile-builder"); ?>
|
| 179 |
<?php __("Twitter API Key", "profile-builder"); ?>
|
| 180 |
<?php __("Twitter API Secret", "profile-builder"); ?>
|
| 191 |
<?php __("Empty field will remove the heading.", "profile-builder"); ?>
|
| 192 |
<?php __("Heading Before Buttons (Edit Profile)", "profile-builder"); ?>
|
| 193 |
<?php __("Facebook Button Text (Login/Register)", "profile-builder"); ?>
|
| 194 |
+
<?php __("Google Button Text (Login/Register)", "profile-builder"); ?>
|
| 195 |
<?php __("Twitter Button Text (Login/Register)", "profile-builder"); ?>
|
| 196 |
<?php __("LinkedIn Button Text (Login/Register)", "profile-builder"); ?>
|
| 197 |
<?php __("Facebook Button Text (Edit Profile)", "profile-builder"); ?>
|
| 198 |
+
<?php __("Google Button Text (Edit Profile)", "profile-builder"); ?>
|
| 199 |
<?php __("Twitter Button Text (Edit Profile)", "profile-builder"); ?>
|
| 200 |
<?php __("LinkedIn Button Text (Edit Profile)", "profile-builder"); ?>
|
| 201 |
<?php __("Unlink Accounts (Edit Profile)", "profile-builder"); ?>
|
| 383 |
<?php __("Check this to allow users to create their own options beside the pre-existing ones.", "profile-builder"); ?>
|
| 384 |
<?php __("Link with Facebook", "profile-builder"); ?>
|
| 385 |
<?php __("Sign in with Facebook", "profile-builder"); ?>
|
| 386 |
+
<?php __("Link with Google", "profile-builder"); ?>
|
| 387 |
+
<?php __("Sign in with Google", "profile-builder"); ?>
|
| 388 |
<?php __("Link with LinkedIn", "profile-builder"); ?>
|
| 389 |
<?php __("Sign in with LinkedIn", "profile-builder"); ?>
|
| 390 |
<?php __("Connection with twitter Failed", "profile-builder"); ?>
|
translation/profile-builder.pot
CHANGED
|
@@ -421,63 +421,63 @@ msgstr ""
|
|
| 421 |
msgid "The email confirmation does not match your email address."
|
| 422 |
msgstr ""
|
| 423 |
|
| 424 |
-
#: ../pb-add-on-field-visibility/index.php:
|
| 425 |
msgid "Visibility"
|
| 426 |
msgstr ""
|
| 427 |
|
| 428 |
-
#: ../pb-add-on-field-visibility/index.php:
|
| 429 |
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."
|
| 430 |
msgstr ""
|
| 431 |
|
| 432 |
-
#: ../pb-add-on-field-visibility/index.php:
|
| 433 |
msgid "User Role Visibility"
|
| 434 |
msgstr ""
|
| 435 |
|
| 436 |
-
#: ../pb-add-on-field-visibility/index.php:
|
| 437 |
msgid "Select which user roles see this field"
|
| 438 |
msgstr ""
|
| 439 |
|
| 440 |
-
#: ../pb-add-on-field-visibility/index.php:
|
| 441 |
msgid "Location Visibility"
|
| 442 |
msgstr ""
|
| 443 |
|
| 444 |
-
#: ../pb-add-on-field-visibility/index.php:
|
| 445 |
msgid "Select the locations you wish the field to appear"
|
| 446 |
msgstr ""
|
| 447 |
|
| 448 |
-
#: ../pb-add-on-field-visibility/index.php:
|
| 449 |
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>"
|
| 450 |
msgstr ""
|
| 451 |
|
| 452 |
-
#: ../pb-add-on-field-visibility/index.php:
|
| 453 |
msgid "Edit"
|
| 454 |
msgstr ""
|
| 455 |
|
| 456 |
-
#: ../pb-add-on-field-visibility/index.php:
|
| 457 |
msgid "Delete"
|
| 458 |
msgstr ""
|
| 459 |
|
| 460 |
-
#: ../pb-add-on-field-visibility/index.php:
|
| 461 |
msgid "This field is visible only for administrators."
|
| 462 |
msgstr ""
|
| 463 |
|
| 464 |
-
#: ../pb-add-on-field-visibility/index.php:
|
| 465 |
msgid "This field is visible for both administrators and users, but only administrators have the capability to edit it."
|
| 466 |
msgstr ""
|
| 467 |
|
| 468 |
-
#: ../pb-add-on-field-visibility/index.php:
|
| 469 |
msgid "This field is visible only for the following user roles: %1$s"
|
| 470 |
msgstr ""
|
| 471 |
|
| 472 |
-
#: ../pb-add-on-field-visibility/index.php:
|
| 473 |
msgid "This field is visible only in the following locations: %1$s"
|
| 474 |
msgstr ""
|
| 475 |
|
| 476 |
-
#: ../pb-add-on-field-visibility/index.php:
|
| 477 |
msgid "Get file"
|
| 478 |
msgstr ""
|
| 479 |
|
| 480 |
-
#: ../pb-add-on-field-visibility/index.php:
|
| 481 |
msgid "You do not have the capabilities necessary to edit this field."
|
| 482 |
msgstr ""
|
| 483 |
|
|
@@ -714,11 +714,11 @@ msgid "Facebook App ID"
|
|
| 714 |
msgstr ""
|
| 715 |
|
| 716 |
#: ../pb-add-on-social-connect/index.php:208
|
| 717 |
-
msgid "Google
|
| 718 |
msgstr ""
|
| 719 |
|
| 720 |
#: ../pb-add-on-social-connect/index.php:209
|
| 721 |
-
msgid "Google
|
| 722 |
msgstr ""
|
| 723 |
|
| 724 |
#: ../pb-add-on-social-connect/index.php:210
|
|
@@ -786,7 +786,7 @@ msgid "Facebook Button Text (Login/Register)"
|
|
| 786 |
msgstr ""
|
| 787 |
|
| 788 |
#: ../pb-add-on-social-connect/index.php:222
|
| 789 |
-
msgid "Google
|
| 790 |
msgstr ""
|
| 791 |
|
| 792 |
#: ../pb-add-on-social-connect/index.php:223
|
|
@@ -802,7 +802,7 @@ msgid "Facebook Button Text (Edit Profile)"
|
|
| 802 |
msgstr ""
|
| 803 |
|
| 804 |
#: ../pb-add-on-social-connect/index.php:226
|
| 805 |
-
msgid "Google
|
| 806 |
msgstr ""
|
| 807 |
|
| 808 |
#: ../pb-add-on-social-connect/index.php:227
|
|
@@ -1559,12 +1559,12 @@ msgstr ""
|
|
| 1559 |
msgid "Sign in with Facebook"
|
| 1560 |
msgstr ""
|
| 1561 |
|
| 1562 |
-
#: ../pb-add-on-social-connect/google/google.php:
|
| 1563 |
-
msgid "Link with Google
|
| 1564 |
msgstr ""
|
| 1565 |
|
| 1566 |
-
#: ../pb-add-on-social-connect/google/google.php:
|
| 1567 |
-
msgid "Sign in with Google
|
| 1568 |
msgstr ""
|
| 1569 |
|
| 1570 |
#: ../pb-add-on-social-connect/linkedin/linkedin.php:40
|
|
@@ -4541,7 +4541,7 @@ msgstr ""
|
|
| 4541 |
msgid "This field is required"
|
| 4542 |
msgstr ""
|
| 4543 |
|
| 4544 |
-
#: ../profile-builder-2.0/features/functions.php:747, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:
|
| 4545 |
msgid "Please enter a (valid) reCAPTCHA value"
|
| 4546 |
msgstr ""
|
| 4547 |
|
|
@@ -4565,11 +4565,11 @@ msgstr ""
|
|
| 4565 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
| 4566 |
msgstr ""
|
| 4567 |
|
| 4568 |
-
#: ../profile-builder-2.0/features/functions.php:
|
| 4569 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
| 4570 |
msgstr ""
|
| 4571 |
|
| 4572 |
-
#: ../profile-builder-2.0/features/functions.php:
|
| 4573 |
msgid "You are not currently logged in."
|
| 4574 |
msgstr ""
|
| 4575 |
|
|
@@ -6781,15 +6781,15 @@ msgstr ""
|
|
| 6781 |
msgid "To use reCAPTCHA you must get an API key from"
|
| 6782 |
msgstr ""
|
| 6783 |
|
| 6784 |
-
#: ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:
|
| 6785 |
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
| 6786 |
msgstr ""
|
| 6787 |
|
| 6788 |
-
#: ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:
|
| 6789 |
msgid "To use reCAPTCHA you must get an API public key from:"
|
| 6790 |
msgstr ""
|
| 6791 |
|
| 6792 |
-
#: ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:
|
| 6793 |
msgid "Click the BACK button on your browser, and try again."
|
| 6794 |
msgstr ""
|
| 6795 |
|
| 421 |
msgid "The email confirmation does not match your email address."
|
| 422 |
msgstr ""
|
| 423 |
|
| 424 |
+
#: ../pb-add-on-field-visibility/index.php:205, ../profile-builder-2.0/admin/admin-bar.php:61
|
| 425 |
msgid "Visibility"
|
| 426 |
msgstr ""
|
| 427 |
|
| 428 |
+
#: ../pb-add-on-field-visibility/index.php:205
|
| 429 |
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."
|
| 430 |
msgstr ""
|
| 431 |
|
| 432 |
+
#: ../pb-add-on-field-visibility/index.php:206
|
| 433 |
msgid "User Role Visibility"
|
| 434 |
msgstr ""
|
| 435 |
|
| 436 |
+
#: ../pb-add-on-field-visibility/index.php:206
|
| 437 |
msgid "Select which user roles see this field"
|
| 438 |
msgstr ""
|
| 439 |
|
| 440 |
+
#: ../pb-add-on-field-visibility/index.php:207
|
| 441 |
msgid "Location Visibility"
|
| 442 |
msgstr ""
|
| 443 |
|
| 444 |
+
#: ../pb-add-on-field-visibility/index.php:207
|
| 445 |
msgid "Select the locations you wish the field to appear"
|
| 446 |
msgstr ""
|
| 447 |
|
| 448 |
+
#: ../pb-add-on-field-visibility/index.php:225
|
| 449 |
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>"
|
| 450 |
msgstr ""
|
| 451 |
|
| 452 |
+
#: ../pb-add-on-field-visibility/index.php:225, ../pb-add-on-labels-edit/pble.php:354, ../profile-builder-2.0/admin/manage-fields.php:1239, ../profile-builder-2.0/features/functions.php:787, ../profile-builder-2.0/features/functions.php:794, ../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
|
| 453 |
msgid "Edit"
|
| 454 |
msgstr ""
|
| 455 |
|
| 456 |
+
#: ../pb-add-on-field-visibility/index.php:225, ../profile-builder-2.0/admin/manage-fields.php:1239, ../profile-builder-2.0/features/functions.php:780, ../profile-builder-2.0/features/functions.php:794, ../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
|
| 457 |
msgid "Delete"
|
| 458 |
msgstr ""
|
| 459 |
|
| 460 |
+
#: ../pb-add-on-field-visibility/index.php:246
|
| 461 |
msgid "This field is visible only for administrators."
|
| 462 |
msgstr ""
|
| 463 |
|
| 464 |
+
#: ../pb-add-on-field-visibility/index.php:249
|
| 465 |
msgid "This field is visible for both administrators and users, but only administrators have the capability to edit it."
|
| 466 |
msgstr ""
|
| 467 |
|
| 468 |
+
#: ../pb-add-on-field-visibility/index.php:272
|
| 469 |
msgid "This field is visible only for the following user roles: %1$s"
|
| 470 |
msgstr ""
|
| 471 |
|
| 472 |
+
#: ../pb-add-on-field-visibility/index.php:318
|
| 473 |
msgid "This field is visible only in the following locations: %1$s"
|
| 474 |
msgstr ""
|
| 475 |
|
| 476 |
+
#: ../pb-add-on-field-visibility/index.php:460
|
| 477 |
msgid "Get file"
|
| 478 |
msgstr ""
|
| 479 |
|
| 480 |
+
#: ../pb-add-on-field-visibility/index.php:589
|
| 481 |
msgid "You do not have the capabilities necessary to edit this field."
|
| 482 |
msgstr ""
|
| 483 |
|
| 714 |
msgstr ""
|
| 715 |
|
| 716 |
#: ../pb-add-on-social-connect/index.php:208
|
| 717 |
+
msgid "Google Login"
|
| 718 |
msgstr ""
|
| 719 |
|
| 720 |
#: ../pb-add-on-social-connect/index.php:209
|
| 721 |
+
msgid "Google Client ID"
|
| 722 |
msgstr ""
|
| 723 |
|
| 724 |
#: ../pb-add-on-social-connect/index.php:210
|
| 786 |
msgstr ""
|
| 787 |
|
| 788 |
#: ../pb-add-on-social-connect/index.php:222
|
| 789 |
+
msgid "Google Button Text (Login/Register)"
|
| 790 |
msgstr ""
|
| 791 |
|
| 792 |
#: ../pb-add-on-social-connect/index.php:223
|
| 802 |
msgstr ""
|
| 803 |
|
| 804 |
#: ../pb-add-on-social-connect/index.php:226
|
| 805 |
+
msgid "Google Button Text (Edit Profile)"
|
| 806 |
msgstr ""
|
| 807 |
|
| 808 |
#: ../pb-add-on-social-connect/index.php:227
|
| 1559 |
msgid "Sign in with Facebook"
|
| 1560 |
msgstr ""
|
| 1561 |
|
| 1562 |
+
#: ../pb-add-on-social-connect/google/google.php:31
|
| 1563 |
+
msgid "Link with Google"
|
| 1564 |
msgstr ""
|
| 1565 |
|
| 1566 |
+
#: ../pb-add-on-social-connect/google/google.php:37
|
| 1567 |
+
msgid "Sign in with Google"
|
| 1568 |
msgstr ""
|
| 1569 |
|
| 1570 |
#: ../pb-add-on-social-connect/linkedin/linkedin.php:40
|
| 4541 |
msgid "This field is required"
|
| 4542 |
msgstr ""
|
| 4543 |
|
| 4544 |
+
#: ../profile-builder-2.0/features/functions.php:747, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:463, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:472, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:525, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:570
|
| 4545 |
msgid "Please enter a (valid) reCAPTCHA value"
|
| 4546 |
msgstr ""
|
| 4547 |
|
| 4565 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
| 4566 |
msgstr ""
|
| 4567 |
|
| 4568 |
+
#: ../profile-builder-2.0/features/functions.php:1190
|
| 4569 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
| 4570 |
msgstr ""
|
| 4571 |
|
| 4572 |
+
#: ../profile-builder-2.0/features/functions.php:1225
|
| 4573 |
msgid "You are not currently logged in."
|
| 4574 |
msgstr ""
|
| 4575 |
|
| 6781 |
msgid "To use reCAPTCHA you must get an API key from"
|
| 6782 |
msgstr ""
|
| 6783 |
|
| 6784 |
+
#: ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:178
|
| 6785 |
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
| 6786 |
msgstr ""
|
| 6787 |
|
| 6788 |
+
#: ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:243
|
| 6789 |
msgid "To use reCAPTCHA you must get an API public key from:"
|
| 6790 |
msgstr ""
|
| 6791 |
|
| 6792 |
+
#: ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:525
|
| 6793 |
msgid "Click the BACK button on your browser, and try again."
|
| 6794 |
msgstr ""
|
| 6795 |
|
