Version Description
- Fix: issue with 2FA settings tab incorrectly appearing for free version users
- Misc: added filter over the Display Name field select options
Download this release
Release Info
Developer | raster02 |
Plugin | User registration & user profile – Profile Builder |
Version | 3.5.6 |
Comparing to | |
See all releases |
Code changes from version 3.5.5 to 3.5.6
- admin/general-settings.php +5 -1
- features/functions.php +23 -1
- front-end/default-fields/display-name/display-name.php +2 -0
- front-end/login.php +22 -18
- index.php +22 -3
- readme.txt +5 -1
- translation/profile-builder.catalog.php +6 -1
- translation/profile-builder.pot +233 -214
admin/general-settings.php
CHANGED
@@ -12,7 +12,6 @@ function wppb_get_settings_pages(){
|
|
12 |
'profile-builder-admin-bar-settings' => __( 'Admin Bar', 'profile-builder' ),
|
13 |
'profile-builder-content_restriction' => __( 'Content Restriction', 'profile-builder' ),
|
14 |
'profile-builder-private-website' => __( 'Private Website', 'profile-builder' ),
|
15 |
-
'profile-builder-two-factor-authentication' => __( 'Two-Factor Authentication', 'profile-builder' ),
|
16 |
'profile-builder-toolbox-settings' => __( 'Advanced Settings', 'profile-builder' ),
|
17 |
);
|
18 |
|
@@ -24,6 +23,11 @@ function wppb_get_settings_pages(){
|
|
24 |
$settings_pages['sub-tabs']['profile-builder-toolbox-settings']['shortcodes'] = __( 'Shortcodes', 'profile-builder' );
|
25 |
$settings_pages['sub-tabs']['profile-builder-toolbox-settings']['admin'] = __( 'Admin', 'profile-builder' );
|
26 |
|
|
|
|
|
|
|
|
|
|
|
27 |
//add sub-pages here for email customizer
|
28 |
if (file_exists(WPPB_PLUGIN_DIR . '/add-ons/add-ons.php')) {
|
29 |
if( ( isset($wppb_module_settings['wppb_emailCustomizerAdmin']) && $wppb_module_settings['wppb_emailCustomizerAdmin'] == 'show' ) || ( isset($wppb_module_settings['wppb_emailCustomizer']) && $wppb_module_settings['wppb_emailCustomizer'] == 'show') ){
|
12 |
'profile-builder-admin-bar-settings' => __( 'Admin Bar', 'profile-builder' ),
|
13 |
'profile-builder-content_restriction' => __( 'Content Restriction', 'profile-builder' ),
|
14 |
'profile-builder-private-website' => __( 'Private Website', 'profile-builder' ),
|
|
|
15 |
'profile-builder-toolbox-settings' => __( 'Advanced Settings', 'profile-builder' ),
|
16 |
);
|
17 |
|
23 |
$settings_pages['sub-tabs']['profile-builder-toolbox-settings']['shortcodes'] = __( 'Shortcodes', 'profile-builder' );
|
24 |
$settings_pages['sub-tabs']['profile-builder-toolbox-settings']['admin'] = __( 'Admin', 'profile-builder' );
|
25 |
|
26 |
+
//add tab for 2FA
|
27 |
+
if (file_exists(WPPB_PLUGIN_DIR . '/features/two-factor-authentication/class-two-factor-authentication.php')) {
|
28 |
+
$settings_pages['pages']['profile-builder-two-factor-authentication'] = __( 'Two-Factor Authentication', 'profile-builder' );
|
29 |
+
}
|
30 |
+
|
31 |
//add sub-pages here for email customizer
|
32 |
if (file_exists(WPPB_PLUGIN_DIR . '/add-ons/add-ons.php')) {
|
33 |
if( ( isset($wppb_module_settings['wppb_emailCustomizerAdmin']) && $wppb_module_settings['wppb_emailCustomizerAdmin'] == 'show' ) || ( isset($wppb_module_settings['wppb_emailCustomizer']) && $wppb_module_settings['wppb_emailCustomizer'] == 'show') ){
|
features/functions.php
CHANGED
@@ -1353,7 +1353,7 @@ function wppb_sanitize_value( $string ){
|
|
1353 |
}
|
1354 |
|
1355 |
/**
|
1356 |
-
* Function that receives a user role and returns
|
1357 |
* Returns the original role if not found.
|
1358 |
*
|
1359 |
* @since v.2.7.1
|
@@ -1371,6 +1371,28 @@ function wppb_get_role_name($role){
|
|
1371 |
return $role;
|
1372 |
}
|
1373 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1374 |
/**
|
1375 |
* Functionality for Private Website start
|
1376 |
*/
|
1353 |
}
|
1354 |
|
1355 |
/**
|
1356 |
+
* Function that receives a user role and returns its label.
|
1357 |
* Returns the original role if not found.
|
1358 |
*
|
1359 |
* @since v.2.7.1
|
1371 |
return $role;
|
1372 |
}
|
1373 |
|
1374 |
+
/**
|
1375 |
+
* Function that receives a user role label and returns its slug.
|
1376 |
+
* Returns the original role label if not found.
|
1377 |
+
*
|
1378 |
+
* @since v.3.5.6
|
1379 |
+
*
|
1380 |
+
* @param string $role
|
1381 |
+
*
|
1382 |
+
* @return string
|
1383 |
+
*/
|
1384 |
+
function wppb_get_role_slug($role) {
|
1385 |
+
global $wp_roles;
|
1386 |
+
|
1387 |
+
foreach ( $wp_roles->role_names as $slug => $label ) {
|
1388 |
+
if ( $label === $role) {
|
1389 |
+
return $slug;
|
1390 |
+
}
|
1391 |
+
}
|
1392 |
+
|
1393 |
+
return $role;
|
1394 |
+
}
|
1395 |
+
|
1396 |
/**
|
1397 |
* Functionality for Private Website start
|
1398 |
*/
|
front-end/default-fields/display-name/display-name.php
CHANGED
@@ -38,6 +38,8 @@ function wppb_display_name_handler( $output, $form_location, $field, $user_id, $
|
|
38 |
$public_display = array_map( 'trim', $public_display );
|
39 |
$public_display = array_unique( $public_display );
|
40 |
|
|
|
|
|
41 |
$output = '<label for="display_name">'.$item_title.$error_mark.'</label>';
|
42 |
$output .= '<select class="default_field_display-name '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" name="display_name" id="display-name">';
|
43 |
|
38 |
$public_display = array_map( 'trim', $public_display );
|
39 |
$public_display = array_unique( $public_display );
|
40 |
|
41 |
+
$public_display = apply_filters( 'wppb_display_name_options', $public_display );
|
42 |
+
|
43 |
$output = '<label for="display_name">'.$item_title.$error_mark.'</label>';
|
44 |
$output .= '<select class="default_field_display-name '. apply_filters( 'wppb_fields_extra_css_class', '', $field ) .'" name="display_name" id="display-name">';
|
45 |
|
front-end/login.php
CHANGED
@@ -285,27 +285,31 @@ function wppb_resend_confirmation_email() {
|
|
285 |
add_action('init', 'wppb_resend_confirmation_email');
|
286 |
|
287 |
function wppb_change_error_message($error_message) {
|
288 |
-
global $wpdb;
|
289 |
-
$check_user = $_REQUEST['log'];
|
290 |
-
|
291 |
-
if ( is_email($check_user) )
|
292 |
-
$sql_result = $wpdb->get_row( $wpdb->prepare("SELECT * FROM " . $wpdb->base_prefix . "signups WHERE user_email = %s", sanitize_email( $check_user )), ARRAY_A );
|
293 |
-
else {
|
294 |
-
$sql_result = $wpdb->get_row( $wpdb->prepare("SELECT * FROM " . $wpdb->base_prefix . "signups WHERE user_login = %s", sanitize_user( $check_user )), ARRAY_A );
|
295 |
-
if ( $sql_result )
|
296 |
-
$check_user = $sql_result['user_email'];
|
297 |
-
}
|
298 |
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
|
308 |
return $error_message;
|
|
|
309 |
}
|
310 |
add_filter('wppb_login_invalid_username_error_message', 'wppb_change_error_message');
|
311 |
|
285 |
add_action('init', 'wppb_resend_confirmation_email');
|
286 |
|
287 |
function wppb_change_error_message($error_message) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
|
289 |
+
if( isset( $_REQUEST['log'] ) ){
|
290 |
+
global $wpdb;
|
291 |
+
$check_user = sanitize_text_field( $_REQUEST['log'] );
|
292 |
+
|
293 |
+
if ( is_email($check_user) )
|
294 |
+
$sql_result = $wpdb->get_row( $wpdb->prepare("SELECT * FROM " . $wpdb->base_prefix . "signups WHERE user_email = %s", sanitize_email( $check_user )), ARRAY_A );
|
295 |
+
else {
|
296 |
+
$sql_result = $wpdb->get_row( $wpdb->prepare("SELECT * FROM " . $wpdb->base_prefix . "signups WHERE user_login = %s", sanitize_user( $check_user )), ARRAY_A );
|
297 |
+
if ( $sql_result )
|
298 |
+
$check_user = $sql_result['user_email'];
|
299 |
+
}
|
300 |
+
|
301 |
+
// if the email address exists in wp_signups table, display message and link to resend Confirmation Email
|
302 |
+
if ( isset($sql_result) ) {
|
303 |
+
$confirmation_url_nonce = wp_create_nonce( 'wppb_confirmation_url_nonce' );
|
304 |
+
$current_url = wppb_curpageurl();
|
305 |
+
$arr_params = array('email' => sanitize_email( $check_user ), 'wppb-action' => 'resend_email_confirmation', '_wpnonce' => $confirmation_url_nonce);
|
306 |
+
$confirmation_url = add_query_arg($arr_params, $current_url);
|
307 |
+
$error_message = '<strong>' . __('ERROR', 'profile-builder') . '</strong>: ' . sprintf( __( 'You need to confirm your Email Address before logging in! To resend the Confirmation Email %1$sclick here%2$s', 'profile-builder' ), '<a href="' . esc_url( $confirmation_url ) . '" title="Resend Confirmation Email">', '</a>.' );
|
308 |
+
}
|
309 |
+
}
|
310 |
|
311 |
return $error_message;
|
312 |
+
|
313 |
}
|
314 |
add_filter('wppb_login_invalid_username_error_message', 'wppb_change_error_message');
|
315 |
|
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.5.
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
@@ -70,7 +70,7 @@ function wppb_free_plugin_init() {
|
|
70 |
*
|
71 |
*
|
72 |
*/
|
73 |
-
define('PROFILE_BUILDER_VERSION', '3.5.
|
74 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
75 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
76 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
@@ -239,11 +239,30 @@ function wppb_free_plugin_init() {
|
|
239 |
if (file_exists(WPPB_PLUGIN_DIR . '/add-ons/add-ons.php')) {
|
240 |
$localSerial = get_option('wppb_profile_builder_pro_serial');
|
241 |
$wppb_update = new wppb_PluginUpdateChecker('http://updatemetadata.cozmoslabs.com/?localSerialNumber=' . $localSerial . '&uniqueproduct=CLPBP', __FILE__, 'profile-builder-pro-update');
|
242 |
-
|
243 |
} else {
|
244 |
$localSerial = get_option('wppb_profile_builder_hobbyist_serial');
|
245 |
$wppb_update = new wppb_PluginUpdateChecker('http://updatemetadata.cozmoslabs.com/?localSerialNumber=' . $localSerial . '&uniqueproduct=CLPBH', __FILE__, 'profile-builder-hobbyist-update');
|
246 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
}
|
248 |
|
249 |
|
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.5.6
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
70 |
*
|
71 |
*
|
72 |
*/
|
73 |
+
define('PROFILE_BUILDER_VERSION', '3.5.6' );
|
74 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
75 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
76 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
239 |
if (file_exists(WPPB_PLUGIN_DIR . '/add-ons/add-ons.php')) {
|
240 |
$localSerial = get_option('wppb_profile_builder_pro_serial');
|
241 |
$wppb_update = new wppb_PluginUpdateChecker('http://updatemetadata.cozmoslabs.com/?localSerialNumber=' . $localSerial . '&uniqueproduct=CLPBP', __FILE__, 'profile-builder-pro-update');
|
|
|
242 |
} else {
|
243 |
$localSerial = get_option('wppb_profile_builder_hobbyist_serial');
|
244 |
$wppb_update = new wppb_PluginUpdateChecker('http://updatemetadata.cozmoslabs.com/?localSerialNumber=' . $localSerial . '&uniqueproduct=CLPBH', __FILE__, 'profile-builder-hobbyist-update');
|
245 |
}
|
246 |
+
|
247 |
+
function wppb_plugin_update_message( $plugin_data, $new_data ) {
|
248 |
+
|
249 |
+
$wppb_version = file_exists( WPPB_PLUGIN_DIR . '/add-ons/add-ons.php' ) ? 'pro' : 'hobbyist';
|
250 |
+
|
251 |
+
$wppb_profile_builder_serial = get_option( 'wppb_profile_builder_'.$wppb_version.'_serial' );
|
252 |
+
$wppb_profile_builder_serial_status = get_option( 'wppb_profile_builder_'.$wppb_version.'_serial_status' );
|
253 |
+
|
254 |
+
if( empty( $wppb_profile_builder_serial ) ){
|
255 |
+
|
256 |
+
echo '<br />' . wp_kses_post( sprintf( __('To enable updates, please enter your serial number on the <a href="%s">Register Version</a> page. If you don\'t have a serial number, please see <a href="%s" target="_blank">details & pricing</a>.', 'profile-builder' ), esc_url( admin_url('admin.php?page=profile-builder-register') ), 'https://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wpbackend&utm_medium=wppb-plugins-page&utm_campaign=WPPB' . $wppb_version ) );
|
257 |
+
|
258 |
+
} else if( $wppb_profile_builder_serial_status == 'expired' ) {
|
259 |
+
|
260 |
+
echo '<br />' . wp_kses_post( sprintf( __('To enable updates, your licence needs to be renewed. Please go to the <a href="%s">Cozmoslabs Account</a> page and login to renew.', 'profile-builder' ), 'https://www.cozmoslabs.com/account/' ) );
|
261 |
+
|
262 |
+
}
|
263 |
+
|
264 |
+
}
|
265 |
+
add_action( 'in_plugin_update_message-' . plugin_basename( __FILE__ ), 'wppb_plugin_update_message', 10, 2 );
|
266 |
}
|
267 |
|
268 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
|
4 |
Tags: user registration, user profile, registration, profile, user registration form, user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 5.8.0
|
7 |
-
Stable tag: 3.5.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -176,6 +176,10 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
176 |
15. Edit or Add New User Role
|
177 |
|
178 |
== Changelog ==
|
|
|
|
|
|
|
|
|
179 |
= 3.5.5 =
|
180 |
* Fix: Don't show required asterisk for password fields on the edit profile form
|
181 |
* Fix: A display issue for the Show Password toggle on Repeat Password fields
|
4 |
Tags: user registration, user profile, registration, profile, user registration form, user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 5.8.0
|
7 |
+
Stable tag: 3.5.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
176 |
15. Edit or Add New User Role
|
177 |
|
178 |
== Changelog ==
|
179 |
+
= 3.5.6 =
|
180 |
+
* Fix: issue with 2FA settings tab incorrectly appearing for free version users
|
181 |
+
* Misc: added filter over the Display Name field select options
|
182 |
+
|
183 |
= 3.5.5 =
|
184 |
* Fix: Don't show required asterisk for password fields on the edit profile form
|
185 |
* Fix: A display issue for the Show Password toggle on Repeat Password fields
|
translation/profile-builder.catalog.php
CHANGED
@@ -190,6 +190,8 @@
|
|
190 |
<?php __("Wrong password!", "profile-builder"); ?>
|
191 |
<?php __("Please enter a valid email!", "profile-builder"); ?>
|
192 |
<?php __("You can only login on this form.<br>Register with your social account on the register form.", "profile-builder"); ?>
|
|
|
|
|
193 |
<?php __("To create a new account please confirm:", "profile-builder"); ?>
|
194 |
<?php __("You must agree to the Terms And Conditions to create a new account.", "profile-builder"); ?>
|
195 |
<?php __("Please enter your Facebook email!", "profile-builder"); ?>
|
@@ -245,6 +247,8 @@
|
|
245 |
<?php __("Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page.", "profile-builder"); ?>
|
246 |
<?php __("Choose Edit Profile form to display on My Account page:", "profile-builder"); ?>
|
247 |
<?php __("Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce.", "profile-builder"); ?>
|
|
|
|
|
248 |
<?php __("%s is also activated. You need to deactivate it before activating this version of the plugin.", "profile-builder"); ?>
|
249 |
<?php __("MailChimp", "profile-builder"); ?>
|
250 |
<?php __("MailChimp Integration", "profile-builder"); ?>
|
@@ -480,13 +484,13 @@
|
|
480 |
<?php __("Submit and Deactivate", "profile-builder"); ?>
|
481 |
<?php __("Admin Bar", "profile-builder"); ?>
|
482 |
<?php __("Private Website", "profile-builder"); ?>
|
483 |
-
<?php __("Two-Factor Authentication", "profile-builder"); ?>
|
484 |
<?php __("Advanced Settings", "profile-builder"); ?>
|
485 |
<?php __("Forms", "profile-builder"); ?>
|
486 |
<?php __("Fields", "profile-builder"); ?>
|
487 |
<?php __("Userlisting", "profile-builder"); ?>
|
488 |
<?php __("Shortcodes", "profile-builder"); ?>
|
489 |
<?php __("Admin", "profile-builder"); ?>
|
|
|
490 |
<?php __("User Emails", "profile-builder"); ?>
|
491 |
<?php __("Administrator Emails", "profile-builder"); ?>
|
492 |
<?php __("Profile Builder Settings", "profile-builder"); ?>
|
@@ -1419,6 +1423,7 @@
|
|
1419 |
<?php __("Click here to see more information about this user.", "profile-builder"); ?>
|
1420 |
<?php __("Click here to see more information about this user", "profile-builder"); ?>
|
1421 |
<?php __("More...", "profile-builder"); ?>
|
|
|
1422 |
<?php __("View Map", "profile-builder"); ?>
|
1423 |
<?php __("Click here to go back", "profile-builder"); ?>
|
1424 |
<?php __("Back", "profile-builder"); ?>
|
190 |
<?php __("Wrong password!", "profile-builder"); ?>
|
191 |
<?php __("Please enter a valid email!", "profile-builder"); ?>
|
192 |
<?php __("You can only login on this form.<br>Register with your social account on the register form.", "profile-builder"); ?>
|
193 |
+
<?php __("Continue", "profile-builder"); ?>
|
194 |
+
<?php __("Ok", "profile-builder"); ?>
|
195 |
<?php __("To create a new account please confirm:", "profile-builder"); ?>
|
196 |
<?php __("You must agree to the Terms And Conditions to create a new account.", "profile-builder"); ?>
|
197 |
<?php __("Please enter your Facebook email!", "profile-builder"); ?>
|
247 |
<?php __("Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page.", "profile-builder"); ?>
|
248 |
<?php __("Choose Edit Profile form to display on My Account page:", "profile-builder"); ?>
|
249 |
<?php __("Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce.", "profile-builder"); ?>
|
250 |
+
<?php __("To enable updates, your licence needs to be renewed. Please go to the <a href=\"%s\">Cozmoslabs Account</a> page and login to renew.", "profile-builder"); ?>
|
251 |
+
<?php __("To enable updates, please enter your serial number on the <a href=\"%s\">Register Version</a> page. If you don't have a serial number, please see <a href=\"%s\" target=\"_blank\">details & pricing</a>.", "profile-builder"); ?>
|
252 |
<?php __("%s is also activated. You need to deactivate it before activating this version of the plugin.", "profile-builder"); ?>
|
253 |
<?php __("MailChimp", "profile-builder"); ?>
|
254 |
<?php __("MailChimp Integration", "profile-builder"); ?>
|
484 |
<?php __("Submit and Deactivate", "profile-builder"); ?>
|
485 |
<?php __("Admin Bar", "profile-builder"); ?>
|
486 |
<?php __("Private Website", "profile-builder"); ?>
|
|
|
487 |
<?php __("Advanced Settings", "profile-builder"); ?>
|
488 |
<?php __("Forms", "profile-builder"); ?>
|
489 |
<?php __("Fields", "profile-builder"); ?>
|
490 |
<?php __("Userlisting", "profile-builder"); ?>
|
491 |
<?php __("Shortcodes", "profile-builder"); ?>
|
492 |
<?php __("Admin", "profile-builder"); ?>
|
493 |
+
<?php __("Two-Factor Authentication", "profile-builder"); ?>
|
494 |
<?php __("User Emails", "profile-builder"); ?>
|
495 |
<?php __("Administrator Emails", "profile-builder"); ?>
|
496 |
<?php __("Profile Builder Settings", "profile-builder"); ?>
|
1423 |
<?php __("Click here to see more information about this user.", "profile-builder"); ?>
|
1424 |
<?php __("Click here to see more information about this user", "profile-builder"); ?>
|
1425 |
<?php __("More...", "profile-builder"); ?>
|
1426 |
+
<?php __("Remove Marker", "profile-builder"); ?>
|
1427 |
<?php __("View Map", "profile-builder"); ?>
|
1428 |
<?php __("Click here to go back", "profile-builder"); ?>
|
1429 |
<?php __("Back", "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-mailchimp-integration/admin/mailchimp-page.php:232, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:307, add-ons/user-listing/userlisting.php:
|
29 |
msgid "None"
|
30 |
msgstr ""
|
31 |
|
@@ -49,11 +49,11 @@ msgstr ""
|
|
49 |
msgid "Replace bbPress Login form:"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: ../pb-add-on-bbpress/bbpress-page.php:152, ../pb-add-on-social-connect/index.php:327, admin/general-settings.php:
|
53 |
msgid "No"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: ../pb-add-on-bbpress/bbpress-page.php:153, ../pb-add-on-social-connect/index.php:326, admin/general-settings.php:
|
57 |
msgid "Yes"
|
58 |
msgstr ""
|
59 |
|
@@ -377,7 +377,7 @@ msgstr ""
|
|
377 |
msgid "Edit Profile"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: ../pb-add-on-custom-profile-menus/index.php:311, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, front-end/class-formbuilder.php:464, front-end/login.php:
|
381 |
msgid "Register"
|
382 |
msgstr ""
|
383 |
|
@@ -701,7 +701,7 @@ msgstr ""
|
|
701 |
msgid "Default Social Connect CSS in the Front-end"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: ../pb-add-on-social-connect/index.php:239, admin/admin-functions.php:211, admin/general-settings.php:
|
705 |
msgid "Settings"
|
706 |
msgstr ""
|
707 |
|
@@ -721,103 +721,111 @@ msgstr ""
|
|
721 |
msgid "An account with this email address already exists.<br> Do you want to connect it?"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: ../pb-add-on-social-connect/index.php:
|
725 |
msgid "Please enter your website account password"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: ../pb-add-on-social-connect/index.php:
|
729 |
msgid "Please enter a new email"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: ../pb-add-on-social-connect/index.php:
|
733 |
msgid "You have successfully linked your account to %%."
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: ../pb-add-on-social-connect/index.php:
|
737 |
msgid "Something went wrong. Please try again later!"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: ../pb-add-on-social-connect/index.php:
|
741 |
msgid "Before you can access your account you need to confirm your email address. Please check your inbox and click the activation link."
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: ../pb-add-on-social-connect/index.php:
|
745 |
msgid "<strong>ERROR</strong>: You need to confirm your email address before you can log in."
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: ../pb-add-on-social-connect/index.php:
|
749 |
msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: ../pb-add-on-social-connect/index.php:
|
753 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: ../pb-add-on-social-connect/index.php:
|
757 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: ../pb-add-on-social-connect/index.php:
|
761 |
msgid "here"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: ../pb-add-on-social-connect/index.php:
|
765 |
msgid "<strong>You can only login with social accounts, not register!</strong><br>Please link your social account to an existing user account first."
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: ../pb-add-on-social-connect/index.php:
|
769 |
msgid "Wrong password!"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: ../pb-add-on-social-connect/index.php:
|
773 |
msgid "Please enter a valid email!"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: ../pb-add-on-social-connect/index.php:
|
777 |
msgid "You can only login on this form.<br>Register with your social account on the register form."
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: ../pb-add-on-social-connect/index.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
781 |
msgid "To create a new account please confirm:"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: ../pb-add-on-social-connect/index.php:
|
785 |
msgid "You must agree to the Terms And Conditions to create a new account."
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: ../pb-add-on-social-connect/index.php:
|
789 |
msgid "Please enter your Facebook email!"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: ../pb-add-on-social-connect/index.php:
|
793 |
msgid "Waiting for Twitter..."
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: ../pb-add-on-social-connect/index.php:
|
797 |
msgid "Please enter your Twitter email!"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: ../pb-add-on-social-connect/index.php:
|
801 |
msgid "Profile Builder not active!"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: ../pb-add-on-social-connect/index.php:
|
805 |
msgid "General Settings"
|
806 |
msgstr ""
|
807 |
|
808 |
-
#: ../pb-add-on-social-connect/index.php:
|
809 |
msgid "Application Settings"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: ../pb-add-on-social-connect/index.php:
|
813 |
msgid "Appearance Settings"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: ../pb-add-on-social-connect/index.php:
|
817 |
msgid "Unlink"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: ../pb-add-on-social-connect/index.php:
|
821 |
msgid "Your account is linked with:"
|
822 |
msgstr ""
|
823 |
|
@@ -825,11 +833,11 @@ msgstr ""
|
|
825 |
msgid "Country"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, admin/manage-fields.php:334, add-ons/user-listing/userlisting.php:
|
829 |
msgid "First Name"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, admin/manage-fields.php:335, add-ons/user-listing/userlisting.php:
|
833 |
msgid "Last Name"
|
834 |
msgstr ""
|
835 |
|
@@ -997,7 +1005,14 @@ msgstr ""
|
|
997 |
msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
|
998 |
msgstr ""
|
999 |
|
1000 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1001 |
#: index.php:41
|
1002 |
msgid "%s is also activated. You need to deactivate it before activating this version of the plugin."
|
1003 |
msgstr ""
|
@@ -1302,7 +1317,7 @@ msgstr ""
|
|
1302 |
msgid "Easy to edit templates for listing your users as well as creating single user pages."
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: admin/add-ons.php:66, admin/basic-info.php:168, admin/general-settings.php:
|
1306 |
msgid "Email Customizer"
|
1307 |
msgstr ""
|
1308 |
|
@@ -1530,11 +1545,11 @@ msgstr ""
|
|
1530 |
msgid "Show"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: admin/admin-bar.php:81, add-ons/user-listing/userlisting.php:
|
1534 |
msgid "Hide"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: admin/admin-bar.php:92, admin/general-settings.php:
|
1538 |
msgid "Save Changes"
|
1539 |
msgstr ""
|
1540 |
|
@@ -1554,19 +1569,19 @@ msgstr ""
|
|
1554 |
msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: admin/admin-functions.php:138, admin/general-settings.php:
|
1558 |
msgid "Very weak"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: admin/admin-functions.php:138, admin/general-settings.php:
|
1562 |
msgid "Weak"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: admin/admin-functions.php:138, admin/general-settings.php:
|
1566 |
msgid "Medium"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: admin/admin-functions.php:138, admin/general-settings.php:
|
1570 |
msgid "Strong"
|
1571 |
msgstr ""
|
1572 |
|
@@ -1942,159 +1957,159 @@ msgstr ""
|
|
1942 |
msgid "Private Website"
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#: admin/general-settings.php:15,
|
1946 |
-
msgid "Two-Factor Authentication"
|
1947 |
-
msgstr ""
|
1948 |
-
|
1949 |
-
#: admin/general-settings.php:16, admin/advanced-settings/advanced-settings.php:38, admin/advanced-settings/advanced-settings.php:48
|
1950 |
msgid "Advanced Settings"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: admin/general-settings.php:
|
1954 |
msgid "Forms"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
-
#: admin/general-settings.php:
|
1958 |
msgid "Fields"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
-
#: admin/general-settings.php:
|
1962 |
msgid "Userlisting"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: admin/general-settings.php:
|
1966 |
msgid "Shortcodes"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#: admin/general-settings.php:
|
1970 |
msgid "Admin"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
-
#: admin/general-settings.php:
|
|
|
|
|
|
|
|
|
1974 |
msgid "User Emails"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
-
#: admin/general-settings.php:
|
1978 |
msgid "Administrator Emails"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
-
#: admin/general-settings.php:
|
1982 |
msgid "Profile Builder Settings"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
-
#: admin/general-settings.php:
|
1986 |
msgid "Load Profile Builder's own CSS file in the front-end:"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
-
#: admin/general-settings.php:
|
1990 |
msgid "You can find the default file here: %1$s"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#: admin/general-settings.php:
|
1994 |
msgid "Automatically Log In:"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
-
#: admin/general-settings.php:
|
1998 |
msgid "Select \"Yes\" to automatically log in new users after successful registration."
|
1999 |
msgstr ""
|
2000 |
|
2001 |
-
#: admin/general-settings.php:
|
2002 |
msgid "\"Email Confirmation\" Activated:"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
-
#: admin/general-settings.php:
|
2006 |
msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#: admin/general-settings.php:
|
2010 |
msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
|
2011 |
msgstr ""
|
2012 |
|
2013 |
-
#: admin/general-settings.php:
|
2014 |
msgid "\"Email Confirmation\" Landing Page:"
|
2015 |
msgstr ""
|
2016 |
|
2017 |
-
#: admin/general-settings.php:
|
2018 |
msgid "Existing Pages"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
-
#: admin/general-settings.php:
|
2022 |
msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
|
2023 |
msgstr ""
|
2024 |
|
2025 |
-
#: admin/general-settings.php:
|
2026 |
msgid "\"Admin Approval\" Activated:"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
-
#: admin/general-settings.php:
|
2030 |
msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
|
2031 |
msgstr ""
|
2032 |
|
2033 |
-
#: admin/general-settings.php:
|
2034 |
msgid "\"Admin Approval\" on User Role:"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
-
#: admin/general-settings.php:
|
2038 |
msgid "Select on what user roles to activate Admin Approval."
|
2039 |
msgstr ""
|
2040 |
|
2041 |
-
#: admin/general-settings.php:
|
2042 |
msgid "\"Roles Editor\" Activated:"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#: admin/general-settings.php:
|
2046 |
msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
|
2047 |
msgstr ""
|
2048 |
|
2049 |
-
#: admin/general-settings.php:
|
2050 |
msgid "\"Admin Approval\" Feature:"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
#: admin/general-settings.php:
|
2054 |
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
|
2055 |
msgstr ""
|
2056 |
|
2057 |
-
#: admin/general-settings.php:
|
2058 |
msgid "Allow Users to Log in With:"
|
2059 |
msgstr ""
|
2060 |
|
2061 |
-
#: admin/general-settings.php:
|
2062 |
msgid "Username and Email"
|
2063 |
msgstr ""
|
2064 |
|
2065 |
-
#: admin/general-settings.php:
|
2066 |
msgid "Username"
|
2067 |
msgstr ""
|
2068 |
|
2069 |
-
#: admin/general-settings.php:
|
2070 |
msgid "Email"
|
2071 |
msgstr ""
|
2072 |
|
2073 |
-
#: admin/general-settings.php:
|
2074 |
msgid "\"Username and Email\" - users can Log In with either their Username or their Email."
|
2075 |
msgstr ""
|
2076 |
|
2077 |
-
#: admin/general-settings.php:
|
2078 |
msgid "\"Username\" - users can only Log In with their Username. Both the Username and Email fields will be shown in the front-end forms."
|
2079 |
msgstr ""
|
2080 |
|
2081 |
-
#: admin/general-settings.php:
|
2082 |
msgid "\"Email\" - users can only Log In with their Email. The Username field will be hidden in the front-end forms and Usernames will be automatically generated based on the Emails."
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: admin/general-settings.php:
|
2086 |
msgid "Minimum Password Length:"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#: admin/general-settings.php:
|
2090 |
msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
-
#: admin/general-settings.php:
|
2094 |
msgid "Minimum Password Strength:"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
-
#: admin/general-settings.php:
|
2098 |
msgid "Disabled"
|
2099 |
msgstr ""
|
2100 |
|
@@ -2586,7 +2601,7 @@ msgstr ""
|
|
2586 |
msgid "Usernames cannot be changed."
|
2587 |
msgstr ""
|
2588 |
|
2589 |
-
#: admin/manage-fields.php:336, add-ons/user-listing/userlisting.php:
|
2590 |
msgid "Nickname"
|
2591 |
msgstr ""
|
2592 |
|
@@ -2598,7 +2613,7 @@ msgstr ""
|
|
2598 |
msgid "E-mail"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
-
#: admin/manage-fields.php:340, add-ons/email-customizer/email-customizer.php:33, add-ons/user-listing/userlisting.php:121, add-ons/user-listing/userlisting.php:
|
2602 |
msgid "Website"
|
2603 |
msgstr ""
|
2604 |
|
@@ -2614,7 +2629,7 @@ msgstr ""
|
|
2614 |
msgid "Jabber / Google Talk"
|
2615 |
msgstr ""
|
2616 |
|
2617 |
-
#: admin/manage-fields.php:350, add-ons/user-listing/userlisting.php:124, add-ons/user-listing/userlisting.php:
|
2618 |
msgid "Biographical Info"
|
2619 |
msgstr ""
|
2620 |
|
@@ -4586,19 +4601,19 @@ msgstr ""
|
|
4586 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4587 |
msgstr ""
|
4588 |
|
4589 |
-
#: features/functions.php:
|
4590 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
4591 |
msgstr ""
|
4592 |
|
4593 |
-
#: features/functions.php:
|
4594 |
msgid "You are not currently logged in."
|
4595 |
msgstr ""
|
4596 |
|
4597 |
-
#: features/functions.php:
|
4598 |
msgid "Profile Builder"
|
4599 |
msgstr ""
|
4600 |
|
4601 |
-
#: features/functions.php:
|
4602 |
msgid "User Meta"
|
4603 |
msgstr ""
|
4604 |
|
@@ -4634,7 +4649,7 @@ msgstr ""
|
|
4634 |
msgid "Only an administrator can add new users."
|
4635 |
msgstr ""
|
4636 |
|
4637 |
-
#: front-end/class-formbuilder.php:302, front-end/login.php:
|
4638 |
msgid "You are not allowed to do this."
|
4639 |
msgstr ""
|
4640 |
|
@@ -4711,71 +4726,71 @@ msgstr ""
|
|
4711 |
msgid "Activation email sent to %s"
|
4712 |
msgstr ""
|
4713 |
|
4714 |
-
#: front-end/login.php:
|
4715 |
msgid "ERROR"
|
4716 |
msgstr ""
|
4717 |
|
4718 |
-
#: front-end/login.php:
|
4719 |
msgid "You need to confirm your Email Address before logging in! To resend the Confirmation Email %1$sclick here%2$s"
|
4720 |
msgstr ""
|
4721 |
|
4722 |
-
#: front-end/login.php:
|
4723 |
msgid "The password field is empty."
|
4724 |
msgstr ""
|
4725 |
|
4726 |
-
#: front-end/login.php:
|
4727 |
msgid "The password you entered is incorrect."
|
4728 |
msgstr ""
|
4729 |
|
4730 |
-
#: front-end/login.php:
|
4731 |
msgid "The username field is empty"
|
4732 |
msgstr ""
|
4733 |
|
4734 |
-
#: front-end/login.php:
|
4735 |
msgid "The username/email field is empty"
|
4736 |
msgstr ""
|
4737 |
|
4738 |
-
#: front-end/login.php:
|
4739 |
msgid "The email field is empty."
|
4740 |
msgstr ""
|
4741 |
|
4742 |
-
#: front-end/login.php:
|
4743 |
msgid "Invalid username."
|
4744 |
msgstr ""
|
4745 |
|
4746 |
-
#: front-end/login.php:
|
4747 |
msgid "Invalid username or email."
|
4748 |
msgstr ""
|
4749 |
|
4750 |
-
#: front-end/login.php:
|
4751 |
msgid "Invalid email."
|
4752 |
msgstr ""
|
4753 |
|
4754 |
-
#: front-end/login.php:
|
4755 |
msgid "Password Lost and Found."
|
4756 |
msgstr ""
|
4757 |
|
4758 |
-
#: front-end/login.php:
|
4759 |
msgid "Lost your password?"
|
4760 |
msgstr ""
|
4761 |
|
4762 |
-
#: front-end/login.php:
|
4763 |
msgid "Both fields are empty."
|
4764 |
msgstr ""
|
4765 |
|
4766 |
-
#: front-end/login.php:
|
4767 |
msgid "Log out of this account"
|
4768 |
msgstr ""
|
4769 |
|
4770 |
-
#: front-end/login.php:
|
4771 |
msgid "Log out »"
|
4772 |
msgstr ""
|
4773 |
|
4774 |
-
#: front-end/login.php:
|
4775 |
msgid "You are currently logged in as %1$s. %2$s"
|
4776 |
msgstr ""
|
4777 |
|
4778 |
-
#: front-end/login.php:
|
4779 |
msgid "Username or Email"
|
4780 |
msgstr ""
|
4781 |
|
@@ -5192,7 +5207,7 @@ msgstr ""
|
|
5192 |
msgid "Available Tags"
|
5193 |
msgstr ""
|
5194 |
|
5195 |
-
#: add-ons/email-customizer/email-customizer.php:11, add-ons/user-listing/userlisting.php:
|
5196 |
msgid "User Fields Tags"
|
5197 |
msgstr ""
|
5198 |
|
@@ -5204,7 +5219,7 @@ msgstr ""
|
|
5204 |
msgid "Site Name"
|
5205 |
msgstr ""
|
5206 |
|
5207 |
-
#: add-ons/email-customizer/email-customizer.php:25, add-ons/user-listing/userlisting.php:
|
5208 |
msgid "User Id"
|
5209 |
msgstr ""
|
5210 |
|
@@ -5469,27 +5484,27 @@ msgstr ""
|
|
5469 |
msgid "No Edit-profile Forms found in trash"
|
5470 |
msgstr ""
|
5471 |
|
5472 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:
|
5473 |
msgid "Shortcode"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:
|
5477 |
msgid "(no title)"
|
5478 |
msgstr ""
|
5479 |
|
5480 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:
|
5481 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
5482 |
msgstr ""
|
5483 |
|
5484 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:
|
5485 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
5486 |
msgstr ""
|
5487 |
|
5488 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:
|
5489 |
msgid "The shortcode will be available after you publish this form."
|
5490 |
msgstr ""
|
5491 |
|
5492 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:
|
5493 |
msgid "Form Shortcode"
|
5494 |
msgstr ""
|
5495 |
|
@@ -5653,383 +5668,387 @@ msgstr ""
|
|
5653 |
msgid "Display name as"
|
5654 |
msgstr ""
|
5655 |
|
5656 |
-
#: add-ons/user-listing/userlisting.php:
|
5657 |
msgid "Role"
|
5658 |
msgstr ""
|
5659 |
|
5660 |
-
#: add-ons/user-listing/userlisting.php:
|
5661 |
msgid "Role Slug"
|
5662 |
msgstr ""
|
5663 |
|
5664 |
-
#: add-ons/user-listing/userlisting.php:
|
5665 |
msgid "Registration Date"
|
5666 |
msgstr ""
|
5667 |
|
5668 |
-
#: add-ons/user-listing/userlisting.php:
|
5669 |
msgid "Number of Posts"
|
5670 |
msgstr ""
|
5671 |
|
5672 |
-
#: add-ons/user-listing/userlisting.php:
|
5673 |
msgid "More Info"
|
5674 |
msgstr ""
|
5675 |
|
5676 |
-
#: add-ons/user-listing/userlisting.php:
|
5677 |
msgid "More Info Url"
|
5678 |
msgstr ""
|
5679 |
|
5680 |
-
#: add-ons/user-listing/userlisting.php:
|
5681 |
msgid "Avatar or Gravatar"
|
5682 |
msgstr ""
|
5683 |
|
5684 |
-
#: add-ons/user-listing/userlisting.php:
|
5685 |
msgid "User Nicename"
|
5686 |
msgstr ""
|
5687 |
|
5688 |
-
#: add-ons/user-listing/userlisting.php:
|
5689 |
msgid "Pagination"
|
5690 |
msgstr ""
|
5691 |
|
5692 |
-
#: add-ons/user-listing/userlisting.php:
|
5693 |
msgid "Search all Fields"
|
5694 |
msgstr ""
|
5695 |
|
5696 |
-
#: add-ons/user-listing/userlisting.php:
|
5697 |
msgid "Faceted Menus"
|
5698 |
msgstr ""
|
5699 |
|
5700 |
-
#: add-ons/user-listing/userlisting.php:
|
5701 |
msgid "User Count"
|
5702 |
msgstr ""
|
5703 |
|
5704 |
-
#: add-ons/user-listing/userlisting.php:
|
5705 |
msgid "Map of listed users"
|
5706 |
msgstr ""
|
5707 |
|
5708 |
-
#: add-ons/user-listing/userlisting.php:
|
5709 |
msgid "Sort Tags"
|
5710 |
msgstr ""
|
5711 |
|
5712 |
-
#: add-ons/user-listing/userlisting.php:
|
5713 |
msgid "Extra Functions"
|
5714 |
msgstr ""
|
5715 |
|
5716 |
-
#: add-ons/user-listing/userlisting.php:
|
5717 |
msgid "Go Back Link"
|
5718 |
msgstr ""
|
5719 |
|
5720 |
-
#: add-ons/user-listing/userlisting.php:
|
5721 |
msgid "All-userlisting Template"
|
5722 |
msgstr ""
|
5723 |
|
5724 |
-
#: add-ons/user-listing/userlisting.php:
|
5725 |
msgid "Single-userlisting Template"
|
5726 |
msgstr ""
|
5727 |
|
5728 |
-
#: add-ons/user-listing/userlisting.php:
|
5729 |
msgid "Avatar"
|
5730 |
msgstr ""
|
5731 |
|
5732 |
-
#: add-ons/user-listing/userlisting.php:
|
5733 |
msgid "Firstname"
|
5734 |
msgstr ""
|
5735 |
|
5736 |
-
#: add-ons/user-listing/userlisting.php:
|
5737 |
msgid "Posts"
|
5738 |
msgstr ""
|
5739 |
|
5740 |
-
#: add-ons/user-listing/userlisting.php:
|
5741 |
msgid "Sign-up Date"
|
5742 |
msgstr ""
|
5743 |
|
5744 |
-
#: add-ons/user-listing/userlisting.php:
|
5745 |
msgid "More"
|
5746 |
msgstr ""
|
5747 |
|
5748 |
-
#: add-ons/user-listing/userlisting.php:
|
5749 |
msgid "You do not have permission to view this user list."
|
5750 |
msgstr ""
|
5751 |
|
5752 |
-
#: add-ons/user-listing/userlisting.php:
|
5753 |
msgid "You do not have the required user role to view this user list."
|
5754 |
msgstr ""
|
5755 |
|
5756 |
-
#: add-ons/user-listing/userlisting.php:
|
5757 |
msgid "User not found"
|
5758 |
msgstr ""
|
5759 |
|
5760 |
-
#: add-ons/user-listing/userlisting.php:
|
5761 |
msgid "Jabber"
|
5762 |
msgstr ""
|
5763 |
|
5764 |
-
#: add-ons/user-listing/userlisting.php:
|
5765 |
msgid "Yim"
|
5766 |
msgstr ""
|
5767 |
|
5768 |
-
#: add-ons/user-listing/userlisting.php:
|
5769 |
msgid "Aim"
|
5770 |
msgstr ""
|
5771 |
|
5772 |
-
#: add-ons/user-listing/userlisting.php:
|
5773 |
msgid "Display Name"
|
5774 |
msgstr ""
|
5775 |
|
5776 |
-
#: add-ons/user-listing/userlisting.php:
|
5777 |
msgid "First/Lastname"
|
5778 |
msgstr ""
|
5779 |
|
5780 |
-
#: add-ons/user-listing/userlisting.php:
|
5781 |
msgid "Search Users by All Fields"
|
5782 |
msgstr ""
|
5783 |
|
5784 |
-
#: add-ons/user-listing/userlisting.php:
|
5785 |
msgid "Click here to see more information about this user."
|
5786 |
msgstr ""
|
5787 |
|
5788 |
-
#: add-ons/user-listing/userlisting.php:
|
5789 |
msgid "Click here to see more information about this user"
|
5790 |
msgstr ""
|
5791 |
|
5792 |
-
#: add-ons/user-listing/userlisting.php:
|
5793 |
msgid "More..."
|
5794 |
msgstr ""
|
5795 |
|
5796 |
-
#: add-ons/user-listing/userlisting.php:
|
|
|
|
|
|
|
|
|
5797 |
msgid "View Map"
|
5798 |
msgstr ""
|
5799 |
|
5800 |
-
#: add-ons/user-listing/userlisting.php:
|
5801 |
msgid "Click here to go back"
|
5802 |
msgstr ""
|
5803 |
|
5804 |
-
#: add-ons/user-listing/userlisting.php:
|
5805 |
msgid "Back"
|
5806 |
msgstr ""
|
5807 |
|
5808 |
-
#: add-ons/user-listing/userlisting.php:
|
5809 |
msgid "You don't have any pagination settings on this userlisting!"
|
5810 |
msgstr ""
|
5811 |
|
5812 |
-
#: add-ons/user-listing/userlisting.php:
|
5813 |
msgid "«« First"
|
5814 |
msgstr ""
|
5815 |
|
5816 |
-
#: add-ons/user-listing/userlisting.php:
|
5817 |
msgid "« Prev"
|
5818 |
msgstr ""
|
5819 |
|
5820 |
-
#: add-ons/user-listing/userlisting.php:
|
5821 |
msgid "Next » "
|
5822 |
msgstr ""
|
5823 |
|
5824 |
-
#: add-ons/user-listing/userlisting.php:
|
5825 |
msgid "Last »»"
|
5826 |
msgstr ""
|
5827 |
|
5828 |
-
#: add-ons/user-listing/userlisting.php:
|
5829 |
msgid "Show All"
|
5830 |
msgstr ""
|
5831 |
|
5832 |
-
#: add-ons/user-listing/userlisting.php:
|
5833 |
msgid "Choose..."
|
5834 |
msgstr ""
|
5835 |
|
5836 |
-
#: add-ons/user-listing/userlisting.php:
|
5837 |
msgid "No options available"
|
5838 |
msgstr ""
|
5839 |
|
5840 |
-
#: add-ons/user-listing/userlisting.php:
|
5841 |
msgid "Remove All Filters"
|
5842 |
msgstr ""
|
5843 |
|
5844 |
-
#: add-ons/user-listing/userlisting.php:
|
5845 |
msgid "Search"
|
5846 |
msgstr ""
|
5847 |
|
5848 |
-
#: add-ons/user-listing/userlisting.php:
|
5849 |
msgid "Clear Results"
|
5850 |
msgstr ""
|
5851 |
|
5852 |
-
#: add-ons/user-listing/userlisting.php:
|
5853 |
msgid "Extra shortcode parameters"
|
5854 |
msgstr ""
|
5855 |
|
5856 |
-
#: add-ons/user-listing/userlisting.php:
|
5857 |
msgid "View all extra shortcode parameters"
|
5858 |
msgstr ""
|
5859 |
|
5860 |
-
#: add-ons/user-listing/userlisting.php:
|
5861 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
5862 |
msgstr ""
|
5863 |
|
5864 |
-
#: add-ons/user-listing/userlisting.php:
|
5865 |
msgid "Example:"
|
5866 |
msgstr ""
|
5867 |
|
5868 |
-
#: add-ons/user-listing/userlisting.php:
|
5869 |
msgid "Remember though, that the field-value combination must exist in the database."
|
5870 |
msgstr ""
|
5871 |
|
5872 |
-
#: add-ons/user-listing/userlisting.php:
|
5873 |
msgid "displays only the users that you specified the user_id for"
|
5874 |
msgstr ""
|
5875 |
|
5876 |
-
#: add-ons/user-listing/userlisting.php:
|
5877 |
msgid "displays all users except the ones you specified the user_id for"
|
5878 |
msgstr ""
|
5879 |
|
5880 |
-
#: add-ons/user-listing/userlisting.php:
|
5881 |
msgid "Lastname"
|
5882 |
msgstr ""
|
5883 |
|
5884 |
-
#: add-ons/user-listing/userlisting.php:
|
5885 |
msgid "Random (very slow on large databases > 10K user)"
|
5886 |
msgstr ""
|
5887 |
|
5888 |
-
#: add-ons/user-listing/userlisting.php:
|
5889 |
msgid "Ascending"
|
5890 |
msgstr ""
|
5891 |
|
5892 |
-
#: add-ons/user-listing/userlisting.php:
|
5893 |
msgid "Descending"
|
5894 |
msgstr ""
|
5895 |
|
5896 |
-
#: add-ons/user-listing/userlisting.php:
|
5897 |
msgid "Roles to Display"
|
5898 |
msgstr ""
|
5899 |
|
5900 |
-
#: add-ons/user-listing/userlisting.php:
|
5901 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
5902 |
msgstr ""
|
5903 |
|
5904 |
-
#: add-ons/user-listing/userlisting.php:
|
5905 |
msgid "Number of Users/Page"
|
5906 |
msgstr ""
|
5907 |
|
5908 |
-
#: add-ons/user-listing/userlisting.php:
|
5909 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
5910 |
msgstr ""
|
5911 |
|
5912 |
-
#: add-ons/user-listing/userlisting.php:
|
5913 |
msgid "Default Sorting Criteria"
|
5914 |
msgstr ""
|
5915 |
|
5916 |
-
#: add-ons/user-listing/userlisting.php:
|
5917 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
5918 |
msgstr ""
|
5919 |
|
5920 |
-
#: add-ons/user-listing/userlisting.php:
|
5921 |
msgid "Default Sorting Order"
|
5922 |
msgstr ""
|
5923 |
|
5924 |
-
#: add-ons/user-listing/userlisting.php:
|
5925 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
5926 |
msgstr ""
|
5927 |
|
5928 |
-
#: add-ons/user-listing/userlisting.php:
|
5929 |
msgid "Avatar Size (All-userlisting)"
|
5930 |
msgstr ""
|
5931 |
|
5932 |
-
#: add-ons/user-listing/userlisting.php:
|
5933 |
msgid "Set the avatar size on the all-userlisting only"
|
5934 |
msgstr ""
|
5935 |
|
5936 |
-
#: add-ons/user-listing/userlisting.php:
|
5937 |
msgid "Avatar Size (Single-userlisting)"
|
5938 |
msgstr ""
|
5939 |
|
5940 |
-
#: add-ons/user-listing/userlisting.php:
|
5941 |
msgid "Set the avatar size on the single-userlisting only"
|
5942 |
msgstr ""
|
5943 |
|
5944 |
-
#: add-ons/user-listing/userlisting.php:
|
5945 |
msgid "Visible only to logged in users?"
|
5946 |
msgstr ""
|
5947 |
|
5948 |
-
#: add-ons/user-listing/userlisting.php:
|
5949 |
msgid "The userlisting will only be visible only to the logged in users"
|
5950 |
msgstr ""
|
5951 |
|
5952 |
-
#: add-ons/user-listing/userlisting.php:
|
5953 |
msgid "Visible to following Roles"
|
5954 |
msgstr ""
|
5955 |
|
5956 |
-
#: add-ons/user-listing/userlisting.php:
|
5957 |
msgid "The userlisting will only be visible to the following roles"
|
5958 |
msgstr ""
|
5959 |
|
5960 |
-
#: add-ons/user-listing/userlisting.php:
|
5961 |
msgid "Userlisting Settings"
|
5962 |
msgstr ""
|
5963 |
|
5964 |
-
#: add-ons/user-listing/userlisting.php:
|
5965 |
msgid "Label"
|
5966 |
msgstr ""
|
5967 |
|
5968 |
-
#: add-ons/user-listing/userlisting.php:
|
5969 |
msgid "Choose the facet name that appears on the frontend"
|
5970 |
msgstr ""
|
5971 |
|
5972 |
-
#: add-ons/user-listing/userlisting.php:
|
5973 |
msgid "Facet Type"
|
5974 |
msgstr ""
|
5975 |
|
5976 |
-
#: add-ons/user-listing/userlisting.php:
|
5977 |
msgid "Choose the facet menu type"
|
5978 |
msgstr ""
|
5979 |
|
5980 |
-
#: add-ons/user-listing/userlisting.php:
|
5981 |
msgid "Facet Meta"
|
5982 |
msgstr ""
|
5983 |
|
5984 |
-
#: add-ons/user-listing/userlisting.php:
|
5985 |
msgid "Choose the meta field for the facet menu. If you want to use a repeater meta or a meta outisde Profile Builder just type the value and press enter."
|
5986 |
msgstr ""
|
5987 |
|
5988 |
-
#: add-ons/user-listing/userlisting.php:
|
5989 |
msgid "Behaviour"
|
5990 |
msgstr ""
|
5991 |
|
5992 |
-
#: add-ons/user-listing/userlisting.php:
|
5993 |
msgid "Narrow the results"
|
5994 |
msgstr ""
|
5995 |
|
5996 |
-
#: add-ons/user-listing/userlisting.php:
|
5997 |
msgid "Expand the results"
|
5998 |
msgstr ""
|
5999 |
|
6000 |
-
#: add-ons/user-listing/userlisting.php:
|
6001 |
msgid "Choose how multiple selections affect the results"
|
6002 |
msgstr ""
|
6003 |
|
6004 |
-
#: add-ons/user-listing/userlisting.php:
|
6005 |
msgid "Visible choices"
|
6006 |
msgstr ""
|
6007 |
|
6008 |
-
#: add-ons/user-listing/userlisting.php:
|
6009 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6010 |
msgstr ""
|
6011 |
|
6012 |
-
#: add-ons/user-listing/userlisting.php:
|
6013 |
msgid "Search Fields"
|
6014 |
msgstr ""
|
6015 |
|
6016 |
-
#: add-ons/user-listing/userlisting.php:
|
6017 |
msgid "Choose the fields in which the Search Field will look in"
|
6018 |
msgstr ""
|
6019 |
|
6020 |
-
#: add-ons/user-listing/userlisting.php:
|
6021 |
msgid "Search Settings"
|
6022 |
msgstr ""
|
6023 |
|
6024 |
-
#: add-ons/user-listing/userlisting.php:
|
6025 |
msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
|
6026 |
msgstr ""
|
6027 |
|
6028 |
-
#: add-ons/user-listing/userlisting.php:
|
6029 |
msgid "You can find it in the Profile Builder menu."
|
6030 |
msgstr ""
|
6031 |
|
6032 |
-
#: add-ons/user-listing/userlisting.php:
|
6033 |
msgid "No results found!"
|
6034 |
msgstr ""
|
6035 |
|
@@ -6241,7 +6260,7 @@ msgstr ""
|
|
6241 |
msgid "Conditional Rules"
|
6242 |
msgstr ""
|
6243 |
|
6244 |
-
#: features/conditional-fields/conditional-fields.php:
|
6245 |
msgid "This field has conditional logic enabled."
|
6246 |
msgstr ""
|
6247 |
|
@@ -7042,7 +7061,7 @@ msgstr ""
|
|
7042 |
msgid "Remove"
|
7043 |
msgstr ""
|
7044 |
|
7045 |
-
#: front-end/extra-fields/avatar/avatar.php:85, front-end/extra-fields/checkbox/checkbox.php:45, front-end/extra-fields/colorpicker/colorpicker.php:45, front-end/extra-fields/datepicker/datepicker.php:40, front-end/extra-fields/input/input.php:30, front-end/extra-fields/input-email/input-email.php:30, front-end/extra-fields/input-hidden/input-hidden.php:34, front-end/extra-fields/input-url/input-url.php:30, front-end/extra-fields/language/language.php:34, front-end/extra-fields/map/map.php:
|
7046 |
msgid "required"
|
7047 |
msgstr ""
|
7048 |
|
@@ -7054,11 +7073,11 @@ msgstr ""
|
|
7054 |
msgid "You must enter a valid URL."
|
7055 |
msgstr ""
|
7056 |
|
7057 |
-
#: front-end/extra-fields/map/map.php:
|
7058 |
msgid "Please add the Google Maps API key for this field."
|
7059 |
msgstr ""
|
7060 |
|
7061 |
-
#: front-end/extra-fields/map/map.php:
|
7062 |
msgid "Something went wrong. Please try again."
|
7063 |
msgstr ""
|
7064 |
|
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, add-ons/user-listing/userlisting.php:590, add-ons/user-listing/userlisting.php:587, add-ons/user-listing/userlisting.php:585, add-ons/user-listing/userlisting.php:568, add-ons/user-listing/userlisting.php:565, add-ons/user-listing/userlisting.php:563, features/content-restriction/content-restriction.php:136
|
29 |
msgid "None"
|
30 |
msgstr ""
|
31 |
|
49 |
msgid "Replace bbPress Login form:"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: ../pb-add-on-bbpress/bbpress-page.php:152, ../pb-add-on-social-connect/index.php:327, ../pb-add-on-social-connect/index.php:386, admin/general-settings.php:162, admin/general-settings.php:177, admin/general-settings.php:226, admin/general-settings.php:271, admin/private-website.php:69, admin/private-website.php:136, admin/private-website.php:151, add-ons/multiple-forms/edit-profile-forms.php:206, add-ons/multiple-forms/register-forms.php:229, add-ons/multiple-forms/register-forms.php:230, features/content-restriction/content-restriction.php:88, features/two-factor-authentication/class-two-factor-authentication.php:124, admin/advanced-settings/includes/forms/placeholder-labels.php:136, assets/misc/elementor/widgets/class-pb-widget-l.php:76, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:180, assets/misc/elementor/widgets/class-pb-widget-ul.php:108
|
53 |
msgid "No"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: ../pb-add-on-bbpress/bbpress-page.php:153, ../pb-add-on-social-connect/index.php:326, ../pb-add-on-social-connect/index.php:385, admin/general-settings.php:148, admin/general-settings.php:161, admin/general-settings.php:176, admin/general-settings.php:225, admin/general-settings.php:272, admin/manage-fields.php:193, admin/private-website.php:70, admin/private-website.php:137, admin/private-website.php:150, add-ons/multiple-forms/edit-profile-forms.php:206, add-ons/multiple-forms/register-forms.php:229, add-ons/multiple-forms/register-forms.php:230, add-ons/user-listing/userlisting.php:2513, features/content-restriction/content-restriction.php:89, features/two-factor-authentication/class-two-factor-authentication.php:125, admin/advanced-settings/includes/forms/placeholder-labels.php:135, admin/advanced-settings/includes/views/view-admin.php:18, admin/advanced-settings/includes/views/view-admin.php:34, admin/advanced-settings/includes/views/view-admin.php:50, admin/advanced-settings/includes/views/view-admin.php:69, admin/advanced-settings/includes/views/view-admin.php:100, admin/advanced-settings/includes/views/view-fields.php:18, admin/advanced-settings/includes/views/view-fields.php:66, admin/advanced-settings/includes/views/view-fields.php:181, admin/advanced-settings/includes/views/view-fields.php:197, admin/advanced-settings/includes/views/view-fields.php:217, admin/advanced-settings/includes/views/view-fields.php:240, admin/advanced-settings/includes/views/view-fields.php:260, admin/advanced-settings/includes/views/view-fields.php:277, admin/advanced-settings/includes/views/view-fields.php:295, admin/advanced-settings/includes/views/view-forms.php:19, admin/advanced-settings/includes/views/view-forms.php:148, admin/advanced-settings/includes/views/view-forms.php:165, admin/advanced-settings/includes/views/view-forms.php:180, admin/advanced-settings/includes/views/view-forms.php:200, admin/advanced-settings/includes/views/view-forms.php:217, admin/advanced-settings/includes/views/view-forms.php:253, admin/advanced-settings/includes/views/view-forms.php:274, admin/advanced-settings/includes/views/view-forms.php:294, admin/advanced-settings/includes/views/view-forms.php:316, admin/advanced-settings/includes/views/view-forms.php:338, admin/advanced-settings/includes/views/view-forms.php:358, admin/advanced-settings/includes/views/view-shortcodes.php:16, admin/advanced-settings/includes/views/view-shortcodes.php:32, admin/advanced-settings/includes/views/view-shortcodes.php:48, admin/advanced-settings/includes/views/view-shortcodes.php:64, admin/advanced-settings/includes/views/view-userlisting.php:53, admin/advanced-settings/includes/views/view-userlisting.php:75, assets/misc/elementor/widgets/class-pb-widget-l.php:75, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:179, assets/misc/elementor/widgets/class-pb-widget-ul.php:107
|
57 |
msgid "Yes"
|
58 |
msgstr ""
|
59 |
|
377 |
msgid "Edit Profile"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: ../pb-add-on-custom-profile-menus/index.php:311, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, front-end/class-formbuilder.php:464, front-end/login.php:566, assets/misc/elementor/widgets/class-pb-widget-rf.php:32
|
381 |
msgid "Register"
|
382 |
msgstr ""
|
383 |
|
701 |
msgid "Default Social Connect CSS in the Front-end"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: ../pb-add-on-social-connect/index.php:239, admin/admin-functions.php:211, admin/general-settings.php:111, admin/general-settings.php:111
|
705 |
msgid "Settings"
|
706 |
msgstr ""
|
707 |
|
721 |
msgid "An account with this email address already exists.<br> Do you want to connect it?"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: ../pb-add-on-social-connect/index.php:387
|
725 |
msgid "Please enter your website account password"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: ../pb-add-on-social-connect/index.php:388
|
729 |
msgid "Please enter a new email"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: ../pb-add-on-social-connect/index.php:389
|
733 |
msgid "You have successfully linked your account to %%."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: ../pb-add-on-social-connect/index.php:390, ../pb-add-on-social-connect/twitter/twitter.php:109
|
737 |
msgid "Something went wrong. Please try again later!"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: ../pb-add-on-social-connect/index.php:391
|
741 |
msgid "Before you can access your account you need to confirm your email address. Please check your inbox and click the activation link."
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: ../pb-add-on-social-connect/index.php:392
|
745 |
msgid "<strong>ERROR</strong>: You need to confirm your email address before you can log in."
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: ../pb-add-on-social-connect/index.php:393
|
749 |
msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: ../pb-add-on-social-connect/index.php:394, features/admin-approval/admin-approval.php:194
|
753 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: ../pb-add-on-social-connect/index.php:395
|
757 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: ../pb-add-on-social-connect/index.php:396, features/functions.php:1338
|
761 |
msgid "here"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: ../pb-add-on-social-connect/index.php:397
|
765 |
msgid "<strong>You can only login with social accounts, not register!</strong><br>Please link your social account to an existing user account first."
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: ../pb-add-on-social-connect/index.php:398
|
769 |
msgid "Wrong password!"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: ../pb-add-on-social-connect/index.php:399
|
773 |
msgid "Please enter a valid email!"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: ../pb-add-on-social-connect/index.php:400
|
777 |
msgid "You can only login on this form.<br>Register with your social account on the register form."
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: ../pb-add-on-social-connect/index.php:401
|
781 |
+
msgid "Continue"
|
782 |
+
msgstr ""
|
783 |
+
|
784 |
+
#: ../pb-add-on-social-connect/index.php:402, ../pb-add-on-social-connect/index.php:421, ../pb-add-on-social-connect/index.php:436
|
785 |
+
msgid "Ok"
|
786 |
+
msgstr ""
|
787 |
+
|
788 |
+
#: ../pb-add-on-social-connect/index.php:410
|
789 |
msgid "To create a new account please confirm:"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: ../pb-add-on-social-connect/index.php:411
|
793 |
msgid "You must agree to the Terms And Conditions to create a new account."
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: ../pb-add-on-social-connect/index.php:419, ../pb-add-on-social-connect/index.php:420
|
797 |
msgid "Please enter your Facebook email!"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: ../pb-add-on-social-connect/index.php:433
|
801 |
msgid "Waiting for Twitter..."
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: ../pb-add-on-social-connect/index.php:434, ../pb-add-on-social-connect/index.php:435
|
805 |
msgid "Please enter your Twitter email!"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: ../pb-add-on-social-connect/index.php:727
|
809 |
msgid "Profile Builder not active!"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: ../pb-add-on-social-connect/index.php:876, admin/admin-functions.php:38, admin/general-settings.php:11
|
813 |
msgid "General Settings"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: ../pb-add-on-social-connect/index.php:880
|
817 |
msgid "Application Settings"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: ../pb-add-on-social-connect/index.php:884
|
821 |
msgid "Appearance Settings"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: ../pb-add-on-social-connect/index.php:948
|
825 |
msgid "Unlink"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: ../pb-add-on-social-connect/index.php:955
|
829 |
msgid "Your account is linked with:"
|
830 |
msgstr ""
|
831 |
|
833 |
msgid "Country"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, admin/manage-fields.php:334, add-ons/user-listing/userlisting.php:889, admin/advanced-settings/includes/views/view-fields.php:127
|
837 |
msgid "First Name"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, admin/manage-fields.php:335, add-ons/user-listing/userlisting.php:892, admin/advanced-settings/includes/views/view-fields.php:133
|
841 |
msgid "Last Name"
|
842 |
msgstr ""
|
843 |
|
1005 |
msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: index.php:260
|
1009 |
+
msgid "To enable updates, your licence needs to be renewed. Please go to the <a href=\"%s\">Cozmoslabs Account</a> page and login to renew."
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: index.php:256
|
1013 |
+
msgid "To enable updates, please enter your serial number on the <a href=\"%s\">Register Version</a> page. If you don't have a serial number, please see <a href=\"%s\" target=\"_blank\">details & pricing</a>."
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
#: index.php:41
|
1017 |
msgid "%s is also activated. You need to deactivate it before activating this version of the plugin."
|
1018 |
msgstr ""
|
1317 |
msgid "Easy to edit templates for listing your users as well as creating single user pages."
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: admin/add-ons.php:66, admin/basic-info.php:168, admin/general-settings.php:34
|
1321 |
msgid "Email Customizer"
|
1322 |
msgstr ""
|
1323 |
|
1545 |
msgid "Show"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: admin/admin-bar.php:81, add-ons/user-listing/userlisting.php:1766
|
1549 |
msgid "Hide"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: admin/admin-bar.php:92, admin/general-settings.php:345, admin/private-website.php:162, admin/register-version.php:96, features/functions.php:1020, features/content-restriction/content-restriction.php:162, features/two-factor-authentication/class-two-factor-authentication.php:156, assets/lib/class-mustache-templates/class-mustache-templates.php:392, assets/lib/wck-api/wordpress-creation-kit.php:405, admin/advanced-settings/includes/views/view-admin.php:112, admin/advanced-settings/includes/views/view-fields.php:309, admin/advanced-settings/includes/views/view-forms.php:374, admin/advanced-settings/includes/views/view-shortcodes.php:77, admin/advanced-settings/includes/views/view-userlisting.php:91
|
1553 |
msgid "Save Changes"
|
1554 |
msgstr ""
|
1555 |
|
1569 |
msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: admin/admin-functions.php:138, admin/general-settings.php:331
|
1573 |
msgid "Very weak"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: admin/admin-functions.php:138, admin/general-settings.php:332, features/functions.php:769, features/functions.php:793
|
1577 |
msgid "Weak"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: admin/admin-functions.php:138, admin/general-settings.php:333, features/functions.php:769, features/functions.php:793
|
1581 |
msgid "Medium"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: admin/admin-functions.php:138, admin/general-settings.php:334, features/functions.php:769, features/functions.php:793
|
1585 |
msgid "Strong"
|
1586 |
msgstr ""
|
1587 |
|
1957 |
msgid "Private Website"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
+
#: admin/general-settings.php:15, admin/advanced-settings/advanced-settings.php:38, admin/advanced-settings/advanced-settings.php:48
|
|
|
|
|
|
|
|
|
1961 |
msgid "Advanced Settings"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: admin/general-settings.php:19, admin/advanced-settings/advanced-settings.php:19
|
1965 |
msgid "Forms"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
+
#: admin/general-settings.php:20, admin/advanced-settings/advanced-settings.php:20
|
1969 |
msgid "Fields"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
+
#: admin/general-settings.php:22, admin/advanced-settings/advanced-settings.php:21
|
1973 |
msgid "Userlisting"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
+
#: admin/general-settings.php:23, admin/advanced-settings/advanced-settings.php:22
|
1977 |
msgid "Shortcodes"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
+
#: admin/general-settings.php:24, admin/advanced-settings/advanced-settings.php:23
|
1981 |
msgid "Admin"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
+
#: admin/general-settings.php:28, features/two-factor-authentication/class-two-factor-authentication.php:78, features/two-factor-authentication/class-two-factor-authentication.php:78, features/two-factor-authentication/class-two-factor-authentication.php:175, features/two-factor-authentication/class-two-factor-authentication.php:176, features/two-factor-authentication/class-two-factor-authentication.php:229
|
1985 |
+
msgid "Two-Factor Authentication"
|
1986 |
+
msgstr ""
|
1987 |
+
|
1988 |
+
#: admin/general-settings.php:35
|
1989 |
msgid "User Emails"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: admin/general-settings.php:36
|
1993 |
msgid "Administrator Emails"
|
1994 |
msgstr ""
|
1995 |
|
1996 |
+
#: admin/general-settings.php:132
|
1997 |
msgid "Profile Builder Settings"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
+
#: admin/general-settings.php:145
|
2001 |
msgid "Load Profile Builder's own CSS file in the front-end:"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: admin/general-settings.php:150
|
2005 |
msgid "You can find the default file here: %1$s"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
+
#: admin/general-settings.php:157
|
2009 |
msgid "Automatically Log In:"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
+
#: admin/general-settings.php:165
|
2013 |
msgid "Select \"Yes\" to automatically log in new users after successful registration."
|
2014 |
msgstr ""
|
2015 |
|
2016 |
+
#: admin/general-settings.php:172
|
2017 |
msgid "\"Email Confirmation\" Activated:"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: admin/general-settings.php:180
|
2021 |
msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
|
2022 |
msgstr ""
|
2023 |
|
2024 |
+
#: admin/general-settings.php:182
|
2025 |
msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: admin/general-settings.php:190
|
2029 |
msgid "\"Email Confirmation\" Landing Page:"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: admin/general-settings.php:195
|
2033 |
msgid "Existing Pages"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
+
#: admin/general-settings.php:210
|
2037 |
msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: admin/general-settings.php:221
|
2041 |
msgid "\"Admin Approval\" Activated:"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: admin/general-settings.php:229
|
2045 |
msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
|
2046 |
msgstr ""
|
2047 |
|
2048 |
+
#: admin/general-settings.php:236
|
2049 |
msgid "\"Admin Approval\" on User Role:"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
+
#: admin/general-settings.php:255
|
2053 |
msgid "Select on what user roles to activate Admin Approval."
|
2054 |
msgstr ""
|
2055 |
|
2056 |
+
#: admin/general-settings.php:267
|
2057 |
msgid "\"Roles Editor\" Activated:"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: admin/general-settings.php:275
|
2061 |
msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
|
2062 |
msgstr ""
|
2063 |
|
2064 |
+
#: admin/general-settings.php:286
|
2065 |
msgid "\"Admin Approval\" Feature:"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
+
#: admin/general-settings.php:289
|
2069 |
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
|
2070 |
msgstr ""
|
2071 |
|
2072 |
+
#: admin/general-settings.php:296
|
2073 |
msgid "Allow Users to Log in With:"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
+
#: admin/general-settings.php:300
|
2077 |
msgid "Username and Email"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: admin/general-settings.php:301, admin/manage-fields.php:333, front-end/login.php:328, front-end/login.php:342, front-end/login.php:520, add-ons/custom-redirects/custom_redirects_admin.php:60, add-ons/email-customizer/email-customizer.php:28, add-ons/user-listing/userlisting.php:112, add-ons/user-listing/userlisting.php:335, add-ons/user-listing/userlisting.php:877, add-ons/user-listing/userlisting.php:2467, features/admin-approval/class-admin-approval.php:174, features/email-confirmation/class-email-confirmation.php:168, admin/advanced-settings/includes/views/view-fields.php:121
|
2081 |
msgid "Username"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: admin/general-settings.php:302, front-end/login.php:517, front-end/recover.php:118, add-ons/email-customizer/email-customizer.php:29, add-ons/user-listing/userlisting.php:118, add-ons/user-listing/userlisting.php:883, add-ons/user-listing/userlisting.php:2468, features/admin-approval/class-admin-approval.php:177, features/email-confirmation/class-email-confirmation.php:169, admin/advanced-settings/includes/shortcodes/resend-activation.php:9
|
2085 |
msgid "Email"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: admin/general-settings.php:305
|
2089 |
msgid "\"Username and Email\" - users can Log In with either their Username or their Email."
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: admin/general-settings.php:306
|
2093 |
msgid "\"Username\" - users can only Log In with their Username. Both the Username and Email fields will be shown in the front-end forms."
|
2094 |
msgstr ""
|
2095 |
|
2096 |
+
#: admin/general-settings.php:307
|
2097 |
msgid "\"Email\" - users can only Log In with their Email. The Username field will be hidden in the front-end forms and Usernames will be automatically generated based on the Emails."
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: admin/general-settings.php:314
|
2101 |
msgid "Minimum Password Length:"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: admin/general-settings.php:319
|
2105 |
msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
+
#: admin/general-settings.php:326
|
2109 |
msgid "Minimum Password Strength:"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
#: admin/general-settings.php:330
|
2113 |
msgid "Disabled"
|
2114 |
msgstr ""
|
2115 |
|
2601 |
msgid "Usernames cannot be changed."
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: admin/manage-fields.php:336, add-ons/user-listing/userlisting.php:916, add-ons/user-listing/userlisting.php:2475
|
2605 |
msgid "Nickname"
|
2606 |
msgstr ""
|
2607 |
|
2613 |
msgid "E-mail"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: admin/manage-fields.php:340, add-ons/email-customizer/email-customizer.php:33, add-ons/user-listing/userlisting.php:121, add-ons/user-listing/userlisting.php:898, add-ons/user-listing/userlisting.php:2469
|
2617 |
msgid "Website"
|
2618 |
msgstr ""
|
2619 |
|
2629 |
msgid "Jabber / Google Talk"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: admin/manage-fields.php:350, add-ons/user-listing/userlisting.php:124, add-ons/user-listing/userlisting.php:901, add-ons/user-listing/userlisting.php:2470
|
2633 |
msgid "Biographical Info"
|
2634 |
msgstr ""
|
2635 |
|
4601 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4602 |
msgstr ""
|
4603 |
|
4604 |
+
#: features/functions.php:1515
|
4605 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
4606 |
msgstr ""
|
4607 |
|
4608 |
+
#: features/functions.php:1556
|
4609 |
msgid "You are not currently logged in."
|
4610 |
msgstr ""
|
4611 |
|
4612 |
+
#: features/functions.php:1593
|
4613 |
msgid "Profile Builder"
|
4614 |
msgstr ""
|
4615 |
|
4616 |
+
#: features/functions.php:1611, features/email-confirmation/class-email-confirmation.php:92, features/email-confirmation/class-email-confirmation.php:171
|
4617 |
msgid "User Meta"
|
4618 |
msgstr ""
|
4619 |
|
4649 |
msgid "Only an administrator can add new users."
|
4650 |
msgstr ""
|
4651 |
|
4652 |
+
#: front-end/class-formbuilder.php:302, front-end/login.php:624, assets/lib/wck-api/wordpress-creation-kit.php:786
|
4653 |
msgid "You are not allowed to do this."
|
4654 |
msgstr ""
|
4655 |
|
4726 |
msgid "Activation email sent to %s"
|
4727 |
msgstr ""
|
4728 |
|
4729 |
+
#: front-end/login.php:307, front-end/login.php:393, front-end/login.php:431, front-end/recover.php:18, front-end/recover.php:324, features/two-factor-authentication/class-two-factor-authentication.php:574, front-end/extra-fields/extra-fields.php:95
|
4730 |
msgid "ERROR"
|
4731 |
msgstr ""
|
4732 |
|
4733 |
+
#: front-end/login.php:307
|
4734 |
msgid "You need to confirm your Email Address before logging in! To resend the Confirmation Email %1$sclick here%2$s"
|
4735 |
msgstr ""
|
4736 |
|
4737 |
+
#: front-end/login.php:397
|
4738 |
msgid "The password field is empty."
|
4739 |
msgstr ""
|
4740 |
|
4741 |
+
#: front-end/login.php:401
|
4742 |
msgid "The password you entered is incorrect."
|
4743 |
msgstr ""
|
4744 |
|
4745 |
+
#: front-end/login.php:410
|
4746 |
msgid "The username field is empty"
|
4747 |
msgstr ""
|
4748 |
|
4749 |
+
#: front-end/login.php:408
|
4750 |
msgid "The username/email field is empty"
|
4751 |
msgstr ""
|
4752 |
|
4753 |
+
#: front-end/login.php:406
|
4754 |
msgid "The email field is empty."
|
4755 |
msgstr ""
|
4756 |
|
4757 |
+
#: front-end/login.php:419
|
4758 |
msgid "Invalid username."
|
4759 |
msgstr ""
|
4760 |
|
4761 |
+
#: front-end/login.php:417
|
4762 |
msgid "Invalid username or email."
|
4763 |
msgstr ""
|
4764 |
|
4765 |
+
#: front-end/login.php:415
|
4766 |
msgid "Invalid email."
|
4767 |
msgstr ""
|
4768 |
|
4769 |
+
#: front-end/login.php:425
|
4770 |
msgid "Password Lost and Found."
|
4771 |
msgstr ""
|
4772 |
|
4773 |
+
#: front-end/login.php:425, front-end/login.php:572
|
4774 |
msgid "Lost your password?"
|
4775 |
msgstr ""
|
4776 |
|
4777 |
+
#: front-end/login.php:431
|
4778 |
msgid "Both fields are empty."
|
4779 |
msgstr ""
|
4780 |
|
4781 |
+
#: front-end/login.php:611, front-end/logout.php:38
|
4782 |
msgid "Log out of this account"
|
4783 |
msgstr ""
|
4784 |
|
4785 |
+
#: front-end/login.php:611, front-end/logout.php:25
|
4786 |
msgid "Log out »"
|
4787 |
msgstr ""
|
4788 |
|
4789 |
+
#: front-end/login.php:612
|
4790 |
msgid "You are currently logged in as %1$s. %2$s"
|
4791 |
msgstr ""
|
4792 |
|
4793 |
+
#: front-end/login.php:524, front-end/recover.php:122
|
4794 |
msgid "Username or Email"
|
4795 |
msgstr ""
|
4796 |
|
5207 |
msgid "Available Tags"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
+
#: add-ons/email-customizer/email-customizer.php:11, add-ons/user-listing/userlisting.php:251
|
5211 |
msgid "User Fields Tags"
|
5212 |
msgstr ""
|
5213 |
|
5219 |
msgid "Site Name"
|
5220 |
msgstr ""
|
5221 |
|
5222 |
+
#: add-ons/email-customizer/email-customizer.php:25, add-ons/user-listing/userlisting.php:177
|
5223 |
msgid "User Id"
|
5224 |
msgstr ""
|
5225 |
|
5484 |
msgid "No Edit-profile Forms found in trash"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:2363
|
5488 |
msgid "Shortcode"
|
5489 |
msgstr ""
|
5490 |
|
5491 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:2384
|
5492 |
msgid "(no title)"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:2406
|
5496 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
5497 |
msgstr ""
|
5498 |
|
5499 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:2410
|
5500 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:2404
|
5504 |
msgid "The shortcode will be available after you publish this form."
|
5505 |
msgstr ""
|
5506 |
|
5507 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:2443
|
5508 |
msgid "Form Shortcode"
|
5509 |
msgstr ""
|
5510 |
|
5668 |
msgid "Display name as"
|
5669 |
msgstr ""
|
5670 |
|
5671 |
+
#: add-ons/user-listing/userlisting.php:167, add-ons/user-listing/userlisting.php:337, add-ons/user-listing/userlisting.php:919, add-ons/user-listing/userlisting.php:2477, features/admin-approval/class-admin-approval.php:178, features/roles-editor/roles-editor.php:256
|
5672 |
msgid "Role"
|
5673 |
msgstr ""
|
5674 |
|
5675 |
+
#: add-ons/user-listing/userlisting.php:168, features/roles-editor/roles-editor.php:366, features/roles-editor/roles-editor.php:530
|
5676 |
msgid "Role Slug"
|
5677 |
msgstr ""
|
5678 |
|
5679 |
+
#: add-ons/user-listing/userlisting.php:169, add-ons/user-listing/userlisting.php:2471
|
5680 |
msgid "Registration Date"
|
5681 |
msgstr ""
|
5682 |
|
5683 |
+
#: add-ons/user-listing/userlisting.php:170, add-ons/user-listing/userlisting.php:2476
|
5684 |
msgid "Number of Posts"
|
5685 |
msgstr ""
|
5686 |
|
5687 |
+
#: add-ons/user-listing/userlisting.php:174
|
5688 |
msgid "More Info"
|
5689 |
msgstr ""
|
5690 |
|
5691 |
+
#: add-ons/user-listing/userlisting.php:175
|
5692 |
msgid "More Info Url"
|
5693 |
msgstr ""
|
5694 |
|
5695 |
+
#: add-ons/user-listing/userlisting.php:176
|
5696 |
msgid "Avatar or Gravatar"
|
5697 |
msgstr ""
|
5698 |
|
5699 |
+
#: add-ons/user-listing/userlisting.php:178
|
5700 |
msgid "User Nicename"
|
5701 |
msgstr ""
|
5702 |
|
5703 |
+
#: add-ons/user-listing/userlisting.php:220
|
5704 |
msgid "Pagination"
|
5705 |
msgstr ""
|
5706 |
|
5707 |
+
#: add-ons/user-listing/userlisting.php:221
|
5708 |
msgid "Search all Fields"
|
5709 |
msgstr ""
|
5710 |
|
5711 |
+
#: add-ons/user-listing/userlisting.php:222, add-ons/user-listing/userlisting.php:2555
|
5712 |
msgid "Faceted Menus"
|
5713 |
msgstr ""
|
5714 |
|
5715 |
+
#: add-ons/user-listing/userlisting.php:223
|
5716 |
msgid "User Count"
|
5717 |
msgstr ""
|
5718 |
|
5719 |
+
#: add-ons/user-listing/userlisting.php:230
|
5720 |
msgid "Map of listed users"
|
5721 |
msgstr ""
|
5722 |
|
5723 |
+
#: add-ons/user-listing/userlisting.php:257
|
5724 |
msgid "Sort Tags"
|
5725 |
msgstr ""
|
5726 |
|
5727 |
+
#: add-ons/user-listing/userlisting.php:261, add-ons/user-listing/userlisting.php:285
|
5728 |
msgid "Extra Functions"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
+
#: add-ons/user-listing/userlisting.php:287
|
5732 |
msgid "Go Back Link"
|
5733 |
msgstr ""
|
5734 |
|
5735 |
+
#: add-ons/user-listing/userlisting.php:305
|
5736 |
msgid "All-userlisting Template"
|
5737 |
msgstr ""
|
5738 |
|
5739 |
+
#: add-ons/user-listing/userlisting.php:308
|
5740 |
msgid "Single-userlisting Template"
|
5741 |
msgstr ""
|
5742 |
|
5743 |
+
#: add-ons/user-listing/userlisting.php:334
|
5744 |
msgid "Avatar"
|
5745 |
msgstr ""
|
5746 |
|
5747 |
+
#: add-ons/user-listing/userlisting.php:336, add-ons/user-listing/userlisting.php:2472, features/admin-approval/class-admin-approval.php:175
|
5748 |
msgid "Firstname"
|
5749 |
msgstr ""
|
5750 |
|
5751 |
+
#: add-ons/user-listing/userlisting.php:338, add-ons/user-listing/userlisting.php:904, features/roles-editor/roles-editor.php:451
|
5752 |
msgid "Posts"
|
5753 |
msgstr ""
|
5754 |
|
5755 |
+
#: add-ons/user-listing/userlisting.php:339, add-ons/user-listing/userlisting.php:886
|
5756 |
msgid "Sign-up Date"
|
5757 |
msgstr ""
|
5758 |
|
5759 |
+
#: add-ons/user-listing/userlisting.php:340
|
5760 |
msgid "More"
|
5761 |
msgstr ""
|
5762 |
|
5763 |
+
#: add-ons/user-listing/userlisting.php:435
|
5764 |
msgid "You do not have permission to view this user list."
|
5765 |
msgstr ""
|
5766 |
|
5767 |
+
#: add-ons/user-listing/userlisting.php:448
|
5768 |
msgid "You do not have the required user role to view this user list."
|
5769 |
msgstr ""
|
5770 |
|
5771 |
+
#: add-ons/user-listing/userlisting.php:472
|
5772 |
msgid "User not found"
|
5773 |
msgstr ""
|
5774 |
|
5775 |
+
#: add-ons/user-listing/userlisting.php:913, add-ons/user-listing/userlisting.php:2483
|
5776 |
msgid "Jabber"
|
5777 |
msgstr ""
|
5778 |
|
5779 |
+
#: add-ons/user-listing/userlisting.php:910, add-ons/user-listing/userlisting.php:2482
|
5780 |
msgid "Yim"
|
5781 |
msgstr ""
|
5782 |
|
5783 |
+
#: add-ons/user-listing/userlisting.php:907, add-ons/user-listing/userlisting.php:2481
|
5784 |
msgid "Aim"
|
5785 |
msgstr ""
|
5786 |
|
5787 |
+
#: add-ons/user-listing/userlisting.php:895, add-ons/user-listing/userlisting.php:2474
|
5788 |
msgid "Display Name"
|
5789 |
msgstr ""
|
5790 |
|
5791 |
+
#: add-ons/user-listing/userlisting.php:880
|
5792 |
msgid "First/Lastname"
|
5793 |
msgstr ""
|
5794 |
|
5795 |
+
#: add-ons/user-listing/userlisting.php:1205, add-ons/user-listing/userlisting.php:1697, add-ons/user-listing/userlisting.php:2190, add-ons/user-listing/userlisting.php:2675
|
5796 |
msgid "Search Users by All Fields"
|
5797 |
msgstr ""
|
5798 |
|
5799 |
+
#: add-ons/user-listing/userlisting.php:1487
|
5800 |
msgid "Click here to see more information about this user."
|
5801 |
msgstr ""
|
5802 |
|
5803 |
+
#: add-ons/user-listing/userlisting.php:1484
|
5804 |
msgid "Click here to see more information about this user"
|
5805 |
msgstr ""
|
5806 |
|
5807 |
+
#: add-ons/user-listing/userlisting.php:1484, add-ons/user-listing/userlisting.php:1484
|
5808 |
msgid "More..."
|
5809 |
msgstr ""
|
5810 |
|
5811 |
+
#: add-ons/user-listing/userlisting.php:1532, front-end/extra-fields/map/map.php:12
|
5812 |
+
msgid "Remove Marker"
|
5813 |
+
msgstr ""
|
5814 |
+
|
5815 |
+
#: add-ons/user-listing/userlisting.php:1514
|
5816 |
msgid "View Map"
|
5817 |
msgstr ""
|
5818 |
|
5819 |
+
#: add-ons/user-listing/userlisting.php:1654, add-ons/user-listing/userlisting.php:1651
|
5820 |
msgid "Click here to go back"
|
5821 |
msgstr ""
|
5822 |
|
5823 |
+
#: add-ons/user-listing/userlisting.php:1651, add-ons/user-listing/userlisting.php:1651
|
5824 |
msgid "Back"
|
5825 |
msgstr ""
|
5826 |
|
5827 |
+
#: add-ons/user-listing/userlisting.php:1716
|
5828 |
msgid "You don't have any pagination settings on this userlisting!"
|
5829 |
msgstr ""
|
5830 |
|
5831 |
+
#: add-ons/user-listing/userlisting.php:1684
|
5832 |
msgid "«« First"
|
5833 |
msgstr ""
|
5834 |
|
5835 |
+
#: add-ons/user-listing/userlisting.php:1685
|
5836 |
msgid "« Prev"
|
5837 |
msgstr ""
|
5838 |
|
5839 |
+
#: add-ons/user-listing/userlisting.php:1686
|
5840 |
msgid "Next » "
|
5841 |
msgstr ""
|
5842 |
|
5843 |
+
#: add-ons/user-listing/userlisting.php:1687
|
5844 |
msgid "Last »»"
|
5845 |
msgstr ""
|
5846 |
|
5847 |
+
#: add-ons/user-listing/userlisting.php:1765
|
5848 |
msgid "Show All"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
+
#: add-ons/user-listing/userlisting.php:1841, admin/advanced-settings/includes/views/view-fields.php:78
|
5852 |
msgid "Choose..."
|
5853 |
msgstr ""
|
5854 |
|
5855 |
+
#: add-ons/user-listing/userlisting.php:1937
|
5856 |
msgid "No options available"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
+
#: add-ons/user-listing/userlisting.php:2092
|
5860 |
msgid "Remove All Filters"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
+
#: add-ons/user-listing/userlisting.php:2207
|
5864 |
msgid "Search"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
+
#: add-ons/user-listing/userlisting.php:2208
|
5868 |
msgid "Clear Results"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: add-ons/user-listing/userlisting.php:2413, add-ons/user-listing/userlisting.php:2417
|
5872 |
msgid "Extra shortcode parameters"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
+
#: add-ons/user-listing/userlisting.php:2415
|
5876 |
msgid "View all extra shortcode parameters"
|
5877 |
msgstr ""
|
5878 |
|
5879 |
+
#: add-ons/user-listing/userlisting.php:2420
|
5880 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
5881 |
msgstr ""
|
5882 |
|
5883 |
+
#: add-ons/user-listing/userlisting.php:2421
|
5884 |
msgid "Example:"
|
5885 |
msgstr ""
|
5886 |
|
5887 |
+
#: add-ons/user-listing/userlisting.php:2423
|
5888 |
msgid "Remember though, that the field-value combination must exist in the database."
|
5889 |
msgstr ""
|
5890 |
|
5891 |
+
#: add-ons/user-listing/userlisting.php:2429
|
5892 |
msgid "displays only the users that you specified the user_id for"
|
5893 |
msgstr ""
|
5894 |
|
5895 |
+
#: add-ons/user-listing/userlisting.php:2435
|
5896 |
msgid "displays all users except the ones you specified the user_id for"
|
5897 |
msgstr ""
|
5898 |
|
5899 |
+
#: add-ons/user-listing/userlisting.php:2473, features/admin-approval/class-admin-approval.php:176
|
5900 |
msgid "Lastname"
|
5901 |
msgstr ""
|
5902 |
|
5903 |
+
#: add-ons/user-listing/userlisting.php:2498
|
5904 |
msgid "Random (very slow on large databases > 10K user)"
|
5905 |
msgstr ""
|
5906 |
|
5907 |
+
#: add-ons/user-listing/userlisting.php:2501
|
5908 |
msgid "Ascending"
|
5909 |
msgstr ""
|
5910 |
|
5911 |
+
#: add-ons/user-listing/userlisting.php:2502
|
5912 |
msgid "Descending"
|
5913 |
msgstr ""
|
5914 |
|
5915 |
+
#: add-ons/user-listing/userlisting.php:2507
|
5916 |
msgid "Roles to Display"
|
5917 |
msgstr ""
|
5918 |
|
5919 |
+
#: add-ons/user-listing/userlisting.php:2507
|
5920 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
+
#: add-ons/user-listing/userlisting.php:2508
|
5924 |
msgid "Number of Users/Page"
|
5925 |
msgstr ""
|
5926 |
|
5927 |
+
#: add-ons/user-listing/userlisting.php:2508
|
5928 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
5929 |
msgstr ""
|
5930 |
|
5931 |
+
#: add-ons/user-listing/userlisting.php:2509
|
5932 |
msgid "Default Sorting Criteria"
|
5933 |
msgstr ""
|
5934 |
|
5935 |
+
#: add-ons/user-listing/userlisting.php:2509
|
5936 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
5937 |
msgstr ""
|
5938 |
|
5939 |
+
#: add-ons/user-listing/userlisting.php:2510
|
5940 |
msgid "Default Sorting Order"
|
5941 |
msgstr ""
|
5942 |
|
5943 |
+
#: add-ons/user-listing/userlisting.php:2510
|
5944 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
5945 |
msgstr ""
|
5946 |
|
5947 |
+
#: add-ons/user-listing/userlisting.php:2511
|
5948 |
msgid "Avatar Size (All-userlisting)"
|
5949 |
msgstr ""
|
5950 |
|
5951 |
+
#: add-ons/user-listing/userlisting.php:2511
|
5952 |
msgid "Set the avatar size on the all-userlisting only"
|
5953 |
msgstr ""
|
5954 |
|
5955 |
+
#: add-ons/user-listing/userlisting.php:2512
|
5956 |
msgid "Avatar Size (Single-userlisting)"
|
5957 |
msgstr ""
|
5958 |
|
5959 |
+
#: add-ons/user-listing/userlisting.php:2512
|
5960 |
msgid "Set the avatar size on the single-userlisting only"
|
5961 |
msgstr ""
|
5962 |
|
5963 |
+
#: add-ons/user-listing/userlisting.php:2513
|
5964 |
msgid "Visible only to logged in users?"
|
5965 |
msgstr ""
|
5966 |
|
5967 |
+
#: add-ons/user-listing/userlisting.php:2513
|
5968 |
msgid "The userlisting will only be visible only to the logged in users"
|
5969 |
msgstr ""
|
5970 |
|
5971 |
+
#: add-ons/user-listing/userlisting.php:2514
|
5972 |
msgid "Visible to following Roles"
|
5973 |
msgstr ""
|
5974 |
|
5975 |
+
#: add-ons/user-listing/userlisting.php:2514
|
5976 |
msgid "The userlisting will only be visible to the following roles"
|
5977 |
msgstr ""
|
5978 |
|
5979 |
+
#: add-ons/user-listing/userlisting.php:2520
|
5980 |
msgid "Userlisting Settings"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
+
#: add-ons/user-listing/userlisting.php:2545
|
5984 |
msgid "Label"
|
5985 |
msgstr ""
|
5986 |
|
5987 |
+
#: add-ons/user-listing/userlisting.php:2545
|
5988 |
msgid "Choose the facet name that appears on the frontend"
|
5989 |
msgstr ""
|
5990 |
|
5991 |
+
#: add-ons/user-listing/userlisting.php:2546
|
5992 |
msgid "Facet Type"
|
5993 |
msgstr ""
|
5994 |
|
5995 |
+
#: add-ons/user-listing/userlisting.php:2546
|
5996 |
msgid "Choose the facet menu type"
|
5997 |
msgstr ""
|
5998 |
|
5999 |
+
#: add-ons/user-listing/userlisting.php:2547
|
6000 |
msgid "Facet Meta"
|
6001 |
msgstr ""
|
6002 |
|
6003 |
+
#: add-ons/user-listing/userlisting.php:2547
|
6004 |
msgid "Choose the meta field for the facet menu. If you want to use a repeater meta or a meta outisde Profile Builder just type the value and press enter."
|
6005 |
msgstr ""
|
6006 |
|
6007 |
+
#: add-ons/user-listing/userlisting.php:2548
|
6008 |
msgid "Behaviour"
|
6009 |
msgstr ""
|
6010 |
|
6011 |
+
#: add-ons/user-listing/userlisting.php:2548
|
6012 |
msgid "Narrow the results"
|
6013 |
msgstr ""
|
6014 |
|
6015 |
+
#: add-ons/user-listing/userlisting.php:2548
|
6016 |
msgid "Expand the results"
|
6017 |
msgstr ""
|
6018 |
|
6019 |
+
#: add-ons/user-listing/userlisting.php:2548
|
6020 |
msgid "Choose how multiple selections affect the results"
|
6021 |
msgstr ""
|
6022 |
|
6023 |
+
#: add-ons/user-listing/userlisting.php:2549
|
6024 |
msgid "Visible choices"
|
6025 |
msgstr ""
|
6026 |
|
6027 |
+
#: add-ons/user-listing/userlisting.php:2549
|
6028 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6029 |
msgstr ""
|
6030 |
|
6031 |
+
#: add-ons/user-listing/userlisting.php:2574
|
6032 |
msgid "Search Fields"
|
6033 |
msgstr ""
|
6034 |
|
6035 |
+
#: add-ons/user-listing/userlisting.php:2574
|
6036 |
msgid "Choose the fields in which the Search Field will look in"
|
6037 |
msgstr ""
|
6038 |
|
6039 |
+
#: add-ons/user-listing/userlisting.php:2579
|
6040 |
msgid "Search Settings"
|
6041 |
msgstr ""
|
6042 |
|
6043 |
+
#: add-ons/user-listing/userlisting.php:2651
|
6044 |
msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
|
6045 |
msgstr ""
|
6046 |
|
6047 |
+
#: add-ons/user-listing/userlisting.php:2651
|
6048 |
msgid "You can find it in the Profile Builder menu."
|
6049 |
msgstr ""
|
6050 |
|
6051 |
+
#: add-ons/user-listing/userlisting.php:2814
|
6052 |
msgid "No results found!"
|
6053 |
msgstr ""
|
6054 |
|
6260 |
msgid "Conditional Rules"
|
6261 |
msgstr ""
|
6262 |
|
6263 |
+
#: features/conditional-fields/conditional-fields.php:573
|
6264 |
msgid "This field has conditional logic enabled."
|
6265 |
msgstr ""
|
6266 |
|
7061 |
msgid "Remove"
|
7062 |
msgstr ""
|
7063 |
|
7064 |
+
#: front-end/extra-fields/avatar/avatar.php:85, front-end/extra-fields/checkbox/checkbox.php:45, front-end/extra-fields/colorpicker/colorpicker.php:45, front-end/extra-fields/datepicker/datepicker.php:40, front-end/extra-fields/input/input.php:30, front-end/extra-fields/input-email/input-email.php:30, front-end/extra-fields/input-hidden/input-hidden.php:34, front-end/extra-fields/input-url/input-url.php:30, front-end/extra-fields/language/language.php:34, front-end/extra-fields/map/map.php:57, front-end/extra-fields/number/number.php:30, front-end/extra-fields/phone/phone.php:39, front-end/extra-fields/radio/radio.php:44, front-end/extra-fields/select/select.php:51, front-end/extra-fields/select-cpt/select-cpt.php:59, front-end/extra-fields/select-multiple/select-multiple.php:47, front-end/extra-fields/select-timezone/select-timezone.php:49, front-end/extra-fields/select2/select2-multiple.php:88, front-end/extra-fields/select2/select2.php:74, front-end/extra-fields/textarea/textarea.php:30, front-end/extra-fields/upload/upload.php:80, front-end/extra-fields/wysiwyg/wysiwyg.php:33
|
7065 |
msgid "required"
|
7066 |
msgstr ""
|
7067 |
|
7073 |
msgid "You must enter a valid URL."
|
7074 |
msgstr ""
|
7075 |
|
7076 |
+
#: front-end/extra-fields/map/map.php:78, front-end/extra-fields/map/map.php:52
|
7077 |
msgid "Please add the Google Maps API key for this field."
|
7078 |
msgstr ""
|
7079 |
|
7080 |
+
#: front-end/extra-fields/map/map.php:143
|
7081 |
msgid "Something went wrong. Please try again."
|
7082 |
msgstr ""
|
7083 |
|