Version Description
- We now restrict comments as well
- Fixed a error message when both login fields were empty
- Limit where the reCAPTCHA script is loaded.
- Fixed a conflict between Profile Builder Private Website and WPML
- Make sure that if no value is set for the Email Confirmation setting in the database the option is set to 'No'
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 3.2.2 |
Comparing to | |
See all releases |
Code changes from version 3.2.1 to 3.2.2
- admin/general-settings.php +2 -2
- admin/private-website.php +7 -1
- features/content-restriction/content-restriction-filtering.php +47 -0
- front-end/default-fields/recaptcha/recaptcha.php +24 -1
- front-end/login.php +1 -1
- index.php +2 -2
- readme.txt +8 -1
- translation/profile-builder.catalog.php +138 -162
- translation/profile-builder.pot +532 -619
admin/general-settings.php
CHANGED
@@ -123,8 +123,8 @@ function wppb_general_settings_content() {
|
|
123 |
</th>
|
124 |
<td>
|
125 |
<select name="wppb_general_settings[emailConfirmation]" class="wppb-select" id="wppb_settings_email_confirmation" onchange="wppb_display_page_select(this.value)">
|
126 |
-
<option value="yes" <?php if ( $wppb_generalSettings['emailConfirmation']
|
127 |
-
<option value="no" <?php if ( $wppb_generalSettings['emailConfirmation']
|
128 |
</select>
|
129 |
<ul>
|
130 |
<li class="description"><?php _e( 'This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using "Custom Redirects" module.', 'profile-builder' ); ?></li>
|
123 |
</th>
|
124 |
<td>
|
125 |
<select name="wppb_general_settings[emailConfirmation]" class="wppb-select" id="wppb_settings_email_confirmation" onchange="wppb_display_page_select(this.value)">
|
126 |
+
<option value="yes" <?php if ( !empty( $wppb_generalSettings['emailConfirmation'] ) && $wppb_generalSettings['emailConfirmation'] === 'yes' ) echo 'selected'; ?>><?php _e( 'Yes', 'profile-builder' ); ?></option>
|
127 |
+
<option value="no" <?php if ( empty( $wppb_generalSettings['emailConfirmation'] ) || ( !empty( $wppb_generalSettings['emailConfirmation'] ) && $wppb_generalSettings['emailConfirmation'] === 'no' ) ) echo 'selected'; ?>><?php _e( 'No', 'profile-builder' ); ?></option>
|
128 |
</select>
|
129 |
<ul>
|
130 |
<li class="description"><?php _e( 'This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using "Custom Redirects" module.', 'profile-builder' ); ?></li>
|
admin/private-website.php
CHANGED
@@ -37,7 +37,13 @@ function wppb_private_website_content() {
|
|
37 |
wppb_private_website_settings_defaults();
|
38 |
|
39 |
$wppb_private_website_settings = get_option( 'wppb_private_website_settings', 'not_found' );
|
40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
?>
|
42 |
<div class="wrap wppb-wrap wppb-private-website">
|
43 |
<h2><?php _e( 'Private Website Settings', 'profile-builder' );?></h2>
|
37 |
wppb_private_website_settings_defaults();
|
38 |
|
39 |
$wppb_private_website_settings = get_option( 'wppb_private_website_settings', 'not_found' );
|
40 |
+
|
41 |
+
$args = array(
|
42 |
+
'post_type' => 'page',
|
43 |
+
'posts_per_page' => -1
|
44 |
+
);
|
45 |
+
|
46 |
+
$all_pages = get_posts( $args );
|
47 |
?>
|
48 |
<div class="wrap wppb-wrap wppb-private-website">
|
49 |
<h2><?php _e( 'Private Website Settings', 'profile-builder' );?></h2>
|
features/content-restriction/content-restriction-filtering.php
CHANGED
@@ -322,4 +322,51 @@ function wppb_content_restriction_force_page( $posts_page_id ){
|
|
322 |
$wp_query->is_singule = true;
|
323 |
$wp_query->is_archive = false;
|
324 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
325 |
}
|
322 |
$wp_query->is_singule = true;
|
323 |
$wp_query->is_archive = false;
|
324 |
}
|
325 |
+
}
|
326 |
+
|
327 |
+
// add callback to function that hides comments if post content is restricted
|
328 |
+
function wppb_comments_hide_callback_function( $args ) {
|
329 |
+
global $post;
|
330 |
+
|
331 |
+
if ( empty( $post->ID ) ) return $args;
|
332 |
+
|
333 |
+
if( wppb_content_restriction_is_post_restricted( $post->ID ) )
|
334 |
+
$args[ 'callback' ] = 'wppb_comments_restrict_view';
|
335 |
+
|
336 |
+
return $args;
|
337 |
+
}
|
338 |
+
|
339 |
+
// display restriction message if post content is restricted
|
340 |
+
function wppb_comments_restrict_view( $comment, $args, $depth ) {
|
341 |
+
static $message_shown = false;
|
342 |
+
|
343 |
+
if ( !$message_shown ) {
|
344 |
+
|
345 |
+
if ( is_user_logged_in() )
|
346 |
+
printf( '<p>%s</p>', apply_filters( 'wppb_comments_restriction_message_user_role', __( 'Comments are restricted for your user role.', 'profile-builder' ) ) );
|
347 |
+
else
|
348 |
+
printf( '<p>%s</p>', apply_filters( 'wppb_comments_restriction_message_logged_out', __( 'You must be logged in to view the comments.', 'profile-builder' ) ) );
|
349 |
+
|
350 |
+
$message_shown = true;
|
351 |
+
}
|
352 |
+
}
|
353 |
+
|
354 |
+
// restrict replying for restricted posts
|
355 |
+
function wppb_comments_restrict_replying( $open, $post_id ) {
|
356 |
+
// Show for administrators
|
357 |
+
if( current_user_can( 'manage_options' ) && is_admin() )
|
358 |
+
return $open;
|
359 |
+
|
360 |
+
if( wppb_content_restriction_is_post_restricted( $post_id ) )
|
361 |
+
return false;
|
362 |
+
|
363 |
+
return $open;
|
364 |
+
}
|
365 |
+
|
366 |
+
$wppb_cr_settings = get_option( 'wppb_content_restriction_settings' );
|
367 |
+
|
368 |
+
// add filter to hide comments and replies if post content is restricted
|
369 |
+
if ( isset( $wppb_cr_settings[ 'contentRestriction' ] ) && $wppb_cr_settings[ 'contentRestriction' ] == 'yes' && apply_filters( 'wppb_enable_comment_restriction', true ) ) {
|
370 |
+
add_filter( 'comments_open', 'wppb_comments_restrict_replying', 20, 2 );
|
371 |
+
add_filter( 'wp_list_comments_args', 'wppb_comments_hide_callback_function', 999 );
|
372 |
}
|
front-end/default-fields/recaptcha/recaptcha.php
CHANGED
@@ -75,7 +75,12 @@ function wppb_recaptcha_script_footer(){
|
|
75 |
|
76 |
//do not add script if there is no shortcode
|
77 |
global $wppb_shortcode_on_front;
|
78 |
-
if( current_filter() == 'wp_footer' && (
|
|
|
|
|
|
|
|
|
|
|
79 |
return;
|
80 |
|
81 |
//we don't have jquery on the backend
|
@@ -252,6 +257,9 @@ function wppb_recaptcha_handler ( $output, $form_location, $field, $user_id, $fi
|
|
252 |
if ( ($form_location == 'register') && ( isset($field['captcha-pb-forms']) ) && (strpos($field['captcha-pb-forms'],'pb_register') !== false) ) {
|
253 |
$error_mark = ( ( $field['required'] == 'Yes' ) ? '<span class="wppb-required" title="'.wppb_required_field_error($field["field-title"]).'">*</span>' : '' );
|
254 |
|
|
|
|
|
|
|
255 |
if ( array_key_exists( $field['id'], $field_check_errors ) )
|
256 |
$error_mark = '<img src="'.WPPB_PLUGIN_URL.'assets/images/pencil_delete.png" title="'.wppb_required_field_error($field["field-title"]).'"/>';
|
257 |
|
@@ -325,6 +333,9 @@ function wppb_display_recaptcha_recover_password( $output ){
|
|
325 |
// check where reCAPTCHA should display and add reCAPTCHA html
|
326 |
if ( isset($field['captcha-pb-forms']) && ( strpos( $field['captcha-pb-forms'],'pb_recover_password' ) !== false ) ) {
|
327 |
|
|
|
|
|
|
|
328 |
if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) {
|
329 |
$recaptcha_output = '<label for="recaptcha_response_field">' . $item_title . '</label>' . wppb_recaptcha_get_html($publickey, 'pb_recover_password');
|
330 |
if (!empty($item_description))
|
@@ -423,6 +434,9 @@ function wppb_display_recaptcha_login_form($form_part, $args) {
|
|
423 |
|
424 |
if ( isset($field['captcha-pb-forms']) && ( strpos( $field['captcha-pb-forms'],'pb_login' ) !== false ) ) { // check where reCAPTCHA should display and add reCAPTCHA html
|
425 |
|
|
|
|
|
|
|
426 |
if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) {
|
427 |
$recaptcha_output = '<label for="recaptcha_response_field">' . $item_title . '</label>' . wppb_recaptcha_get_html(trim($field['public-key']), 'pb_login');
|
428 |
if (!empty($item_description))
|
@@ -451,6 +465,9 @@ function wppb_display_recaptcha_wp_login_form(){
|
|
451 |
|
452 |
if ( isset($field['captcha-wp-forms']) && (strpos( $field['captcha-wp-forms'],'default_wp_login' ) !== false) ) { // check where reCAPTCHA should display and add reCAPTCHA html
|
453 |
|
|
|
|
|
|
|
454 |
if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) {
|
455 |
$recaptcha_output = '<label for="recaptcha_response_field" style="padding-left:15px; padding-bottom:7px;">' . $item_title . '</label>' . wppb_recaptcha_get_html(trim($field['public-key']));
|
456 |
if (!empty($item_description))
|
@@ -515,6 +532,9 @@ function wppb_display_recaptcha_default_wp_recover_password() {
|
|
515 |
|
516 |
if ( isset($field['captcha-wp-forms']) && (strpos( $field['captcha-wp-forms'], 'default_wp_recover_password') !== false) ) { // check where reCAPTCHA should display and add reCAPTCHA html
|
517 |
|
|
|
|
|
|
|
518 |
if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ){
|
519 |
$recaptcha_output = '<label for="recaptcha_response_field" style="padding-left:15px; padding-bottom:7px;">' . $item_title . '</label>' . wppb_recaptcha_get_html($publickey);
|
520 |
if (!empty($item_description))
|
@@ -564,6 +584,9 @@ function wppb_display_recaptcha_default_wp_register(){
|
|
564 |
wppb_recaptcha_set_default_values();
|
565 |
if (isset($field['captcha-wp-forms']) && (strpos($field['captcha-wp-forms'], 'default_wp_register') !== false)) { // check where reCAPTCHA should display and add reCAPTCHA html
|
566 |
|
|
|
|
|
|
|
567 |
if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) {
|
568 |
$recaptcha_output = '<label for="recaptcha_response_field" style="padding-left:15px; padding-bottom:7px;">' . $item_title . '</label>' . wppb_recaptcha_get_html($publickey);
|
569 |
if (!empty($item_description))
|
75 |
|
76 |
//do not add script if there is no shortcode
|
77 |
global $wppb_shortcode_on_front;
|
78 |
+
if( current_filter() == 'wp_footer' && ( !isset( $wppb_shortcode_on_front ) || $wppb_shortcode_on_front === false ) )
|
79 |
+
return;
|
80 |
+
|
81 |
+
//do not add script if the html for the field has not been added
|
82 |
+
global $wppb_recaptcha_present;
|
83 |
+
if( !isset( $wppb_recaptcha_present ) || $wppb_recaptcha_present === false )
|
84 |
return;
|
85 |
|
86 |
//we don't have jquery on the backend
|
257 |
if ( ($form_location == 'register') && ( isset($field['captcha-pb-forms']) ) && (strpos($field['captcha-pb-forms'],'pb_register') !== false) ) {
|
258 |
$error_mark = ( ( $field['required'] == 'Yes' ) ? '<span class="wppb-required" title="'.wppb_required_field_error($field["field-title"]).'">*</span>' : '' );
|
259 |
|
260 |
+
global $wppb_recaptcha_present;
|
261 |
+
$wppb_recaptcha_present = true;
|
262 |
+
|
263 |
if ( array_key_exists( $field['id'], $field_check_errors ) )
|
264 |
$error_mark = '<img src="'.WPPB_PLUGIN_URL.'assets/images/pencil_delete.png" title="'.wppb_required_field_error($field["field-title"]).'"/>';
|
265 |
|
333 |
// check where reCAPTCHA should display and add reCAPTCHA html
|
334 |
if ( isset($field['captcha-pb-forms']) && ( strpos( $field['captcha-pb-forms'],'pb_recover_password' ) !== false ) ) {
|
335 |
|
336 |
+
global $wppb_recaptcha_present;
|
337 |
+
$wppb_recaptcha_present = true;
|
338 |
+
|
339 |
if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) {
|
340 |
$recaptcha_output = '<label for="recaptcha_response_field">' . $item_title . '</label>' . wppb_recaptcha_get_html($publickey, 'pb_recover_password');
|
341 |
if (!empty($item_description))
|
434 |
|
435 |
if ( isset($field['captcha-pb-forms']) && ( strpos( $field['captcha-pb-forms'],'pb_login' ) !== false ) ) { // check where reCAPTCHA should display and add reCAPTCHA html
|
436 |
|
437 |
+
global $wppb_recaptcha_present;
|
438 |
+
$wppb_recaptcha_present = true;
|
439 |
+
|
440 |
if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) {
|
441 |
$recaptcha_output = '<label for="recaptcha_response_field">' . $item_title . '</label>' . wppb_recaptcha_get_html(trim($field['public-key']), 'pb_login');
|
442 |
if (!empty($item_description))
|
465 |
|
466 |
if ( isset($field['captcha-wp-forms']) && (strpos( $field['captcha-wp-forms'],'default_wp_login' ) !== false) ) { // check where reCAPTCHA should display and add reCAPTCHA html
|
467 |
|
468 |
+
global $wppb_recaptcha_present;
|
469 |
+
$wppb_recaptcha_present = true;
|
470 |
+
|
471 |
if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) {
|
472 |
$recaptcha_output = '<label for="recaptcha_response_field" style="padding-left:15px; padding-bottom:7px;">' . $item_title . '</label>' . wppb_recaptcha_get_html(trim($field['public-key']));
|
473 |
if (!empty($item_description))
|
532 |
|
533 |
if ( isset($field['captcha-wp-forms']) && (strpos( $field['captcha-wp-forms'], 'default_wp_recover_password') !== false) ) { // check where reCAPTCHA should display and add reCAPTCHA html
|
534 |
|
535 |
+
global $wppb_recaptcha_present;
|
536 |
+
$wppb_recaptcha_present = true;
|
537 |
+
|
538 |
if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ){
|
539 |
$recaptcha_output = '<label for="recaptcha_response_field" style="padding-left:15px; padding-bottom:7px;">' . $item_title . '</label>' . wppb_recaptcha_get_html($publickey);
|
540 |
if (!empty($item_description))
|
584 |
wppb_recaptcha_set_default_values();
|
585 |
if (isset($field['captcha-wp-forms']) && (strpos($field['captcha-wp-forms'], 'default_wp_register') !== false)) { // check where reCAPTCHA should display and add reCAPTCHA html
|
586 |
|
587 |
+
global $wppb_recaptcha_present;
|
588 |
+
$wppb_recaptcha_present = true;
|
589 |
+
|
590 |
if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) {
|
591 |
$recaptcha_output = '<label for="recaptcha_response_field" style="padding-left:15px; padding-bottom:7px;">' . $item_title . '</label>' . wppb_recaptcha_get_html($publickey);
|
592 |
if (!empty($item_description))
|
front-end/login.php
CHANGED
@@ -326,7 +326,7 @@ function wppb_login_redirect( $redirect_to, $requested_redirect_to, $user ){
|
|
326 |
|
327 |
}
|
328 |
// if the error string is empty it means that none of the fields were completed
|
329 |
-
if (empty($error_string)) {
|
330 |
$error_string = '<strong>' . __('ERROR', 'profile-builder') . '</strong>: ' . __('Both fields are empty.', 'profile-builder') . ' ';
|
331 |
$error_string = apply_filters('wppb_login_empty_fields_error_message', $error_string);
|
332 |
}
|
326 |
|
327 |
}
|
328 |
// if the error string is empty it means that none of the fields were completed
|
329 |
+
if (empty($error_string) || ( in_array( 'empty_username', $user->get_error_codes() ) && in_array( 'empty_password', $user->get_error_codes() ) ) ) {
|
330 |
$error_string = '<strong>' . __('ERROR', 'profile-builder') . '</strong>: ' . __('Both fields are empty.', 'profile-builder') . ' ';
|
331 |
$error_string = apply_filters('wppb_login_empty_fields_error_message', $error_string);
|
332 |
}
|
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.2.
|
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.2.
|
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.2.2
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
63 |
*
|
64 |
*
|
65 |
*/
|
66 |
+
define('PROFILE_BUILDER_VERSION', '3.2.2' );
|
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.4.2
|
7 |
-
Stable tag: 3.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -169,6 +169,13 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
169 |
12. Role Editor
|
170 |
|
171 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
= 3.2.1 =
|
173 |
* Fixed a warning regarding Admin Approval on settings page
|
174 |
* Login widget uses correct redirect parameter now
|
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.4.2
|
7 |
+
Stable tag: 3.2.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
169 |
12. Role Editor
|
170 |
|
171 |
== Changelog ==
|
172 |
+
= 3.2.2 =
|
173 |
+
* We now restrict comments as well
|
174 |
+
* Fixed a error message when both login fields were empty
|
175 |
+
* Limit where the reCAPTCHA script is loaded.
|
176 |
+
* Fixed a conflict between Profile Builder Private Website and WPML
|
177 |
+
* Make sure that if no value is set for the Email Confirmation setting in the database the option is set to 'No'
|
178 |
+
|
179 |
= 3.2.1 =
|
180 |
* Fixed a warning regarding Admin Approval on settings page
|
181 |
* Login widget uses correct redirect parameter now
|
translation/profile-builder.catalog.php
CHANGED
@@ -7,10 +7,10 @@
|
|
7 |
<?php __("Choose Edit Profile form to display under bbPress Profile Edit tab:", "profile-builder"); ?>
|
8 |
<?php __("Default Edit Profile", "profile-builder"); ?>
|
9 |
<?php __("Select Profile Builder Edit Profile form to replace the bbPress Profile Edit tab.", "profile-builder"); ?>
|
|
|
|
|
10 |
<?php __("Topics Started", "profile-builder"); ?>
|
11 |
<?php __("Replies Created", "profile-builder"); ?>
|
12 |
-
<?php __("Forum Role", "profile-builder"); ?>
|
13 |
-
<?php __("bbPress needs to be installed and activated for Profile Builder - bbPress Integration Add-on to work as expected!", "profile-builder"); ?>
|
14 |
<?php __("BuddyPress", "profile-builder"); ?>
|
15 |
<?php __("BuddyPress Integration", "profile-builder"); ?>
|
16 |
<?php __("Import BuddyPress Fields to Profile Builder", "profile-builder"); ?>
|
@@ -40,14 +40,14 @@
|
|
40 |
<?php __("My Friends", "profile-builder"); ?>
|
41 |
<?php __("<h2>Import BuddyPress Fields to Profile Builder</h2>", "profile-builder"); ?>
|
42 |
<?php __("BuddyPress is not installed and active. Import aborted!", "profile-builder"); ?>
|
43 |
-
<?php __("Importing BuddyPress Field Settings to Profile Builder...<br><br>", "profile-builder"); ?>
|
44 |
-
<?php __("If the page does not redirect automatically", "profile-builder"); ?>
|
45 |
-
<?php __("click here", "profile-builder"); ?>
|
46 |
<?php __("Importing User entries BuddyPress Fields to Profile Builder...<br><br>", "profile-builder"); ?>
|
47 |
<?php __("Done.", "profile-builder"); ?>
|
48 |
<?php __("Back to BuddyPress Settings page", "profile-builder"); ?>
|
49 |
-
<?php __("
|
|
|
|
|
50 |
<?php __("BuddyPress needs to be installed and activated for Profile Builder - BuddyPress Integration Add-on to work as expected!", "profile-builder"); ?>
|
|
|
51 |
<?php __("Name", "profile-builder"); ?>
|
52 |
<?php __("Username:", "profile-builder"); ?>
|
53 |
<?php __("First Name:", "profile-builder"); ?>
|
@@ -151,17 +151,17 @@
|
|
151 |
<?php __("Publish the form before adding Break Points!", "profile-builder"); ?>
|
152 |
<?php __("Request in process, please wait a few seconds before a new one!", "profile-builder"); ?>
|
153 |
<?php __("Multi-Step Forms", "profile-builder"); ?>
|
|
|
|
|
|
|
|
|
|
|
154 |
<?php __("Multi-Step Forms options updated.", "profile-builder"); ?>
|
155 |
<?php __("Enable on:", "profile-builder"); ?>
|
156 |
<?php __("PB Default Register Form", "profile-builder"); ?>
|
157 |
<?php __("PB Default Edit Profile Form", "profile-builder"); ?>
|
158 |
<?php __("To enable it on Multiple Registration and Edit-Profile Forms you must add Break Points in each form page.", "profile-builder"); ?>
|
159 |
-
<?php __("Pagination and Tabs:", "profile-builder"); ?>
|
160 |
-
<?php __("Enable Pagination", "profile-builder"); ?>
|
161 |
-
<?php __("Enable Tabs", "profile-builder"); ?>
|
162 |
-
<?php __("Edit Tabs Title", "profile-builder"); ?>
|
163 |
<?php __("Update Multi-Step", "profile-builder"); ?>
|
164 |
-
<?php __("To enable MSF you must add Break Points.", "profile-builder"); ?>
|
165 |
<?php __("Next", "profile-builder"); ?>
|
166 |
<?php __("Previous", "profile-builder"); ?>
|
167 |
<?php __("Placeholder Labels", "profile-builder"); ?>
|
@@ -241,6 +241,7 @@
|
|
241 |
<?php __("Email Address", "profile-builder"); ?>
|
242 |
<?php __("Phone", "profile-builder"); ?>
|
243 |
<?php __("Ship to a different address?", "profile-builder"); ?>
|
|
|
244 |
<?php __("Billing Address", "profile-builder"); ?>
|
245 |
<?php __("Displays customer billing fields in front-end. ", "profile-builder"); ?>
|
246 |
<?php __("Shipping Address", "profile-builder"); ?>
|
@@ -265,7 +266,6 @@
|
|
265 |
<?php __("No options available. Please select one country.", "profile-builder"); ?>
|
266 |
<?php __("Billing ", "profile-builder"); ?>
|
267 |
<?php __("Shipping ", "profile-builder"); ?>
|
268 |
-
<?php __("WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!", "profile-builder"); ?>
|
269 |
<?php __("Display on WooCommerce Checkout", "profile-builder"); ?>
|
270 |
<?php __("Whether the field should be added to the WooCommerce checkout form or not", "profile-builder"); ?>
|
271 |
<?php __("WooCommerce Sync", "profile-builder"); ?>
|
@@ -275,57 +275,6 @@
|
|
275 |
<?php __("Choose Edit Profile form to display on My Account page:", "profile-builder"); ?>
|
276 |
<?php __("Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce.", "profile-builder"); ?>
|
277 |
<?php __("%s is also activated. You need to deactivate it before activating this version of the plugin.", "profile-builder"); ?>
|
278 |
-
<?php __("Campaign Monitor", "profile-builder"); ?>
|
279 |
-
<?php __("Campaign Monitor Integration", "profile-builder"); ?>
|
280 |
-
<?php __("Save", "profile-builder"); ?>
|
281 |
-
<?php __("Campaign Monitor API key:", "profile-builder"); ?>
|
282 |
-
<?php __("The API key was successfully validated!", "profile-builder"); ?>
|
283 |
-
<?php __("Either the API key is not valid or we could not connect to Campaign Monitor to validate it!", "profile-builder"); ?>
|
284 |
-
<?php __("Enter your Campaign Monitor account API key.", "profile-builder"); ?>
|
285 |
-
<?php __("Select client:", "profile-builder"); ?>
|
286 |
-
<?php __("Loading clients...", "profile-builder"); ?>
|
287 |
-
<?php __("Select a client that you would like to edit.", "profile-builder"); ?>
|
288 |
-
<?php __("No clients found", "profile-builder"); ?>
|
289 |
-
<?php __("Select a client...", "profile-builder"); ?>
|
290 |
-
<?php __("Client List", "profile-builder"); ?>
|
291 |
-
<?php __("Fields Count", "profile-builder"); ?>
|
292 |
-
<?php __("Retrieves changes made in your Campaign Monitor account and matches it with the saved data from the add-on. This does not save the new data, so you will have to manually save.", "profile-builder"); ?>
|
293 |
-
<?php __("Synchronize client data", "profile-builder"); ?>
|
294 |
-
<?php __("Change client", "profile-builder"); ?>
|
295 |
-
<?php __("No lists were found.", "profile-builder"); ?>
|
296 |
-
<?php __("Click to edit", "profile-builder"); ?>
|
297 |
-
<?php __("Cancel", "profile-builder"); ?>
|
298 |
-
<?php __("Field Associations:", "profile-builder"); ?>
|
299 |
-
<?php __("Associate each Campaign Monitor field with a Profile Builder field", "profile-builder"); ?>
|
300 |
-
<?php __("Extra Options:", "profile-builder"); ?>
|
301 |
-
<?php __("Resubscribe", "profile-builder"); ?>
|
302 |
-
<?php __("If the subscriber is in an inactive state or has previously been unsubscribed and you check the Resubscribe option, they will be re-added to the list. Therefore, this method should be used with caution and only where suitable.", "profile-builder"); ?>
|
303 |
-
<?php __("Campaign Monitor API key is empty", "profile-builder"); ?>
|
304 |
-
<?php __("Campaign Monitor API key is invalid", "profile-builder"); ?>
|
305 |
-
<?php __("Campaign Monitor List", "profile-builder"); ?>
|
306 |
-
<?php __("Please enter a Campaign Monitor API key <a href=\"%s\">here</a>.", "profile-builder"); ?>
|
307 |
-
<?php __("Something went wrong. Either the API key is invalid or we could not connect to Campaign Monitor to validate the key.", "profile-builder"); ?>
|
308 |
-
<?php __("Select a list...", "profile-builder"); ?>
|
309 |
-
<?php __("Select in which Campaign Monitor list you wish to add a new subscriber", "profile-builder"); ?>
|
310 |
-
<?php __("Hide on Edit Profile", "profile-builder"); ?>
|
311 |
-
<?php __("If checked this field will not be displayed on edit profile forms", "profile-builder"); ?>
|
312 |
-
<?php __("We couldn't find any lists in your Campaign Monitor settings.", "profile-builder"); ?>
|
313 |
-
<?php __("Please select at least one Campaign Monitor list \n", "profile-builder"); ?>
|
314 |
-
<?php __("Profile Builder Campaign Monitor Widget", "profile-builder"); ?>
|
315 |
-
<?php __("Adds a basic subscribe form so that your users can subscribe to your Campaign Monitor lists", "profile-builder"); ?>
|
316 |
-
<?php __("Something went wrong. Either the Campaign Monitor API key is missing or it is invalid.", "profile-builder"); ?>
|
317 |
-
<?php __("%s", "profile-builder"); ?>
|
318 |
-
<?php __("Submit", "profile-builder"); ?>
|
319 |
-
<?php __("Subscribe to Newsletter", "profile-builder"); ?>
|
320 |
-
<?php __("Title", "profile-builder"); ?>
|
321 |
-
<?php __("Select the list your new subscriber will be added to", "profile-builder"); ?>
|
322 |
-
<?php __("Select list...", "profile-builder"); ?>
|
323 |
-
<?php __("No lists found", "profile-builder"); ?>
|
324 |
-
<?php __("Select which fields to show", "profile-builder"); ?>
|
325 |
-
<?php __("E-mail address", "profile-builder"); ?>
|
326 |
-
<?php __("fullname", "profile-builder"); ?>
|
327 |
-
<?php __("Extra options", "profile-builder"); ?>
|
328 |
-
<?php __("The Campaign Monitor API key is either missing or is invalid.", "profile-builder"); ?>
|
329 |
<?php __("Communication Preferences", "profile-builder"); ?>
|
330 |
<?php __("E-mail", "profile-builder"); ?>
|
331 |
<?php __("Telephone", "profile-builder"); ?>
|
@@ -338,71 +287,86 @@
|
|
338 |
<?php __("Date", "profile-builder"); ?>
|
339 |
<?php __("Preference", "profile-builder"); ?>
|
340 |
<?php __("Uploaded file is not valid json!", "profile-builder"); ?>
|
341 |
-
<?php __("Import successfully!", "profile-builder"); ?>
|
342 |
<?php __("Please select a .json file to import!", "profile-builder"); ?>
|
|
|
343 |
<?php __("Page will refresh in 3 seconds...", "profile-builder"); ?>
|
344 |
<?php __("MailChimp", "profile-builder"); ?>
|
345 |
<?php __("MailChimp Integration", "profile-builder"); ?>
|
346 |
-
<?php __("Before you can make any changes you will need to add a MailChimp API key.", "profile-builder"); ?>
|
347 |
<?php __("MailChimp List", "profile-builder"); ?>
|
|
|
348 |
<?php __("We couldn't find any lists", "profile-builder"); ?>
|
|
|
|
|
349 |
<?php __("MailChimp API Key:", "profile-builder"); ?>
|
350 |
<?php __("Either the API key is not valid or we could not connect to MailChimp to validate it!", "profile-builder"); ?>
|
|
|
351 |
<?php __("Enter a MailChimp API key. You can create keys in your MailChimp account.", "profile-builder"); ?>
|
352 |
<?php __("Edit this item", "profile-builder"); ?>
|
|
|
|
|
353 |
<?php __("This field is required in MailChimp", "profile-builder"); ?>
|
354 |
<?php __("Associate each MailChimp field with a Profile Builder field", "profile-builder"); ?>
|
355 |
<?php __("Group Associations:", "profile-builder"); ?>
|
356 |
<?php __("Associate each MailChimp group with a Profile Builder field", "profile-builder"); ?>
|
|
|
357 |
<?php __("Double Opt-In", "profile-builder"); ?>
|
358 |
<?php __("If you select double opt-in, the user will receive an e-mail to confirm the subscription", "profile-builder"); ?>
|
359 |
<?php __("Enable GDPR", "profile-builder"); ?>
|
360 |
<?php __("If checked will enable GDPR on this list. <a href=\"%s\" target=\"_blank\">You must also enable GDPR on the list from mailchimp</a>", "profile-builder"); ?>
|
361 |
-
<?php __("MailChimp API key is empty", "profile-builder"); ?>
|
362 |
-
<?php __("MailChimp API key is invalid", "profile-builder"); ?>
|
363 |
<?php __("Something went wrong. Either the API key is invalid or we could not connect to MailChimp to validate the key.", "profile-builder"); ?>
|
364 |
-
<?php __("
|
|
|
|
|
|
|
365 |
<?php __("Select in which MailChimp list you wish to add a new subscriber", "profile-builder"); ?>
|
366 |
<?php __("Checked by Default", "profile-builder"); ?>
|
367 |
<?php __("If checked the Subscribe checkbox in the front-end will be checked by default on register forms", "profile-builder"); ?>
|
368 |
-
<?php __("
|
|
|
|
|
369 |
<?php __("Please select at least one MailChimp list \n", "profile-builder"); ?>
|
370 |
<?php __("Profile Builder MailChimp Widget", "profile-builder"); ?>
|
371 |
<?php __("Adds a basic subscribe form so that your users can subscribe to your MailChimp lists", "profile-builder"); ?>
|
|
|
|
|
372 |
<?php __("Something went wrong. Either the MailChimp API key is missing or it is invalid.", "profile-builder"); ?>
|
|
|
|
|
|
|
373 |
<?php __("Select...", "profile-builder"); ?>
|
|
|
374 |
<?php __("Extra Options", "profile-builder"); ?>
|
375 |
<?php __("Please select a list first", "profile-builder"); ?>
|
376 |
<?php __("No list was found.", "profile-builder"); ?>
|
377 |
<?php __("MailPoet List", "profile-builder"); ?>
|
378 |
-
<?php __("Select in which MailPoet list you wish to add a new subscriber", "profile-builder"); ?>
|
379 |
-
<?php __("We couldn't find any lists in your MailPoet settings.", "profile-builder"); ?>
|
380 |
<?php __("Please install and activate MailPoet plugin.", "profile-builder"); ?>
|
|
|
|
|
381 |
<?php __("Please select at least one MailPoet list \n", "profile-builder"); ?>
|
382 |
<?php __("Maximum Selections", "profile-builder"); ?>
|
383 |
<?php __("Select2 multi-value select boxes can set restrictions regarding the maximum number of options selected.", "profile-builder"); ?>
|
384 |
<?php __("User Inputted Options", "profile-builder"); ?>
|
385 |
<?php __("Check this to allow users to create their own options beside the pre-existing ones.", "profile-builder"); ?>
|
386 |
-
<?php __("Link with Facebook", "profile-builder"); ?>
|
387 |
<?php __("Sign in with Facebook", "profile-builder"); ?>
|
388 |
-
<?php __("Link with
|
389 |
<?php __("Sign in with Google", "profile-builder"); ?>
|
390 |
-
<?php __("Link with
|
391 |
<?php __("Sign in with LinkedIn", "profile-builder"); ?>
|
392 |
-
<?php __("
|
393 |
<?php __("Error Receiving Request Token", "profile-builder"); ?>
|
394 |
-
<?php __("
|
395 |
<?php __("Sign in with Twitter", "profile-builder"); ?>
|
|
|
396 |
<?php __("Add-Ons", "profile-builder"); ?>
|
397 |
<?php __("Recommended Plugins", "profile-builder"); ?>
|
398 |
<?php __("Free", "profile-builder"); ?>
|
399 |
<?php __("Translate your Profile Builder forms with a WordPress translation plugin that anyone can use. It offers a simpler way to translate WordPress sites, with full support for WooCommerce and site builders.", "profile-builder"); ?>
|
400 |
-
<?php __("Activate", "profile-builder"); ?>
|
401 |
-
<?php __("Deactivate", "profile-builder"); ?>
|
402 |
-
<?php __("Plugin is <strong>inactive</strong>", "profile-builder"); ?>
|
403 |
-
<?php __("Plugin is <strong>active</strong>", "profile-builder"); ?>
|
404 |
<?php __("Install Now", "profile-builder"); ?>
|
405 |
<?php __("Compatible with your version of Profile Builder.", "profile-builder"); ?>
|
|
|
|
|
|
|
|
|
406 |
<?php __("Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>.", "profile-builder"); ?>
|
407 |
<?php __("Accept user payments, create subscription plans and restrict content on your membership site.", "profile-builder"); ?>
|
408 |
<?php __("Downloading and installing...", "profile-builder"); ?>
|
@@ -413,18 +377,18 @@
|
|
413 |
<?php __("Add-On is <strong>active</strong>", "profile-builder"); ?>
|
414 |
<?php __("Add-On is <strong>inactive</strong>", "profile-builder"); ?>
|
415 |
<?php __("Add-On has been deactivated.", "profile-builder"); ?>
|
416 |
-
<?php __("Something went wrong, we could not connect to the server. Please try again later.", "profile-builder"); ?>
|
417 |
-
<?php __("Available with All Versions", "profile-builder"); ?>
|
418 |
-
<?php __("Available with the Hobbyist and Pro Versions", "profile-builder"); ?>
|
419 |
<?php __("Available with the Pro Version", "profile-builder"); ?>
|
420 |
-
<?php __("
|
421 |
-
<?php __("
|
422 |
-
<?php __("Upgrade Profile Builder", "profile-builder"); ?>
|
423 |
-
<?php __("Not compatible with Profile Builder", "profile-builder"); ?>
|
424 |
<?php __("Update", "profile-builder"); ?>
|
425 |
<?php __("Not compatible with your version of Profile Builder.", "profile-builder"); ?>
|
426 |
<?php __("Minimum required Profile Builder version:", "profile-builder"); ?>
|
|
|
|
|
|
|
|
|
427 |
<?php __("Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>.", "profile-builder"); ?>
|
|
|
428 |
<?php __("Show/Hide the Admin Bar on the Front-End", "profile-builder"); ?>
|
429 |
<?php __("Admin Bar Settings", "profile-builder"); ?>
|
430 |
<?php __("Choose which user roles view the admin bar in the front-end of the website.", "profile-builder"); ?>
|
@@ -441,8 +405,8 @@
|
|
441 |
<?php __("Medium", "profile-builder"); ?>
|
442 |
<?php __("Strong", "profile-builder"); ?>
|
443 |
<?php __("<strong>ERROR</strong>: The password must have a minimum strength of %s", "profile-builder"); ?>
|
444 |
-
<?php __("Add Field", "profile-builder"); ?>
|
445 |
<?php __("Save Settings", "profile-builder"); ?>
|
|
|
446 |
<?php __("If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. ", "profile-builder"); ?>
|
447 |
<?php __("View Profile Builder documentation", "profile-builder"); ?>
|
448 |
<?php __("Docs", "profile-builder"); ?>
|
@@ -452,10 +416,10 @@
|
|
452 |
<?php __("Basic Information", "profile-builder"); ?>
|
453 |
<?php __("<strong>Profile Builder </strong> %s", "profile-builder"); ?>
|
454 |
<?php __("The best way to add front-end registration, edit profile and login forms.", "profile-builder"); ?>
|
455 |
-
<?php __("Speed up the setup process by automatically creating the form pages:", "profile-builder"); ?>
|
456 |
-
<?php __("Create Form Pages", "profile-builder"); ?>
|
457 |
<?php __("You can see all the pages with Profile Builder form shortcodes here:", "profile-builder"); ?>
|
458 |
<?php __("View Form Pages", "profile-builder"); ?>
|
|
|
|
|
459 |
<?php __("Login Form", "profile-builder"); ?>
|
460 |
<?php __("Friction-less login using %s shortcode or a widget.", "profile-builder"); ?>
|
461 |
<?php __("Registration Form", "profile-builder"); ?>
|
@@ -481,8 +445,8 @@
|
|
481 |
<?php __("Add, remove, clone and edit roles and also capabilities for these roles.", "profile-builder"); ?>
|
482 |
<?php __("Customize Your Forms The Way You Want (*)", "profile-builder"); ?>
|
483 |
<?php __("With Extra Profile Fields you can create the exact registration form your project needs.", "profile-builder"); ?>
|
484 |
-
<?php __("Extra Profile Fields are available in Hobbyist or PRO versions", "profile-builder"); ?>
|
485 |
<?php __("Get started with extra fields", "profile-builder"); ?>
|
|
|
486 |
<?php __("Avatar Upload", "profile-builder"); ?>
|
487 |
<?php __("Generic Uploads", "profile-builder"); ?>
|
488 |
<?php __("Agree To Terms Checkbox", "profile-builder"); ?>
|
@@ -507,8 +471,8 @@
|
|
507 |
<?php __("Enable your modules", "profile-builder"); ?>
|
508 |
<?php __("Find out more about PRO Modules", "profile-builder"); ?>
|
509 |
<?php __("User Listing", "profile-builder"); ?>
|
510 |
-
<?php __("Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings.", "profile-builder"); ?>
|
511 |
<?php __("To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s.", "profile-builder"); ?>
|
|
|
512 |
<?php __("Email Customizer", "profile-builder"); ?>
|
513 |
<?php __("Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.", "profile-builder"); ?>
|
514 |
<?php __("Custom Redirects", "profile-builder"); ?>
|
@@ -573,8 +537,8 @@
|
|
573 |
<?php __("Manage Form Fields", "profile-builder"); ?>
|
574 |
<?php __("Choose one of the supported field types", "profile-builder"); ?>
|
575 |
<?php __(". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>.", "profile-builder"); ?>
|
576 |
-
<?php __("Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count", "profile-builder"); ?>
|
577 |
<?php __("Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this will only affect subsequent entries", "profile-builder"); ?>
|
|
|
578 |
<?php __("Field Title", "profile-builder"); ?>
|
579 |
<?php __("Title of the field", "profile-builder"); ?>
|
580 |
<?php __("Field", "profile-builder"); ?>
|
@@ -1059,28 +1023,28 @@
|
|
1059 |
<?php __("Viet Nam Dong", "profile-builder"); ?>
|
1060 |
<?php __("Yemen Rial", "profile-builder"); ?>
|
1061 |
<?php __("Zimbabwe Dollar", "profile-builder"); ?>
|
|
|
1062 |
<?php __("You must select a field\n", "profile-builder"); ?>
|
1063 |
<?php __("Please choose a different field type as this one already exists in your form (must be unique)\n", "profile-builder"); ?>
|
1064 |
-
<?php __("The entered avatar size is not between 20 and 200\n", "profile-builder"); ?>
|
1065 |
<?php __("The entered avatar size is not numerical\n", "profile-builder"); ?>
|
1066 |
-
<?php __("The entered
|
1067 |
<?php __("You must enter a value for the row number\n", "profile-builder"); ?>
|
|
|
1068 |
<?php __("You must enter the site key\n", "profile-builder"); ?>
|
1069 |
<?php __("You must enter the secret key\n", "profile-builder"); ?>
|
1070 |
-
<?php __("You must enter a value for the date-format\n", "profile-builder"); ?>
|
1071 |
<?php __("The entered value for the Datepicker is not a valid date-format\n", "profile-builder"); ?>
|
|
|
1072 |
<?php __("The meta-name cannot be empty\n", "profile-builder"); ?>
|
1073 |
-
<?php __("That meta-name can't be used, please choose another\n", "profile-builder"); ?>
|
1074 |
<?php __("That meta-name is already in use\n", "profile-builder"); ?>
|
|
|
1075 |
<?php __("The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n", "profile-builder"); ?>
|
1076 |
-
<?php __("The following option(s) did not coincide with the ones in the options list: %s\n", "profile-builder"); ?>
|
1077 |
<?php __("The following option did not coincide with the ones in the options list: %s\n", "profile-builder"); ?>
|
|
|
1078 |
<?php __("Please select at least one user role\n", "profile-builder"); ?>
|
1079 |
-
<?php __("That field is already added in this form\n", "profile-builder"); ?>
|
1080 |
<?php __("<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>", "profile-builder"); ?>
|
1081 |
<?php __("Use these shortcodes on the pages you want the forms to be displayed:", "profile-builder"); ?>
|
1082 |
-
<?php __("If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules.", "profile-builder"); ?>
|
1083 |
<?php __("With Profile Builder Pro you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module.", "profile-builder"); ?>
|
|
|
1084 |
<?php __("Search Location", "profile-builder"); ?>
|
1085 |
<?php __("Paid Accounts", "profile-builder"); ?>
|
1086 |
<?php __("Paid Member Subscriptions - a free WordPress plugin", "profile-builder"); ?>
|
@@ -1111,25 +1075,25 @@
|
|
1111 |
<?php __("Hide all menu items if you are not logged in.", "profile-builder"); ?>
|
1112 |
<?php __("We recommend \"<a href=\"%s\" target=\"_blank\">Custom Profile Menus</a>\" addon if you need different menu items for logged in / logged out users.", "profile-builder"); ?>
|
1113 |
<?php __("Save Changes", "profile-builder"); ?>
|
|
|
1114 |
<?php __("Register Your Version", "profile-builder"); ?>
|
1115 |
<?php __("Register Version", "profile-builder"); ?>
|
1116 |
-
<?php __("Profile Builder Register", "profile-builder"); ?>
|
1117 |
<?php __("Register your version of %s", "profile-builder"); ?>
|
1118 |
<?php __("Now that you acquired a copy of %s, you should take the time and register it with the serial number you received", "profile-builder"); ?>
|
1119 |
<?php __("If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.", "profile-builder"); ?>
|
1120 |
<?php __(" Serial Number:", "profile-builder"); ?>
|
1121 |
-
<?php __("The serial number
|
1122 |
-
<?php __("The serial number entered couldn't be validated!", "profile-builder"); ?>
|
1123 |
-
<?php __("The serial number is about to expire soon!", "profile-builder"); ?>
|
1124 |
-
<?php __(" Your serial number is about to expire, please %1$s Renew Your License%2$s.", "profile-builder"); ?>
|
1125 |
<?php __("The serial number couldn't be validated because it expired!", "profile-builder"); ?>
|
1126 |
<?php __(" Your serial number is expired, please %1$s Renew Your License%2$s.", "profile-builder"); ?>
|
1127 |
-
<?php __("The serial number
|
|
|
|
|
|
|
1128 |
<?php __("(e.g. CLPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)", "profile-builder"); ?>
|
1129 |
-
<?php __("<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>", "profile-builder"); ?>
|
1130 |
-
<?php __("<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s</p>", "profile-builder"); ?>
|
1131 |
-
<?php __("<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %5$sDismiss%6$s</p>", "profile-builder"); ?>
|
1132 |
<?php __("<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>", "profile-builder"); ?>
|
|
|
|
|
|
|
1133 |
<?php __("GDPR Checkbox", "profile-builder"); ?>
|
1134 |
<?php __("I allow the website to collect and store the data I submit through this form.", "profile-builder"); ?>
|
1135 |
<?php __("Strength indicator", "profile-builder"); ?>
|
@@ -1146,44 +1110,44 @@
|
|
1146 |
<?php __("No feed available,please visit our <a href=\"%s\">homepage</a>!", "profile-builder"); ?>
|
1147 |
<?php __("You are not currently logged in.", "profile-builder"); ?>
|
1148 |
<?php __("The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form.", "profile-builder"); ?>
|
1149 |
-
<?php __("
|
1150 |
-
<?php __("Users can register themselves or you can manually create users here.", "profile-builder"); ?>
|
1151 |
-
<?php __("This message is only visible by administrators", "profile-builder"); ?>
|
1152 |
-
<?php __("Users cannot currently register themselves, but you can manually create users here.", "profile-builder"); ?>
|
1153 |
<?php __("You are currently logged in as %1s. You don't need another account. %2s", "profile-builder"); ?>
|
1154 |
<?php __("Log out of this account.", "profile-builder"); ?>
|
1155 |
-
<?php __("
|
|
|
|
|
|
|
1156 |
<?php __("You are not allowed to do this.", "profile-builder"); ?>
|
|
|
|
|
1157 |
<?php __("The account %1s has been successfully created!", "profile-builder"); ?>
|
1158 |
<?php __("Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.", "profile-builder"); ?>
|
1159 |
<?php __("Before you can access your account %1s, an administrator has to approve it. You will be notified via email.", "profile-builder"); ?>
|
1160 |
-
<?php __("Your profile has been successfully updated!", "profile-builder"); ?>
|
1161 |
-
<?php __("There was an error in the submitted form", "profile-builder"); ?>
|
1162 |
<?php __("Add User", "profile-builder"); ?>
|
1163 |
<?php __("Send these credentials via email.", "profile-builder"); ?>
|
|
|
1164 |
<?php __("User to edit:", "profile-builder"); ?>
|
1165 |
<?php __("Select User", "profile-builder"); ?>
|
1166 |
-
<?php __("There are no other users to edit", "profile-builder"); ?>
|
1167 |
<?php __("Something went wrong. Please try again!", "profile-builder"); ?>
|
1168 |
<?php __("ERROR", "profile-builder"); ?>
|
1169 |
<?php __("The password you entered is incorrect.", "profile-builder"); ?>
|
1170 |
-
<?php __("Invalid email.", "profile-builder"); ?>
|
1171 |
-
<?php __("Invalid username or email.", "profile-builder"); ?>
|
1172 |
<?php __("Invalid username.", "profile-builder"); ?>
|
|
|
|
|
1173 |
<?php __("Password Lost and Found.", "profile-builder"); ?>
|
1174 |
<?php __("Lost your password ?", "profile-builder"); ?>
|
1175 |
<?php __("Both fields are empty.", "profile-builder"); ?>
|
1176 |
-
<?php __("Username or Email", "profile-builder"); ?>
|
1177 |
-
<?php __("Lost your password?", "profile-builder"); ?>
|
1178 |
<?php __("Log out of this account", "profile-builder"); ?>
|
1179 |
<?php __("Log out »", "profile-builder"); ?>
|
1180 |
<?php __("You are currently logged in as %1$s. %2$s", "profile-builder"); ?>
|
|
|
|
|
1181 |
<?php __("You are currently logged in as %s. ", "profile-builder"); ?>
|
1182 |
<?php __("Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature.", "profile-builder"); ?>
|
1183 |
<?php __("Reset Password", "profile-builder"); ?>
|
1184 |
-
<?php __("Please enter your email address.", "profile-builder"); ?>
|
1185 |
<?php __("Please enter your username or email address.", "profile-builder"); ?>
|
1186 |
<?php __("Username or E-mail", "profile-builder"); ?>
|
|
|
1187 |
<?php __("You will receive a link to create a new password via email.", "profile-builder"); ?>
|
1188 |
<?php __("Get New Password", "profile-builder"); ?>
|
1189 |
<?php __("Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s", "profile-builder"); ?>
|
@@ -1192,26 +1156,26 @@
|
|
1192 |
<?php __("Password Successfully Reset for %1$s on \"%2$s\"", "profile-builder"); ?>
|
1193 |
<?php __("%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s", "profile-builder"); ?>
|
1194 |
<?php __("You are already logged in. You can change your password on the edit profile form.", "profile-builder"); ?>
|
1195 |
-
<?php __("The
|
1196 |
-
<?php __("Please check that you entered the correct username.", "profile-builder"); ?>
|
1197 |
-
<?php __("Check your e-mail for the confirmation link.", "profile-builder"); ?>
|
1198 |
-
<?php __("There was an error while trying to send the activation link to %1$s!", "profile-builder"); ?>
|
1199 |
-
<?php __("The email address entered wasn't found in the database!", "profile-builder"); ?>
|
1200 |
-
<?php __("Please check that you entered the correct email address.", "profile-builder"); ?>
|
1201 |
<?php __("The entered passwords don't match!", "profile-builder"); ?>
|
1202 |
<?php __("The password must have the minimum length of %s characters", "profile-builder"); ?>
|
1203 |
<?php __("The password must have a minimum strength of %s", "profile-builder"); ?>
|
1204 |
<?php __("Your password has been successfully changed!", "profile-builder"); ?>
|
1205 |
-
<?php __("The
|
|
|
|
|
|
|
|
|
|
|
1206 |
<?php __("ERROR:", "profile-builder"); ?>
|
1207 |
<?php __("Invalid key!", "profile-builder"); ?>
|
1208 |
<?php __("Invalid activation key!", "profile-builder"); ?>
|
1209 |
<?php __("This username is now active!", "profile-builder"); ?>
|
1210 |
-
<?php __("
|
1211 |
-
<?php __("This username is already activated!", "profile-builder"); ?>
|
1212 |
<?php __("Your email was successfully confirmed.", "profile-builder"); ?>
|
1213 |
<?php __("Before you can access your account, an administrator needs to approve it. You will be notified via email.", "profile-builder"); ?>
|
1214 |
-
<?php __("
|
|
|
1215 |
<?php __("Modules", "profile-builder"); ?>
|
1216 |
<?php __("Here you can activate / deactivate available modules for Profile Builder.", "profile-builder"); ?>
|
1217 |
<?php __("Name/Description", "profile-builder"); ?>
|
@@ -1316,38 +1280,38 @@
|
|
1316 |
<?php __("Admin Approval", "profile-builder"); ?>
|
1317 |
<?php __("Do you want to", "profile-builder"); ?>
|
1318 |
<?php __("Your session has expired! Please refresh the page and try again.", "profile-builder"); ?>
|
1319 |
-
<?php __("User successfully approved!", "profile-builder"); ?>
|
1320 |
-
<?php __("User successfully unapproved!", "profile-builder"); ?>
|
1321 |
-
<?php __("User successfully deleted!", "profile-builder"); ?>
|
1322 |
<?php __("You either don't have permission for that action or there was an error!", "profile-builder"); ?>
|
1323 |
-
<?php __("
|
1324 |
-
<?php __("
|
|
|
1325 |
<?php __("Users successfully deleted!", "profile-builder"); ?>
|
1326 |
-
<?php __("
|
1327 |
-
<?php __("approved", "profile-builder"); ?>
|
1328 |
-
<?php __("An administrator has just approved your account on %1$s (%2$s).", "profile-builder"); ?>
|
1329 |
<?php __("Your account on %1$s has been unapproved!", "profile-builder"); ?>
|
1330 |
<?php __("unapproved", "profile-builder"); ?>
|
1331 |
<?php __("An administrator has just unapproved your account on %1$s (%2$s).", "profile-builder"); ?>
|
|
|
|
|
|
|
1332 |
<?php __("Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature.", "profile-builder"); ?>
|
1333 |
<?php __("Your account has been successfully created!", "profile-builder"); ?>
|
1334 |
<?php __("The approval link is not valid! Please <a href=\"%s\"> log in </a> to approve the user manually. ", "profile-builder"); ?>
|
1335 |
<?php __("delete this user?", "profile-builder"); ?>
|
1336 |
-
<?php __("unapprove this user?", "profile-builder"); ?>
|
1337 |
-
<?php __("Unapprove", "profile-builder"); ?>
|
1338 |
<?php __("approve this user?", "profile-builder"); ?>
|
1339 |
<?php __("Approve", "profile-builder"); ?>
|
|
|
|
|
1340 |
<?php __("Firstname", "profile-builder"); ?>
|
1341 |
<?php __("Lastname", "profile-builder"); ?>
|
1342 |
<?php __("Role", "profile-builder"); ?>
|
1343 |
<?php __("Registered", "profile-builder"); ?>
|
1344 |
<?php __("User-status", "profile-builder"); ?>
|
1345 |
-
<?php __("Do you want to bulk approve the selected users?", "profile-builder"); ?>
|
1346 |
-
<?php __("Do you want to bulk unapprove the selected users?", "profile-builder"); ?>
|
1347 |
-
<?php __("Do you want to bulk delete the selected users?", "profile-builder"); ?>
|
1348 |
<?php __("Sorry, but you don't have permission to do that!", "profile-builder"); ?>
|
1349 |
-
<?php __("
|
|
|
|
|
1350 |
<?php __("Unapproved", "profile-builder"); ?>
|
|
|
1351 |
<?php __("All Users", "profile-builder"); ?>
|
1352 |
<?php __("Conditional Logic", "profile-builder"); ?>
|
1353 |
<?php __("Conditional Rules", "profile-builder"); ?>
|
@@ -1366,8 +1330,10 @@
|
|
1366 |
<?php __("Text", "profile-builder"); ?>
|
1367 |
<?php __("Template", "profile-builder"); ?>
|
1368 |
<?php __("Select Template", "profile-builder"); ?>
|
1369 |
-
<?php __("You must be logged in to view
|
|
|
1370 |
<?php __("This content is restricted for your user role.", "profile-builder"); ?>
|
|
|
1371 |
<?php __("Display Options", "profile-builder"); ?>
|
1372 |
<?php __("Message", "profile-builder"); ?>
|
1373 |
<?php __("Redirect", "profile-builder"); ?>
|
@@ -1403,24 +1369,24 @@
|
|
1403 |
<?php __("Confirm Email", "profile-builder"); ?>
|
1404 |
<?php __("resend the activation link?", "profile-builder"); ?>
|
1405 |
<?php __("Resend Activation Email", "profile-builder"); ?>
|
|
|
|
|
1406 |
<?php __("%s couldn't be deleted", "profile-builder"); ?>
|
1407 |
<?php __("All users have been successfully deleted", "profile-builder"); ?>
|
1408 |
-
<?php __("The selected users have been activated", "profile-builder"); ?>
|
1409 |
-
<?php __("The selected users have had their activation emails resent", "profile-builder"); ?>
|
1410 |
<?php __("Users with Unconfirmed Email Address", "profile-builder"); ?>
|
1411 |
-
<?php __("There was an error performing that action!", "profile-builder"); ?>
|
1412 |
-
<?php __("The selected user couldn't be deleted", "profile-builder"); ?>
|
1413 |
<?php __("Email notification resent to user", "profile-builder"); ?>
|
|
|
|
|
1414 |
<?php __("[%1$s] Activate %2$s", "profile-builder"); ?>
|
1415 |
<?php __("To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login.", "profile-builder"); ?>
|
1416 |
-
<?php __("That username is already activated!", "profile-builder"); ?>
|
1417 |
<?php __("There was an error while trying to activate the user", "profile-builder"); ?>
|
|
|
1418 |
<?php __("A new subscriber has (been) registered!", "profile-builder"); ?>
|
1419 |
<?php __("New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>", "profile-builder"); ?>
|
1420 |
<?php __("[%1$s] Your new account information", "profile-builder"); ?>
|
1421 |
<?php __("Your selected password at signup", "profile-builder"); ?>
|
1422 |
-
<?php __("Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and your password is the one that you have selected during registration.<br/><br/>Access your account: %3$s ", "profile-builder"); ?>
|
1423 |
<?php __("Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and the password: %3$s.<br/><br/>Access your account: %4$s ", "profile-builder"); ?>
|
|
|
1424 |
<?php __("The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!", "profile-builder"); ?>
|
1425 |
<?php __("This login widget lets you add a login form in the sidebar.", "profile-builder"); ?>
|
1426 |
<?php __("Profile Builder Login Widget", "profile-builder"); ?>
|
@@ -1450,9 +1416,9 @@
|
|
1450 |
<?php __("Capabilities", "profile-builder"); ?>
|
1451 |
<?php __("Users", "profile-builder"); ?>
|
1452 |
<?php __("Clone", "profile-builder"); ?>
|
1453 |
-
<?php __("You can't delete your role.", "profile-builder"); ?>
|
1454 |
<?php __("Change Default", "profile-builder"); ?>
|
1455 |
<?php __("You can't delete the default role. Change it first.", "profile-builder"); ?>
|
|
|
1456 |
<?php __("Edit User Roles", "profile-builder"); ?>
|
1457 |
<?php __("The usernames cannot be changed.", "profile-builder"); ?>
|
1458 |
<?php __("After Login", "profile-builder"); ?>
|
@@ -1512,6 +1478,9 @@
|
|
1512 |
<?php __("Registration with Admin Approval", "profile-builder"); ?>
|
1513 |
<?php __("<p>{{username}} has requested a password change via the password reset feature.</p>\n<p>His/her new password is: {{password}}</p>\n", "profile-builder"); ?>
|
1514 |
<?php __("Admin Notification for User Password Reset", "profile-builder"); ?>
|
|
|
|
|
|
|
1515 |
<?php __("Available Tags", "profile-builder"); ?>
|
1516 |
<?php __("User Fields Tags", "profile-builder"); ?>
|
1517 |
<?php __("Site Url", "profile-builder"); ?>
|
@@ -1528,6 +1497,10 @@
|
|
1528 |
<?php __("Reset Link", "profile-builder"); ?>
|
1529 |
<?php __("Approve User Url", "profile-builder"); ?>
|
1530 |
<?php __("Approve User Link", "profile-builder"); ?>
|
|
|
|
|
|
|
|
|
1531 |
<?php __("The users selected password at signup", "profile-builder"); ?>
|
1532 |
<?php __("User Email Customizer", "profile-builder"); ?>
|
1533 |
<?php __("User Email Customizer Settings", "profile-builder"); ?>
|
@@ -1553,6 +1526,9 @@
|
|
1553 |
<?php __("<h3>Hi {{username}},</h3>\n<p>This notice confirms that your email was changed on {{site_name}}.</p>\n<p>If you did not change your email, please contact the Site Administrator at %s</p>\n<p>This email has been sent to {{user_email}}</p>\n<p>Regards,<br>\nAll at {{site_name}}<br>\n<a href=\"{{site_url}}\">{{site_url}}</a></p>", "profile-builder"); ?>
|
1554 |
<?php __("[{{site_name}}] Notice of Email Change", "profile-builder"); ?>
|
1555 |
<?php __("Changed Email Address Notification", "profile-builder"); ?>
|
|
|
|
|
|
|
1556 |
<?php __("Edit-profile Form", "profile-builder"); ?>
|
1557 |
<?php __("Add New", "profile-builder"); ?>
|
1558 |
<?php __("Add new Edit-profile Form", "profile-builder"); ?>
|
@@ -1565,9 +1541,9 @@
|
|
1565 |
<?php __("No Edit-profile Forms found in trash", "profile-builder"); ?>
|
1566 |
<?php __("Shortcode", "profile-builder"); ?>
|
1567 |
<?php __("(no title)", "profile-builder"); ?>
|
1568 |
-
<?php __("The shortcode will be available after you publish this form.", "profile-builder"); ?>
|
1569 |
<?php __("Use this shortcode on the page you want the form to be displayed:", "profile-builder"); ?>
|
1570 |
<?php __("<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!", "profile-builder"); ?>
|
|
|
1571 |
<?php __("Form Shortcode", "profile-builder"); ?>
|
1572 |
<?php __("Whether to redirect the user to a specific page or not", "profile-builder"); ?>
|
1573 |
<?php __("Display Messages", "profile-builder"); ?>
|
@@ -1630,23 +1606,23 @@
|
|
1630 |
<?php __("You do not have permission to view this user list.", "profile-builder"); ?>
|
1631 |
<?php __("You do not have the required user role to view this user list.", "profile-builder"); ?>
|
1632 |
<?php __("User not found", "profile-builder"); ?>
|
1633 |
-
<?php __("First/Lastname", "profile-builder"); ?>
|
1634 |
-
<?php __("Display Name", "profile-builder"); ?>
|
1635 |
-
<?php __("Aim", "profile-builder"); ?>
|
1636 |
-
<?php __("Yim", "profile-builder"); ?>
|
1637 |
<?php __("Jabber", "profile-builder"); ?>
|
|
|
|
|
|
|
|
|
1638 |
<?php __("Search Users by All Fields", "profile-builder"); ?>
|
|
|
1639 |
<?php __("Click here to see more information about this user", "profile-builder"); ?>
|
1640 |
<?php __("More...", "profile-builder"); ?>
|
1641 |
-
<?php __("Click here to see more information about this user.", "profile-builder"); ?>
|
1642 |
<?php __("View Map", "profile-builder"); ?>
|
1643 |
<?php __("Click here to go back", "profile-builder"); ?>
|
1644 |
<?php __("Back", "profile-builder"); ?>
|
|
|
1645 |
<?php __("«« First", "profile-builder"); ?>
|
1646 |
<?php __("« Prev", "profile-builder"); ?>
|
1647 |
<?php __("Next » ", "profile-builder"); ?>
|
1648 |
<?php __("Last »»", "profile-builder"); ?>
|
1649 |
-
<?php __("You don't have any pagination settings on this userlisting!", "profile-builder"); ?>
|
1650 |
<?php __("Show All", "profile-builder"); ?>
|
1651 |
<?php __("Choose...", "profile-builder"); ?>
|
1652 |
<?php __("No options available", "profile-builder"); ?>
|
@@ -1717,8 +1693,8 @@
|
|
1717 |
<?php __("For security reasons, you must pass the remote ip to reCAPTCHA!", "profile-builder"); ?>
|
1718 |
<?php __("To use reCAPTCHA you must get an API public key from:", "profile-builder"); ?>
|
1719 |
<?php __("Click the BACK button on your browser, and try again.", "profile-builder"); ?>
|
1720 |
-
<?php __("Only administrators can see this field on edit profile forms.", "profile-builder"); ?>
|
1721 |
<?php __("As an administrator you cannot change your role.", "profile-builder"); ?>
|
|
|
1722 |
<?php __("You cannot register this user role", "profile-builder"); ?>
|
1723 |
<?php __("This username already exists.", "profile-builder"); ?>
|
1724 |
<?php __("This username is invalid because it uses illegal characters.", "profile-builder"); ?>
|
7 |
<?php __("Choose Edit Profile form to display under bbPress Profile Edit tab:", "profile-builder"); ?>
|
8 |
<?php __("Default Edit Profile", "profile-builder"); ?>
|
9 |
<?php __("Select Profile Builder Edit Profile form to replace the bbPress Profile Edit tab.", "profile-builder"); ?>
|
10 |
+
<?php __("bbPress needs to be installed and activated for Profile Builder - bbPress Integration Add-on to work as expected!", "profile-builder"); ?>
|
11 |
+
<?php __("Forum Role", "profile-builder"); ?>
|
12 |
<?php __("Topics Started", "profile-builder"); ?>
|
13 |
<?php __("Replies Created", "profile-builder"); ?>
|
|
|
|
|
14 |
<?php __("BuddyPress", "profile-builder"); ?>
|
15 |
<?php __("BuddyPress Integration", "profile-builder"); ?>
|
16 |
<?php __("Import BuddyPress Fields to Profile Builder", "profile-builder"); ?>
|
40 |
<?php __("My Friends", "profile-builder"); ?>
|
41 |
<?php __("<h2>Import BuddyPress Fields to Profile Builder</h2>", "profile-builder"); ?>
|
42 |
<?php __("BuddyPress is not installed and active. Import aborted!", "profile-builder"); ?>
|
|
|
|
|
|
|
43 |
<?php __("Importing User entries BuddyPress Fields to Profile Builder...<br><br>", "profile-builder"); ?>
|
44 |
<?php __("Done.", "profile-builder"); ?>
|
45 |
<?php __("Back to BuddyPress Settings page", "profile-builder"); ?>
|
46 |
+
<?php __("Importing BuddyPress Field Settings to Profile Builder...<br><br>", "profile-builder"); ?>
|
47 |
+
<?php __("If the page does not redirect automatically", "profile-builder"); ?>
|
48 |
+
<?php __("click here", "profile-builder"); ?>
|
49 |
<?php __("BuddyPress needs to be installed and activated for Profile Builder - BuddyPress Integration Add-on to work as expected!", "profile-builder"); ?>
|
50 |
+
<?php __("Profile Builder Avatar field is disabled to allow use of BuddyPress Avatar.", "profile-builder"); ?>
|
51 |
<?php __("Name", "profile-builder"); ?>
|
52 |
<?php __("Username:", "profile-builder"); ?>
|
53 |
<?php __("First Name:", "profile-builder"); ?>
|
151 |
<?php __("Publish the form before adding Break Points!", "profile-builder"); ?>
|
152 |
<?php __("Request in process, please wait a few seconds before a new one!", "profile-builder"); ?>
|
153 |
<?php __("Multi-Step Forms", "profile-builder"); ?>
|
154 |
+
<?php __("To enable MSF you must add Break Points.", "profile-builder"); ?>
|
155 |
+
<?php __("Pagination and Tabs:", "profile-builder"); ?>
|
156 |
+
<?php __("Enable Pagination", "profile-builder"); ?>
|
157 |
+
<?php __("Enable Tabs", "profile-builder"); ?>
|
158 |
+
<?php __("Edit Tabs Title", "profile-builder"); ?>
|
159 |
<?php __("Multi-Step Forms options updated.", "profile-builder"); ?>
|
160 |
<?php __("Enable on:", "profile-builder"); ?>
|
161 |
<?php __("PB Default Register Form", "profile-builder"); ?>
|
162 |
<?php __("PB Default Edit Profile Form", "profile-builder"); ?>
|
163 |
<?php __("To enable it on Multiple Registration and Edit-Profile Forms you must add Break Points in each form page.", "profile-builder"); ?>
|
|
|
|
|
|
|
|
|
164 |
<?php __("Update Multi-Step", "profile-builder"); ?>
|
|
|
165 |
<?php __("Next", "profile-builder"); ?>
|
166 |
<?php __("Previous", "profile-builder"); ?>
|
167 |
<?php __("Placeholder Labels", "profile-builder"); ?>
|
241 |
<?php __("Email Address", "profile-builder"); ?>
|
242 |
<?php __("Phone", "profile-builder"); ?>
|
243 |
<?php __("Ship to a different address?", "profile-builder"); ?>
|
244 |
+
<?php __("WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!", "profile-builder"); ?>
|
245 |
<?php __("Billing Address", "profile-builder"); ?>
|
246 |
<?php __("Displays customer billing fields in front-end. ", "profile-builder"); ?>
|
247 |
<?php __("Shipping Address", "profile-builder"); ?>
|
266 |
<?php __("No options available. Please select one country.", "profile-builder"); ?>
|
267 |
<?php __("Billing ", "profile-builder"); ?>
|
268 |
<?php __("Shipping ", "profile-builder"); ?>
|
|
|
269 |
<?php __("Display on WooCommerce Checkout", "profile-builder"); ?>
|
270 |
<?php __("Whether the field should be added to the WooCommerce checkout form or not", "profile-builder"); ?>
|
271 |
<?php __("WooCommerce Sync", "profile-builder"); ?>
|
275 |
<?php __("Choose Edit Profile form to display on My Account page:", "profile-builder"); ?>
|
276 |
<?php __("Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce.", "profile-builder"); ?>
|
277 |
<?php __("%s is also activated. You need to deactivate it before activating this version of the plugin.", "profile-builder"); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
<?php __("Communication Preferences", "profile-builder"); ?>
|
279 |
<?php __("E-mail", "profile-builder"); ?>
|
280 |
<?php __("Telephone", "profile-builder"); ?>
|
287 |
<?php __("Date", "profile-builder"); ?>
|
288 |
<?php __("Preference", "profile-builder"); ?>
|
289 |
<?php __("Uploaded file is not valid json!", "profile-builder"); ?>
|
|
|
290 |
<?php __("Please select a .json file to import!", "profile-builder"); ?>
|
291 |
+
<?php __("Import successfully!", "profile-builder"); ?>
|
292 |
<?php __("Page will refresh in 3 seconds...", "profile-builder"); ?>
|
293 |
<?php __("MailChimp", "profile-builder"); ?>
|
294 |
<?php __("MailChimp Integration", "profile-builder"); ?>
|
|
|
295 |
<?php __("MailChimp List", "profile-builder"); ?>
|
296 |
+
<?php __("Fields Count", "profile-builder"); ?>
|
297 |
<?php __("We couldn't find any lists", "profile-builder"); ?>
|
298 |
+
<?php __("Before you can make any changes you will need to add a MailChimp API key.", "profile-builder"); ?>
|
299 |
+
<?php __("Save", "profile-builder"); ?>
|
300 |
<?php __("MailChimp API Key:", "profile-builder"); ?>
|
301 |
<?php __("Either the API key is not valid or we could not connect to MailChimp to validate it!", "profile-builder"); ?>
|
302 |
+
<?php __("The API key was successfully validated!", "profile-builder"); ?>
|
303 |
<?php __("Enter a MailChimp API key. You can create keys in your MailChimp account.", "profile-builder"); ?>
|
304 |
<?php __("Edit this item", "profile-builder"); ?>
|
305 |
+
<?php __("Cancel", "profile-builder"); ?>
|
306 |
+
<?php __("Field Associations:", "profile-builder"); ?>
|
307 |
<?php __("This field is required in MailChimp", "profile-builder"); ?>
|
308 |
<?php __("Associate each MailChimp field with a Profile Builder field", "profile-builder"); ?>
|
309 |
<?php __("Group Associations:", "profile-builder"); ?>
|
310 |
<?php __("Associate each MailChimp group with a Profile Builder field", "profile-builder"); ?>
|
311 |
+
<?php __("Extra Options:", "profile-builder"); ?>
|
312 |
<?php __("Double Opt-In", "profile-builder"); ?>
|
313 |
<?php __("If you select double opt-in, the user will receive an e-mail to confirm the subscription", "profile-builder"); ?>
|
314 |
<?php __("Enable GDPR", "profile-builder"); ?>
|
315 |
<?php __("If checked will enable GDPR on this list. <a href=\"%s\" target=\"_blank\">You must also enable GDPR on the list from mailchimp</a>", "profile-builder"); ?>
|
|
|
|
|
316 |
<?php __("Something went wrong. Either the API key is invalid or we could not connect to MailChimp to validate the key.", "profile-builder"); ?>
|
317 |
+
<?php __("MailChimp API key is invalid", "profile-builder"); ?>
|
318 |
+
<?php __("MailChimp API key is empty", "profile-builder"); ?>
|
319 |
+
<?php __("Select a list...", "profile-builder"); ?>
|
320 |
+
<?php __("We couldn't find any lists in your MailChimp settings.", "profile-builder"); ?>
|
321 |
<?php __("Select in which MailChimp list you wish to add a new subscriber", "profile-builder"); ?>
|
322 |
<?php __("Checked by Default", "profile-builder"); ?>
|
323 |
<?php __("If checked the Subscribe checkbox in the front-end will be checked by default on register forms", "profile-builder"); ?>
|
324 |
+
<?php __("Hide on Edit Profile", "profile-builder"); ?>
|
325 |
+
<?php __("If checked this field will not be displayed on edit profile forms", "profile-builder"); ?>
|
326 |
+
<?php __("Please enter a MailChimp API key <a href=\"%s\">here</a>.", "profile-builder"); ?>
|
327 |
<?php __("Please select at least one MailChimp list \n", "profile-builder"); ?>
|
328 |
<?php __("Profile Builder MailChimp Widget", "profile-builder"); ?>
|
329 |
<?php __("Adds a basic subscribe form so that your users can subscribe to your MailChimp lists", "profile-builder"); ?>
|
330 |
+
<?php __("Submit", "profile-builder"); ?>
|
331 |
+
<?php __("%s", "profile-builder"); ?>
|
332 |
<?php __("Something went wrong. Either the MailChimp API key is missing or it is invalid.", "profile-builder"); ?>
|
333 |
+
<?php __("Subscribe to Newsletter", "profile-builder"); ?>
|
334 |
+
<?php __("Title", "profile-builder"); ?>
|
335 |
+
<?php __("Select the list your new subscriber will be added to", "profile-builder"); ?>
|
336 |
<?php __("Select...", "profile-builder"); ?>
|
337 |
+
<?php __("Select which fields to show", "profile-builder"); ?>
|
338 |
<?php __("Extra Options", "profile-builder"); ?>
|
339 |
<?php __("Please select a list first", "profile-builder"); ?>
|
340 |
<?php __("No list was found.", "profile-builder"); ?>
|
341 |
<?php __("MailPoet List", "profile-builder"); ?>
|
|
|
|
|
342 |
<?php __("Please install and activate MailPoet plugin.", "profile-builder"); ?>
|
343 |
+
<?php __("We couldn't find any lists in your MailPoet settings.", "profile-builder"); ?>
|
344 |
+
<?php __("Select in which MailPoet list you wish to add a new subscriber", "profile-builder"); ?>
|
345 |
<?php __("Please select at least one MailPoet list \n", "profile-builder"); ?>
|
346 |
<?php __("Maximum Selections", "profile-builder"); ?>
|
347 |
<?php __("Select2 multi-value select boxes can set restrictions regarding the maximum number of options selected.", "profile-builder"); ?>
|
348 |
<?php __("User Inputted Options", "profile-builder"); ?>
|
349 |
<?php __("Check this to allow users to create their own options beside the pre-existing ones.", "profile-builder"); ?>
|
|
|
350 |
<?php __("Sign in with Facebook", "profile-builder"); ?>
|
351 |
+
<?php __("Link with Facebook", "profile-builder"); ?>
|
352 |
<?php __("Sign in with Google", "profile-builder"); ?>
|
353 |
+
<?php __("Link with Google", "profile-builder"); ?>
|
354 |
<?php __("Sign in with LinkedIn", "profile-builder"); ?>
|
355 |
+
<?php __("Link with LinkedIn", "profile-builder"); ?>
|
356 |
<?php __("Error Receiving Request Token", "profile-builder"); ?>
|
357 |
+
<?php __("Connection with twitter Failed", "profile-builder"); ?>
|
358 |
<?php __("Sign in with Twitter", "profile-builder"); ?>
|
359 |
+
<?php __("Link with Twitter", "profile-builder"); ?>
|
360 |
<?php __("Add-Ons", "profile-builder"); ?>
|
361 |
<?php __("Recommended Plugins", "profile-builder"); ?>
|
362 |
<?php __("Free", "profile-builder"); ?>
|
363 |
<?php __("Translate your Profile Builder forms with a WordPress translation plugin that anyone can use. It offers a simpler way to translate WordPress sites, with full support for WooCommerce and site builders.", "profile-builder"); ?>
|
|
|
|
|
|
|
|
|
364 |
<?php __("Install Now", "profile-builder"); ?>
|
365 |
<?php __("Compatible with your version of Profile Builder.", "profile-builder"); ?>
|
366 |
+
<?php __("Deactivate", "profile-builder"); ?>
|
367 |
+
<?php __("Activate", "profile-builder"); ?>
|
368 |
+
<?php __("Plugin is <strong>active</strong>", "profile-builder"); ?>
|
369 |
+
<?php __("Plugin is <strong>inactive</strong>", "profile-builder"); ?>
|
370 |
<?php __("Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>.", "profile-builder"); ?>
|
371 |
<?php __("Accept user payments, create subscription plans and restrict content on your membership site.", "profile-builder"); ?>
|
372 |
<?php __("Downloading and installing...", "profile-builder"); ?>
|
377 |
<?php __("Add-On is <strong>active</strong>", "profile-builder"); ?>
|
378 |
<?php __("Add-On is <strong>inactive</strong>", "profile-builder"); ?>
|
379 |
<?php __("Add-On has been deactivated.", "profile-builder"); ?>
|
|
|
|
|
|
|
380 |
<?php __("Available with the Pro Version", "profile-builder"); ?>
|
381 |
+
<?php __("Available with the Hobbyist and Pro Versions", "profile-builder"); ?>
|
382 |
+
<?php __("Available with All Versions", "profile-builder"); ?>
|
|
|
|
|
383 |
<?php __("Update", "profile-builder"); ?>
|
384 |
<?php __("Not compatible with your version of Profile Builder.", "profile-builder"); ?>
|
385 |
<?php __("Minimum required Profile Builder version:", "profile-builder"); ?>
|
386 |
+
<?php __("Upgrade Profile Builder", "profile-builder"); ?>
|
387 |
+
<?php __("Not compatible with Profile Builder", "profile-builder"); ?>
|
388 |
+
<?php __("Learn More", "profile-builder"); ?>
|
389 |
+
<?php __("Download Now", "profile-builder"); ?>
|
390 |
<?php __("Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>.", "profile-builder"); ?>
|
391 |
+
<?php __("Something went wrong, we could not connect to the server. Please try again later.", "profile-builder"); ?>
|
392 |
<?php __("Show/Hide the Admin Bar on the Front-End", "profile-builder"); ?>
|
393 |
<?php __("Admin Bar Settings", "profile-builder"); ?>
|
394 |
<?php __("Choose which user roles view the admin bar in the front-end of the website.", "profile-builder"); ?>
|
405 |
<?php __("Medium", "profile-builder"); ?>
|
406 |
<?php __("Strong", "profile-builder"); ?>
|
407 |
<?php __("<strong>ERROR</strong>: The password must have a minimum strength of %s", "profile-builder"); ?>
|
|
|
408 |
<?php __("Save Settings", "profile-builder"); ?>
|
409 |
+
<?php __("Add Field", "profile-builder"); ?>
|
410 |
<?php __("If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. ", "profile-builder"); ?>
|
411 |
<?php __("View Profile Builder documentation", "profile-builder"); ?>
|
412 |
<?php __("Docs", "profile-builder"); ?>
|
416 |
<?php __("Basic Information", "profile-builder"); ?>
|
417 |
<?php __("<strong>Profile Builder </strong> %s", "profile-builder"); ?>
|
418 |
<?php __("The best way to add front-end registration, edit profile and login forms.", "profile-builder"); ?>
|
|
|
|
|
419 |
<?php __("You can see all the pages with Profile Builder form shortcodes here:", "profile-builder"); ?>
|
420 |
<?php __("View Form Pages", "profile-builder"); ?>
|
421 |
+
<?php __("Speed up the setup process by automatically creating the form pages:", "profile-builder"); ?>
|
422 |
+
<?php __("Create Form Pages", "profile-builder"); ?>
|
423 |
<?php __("Login Form", "profile-builder"); ?>
|
424 |
<?php __("Friction-less login using %s shortcode or a widget.", "profile-builder"); ?>
|
425 |
<?php __("Registration Form", "profile-builder"); ?>
|
445 |
<?php __("Add, remove, clone and edit roles and also capabilities for these roles.", "profile-builder"); ?>
|
446 |
<?php __("Customize Your Forms The Way You Want (*)", "profile-builder"); ?>
|
447 |
<?php __("With Extra Profile Fields you can create the exact registration form your project needs.", "profile-builder"); ?>
|
|
|
448 |
<?php __("Get started with extra fields", "profile-builder"); ?>
|
449 |
+
<?php __("Extra Profile Fields are available in Hobbyist or PRO versions", "profile-builder"); ?>
|
450 |
<?php __("Avatar Upload", "profile-builder"); ?>
|
451 |
<?php __("Generic Uploads", "profile-builder"); ?>
|
452 |
<?php __("Agree To Terms Checkbox", "profile-builder"); ?>
|
471 |
<?php __("Enable your modules", "profile-builder"); ?>
|
472 |
<?php __("Find out more about PRO Modules", "profile-builder"); ?>
|
473 |
<?php __("User Listing", "profile-builder"); ?>
|
|
|
474 |
<?php __("To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s.", "profile-builder"); ?>
|
475 |
+
<?php __("Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings.", "profile-builder"); ?>
|
476 |
<?php __("Email Customizer", "profile-builder"); ?>
|
477 |
<?php __("Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.", "profile-builder"); ?>
|
478 |
<?php __("Custom Redirects", "profile-builder"); ?>
|
537 |
<?php __("Manage Form Fields", "profile-builder"); ?>
|
538 |
<?php __("Choose one of the supported field types", "profile-builder"); ?>
|
539 |
<?php __(". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>.", "profile-builder"); ?>
|
|
|
540 |
<?php __("Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this will only affect subsequent entries", "profile-builder"); ?>
|
541 |
+
<?php __("Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count", "profile-builder"); ?>
|
542 |
<?php __("Field Title", "profile-builder"); ?>
|
543 |
<?php __("Title of the field", "profile-builder"); ?>
|
544 |
<?php __("Field", "profile-builder"); ?>
|
1023 |
<?php __("Viet Nam Dong", "profile-builder"); ?>
|
1024 |
<?php __("Yemen Rial", "profile-builder"); ?>
|
1025 |
<?php __("Zimbabwe Dollar", "profile-builder"); ?>
|
1026 |
+
<?php __("That field is already added in this form\n", "profile-builder"); ?>
|
1027 |
<?php __("You must select a field\n", "profile-builder"); ?>
|
1028 |
<?php __("Please choose a different field type as this one already exists in your form (must be unique)\n", "profile-builder"); ?>
|
|
|
1029 |
<?php __("The entered avatar size is not numerical\n", "profile-builder"); ?>
|
1030 |
+
<?php __("The entered avatar size is not between 20 and 200\n", "profile-builder"); ?>
|
1031 |
<?php __("You must enter a value for the row number\n", "profile-builder"); ?>
|
1032 |
+
<?php __("The entered row number is not numerical\n", "profile-builder"); ?>
|
1033 |
<?php __("You must enter the site key\n", "profile-builder"); ?>
|
1034 |
<?php __("You must enter the secret key\n", "profile-builder"); ?>
|
|
|
1035 |
<?php __("The entered value for the Datepicker is not a valid date-format\n", "profile-builder"); ?>
|
1036 |
+
<?php __("You must enter a value for the date-format\n", "profile-builder"); ?>
|
1037 |
<?php __("The meta-name cannot be empty\n", "profile-builder"); ?>
|
|
|
1038 |
<?php __("That meta-name is already in use\n", "profile-builder"); ?>
|
1039 |
+
<?php __("That meta-name can't be used, please choose another\n", "profile-builder"); ?>
|
1040 |
<?php __("The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n", "profile-builder"); ?>
|
|
|
1041 |
<?php __("The following option did not coincide with the ones in the options list: %s\n", "profile-builder"); ?>
|
1042 |
+
<?php __("The following option(s) did not coincide with the ones in the options list: %s\n", "profile-builder"); ?>
|
1043 |
<?php __("Please select at least one user role\n", "profile-builder"); ?>
|
|
|
1044 |
<?php __("<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>", "profile-builder"); ?>
|
1045 |
<?php __("Use these shortcodes on the pages you want the forms to be displayed:", "profile-builder"); ?>
|
|
|
1046 |
<?php __("With Profile Builder Pro you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module.", "profile-builder"); ?>
|
1047 |
+
<?php __("If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules.", "profile-builder"); ?>
|
1048 |
<?php __("Search Location", "profile-builder"); ?>
|
1049 |
<?php __("Paid Accounts", "profile-builder"); ?>
|
1050 |
<?php __("Paid Member Subscriptions - a free WordPress plugin", "profile-builder"); ?>
|
1075 |
<?php __("Hide all menu items if you are not logged in.", "profile-builder"); ?>
|
1076 |
<?php __("We recommend \"<a href=\"%s\" target=\"_blank\">Custom Profile Menus</a>\" addon if you need different menu items for logged in / logged out users.", "profile-builder"); ?>
|
1077 |
<?php __("Save Changes", "profile-builder"); ?>
|
1078 |
+
<?php __("Profile Builder Register", "profile-builder"); ?>
|
1079 |
<?php __("Register Your Version", "profile-builder"); ?>
|
1080 |
<?php __("Register Version", "profile-builder"); ?>
|
|
|
1081 |
<?php __("Register your version of %s", "profile-builder"); ?>
|
1082 |
<?php __("Now that you acquired a copy of %s, you should take the time and register it with the serial number you received", "profile-builder"); ?>
|
1083 |
<?php __("If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.", "profile-builder"); ?>
|
1084 |
<?php __(" Serial Number:", "profile-builder"); ?>
|
1085 |
+
<?php __("The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!", "profile-builder"); ?>
|
|
|
|
|
|
|
1086 |
<?php __("The serial number couldn't be validated because it expired!", "profile-builder"); ?>
|
1087 |
<?php __(" Your serial number is expired, please %1$s Renew Your License%2$s.", "profile-builder"); ?>
|
1088 |
+
<?php __("The serial number is about to expire soon!", "profile-builder"); ?>
|
1089 |
+
<?php __(" Your serial number is about to expire, please %1$s Renew Your License%2$s.", "profile-builder"); ?>
|
1090 |
+
<?php __("The serial number entered couldn't be validated!", "profile-builder"); ?>
|
1091 |
+
<?php __("The serial number was successfully validated!", "profile-builder"); ?>
|
1092 |
<?php __("(e.g. CLPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)", "profile-builder"); ?>
|
|
|
|
|
|
|
1093 |
<?php __("<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>", "profile-builder"); ?>
|
1094 |
+
<?php __("<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %5$sDismiss%6$s</p>", "profile-builder"); ?>
|
1095 |
+
<?php __("<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s</p>", "profile-builder"); ?>
|
1096 |
+
<?php __("<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>", "profile-builder"); ?>
|
1097 |
<?php __("GDPR Checkbox", "profile-builder"); ?>
|
1098 |
<?php __("I allow the website to collect and store the data I submit through this form.", "profile-builder"); ?>
|
1099 |
<?php __("Strength indicator", "profile-builder"); ?>
|
1110 |
<?php __("No feed available,please visit our <a href=\"%s\">homepage</a>!", "profile-builder"); ?>
|
1111 |
<?php __("You are not currently logged in.", "profile-builder"); ?>
|
1112 |
<?php __("The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form.", "profile-builder"); ?>
|
1113 |
+
<?php __("You must be logged in to edit your profile.", "profile-builder"); ?>
|
|
|
|
|
|
|
1114 |
<?php __("You are currently logged in as %1s. You don't need another account. %2s", "profile-builder"); ?>
|
1115 |
<?php __("Log out of this account.", "profile-builder"); ?>
|
1116 |
+
<?php __("Users cannot currently register themselves, but you can manually create users here.", "profile-builder"); ?>
|
1117 |
+
<?php __("This message is only visible by administrators", "profile-builder"); ?>
|
1118 |
+
<?php __("Users can register themselves or you can manually create users here.", "profile-builder"); ?>
|
1119 |
+
<?php __("Only an administrator can add new users.", "profile-builder"); ?>
|
1120 |
<?php __("You are not allowed to do this.", "profile-builder"); ?>
|
1121 |
+
<?php __("There was an error in the submitted form", "profile-builder"); ?>
|
1122 |
+
<?php __("Your profile has been successfully updated!", "profile-builder"); ?>
|
1123 |
<?php __("The account %1s has been successfully created!", "profile-builder"); ?>
|
1124 |
<?php __("Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.", "profile-builder"); ?>
|
1125 |
<?php __("Before you can access your account %1s, an administrator has to approve it. You will be notified via email.", "profile-builder"); ?>
|
|
|
|
|
1126 |
<?php __("Add User", "profile-builder"); ?>
|
1127 |
<?php __("Send these credentials via email.", "profile-builder"); ?>
|
1128 |
+
<?php __("There are no other users to edit", "profile-builder"); ?>
|
1129 |
<?php __("User to edit:", "profile-builder"); ?>
|
1130 |
<?php __("Select User", "profile-builder"); ?>
|
|
|
1131 |
<?php __("Something went wrong. Please try again!", "profile-builder"); ?>
|
1132 |
<?php __("ERROR", "profile-builder"); ?>
|
1133 |
<?php __("The password you entered is incorrect.", "profile-builder"); ?>
|
|
|
|
|
1134 |
<?php __("Invalid username.", "profile-builder"); ?>
|
1135 |
+
<?php __("Invalid username or email.", "profile-builder"); ?>
|
1136 |
+
<?php __("Invalid email.", "profile-builder"); ?>
|
1137 |
<?php __("Password Lost and Found.", "profile-builder"); ?>
|
1138 |
<?php __("Lost your password ?", "profile-builder"); ?>
|
1139 |
<?php __("Both fields are empty.", "profile-builder"); ?>
|
|
|
|
|
1140 |
<?php __("Log out of this account", "profile-builder"); ?>
|
1141 |
<?php __("Log out »", "profile-builder"); ?>
|
1142 |
<?php __("You are currently logged in as %1$s. %2$s", "profile-builder"); ?>
|
1143 |
+
<?php __("Username or Email", "profile-builder"); ?>
|
1144 |
+
<?php __("Lost your password?", "profile-builder"); ?>
|
1145 |
<?php __("You are currently logged in as %s. ", "profile-builder"); ?>
|
1146 |
<?php __("Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature.", "profile-builder"); ?>
|
1147 |
<?php __("Reset Password", "profile-builder"); ?>
|
|
|
1148 |
<?php __("Please enter your username or email address.", "profile-builder"); ?>
|
1149 |
<?php __("Username or E-mail", "profile-builder"); ?>
|
1150 |
+
<?php __("Please enter your email address.", "profile-builder"); ?>
|
1151 |
<?php __("You will receive a link to create a new password via email.", "profile-builder"); ?>
|
1152 |
<?php __("Get New Password", "profile-builder"); ?>
|
1153 |
<?php __("Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s", "profile-builder"); ?>
|
1156 |
<?php __("Password Successfully Reset for %1$s on \"%2$s\"", "profile-builder"); ?>
|
1157 |
<?php __("%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s", "profile-builder"); ?>
|
1158 |
<?php __("You are already logged in. You can change your password on the edit profile form.", "profile-builder"); ?>
|
1159 |
+
<?php __("The password must not be empty!", "profile-builder"); ?>
|
|
|
|
|
|
|
|
|
|
|
1160 |
<?php __("The entered passwords don't match!", "profile-builder"); ?>
|
1161 |
<?php __("The password must have the minimum length of %s characters", "profile-builder"); ?>
|
1162 |
<?php __("The password must have a minimum strength of %s", "profile-builder"); ?>
|
1163 |
<?php __("Your password has been successfully changed!", "profile-builder"); ?>
|
1164 |
+
<?php __("The username entered wasn't found in the database!", "profile-builder"); ?>
|
1165 |
+
<?php __("Please check that you entered the correct username.", "profile-builder"); ?>
|
1166 |
+
<?php __("The email address entered wasn't found in the database!", "profile-builder"); ?>
|
1167 |
+
<?php __("Please check that you entered the correct email address.", "profile-builder"); ?>
|
1168 |
+
<?php __("Check your e-mail for the confirmation link.", "profile-builder"); ?>
|
1169 |
+
<?php __("There was an error while trying to send the activation link to %1$s!", "profile-builder"); ?>
|
1170 |
<?php __("ERROR:", "profile-builder"); ?>
|
1171 |
<?php __("Invalid key!", "profile-builder"); ?>
|
1172 |
<?php __("Invalid activation key!", "profile-builder"); ?>
|
1173 |
<?php __("This username is now active!", "profile-builder"); ?>
|
1174 |
+
<?php __("There was an error while trying to activate the user.", "profile-builder"); ?>
|
|
|
1175 |
<?php __("Your email was successfully confirmed.", "profile-builder"); ?>
|
1176 |
<?php __("Before you can access your account, an administrator needs to approve it. You will be notified via email.", "profile-builder"); ?>
|
1177 |
+
<?php __("This username is already activated!", "profile-builder"); ?>
|
1178 |
+
<?php __("Could not create user!", "profile-builder"); ?>
|
1179 |
<?php __("Modules", "profile-builder"); ?>
|
1180 |
<?php __("Here you can activate / deactivate available modules for Profile Builder.", "profile-builder"); ?>
|
1181 |
<?php __("Name/Description", "profile-builder"); ?>
|
1280 |
<?php __("Admin Approval", "profile-builder"); ?>
|
1281 |
<?php __("Do you want to", "profile-builder"); ?>
|
1282 |
<?php __("Your session has expired! Please refresh the page and try again.", "profile-builder"); ?>
|
|
|
|
|
|
|
1283 |
<?php __("You either don't have permission for that action or there was an error!", "profile-builder"); ?>
|
1284 |
+
<?php __("User successfully deleted!", "profile-builder"); ?>
|
1285 |
+
<?php __("User successfully unapproved!", "profile-builder"); ?>
|
1286 |
+
<?php __("User successfully approved!", "profile-builder"); ?>
|
1287 |
<?php __("Users successfully deleted!", "profile-builder"); ?>
|
1288 |
+
<?php __("Users successfully unapproved!", "profile-builder"); ?>
|
1289 |
+
<?php __("Users successfully approved!", "profile-builder"); ?>
|
|
|
1290 |
<?php __("Your account on %1$s has been unapproved!", "profile-builder"); ?>
|
1291 |
<?php __("unapproved", "profile-builder"); ?>
|
1292 |
<?php __("An administrator has just unapproved your account on %1$s (%2$s).", "profile-builder"); ?>
|
1293 |
+
<?php __("Your account on %1$s has been approved!", "profile-builder"); ?>
|
1294 |
+
<?php __("approved", "profile-builder"); ?>
|
1295 |
+
<?php __("An administrator has just approved your account on %1$s (%2$s).", "profile-builder"); ?>
|
1296 |
<?php __("Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature.", "profile-builder"); ?>
|
1297 |
<?php __("Your account has been successfully created!", "profile-builder"); ?>
|
1298 |
<?php __("The approval link is not valid! Please <a href=\"%s\"> log in </a> to approve the user manually. ", "profile-builder"); ?>
|
1299 |
<?php __("delete this user?", "profile-builder"); ?>
|
|
|
|
|
1300 |
<?php __("approve this user?", "profile-builder"); ?>
|
1301 |
<?php __("Approve", "profile-builder"); ?>
|
1302 |
+
<?php __("unapprove this user?", "profile-builder"); ?>
|
1303 |
+
<?php __("Unapprove", "profile-builder"); ?>
|
1304 |
<?php __("Firstname", "profile-builder"); ?>
|
1305 |
<?php __("Lastname", "profile-builder"); ?>
|
1306 |
<?php __("Role", "profile-builder"); ?>
|
1307 |
<?php __("Registered", "profile-builder"); ?>
|
1308 |
<?php __("User-status", "profile-builder"); ?>
|
|
|
|
|
|
|
1309 |
<?php __("Sorry, but you don't have permission to do that!", "profile-builder"); ?>
|
1310 |
+
<?php __("Do you want to bulk delete the selected users?", "profile-builder"); ?>
|
1311 |
+
<?php __("Do you want to bulk unapprove the selected users?", "profile-builder"); ?>
|
1312 |
+
<?php __("Do you want to bulk approve the selected users?", "profile-builder"); ?>
|
1313 |
<?php __("Unapproved", "profile-builder"); ?>
|
1314 |
+
<?php __("Approved", "profile-builder"); ?>
|
1315 |
<?php __("All Users", "profile-builder"); ?>
|
1316 |
<?php __("Conditional Logic", "profile-builder"); ?>
|
1317 |
<?php __("Conditional Rules", "profile-builder"); ?>
|
1330 |
<?php __("Text", "profile-builder"); ?>
|
1331 |
<?php __("Template", "profile-builder"); ?>
|
1332 |
<?php __("Select Template", "profile-builder"); ?>
|
1333 |
+
<?php __("You must be logged in to view the comments.", "profile-builder"); ?>
|
1334 |
+
<?php __("Comments are restricted for your user role.", "profile-builder"); ?>
|
1335 |
<?php __("This content is restricted for your user role.", "profile-builder"); ?>
|
1336 |
+
<?php __("You must be logged in to view this content.", "profile-builder"); ?>
|
1337 |
<?php __("Display Options", "profile-builder"); ?>
|
1338 |
<?php __("Message", "profile-builder"); ?>
|
1339 |
<?php __("Redirect", "profile-builder"); ?>
|
1369 |
<?php __("Confirm Email", "profile-builder"); ?>
|
1370 |
<?php __("resend the activation link?", "profile-builder"); ?>
|
1371 |
<?php __("Resend Activation Email", "profile-builder"); ?>
|
1372 |
+
<?php __("The selected users have had their activation emails resent", "profile-builder"); ?>
|
1373 |
+
<?php __("The selected users have been activated", "profile-builder"); ?>
|
1374 |
<?php __("%s couldn't be deleted", "profile-builder"); ?>
|
1375 |
<?php __("All users have been successfully deleted", "profile-builder"); ?>
|
|
|
|
|
1376 |
<?php __("Users with Unconfirmed Email Address", "profile-builder"); ?>
|
|
|
|
|
1377 |
<?php __("Email notification resent to user", "profile-builder"); ?>
|
1378 |
+
<?php __("The selected user couldn't be deleted", "profile-builder"); ?>
|
1379 |
+
<?php __("There was an error performing that action!", "profile-builder"); ?>
|
1380 |
<?php __("[%1$s] Activate %2$s", "profile-builder"); ?>
|
1381 |
<?php __("To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login.", "profile-builder"); ?>
|
|
|
1382 |
<?php __("There was an error while trying to activate the user", "profile-builder"); ?>
|
1383 |
+
<?php __("That username is already activated!", "profile-builder"); ?>
|
1384 |
<?php __("A new subscriber has (been) registered!", "profile-builder"); ?>
|
1385 |
<?php __("New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>", "profile-builder"); ?>
|
1386 |
<?php __("[%1$s] Your new account information", "profile-builder"); ?>
|
1387 |
<?php __("Your selected password at signup", "profile-builder"); ?>
|
|
|
1388 |
<?php __("Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and the password: %3$s.<br/><br/>Access your account: %4$s ", "profile-builder"); ?>
|
1389 |
+
<?php __("Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and your password is the one that you have selected during registration.<br/><br/>Access your account: %3$s ", "profile-builder"); ?>
|
1390 |
<?php __("The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!", "profile-builder"); ?>
|
1391 |
<?php __("This login widget lets you add a login form in the sidebar.", "profile-builder"); ?>
|
1392 |
<?php __("Profile Builder Login Widget", "profile-builder"); ?>
|
1416 |
<?php __("Capabilities", "profile-builder"); ?>
|
1417 |
<?php __("Users", "profile-builder"); ?>
|
1418 |
<?php __("Clone", "profile-builder"); ?>
|
|
|
1419 |
<?php __("Change Default", "profile-builder"); ?>
|
1420 |
<?php __("You can't delete the default role. Change it first.", "profile-builder"); ?>
|
1421 |
+
<?php __("You can't delete your role.", "profile-builder"); ?>
|
1422 |
<?php __("Edit User Roles", "profile-builder"); ?>
|
1423 |
<?php __("The usernames cannot be changed.", "profile-builder"); ?>
|
1424 |
<?php __("After Login", "profile-builder"); ?>
|
1478 |
<?php __("Registration with Admin Approval", "profile-builder"); ?>
|
1479 |
<?php __("<p>{{username}} has requested a password change via the password reset feature.</p>\n<p>His/her new password is: {{password}}</p>\n", "profile-builder"); ?>
|
1480 |
<?php __("Admin Notification for User Password Reset", "profile-builder"); ?>
|
1481 |
+
<?php __("<p>The user {{username}} has updated their profile and some of the fields require admin approval:</p>\n<br>\n{{modified_fields}}\n<br>\n<p>Access this link to approve changes: {{approval_url}}</p>\n", "profile-builder"); ?>
|
1482 |
+
<?php __("[{{site_name}}] A user has updated their profile. Some fields need approval", "profile-builder"); ?>
|
1483 |
+
<?php __("Admin Notification for Edit Profile Approved by Admin", "profile-builder"); ?>
|
1484 |
<?php __("Available Tags", "profile-builder"); ?>
|
1485 |
<?php __("User Fields Tags", "profile-builder"); ?>
|
1486 |
<?php __("Site Url", "profile-builder"); ?>
|
1497 |
<?php __("Reset Link", "profile-builder"); ?>
|
1498 |
<?php __("Approve User Url", "profile-builder"); ?>
|
1499 |
<?php __("Approve User Link", "profile-builder"); ?>
|
1500 |
+
<?php __("Approved Fields", "profile-builder"); ?>
|
1501 |
+
<?php __("Unapproved Fields", "profile-builder"); ?>
|
1502 |
+
<?php __("Modified Fields", "profile-builder"); ?>
|
1503 |
+
<?php __("Approval URL", "profile-builder"); ?>
|
1504 |
<?php __("The users selected password at signup", "profile-builder"); ?>
|
1505 |
<?php __("User Email Customizer", "profile-builder"); ?>
|
1506 |
<?php __("User Email Customizer Settings", "profile-builder"); ?>
|
1526 |
<?php __("<h3>Hi {{username}},</h3>\n<p>This notice confirms that your email was changed on {{site_name}}.</p>\n<p>If you did not change your email, please contact the Site Administrator at %s</p>\n<p>This email has been sent to {{user_email}}</p>\n<p>Regards,<br>\nAll at {{site_name}}<br>\n<a href=\"{{site_url}}\">{{site_url}}</a></p>", "profile-builder"); ?>
|
1527 |
<?php __("[{{site_name}}] Notice of Email Change", "profile-builder"); ?>
|
1528 |
<?php __("Changed Email Address Notification", "profile-builder"); ?>
|
1529 |
+
<?php __("<p>Your profile has been reviewed by an administrator:</p>\n<br>\n<p>Approved Fields: {{approved_fields}}</p>\n<p>Unapproved Fields: {{unapproved_fields}}</p>\n", "profile-builder"); ?>
|
1530 |
+
<?php __("[{{site_name}}] Your profile has been reviewed by an administrator", "profile-builder"); ?>
|
1531 |
+
<?php __("User Notification for Edit Profile Approved by Admin", "profile-builder"); ?>
|
1532 |
<?php __("Edit-profile Form", "profile-builder"); ?>
|
1533 |
<?php __("Add New", "profile-builder"); ?>
|
1534 |
<?php __("Add new Edit-profile Form", "profile-builder"); ?>
|
1541 |
<?php __("No Edit-profile Forms found in trash", "profile-builder"); ?>
|
1542 |
<?php __("Shortcode", "profile-builder"); ?>
|
1543 |
<?php __("(no title)", "profile-builder"); ?>
|
|
|
1544 |
<?php __("Use this shortcode on the page you want the form to be displayed:", "profile-builder"); ?>
|
1545 |
<?php __("<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!", "profile-builder"); ?>
|
1546 |
+
<?php __("The shortcode will be available after you publish this form.", "profile-builder"); ?>
|
1547 |
<?php __("Form Shortcode", "profile-builder"); ?>
|
1548 |
<?php __("Whether to redirect the user to a specific page or not", "profile-builder"); ?>
|
1549 |
<?php __("Display Messages", "profile-builder"); ?>
|
1606 |
<?php __("You do not have permission to view this user list.", "profile-builder"); ?>
|
1607 |
<?php __("You do not have the required user role to view this user list.", "profile-builder"); ?>
|
1608 |
<?php __("User not found", "profile-builder"); ?>
|
|
|
|
|
|
|
|
|
1609 |
<?php __("Jabber", "profile-builder"); ?>
|
1610 |
+
<?php __("Yim", "profile-builder"); ?>
|
1611 |
+
<?php __("Aim", "profile-builder"); ?>
|
1612 |
+
<?php __("Display Name", "profile-builder"); ?>
|
1613 |
+
<?php __("First/Lastname", "profile-builder"); ?>
|
1614 |
<?php __("Search Users by All Fields", "profile-builder"); ?>
|
1615 |
+
<?php __("Click here to see more information about this user.", "profile-builder"); ?>
|
1616 |
<?php __("Click here to see more information about this user", "profile-builder"); ?>
|
1617 |
<?php __("More...", "profile-builder"); ?>
|
|
|
1618 |
<?php __("View Map", "profile-builder"); ?>
|
1619 |
<?php __("Click here to go back", "profile-builder"); ?>
|
1620 |
<?php __("Back", "profile-builder"); ?>
|
1621 |
+
<?php __("You don't have any pagination settings on this userlisting!", "profile-builder"); ?>
|
1622 |
<?php __("«« First", "profile-builder"); ?>
|
1623 |
<?php __("« Prev", "profile-builder"); ?>
|
1624 |
<?php __("Next » ", "profile-builder"); ?>
|
1625 |
<?php __("Last »»", "profile-builder"); ?>
|
|
|
1626 |
<?php __("Show All", "profile-builder"); ?>
|
1627 |
<?php __("Choose...", "profile-builder"); ?>
|
1628 |
<?php __("No options available", "profile-builder"); ?>
|
1693 |
<?php __("For security reasons, you must pass the remote ip to reCAPTCHA!", "profile-builder"); ?>
|
1694 |
<?php __("To use reCAPTCHA you must get an API public key from:", "profile-builder"); ?>
|
1695 |
<?php __("Click the BACK button on your browser, and try again.", "profile-builder"); ?>
|
|
|
1696 |
<?php __("As an administrator you cannot change your role.", "profile-builder"); ?>
|
1697 |
+
<?php __("Only administrators can see this field on edit profile forms.", "profile-builder"); ?>
|
1698 |
<?php __("You cannot register this user role", "profile-builder"); ?>
|
1699 |
<?php __("This username already exists.", "profile-builder"); ?>
|
1700 |
<?php __("This username is invalid because it uses illegal characters.", "profile-builder"); ?>
|
translation/profile-builder.pot
CHANGED
@@ -25,7 +25,7 @@ msgstr ""
|
|
25 |
msgid "Choose (Single) User Listing to display under bbPress user Profile tab:"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: ../pb-add-on-bbpress/bbpress-page.php:82, ../pb-add-on-bbpress/bbpress-page.php:117, ../pb-add-on-woocommerce/woosync-page.php:80, ../pb-add-on-woocommerce/woosync-page.php:115, ../pb-add-on-
|
29 |
msgid "None"
|
30 |
msgstr ""
|
31 |
|
@@ -45,20 +45,20 @@ msgstr ""
|
|
45 |
msgid "Select Profile Builder Edit Profile form to replace the bbPress Profile Edit tab."
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: ../pb-add-on-bbpress/index.php:
|
49 |
-
msgid "
|
50 |
-
msgstr ""
|
51 |
-
|
52 |
-
#: ../pb-add-on-bbpress/index.php:164, ../pb-add-on-bbpress/index.php:170, ../pb-add-on-bbpress/index.php:185, ../pb-add-on-bbpress/index.php:236
|
53 |
-
msgid "Replies Created"
|
54 |
msgstr ""
|
55 |
|
56 |
#: ../pb-add-on-bbpress/index.php:168, ../pb-add-on-bbpress/index.php:183
|
57 |
msgid "Forum Role"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: ../pb-add-on-bbpress/index.php:
|
61 |
-
msgid "
|
|
|
|
|
|
|
|
|
62 |
msgstr ""
|
63 |
|
64 |
#: ../pb-add-on-buddypress/buddypress-page.php:26, ../pb-add-on-buddypress/buddypress-page.php:26
|
@@ -137,7 +137,7 @@ msgstr ""
|
|
137 |
msgid "BuddyPress Allow Custom Visibility"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: ../pb-add-on-buddypress/field-visibility.php:
|
141 |
msgid "This field can be seen by: "
|
142 |
msgstr ""
|
143 |
|
@@ -177,6 +177,18 @@ msgstr ""
|
|
177 |
msgid "BuddyPress is not installed and active. Import aborted!"
|
178 |
msgstr ""
|
179 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
#: ../pb-add-on-buddypress/import-bp-fields.php:44
|
181 |
msgid "Importing BuddyPress Field Settings to Profile Builder...<br><br>"
|
182 |
msgstr ""
|
@@ -189,63 +201,51 @@ msgstr ""
|
|
189 |
msgid "click here"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: ../pb-add-on-buddypress/
|
193 |
-
msgid "
|
194 |
-
msgstr ""
|
195 |
-
|
196 |
-
#: ../pb-add-on-buddypress/import-bp-fields.php:55
|
197 |
-
msgid "Done."
|
198 |
-
msgstr ""
|
199 |
-
|
200 |
-
#: ../pb-add-on-buddypress/import-bp-fields.php:55
|
201 |
-
msgid "Back to BuddyPress Settings page"
|
202 |
msgstr ""
|
203 |
|
204 |
#: ../pb-add-on-buddypress/index.php:222
|
205 |
msgid "Profile Builder Avatar field is disabled to allow use of BuddyPress Avatar."
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: ../pb-add-on-buddypress/index.php:
|
209 |
-
msgid "BuddyPress needs to be installed and activated for Profile Builder - BuddyPress Integration Add-on to work as expected!"
|
210 |
-
msgstr ""
|
211 |
-
|
212 |
-
#: ../pb-add-on-buddypress/index.php:508, ../pb-add-on-campaign-monitor-integration/admin/widget.php:226, ../pb-add-on-campaign-monitor-integration/admin/widget.php:228, admin/manage-fields.php:317
|
213 |
msgid "Name"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: ../pb-add-on-buddypress/index.php:
|
217 |
msgid "Username:"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: ../pb-add-on-buddypress/index.php:
|
221 |
msgid "First Name:"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: ../pb-add-on-buddypress/index.php:
|
225 |
msgid "Last Name:"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: ../pb-add-on-buddypress/index.php:
|
229 |
msgid "Nickname:"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: ../pb-add-on-buddypress/index.php:
|
233 |
msgid "Display name:"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: ../pb-add-on-buddypress/index.php:
|
237 |
msgid "Contact Info"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: ../pb-add-on-buddypress/index.php:
|
241 |
msgid "Website:"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: ../pb-add-on-buddypress/index.php:
|
245 |
msgid "About Yourself"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: ../pb-add-on-buddypress/index.php:
|
249 |
msgid "Biographical Info:"
|
250 |
msgstr ""
|
251 |
|
@@ -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 |
|
@@ -623,6 +623,26 @@ msgstr ""
|
|
623 |
msgid "Multi-Step Forms"
|
624 |
msgstr ""
|
625 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
626 |
#: ../pb-add-on-multi-step-forms/index.php:187
|
627 |
msgid "Multi-Step Forms options updated."
|
628 |
msgstr ""
|
@@ -643,30 +663,10 @@ msgstr ""
|
|
643 |
msgid "To enable it on Multiple Registration and Edit-Profile Forms you must add Break Points in each form page."
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: ../pb-add-on-multi-step-forms/index.php:196, ../pb-add-on-multi-step-forms/index.php:221
|
647 |
-
msgid "Pagination and Tabs:"
|
648 |
-
msgstr ""
|
649 |
-
|
650 |
-
#: ../pb-add-on-multi-step-forms/index.php:197, ../pb-add-on-multi-step-forms/index.php:222
|
651 |
-
msgid "Enable Pagination"
|
652 |
-
msgstr ""
|
653 |
-
|
654 |
-
#: ../pb-add-on-multi-step-forms/index.php:198, ../pb-add-on-multi-step-forms/index.php:223
|
655 |
-
msgid "Enable Tabs"
|
656 |
-
msgstr ""
|
657 |
-
|
658 |
-
#: ../pb-add-on-multi-step-forms/index.php:198, ../pb-add-on-multi-step-forms/index.php:223
|
659 |
-
msgid "Edit Tabs Title"
|
660 |
-
msgstr ""
|
661 |
-
|
662 |
#: ../pb-add-on-multi-step-forms/index.php:200
|
663 |
msgid "Update Multi-Step"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: ../pb-add-on-multi-step-forms/index.php:220
|
667 |
-
msgid "To enable MSF you must add Break Points."
|
668 |
-
msgstr ""
|
669 |
-
|
670 |
#: ../pb-add-on-multi-step-forms/index.php:454
|
671 |
msgid "Next"
|
672 |
msgstr ""
|
@@ -683,11 +683,11 @@ msgstr ""
|
|
683 |
msgid "Replace labels with placeholders:"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:324, admin/general-settings.php:113, admin/general-settings.php:126, admin/general-settings.php:175, admin/general-settings.php:222, admin/general-settings.php:296, admin/private-website.php:
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: ../pb-add-on-placeholder-labels/pbpl.php:172, ../pb-add-on-social-connect/index.php:325, admin/general-settings.php:127, admin/general-settings.php:176, admin/general-settings.php:221, admin/general-settings.php:295, admin/private-website.php:
|
691 |
msgid "No"
|
692 |
msgstr ""
|
693 |
|
@@ -983,6 +983,10 @@ msgstr ""
|
|
983 |
msgid "Ship to a different address?"
|
984 |
msgstr ""
|
985 |
|
|
|
|
|
|
|
|
|
986 |
#: ../pb-add-on-woocommerce/index.php:167, ../pb-add-on-woocommerce/index.php:736
|
987 |
msgid "Billing Address"
|
988 |
msgstr ""
|
@@ -999,7 +1003,7 @@ msgstr ""
|
|
999 |
msgid "Displays customer shipping fields in front-end. "
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: ../pb-add-on-woocommerce/index.php:246, ../pb-add-on-woocommerce/index.php:265, ../pb-add-on-woocommerce/index.php:
|
1003 |
msgid "Address line 2"
|
1004 |
msgstr ""
|
1005 |
|
@@ -1079,10 +1083,6 @@ msgstr ""
|
|
1079 |
msgid "Shipping "
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: ../pb-add-on-woocommerce/index.php:853
|
1083 |
-
msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
|
1084 |
-
msgstr ""
|
1085 |
-
|
1086 |
#: ../pb-add-on-woocommerce/woo-checkout-field-support.php:82
|
1087 |
msgid "Display on WooCommerce Checkout"
|
1088 |
msgstr ""
|
@@ -1119,212 +1119,6 @@ msgstr ""
|
|
1119 |
msgid "%s is also activated. You need to deactivate it before activating this version of the plugin."
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:11, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:11, ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:46
|
1123 |
-
msgid "Campaign Monitor"
|
1124 |
-
msgstr ""
|
1125 |
-
|
1126 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:38
|
1127 |
-
msgid "Campaign Monitor Integration"
|
1128 |
-
msgstr ""
|
1129 |
-
|
1130 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:58, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:94, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:340, assets/lib/wck-api/wordpress-creation-kit.php:343
|
1131 |
-
msgid "Save"
|
1132 |
-
msgstr ""
|
1133 |
-
|
1134 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:85
|
1135 |
-
msgid "Campaign Monitor API key:"
|
1136 |
-
msgstr ""
|
1137 |
-
|
1138 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:92, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:124
|
1139 |
-
msgid "The API key was successfully validated!"
|
1140 |
-
msgstr ""
|
1141 |
-
|
1142 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:96
|
1143 |
-
msgid "Either the API key is not valid or we could not connect to Campaign Monitor to validate it!"
|
1144 |
-
msgstr ""
|
1145 |
-
|
1146 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:100
|
1147 |
-
msgid "Enter your Campaign Monitor account API key."
|
1148 |
-
msgstr ""
|
1149 |
-
|
1150 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:126
|
1151 |
-
msgid "Select client:"
|
1152 |
-
msgstr ""
|
1153 |
-
|
1154 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:136
|
1155 |
-
msgid "Loading clients..."
|
1156 |
-
msgstr ""
|
1157 |
-
|
1158 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:148
|
1159 |
-
msgid "Select a client that you would like to edit."
|
1160 |
-
msgstr ""
|
1161 |
-
|
1162 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:186
|
1163 |
-
msgid "No clients found"
|
1164 |
-
msgstr ""
|
1165 |
-
|
1166 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:188
|
1167 |
-
msgid "Select a client..."
|
1168 |
-
msgstr ""
|
1169 |
-
|
1170 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:266, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:274
|
1171 |
-
msgid "Client List"
|
1172 |
-
msgstr ""
|
1173 |
-
|
1174 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:267, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:275, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:61, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:68
|
1175 |
-
msgid "Fields Count"
|
1176 |
-
msgstr ""
|
1177 |
-
|
1178 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:348
|
1179 |
-
msgid "Retrieves changes made in your Campaign Monitor account and matches it with the saved data from the add-on. This does not save the new data, so you will have to manually save."
|
1180 |
-
msgstr ""
|
1181 |
-
|
1182 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:348
|
1183 |
-
msgid "Synchronize client data"
|
1184 |
-
msgstr ""
|
1185 |
-
|
1186 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:349
|
1187 |
-
msgid "Change client"
|
1188 |
-
msgstr ""
|
1189 |
-
|
1190 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:413
|
1191 |
-
msgid "No lists were found."
|
1192 |
-
msgstr ""
|
1193 |
-
|
1194 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:437
|
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:858, ../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 |
-
|
1202 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:523, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:202
|
1203 |
-
msgid "Field Associations:"
|
1204 |
-
msgstr ""
|
1205 |
-
|
1206 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:579
|
1207 |
-
msgid "Associate each Campaign Monitor field with a Profile Builder field"
|
1208 |
-
msgstr ""
|
1209 |
-
|
1210 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:601, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:357
|
1211 |
-
msgid "Extra Options:"
|
1212 |
-
msgstr ""
|
1213 |
-
|
1214 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:609, ../pb-add-on-campaign-monitor-integration/admin/widget.php:236
|
1215 |
-
msgid "Resubscribe"
|
1216 |
-
msgstr ""
|
1217 |
-
|
1218 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:612, ../pb-add-on-campaign-monitor-integration/admin/widget.php:239
|
1219 |
-
msgid "If the subscriber is in an inactive state or has previously been unsubscribed and you check the Resubscribe option, they will be re-added to the list. Therefore, this method should be used with caution and only where suitable."
|
1220 |
-
msgstr ""
|
1221 |
-
|
1222 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:656
|
1223 |
-
msgid "Campaign Monitor API key is empty"
|
1224 |
-
msgstr ""
|
1225 |
-
|
1226 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:658
|
1227 |
-
msgid "Campaign Monitor API key is invalid"
|
1228 |
-
msgstr ""
|
1229 |
-
|
1230 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:42, ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:60, ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:63
|
1231 |
-
msgid "Campaign Monitor List"
|
1232 |
-
msgstr ""
|
1233 |
-
|
1234 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:42
|
1235 |
-
msgid "Please enter a Campaign Monitor API key <a href=\"%s\">here</a>."
|
1236 |
-
msgstr ""
|
1237 |
-
|
1238 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:46
|
1239 |
-
msgid "Something went wrong. Either the API key is invalid or we could not connect to Campaign Monitor to validate the key."
|
1240 |
-
msgstr ""
|
1241 |
-
|
1242 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:52, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:52, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:38
|
1243 |
-
msgid "Select a list..."
|
1244 |
-
msgstr ""
|
1245 |
-
|
1246 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:60
|
1247 |
-
msgid "Select in which Campaign Monitor list you wish to add a new subscriber"
|
1248 |
-
msgstr ""
|
1249 |
-
|
1250 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:61, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:62, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:49
|
1251 |
-
msgid "Hide on Edit Profile"
|
1252 |
-
msgstr ""
|
1253 |
-
|
1254 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:61, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:62, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:49
|
1255 |
-
msgid "If checked this field will not be displayed on edit profile forms"
|
1256 |
-
msgstr ""
|
1257 |
-
|
1258 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:63
|
1259 |
-
msgid "We couldn't find any lists in your Campaign Monitor settings."
|
1260 |
-
msgstr ""
|
1261 |
-
|
1262 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:83
|
1263 |
-
msgid ""
|
1264 |
-
"Please select at least one Campaign Monitor list \n"
|
1265 |
-
""
|
1266 |
-
msgstr ""
|
1267 |
-
|
1268 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:14
|
1269 |
-
msgid "Profile Builder Campaign Monitor Widget"
|
1270 |
-
msgstr ""
|
1271 |
-
|
1272 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:15
|
1273 |
-
msgid "Adds a basic subscribe form so that your users can subscribe to your Campaign Monitor lists"
|
1274 |
-
msgstr ""
|
1275 |
-
|
1276 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:68
|
1277 |
-
msgid "Something went wrong. Either the Campaign Monitor API key is missing or it is invalid."
|
1278 |
-
msgstr ""
|
1279 |
-
|
1280 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:93, ../pb-add-on-mailchimp-integration/admin/widget.php:91, ../pb-add-on-mailchimp-integration/admin/widget.php:93, ../pb-add-on-mailchimp-integration/admin/widget.php:98
|
1281 |
-
msgid "%s"
|
1282 |
-
msgstr ""
|
1283 |
-
|
1284 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:157, ../pb-add-on-mailchimp-integration/admin/widget.php:158
|
1285 |
-
msgid "Submit"
|
1286 |
-
msgstr ""
|
1287 |
-
|
1288 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:182, ../pb-add-on-mailchimp-integration/admin/widget.php:185
|
1289 |
-
msgid "Subscribe to Newsletter"
|
1290 |
-
msgstr ""
|
1291 |
-
|
1292 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:191, ../pb-add-on-mailchimp-integration/admin/widget.php:193
|
1293 |
-
msgid "Title"
|
1294 |
-
msgstr ""
|
1295 |
-
|
1296 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:197, ../pb-add-on-mailchimp-integration/admin/widget.php:198
|
1297 |
-
msgid "Select the list your new subscriber will be added to"
|
1298 |
-
msgstr ""
|
1299 |
-
|
1300 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:202
|
1301 |
-
msgid "Select list..."
|
1302 |
-
msgstr ""
|
1303 |
-
|
1304 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:208
|
1305 |
-
msgid "No lists found"
|
1306 |
-
msgstr ""
|
1307 |
-
|
1308 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:213, ../pb-add-on-mailchimp-integration/admin/widget.php:216
|
1309 |
-
msgid "Select which fields to show"
|
1310 |
-
msgstr ""
|
1311 |
-
|
1312 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:219, ../pb-add-on-campaign-monitor-integration/admin/widget.php:221
|
1313 |
-
msgid "E-mail address"
|
1314 |
-
msgstr ""
|
1315 |
-
|
1316 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:225
|
1317 |
-
msgid "fullname"
|
1318 |
-
msgstr ""
|
1319 |
-
|
1320 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:231
|
1321 |
-
msgid "Extra options"
|
1322 |
-
msgstr ""
|
1323 |
-
|
1324 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:245
|
1325 |
-
msgid "The Campaign Monitor API key is either missing or is invalid."
|
1326 |
-
msgstr ""
|
1327 |
-
|
1328 |
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29
|
1329 |
msgid "Communication Preferences"
|
1330 |
msgstr ""
|
@@ -1373,14 +1167,14 @@ msgstr ""
|
|
1373 |
msgid "Uploaded file is not valid json!"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: ../pb-add-on-import-export/inc/class-pbie-import.php:82, ../pb-add-on-labels-edit/inc/class-pble-import.php:48
|
1377 |
-
msgid "Import successfully!"
|
1378 |
-
msgstr ""
|
1379 |
-
|
1380 |
#: ../pb-add-on-import-export/inc/class-pbie-import.php:88, ../pb-add-on-labels-edit/inc/class-pble-import.php:54
|
1381 |
msgid "Please select a .json file to import!"
|
1382 |
msgstr ""
|
1383 |
|
|
|
|
|
|
|
|
|
1384 |
#: ../pb-add-on-labels-edit/inc/class-pble-import.php:48
|
1385 |
msgid "Page will refresh in 3 seconds..."
|
1386 |
msgstr ""
|
@@ -1393,18 +1187,26 @@ msgstr ""
|
|
1393 |
msgid "MailChimp Integration"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:
|
1397 |
-
msgid "
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:
|
1401 |
-
msgid "
|
1402 |
msgstr ""
|
1403 |
|
1404 |
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:82
|
1405 |
msgid "We couldn't find any lists"
|
1406 |
msgstr ""
|
1407 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1408 |
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:119
|
1409 |
msgid "MailChimp API Key:"
|
1410 |
msgstr ""
|
@@ -1413,6 +1215,10 @@ msgstr ""
|
|
1413 |
msgid "Either the API key is not valid or we could not connect to MailChimp to validate it!"
|
1414 |
msgstr ""
|
1415 |
|
|
|
|
|
|
|
|
|
1416 |
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:129
|
1417 |
msgid "Enter a MailChimp API key. You can create keys in your MailChimp account."
|
1418 |
msgstr ""
|
@@ -1421,6 +1227,14 @@ msgstr ""
|
|
1421 |
msgid "Edit this item"
|
1422 |
msgstr ""
|
1423 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1424 |
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:211
|
1425 |
msgid "This field is required in MailChimp"
|
1426 |
msgstr ""
|
@@ -1437,6 +1251,10 @@ msgstr ""
|
|
1437 |
msgid "Associate each MailChimp group with a Profile Builder field"
|
1438 |
msgstr ""
|
1439 |
|
|
|
|
|
|
|
|
|
1440 |
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:366, ../pb-add-on-mailchimp-integration/admin/widget.php:229
|
1441 |
msgid "Double Opt-In"
|
1442 |
msgstr ""
|
@@ -1453,20 +1271,24 @@ msgstr ""
|
|
1453 |
msgid "If checked will enable GDPR on this list. <a href=\"%s\" target=\"_blank\">You must also enable GDPR on the list from mailchimp</a>"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:
|
1457 |
-
msgid "
|
1458 |
msgstr ""
|
1459 |
|
1460 |
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:430
|
1461 |
msgid "MailChimp API key is invalid"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:
|
1465 |
-
msgid "
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:
|
1469 |
-
msgid "
|
|
|
|
|
|
|
|
|
1470 |
msgstr ""
|
1471 |
|
1472 |
#: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:60
|
@@ -1481,8 +1303,16 @@ msgstr ""
|
|
1481 |
msgid "If checked the Subscribe checkbox in the front-end will be checked by default on register forms"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:
|
1485 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1486 |
msgstr ""
|
1487 |
|
1488 |
#: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:84
|
@@ -1499,14 +1329,38 @@ msgstr ""
|
|
1499 |
msgid "Adds a basic subscribe form so that your users can subscribe to your MailChimp lists"
|
1500 |
msgstr ""
|
1501 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1502 |
#: ../pb-add-on-mailchimp-integration/admin/widget.php:68, ../pb-add-on-mailchimp-integration/admin/widget.php:250
|
1503 |
msgid "Something went wrong. Either the MailChimp API key is missing or it is invalid."
|
1504 |
msgstr ""
|
1505 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1506 |
#: ../pb-add-on-mailchimp-integration/admin/widget.php:201
|
1507 |
msgid "Select..."
|
1508 |
msgstr ""
|
1509 |
|
|
|
|
|
|
|
|
|
1510 |
#: ../pb-add-on-mailchimp-integration/admin/widget.php:225
|
1511 |
msgid "Extra Options"
|
1512 |
msgstr ""
|
@@ -1519,20 +1373,20 @@ msgstr ""
|
|
1519 |
msgid "No list was found."
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:
|
1523 |
msgid "MailPoet List"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:
|
1527 |
-
msgid "
|
1528 |
msgstr ""
|
1529 |
|
1530 |
#: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:51
|
1531 |
msgid "We couldn't find any lists in your MailPoet settings."
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:
|
1535 |
-
msgid "
|
1536 |
msgstr ""
|
1537 |
|
1538 |
#: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:73
|
@@ -1557,46 +1411,46 @@ msgstr ""
|
|
1557 |
msgid "Check this to allow users to create their own options beside the pre-existing ones."
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: ../pb-add-on-social-connect/facebook/facebook.php:32
|
1561 |
-
msgid "Link with Facebook"
|
1562 |
-
msgstr ""
|
1563 |
-
|
1564 |
#: ../pb-add-on-social-connect/facebook/facebook.php:38
|
1565 |
msgid "Sign in with Facebook"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: ../pb-add-on-social-connect/
|
1569 |
-
msgid "Link with
|
1570 |
msgstr ""
|
1571 |
|
1572 |
#: ../pb-add-on-social-connect/google/google.php:37
|
1573 |
msgid "Sign in with Google"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: ../pb-add-on-social-connect/
|
1577 |
-
msgid "Link with
|
1578 |
msgstr ""
|
1579 |
|
1580 |
#: ../pb-add-on-social-connect/linkedin/linkedin.php:46
|
1581 |
msgid "Sign in with LinkedIn"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
-
#: ../pb-add-on-social-connect/
|
1585 |
-
msgid "
|
1586 |
msgstr ""
|
1587 |
|
1588 |
#: ../pb-add-on-social-connect/twitter/twitter.php:58
|
1589 |
msgid "Error Receiving Request Token"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: ../pb-add-on-social-connect/twitter/twitter.php:
|
1593 |
-
msgid "
|
1594 |
msgstr ""
|
1595 |
|
1596 |
#: ../pb-add-on-social-connect/twitter/twitter.php:148
|
1597 |
msgid "Sign in with Twitter"
|
1598 |
msgstr ""
|
1599 |
|
|
|
|
|
|
|
|
|
1600 |
#: admin/add-ons.php:10, admin/add-ons.php:10, admin/add-ons.php:193
|
1601 |
msgid "Add-Ons"
|
1602 |
msgstr ""
|
@@ -1613,28 +1467,28 @@ msgstr ""
|
|
1613 |
msgid "Translate your Profile Builder forms with a WordPress translation plugin that anyone can use. It offers a simpler way to translate WordPress sites, with full support for WooCommerce and site builders."
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#: admin/add-ons.php:
|
1617 |
-
msgid "
|
|
|
|
|
|
|
|
|
1618 |
msgstr ""
|
1619 |
|
1620 |
#: admin/add-ons.php:88, admin/add-ons.php:159, admin/add-ons.php:207, admin/add-ons.php:293, admin/pms-cross-promotion.php:90, admin/pms-cross-promotion.php:118, admin/pms-cross-promotion.php:197
|
1621 |
msgid "Deactivate"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
-
#: admin/add-ons.php:
|
1625 |
-
msgid "
|
1626 |
msgstr ""
|
1627 |
|
1628 |
#: admin/add-ons.php:95, admin/add-ons.php:166, admin/pms-cross-promotion.php:87, admin/pms-cross-promotion.php:125, admin/pms-cross-promotion.php:204
|
1629 |
msgid "Plugin is <strong>active</strong>"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: admin/add-ons.php:
|
1633 |
-
msgid "
|
1634 |
-
msgstr ""
|
1635 |
-
|
1636 |
-
#: admin/add-ons.php:104, admin/add-ons.php:175, admin/add-ons.php:313, admin/pms-cross-promotion.php:141, admin/pms-cross-promotion.php:220
|
1637 |
-
msgid "Compatible with your version of Profile Builder."
|
1638 |
msgstr ""
|
1639 |
|
1640 |
#: admin/add-ons.php:109, admin/add-ons.php:180, admin/pms-cross-promotion.php:146
|
@@ -1677,28 +1531,28 @@ msgstr ""
|
|
1677 |
msgid "Add-On has been deactivated."
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#: admin/add-ons.php:
|
1681 |
-
msgid "
|
1682 |
-
msgstr ""
|
1683 |
-
|
1684 |
-
#: admin/add-ons.php:263
|
1685 |
-
msgid "Available with All Versions"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
#: admin/add-ons.php:265
|
1689 |
msgid "Available with the Hobbyist and Pro Versions"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: admin/add-ons.php:
|
1693 |
-
msgid "Available with
|
1694 |
msgstr ""
|
1695 |
|
1696 |
-
#: admin/add-ons.php:
|
1697 |
-
msgid "
|
1698 |
msgstr ""
|
1699 |
|
1700 |
-
#: admin/add-ons.php:
|
1701 |
-
msgid "
|
|
|
|
|
|
|
|
|
1702 |
msgstr ""
|
1703 |
|
1704 |
#: admin/add-ons.php:322
|
@@ -1709,22 +1563,22 @@ msgstr ""
|
|
1709 |
msgid "Not compatible with Profile Builder"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: admin/add-ons.php:
|
1713 |
-
msgid "
|
1714 |
-
msgstr ""
|
1715 |
-
|
1716 |
-
#: admin/add-ons.php:331
|
1717 |
-
msgid "Not compatible with your version of Profile Builder."
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: admin/add-ons.php:
|
1721 |
-
msgid "
|
1722 |
msgstr ""
|
1723 |
|
1724 |
#: admin/add-ons.php:337
|
1725 |
msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
|
1726 |
msgstr ""
|
1727 |
|
|
|
|
|
|
|
|
|
1728 |
#: admin/admin-bar.php:10
|
1729 |
msgid "Show/Hide the Admin Bar on the Front-End"
|
1730 |
msgstr ""
|
@@ -1789,14 +1643,14 @@ msgstr ""
|
|
1789 |
msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: admin/admin-functions.php:187
|
1793 |
-
msgid "Add Field"
|
1794 |
-
msgstr ""
|
1795 |
-
|
1796 |
#: admin/admin-functions.php:189
|
1797 |
msgid "Save Settings"
|
1798 |
msgstr ""
|
1799 |
|
|
|
|
|
|
|
|
|
1800 |
#: admin/admin-functions.php:200
|
1801 |
msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
|
1802 |
msgstr ""
|
@@ -1833,14 +1687,6 @@ msgstr ""
|
|
1833 |
msgid "The best way to add front-end registration, edit profile and login forms."
|
1834 |
msgstr ""
|
1835 |
|
1836 |
-
#: admin/basic-info.php:39
|
1837 |
-
msgid "Speed up the setup process by automatically creating the form pages:"
|
1838 |
-
msgstr ""
|
1839 |
-
|
1840 |
-
#: admin/basic-info.php:40
|
1841 |
-
msgid "Create Form Pages"
|
1842 |
-
msgstr ""
|
1843 |
-
|
1844 |
#: admin/basic-info.php:44
|
1845 |
msgid "You can see all the pages with Profile Builder form shortcodes here:"
|
1846 |
msgstr ""
|
@@ -1849,6 +1695,14 @@ msgstr ""
|
|
1849 |
msgid "View Form Pages"
|
1850 |
msgstr ""
|
1851 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1852 |
#: admin/basic-info.php:51
|
1853 |
msgid "Login Form"
|
1854 |
msgstr ""
|
@@ -1949,14 +1803,14 @@ msgstr ""
|
|
1949 |
msgid "With Extra Profile Fields you can create the exact registration form your project needs."
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#: admin/basic-info.php:113
|
1953 |
-
msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
|
1954 |
-
msgstr ""
|
1955 |
-
|
1956 |
#: admin/basic-info.php:115
|
1957 |
msgid "Get started with extra fields"
|
1958 |
msgstr ""
|
1959 |
|
|
|
|
|
|
|
|
|
1960 |
#: admin/basic-info.php:118
|
1961 |
msgid "Avatar Upload"
|
1962 |
msgstr ""
|
@@ -2053,14 +1907,14 @@ msgstr ""
|
|
2053 |
msgid "User Listing"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: admin/basic-info.php:161
|
2057 |
-
msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
|
2058 |
-
msgstr ""
|
2059 |
-
|
2060 |
#: admin/basic-info.php:163
|
2061 |
msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
|
2062 |
msgstr ""
|
2063 |
|
|
|
|
|
|
|
|
|
2064 |
#: admin/basic-info.php:167, admin/general-settings.php:17, modules/modules.php:94
|
2065 |
msgid "Email Customizer"
|
2066 |
msgstr ""
|
@@ -2317,14 +2171,14 @@ msgstr ""
|
|
2317 |
msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
|
2318 |
msgstr ""
|
2319 |
|
2320 |
-
#: admin/manage-fields.php:160
|
2321 |
-
msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
|
2322 |
-
msgstr ""
|
2323 |
-
|
2324 |
#: admin/manage-fields.php:163
|
2325 |
msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this will only affect subsequent entries"
|
2326 |
msgstr ""
|
2327 |
|
|
|
|
|
|
|
|
|
2328 |
#: admin/manage-fields.php:177
|
2329 |
msgid "Field Title"
|
2330 |
msgstr ""
|
@@ -4261,21 +4115,21 @@ msgstr ""
|
|
4261 |
msgid "Zimbabwe Dollar"
|
4262 |
msgstr ""
|
4263 |
|
4264 |
-
#: admin/manage-fields.php:
|
4265 |
msgid ""
|
4266 |
-
"
|
4267 |
""
|
4268 |
msgstr ""
|
4269 |
|
4270 |
-
#: admin/manage-fields.php:
|
4271 |
msgid ""
|
4272 |
-
"
|
4273 |
""
|
4274 |
msgstr ""
|
4275 |
|
4276 |
-
#: admin/manage-fields.php:
|
4277 |
msgid ""
|
4278 |
-
"
|
4279 |
""
|
4280 |
msgstr ""
|
4281 |
|
@@ -4285,9 +4139,9 @@ msgid ""
|
|
4285 |
""
|
4286 |
msgstr ""
|
4287 |
|
4288 |
-
#: admin/manage-fields.php:
|
4289 |
msgid ""
|
4290 |
-
"The entered
|
4291 |
""
|
4292 |
msgstr ""
|
4293 |
|
@@ -4297,21 +4151,21 @@ msgid ""
|
|
4297 |
""
|
4298 |
msgstr ""
|
4299 |
|
4300 |
-
#: admin/manage-fields.php:
|
4301 |
msgid ""
|
4302 |
-
"
|
4303 |
""
|
4304 |
msgstr ""
|
4305 |
|
4306 |
-
#: admin/manage-fields.php:
|
4307 |
msgid ""
|
4308 |
-
"You must enter the
|
4309 |
""
|
4310 |
msgstr ""
|
4311 |
|
4312 |
-
#: admin/manage-fields.php:
|
4313 |
msgid ""
|
4314 |
-
"You must enter
|
4315 |
""
|
4316 |
msgstr ""
|
4317 |
|
@@ -4321,15 +4175,15 @@ msgid ""
|
|
4321 |
""
|
4322 |
msgstr ""
|
4323 |
|
4324 |
-
#: admin/manage-fields.php:
|
4325 |
msgid ""
|
4326 |
-
"
|
4327 |
""
|
4328 |
msgstr ""
|
4329 |
|
4330 |
-
#: admin/manage-fields.php:
|
4331 |
msgid ""
|
4332 |
-
"
|
4333 |
""
|
4334 |
msgstr ""
|
4335 |
|
@@ -4339,15 +4193,15 @@ msgid ""
|
|
4339 |
""
|
4340 |
msgstr ""
|
4341 |
|
4342 |
-
#: admin/manage-fields.php:
|
4343 |
msgid ""
|
4344 |
-
"
|
4345 |
""
|
4346 |
msgstr ""
|
4347 |
|
4348 |
-
#: admin/manage-fields.php:
|
4349 |
msgid ""
|
4350 |
-
"The
|
4351 |
""
|
4352 |
msgstr ""
|
4353 |
|
@@ -4357,15 +4211,15 @@ msgid ""
|
|
4357 |
""
|
4358 |
msgstr ""
|
4359 |
|
4360 |
-
#: admin/manage-fields.php:
|
4361 |
msgid ""
|
4362 |
-
"
|
4363 |
""
|
4364 |
msgstr ""
|
4365 |
|
4366 |
-
#: admin/manage-fields.php:
|
4367 |
msgid ""
|
4368 |
-
"
|
4369 |
""
|
4370 |
msgstr ""
|
4371 |
|
@@ -4377,14 +4231,14 @@ msgstr ""
|
|
4377 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
4378 |
msgstr ""
|
4379 |
|
4380 |
-
#: admin/manage-fields.php:1342
|
4381 |
-
msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
|
4382 |
-
msgstr ""
|
4383 |
-
|
4384 |
#: admin/manage-fields.php:1344
|
4385 |
msgid "With Profile Builder Pro you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
|
4386 |
msgstr ""
|
4387 |
|
|
|
|
|
|
|
|
|
4388 |
#: admin/manage-fields.php:1441
|
4389 |
msgid "Search Location"
|
4390 |
msgstr ""
|
@@ -4453,58 +4307,62 @@ msgstr ""
|
|
4453 |
msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
|
4454 |
msgstr ""
|
4455 |
|
4456 |
-
#: admin/private-website.php:
|
4457 |
msgid "Private Website Settings"
|
4458 |
msgstr ""
|
4459 |
|
4460 |
-
#: admin/private-website.php:
|
4461 |
msgid "Enable Private Website"
|
4462 |
msgstr ""
|
4463 |
|
4464 |
-
#: admin/private-website.php:
|
4465 |
msgid "Activate Private Website. It will restrict the content, RSS and REST API for your website"
|
4466 |
msgstr ""
|
4467 |
|
4468 |
-
#: admin/private-website.php:
|
4469 |
msgid "Redirect to"
|
4470 |
msgstr ""
|
4471 |
|
4472 |
-
#: admin/private-website.php:
|
4473 |
msgid "Default WordPress login page"
|
4474 |
msgstr ""
|
4475 |
|
4476 |
-
#: admin/private-website.php:
|
4477 |
msgid "Redirects to this page if not logged in. We recommend this page contains the [wppb-login] shortcode."
|
4478 |
msgstr ""
|
4479 |
|
4480 |
-
#: admin/private-website.php:
|
4481 |
msgid "You can force access to wp-login.php so you don't get locked out of the site by accessing the link:"
|
4482 |
msgstr ""
|
4483 |
|
4484 |
-
#: admin/private-website.php:
|
4485 |
msgid "Allowed Pages"
|
4486 |
msgstr ""
|
4487 |
|
4488 |
-
#: admin/private-website.php:
|
4489 |
msgid "Allow these pages to be accessed even if you are not logged in"
|
4490 |
msgstr ""
|
4491 |
|
4492 |
-
#: admin/private-website.php:
|
4493 |
msgid "Hide all Menus"
|
4494 |
msgstr ""
|
4495 |
|
4496 |
-
#: admin/private-website.php:
|
4497 |
msgid "Hide all menu items if you are not logged in."
|
4498 |
msgstr ""
|
4499 |
|
4500 |
-
#: admin/private-website.php:
|
4501 |
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."
|
4502 |
msgstr ""
|
4503 |
|
4504 |
-
#: admin/private-website.php:
|
4505 |
msgid "Save Changes"
|
4506 |
msgstr ""
|
4507 |
|
|
|
|
|
|
|
|
|
4508 |
#: admin/register-version.php:14
|
4509 |
msgid "Register Your Version"
|
4510 |
msgstr ""
|
@@ -4513,10 +4371,6 @@ msgstr ""
|
|
4513 |
msgid "Register Version"
|
4514 |
msgstr ""
|
4515 |
|
4516 |
-
#: admin/register-version.php:22, admin/register-version.php:22
|
4517 |
-
msgid "Profile Builder Register"
|
4518 |
-
msgstr ""
|
4519 |
-
|
4520 |
#: admin/register-version.php:61
|
4521 |
msgid "Register your version of %s"
|
4522 |
msgstr ""
|
@@ -4533,12 +4387,16 @@ msgstr ""
|
|
4533 |
msgid " Serial Number:"
|
4534 |
msgstr ""
|
4535 |
|
4536 |
-
#: admin/register-version.php:
|
4537 |
-
msgid "The serial number
|
4538 |
msgstr ""
|
4539 |
|
4540 |
-
#: admin/register-version.php:
|
4541 |
-
msgid "The serial number
|
|
|
|
|
|
|
|
|
4542 |
msgstr ""
|
4543 |
|
4544 |
#: admin/register-version.php:81
|
@@ -4549,36 +4407,32 @@ msgstr ""
|
|
4549 |
msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
|
4550 |
msgstr ""
|
4551 |
|
4552 |
-
#: admin/register-version.php:
|
4553 |
-
msgid "The serial number couldn't be validated
|
4554 |
-
msgstr ""
|
4555 |
-
|
4556 |
-
#: admin/register-version.php:83
|
4557 |
-
msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
|
4558 |
msgstr ""
|
4559 |
|
4560 |
-
#: admin/register-version.php:
|
4561 |
-
msgid "The serial number
|
4562 |
msgstr ""
|
4563 |
|
4564 |
#: admin/register-version.php:87
|
4565 |
msgid "(e.g. CLPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
4566 |
msgstr ""
|
4567 |
|
4568 |
-
#: admin/register-version.php:
|
4569 |
-
msgid "<p>Your <strong>Profile Builder</strong>
|
4570 |
-
msgstr ""
|
4571 |
-
|
4572 |
-
#: admin/register-version.php:266
|
4573 |
-
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s</p>"
|
4574 |
msgstr ""
|
4575 |
|
4576 |
#: admin/register-version.php:268
|
4577 |
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %5$sDismiss%6$s</p>"
|
4578 |
msgstr ""
|
4579 |
|
4580 |
-
#: admin/register-version.php:
|
4581 |
-
msgid "<p>Your <strong>Profile Builder</strong> license
|
|
|
|
|
|
|
|
|
4582 |
msgstr ""
|
4583 |
|
4584 |
#: features/functions.php:318
|
@@ -4609,7 +4463,7 @@ msgstr ""
|
|
4609 |
msgid "This field is required"
|
4610 |
msgstr ""
|
4611 |
|
4612 |
-
#: features/functions.php:813, front-end/default-fields/recaptcha/recaptcha.php:
|
4613 |
msgid "Please enter a (valid) reCAPTCHA value"
|
4614 |
msgstr ""
|
4615 |
|
@@ -4645,38 +4499,46 @@ msgstr ""
|
|
4645 |
msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
|
4646 |
msgstr ""
|
4647 |
|
4648 |
-
#: front-end/class-formbuilder.php:
|
4649 |
-
msgid "
|
4650 |
msgstr ""
|
4651 |
|
4652 |
-
#: front-end/class-formbuilder.php:
|
4653 |
-
msgid "
|
4654 |
msgstr ""
|
4655 |
|
4656 |
-
#: front-end/class-formbuilder.php:
|
4657 |
-
msgid "
|
4658 |
msgstr ""
|
4659 |
|
4660 |
#: front-end/class-formbuilder.php:154
|
4661 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
4662 |
msgstr ""
|
4663 |
|
4664 |
-
#: front-end/class-formbuilder.php:
|
4665 |
-
msgid "
|
4666 |
msgstr ""
|
4667 |
|
4668 |
-
#: front-end/class-formbuilder.php:
|
4669 |
-
msgid "
|
4670 |
msgstr ""
|
4671 |
|
4672 |
-
#: front-end/class-formbuilder.php:
|
4673 |
-
msgid "
|
4674 |
msgstr ""
|
4675 |
|
4676 |
#: front-end/class-formbuilder.php:273, front-end/login.php:481
|
4677 |
msgid "You are not allowed to do this."
|
4678 |
msgstr ""
|
4679 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4680 |
#: front-end/class-formbuilder.php:329, front-end/class-formbuilder.php:336
|
4681 |
msgid "The account %1s has been successfully created!"
|
4682 |
msgstr ""
|
@@ -4689,14 +4551,6 @@ msgstr ""
|
|
4689 |
msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
|
4690 |
msgstr ""
|
4691 |
|
4692 |
-
#: front-end/class-formbuilder.php:361
|
4693 |
-
msgid "Your profile has been successfully updated!"
|
4694 |
-
msgstr ""
|
4695 |
-
|
4696 |
-
#: front-end/class-formbuilder.php:372
|
4697 |
-
msgid "There was an error in the submitted form"
|
4698 |
-
msgstr ""
|
4699 |
-
|
4700 |
#: front-end/class-formbuilder.php:429
|
4701 |
msgid "Add User"
|
4702 |
msgstr ""
|
@@ -4705,6 +4559,10 @@ msgstr ""
|
|
4705 |
msgid "Send these credentials via email."
|
4706 |
msgstr ""
|
4707 |
|
|
|
|
|
|
|
|
|
4708 |
#: front-end/class-formbuilder.php:710
|
4709 |
msgid "User to edit:"
|
4710 |
msgstr ""
|
@@ -4713,10 +4571,6 @@ msgstr ""
|
|
4713 |
msgid "Select User"
|
4714 |
msgstr ""
|
4715 |
|
4716 |
-
#: front-end/class-formbuilder.php:728
|
4717 |
-
msgid "There are no other users to edit"
|
4718 |
-
msgstr ""
|
4719 |
-
|
4720 |
#: front-end/class-formbuilder.php:751
|
4721 |
msgid "Something went wrong. Please try again!"
|
4722 |
msgstr ""
|
@@ -4729,16 +4583,16 @@ msgstr ""
|
|
4729 |
msgid "The password you entered is incorrect."
|
4730 |
msgstr ""
|
4731 |
|
4732 |
-
#: front-end/login.php:
|
4733 |
-
msgid "Invalid
|
4734 |
msgstr ""
|
4735 |
|
4736 |
#: front-end/login.php:319
|
4737 |
msgid "Invalid username or email."
|
4738 |
msgstr ""
|
4739 |
|
4740 |
-
#: front-end/login.php:
|
4741 |
-
msgid "Invalid
|
4742 |
msgstr ""
|
4743 |
|
4744 |
#: front-end/login.php:325
|
@@ -4753,14 +4607,6 @@ msgstr ""
|
|
4753 |
msgid "Both fields are empty."
|
4754 |
msgstr ""
|
4755 |
|
4756 |
-
#: front-end/login.php:395
|
4757 |
-
msgid "Username or Email"
|
4758 |
-
msgstr ""
|
4759 |
-
|
4760 |
-
#: front-end/login.php:429
|
4761 |
-
msgid "Lost your password?"
|
4762 |
-
msgstr ""
|
4763 |
-
|
4764 |
#: front-end/login.php:468, front-end/logout.php:25
|
4765 |
msgid "Log out of this account"
|
4766 |
msgstr ""
|
@@ -4773,6 +4619,14 @@ msgstr ""
|
|
4773 |
msgid "You are currently logged in as %1$s. %2$s"
|
4774 |
msgstr ""
|
4775 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4776 |
#: front-end/logout.php:15
|
4777 |
msgid "You are currently logged in as %s. "
|
4778 |
msgstr ""
|
@@ -4785,10 +4639,6 @@ msgstr ""
|
|
4785 |
msgid "Reset Password"
|
4786 |
msgstr ""
|
4787 |
|
4788 |
-
#: front-end/recover.php:115
|
4789 |
-
msgid "Please enter your email address."
|
4790 |
-
msgstr ""
|
4791 |
-
|
4792 |
#: front-end/recover.php:119
|
4793 |
msgid "Please enter your username or email address."
|
4794 |
msgstr ""
|
@@ -4797,6 +4647,10 @@ msgstr ""
|
|
4797 |
msgid "Username or E-mail"
|
4798 |
msgstr ""
|
4799 |
|
|
|
|
|
|
|
|
|
4800 |
#: front-end/recover.php:123
|
4801 |
msgid "You will receive a link to create a new password via email."
|
4802 |
msgstr ""
|
@@ -4821,36 +4675,16 @@ msgstr ""
|
|
4821 |
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
4822 |
msgstr ""
|
4823 |
|
4824 |
-
#: front-end/recover.php:232
|
4825 |
-
msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
|
4826 |
-
msgstr ""
|
4827 |
-
|
4828 |
-
#: front-end/recover.php:259
|
4829 |
-
msgid "You are already logged in. You can change your password on the edit profile form."
|
4830 |
-
msgstr ""
|
4831 |
-
|
4832 |
-
#: front-end/recover.php:282
|
4833 |
-
msgid "The username entered wasn't found in the database!"
|
4834 |
-
msgstr ""
|
4835 |
-
|
4836 |
-
#: front-end/recover.php:282
|
4837 |
-
msgid "Please check that you entered the correct username."
|
4838 |
-
msgstr ""
|
4839 |
-
|
4840 |
-
#: front-end/recover.php:295
|
4841 |
-
msgid "Check your e-mail for the confirmation link."
|
4842 |
-
msgstr ""
|
4843 |
-
|
4844 |
-
#: front-end/recover.php:309
|
4845 |
-
msgid "There was an error while trying to send the activation link to %1$s!"
|
4846 |
msgstr ""
|
4847 |
|
4848 |
-
#: front-end/recover.php:
|
4849 |
-
msgid "
|
4850 |
msgstr ""
|
4851 |
|
4852 |
-
#: front-end/recover.php:
|
4853 |
-
msgid "
|
4854 |
msgstr ""
|
4855 |
|
4856 |
#: front-end/recover.php:333
|
@@ -4869,8 +4703,28 @@ msgstr ""
|
|
4869 |
msgid "Your password has been successfully changed!"
|
4870 |
msgstr ""
|
4871 |
|
4872 |
-
#: front-end/recover.php:
|
4873 |
-
msgid "The
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4874 |
msgstr ""
|
4875 |
|
4876 |
#: front-end/recover.php:411
|
@@ -4889,12 +4743,8 @@ msgstr ""
|
|
4889 |
msgid "This username is now active!"
|
4890 |
msgstr ""
|
4891 |
|
4892 |
-
#: front-end/register.php:
|
4893 |
-
msgid "
|
4894 |
-
msgstr ""
|
4895 |
-
|
4896 |
-
#: front-end/register.php:74
|
4897 |
-
msgid "This username is already activated!"
|
4898 |
msgstr ""
|
4899 |
|
4900 |
#: front-end/register.php:124
|
@@ -4905,8 +4755,12 @@ msgstr ""
|
|
4905 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
4906 |
msgstr ""
|
4907 |
|
4908 |
-
#: front-end/register.php:
|
4909 |
-
msgid "
|
|
|
|
|
|
|
|
|
4910 |
msgstr ""
|
4911 |
|
4912 |
#: modules/modules.php:11, modules/modules.php:11, modules/modules.php:56
|
@@ -5325,44 +5179,32 @@ msgstr ""
|
|
5325 |
msgid "Your session has expired! Please refresh the page and try again."
|
5326 |
msgstr ""
|
5327 |
|
5328 |
-
#: features/admin-approval/admin-approval.php:
|
5329 |
-
msgid "
|
5330 |
-
msgstr ""
|
5331 |
-
|
5332 |
-
#: features/admin-approval/admin-approval.php:77
|
5333 |
-
msgid "User successfully unapproved!"
|
5334 |
msgstr ""
|
5335 |
|
5336 |
#: features/admin-approval/admin-approval.php:83
|
5337 |
msgid "User successfully deleted!"
|
5338 |
msgstr ""
|
5339 |
|
5340 |
-
#: features/admin-approval/admin-approval.php:
|
5341 |
-
msgid "
|
5342 |
-
msgstr ""
|
5343 |
-
|
5344 |
-
#: features/admin-approval/admin-approval.php:112
|
5345 |
-
msgid "Users successfully approved!"
|
5346 |
msgstr ""
|
5347 |
|
5348 |
-
#: features/admin-approval/admin-approval.php:
|
5349 |
-
msgid "
|
5350 |
msgstr ""
|
5351 |
|
5352 |
#: features/admin-approval/admin-approval.php:130
|
5353 |
msgid "Users successfully deleted!"
|
5354 |
msgstr ""
|
5355 |
|
5356 |
-
#: features/admin-approval/admin-approval.php:
|
5357 |
-
msgid "
|
5358 |
-
msgstr ""
|
5359 |
-
|
5360 |
-
#: features/admin-approval/admin-approval.php:151, features/admin-approval/admin-approval.php:154
|
5361 |
-
msgid "approved"
|
5362 |
msgstr ""
|
5363 |
|
5364 |
-
#: features/admin-approval/admin-approval.php:
|
5365 |
-
msgid "
|
5366 |
msgstr ""
|
5367 |
|
5368 |
#: features/admin-approval/admin-approval.php:158
|
@@ -5377,6 +5219,18 @@ msgstr ""
|
|
5377 |
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
5378 |
msgstr ""
|
5379 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5380 |
#: features/admin-approval/admin-approval.php:192
|
5381 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
|
5382 |
msgstr ""
|
@@ -5393,14 +5247,6 @@ msgstr ""
|
|
5393 |
msgid "delete this user?"
|
5394 |
msgstr ""
|
5395 |
|
5396 |
-
#: features/admin-approval/class-admin-approval.php:116
|
5397 |
-
msgid "unapprove this user?"
|
5398 |
-
msgstr ""
|
5399 |
-
|
5400 |
-
#: features/admin-approval/class-admin-approval.php:116, features/admin-approval/class-admin-approval.php:223
|
5401 |
-
msgid "Unapprove"
|
5402 |
-
msgstr ""
|
5403 |
-
|
5404 |
#: features/admin-approval/class-admin-approval.php:118
|
5405 |
msgid "approve this user?"
|
5406 |
msgstr ""
|
@@ -5409,6 +5255,14 @@ msgstr ""
|
|
5409 |
msgid "Approve"
|
5410 |
msgstr ""
|
5411 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5412 |
#: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:312, modules/user-listing/userlisting.php:818, modules/user-listing/userlisting.php:2361
|
5413 |
msgid "Firstname"
|
5414 |
msgstr ""
|
@@ -5429,30 +5283,30 @@ msgstr ""
|
|
5429 |
msgid "User-status"
|
5430 |
msgstr ""
|
5431 |
|
5432 |
-
#: features/admin-approval/class-admin-approval.php:
|
5433 |
-
msgid "
|
5434 |
-
msgstr ""
|
5435 |
-
|
5436 |
-
#: features/admin-approval/class-admin-approval.php:260
|
5437 |
-
msgid "Do you want to bulk unapprove the selected users?"
|
5438 |
msgstr ""
|
5439 |
|
5440 |
#: features/admin-approval/class-admin-approval.php:266
|
5441 |
msgid "Do you want to bulk delete the selected users?"
|
5442 |
msgstr ""
|
5443 |
|
5444 |
-
#: features/admin-approval/class-admin-approval.php:
|
5445 |
-
msgid "
|
5446 |
msgstr ""
|
5447 |
|
5448 |
-
#: features/admin-approval/class-admin-approval.php:
|
5449 |
-
msgid "
|
5450 |
msgstr ""
|
5451 |
|
5452 |
#: features/admin-approval/class-admin-approval.php:346
|
5453 |
msgid "Unapproved"
|
5454 |
msgstr ""
|
5455 |
|
|
|
|
|
|
|
|
|
5456 |
#: features/admin-approval/class-admin-approval.php:463, features/email-confirmation/class-email-confirmation.php:461
|
5457 |
msgid "All Users"
|
5458 |
msgstr ""
|
@@ -5525,14 +5379,22 @@ msgstr ""
|
|
5525 |
msgid "Select Template"
|
5526 |
msgstr ""
|
5527 |
|
5528 |
-
#: features/content-restriction/content-restriction-
|
5529 |
-
msgid "You must be logged in to view
|
|
|
|
|
|
|
|
|
5530 |
msgstr ""
|
5531 |
|
5532 |
#: features/content-restriction/content-restriction-functions.php:46
|
5533 |
msgid "This content is restricted for your user role."
|
5534 |
msgstr ""
|
5535 |
|
|
|
|
|
|
|
|
|
5536 |
#: features/content-restriction/content-restriction-meta-box.php:32
|
5537 |
msgid "Display Options"
|
5538 |
msgstr ""
|
@@ -5673,36 +5535,36 @@ msgstr ""
|
|
5673 |
msgid "Resend Activation Email"
|
5674 |
msgstr ""
|
5675 |
|
5676 |
-
#: features/email-confirmation/class-email-confirmation.php:
|
5677 |
-
msgid "
|
5678 |
-
msgstr ""
|
5679 |
-
|
5680 |
-
#: features/email-confirmation/class-email-confirmation.php:254
|
5681 |
-
msgid "All users have been successfully deleted"
|
5682 |
msgstr ""
|
5683 |
|
5684 |
#: features/email-confirmation/class-email-confirmation.php:264
|
5685 |
msgid "The selected users have been activated"
|
5686 |
msgstr ""
|
5687 |
|
5688 |
-
#: features/email-confirmation/class-email-confirmation.php:
|
5689 |
-
msgid "
|
|
|
|
|
|
|
|
|
5690 |
msgstr ""
|
5691 |
|
5692 |
#: features/email-confirmation/class-email-confirmation.php:458, features/email-confirmation/class-email-confirmation.php:498, features/email-confirmation/email-confirmation.php:47
|
5693 |
msgid "Users with Unconfirmed Email Address"
|
5694 |
msgstr ""
|
5695 |
|
5696 |
-
#: features/email-confirmation/email-confirmation.php:
|
5697 |
-
msgid "
|
5698 |
msgstr ""
|
5699 |
|
5700 |
#: features/email-confirmation/email-confirmation.php:115
|
5701 |
msgid "The selected user couldn't be deleted"
|
5702 |
msgstr ""
|
5703 |
|
5704 |
-
#: features/email-confirmation/email-confirmation.php:
|
5705 |
-
msgid "
|
5706 |
msgstr ""
|
5707 |
|
5708 |
#: features/email-confirmation/email-confirmation.php:406
|
@@ -5713,14 +5575,14 @@ msgstr ""
|
|
5713 |
msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
|
5714 |
msgstr ""
|
5715 |
|
5716 |
-
#: features/email-confirmation/email-confirmation.php:453
|
5717 |
-
msgid "That username is already activated!"
|
5718 |
-
msgstr ""
|
5719 |
-
|
5720 |
#: features/email-confirmation/email-confirmation.php:476
|
5721 |
msgid "There was an error while trying to activate the user"
|
5722 |
msgstr ""
|
5723 |
|
|
|
|
|
|
|
|
|
5724 |
#: features/email-confirmation/email-confirmation.php:524, modules/email-customizer/admin-email-customizer.php:84
|
5725 |
msgid "A new subscriber has (been) registered!"
|
5726 |
msgstr ""
|
@@ -5733,18 +5595,18 @@ msgstr ""
|
|
5733 |
msgid "[%1$s] Your new account information"
|
5734 |
msgstr ""
|
5735 |
|
5736 |
-
#: features/email-confirmation/email-confirmation.php:582,
|
5737 |
msgid "Your selected password at signup"
|
5738 |
msgstr ""
|
5739 |
|
5740 |
-
#: features/email-confirmation/email-confirmation.php:588
|
5741 |
-
msgid "Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and your password is the one that you have selected during registration.<br/><br/>Access your account: %3$s "
|
5742 |
-
msgstr ""
|
5743 |
-
|
5744 |
#: features/email-confirmation/email-confirmation.php:590
|
5745 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and the password: %3$s.<br/><br/>Access your account: %4$s "
|
5746 |
msgstr ""
|
5747 |
|
|
|
|
|
|
|
|
|
5748 |
#: features/email-confirmation/email-confirmation.php:643
|
5749 |
msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
|
5750 |
msgstr ""
|
@@ -5861,10 +5723,6 @@ msgstr ""
|
|
5861 |
msgid "Clone"
|
5862 |
msgstr ""
|
5863 |
|
5864 |
-
#: features/roles-editor/roles-editor.php:884
|
5865 |
-
msgid "You can't delete your role."
|
5866 |
-
msgstr ""
|
5867 |
-
|
5868 |
#: features/roles-editor/roles-editor.php:892
|
5869 |
msgid "Change Default"
|
5870 |
msgstr ""
|
@@ -5873,11 +5731,15 @@ msgstr ""
|
|
5873 |
msgid "You can't delete the default role. Change it first."
|
5874 |
msgstr ""
|
5875 |
|
|
|
|
|
|
|
|
|
5876 |
#: features/roles-editor/roles-editor.php:1116
|
5877 |
msgid "Edit User Roles"
|
5878 |
msgstr ""
|
5879 |
|
5880 |
-
#: features/upgrades/upgrades-functions.php:
|
5881 |
msgid "The usernames cannot be changed."
|
5882 |
msgstr ""
|
5883 |
|
@@ -6041,7 +5903,7 @@ msgstr ""
|
|
6041 |
msgid "the URL of the previously visited page"
|
6042 |
msgstr ""
|
6043 |
|
6044 |
-
#: modules/custom-redirects/custom_redirects_admin.php:
|
6045 |
msgid "You can't add duplicate redirects!"
|
6046 |
msgstr ""
|
6047 |
|
@@ -6085,11 +5947,11 @@ msgid ""
|
|
6085 |
""
|
6086 |
msgstr ""
|
6087 |
|
6088 |
-
#: modules/email-customizer/admin-email-customizer.php:80, modules/email-customizer/admin-email-customizer.php:111, modules/email-customizer/admin-email-customizer.php:142, modules/email-customizer/user-email-customizer.php:83, modules/email-customizer/user-email-customizer.php:114, modules/email-customizer/user-email-customizer.php:146, modules/email-customizer/user-email-customizer.php:177, modules/email-customizer/user-email-customizer.php:209, modules/email-customizer/user-email-customizer.php:241, modules/email-customizer/user-email-customizer.php:273, modules/email-customizer/user-email-customizer.php:307
|
6089 |
msgid "Email Subject"
|
6090 |
msgstr ""
|
6091 |
|
6092 |
-
#: modules/email-customizer/admin-email-customizer.php:87, modules/email-customizer/admin-email-customizer.php:118, modules/email-customizer/admin-email-customizer.php:149, modules/email-customizer/user-email-customizer.php:90, modules/email-customizer/user-email-customizer.php:121, modules/email-customizer/user-email-customizer.php:153, modules/email-customizer/user-email-customizer.php:184, modules/email-customizer/user-email-customizer.php:216, modules/email-customizer/user-email-customizer.php:248, modules/email-customizer/user-email-customizer.php:280, modules/email-customizer/user-email-customizer.php:314
|
6093 |
msgid "Enable email"
|
6094 |
msgstr ""
|
6095 |
|
@@ -6121,6 +5983,24 @@ msgstr ""
|
|
6121 |
msgid "Admin Notification for User Password Reset"
|
6122 |
msgstr ""
|
6123 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6124 |
#: modules/email-customizer/email-customizer.php:7
|
6125 |
msgid "Available Tags"
|
6126 |
msgstr ""
|
@@ -6185,7 +6065,23 @@ msgstr ""
|
|
6185 |
msgid "Approve User Link"
|
6186 |
msgstr ""
|
6187 |
|
6188 |
-
#: modules/email-customizer/email-customizer.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6189 |
msgid "The users selected password at signup"
|
6190 |
msgstr ""
|
6191 |
|
@@ -6317,6 +6213,23 @@ msgstr ""
|
|
6317 |
msgid "Changed Email Address Notification"
|
6318 |
msgstr ""
|
6319 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6320 |
#: modules/multiple-forms/edit-profile-forms.php:11, modules/multiple-forms/edit-profile-forms.php:12
|
6321 |
msgid "Edit-profile Form"
|
6322 |
msgstr ""
|
@@ -6365,10 +6278,6 @@ msgstr ""
|
|
6365 |
msgid "(no title)"
|
6366 |
msgstr ""
|
6367 |
|
6368 |
-
#: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:2293
|
6369 |
-
msgid "The shortcode will be available after you publish this form."
|
6370 |
-
msgstr ""
|
6371 |
-
|
6372 |
#: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:2295
|
6373 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6374 |
msgstr ""
|
@@ -6377,6 +6286,10 @@ msgstr ""
|
|
6377 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6378 |
msgstr ""
|
6379 |
|
|
|
|
|
|
|
|
|
6380 |
#: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:2332
|
6381 |
msgid "Form Shortcode"
|
6382 |
msgstr ""
|
@@ -6625,30 +6538,34 @@ msgstr ""
|
|
6625 |
msgid "User not found"
|
6626 |
msgstr ""
|
6627 |
|
6628 |
-
#: modules/user-listing/userlisting.php:
|
6629 |
-
msgid "
|
6630 |
msgstr ""
|
6631 |
|
6632 |
-
#: modules/user-listing/userlisting.php:
|
6633 |
-
msgid "
|
6634 |
msgstr ""
|
6635 |
|
6636 |
#: modules/user-listing/userlisting.php:836, modules/user-listing/userlisting.php:2370
|
6637 |
msgid "Aim"
|
6638 |
msgstr ""
|
6639 |
|
6640 |
-
#: modules/user-listing/userlisting.php:
|
6641 |
-
msgid "
|
6642 |
msgstr ""
|
6643 |
|
6644 |
-
#: modules/user-listing/userlisting.php:
|
6645 |
-
msgid "
|
6646 |
msgstr ""
|
6647 |
|
6648 |
#: modules/user-listing/userlisting.php:1129, modules/user-listing/userlisting.php:1609, modules/user-listing/userlisting.php:2087, modules/user-listing/userlisting.php:2564
|
6649 |
msgid "Search Users by All Fields"
|
6650 |
msgstr ""
|
6651 |
|
|
|
|
|
|
|
|
|
6652 |
#: modules/user-listing/userlisting.php:1402
|
6653 |
msgid "Click here to see more information about this user"
|
6654 |
msgstr ""
|
@@ -6657,15 +6574,11 @@ msgstr ""
|
|
6657 |
msgid "More..."
|
6658 |
msgstr ""
|
6659 |
|
6660 |
-
#: modules/user-listing/userlisting.php:1405
|
6661 |
-
msgid "Click here to see more information about this user."
|
6662 |
-
msgstr ""
|
6663 |
-
|
6664 |
#: modules/user-listing/userlisting.php:1432
|
6665 |
msgid "View Map"
|
6666 |
msgstr ""
|
6667 |
|
6668 |
-
#: modules/user-listing/userlisting.php:
|
6669 |
msgid "Click here to go back"
|
6670 |
msgstr ""
|
6671 |
|
@@ -6673,6 +6586,10 @@ msgstr ""
|
|
6673 |
msgid "Back"
|
6674 |
msgstr ""
|
6675 |
|
|
|
|
|
|
|
|
|
6676 |
#: modules/user-listing/userlisting.php:1596
|
6677 |
msgid "«« First"
|
6678 |
msgstr ""
|
@@ -6689,10 +6606,6 @@ msgstr ""
|
|
6689 |
msgid "Last »»"
|
6690 |
msgstr ""
|
6691 |
|
6692 |
-
#: modules/user-listing/userlisting.php:1628
|
6693 |
-
msgid "You don't have any pagination settings on this userlisting!"
|
6694 |
-
msgstr ""
|
6695 |
-
|
6696 |
#: modules/user-listing/userlisting.php:1677
|
6697 |
msgid "Show All"
|
6698 |
msgstr ""
|
@@ -6933,11 +6846,11 @@ msgstr ""
|
|
6933 |
msgid "You must enter a valid email address."
|
6934 |
msgstr ""
|
6935 |
|
6936 |
-
#: front-end/default-fields/email/email.php:
|
6937 |
msgid "This email is already reserved to be used soon."
|
6938 |
msgstr ""
|
6939 |
|
6940 |
-
#: front-end/default-fields/email/email.php:
|
6941 |
msgid "Please try a different one!"
|
6942 |
msgstr ""
|
6943 |
|
@@ -6953,7 +6866,7 @@ msgstr ""
|
|
6953 |
msgid "You did not type %s. Try again!"
|
6954 |
msgstr ""
|
6955 |
|
6956 |
-
#: front-end/default-fields/password-repeat/password-repeat.php:
|
6957 |
msgid "The passwords do not match"
|
6958 |
msgstr ""
|
6959 |
|
@@ -6961,27 +6874,27 @@ msgstr ""
|
|
6961 |
msgid "To use reCAPTCHA you must get an API key from"
|
6962 |
msgstr ""
|
6963 |
|
6964 |
-
#: front-end/default-fields/recaptcha/recaptcha.php:
|
6965 |
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
6966 |
msgstr ""
|
6967 |
|
6968 |
-
#: front-end/default-fields/recaptcha/recaptcha.php:
|
6969 |
msgid "To use reCAPTCHA you must get an API public key from:"
|
6970 |
msgstr ""
|
6971 |
|
6972 |
-
#: front-end/default-fields/recaptcha/recaptcha.php:
|
6973 |
msgid "Click the BACK button on your browser, and try again."
|
6974 |
msgstr ""
|
6975 |
|
6976 |
-
#: front-end/default-fields/user-role/user-role.php:97, front-end/default-fields/user-role/user-role.php:111
|
6977 |
-
msgid "Only administrators can see this field on edit profile forms."
|
6978 |
-
msgstr ""
|
6979 |
-
|
6980 |
#: front-end/default-fields/user-role/user-role.php:106
|
6981 |
msgid "As an administrator you cannot change your role."
|
6982 |
msgstr ""
|
6983 |
|
6984 |
-
#: front-end/default-fields/user-role/user-role.php:
|
|
|
|
|
|
|
|
|
6985 |
msgid "You cannot register this user role"
|
6986 |
msgstr ""
|
6987 |
|
@@ -7005,7 +6918,7 @@ msgstr ""
|
|
7005 |
msgid "You must enter a valid URL."
|
7006 |
msgstr ""
|
7007 |
|
7008 |
-
#: front-end/extra-fields/map/map.php:
|
7009 |
msgid "Please add the Google Maps API key for this field."
|
7010 |
msgstr ""
|
7011 |
|
@@ -7033,7 +6946,7 @@ msgstr ""
|
|
7033 |
msgid "Required phone number format: "
|
7034 |
msgstr ""
|
7035 |
|
7036 |
-
#: front-end/extra-fields/select-cpt/select-cpt.php:
|
7037 |
msgid "...Choose"
|
7038 |
msgstr ""
|
7039 |
|
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-mailchimp-integration/admin/mailchimp-page.php:232, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:307, features/content-restriction/content-restriction.php:135
|
29 |
msgid "None"
|
30 |
msgstr ""
|
31 |
|
45 |
msgid "Select Profile Builder Edit Profile form to replace the bbPress Profile Edit tab."
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: ../pb-add-on-bbpress/index.php:308
|
49 |
+
msgid "bbPress needs to be installed and activated for Profile Builder - bbPress Integration Add-on to work as expected!"
|
|
|
|
|
|
|
|
|
50 |
msgstr ""
|
51 |
|
52 |
#: ../pb-add-on-bbpress/index.php:168, ../pb-add-on-bbpress/index.php:183
|
53 |
msgid "Forum Role"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: ../pb-add-on-bbpress/index.php:169, ../pb-add-on-bbpress/index.php:163, ../pb-add-on-bbpress/index.php:184, ../pb-add-on-bbpress/index.php:234
|
57 |
+
msgid "Topics Started"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: ../pb-add-on-bbpress/index.php:170, ../pb-add-on-bbpress/index.php:164, ../pb-add-on-bbpress/index.php:185, ../pb-add-on-bbpress/index.php:236
|
61 |
+
msgid "Replies Created"
|
62 |
msgstr ""
|
63 |
|
64 |
#: ../pb-add-on-buddypress/buddypress-page.php:26, ../pb-add-on-buddypress/buddypress-page.php:26
|
137 |
msgid "BuddyPress Allow Custom Visibility"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: ../pb-add-on-buddypress/field-visibility.php:119, ../pb-add-on-buddypress/field-visibility.php:105
|
141 |
msgid "This field can be seen by: "
|
142 |
msgstr ""
|
143 |
|
177 |
msgid "BuddyPress is not installed and active. Import aborted!"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: ../pb-add-on-buddypress/import-bp-fields.php:53
|
181 |
+
msgid "Importing User entries BuddyPress Fields to Profile Builder...<br><br>"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: ../pb-add-on-buddypress/import-bp-fields.php:55
|
185 |
+
msgid "Done."
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: ../pb-add-on-buddypress/import-bp-fields.php:55
|
189 |
+
msgid "Back to BuddyPress Settings page"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
#: ../pb-add-on-buddypress/import-bp-fields.php:44
|
193 |
msgid "Importing BuddyPress Field Settings to Profile Builder...<br><br>"
|
194 |
msgstr ""
|
201 |
msgid "click here"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: ../pb-add-on-buddypress/index.php:382
|
205 |
+
msgid "BuddyPress needs to be installed and activated for Profile Builder - BuddyPress Integration Add-on to work as expected!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
206 |
msgstr ""
|
207 |
|
208 |
#: ../pb-add-on-buddypress/index.php:222
|
209 |
msgid "Profile Builder Avatar field is disabled to allow use of BuddyPress Avatar."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: ../pb-add-on-buddypress/index.php:511, admin/manage-fields.php:317
|
|
|
|
|
|
|
|
|
213 |
msgid "Name"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: ../pb-add-on-buddypress/index.php:514
|
217 |
msgid "Username:"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: ../pb-add-on-buddypress/index.php:518
|
221 |
msgid "First Name:"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: ../pb-add-on-buddypress/index.php:522
|
225 |
msgid "Last Name:"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: ../pb-add-on-buddypress/index.php:526
|
229 |
msgid "Nickname:"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: ../pb-add-on-buddypress/index.php:530
|
233 |
msgid "Display name:"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: ../pb-add-on-buddypress/index.php:534, admin/manage-fields.php:323
|
237 |
msgid "Contact Info"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: ../pb-add-on-buddypress/index.php:537
|
241 |
msgid "Website:"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: ../pb-add-on-buddypress/index.php:541, admin/manage-fields.php:334
|
245 |
msgid "About Yourself"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: ../pb-add-on-buddypress/index.php:544
|
249 |
msgid "Biographical Info:"
|
250 |
msgstr ""
|
251 |
|
425 |
msgid "The email confirmation does not match your email address."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ../pb-add-on-field-visibility/index.php:219, admin/admin-bar.php:63
|
429 |
msgid "Visibility"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: ../pb-add-on-field-visibility/index.php:219
|
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:220
|
437 |
msgid "User Role Visibility"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: ../pb-add-on-field-visibility/index.php:220
|
441 |
msgid "Select which user roles see this field"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: ../pb-add-on-field-visibility/index.php:221
|
445 |
msgid "Location Visibility"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: ../pb-add-on-field-visibility/index.php:221
|
449 |
msgid "Select the locations you wish the field to appear"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: ../pb-add-on-field-visibility/index.php:239
|
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:239, ../pb-add-on-labels-edit/pble.php:381, admin/manage-fields.php:1318, features/functions.php:872, features/functions.php:879, 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:239, admin/manage-fields.php:1318, features/functions.php:865, features/functions.php:879, 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:904, features/roles-editor/roles-editor.php:893, features/roles-editor/roles-editor.php:884, 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:260
|
465 |
msgid "This field is visible only for administrators."
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: ../pb-add-on-field-visibility/index.php:263
|
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:286
|
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:332
|
477 |
msgid "This field is visible only in the following locations: %1$s"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: ../pb-add-on-field-visibility/index.php:474
|
481 |
msgid "Get file"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: ../pb-add-on-field-visibility/index.php:607
|
485 |
msgid "You do not have the capabilities necessary to edit this field."
|
486 |
msgstr ""
|
487 |
|
623 |
msgid "Multi-Step Forms"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: ../pb-add-on-multi-step-forms/index.php:220
|
627 |
+
msgid "To enable MSF you must add Break Points."
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: ../pb-add-on-multi-step-forms/index.php:221, ../pb-add-on-multi-step-forms/index.php:196
|
631 |
+
msgid "Pagination and Tabs:"
|
632 |
+
msgstr ""
|
633 |
+
|
634 |
+
#: ../pb-add-on-multi-step-forms/index.php:222, ../pb-add-on-multi-step-forms/index.php:197
|
635 |
+
msgid "Enable Pagination"
|
636 |
+
msgstr ""
|
637 |
+
|
638 |
+
#: ../pb-add-on-multi-step-forms/index.php:223, ../pb-add-on-multi-step-forms/index.php:198
|
639 |
+
msgid "Enable Tabs"
|
640 |
+
msgstr ""
|
641 |
+
|
642 |
+
#: ../pb-add-on-multi-step-forms/index.php:223, ../pb-add-on-multi-step-forms/index.php:198
|
643 |
+
msgid "Edit Tabs Title"
|
644 |
+
msgstr ""
|
645 |
+
|
646 |
#: ../pb-add-on-multi-step-forms/index.php:187
|
647 |
msgid "Multi-Step Forms options updated."
|
648 |
msgstr ""
|
663 |
msgid "To enable it on Multiple Registration and Edit-Profile Forms you must add Break Points in each form page."
|
664 |
msgstr ""
|
665 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
666 |
#: ../pb-add-on-multi-step-forms/index.php:200
|
667 |
msgid "Update Multi-Step"
|
668 |
msgstr ""
|
669 |
|
|
|
|
|
|
|
|
|
670 |
#: ../pb-add-on-multi-step-forms/index.php:454
|
671 |
msgid "Next"
|
672 |
msgstr ""
|
683 |
msgid "Replace labels with placeholders:"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:324, admin/general-settings.php:113, admin/general-settings.php:126, admin/general-settings.php:175, admin/general-settings.php:222, admin/general-settings.php:296, admin/private-website.php:66, admin/private-website.php:123, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:18, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:34, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:18, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:66, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:181, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:197, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:217, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:240, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:261, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:279, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:132, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:149, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:164, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:184, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:201, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:239, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:260, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:280, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:302, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:16, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:32, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:48, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:64, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:53, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:75, features/content-restriction/content-restriction.php:88, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:229, modules/multiple-forms/register-forms.php:230, modules/user-listing/userlisting.php:2402
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:172, ../pb-add-on-social-connect/index.php:325, admin/general-settings.php:127, admin/general-settings.php:176, admin/general-settings.php:221, admin/general-settings.php:295, admin/private-website.php:65, admin/private-website.php:122, features/content-restriction/content-restriction.php:87, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:229, modules/multiple-forms/register-forms.php:230
|
691 |
msgid "No"
|
692 |
msgstr ""
|
693 |
|
983 |
msgid "Ship to a different address?"
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: ../pb-add-on-woocommerce/index.php:853
|
987 |
+
msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
|
988 |
+
msgstr ""
|
989 |
+
|
990 |
#: ../pb-add-on-woocommerce/index.php:167, ../pb-add-on-woocommerce/index.php:736
|
991 |
msgid "Billing Address"
|
992 |
msgstr ""
|
1003 |
msgid "Displays customer shipping fields in front-end. "
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: ../pb-add-on-woocommerce/index.php:246, ../pb-add-on-woocommerce/index.php:265, ../pb-add-on-woocommerce/index.php:365, ../pb-add-on-woocommerce/index.php:362, ../pb-add-on-woocommerce/index.php:792
|
1007 |
msgid "Address line 2"
|
1008 |
msgstr ""
|
1009 |
|
1083 |
msgid "Shipping "
|
1084 |
msgstr ""
|
1085 |
|
|
|
|
|
|
|
|
|
1086 |
#: ../pb-add-on-woocommerce/woo-checkout-field-support.php:82
|
1087 |
msgid "Display on WooCommerce Checkout"
|
1088 |
msgstr ""
|
1119 |
msgid "%s is also activated. You need to deactivate it before activating this version of the plugin."
|
1120 |
msgstr ""
|
1121 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1122 |
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29
|
1123 |
msgid "Communication Preferences"
|
1124 |
msgstr ""
|
1167 |
msgid "Uploaded file is not valid json!"
|
1168 |
msgstr ""
|
1169 |
|
|
|
|
|
|
|
|
|
1170 |
#: ../pb-add-on-import-export/inc/class-pbie-import.php:88, ../pb-add-on-labels-edit/inc/class-pble-import.php:54
|
1171 |
msgid "Please select a .json file to import!"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: ../pb-add-on-import-export/inc/class-pbie-import.php:82, ../pb-add-on-labels-edit/inc/class-pble-import.php:48
|
1175 |
+
msgid "Import successfully!"
|
1176 |
+
msgstr ""
|
1177 |
+
|
1178 |
#: ../pb-add-on-labels-edit/inc/class-pble-import.php:48
|
1179 |
msgid "Page will refresh in 3 seconds..."
|
1180 |
msgstr ""
|
1187 |
msgid "MailChimp Integration"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:60, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:67, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:64, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:60, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:46, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:42
|
1191 |
+
msgid "MailChimp List"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:61, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:68
|
1195 |
+
msgid "Fields Count"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:82
|
1199 |
msgid "We couldn't find any lists"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:44
|
1203 |
+
msgid "Before you can make any changes you will need to add a MailChimp API key."
|
1204 |
+
msgstr ""
|
1205 |
+
|
1206 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:94, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:340, assets/lib/wck-api/wordpress-creation-kit.php:343
|
1207 |
+
msgid "Save"
|
1208 |
+
msgstr ""
|
1209 |
+
|
1210 |
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:119
|
1211 |
msgid "MailChimp API Key:"
|
1212 |
msgstr ""
|
1215 |
msgid "Either the API key is not valid or we could not connect to MailChimp to validate it!"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:124
|
1219 |
+
msgid "The API key was successfully validated!"
|
1220 |
+
msgstr ""
|
1221 |
+
|
1222 |
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:129
|
1223 |
msgid "Enter a MailChimp API key. You can create keys in your MailChimp account."
|
1224 |
msgstr ""
|
1227 |
msgid "Edit this item"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:858, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:403, assets/lib/wck-api/wordpress-creation-kit.php:406
|
1231 |
+
msgid "Cancel"
|
1232 |
+
msgstr ""
|
1233 |
+
|
1234 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:202
|
1235 |
+
msgid "Field Associations:"
|
1236 |
+
msgstr ""
|
1237 |
+
|
1238 |
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:211
|
1239 |
msgid "This field is required in MailChimp"
|
1240 |
msgstr ""
|
1251 |
msgid "Associate each MailChimp group with a Profile Builder field"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:357
|
1255 |
+
msgid "Extra Options:"
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:366, ../pb-add-on-mailchimp-integration/admin/widget.php:229
|
1259 |
msgid "Double Opt-In"
|
1260 |
msgstr ""
|
1271 |
msgid "If checked will enable GDPR on this list. <a href=\"%s\" target=\"_blank\">You must also enable GDPR on the list from mailchimp</a>"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:437, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:46
|
1275 |
+
msgid "Something went wrong. Either the API key is invalid or we could not connect to MailChimp to validate the key."
|
1276 |
msgstr ""
|
1277 |
|
1278 |
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:430
|
1279 |
msgid "MailChimp API key is invalid"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:428
|
1283 |
+
msgid "MailChimp API key is empty"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:52, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:38
|
1287 |
+
msgid "Select a list..."
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:64
|
1291 |
+
msgid "We couldn't find any lists in your MailChimp settings."
|
1292 |
msgstr ""
|
1293 |
|
1294 |
#: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:60
|
1303 |
msgid "If checked the Subscribe checkbox in the front-end will be checked by default on register forms"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:62, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:49
|
1307 |
+
msgid "Hide on Edit Profile"
|
1308 |
+
msgstr ""
|
1309 |
+
|
1310 |
+
#: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:62, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:49
|
1311 |
+
msgid "If checked this field will not be displayed on edit profile forms"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:42
|
1315 |
+
msgid "Please enter a MailChimp API key <a href=\"%s\">here</a>."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
#: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:84
|
1329 |
msgid "Adds a basic subscribe form so that your users can subscribe to your MailChimp lists"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: ../pb-add-on-mailchimp-integration/admin/widget.php:158
|
1333 |
+
msgid "Submit"
|
1334 |
+
msgstr ""
|
1335 |
+
|
1336 |
+
#: ../pb-add-on-mailchimp-integration/admin/widget.php:98, ../pb-add-on-mailchimp-integration/admin/widget.php:93, ../pb-add-on-mailchimp-integration/admin/widget.php:91
|
1337 |
+
msgid "%s"
|
1338 |
+
msgstr ""
|
1339 |
+
|
1340 |
#: ../pb-add-on-mailchimp-integration/admin/widget.php:68, ../pb-add-on-mailchimp-integration/admin/widget.php:250
|
1341 |
msgid "Something went wrong. Either the MailChimp API key is missing or it is invalid."
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: ../pb-add-on-mailchimp-integration/admin/widget.php:185
|
1345 |
+
msgid "Subscribe to Newsletter"
|
1346 |
+
msgstr ""
|
1347 |
+
|
1348 |
+
#: ../pb-add-on-mailchimp-integration/admin/widget.php:193
|
1349 |
+
msgid "Title"
|
1350 |
+
msgstr ""
|
1351 |
+
|
1352 |
+
#: ../pb-add-on-mailchimp-integration/admin/widget.php:198
|
1353 |
+
msgid "Select the list your new subscriber will be added to"
|
1354 |
+
msgstr ""
|
1355 |
+
|
1356 |
#: ../pb-add-on-mailchimp-integration/admin/widget.php:201
|
1357 |
msgid "Select..."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: ../pb-add-on-mailchimp-integration/admin/widget.php:216
|
1361 |
+
msgid "Select which fields to show"
|
1362 |
+
msgstr ""
|
1363 |
+
|
1364 |
#: ../pb-add-on-mailchimp-integration/admin/widget.php:225
|
1365 |
msgid "Extra Options"
|
1366 |
msgstr ""
|
1373 |
msgid "No list was found."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:53, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:51, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:47
|
1377 |
msgid "MailPoet List"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:53
|
1381 |
+
msgid "Please install and activate MailPoet plugin."
|
1382 |
msgstr ""
|
1383 |
|
1384 |
#: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:51
|
1385 |
msgid "We couldn't find any lists in your MailPoet settings."
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:47
|
1389 |
+
msgid "Select in which MailPoet list you wish to add a new subscriber"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
#: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:73
|
1411 |
msgid "Check this to allow users to create their own options beside the pre-existing ones."
|
1412 |
msgstr ""
|
1413 |
|
|
|
|
|
|
|
|
|
1414 |
#: ../pb-add-on-social-connect/facebook/facebook.php:38
|
1415 |
msgid "Sign in with Facebook"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
+
#: ../pb-add-on-social-connect/facebook/facebook.php:32
|
1419 |
+
msgid "Link with Facebook"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
#: ../pb-add-on-social-connect/google/google.php:37
|
1423 |
msgid "Sign in with Google"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: ../pb-add-on-social-connect/google/google.php:31
|
1427 |
+
msgid "Link with Google"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
#: ../pb-add-on-social-connect/linkedin/linkedin.php:46
|
1431 |
msgid "Sign in with LinkedIn"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: ../pb-add-on-social-connect/linkedin/linkedin.php:40
|
1435 |
+
msgid "Link with LinkedIn"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
#: ../pb-add-on-social-connect/twitter/twitter.php:58
|
1439 |
msgid "Error Receiving Request Token"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: ../pb-add-on-social-connect/twitter/twitter.php:53
|
1443 |
+
msgid "Connection with twitter Failed"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
#: ../pb-add-on-social-connect/twitter/twitter.php:148
|
1447 |
msgid "Sign in with Twitter"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: ../pb-add-on-social-connect/twitter/twitter.php:142
|
1451 |
+
msgid "Link with Twitter"
|
1452 |
+
msgstr ""
|
1453 |
+
|
1454 |
#: admin/add-ons.php:10, admin/add-ons.php:10, admin/add-ons.php:193
|
1455 |
msgid "Add-Ons"
|
1456 |
msgstr ""
|
1467 |
msgid "Translate your Profile Builder forms with a WordPress translation plugin that anyone can use. It offers a simpler way to translate WordPress sites, with full support for WooCommerce and site builders."
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: admin/add-ons.php:101, admin/add-ons.php:172, admin/pms-cross-promotion.php:137, admin/pms-cross-promotion.php:216
|
1471 |
+
msgid "Install Now"
|
1472 |
+
msgstr ""
|
1473 |
+
|
1474 |
+
#: admin/add-ons.php:104, admin/add-ons.php:175, admin/add-ons.php:313, admin/pms-cross-promotion.php:141, admin/pms-cross-promotion.php:220
|
1475 |
+
msgid "Compatible with your version of Profile Builder."
|
1476 |
msgstr ""
|
1477 |
|
1478 |
#: admin/add-ons.php:88, admin/add-ons.php:159, admin/add-ons.php:207, admin/add-ons.php:293, admin/pms-cross-promotion.php:90, admin/pms-cross-promotion.php:118, admin/pms-cross-promotion.php:197
|
1479 |
msgid "Deactivate"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: admin/add-ons.php:84, admin/add-ons.php:155, admin/add-ons.php:195, admin/add-ons.php:289, admin/pms-cross-promotion.php:78, admin/pms-cross-promotion.php:114, admin/pms-cross-promotion.php:193
|
1483 |
+
msgid "Activate"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
#: admin/add-ons.php:95, admin/add-ons.php:166, admin/pms-cross-promotion.php:87, admin/pms-cross-promotion.php:125, admin/pms-cross-promotion.php:204
|
1487 |
msgid "Plugin is <strong>active</strong>"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: admin/add-ons.php:93, admin/add-ons.php:164, admin/pms-cross-promotion.php:88, admin/pms-cross-promotion.php:123, admin/pms-cross-promotion.php:202
|
1491 |
+
msgid "Plugin is <strong>inactive</strong>"
|
|
|
|
|
|
|
|
|
1492 |
msgstr ""
|
1493 |
|
1494 |
#: admin/add-ons.php:109, admin/add-ons.php:180, admin/pms-cross-promotion.php:146
|
1531 |
msgid "Add-On has been deactivated."
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: admin/add-ons.php:267
|
1535 |
+
msgid "Available with the Pro Version"
|
|
|
|
|
|
|
|
|
1536 |
msgstr ""
|
1537 |
|
1538 |
#: admin/add-ons.php:265
|
1539 |
msgid "Available with the Hobbyist and Pro Versions"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: admin/add-ons.php:263
|
1543 |
+
msgid "Available with All Versions"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: admin/add-ons.php:330, front-end/class-formbuilder.php:432
|
1547 |
+
msgid "Update"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: admin/add-ons.php:331
|
1551 |
+
msgid "Not compatible with your version of Profile Builder."
|
1552 |
+
msgstr ""
|
1553 |
+
|
1554 |
+
#: admin/add-ons.php:332
|
1555 |
+
msgid "Minimum required Profile Builder version:"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
#: admin/add-ons.php:322
|
1563 |
msgid "Not compatible with Profile Builder"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: admin/add-ons.php:308
|
1567 |
+
msgid "Learn More"
|
|
|
|
|
|
|
|
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: admin/add-ons.php:308, admin/pms-cross-promotion.php:134, admin/pms-cross-promotion.php:213
|
1571 |
+
msgid "Download Now"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
#: admin/add-ons.php:337
|
1575 |
msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: admin/add-ons.php:216
|
1579 |
+
msgid "Something went wrong, we could not connect to the server. Please try again later."
|
1580 |
+
msgstr ""
|
1581 |
+
|
1582 |
#: admin/admin-bar.php:10
|
1583 |
msgid "Show/Hide the Admin Bar on the Front-End"
|
1584 |
msgstr ""
|
1643 |
msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
|
1644 |
msgstr ""
|
1645 |
|
|
|
|
|
|
|
|
|
1646 |
#: admin/admin-functions.php:189
|
1647 |
msgid "Save Settings"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: admin/admin-functions.php:187
|
1651 |
+
msgid "Add Field"
|
1652 |
+
msgstr ""
|
1653 |
+
|
1654 |
#: admin/admin-functions.php:200
|
1655 |
msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
|
1656 |
msgstr ""
|
1687 |
msgid "The best way to add front-end registration, edit profile and login forms."
|
1688 |
msgstr ""
|
1689 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1690 |
#: admin/basic-info.php:44
|
1691 |
msgid "You can see all the pages with Profile Builder form shortcodes here:"
|
1692 |
msgstr ""
|
1695 |
msgid "View Form Pages"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: admin/basic-info.php:39
|
1699 |
+
msgid "Speed up the setup process by automatically creating the form pages:"
|
1700 |
+
msgstr ""
|
1701 |
+
|
1702 |
+
#: admin/basic-info.php:40
|
1703 |
+
msgid "Create Form Pages"
|
1704 |
+
msgstr ""
|
1705 |
+
|
1706 |
#: admin/basic-info.php:51
|
1707 |
msgid "Login Form"
|
1708 |
msgstr ""
|
1803 |
msgid "With Extra Profile Fields you can create the exact registration form your project needs."
|
1804 |
msgstr ""
|
1805 |
|
|
|
|
|
|
|
|
|
1806 |
#: admin/basic-info.php:115
|
1807 |
msgid "Get started with extra fields"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
+
#: admin/basic-info.php:113
|
1811 |
+
msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
|
1812 |
+
msgstr ""
|
1813 |
+
|
1814 |
#: admin/basic-info.php:118
|
1815 |
msgid "Avatar Upload"
|
1816 |
msgstr ""
|
1907 |
msgid "User Listing"
|
1908 |
msgstr ""
|
1909 |
|
|
|
|
|
|
|
|
|
1910 |
#: admin/basic-info.php:163
|
1911 |
msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
|
1912 |
msgstr ""
|
1913 |
|
1914 |
+
#: admin/basic-info.php:161
|
1915 |
+
msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
|
1916 |
+
msgstr ""
|
1917 |
+
|
1918 |
#: admin/basic-info.php:167, admin/general-settings.php:17, modules/modules.php:94
|
1919 |
msgid "Email Customizer"
|
1920 |
msgstr ""
|
2171 |
msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
|
2172 |
msgstr ""
|
2173 |
|
|
|
|
|
|
|
|
|
2174 |
#: admin/manage-fields.php:163
|
2175 |
msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this will only affect subsequent entries"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
+
#: admin/manage-fields.php:160
|
2179 |
+
msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
|
2180 |
+
msgstr ""
|
2181 |
+
|
2182 |
#: admin/manage-fields.php:177
|
2183 |
msgid "Field Title"
|
2184 |
msgstr ""
|
4115 |
msgid "Zimbabwe Dollar"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
+
#: admin/manage-fields.php:1267
|
4119 |
msgid ""
|
4120 |
+
"That field is already added in this form\n"
|
4121 |
""
|
4122 |
msgstr ""
|
4123 |
|
4124 |
+
#: admin/manage-fields.php:1260, admin/manage-fields.php:1098
|
4125 |
msgid ""
|
4126 |
+
"You must select a field\n"
|
4127 |
""
|
4128 |
msgstr ""
|
4129 |
|
4130 |
+
#: admin/manage-fields.php:1108
|
4131 |
msgid ""
|
4132 |
+
"Please choose a different field type as this one already exists in your form (must be unique)\n"
|
4133 |
""
|
4134 |
msgstr ""
|
4135 |
|
4139 |
""
|
4140 |
msgstr ""
|
4141 |
|
4142 |
+
#: admin/manage-fields.php:1119
|
4143 |
msgid ""
|
4144 |
+
"The entered avatar size is not between 20 and 200\n"
|
4145 |
""
|
4146 |
msgstr ""
|
4147 |
|
4151 |
""
|
4152 |
msgstr ""
|
4153 |
|
4154 |
+
#: admin/manage-fields.php:1130
|
4155 |
msgid ""
|
4156 |
+
"The entered row number is not numerical\n"
|
4157 |
""
|
4158 |
msgstr ""
|
4159 |
|
4160 |
+
#: admin/manage-fields.php:1141
|
4161 |
msgid ""
|
4162 |
+
"You must enter the site key\n"
|
4163 |
""
|
4164 |
msgstr ""
|
4165 |
|
4166 |
+
#: admin/manage-fields.php:1143
|
4167 |
msgid ""
|
4168 |
+
"You must enter the secret key\n"
|
4169 |
""
|
4170 |
msgstr ""
|
4171 |
|
4175 |
""
|
4176 |
msgstr ""
|
4177 |
|
4178 |
+
#: admin/manage-fields.php:1151
|
4179 |
msgid ""
|
4180 |
+
"You must enter a value for the date-format\n"
|
4181 |
""
|
4182 |
msgstr ""
|
4183 |
|
4184 |
+
#: admin/manage-fields.php:1184
|
4185 |
msgid ""
|
4186 |
+
"The meta-name cannot be empty\n"
|
4187 |
""
|
4188 |
msgstr ""
|
4189 |
|
4193 |
""
|
4194 |
msgstr ""
|
4195 |
|
4196 |
+
#: admin/manage-fields.php:1190
|
4197 |
msgid ""
|
4198 |
+
"That meta-name can't be used, please choose another\n"
|
4199 |
""
|
4200 |
msgstr ""
|
4201 |
|
4202 |
+
#: admin/manage-fields.php:1220
|
4203 |
msgid ""
|
4204 |
+
"The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
|
4205 |
""
|
4206 |
msgstr ""
|
4207 |
|
4211 |
""
|
4212 |
msgstr ""
|
4213 |
|
4214 |
+
#: admin/manage-fields.php:1240
|
4215 |
msgid ""
|
4216 |
+
"The following option(s) did not coincide with the ones in the options list: %s\n"
|
4217 |
""
|
4218 |
msgstr ""
|
4219 |
|
4220 |
+
#: admin/manage-fields.php:1251
|
4221 |
msgid ""
|
4222 |
+
"Please select at least one user role\n"
|
4223 |
""
|
4224 |
msgstr ""
|
4225 |
|
4231 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
4232 |
msgstr ""
|
4233 |
|
|
|
|
|
|
|
|
|
4234 |
#: admin/manage-fields.php:1344
|
4235 |
msgid "With Profile Builder Pro you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
|
4236 |
msgstr ""
|
4237 |
|
4238 |
+
#: admin/manage-fields.php:1342
|
4239 |
+
msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
|
4240 |
+
msgstr ""
|
4241 |
+
|
4242 |
#: admin/manage-fields.php:1441
|
4243 |
msgid "Search Location"
|
4244 |
msgstr ""
|
4307 |
msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
+
#: admin/private-website.php:49
|
4311 |
msgid "Private Website Settings"
|
4312 |
msgstr ""
|
4313 |
|
4314 |
+
#: admin/private-website.php:62
|
4315 |
msgid "Enable Private Website"
|
4316 |
msgstr ""
|
4317 |
|
4318 |
+
#: admin/private-website.php:69
|
4319 |
msgid "Activate Private Website. It will restrict the content, RSS and REST API for your website"
|
4320 |
msgstr ""
|
4321 |
|
4322 |
+
#: admin/private-website.php:75
|
4323 |
msgid "Redirect to"
|
4324 |
msgstr ""
|
4325 |
|
4326 |
+
#: admin/private-website.php:78
|
4327 |
msgid "Default WordPress login page"
|
4328 |
msgstr ""
|
4329 |
|
4330 |
+
#: admin/private-website.php:91
|
4331 |
msgid "Redirects to this page if not logged in. We recommend this page contains the [wppb-login] shortcode."
|
4332 |
msgstr ""
|
4333 |
|
4334 |
+
#: admin/private-website.php:92
|
4335 |
msgid "You can force access to wp-login.php so you don't get locked out of the site by accessing the link:"
|
4336 |
msgstr ""
|
4337 |
|
4338 |
+
#: admin/private-website.php:98
|
4339 |
msgid "Allowed Pages"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
+
#: admin/private-website.php:113
|
4343 |
msgid "Allow these pages to be accessed even if you are not logged in"
|
4344 |
msgstr ""
|
4345 |
|
4346 |
+
#: admin/private-website.php:119
|
4347 |
msgid "Hide all Menus"
|
4348 |
msgstr ""
|
4349 |
|
4350 |
+
#: admin/private-website.php:126
|
4351 |
msgid "Hide all menu items if you are not logged in."
|
4352 |
msgstr ""
|
4353 |
|
4354 |
+
#: admin/private-website.php:127
|
4355 |
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."
|
4356 |
msgstr ""
|
4357 |
|
4358 |
+
#: admin/private-website.php:135, features/functions.php:851, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:47, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:293, ../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
|
4359 |
msgid "Save Changes"
|
4360 |
msgstr ""
|
4361 |
|
4362 |
+
#: admin/register-version.php:22, admin/register-version.php:22
|
4363 |
+
msgid "Profile Builder Register"
|
4364 |
+
msgstr ""
|
4365 |
+
|
4366 |
#: admin/register-version.php:14
|
4367 |
msgid "Register Your Version"
|
4368 |
msgstr ""
|
4371 |
msgid "Register Version"
|
4372 |
msgstr ""
|
4373 |
|
|
|
|
|
|
|
|
|
4374 |
#: admin/register-version.php:61
|
4375 |
msgid "Register your version of %s"
|
4376 |
msgstr ""
|
4387 |
msgid " Serial Number:"
|
4388 |
msgstr ""
|
4389 |
|
4390 |
+
#: admin/register-version.php:85
|
4391 |
+
msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
|
4392 |
msgstr ""
|
4393 |
|
4394 |
+
#: admin/register-version.php:83
|
4395 |
+
msgid "The serial number couldn't be validated because it expired!"
|
4396 |
+
msgstr ""
|
4397 |
+
|
4398 |
+
#: admin/register-version.php:83
|
4399 |
+
msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
|
4400 |
msgstr ""
|
4401 |
|
4402 |
#: admin/register-version.php:81
|
4407 |
msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
|
4408 |
msgstr ""
|
4409 |
|
4410 |
+
#: admin/register-version.php:79
|
4411 |
+
msgid "The serial number entered couldn't be validated!"
|
|
|
|
|
|
|
|
|
4412 |
msgstr ""
|
4413 |
|
4414 |
+
#: admin/register-version.php:77
|
4415 |
+
msgid "The serial number was successfully validated!"
|
4416 |
msgstr ""
|
4417 |
|
4418 |
#: admin/register-version.php:87
|
4419 |
msgid "(e.g. CLPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
4420 |
msgstr ""
|
4421 |
|
4422 |
+
#: admin/register-version.php:275
|
4423 |
+
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>"
|
|
|
|
|
|
|
|
|
4424 |
msgstr ""
|
4425 |
|
4426 |
#: admin/register-version.php:268
|
4427 |
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %5$sDismiss%6$s</p>"
|
4428 |
msgstr ""
|
4429 |
|
4430 |
+
#: admin/register-version.php:266
|
4431 |
+
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s</p>"
|
4432 |
+
msgstr ""
|
4433 |
+
|
4434 |
+
#: admin/register-version.php:260
|
4435 |
+
msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
|
4436 |
msgstr ""
|
4437 |
|
4438 |
#: features/functions.php:318
|
4463 |
msgid "This field is required"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
+
#: features/functions.php:813, front-end/default-fields/recaptcha/recaptcha.php:512, front-end/default-fields/recaptcha/recaptcha.php:503, front-end/default-fields/recaptcha/recaptcha.php:568, front-end/default-fields/recaptcha/recaptcha.php:616
|
4467 |
msgid "Please enter a (valid) reCAPTCHA value"
|
4468 |
msgstr ""
|
4469 |
|
4499 |
msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
|
4500 |
msgstr ""
|
4501 |
|
4502 |
+
#: front-end/class-formbuilder.php:180
|
4503 |
+
msgid "You must be logged in to edit your profile."
|
4504 |
msgstr ""
|
4505 |
|
4506 |
+
#: front-end/class-formbuilder.php:174
|
4507 |
+
msgid "You are currently logged in as %1s. You don't need another account. %2s"
|
4508 |
msgstr ""
|
4509 |
|
4510 |
+
#: front-end/class-formbuilder.php:174
|
4511 |
+
msgid "Log out of this account."
|
4512 |
msgstr ""
|
4513 |
|
4514 |
#: front-end/class-formbuilder.php:154
|
4515 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
4516 |
msgstr ""
|
4517 |
|
4518 |
+
#: front-end/class-formbuilder.php:154, front-end/class-formbuilder.php:151
|
4519 |
+
msgid "This message is only visible by administrators"
|
4520 |
msgstr ""
|
4521 |
|
4522 |
+
#: front-end/class-formbuilder.php:151
|
4523 |
+
msgid "Users can register themselves or you can manually create users here."
|
4524 |
msgstr ""
|
4525 |
|
4526 |
+
#: front-end/class-formbuilder.php:141
|
4527 |
+
msgid "Only an administrator can add new users."
|
4528 |
msgstr ""
|
4529 |
|
4530 |
#: front-end/class-formbuilder.php:273, front-end/login.php:481
|
4531 |
msgid "You are not allowed to do this."
|
4532 |
msgstr ""
|
4533 |
|
4534 |
+
#: front-end/class-formbuilder.php:372
|
4535 |
+
msgid "There was an error in the submitted form"
|
4536 |
+
msgstr ""
|
4537 |
+
|
4538 |
+
#: front-end/class-formbuilder.php:361
|
4539 |
+
msgid "Your profile has been successfully updated!"
|
4540 |
+
msgstr ""
|
4541 |
+
|
4542 |
#: front-end/class-formbuilder.php:329, front-end/class-formbuilder.php:336
|
4543 |
msgid "The account %1s has been successfully created!"
|
4544 |
msgstr ""
|
4551 |
msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
|
4552 |
msgstr ""
|
4553 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4554 |
#: front-end/class-formbuilder.php:429
|
4555 |
msgid "Add User"
|
4556 |
msgstr ""
|
4559 |
msgid "Send these credentials via email."
|
4560 |
msgstr ""
|
4561 |
|
4562 |
+
#: front-end/class-formbuilder.php:728
|
4563 |
+
msgid "There are no other users to edit"
|
4564 |
+
msgstr ""
|
4565 |
+
|
4566 |
#: front-end/class-formbuilder.php:710
|
4567 |
msgid "User to edit:"
|
4568 |
msgstr ""
|
4571 |
msgid "Select User"
|
4572 |
msgstr ""
|
4573 |
|
|
|
|
|
|
|
|
|
4574 |
#: front-end/class-formbuilder.php:751
|
4575 |
msgid "Something went wrong. Please try again!"
|
4576 |
msgstr ""
|
4583 |
msgid "The password you entered is incorrect."
|
4584 |
msgstr ""
|
4585 |
|
4586 |
+
#: front-end/login.php:321
|
4587 |
+
msgid "Invalid username."
|
4588 |
msgstr ""
|
4589 |
|
4590 |
#: front-end/login.php:319
|
4591 |
msgid "Invalid username or email."
|
4592 |
msgstr ""
|
4593 |
|
4594 |
+
#: front-end/login.php:317
|
4595 |
+
msgid "Invalid email."
|
4596 |
msgstr ""
|
4597 |
|
4598 |
#: front-end/login.php:325
|
4607 |
msgid "Both fields are empty."
|
4608 |
msgstr ""
|
4609 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4610 |
#: front-end/login.php:468, front-end/logout.php:25
|
4611 |
msgid "Log out of this account"
|
4612 |
msgstr ""
|
4619 |
msgid "You are currently logged in as %1$s. %2$s"
|
4620 |
msgstr ""
|
4621 |
|
4622 |
+
#: front-end/login.php:395
|
4623 |
+
msgid "Username or Email"
|
4624 |
+
msgstr ""
|
4625 |
+
|
4626 |
+
#: front-end/login.php:429
|
4627 |
+
msgid "Lost your password?"
|
4628 |
+
msgstr ""
|
4629 |
+
|
4630 |
#: front-end/logout.php:15
|
4631 |
msgid "You are currently logged in as %s. "
|
4632 |
msgstr ""
|
4639 |
msgid "Reset Password"
|
4640 |
msgstr ""
|
4641 |
|
|
|
|
|
|
|
|
|
4642 |
#: front-end/recover.php:119
|
4643 |
msgid "Please enter your username or email address."
|
4644 |
msgstr ""
|
4647 |
msgid "Username or E-mail"
|
4648 |
msgstr ""
|
4649 |
|
4650 |
+
#: front-end/recover.php:115
|
4651 |
+
msgid "Please enter your email address."
|
4652 |
+
msgstr ""
|
4653 |
+
|
4654 |
#: front-end/recover.php:123
|
4655 |
msgid "You will receive a link to create a new password via email."
|
4656 |
msgstr ""
|
4675 |
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
4676 |
msgstr ""
|
4677 |
|
4678 |
+
#: front-end/recover.php:232
|
4679 |
+
msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4680 |
msgstr ""
|
4681 |
|
4682 |
+
#: front-end/recover.php:259
|
4683 |
+
msgid "You are already logged in. You can change your password on the edit profile form."
|
4684 |
msgstr ""
|
4685 |
|
4686 |
+
#: front-end/recover.php:386
|
4687 |
+
msgid "The password must not be empty!"
|
4688 |
msgstr ""
|
4689 |
|
4690 |
#: front-end/recover.php:333
|
4703 |
msgid "Your password has been successfully changed!"
|
4704 |
msgstr ""
|
4705 |
|
4706 |
+
#: front-end/recover.php:282
|
4707 |
+
msgid "The username entered wasn't found in the database!"
|
4708 |
+
msgstr ""
|
4709 |
+
|
4710 |
+
#: front-end/recover.php:282
|
4711 |
+
msgid "Please check that you entered the correct username."
|
4712 |
+
msgstr ""
|
4713 |
+
|
4714 |
+
#: front-end/recover.php:320
|
4715 |
+
msgid "The email address entered wasn't found in the database!"
|
4716 |
+
msgstr ""
|
4717 |
+
|
4718 |
+
#: front-end/recover.php:320
|
4719 |
+
msgid "Please check that you entered the correct email address."
|
4720 |
+
msgstr ""
|
4721 |
+
|
4722 |
+
#: front-end/recover.php:295
|
4723 |
+
msgid "Check your e-mail for the confirmation link."
|
4724 |
+
msgstr ""
|
4725 |
+
|
4726 |
+
#: front-end/recover.php:309
|
4727 |
+
msgid "There was an error while trying to send the activation link to %1$s!"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
#: front-end/recover.php:411
|
4743 |
msgid "This username is now active!"
|
4744 |
msgstr ""
|
4745 |
|
4746 |
+
#: front-end/register.php:153
|
4747 |
+
msgid "There was an error while trying to activate the user."
|
|
|
|
|
|
|
|
|
4748 |
msgstr ""
|
4749 |
|
4750 |
#: front-end/register.php:124
|
4755 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
4756 |
msgstr ""
|
4757 |
|
4758 |
+
#: front-end/register.php:74
|
4759 |
+
msgid "This username is already activated!"
|
4760 |
+
msgstr ""
|
4761 |
+
|
4762 |
+
#: front-end/register.php:71, features/email-confirmation/email-confirmation.php:450
|
4763 |
+
msgid "Could not create user!"
|
4764 |
msgstr ""
|
4765 |
|
4766 |
#: modules/modules.php:11, modules/modules.php:11, modules/modules.php:56
|
5179 |
msgid "Your session has expired! Please refresh the page and try again."
|
5180 |
msgstr ""
|
5181 |
|
5182 |
+
#: features/admin-approval/admin-approval.php:88, features/admin-approval/admin-approval.php:134, features/email-confirmation/email-confirmation.php:132
|
5183 |
+
msgid "You either don't have permission for that action or there was an error!"
|
|
|
|
|
|
|
|
|
5184 |
msgstr ""
|
5185 |
|
5186 |
#: features/admin-approval/admin-approval.php:83
|
5187 |
msgid "User successfully deleted!"
|
5188 |
msgstr ""
|
5189 |
|
5190 |
+
#: features/admin-approval/admin-approval.php:77
|
5191 |
+
msgid "User successfully unapproved!"
|
|
|
|
|
|
|
|
|
5192 |
msgstr ""
|
5193 |
|
5194 |
+
#: features/admin-approval/admin-approval.php:67, features/admin-approval/admin-approval.php:279
|
5195 |
+
msgid "User successfully approved!"
|
5196 |
msgstr ""
|
5197 |
|
5198 |
#: features/admin-approval/admin-approval.php:130
|
5199 |
msgid "Users successfully deleted!"
|
5200 |
msgstr ""
|
5201 |
|
5202 |
+
#: features/admin-approval/admin-approval.php:122
|
5203 |
+
msgid "Users successfully unapproved!"
|
|
|
|
|
|
|
|
|
5204 |
msgstr ""
|
5205 |
|
5206 |
+
#: features/admin-approval/admin-approval.php:112
|
5207 |
+
msgid "Users successfully approved!"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
#: features/admin-approval/admin-approval.php:158
|
5219 |
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
5220 |
msgstr ""
|
5221 |
|
5222 |
+
#: features/admin-approval/admin-approval.php:150
|
5223 |
+
msgid "Your account on %1$s has been approved!"
|
5224 |
+
msgstr ""
|
5225 |
+
|
5226 |
+
#: features/admin-approval/admin-approval.php:151, features/admin-approval/admin-approval.php:154
|
5227 |
+
msgid "approved"
|
5228 |
+
msgstr ""
|
5229 |
+
|
5230 |
+
#: features/admin-approval/admin-approval.php:153
|
5231 |
+
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
5232 |
+
msgstr ""
|
5233 |
+
|
5234 |
#: features/admin-approval/admin-approval.php:192
|
5235 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
|
5236 |
msgstr ""
|
5247 |
msgid "delete this user?"
|
5248 |
msgstr ""
|
5249 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5250 |
#: features/admin-approval/class-admin-approval.php:118
|
5251 |
msgid "approve this user?"
|
5252 |
msgstr ""
|
5255 |
msgid "Approve"
|
5256 |
msgstr ""
|
5257 |
|
5258 |
+
#: features/admin-approval/class-admin-approval.php:116
|
5259 |
+
msgid "unapprove this user?"
|
5260 |
+
msgstr ""
|
5261 |
+
|
5262 |
+
#: features/admin-approval/class-admin-approval.php:116, features/admin-approval/class-admin-approval.php:223
|
5263 |
+
msgid "Unapprove"
|
5264 |
+
msgstr ""
|
5265 |
+
|
5266 |
#: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:312, modules/user-listing/userlisting.php:818, modules/user-listing/userlisting.php:2361
|
5267 |
msgid "Firstname"
|
5268 |
msgstr ""
|
5283 |
msgid "User-status"
|
5284 |
msgstr ""
|
5285 |
|
5286 |
+
#: features/admin-approval/class-admin-approval.php:274, features/email-confirmation/class-email-confirmation.php:279
|
5287 |
+
msgid "Sorry, but you don't have permission to do that!"
|
|
|
|
|
|
|
|
|
5288 |
msgstr ""
|
5289 |
|
5290 |
#: features/admin-approval/class-admin-approval.php:266
|
5291 |
msgid "Do you want to bulk delete the selected users?"
|
5292 |
msgstr ""
|
5293 |
|
5294 |
+
#: features/admin-approval/class-admin-approval.php:260
|
5295 |
+
msgid "Do you want to bulk unapprove the selected users?"
|
5296 |
msgstr ""
|
5297 |
|
5298 |
+
#: features/admin-approval/class-admin-approval.php:252
|
5299 |
+
msgid "Do you want to bulk approve the selected users?"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
#: features/admin-approval/class-admin-approval.php:346
|
5303 |
msgid "Unapproved"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
+
#: features/admin-approval/class-admin-approval.php:344
|
5307 |
+
msgid "Approved"
|
5308 |
+
msgstr ""
|
5309 |
+
|
5310 |
#: features/admin-approval/class-admin-approval.php:463, features/email-confirmation/class-email-confirmation.php:461
|
5311 |
msgid "All Users"
|
5312 |
msgstr ""
|
5379 |
msgid "Select Template"
|
5380 |
msgstr ""
|
5381 |
|
5382 |
+
#: features/content-restriction/content-restriction-filtering.php:348
|
5383 |
+
msgid "You must be logged in to view the comments."
|
5384 |
+
msgstr ""
|
5385 |
+
|
5386 |
+
#: features/content-restriction/content-restriction-filtering.php:346
|
5387 |
+
msgid "Comments are restricted for your user role."
|
5388 |
msgstr ""
|
5389 |
|
5390 |
#: features/content-restriction/content-restriction-functions.php:46
|
5391 |
msgid "This content is restricted for your user role."
|
5392 |
msgstr ""
|
5393 |
|
5394 |
+
#: features/content-restriction/content-restriction-functions.php:44
|
5395 |
+
msgid "You must be logged in to view this content."
|
5396 |
+
msgstr ""
|
5397 |
+
|
5398 |
#: features/content-restriction/content-restriction-meta-box.php:32
|
5399 |
msgid "Display Options"
|
5400 |
msgstr ""
|
5535 |
msgid "Resend Activation Email"
|
5536 |
msgstr ""
|
5537 |
|
5538 |
+
#: features/email-confirmation/class-email-confirmation.php:275
|
5539 |
+
msgid "The selected users have had their activation emails resent"
|
|
|
|
|
|
|
|
|
5540 |
msgstr ""
|
5541 |
|
5542 |
#: features/email-confirmation/class-email-confirmation.php:264
|
5543 |
msgid "The selected users have been activated"
|
5544 |
msgstr ""
|
5545 |
|
5546 |
+
#: features/email-confirmation/class-email-confirmation.php:250
|
5547 |
+
msgid "%s couldn't be deleted"
|
5548 |
+
msgstr ""
|
5549 |
+
|
5550 |
+
#: features/email-confirmation/class-email-confirmation.php:254
|
5551 |
+
msgid "All users have been successfully deleted"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
#: features/email-confirmation/class-email-confirmation.php:458, features/email-confirmation/class-email-confirmation.php:498, features/email-confirmation/email-confirmation.php:47
|
5555 |
msgid "Users with Unconfirmed Email Address"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
+
#: features/email-confirmation/email-confirmation.php:126
|
5559 |
+
msgid "Email notification resent to user"
|
5560 |
msgstr ""
|
5561 |
|
5562 |
#: features/email-confirmation/email-confirmation.php:115
|
5563 |
msgid "The selected user couldn't be deleted"
|
5564 |
msgstr ""
|
5565 |
|
5566 |
+
#: features/email-confirmation/email-confirmation.php:107
|
5567 |
+
msgid "There was an error performing that action!"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
#: features/email-confirmation/email-confirmation.php:406
|
5575 |
msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
|
5576 |
msgstr ""
|
5577 |
|
|
|
|
|
|
|
|
|
5578 |
#: features/email-confirmation/email-confirmation.php:476
|
5579 |
msgid "There was an error while trying to activate the user"
|
5580 |
msgstr ""
|
5581 |
|
5582 |
+
#: features/email-confirmation/email-confirmation.php:453
|
5583 |
+
msgid "That username is already activated!"
|
5584 |
+
msgstr ""
|
5585 |
+
|
5586 |
#: features/email-confirmation/email-confirmation.php:524, modules/email-customizer/admin-email-customizer.php:84
|
5587 |
msgid "A new subscriber has (been) registered!"
|
5588 |
msgstr ""
|
5595 |
msgid "[%1$s] Your new account information"
|
5596 |
msgstr ""
|
5597 |
|
5598 |
+
#: features/email-confirmation/email-confirmation.php:582, modules/email-customizer/email-customizer.php:579, modules/email-customizer/email-customizer.php:586, modules/email-customizer/email-customizer.php:600
|
5599 |
msgid "Your selected password at signup"
|
5600 |
msgstr ""
|
5601 |
|
|
|
|
|
|
|
|
|
5602 |
#: features/email-confirmation/email-confirmation.php:590
|
5603 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and the password: %3$s.<br/><br/>Access your account: %4$s "
|
5604 |
msgstr ""
|
5605 |
|
5606 |
+
#: features/email-confirmation/email-confirmation.php:588
|
5607 |
+
msgid "Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and your password is the one that you have selected during registration.<br/><br/>Access your account: %3$s "
|
5608 |
+
msgstr ""
|
5609 |
+
|
5610 |
#: features/email-confirmation/email-confirmation.php:643
|
5611 |
msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
|
5612 |
msgstr ""
|
5723 |
msgid "Clone"
|
5724 |
msgstr ""
|
5725 |
|
|
|
|
|
|
|
|
|
5726 |
#: features/roles-editor/roles-editor.php:892
|
5727 |
msgid "Change Default"
|
5728 |
msgstr ""
|
5731 |
msgid "You can't delete the default role. Change it first."
|
5732 |
msgstr ""
|
5733 |
|
5734 |
+
#: features/roles-editor/roles-editor.php:884
|
5735 |
+
msgid "You can't delete your role."
|
5736 |
+
msgstr ""
|
5737 |
+
|
5738 |
#: features/roles-editor/roles-editor.php:1116
|
5739 |
msgid "Edit User Roles"
|
5740 |
msgstr ""
|
5741 |
|
5742 |
+
#: features/upgrades/upgrades-functions.php:134, features/upgrades/upgrades-functions.php:91
|
5743 |
msgid "The usernames cannot be changed."
|
5744 |
msgstr ""
|
5745 |
|
5903 |
msgid "the URL of the previously visited page"
|
5904 |
msgstr ""
|
5905 |
|
5906 |
+
#: modules/custom-redirects/custom_redirects_admin.php:356, modules/custom-redirects/custom_redirects_admin.php:350, modules/custom-redirects/custom_redirects_admin.php:344
|
5907 |
msgid "You can't add duplicate redirects!"
|
5908 |
msgstr ""
|
5909 |
|
5947 |
""
|
5948 |
msgstr ""
|
5949 |
|
5950 |
+
#: modules/email-customizer/admin-email-customizer.php:80, modules/email-customizer/admin-email-customizer.php:111, modules/email-customizer/admin-email-customizer.php:142, modules/email-customizer/admin-email-customizer.php:181, modules/email-customizer/user-email-customizer.php:83, modules/email-customizer/user-email-customizer.php:114, modules/email-customizer/user-email-customizer.php:146, modules/email-customizer/user-email-customizer.php:177, modules/email-customizer/user-email-customizer.php:209, modules/email-customizer/user-email-customizer.php:241, modules/email-customizer/user-email-customizer.php:273, modules/email-customizer/user-email-customizer.php:307, modules/email-customizer/user-email-customizer.php:345
|
5951 |
msgid "Email Subject"
|
5952 |
msgstr ""
|
5953 |
|
5954 |
+
#: modules/email-customizer/admin-email-customizer.php:87, modules/email-customizer/admin-email-customizer.php:118, modules/email-customizer/admin-email-customizer.php:149, modules/email-customizer/admin-email-customizer.php:188, modules/email-customizer/user-email-customizer.php:90, modules/email-customizer/user-email-customizer.php:121, modules/email-customizer/user-email-customizer.php:153, modules/email-customizer/user-email-customizer.php:184, modules/email-customizer/user-email-customizer.php:216, modules/email-customizer/user-email-customizer.php:248, modules/email-customizer/user-email-customizer.php:280, modules/email-customizer/user-email-customizer.php:314, modules/email-customizer/user-email-customizer.php:352
|
5955 |
msgid "Enable email"
|
5956 |
msgstr ""
|
5957 |
|
5983 |
msgid "Admin Notification for User Password Reset"
|
5984 |
msgstr ""
|
5985 |
|
5986 |
+
#: modules/email-customizer/admin-email-customizer.php:177
|
5987 |
+
msgid ""
|
5988 |
+
"<p>The user {{username}} has updated their profile and some of the fields require admin approval:</p>\n"
|
5989 |
+
"<br>\n"
|
5990 |
+
"{{modified_fields}}\n"
|
5991 |
+
"<br>\n"
|
5992 |
+
"<p>Access this link to approve changes: {{approval_url}}</p>\n"
|
5993 |
+
""
|
5994 |
+
msgstr ""
|
5995 |
+
|
5996 |
+
#: modules/email-customizer/admin-email-customizer.php:185
|
5997 |
+
msgid "[{{site_name}}] A user has updated their profile. Some fields need approval"
|
5998 |
+
msgstr ""
|
5999 |
+
|
6000 |
+
#: modules/email-customizer/admin-email-customizer.php:203
|
6001 |
+
msgid "Admin Notification for Edit Profile Approved by Admin"
|
6002 |
+
msgstr ""
|
6003 |
+
|
6004 |
#: modules/email-customizer/email-customizer.php:7
|
6005 |
msgid "Available Tags"
|
6006 |
msgstr ""
|
6065 |
msgid "Approve User Link"
|
6066 |
msgstr ""
|
6067 |
|
6068 |
+
#: modules/email-customizer/email-customizer.php:58
|
6069 |
+
msgid "Approved Fields"
|
6070 |
+
msgstr ""
|
6071 |
+
|
6072 |
+
#: modules/email-customizer/email-customizer.php:59
|
6073 |
+
msgid "Unapproved Fields"
|
6074 |
+
msgstr ""
|
6075 |
+
|
6076 |
+
#: modules/email-customizer/email-customizer.php:63
|
6077 |
+
msgid "Modified Fields"
|
6078 |
+
msgstr ""
|
6079 |
+
|
6080 |
+
#: modules/email-customizer/email-customizer.php:64
|
6081 |
+
msgid "Approval URL"
|
6082 |
+
msgstr ""
|
6083 |
+
|
6084 |
+
#: modules/email-customizer/email-customizer.php:571
|
6085 |
msgid "The users selected password at signup"
|
6086 |
msgstr ""
|
6087 |
|
6213 |
msgid "Changed Email Address Notification"
|
6214 |
msgstr ""
|
6215 |
|
6216 |
+
#: modules/email-customizer/user-email-customizer.php:341
|
6217 |
+
msgid ""
|
6218 |
+
"<p>Your profile has been reviewed by an administrator:</p>\n"
|
6219 |
+
"<br>\n"
|
6220 |
+
"<p>Approved Fields: {{approved_fields}}</p>\n"
|
6221 |
+
"<p>Unapproved Fields: {{unapproved_fields}}</p>\n"
|
6222 |
+
""
|
6223 |
+
msgstr ""
|
6224 |
+
|
6225 |
+
#: modules/email-customizer/user-email-customizer.php:349
|
6226 |
+
msgid "[{{site_name}}] Your profile has been reviewed by an administrator"
|
6227 |
+
msgstr ""
|
6228 |
+
|
6229 |
+
#: modules/email-customizer/user-email-customizer.php:367
|
6230 |
+
msgid "User Notification for Edit Profile Approved by Admin"
|
6231 |
+
msgstr ""
|
6232 |
+
|
6233 |
#: modules/multiple-forms/edit-profile-forms.php:11, modules/multiple-forms/edit-profile-forms.php:12
|
6234 |
msgid "Edit-profile Form"
|
6235 |
msgstr ""
|
6278 |
msgid "(no title)"
|
6279 |
msgstr ""
|
6280 |
|
|
|
|
|
|
|
|
|
6281 |
#: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:2295
|
6282 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6283 |
msgstr ""
|
6286 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6287 |
msgstr ""
|
6288 |
|
6289 |
+
#: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:2293
|
6290 |
+
msgid "The shortcode will be available after you publish this form."
|
6291 |
+
msgstr ""
|
6292 |
+
|
6293 |
#: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:2332
|
6294 |
msgid "Form Shortcode"
|
6295 |
msgstr ""
|
6538 |
msgid "User not found"
|
6539 |
msgstr ""
|
6540 |
|
6541 |
+
#: modules/user-listing/userlisting.php:842, modules/user-listing/userlisting.php:2372
|
6542 |
+
msgid "Jabber"
|
6543 |
msgstr ""
|
6544 |
|
6545 |
+
#: modules/user-listing/userlisting.php:839, modules/user-listing/userlisting.php:2371
|
6546 |
+
msgid "Yim"
|
6547 |
msgstr ""
|
6548 |
|
6549 |
#: modules/user-listing/userlisting.php:836, modules/user-listing/userlisting.php:2370
|
6550 |
msgid "Aim"
|
6551 |
msgstr ""
|
6552 |
|
6553 |
+
#: modules/user-listing/userlisting.php:824, modules/user-listing/userlisting.php:2363
|
6554 |
+
msgid "Display Name"
|
6555 |
msgstr ""
|
6556 |
|
6557 |
+
#: modules/user-listing/userlisting.php:809
|
6558 |
+
msgid "First/Lastname"
|
6559 |
msgstr ""
|
6560 |
|
6561 |
#: modules/user-listing/userlisting.php:1129, modules/user-listing/userlisting.php:1609, modules/user-listing/userlisting.php:2087, modules/user-listing/userlisting.php:2564
|
6562 |
msgid "Search Users by All Fields"
|
6563 |
msgstr ""
|
6564 |
|
6565 |
+
#: modules/user-listing/userlisting.php:1405
|
6566 |
+
msgid "Click here to see more information about this user."
|
6567 |
+
msgstr ""
|
6568 |
+
|
6569 |
#: modules/user-listing/userlisting.php:1402
|
6570 |
msgid "Click here to see more information about this user"
|
6571 |
msgstr ""
|
6574 |
msgid "More..."
|
6575 |
msgstr ""
|
6576 |
|
|
|
|
|
|
|
|
|
6577 |
#: modules/user-listing/userlisting.php:1432
|
6578 |
msgid "View Map"
|
6579 |
msgstr ""
|
6580 |
|
6581 |
+
#: modules/user-listing/userlisting.php:1566, modules/user-listing/userlisting.php:1563
|
6582 |
msgid "Click here to go back"
|
6583 |
msgstr ""
|
6584 |
|
6586 |
msgid "Back"
|
6587 |
msgstr ""
|
6588 |
|
6589 |
+
#: modules/user-listing/userlisting.php:1628
|
6590 |
+
msgid "You don't have any pagination settings on this userlisting!"
|
6591 |
+
msgstr ""
|
6592 |
+
|
6593 |
#: modules/user-listing/userlisting.php:1596
|
6594 |
msgid "«« First"
|
6595 |
msgstr ""
|
6606 |
msgid "Last »»"
|
6607 |
msgstr ""
|
6608 |
|
|
|
|
|
|
|
|
|
6609 |
#: modules/user-listing/userlisting.php:1677
|
6610 |
msgid "Show All"
|
6611 |
msgstr ""
|
6846 |
msgid "You must enter a valid email address."
|
6847 |
msgstr ""
|
6848 |
|
6849 |
+
#: front-end/default-fields/email/email.php:67, front-end/default-fields/email/email.php:61
|
6850 |
msgid "This email is already reserved to be used soon."
|
6851 |
msgstr ""
|
6852 |
|
6853 |
+
#: front-end/default-fields/email/email.php:67, front-end/default-fields/email/email.php:61, front-end/default-fields/email/email.php:77, front-end/default-fields/email/email.php:95, front-end/default-fields/username/username.php:49, front-end/default-fields/username/username.php:65
|
6854 |
msgid "Please try a different one!"
|
6855 |
msgstr ""
|
6856 |
|
6866 |
msgid "You did not type %s. Try again!"
|
6867 |
msgstr ""
|
6868 |
|
6869 |
+
#: front-end/default-fields/password-repeat/password-repeat.php:41, front-end/default-fields/password-repeat/password-repeat.php:37
|
6870 |
msgid "The passwords do not match"
|
6871 |
msgstr ""
|
6872 |
|
6874 |
msgid "To use reCAPTCHA you must get an API key from"
|
6875 |
msgstr ""
|
6876 |
|
6877 |
+
#: front-end/default-fields/recaptcha/recaptcha.php:202
|
6878 |
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
6879 |
msgstr ""
|
6880 |
|
6881 |
+
#: front-end/default-fields/recaptcha/recaptcha.php:270
|
6882 |
msgid "To use reCAPTCHA you must get an API public key from:"
|
6883 |
msgstr ""
|
6884 |
|
6885 |
+
#: front-end/default-fields/recaptcha/recaptcha.php:568
|
6886 |
msgid "Click the BACK button on your browser, and try again."
|
6887 |
msgstr ""
|
6888 |
|
|
|
|
|
|
|
|
|
6889 |
#: front-end/default-fields/user-role/user-role.php:106
|
6890 |
msgid "As an administrator you cannot change your role."
|
6891 |
msgstr ""
|
6892 |
|
6893 |
+
#: front-end/default-fields/user-role/user-role.php:111, front-end/default-fields/user-role/user-role.php:97
|
6894 |
+
msgid "Only administrators can see this field on edit profile forms."
|
6895 |
+
msgstr ""
|
6896 |
+
|
6897 |
+
#: front-end/default-fields/user-role/user-role.php:148, front-end/default-fields/user-role/user-role.php:177, front-end/default-fields/user-role/user-role.php:172
|
6898 |
msgid "You cannot register this user role"
|
6899 |
msgstr ""
|
6900 |
|
6918 |
msgid "You must enter a valid URL."
|
6919 |
msgstr ""
|
6920 |
|
6921 |
+
#: front-end/extra-fields/map/map.php:69, front-end/extra-fields/map/map.php:46
|
6922 |
msgid "Please add the Google Maps API key for this field."
|
6923 |
msgstr ""
|
6924 |
|
6946 |
msgid "Required phone number format: "
|
6947 |
msgstr ""
|
6948 |
|
6949 |
+
#: front-end/extra-fields/select-cpt/select-cpt.php:66, front-end/extra-fields/select-cpt/select-cpt.php:42, ../pb-add-on-labels-edit/assets/lib/wck-api/fields/country select.php:14, ../pb-add-on-labels-edit/assets/lib/wck-api/fields/cpt select.php:17, ../pb-add-on-labels-edit/assets/lib/wck-api/fields/select.php:14, ../pb-add-on-labels-edit/assets/lib/wck-api/fields/user select.php:15, assets/lib/wck-api/fields/country select.php:14, assets/lib/wck-api/fields/cpt select.php:17, assets/lib/wck-api/fields/select.php:14, assets/lib/wck-api/fields/user select.php:15
|
6950 |
msgid "...Choose"
|
6951 |
msgstr ""
|
6952 |
|