Version Description
- Improved reCaptcha security on login forms
- Fixed issue with 'User to edit' field and multiple edit forms on the same page
- Fixed some warnings regarding the 'save_post' hook
- Fixed a warning regarding 'create_function'
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 2.8.0 |
Comparing to | |
See all releases |
Code changes from version 2.7.9 to 2.8.0
- features/functions.php +1 -1
- front-end/class-formbuilder.php +2 -2
- front-end/default-fields/recaptcha/recaptcha.php +5 -1
- index.php +2 -2
- readme.txt +8 -2
- translation/profile-builder.pot +125 -125
features/functions.php
CHANGED
@@ -169,7 +169,7 @@ function wppb_mail( $to, $subject, $message, $message_from = null, $context = nu
|
|
169 |
|
170 |
if ( $send_email ) {
|
171 |
//we add this filter to enable html encoding
|
172 |
-
if ( version_compare( phpversion(), '5.
|
173 |
add_filter('wp_mail_content_type', create_function('', 'return "text/html"; '));
|
174 |
}else{
|
175 |
add_filter('wp_mail_content_type', function( $content_type ) { return 'text/html'; } );
|
169 |
|
170 |
if ( $send_email ) {
|
171 |
//we add this filter to enable html encoding
|
172 |
+
if ( version_compare( phpversion(), '5.4.0', '<' ) ) {
|
173 |
add_filter('wp_mail_content_type', create_function('', 'return "text/html"; '));
|
174 |
}else{
|
175 |
add_filter('wp_mail_content_type', function( $content_type ) { return 'text/html'; } );
|
front-end/class-formbuilder.php
CHANGED
@@ -49,7 +49,7 @@ class Profile_Builder_Form_Creator{
|
|
49 |
$this->wppb_retrieve_custom_settings();
|
50 |
|
51 |
if( ( !is_multisite() && current_user_can( 'edit_users' ) ) || ( is_multisite() && current_user_can( 'manage_network' ) ) )
|
52 |
-
add_action( 'wppb_before_edit_profile_fields', array(
|
53 |
}
|
54 |
|
55 |
/**
|
@@ -650,7 +650,7 @@ class Profile_Builder_Form_Creator{
|
|
650 |
return get_current_user_id();
|
651 |
}
|
652 |
|
653 |
-
function wppb_edit_profile_select_user_to_edit(){
|
654 |
|
655 |
$display_edit_users_dropdown = apply_filters( 'wppb_display_edit_other_users_dropdown', true );
|
656 |
if( !$display_edit_users_dropdown )
|
49 |
$this->wppb_retrieve_custom_settings();
|
50 |
|
51 |
if( ( !is_multisite() && current_user_can( 'edit_users' ) ) || ( is_multisite() && current_user_can( 'manage_network' ) ) )
|
52 |
+
add_action( 'wppb_before_edit_profile_fields', array( 'Profile_Builder_Form_Creator', 'wppb_edit_profile_select_user_to_edit' ) );
|
53 |
}
|
54 |
|
55 |
/**
|
650 |
return get_current_user_id();
|
651 |
}
|
652 |
|
653 |
+
static function wppb_edit_profile_select_user_to_edit(){
|
654 |
|
655 |
$display_edit_users_dropdown = apply_filters( 'wppb_display_edit_other_users_dropdown', true );
|
656 |
if( !$display_edit_users_dropdown )
|
front-end/default-fields/recaptcha/recaptcha.php
CHANGED
@@ -459,6 +459,8 @@ function wppb_recaptcha_login_wp_error_message($user){
|
|
459 |
// it's a PB login form, check if we have a reCAPTCHA on it and display error if not valid
|
460 |
if ((isset($field['captcha-pb-forms'])) && (strpos($field['captcha-pb-forms'], 'pb_login') !== false) && ($wppb_recaptcha_response == false)) {
|
461 |
$user = new WP_Error('wppb_recaptcha_error', __('Please enter a (valid) reCAPTCHA value', 'profile-builder'));
|
|
|
|
|
462 |
}
|
463 |
|
464 |
}
|
@@ -466,6 +468,8 @@ function wppb_recaptcha_login_wp_error_message($user){
|
|
466 |
//reCAPTCHA error for displaying on the default WP login form
|
467 |
if (isset($field['captcha-wp-forms']) && (strpos($field['captcha-wp-forms'], 'default_wp_login') !== false) && ($wppb_recaptcha_response == false)) {
|
468 |
$user = new WP_Error('wppb_recaptcha_error', __('Please enter a (valid) reCAPTCHA value', 'profile-builder'));
|
|
|
|
|
469 |
}
|
470 |
|
471 |
}
|
@@ -473,7 +477,7 @@ function wppb_recaptcha_login_wp_error_message($user){
|
|
473 |
}
|
474 |
return $user;
|
475 |
}
|
476 |
-
add_filter('authenticate','wppb_recaptcha_login_wp_error_message',
|
477 |
|
478 |
// Display reCAPTCHA html on default WP Recover Password form
|
479 |
function wppb_display_recaptcha_default_wp_recover_password() {
|
459 |
// it's a PB login form, check if we have a reCAPTCHA on it and display error if not valid
|
460 |
if ((isset($field['captcha-pb-forms'])) && (strpos($field['captcha-pb-forms'], 'pb_login') !== false) && ($wppb_recaptcha_response == false)) {
|
461 |
$user = new WP_Error('wppb_recaptcha_error', __('Please enter a (valid) reCAPTCHA value', 'profile-builder'));
|
462 |
+
remove_filter( 'authenticate', 'wp_authenticate_username_password', 20, 3 );
|
463 |
+
remove_filter( 'authenticate', 'wp_authenticate_email_password', 20, 3 );
|
464 |
}
|
465 |
|
466 |
}
|
468 |
//reCAPTCHA error for displaying on the default WP login form
|
469 |
if (isset($field['captcha-wp-forms']) && (strpos($field['captcha-wp-forms'], 'default_wp_login') !== false) && ($wppb_recaptcha_response == false)) {
|
470 |
$user = new WP_Error('wppb_recaptcha_error', __('Please enter a (valid) reCAPTCHA value', 'profile-builder'));
|
471 |
+
remove_filter( 'authenticate', 'wp_authenticate_username_password', 20, 3 );
|
472 |
+
remove_filter( 'authenticate', 'wp_authenticate_email_password', 20, 3 );
|
473 |
}
|
474 |
|
475 |
}
|
477 |
}
|
478 |
return $user;
|
479 |
}
|
480 |
+
add_filter('authenticate','wppb_recaptcha_login_wp_error_message', 9);
|
481 |
|
482 |
// Display reCAPTCHA html on default WP Recover Password form
|
483 |
function wppb_display_recaptcha_default_wp_recover_password() {
|
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 chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
-
Version: 2.
|
7 |
Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
@@ -75,7 +75,7 @@ function wppb_free_plugin_init() {
|
|
75 |
*
|
76 |
*
|
77 |
*/
|
78 |
-
define('PROFILE_BUILDER_VERSION', '2.
|
79 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
80 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
81 |
define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
|
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 chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
+
Version: 2.8.0
|
7 |
Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
75 |
*
|
76 |
*
|
77 |
*/
|
78 |
+
define('PROFILE_BUILDER_VERSION', '2.8.0' );
|
79 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
80 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
81 |
define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungurea
|
|
3 |
Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
|
5 |
Requires at least: 3.1
|
6 |
-
Tested up to: 4.9.
|
7 |
-
Stable tag: 2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -165,6 +165,12 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
165 |
12. Role Editor
|
166 |
|
167 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
168 |
= 2.7.9 =
|
169 |
* Added support for Content Restriction on WooCommerce shop page and products
|
170 |
* Fixed php version 7.2 warnings
|
3 |
Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
|
5 |
Requires at least: 3.1
|
6 |
+
Tested up to: 4.9.5
|
7 |
+
Stable tag: 2.8.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
165 |
12. Role Editor
|
166 |
|
167 |
== Changelog ==
|
168 |
+
= 2.8.0 =
|
169 |
+
* Improved reCaptcha security on login forms
|
170 |
+
* Fixed issue with 'User to edit' field and multiple edit forms on the same page
|
171 |
+
* Fixed some warnings regarding the 'save_post' hook
|
172 |
+
* Fixed a warning regarding 'create_function'
|
173 |
+
|
174 |
= 2.7.9 =
|
175 |
* Added support for Content Restriction on WooCommerce shop page and products
|
176 |
* Fixed php version 7.2 warnings
|
translation/profile-builder.pot
CHANGED
@@ -25,7 +25,7 @@ msgstr ""
|
|
25 |
msgid "Choose (Single) User Listing to display under bbPress user Profile tab:"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: ../pb-add-on-bbpress/bbpress-page.php:82, ../pb-add-on-bbpress/bbpress-page.php:117, woosync-page.php:80, woosync-page.php:115, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:552, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:233, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:308, ../profile-builder-2.0/features/content-restriction/content-restriction.php:91
|
29 |
msgid "None"
|
30 |
msgstr ""
|
31 |
|
@@ -37,7 +37,7 @@ msgstr ""
|
|
37 |
msgid "Choose Edit Profile form to display under bbPress Profile Edit tab:"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: ../pb-add-on-bbpress/bbpress-page.php:118, ../pb-add-on-buddypress/buddypress-page.php:98, woosync-page.php:116
|
41 |
msgid "Default Edit Profile"
|
42 |
msgstr ""
|
43 |
|
@@ -653,443 +653,443 @@ msgstr ""
|
|
653 |
msgid "Replace labels with placeholders:"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: ../pb-add-on-placeholder-labels/pbpl.php:171,
|
657 |
msgid "Yes"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: ../pb-add-on-placeholder-labels/pbpl.php:172,
|
661 |
msgid "No"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#:
|
665 |
msgid "Social Connect"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#:
|
669 |
msgid "Display on the Following Forms"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#:
|
673 |
msgid "Disable Registration on"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#:
|
677 |
msgid "Allow only login with Social Connect on Profile Builder Login Form.<br>Social Connect will still automatically register users on other forms."
|
678 |
msgstr ""
|
679 |
|
680 |
-
#:
|
681 |
msgid "Facebook Login"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#:
|
685 |
msgid "Facebook App ID"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#:
|
689 |
msgid "Google+ Login"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#:
|
693 |
msgid "Google+ Client ID"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#:
|
697 |
msgid "Twitter Login"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#:
|
701 |
msgid "Twitter API Key"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#:
|
705 |
msgid "Twitter API Secret"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#:
|
709 |
msgid "LinkedIn Login"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#:
|
713 |
msgid "LinkedIn Client ID"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#:
|
717 |
msgid "Buttons Order"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#:
|
721 |
msgid "Drag and drop the dots to re-order."
|
722 |
msgstr ""
|
723 |
|
724 |
-
#:
|
725 |
msgid "Buttons Re-Order"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#:
|
729 |
msgid "Save the buttons order from the buttons order checkboxes"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#:
|
733 |
msgid "Buttons Location"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#:
|
737 |
msgid "Display social buttons before or after the forms fields."
|
738 |
msgstr ""
|
739 |
|
740 |
-
#:
|
741 |
msgid "Buttons Style"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#:
|
745 |
msgid "Heading Before Buttons (Login/Register)"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#:
|
749 |
msgid "Empty field will remove the heading."
|
750 |
msgstr ""
|
751 |
|
752 |
-
#:
|
753 |
msgid "Heading Before Buttons (Edit Profile)"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#:
|
757 |
msgid "Facebook Button Text (Login/Register)"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#:
|
761 |
msgid "Google+ Button Text (Login/Register)"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#:
|
765 |
msgid "Twitter Button Text (Login/Register)"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#:
|
769 |
msgid "LinkedIn Button Text (Login/Register)"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#:
|
773 |
msgid "Facebook Button Text (Edit Profile)"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#:
|
777 |
msgid "Google+ Button Text (Edit Profile)"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#:
|
781 |
msgid "Twitter Button Text (Edit Profile)"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#:
|
785 |
msgid "LinkedIn Button Text (Edit Profile)"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#:
|
789 |
msgid "Unlink Accounts (Edit Profile)"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#:
|
793 |
msgid "This option will display linked social platforms to users accounts and will allow to easily unlink them in Edit Profile page."
|
794 |
msgstr ""
|
795 |
|
796 |
-
#:
|
797 |
msgid "Default Social Connect CSS in the Front-end"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#:
|
801 |
msgid "Settings"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#:
|
805 |
msgid "Help"
|
806 |
msgstr ""
|
807 |
|
808 |
-
#:
|
809 |
msgid "Display Social Connect buttons:"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#:
|
813 |
msgid "You have successfully unlinked %% from your account."
|
814 |
msgstr ""
|
815 |
|
816 |
-
#:
|
817 |
msgid "An account with this email address already exists.<br> Do you want to connect it?"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#:
|
821 |
msgid "Please enter your website account password"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#:
|
825 |
msgid "Please enter a new email"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#:
|
829 |
msgid "You have successfully linked your account to %%."
|
830 |
msgstr ""
|
831 |
|
832 |
-
#:
|
833 |
msgid "Something went wrong. Please try again later!"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#:
|
837 |
msgid "Before you can access your account you need to confirm your email address. Please check your inbox and click the activation link."
|
838 |
msgstr ""
|
839 |
|
840 |
-
#:
|
841 |
msgid "<strong>ERROR</strong>: You need to confirm your email address before you can log in."
|
842 |
msgstr ""
|
843 |
|
844 |
-
#:
|
845 |
msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
|
846 |
msgstr ""
|
847 |
|
848 |
-
#:
|
849 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
850 |
msgstr ""
|
851 |
|
852 |
-
#:
|
853 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
854 |
msgstr ""
|
855 |
|
856 |
-
#:
|
857 |
msgid "here"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#:
|
861 |
msgid "<strong>You can only login with social accounts, not register!</strong><br>Please link your social account to an existing user account first."
|
862 |
msgstr ""
|
863 |
|
864 |
-
#:
|
865 |
msgid "Wrong password!"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#:
|
869 |
msgid "Please enter a valid email!"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#:
|
873 |
msgid "You can only login on this form.<br>Register with your social account on the register form."
|
874 |
msgstr ""
|
875 |
|
876 |
-
#:
|
877 |
msgid "Please enter your Facebook email"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#:
|
881 |
msgid "Please enter your Facebook email!"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#:
|
885 |
msgid "Waiting for Twitter..."
|
886 |
msgstr ""
|
887 |
|
888 |
-
#:
|
889 |
msgid "Please enter your Twitter email"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#:
|
893 |
msgid "Please enter your Twitter email!"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#:
|
897 |
msgid "Profile Builder not active!"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#:
|
901 |
msgid "General Settings"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#:
|
905 |
msgid "Application Settings"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#:
|
909 |
msgid "Appearance Settings"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#:
|
913 |
msgid "Unlink"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#:
|
917 |
msgid "Your account is linked with:"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: billing-fields.php:5, shipping-fields.php:5
|
921 |
msgid "Country"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: billing-fields.php:6, shipping-fields.php:6, ../profile-builder-2.0/admin/manage-fields.php:213
|
925 |
msgid "First Name"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: billing-fields.php:7, shipping-fields.php:7, ../profile-builder-2.0/admin/manage-fields.php:214
|
929 |
msgid "Last Name"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: billing-fields.php:8, shipping-fields.php:8
|
933 |
msgid "Company Name"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: billing-fields.php:9, shipping-fields.php:9
|
937 |
msgid "Address"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: billing-fields.php:11, shipping-fields.php:11
|
941 |
msgid "Town / City"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: billing-fields.php:12, shipping-fields.php:12
|
945 |
msgid "State / County"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: billing-fields.php:13, shipping-fields.php:13
|
949 |
msgid "Postcode / Zip"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: billing-fields.php:14
|
953 |
msgid "Email Address"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: billing-fields.php:15
|
957 |
msgid "Phone"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: billing-fields.php:278
|
961 |
msgid "Ship to a different address?"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: index.php:160, index.php:729
|
965 |
msgid "Billing Address"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: index.php:160
|
969 |
msgid "Displays customer billing fields in front-end. "
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: index.php:164, index.php:730
|
973 |
msgid "Shipping Address"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: index.php:164
|
977 |
msgid "Displays customer shipping fields in front-end. "
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: index.php:239, index.php:258, index.php:355, index.php:358, index.php:785
|
981 |
msgid "Address line 2"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: index.php:247
|
985 |
msgid "Billing Fields"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: index.php:247
|
989 |
msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: index.php:248
|
993 |
msgid "Billing Fields Order"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: index.php:248
|
997 |
msgid "Save the billing fields order from the billing fields checkboxes"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: index.php:249
|
1001 |
msgid "Billing Fields Name"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: index.php:249
|
1005 |
msgid "Save the billing fields names"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: index.php:266
|
1009 |
msgid "Shipping Fields"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: index.php:266
|
1013 |
msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: index.php:267
|
1017 |
msgid "Shipping Fields Order"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: index.php:267
|
1021 |
msgid "Save the shipping fields order from the billing fields checkboxes"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: index.php:268
|
1025 |
msgid "Shipping Fields Name"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: index.php:268
|
1029 |
msgid "Save the shipping fields names"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: index.php:296
|
1033 |
msgid "Field Name"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: index.php:297, ../profile-builder-2.0/admin/manage-fields.php:171
|
1037 |
msgid "Required"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: index.php:360
|
1041 |
msgid "Click to edit "
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: index.php:384, ../profile-builder-2.0/front-end/default-fields/email/email.php:47
|
1045 |
msgid "The email you entered is not a valid email address."
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: index.php:642
|
1049 |
msgid "No options available. Please select one country."
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: index.php:661, index.php:686
|
1053 |
msgid "Billing "
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: index.php:669, index.php:693
|
1057 |
msgid "Shipping "
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: index.php:846
|
1061 |
msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: woo-checkout-field-support.php:63
|
1065 |
msgid "Display on WooCommerce Checkout"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: woo-checkout-field-support.php:63
|
1069 |
msgid "Whether the field should be added to the WooCommerce checkout form or not"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: woosync-page.php:23, woosync-page.php:23, woosync-page.php:70
|
1073 |
msgid "WooCommerce Sync"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: woosync-page.php:76
|
1077 |
msgid "Choose Register form to display on My Account page:"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: woosync-page.php:81
|
1081 |
msgid "Default Register"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: woosync-page.php:104
|
1085 |
msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: woosync-page.php:111
|
1089 |
msgid "Choose Edit Profile form to display on My Account page:"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: woosync-page.php:139
|
1093 |
msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
|
1094 |
msgstr ""
|
1095 |
|
@@ -1499,47 +1499,47 @@ msgstr ""
|
|
1499 |
msgid "required"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
-
#:
|
1503 |
msgid "Link with Facebook"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#:
|
1507 |
msgid "Sign in with Facebook"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#:
|
1511 |
msgid "Link with Google+"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#:
|
1515 |
msgid "Sign in with Google+"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#:
|
1519 |
msgid "Link with LinkedIn"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#:
|
1523 |
msgid "Sign in with LinkedIn"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#:
|
1527 |
msgid "Connection with twitter Failed"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#:
|
1531 |
msgid "Error Receiving Request Token"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#:
|
1535 |
msgid "Something went wrong. Please try again later."
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#:
|
1539 |
msgid "Link with Twitter"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
-
#:
|
1543 |
msgid "Sign in with Twitter"
|
1544 |
msgstr ""
|
1545 |
|
@@ -4337,7 +4337,7 @@ msgstr ""
|
|
4337 |
msgid "This field is required"
|
4338 |
msgstr ""
|
4339 |
|
4340 |
-
#: ../profile-builder-2.0/features/functions.php:707, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:461, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:
|
4341 |
msgid "Please enter a (valid) reCAPTCHA value"
|
4342 |
msgstr ""
|
4343 |
|
@@ -6241,7 +6241,7 @@ msgstr ""
|
|
6241 |
msgid "To use reCAPTCHA you must get an API public key from:"
|
6242 |
msgstr ""
|
6243 |
|
6244 |
-
#: ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:
|
6245 |
msgid "Click the BACK button on your browser, and try again."
|
6246 |
msgstr ""
|
6247 |
|
25 |
msgid "Choose (Single) User Listing to display under bbPress user Profile tab:"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: ../pb-add-on-bbpress/bbpress-page.php:82, ../pb-add-on-bbpress/bbpress-page.php:117, ../pb-add-on-woocommerce/woosync-page.php:80, ../pb-add-on-woocommerce/woosync-page.php:115, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:552, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:233, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:308, ../profile-builder-2.0/features/content-restriction/content-restriction.php:91
|
29 |
msgid "None"
|
30 |
msgstr ""
|
31 |
|
37 |
msgid "Choose Edit Profile form to display under bbPress Profile Edit tab:"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ../pb-add-on-bbpress/bbpress-page.php:118, ../pb-add-on-buddypress/buddypress-page.php:98, ../pb-add-on-woocommerce/woosync-page.php:116
|
41 |
msgid "Default Edit Profile"
|
42 |
msgstr ""
|
43 |
|
653 |
msgid "Replace labels with placeholders:"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:171, index.php:323, ../profile-builder-2.0/admin/general-settings.php:42, ../profile-builder-2.0/admin/general-settings.php:55, ../profile-builder-2.0/admin/general-settings.php:104, ../profile-builder-2.0/admin/general-settings.php:151, ../profile-builder-2.0/admin/general-settings.php:170, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230, ../profile-builder-2.0/modules/user-listing/userlisting.php:2320
|
657 |
msgid "Yes"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:172, index.php:324, ../profile-builder-2.0/admin/general-settings.php:56, ../profile-builder-2.0/admin/general-settings.php:105, ../profile-builder-2.0/admin/general-settings.php:150, ../profile-builder-2.0/admin/general-settings.php:169, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230
|
661 |
msgid "No"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: index.php:184, index.php:185, index.php:291, index.php:295
|
665 |
msgid "Social Connect"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: index.php:204
|
669 |
msgid "Display on the Following Forms"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: index.php:205
|
673 |
msgid "Disable Registration on"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: index.php:205
|
677 |
msgid "Allow only login with Social Connect on Profile Builder Login Form.<br>Social Connect will still automatically register users on other forms."
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: index.php:206
|
681 |
msgid "Facebook Login"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: index.php:207
|
685 |
msgid "Facebook App ID"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: index.php:208
|
689 |
msgid "Google+ Login"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: index.php:209
|
693 |
msgid "Google+ Client ID"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: index.php:210
|
697 |
msgid "Twitter Login"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: index.php:211
|
701 |
msgid "Twitter API Key"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: index.php:212
|
705 |
msgid "Twitter API Secret"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: index.php:213
|
709 |
msgid "LinkedIn Login"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: index.php:214
|
713 |
msgid "LinkedIn Client ID"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: index.php:215
|
717 |
msgid "Buttons Order"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: index.php:215
|
721 |
msgid "Drag and drop the dots to re-order."
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: index.php:216
|
725 |
msgid "Buttons Re-Order"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: index.php:216
|
729 |
msgid "Save the buttons order from the buttons order checkboxes"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: index.php:217
|
733 |
msgid "Buttons Location"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: index.php:217
|
737 |
msgid "Display social buttons before or after the forms fields."
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: index.php:218
|
741 |
msgid "Buttons Style"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: index.php:219
|
745 |
msgid "Heading Before Buttons (Login/Register)"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: index.php:219, index.php:220
|
749 |
msgid "Empty field will remove the heading."
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: index.php:220
|
753 |
msgid "Heading Before Buttons (Edit Profile)"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: index.php:221
|
757 |
msgid "Facebook Button Text (Login/Register)"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: index.php:222
|
761 |
msgid "Google+ Button Text (Login/Register)"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: index.php:223
|
765 |
msgid "Twitter Button Text (Login/Register)"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: index.php:224
|
769 |
msgid "LinkedIn Button Text (Login/Register)"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: index.php:225
|
773 |
msgid "Facebook Button Text (Edit Profile)"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: index.php:226
|
777 |
msgid "Google+ Button Text (Edit Profile)"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: index.php:227
|
781 |
msgid "Twitter Button Text (Edit Profile)"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: index.php:228
|
785 |
msgid "LinkedIn Button Text (Edit Profile)"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: index.php:229
|
789 |
msgid "Unlink Accounts (Edit Profile)"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: index.php:229
|
793 |
msgid "This option will display linked social platforms to users accounts and will allow to easily unlink them in Edit Profile page."
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: index.php:230
|
797 |
msgid "Default Social Connect CSS in the Front-end"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: index.php:236
|
801 |
msgid "Settings"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: index.php:250
|
805 |
msgid "Help"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: index.php:320
|
809 |
msgid "Display Social Connect buttons:"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: index.php:369
|
813 |
msgid "You have successfully unlinked %% from your account."
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: index.php:380
|
817 |
msgid "An account with this email address already exists.<br> Do you want to connect it?"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: index.php:381
|
821 |
msgid "Please enter your website account password"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: index.php:382
|
825 |
msgid "Please enter a new email"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: index.php:383
|
829 |
msgid "You have successfully linked your account to %%."
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: index.php:384
|
833 |
msgid "Something went wrong. Please try again later!"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: index.php:385
|
837 |
msgid "Before you can access your account you need to confirm your email address. Please check your inbox and click the activation link."
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: index.php:386
|
841 |
msgid "<strong>ERROR</strong>: You need to confirm your email address before you can log in."
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: index.php:387
|
845 |
msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: index.php:388, ../profile-builder-2.0/features/admin-approval/admin-approval.php:180
|
849 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: index.php:389
|
853 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: index.php:390, ../profile-builder-2.0/features/functions.php:1032
|
857 |
msgid "here"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: index.php:391
|
861 |
msgid "<strong>You can only login with social accounts, not register!</strong><br>Please link your social account to an existing user account first."
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: index.php:392
|
865 |
msgid "Wrong password!"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: index.php:393
|
869 |
msgid "Please enter a valid email!"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: index.php:394
|
873 |
msgid "You can only login on this form.<br>Register with your social account on the register form."
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: index.php:400
|
877 |
msgid "Please enter your Facebook email"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: index.php:401
|
881 |
msgid "Please enter your Facebook email!"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: index.php:413
|
885 |
msgid "Waiting for Twitter..."
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: index.php:414
|
889 |
msgid "Please enter your Twitter email"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: index.php:415
|
893 |
msgid "Please enter your Twitter email!"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: index.php:695
|
897 |
msgid "Profile Builder not active!"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: index.php:832, ../profile-builder-2.0/admin/admin-functions.php:37, ../profile-builder-2.0/admin/general-settings.php:10, ../profile-builder-2.0/admin/general-settings.php:10, ../profile-builder-2.0/admin/general-settings.php:35
|
901 |
msgid "General Settings"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: index.php:836
|
905 |
msgid "Application Settings"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: index.php:840
|
909 |
msgid "Appearance Settings"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: index.php:904
|
913 |
msgid "Unlink"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: index.php:911
|
917 |
msgid "Your account is linked with:"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:5, ../pb-add-on-woocommerce/shipping-fields.php:5
|
921 |
msgid "Country"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, ../profile-builder-2.0/admin/manage-fields.php:213
|
925 |
msgid "First Name"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, ../profile-builder-2.0/admin/manage-fields.php:214
|
929 |
msgid "Last Name"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:8, ../pb-add-on-woocommerce/shipping-fields.php:8
|
933 |
msgid "Company Name"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:9, ../pb-add-on-woocommerce/shipping-fields.php:9
|
937 |
msgid "Address"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:11, ../pb-add-on-woocommerce/shipping-fields.php:11
|
941 |
msgid "Town / City"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:12, ../pb-add-on-woocommerce/shipping-fields.php:12
|
945 |
msgid "State / County"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:13, ../pb-add-on-woocommerce/shipping-fields.php:13
|
949 |
msgid "Postcode / Zip"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:14
|
953 |
msgid "Email Address"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:15
|
957 |
msgid "Phone"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:278
|
961 |
msgid "Ship to a different address?"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: ../pb-add-on-woocommerce/index.php:160, ../pb-add-on-woocommerce/index.php:729
|
965 |
msgid "Billing Address"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: ../pb-add-on-woocommerce/index.php:160
|
969 |
msgid "Displays customer billing fields in front-end. "
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: ../pb-add-on-woocommerce/index.php:164, ../pb-add-on-woocommerce/index.php:730
|
973 |
msgid "Shipping Address"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: ../pb-add-on-woocommerce/index.php:164
|
977 |
msgid "Displays customer shipping fields in front-end. "
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: ../pb-add-on-woocommerce/index.php:239, ../pb-add-on-woocommerce/index.php:258, ../pb-add-on-woocommerce/index.php:355, ../pb-add-on-woocommerce/index.php:358, ../pb-add-on-woocommerce/index.php:785
|
981 |
msgid "Address line 2"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: ../pb-add-on-woocommerce/index.php:247
|
985 |
msgid "Billing Fields"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: ../pb-add-on-woocommerce/index.php:247
|
989 |
msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: ../pb-add-on-woocommerce/index.php:248
|
993 |
msgid "Billing Fields Order"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: ../pb-add-on-woocommerce/index.php:248
|
997 |
msgid "Save the billing fields order from the billing fields checkboxes"
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: ../pb-add-on-woocommerce/index.php:249
|
1001 |
msgid "Billing Fields Name"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: ../pb-add-on-woocommerce/index.php:249
|
1005 |
msgid "Save the billing fields names"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: ../pb-add-on-woocommerce/index.php:266
|
1009 |
msgid "Shipping Fields"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: ../pb-add-on-woocommerce/index.php:266
|
1013 |
msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: ../pb-add-on-woocommerce/index.php:267
|
1017 |
msgid "Shipping Fields Order"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: ../pb-add-on-woocommerce/index.php:267
|
1021 |
msgid "Save the shipping fields order from the billing fields checkboxes"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: ../pb-add-on-woocommerce/index.php:268
|
1025 |
msgid "Shipping Fields Name"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: ../pb-add-on-woocommerce/index.php:268
|
1029 |
msgid "Save the shipping fields names"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: ../pb-add-on-woocommerce/index.php:296
|
1033 |
msgid "Field Name"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: ../pb-add-on-woocommerce/index.php:297, ../profile-builder-2.0/admin/manage-fields.php:171
|
1037 |
msgid "Required"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: ../pb-add-on-woocommerce/index.php:360
|
1041 |
msgid "Click to edit "
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: ../pb-add-on-woocommerce/index.php:384, ../profile-builder-2.0/front-end/default-fields/email/email.php:47
|
1045 |
msgid "The email you entered is not a valid email address."
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: ../pb-add-on-woocommerce/index.php:642
|
1049 |
msgid "No options available. Please select one country."
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: ../pb-add-on-woocommerce/index.php:661, ../pb-add-on-woocommerce/index.php:686
|
1053 |
msgid "Billing "
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: ../pb-add-on-woocommerce/index.php:669, ../pb-add-on-woocommerce/index.php:693
|
1057 |
msgid "Shipping "
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: ../pb-add-on-woocommerce/index.php:846
|
1061 |
msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: ../pb-add-on-woocommerce/woo-checkout-field-support.php:63
|
1065 |
msgid "Display on WooCommerce Checkout"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: ../pb-add-on-woocommerce/woo-checkout-field-support.php:63
|
1069 |
msgid "Whether the field should be added to the WooCommerce checkout form or not"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: ../pb-add-on-woocommerce/woosync-page.php:23, ../pb-add-on-woocommerce/woosync-page.php:23, ../pb-add-on-woocommerce/woosync-page.php:70
|
1073 |
msgid "WooCommerce Sync"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: ../pb-add-on-woocommerce/woosync-page.php:76
|
1077 |
msgid "Choose Register form to display on My Account page:"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: ../pb-add-on-woocommerce/woosync-page.php:81
|
1081 |
msgid "Default Register"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: ../pb-add-on-woocommerce/woosync-page.php:104
|
1085 |
msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: ../pb-add-on-woocommerce/woosync-page.php:111
|
1089 |
msgid "Choose Edit Profile form to display on My Account page:"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: ../pb-add-on-woocommerce/woosync-page.php:139
|
1093 |
msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
|
1094 |
msgstr ""
|
1095 |
|
1499 |
msgid "required"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: facebook/facebook.php:32
|
1503 |
msgid "Link with Facebook"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: facebook/facebook.php:38
|
1507 |
msgid "Sign in with Facebook"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: google/google.php:39
|
1511 |
msgid "Link with Google+"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: google/google.php:45
|
1515 |
msgid "Sign in with Google+"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: linkedin/linkedin.php:40
|
1519 |
msgid "Link with LinkedIn"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: linkedin/linkedin.php:46
|
1523 |
msgid "Sign in with LinkedIn"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: twitter/twitter.php:52
|
1527 |
msgid "Connection with twitter Failed"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: twitter/twitter.php:57
|
1531 |
msgid "Error Receiving Request Token"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: twitter/twitter.php:108
|
1535 |
msgid "Something went wrong. Please try again later."
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: twitter/twitter.php:141
|
1539 |
msgid "Link with Twitter"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: twitter/twitter.php:147
|
1543 |
msgid "Sign in with Twitter"
|
1544 |
msgstr ""
|
1545 |
|
4337 |
msgid "This field is required"
|
4338 |
msgstr ""
|
4339 |
|
4340 |
+
#: ../profile-builder-2.0/features/functions.php:707, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:461, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:470, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:523, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:568
|
4341 |
msgid "Please enter a (valid) reCAPTCHA value"
|
4342 |
msgstr ""
|
4343 |
|
6241 |
msgid "To use reCAPTCHA you must get an API public key from:"
|
6242 |
msgstr ""
|
6243 |
|
6244 |
+
#: ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:523
|
6245 |
msgid "Click the BACK button on your browser, and try again."
|
6246 |
msgstr ""
|
6247 |
|