Version Description
- Security update
- Fixed a compatibility issue with PMS and redirect url
- Fixed issue in backend when labels for user roles contained a %
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 3.1.1 |
Comparing to | |
See all releases |
Code changes from version 3.1.0 to 3.1.1
- admin/admin-functions.php +10 -0
- admin/manage-fields.php +4 -4
- features/functions.php +15 -0
- front-end/class-formbuilder.php +3 -0
- front-end/default-fields/description/description.php +7 -5
- front-end/default-fields/display-name/display-name.php +7 -5
- front-end/default-fields/email/email.php +8 -6
- front-end/default-fields/first-name/first-name.php +6 -5
- front-end/default-fields/last-name/last-name.php +7 -5
- front-end/default-fields/nickname/nickname.php +7 -5
- front-end/default-fields/password/password.php +7 -5
- front-end/default-fields/user-role/user-role.php +28 -15
- front-end/default-fields/username/username.php +6 -4
- front-end/default-fields/website/website.php +7 -5
- index.php +2 -2
- readme.txt +6 -1
- translation/profile-builder.pot +128 -128
admin/admin-functions.php
CHANGED
@@ -304,3 +304,13 @@ function wppb_create_form_pages(){
|
|
304 |
}
|
305 |
}
|
306 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
304 |
}
|
305 |
}
|
306 |
}
|
307 |
+
|
308 |
+
/**
|
309 |
+
* Function that prepares labels to pass to the WCK api...we have a quirk in wck api that labels are wrapped
|
310 |
+
* in %label%...so if we want to have % inside the label for example 25% off...we will have a bad time
|
311 |
+
* @param string $label
|
312 |
+
* @return string|string[]
|
313 |
+
*/
|
314 |
+
function wppb_prepare_wck_labels( $label ){
|
315 |
+
return trim( str_replace( '%', '%', $label ) );
|
316 |
+
}
|
admin/manage-fields.php
CHANGED
@@ -134,14 +134,14 @@ function wppb_populate_manage_fields(){
|
|
134 |
$user_roles = array();
|
135 |
foreach( $wp_roles->roles as $user_role_slug => $user_role )
|
136 |
if( $user_role_slug !== 'administrator' )
|
137 |
-
array_push( $user_roles, '%' . $user_role['name'] . '%' . $user_role_slug );
|
138 |
|
139 |
|
140 |
// @TODO - The block below could use refactoring, see new function wppb_prepare_key_value_options.
|
141 |
// country select
|
142 |
$default_country_array = wppb_country_select_options( 'back_end' );
|
143 |
foreach( $default_country_array as $iso_country_code => $country_name ) {
|
144 |
-
$default_country_options[] = '%'
|
145 |
}
|
146 |
|
147 |
// @TODO - The block below could use refactoring, see new function wppb_prepare_key_value_options.
|
@@ -149,7 +149,7 @@ function wppb_populate_manage_fields(){
|
|
149 |
$default_currency_array = wppb_get_currencies( 'back_end' );
|
150 |
array_unshift( $default_currency_array, '' );
|
151 |
foreach( $default_currency_array as $iso_currency_code => $currency_name ) {
|
152 |
-
$default_currency_options[] = '%'
|
153 |
}
|
154 |
|
155 |
//cpt select
|
@@ -1644,7 +1644,7 @@ if ( ! function_exists( 'wppb_prepare_key_value_options' ) ) {
|
|
1644 |
$result = array();
|
1645 |
if ( ! empty( $array ) ) {
|
1646 |
foreach ( $array as $name => $label ) {
|
1647 |
-
$result[] = '%' . $label . '%' . $name;
|
1648 |
}
|
1649 |
}
|
1650 |
return $result;
|
134 |
$user_roles = array();
|
135 |
foreach( $wp_roles->roles as $user_role_slug => $user_role )
|
136 |
if( $user_role_slug !== 'administrator' )
|
137 |
+
array_push( $user_roles, '%' . wppb_prepare_wck_labels( $user_role['name'] ) . '%' . $user_role_slug );
|
138 |
|
139 |
|
140 |
// @TODO - The block below could use refactoring, see new function wppb_prepare_key_value_options.
|
141 |
// country select
|
142 |
$default_country_array = wppb_country_select_options( 'back_end' );
|
143 |
foreach( $default_country_array as $iso_country_code => $country_name ) {
|
144 |
+
$default_country_options[] = '%'. wppb_prepare_wck_labels( $country_name ) .'%'.$iso_country_code;
|
145 |
}
|
146 |
|
147 |
// @TODO - The block below could use refactoring, see new function wppb_prepare_key_value_options.
|
149 |
$default_currency_array = wppb_get_currencies( 'back_end' );
|
150 |
array_unshift( $default_currency_array, '' );
|
151 |
foreach( $default_currency_array as $iso_currency_code => $currency_name ) {
|
152 |
+
$default_currency_options[] = '%'. wppb_prepare_wck_labels( $currency_name ) .'%'.$iso_currency_code;
|
153 |
}
|
154 |
|
155 |
//cpt select
|
1644 |
$result = array();
|
1645 |
if ( ! empty( $array ) ) {
|
1646 |
foreach ( $array as $name => $label ) {
|
1647 |
+
$result[] = '%' . wppb_prepare_wck_labels( $label ) . '%' . $name;
|
1648 |
}
|
1649 |
}
|
1650 |
return $result;
|
features/functions.php
CHANGED
@@ -838,6 +838,21 @@ function wppb_handle_meta_name( $meta_name ){
|
|
838 |
return $meta_name;
|
839 |
}
|
840 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
841 |
|
842 |
// change User Registered date and time according to timezone selected in WordPress settings
|
843 |
function wppb_get_register_date() {
|
838 |
return $meta_name;
|
839 |
}
|
840 |
|
841 |
+
/**
|
842 |
+
* Function that checks if a field type exists in a form
|
843 |
+
* @return bool
|
844 |
+
*/
|
845 |
+
function wppb_field_exists_in_form( $field_type, $form_args ){
|
846 |
+
if( !empty( $form_args ) && !empty( $form_args['form_fields'] ) ){
|
847 |
+
foreach( $form_args['form_fields'] as $field ){
|
848 |
+
if( $field['field'] === $field_type ){
|
849 |
+
return true;
|
850 |
+
}
|
851 |
+
}
|
852 |
+
}
|
853 |
+
|
854 |
+
return false;
|
855 |
+
}
|
856 |
|
857 |
// change User Registered date and time according to timezone selected in WordPress settings
|
858 |
function wppb_get_register_date() {
|
front-end/class-formbuilder.php
CHANGED
@@ -220,6 +220,9 @@ class Profile_Builder_Form_Creator{
|
|
220 |
}
|
221 |
}
|
222 |
|
|
|
|
|
|
|
223 |
$redirect = apply_filters( 'wppb_login_after_reg_redirect_url', $redirect, $this );
|
224 |
|
225 |
$redirect = add_query_arg( array( 'autologin' => 'true', 'uid' => $user->ID, '_wpnonce' => $nonce ), $redirect );
|
220 |
}
|
221 |
}
|
222 |
|
223 |
+
if( empty( $redirect ) )
|
224 |
+
$redirect = wppb_curpageurl();
|
225 |
+
|
226 |
$redirect = apply_filters( 'wppb_login_after_reg_redirect_url', $redirect, $this );
|
227 |
|
228 |
$redirect = add_query_arg( array( 'autologin' => 'true', 'uid' => $user->ID, '_wpnonce' => $nonce ), $redirect );
|
front-end/default-fields/description/description.php
CHANGED
@@ -48,11 +48,13 @@ function wppb_check_description_value( $message, $field, $request_data, $form_lo
|
|
48 |
add_filter( 'wppb_check_form_field_default-biographical-info', 'wppb_check_description_value', 10, 4 );
|
49 |
|
50 |
/* handle field save */
|
51 |
-
function wppb_userdata_add_description( $userdata, $global_request ){
|
52 |
-
|
53 |
-
|
54 |
-
|
|
|
|
|
55 |
}
|
56 |
return $userdata;
|
57 |
}
|
58 |
-
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_description', 10,
|
48 |
add_filter( 'wppb_check_form_field_default-biographical-info', 'wppb_check_description_value', 10, 4 );
|
49 |
|
50 |
/* handle field save */
|
51 |
+
function wppb_userdata_add_description( $userdata, $global_request, $form_args ){
|
52 |
+
if( wppb_field_exists_in_form( 'Default - Biographical Info', $form_args ) ) {
|
53 |
+
if (isset($global_request['description'])) {
|
54 |
+
$description = apply_filters('pre_user_description', trim($global_request['description']));
|
55 |
+
$userdata['description'] = $description;
|
56 |
+
}
|
57 |
}
|
58 |
return $userdata;
|
59 |
}
|
60 |
+
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_description', 10, 3 );
|
front-end/default-fields/display-name/display-name.php
CHANGED
@@ -71,10 +71,12 @@ add_filter( 'wppb_check_form_field_default-display-name-publicly-as', 'wppb_chec
|
|
71 |
|
72 |
|
73 |
/* handle field save */
|
74 |
-
function wppb_userdata_add_display_name( $userdata, $global_request ){
|
75 |
-
|
76 |
-
|
77 |
-
|
|
|
|
|
78 |
return $userdata;
|
79 |
}
|
80 |
-
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_display_name', 10,
|
71 |
|
72 |
|
73 |
/* handle field save */
|
74 |
+
function wppb_userdata_add_display_name( $userdata, $global_request, $form_args ){
|
75 |
+
if( wppb_field_exists_in_form( 'Default - Display name publicly as', $form_args ) ) {
|
76 |
+
if (isset($global_request['display_name']))
|
77 |
+
$userdata['display_name'] = trim(sanitize_text_field($global_request['display_name']));
|
78 |
+
}
|
79 |
+
|
80 |
return $userdata;
|
81 |
}
|
82 |
+
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_display_name', 10, 3 );
|
front-end/default-fields/email/email.php
CHANGED
@@ -101,13 +101,15 @@ function wppb_check_email_value( $message, $field, $request_data, $form_location
|
|
101 |
add_filter( 'wppb_check_form_field_default-e-mail', 'wppb_check_email_value', 10, 4 );
|
102 |
|
103 |
/* handle field save */
|
104 |
-
function wppb_userdata_add_email( $userdata, $global_request ){
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
|
|
|
|
109 |
}
|
110 |
|
111 |
return $userdata;
|
112 |
}
|
113 |
-
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_email', 10,
|
101 |
add_filter( 'wppb_check_form_field_default-e-mail', 'wppb_check_email_value', 10, 4 );
|
102 |
|
103 |
/* handle field save */
|
104 |
+
function wppb_userdata_add_email( $userdata, $global_request, $form_args ){
|
105 |
+
if( wppb_field_exists_in_form( 'Default - E-mail', $form_args ) ) {
|
106 |
+
// apply filter to allow stripping slashes if necessary
|
107 |
+
if (isset($global_request['email'])) {
|
108 |
+
$global_request['email'] = apply_filters('wppb_before_processing_email_from_forms', $global_request['email']);
|
109 |
+
$userdata['user_email'] = sanitize_text_field(trim($global_request['email']));
|
110 |
+
}
|
111 |
}
|
112 |
|
113 |
return $userdata;
|
114 |
}
|
115 |
+
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_email', 10, 3 );
|
front-end/default-fields/first-name/first-name.php
CHANGED
@@ -47,10 +47,11 @@ add_filter( 'wppb_check_form_field_default-first-name', 'wppb_check_first_name_v
|
|
47 |
|
48 |
|
49 |
/* handle field save */
|
50 |
-
function wppb_userdata_add_first_name( $userdata, $global_request ){
|
51 |
-
|
52 |
-
|
53 |
-
|
|
|
54 |
return $userdata;
|
55 |
}
|
56 |
-
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_first_name', 10,
|
47 |
|
48 |
|
49 |
/* handle field save */
|
50 |
+
function wppb_userdata_add_first_name( $userdata, $global_request, $form_args ){
|
51 |
+
if( wppb_field_exists_in_form( 'Default - First Name', $form_args ) ) {
|
52 |
+
if ( isset( $global_request['first_name'] ) )
|
53 |
+
$userdata['first_name'] = sanitize_text_field( trim( $global_request['first_name'] ) );
|
54 |
+
}
|
55 |
return $userdata;
|
56 |
}
|
57 |
+
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_first_name', 10, 3 );
|
front-end/default-fields/last-name/last-name.php
CHANGED
@@ -46,10 +46,12 @@ add_filter( 'wppb_check_form_field_default-last-name', 'wppb_check_last_name_val
|
|
46 |
|
47 |
|
48 |
/* handle field save */
|
49 |
-
function wppb_userdata_add_last_name( $userdata, $global_request ){
|
50 |
-
|
51 |
-
|
52 |
-
|
|
|
|
|
53 |
return $userdata;
|
54 |
}
|
55 |
-
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_last_name', 10,
|
46 |
|
47 |
|
48 |
/* handle field save */
|
49 |
+
function wppb_userdata_add_last_name( $userdata, $global_request, $form_args ){
|
50 |
+
if( wppb_field_exists_in_form( 'Default - Last Name', $form_args ) ) {
|
51 |
+
if (isset($global_request['last_name']))
|
52 |
+
$userdata['last_name'] = sanitize_text_field(trim($global_request['last_name']));
|
53 |
+
}
|
54 |
+
|
55 |
return $userdata;
|
56 |
}
|
57 |
+
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_last_name', 10, 3 );
|
front-end/default-fields/nickname/nickname.php
CHANGED
@@ -45,10 +45,12 @@ function wppb_check_nickname_value( $message, $field, $request_data, $form_locat
|
|
45 |
add_filter( 'wppb_check_form_field_default-nickname', 'wppb_check_nickname_value', 10, 4 );
|
46 |
|
47 |
/* handle field save */
|
48 |
-
function wppb_userdata_add_nickname( $userdata, $global_request ){
|
49 |
-
|
50 |
-
|
51 |
-
|
|
|
|
|
52 |
return $userdata;
|
53 |
}
|
54 |
-
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_nickname', 10,
|
45 |
add_filter( 'wppb_check_form_field_default-nickname', 'wppb_check_nickname_value', 10, 4 );
|
46 |
|
47 |
/* handle field save */
|
48 |
+
function wppb_userdata_add_nickname( $userdata, $global_request, $form_args ){
|
49 |
+
if( wppb_field_exists_in_form( 'Default - Nickname', $form_args ) ) {
|
50 |
+
if (isset($global_request['nickname']))
|
51 |
+
$userdata['nickname'] = sanitize_text_field(trim($global_request['nickname']));
|
52 |
+
}
|
53 |
+
|
54 |
return $userdata;
|
55 |
}
|
56 |
+
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_nickname', 10, 3 );
|
front-end/default-fields/password/password.php
CHANGED
@@ -60,10 +60,12 @@ function wppb_check_password_value( $message, $field, $request_data, $form_locat
|
|
60 |
add_filter( 'wppb_check_form_field_default-password', 'wppb_check_password_value', 10, 4 );
|
61 |
|
62 |
/* handle field save */
|
63 |
-
function wppb_userdata_add_password( $userdata, $global_request ){
|
64 |
-
|
65 |
-
|
66 |
-
|
|
|
|
|
67 |
return $userdata;
|
68 |
}
|
69 |
-
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_password', 10,
|
60 |
add_filter( 'wppb_check_form_field_default-password', 'wppb_check_password_value', 10, 4 );
|
61 |
|
62 |
/* handle field save */
|
63 |
+
function wppb_userdata_add_password( $userdata, $global_request, $form_args ){
|
64 |
+
if( wppb_field_exists_in_form( 'Default - Password', $form_args ) ) {
|
65 |
+
if (isset($global_request['passw1']) && (trim($global_request['passw1']) != ''))
|
66 |
+
$userdata['user_pass'] = trim($global_request['passw1']);
|
67 |
+
}
|
68 |
+
|
69 |
return $userdata;
|
70 |
}
|
71 |
+
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_password', 10, 3 );
|
front-end/default-fields/user-role/user-role.php
CHANGED
@@ -176,25 +176,38 @@ add_filter( 'wppb_check_form_field_select-user-role', 'wppb_check_user_role_valu
|
|
176 |
|
177 |
|
178 |
/* handle field save */
|
179 |
-
function wppb_userdata_add_user_role( $userdata, $global_request ){
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
|
|
|
|
|
|
|
|
185 |
}
|
186 |
-
}
|
187 |
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
195 |
}
|
196 |
}
|
197 |
|
198 |
return $userdata;
|
199 |
}
|
200 |
-
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_user_role', 10,
|
176 |
|
177 |
|
178 |
/* handle field save */
|
179 |
+
function wppb_userdata_add_user_role( $userdata, $global_request, $form_args ){
|
180 |
+
|
181 |
+
if( wppb_field_exists_in_form( 'Select (User Role)', $form_args ) ) {
|
182 |
+
|
183 |
+
$roles_editor_active = false;
|
184 |
+
$wppb_generalSettings = get_option('wppb_general_settings', 'not_found');
|
185 |
+
if ($wppb_generalSettings != 'not_found') {
|
186 |
+
if (!empty($wppb_generalSettings['rolesEditor']) && ($wppb_generalSettings['rolesEditor'] == 'yes')) {
|
187 |
+
$roles_editor_active = true;
|
188 |
+
}
|
189 |
}
|
|
|
190 |
|
191 |
+
if (isset($global_request['custom_field_user_role'])) {
|
192 |
+
if ($roles_editor_active && is_array($global_request['custom_field_user_role'])) {
|
193 |
+
$user_roles = array_map('trim', $global_request['custom_field_user_role']);
|
194 |
+
$user_roles = array_map('sanitize_text_field', $user_roles);
|
195 |
+
|
196 |
+
//don't allow administrator value. it should never be here but just in case make a hard check
|
197 |
+
if (($key = array_search("administrator", $user_roles)) !== false) {
|
198 |
+
unset($user_roles[$key]);
|
199 |
+
}
|
200 |
+
|
201 |
+
$userdata['role'] = $user_roles;
|
202 |
+
} else {
|
203 |
+
$role = sanitize_text_field(trim($global_request['custom_field_user_role']));
|
204 |
+
if( $role !== 'administrator' ) {//don't allow administrator value. it should never be here but just in case make a hard check
|
205 |
+
$userdata['role'] = $role;
|
206 |
+
}
|
207 |
+
}
|
208 |
}
|
209 |
}
|
210 |
|
211 |
return $userdata;
|
212 |
}
|
213 |
+
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_user_role', 10, 3 );
|
front-end/default-fields/username/username.php
CHANGED
@@ -73,10 +73,12 @@ add_filter( 'wppb_check_form_field_default-username', 'wppb_check_username_value
|
|
73 |
|
74 |
|
75 |
/* handle field save */
|
76 |
-
function wppb_userdata_add_username( $userdata, $global_request ){
|
77 |
-
|
78 |
-
|
|
|
|
|
79 |
|
80 |
return $userdata;
|
81 |
}
|
82 |
-
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_username', 10,
|
73 |
|
74 |
|
75 |
/* handle field save */
|
76 |
+
function wppb_userdata_add_username( $userdata, $global_request, $form_args ){
|
77 |
+
if( wppb_field_exists_in_form( 'Default - Username', $form_args ) ) {
|
78 |
+
if (isset($global_request['username']))
|
79 |
+
$userdata['user_login'] = sanitize_user(trim($global_request['username']));
|
80 |
+
}
|
81 |
|
82 |
return $userdata;
|
83 |
}
|
84 |
+
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_username', 10, 3 );
|
front-end/default-fields/website/website.php
CHANGED
@@ -47,10 +47,12 @@ add_filter( 'wppb_check_form_field_default-website', 'wppb_check_website_value',
|
|
47 |
|
48 |
|
49 |
/* handle field save */
|
50 |
-
function wppb_userdata_add_website( $userdata, $global_request ){
|
51 |
-
|
52 |
-
|
53 |
-
|
|
|
|
|
54 |
return $userdata;
|
55 |
}
|
56 |
-
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_website', 10,
|
47 |
|
48 |
|
49 |
/* handle field save */
|
50 |
+
function wppb_userdata_add_website( $userdata, $global_request, $form_args ){
|
51 |
+
if( wppb_field_exists_in_form( 'Default - Website', $form_args ) ) {
|
52 |
+
if (isset($global_request['website']))
|
53 |
+
$userdata['user_url'] = esc_url_raw(trim($global_request['website']));
|
54 |
+
}
|
55 |
+
|
56 |
return $userdata;
|
57 |
}
|
58 |
+
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_website', 10, 3 );
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
-
Version: 3.1.
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
@@ -63,7 +63,7 @@ function wppb_free_plugin_init() {
|
|
63 |
*
|
64 |
*
|
65 |
*/
|
66 |
-
define('PROFILE_BUILDER_VERSION', '3.1.
|
67 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
68 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
69 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
+
Version: 3.1.1
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
63 |
*
|
64 |
*
|
65 |
*/
|
66 |
+
define('PROFILE_BUILDER_VERSION', '3.1.1' );
|
67 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
68 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
69 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 5.3.2
|
7 |
-
Stable tag: 3.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -169,6 +169,11 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
169 |
12. Role Editor
|
170 |
|
171 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
172 |
= 3.1.0 =
|
173 |
* We now add html and body tags to html emails that we send
|
174 |
* Fixed issue with admin approval still impacting the flow after downgrading from Pro to Free
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 5.3.2
|
7 |
+
Stable tag: 3.1.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
169 |
12. Role Editor
|
170 |
|
171 |
== Changelog ==
|
172 |
+
= 3.1.1 =
|
173 |
+
* Security update
|
174 |
+
* Fixed a compatibility issue with PMS and redirect url
|
175 |
+
* Fixed issue in backend when labels for user roles contained a %
|
176 |
+
|
177 |
= 3.1.0 =
|
178 |
* We now add html and body tags to html emails that we send
|
179 |
* Fixed issue with admin approval still impacting the flow after downgrading from Pro to Free
|
translation/profile-builder.pot
CHANGED
@@ -369,7 +369,7 @@ msgstr ""
|
|
369 |
msgid "Edit Profile"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: ../pb-add-on-custom-profile-menus/index.php:308, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, front-end/class-formbuilder.php:
|
373 |
msgid "Register"
|
374 |
msgstr ""
|
375 |
|
@@ -421,67 +421,67 @@ msgstr ""
|
|
421 |
msgid "Settings"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: ../pb-add-on-email-confirmation-field/index.php:
|
425 |
msgid "The email confirmation does not match your email address."
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: ../pb-add-on-field-visibility/index.php:
|
429 |
msgid "Visibility"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: ../pb-add-on-field-visibility/index.php:
|
433 |
msgid "<strong>Admin Only</strong> field is visible only for administrators. <strong>User Locked</strong> field is visible for both administrators and users, but only administrators have the capability to edit it."
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: ../pb-add-on-field-visibility/index.php:
|
437 |
msgid "User Role Visibility"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: ../pb-add-on-field-visibility/index.php:
|
441 |
msgid "Select which user roles see this field"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: ../pb-add-on-field-visibility/index.php:
|
445 |
msgid "Location Visibility"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: ../pb-add-on-field-visibility/index.php:
|
449 |
msgid "Select the locations you wish the field to appear"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: ../pb-add-on-field-visibility/index.php:
|
453 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: ../pb-add-on-field-visibility/index.php:
|
457 |
msgid "Edit"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ../pb-add-on-field-visibility/index.php:
|
461 |
msgid "Delete"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: ../pb-add-on-field-visibility/index.php:
|
465 |
msgid "This field is visible only for administrators."
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: ../pb-add-on-field-visibility/index.php:
|
469 |
msgid "This field is visible for both administrators and users, but only administrators have the capability to edit it."
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: ../pb-add-on-field-visibility/index.php:
|
473 |
msgid "This field is visible only for the following user roles: %1$s"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: ../pb-add-on-field-visibility/index.php:
|
477 |
msgid "This field is visible only in the following locations: %1$s"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: ../pb-add-on-field-visibility/index.php:
|
481 |
msgid "Get file"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: ../pb-add-on-field-visibility/index.php:
|
485 |
msgid "You do not have the capabilities necessary to edit this field."
|
486 |
msgstr ""
|
487 |
|
@@ -683,7 +683,7 @@ msgstr ""
|
|
683 |
msgid "Replace labels with placeholders:"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:324, admin/general-settings.php:113, admin/general-settings.php:126, admin/general-settings.php:175, admin/general-settings.php:222, admin/private-website.php:60, admin/private-website.php:117, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:18, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:34, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:18, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:66, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:181, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:197, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:217, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:240, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:261, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:132, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:149, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:164, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:184, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:201, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:239, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:260, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:280, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:302, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:16, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:32, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:48, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:64, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:53, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:75, features/content-restriction/content-restriction.php:88, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:229, modules/multiple-forms/register-forms.php:230, modules/user-listing/userlisting.php:
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
@@ -883,7 +883,7 @@ msgstr ""
|
|
883 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: ../pb-add-on-social-connect/index.php:392, features/functions.php:
|
887 |
msgid "here"
|
888 |
msgstr ""
|
889 |
|
@@ -1357,15 +1357,15 @@ msgstr ""
|
|
1357 |
msgid "Save the communication preferences order"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:
|
1361 |
msgid "required"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:
|
1365 |
msgid "Date"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:
|
1369 |
msgid "Preference"
|
1370 |
msgstr ""
|
1371 |
|
@@ -1705,7 +1705,7 @@ msgstr ""
|
|
1705 |
msgid "Not compatible with Profile Builder"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: admin/add-ons.php:328, front-end/class-formbuilder.php:
|
1709 |
msgid "Update"
|
1710 |
msgstr ""
|
1711 |
|
@@ -1745,7 +1745,7 @@ msgstr ""
|
|
1745 |
msgid "Show"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: admin/admin-bar.php:80, modules/user-listing/userlisting.php:
|
1749 |
msgid "Hide"
|
1750 |
msgstr ""
|
1751 |
|
@@ -2253,11 +2253,11 @@ msgstr ""
|
|
2253 |
msgid "Username and Email"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
-
#: admin/general-settings.php:251, admin/manage-fields.php:317, front-end/login.php:246, front-end/login.php:260, front-end/login.php:389, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:121, features/admin-approval/class-admin-approval.php:166, features/email-confirmation/class-email-confirmation.php:168, modules/custom-redirects/custom_redirects_admin.php:60, modules/email-customizer/email-customizer.php:28, modules/user-listing/userlisting.php:111, modules/user-listing/userlisting.php:311, modules/user-listing/userlisting.php:
|
2257 |
msgid "Username"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
-
#: admin/general-settings.php:252, front-end/login.php:386, modules/email-customizer/email-customizer.php:29, modules/user-listing/userlisting.php:
|
2261 |
msgid "Email"
|
2262 |
msgstr ""
|
2263 |
|
@@ -2733,7 +2733,7 @@ msgstr ""
|
|
2733 |
msgid "Usernames cannot be changed."
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#: admin/manage-fields.php:320, modules/user-listing/userlisting.php:
|
2737 |
msgid "Nickname"
|
2738 |
msgstr ""
|
2739 |
|
@@ -2741,7 +2741,7 @@ msgstr ""
|
|
2741 |
msgid "Display name publicly as"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
-
#: admin/manage-fields.php:324, modules/email-customizer/email-customizer.php:33, modules/user-listing/userlisting.php:120, modules/user-listing/userlisting.php:
|
2745 |
msgid "Website"
|
2746 |
msgstr ""
|
2747 |
|
@@ -2757,7 +2757,7 @@ msgstr ""
|
|
2757 |
msgid "Jabber / Google Talk"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: admin/manage-fields.php:334, modules/user-listing/userlisting.php:123, modules/user-listing/userlisting.php:
|
2761 |
msgid "Biographical Info"
|
2762 |
msgstr ""
|
2763 |
|
@@ -4595,23 +4595,23 @@ msgstr ""
|
|
4595 |
msgid "Content"
|
4596 |
msgstr ""
|
4597 |
|
4598 |
-
#: features/functions.php:
|
4599 |
msgid "<br><br>Also, you will be able to visit your site at "
|
4600 |
msgstr ""
|
4601 |
|
4602 |
-
#: features/functions.php:
|
4603 |
msgid "<br><br>You can visit your site at "
|
4604 |
msgstr ""
|
4605 |
|
4606 |
-
#: features/functions.php:
|
4607 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4608 |
msgstr ""
|
4609 |
|
4610 |
-
#: features/functions.php:
|
4611 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
4612 |
msgstr ""
|
4613 |
|
4614 |
-
#: features/functions.php:
|
4615 |
msgid "You are not currently logged in."
|
4616 |
msgstr ""
|
4617 |
|
@@ -4647,51 +4647,51 @@ msgstr ""
|
|
4647 |
msgid "You must be logged in to edit your profile."
|
4648 |
msgstr ""
|
4649 |
|
4650 |
-
#: front-end/class-formbuilder.php:
|
4651 |
msgid "You are not allowed to do this."
|
4652 |
msgstr ""
|
4653 |
|
4654 |
-
#: front-end/class-formbuilder.php:
|
4655 |
msgid "The account %1s has been successfully created!"
|
4656 |
msgstr ""
|
4657 |
|
4658 |
-
#: front-end/class-formbuilder.php:
|
4659 |
msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
|
4660 |
msgstr ""
|
4661 |
|
4662 |
-
#: front-end/class-formbuilder.php:
|
4663 |
msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
|
4664 |
msgstr ""
|
4665 |
|
4666 |
-
#: front-end/class-formbuilder.php:
|
4667 |
msgid "Your profile has been successfully updated!"
|
4668 |
msgstr ""
|
4669 |
|
4670 |
-
#: front-end/class-formbuilder.php:
|
4671 |
msgid "There was an error in the submitted form"
|
4672 |
msgstr ""
|
4673 |
|
4674 |
-
#: front-end/class-formbuilder.php:
|
4675 |
msgid "Add User"
|
4676 |
msgstr ""
|
4677 |
|
4678 |
-
#: front-end/class-formbuilder.php:
|
4679 |
msgid "Send these credentials via email."
|
4680 |
msgstr ""
|
4681 |
|
4682 |
-
#: front-end/class-formbuilder.php:
|
4683 |
msgid "User to edit:"
|
4684 |
msgstr ""
|
4685 |
|
4686 |
-
#: front-end/class-formbuilder.php:
|
4687 |
msgid "Select User"
|
4688 |
msgstr ""
|
4689 |
|
4690 |
-
#: front-end/class-formbuilder.php:
|
4691 |
msgid "There are no other users to edit"
|
4692 |
msgstr ""
|
4693 |
|
4694 |
-
#: front-end/class-formbuilder.php:
|
4695 |
msgid "Something went wrong. Please try again!"
|
4696 |
msgstr ""
|
4697 |
|
@@ -5379,15 +5379,15 @@ msgstr ""
|
|
5379 |
msgid "Approve"
|
5380 |
msgstr ""
|
5381 |
|
5382 |
-
#: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:312, modules/user-listing/userlisting.php:
|
5383 |
msgid "Firstname"
|
5384 |
msgstr ""
|
5385 |
|
5386 |
-
#: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:
|
5387 |
msgid "Lastname"
|
5388 |
msgstr ""
|
5389 |
|
5390 |
-
#: features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:255, modules/user-listing/userlisting.php:159, modules/user-listing/userlisting.php:313, modules/user-listing/userlisting.php:
|
5391 |
msgid "Role"
|
5392 |
msgstr ""
|
5393 |
|
@@ -6327,27 +6327,27 @@ msgstr ""
|
|
6327 |
msgid "No Edit-profile Forms found in trash"
|
6328 |
msgstr ""
|
6329 |
|
6330 |
-
#: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:
|
6331 |
msgid "Shortcode"
|
6332 |
msgstr ""
|
6333 |
|
6334 |
-
#: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:
|
6335 |
msgid "(no title)"
|
6336 |
msgstr ""
|
6337 |
|
6338 |
-
#: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:
|
6339 |
msgid "The shortcode will be available after you publish this form."
|
6340 |
msgstr ""
|
6341 |
|
6342 |
-
#: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:
|
6343 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6344 |
msgstr ""
|
6345 |
|
6346 |
-
#: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:
|
6347 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6348 |
msgstr ""
|
6349 |
|
6350 |
-
#: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:
|
6351 |
msgid "Form Shortcode"
|
6352 |
msgstr ""
|
6353 |
|
@@ -6503,11 +6503,11 @@ msgstr ""
|
|
6503 |
msgid "Display name as"
|
6504 |
msgstr ""
|
6505 |
|
6506 |
-
#: modules/user-listing/userlisting.php:161, modules/user-listing/userlisting.php:
|
6507 |
msgid "Registration Date"
|
6508 |
msgstr ""
|
6509 |
|
6510 |
-
#: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:
|
6511 |
msgid "Number of Posts"
|
6512 |
msgstr ""
|
6513 |
|
@@ -6543,7 +6543,7 @@ msgstr ""
|
|
6543 |
msgid "Search all Fields"
|
6544 |
msgstr ""
|
6545 |
|
6546 |
-
#: modules/user-listing/userlisting.php:227, modules/user-listing/userlisting.php:
|
6547 |
msgid "Faceted Menus"
|
6548 |
msgstr ""
|
6549 |
|
@@ -6571,11 +6571,11 @@ msgstr ""
|
|
6571 |
msgid "Avatar"
|
6572 |
msgstr ""
|
6573 |
|
6574 |
-
#: modules/user-listing/userlisting.php:314, modules/user-listing/userlisting.php:
|
6575 |
msgid "Posts"
|
6576 |
msgstr ""
|
6577 |
|
6578 |
-
#: modules/user-listing/userlisting.php:315, modules/user-listing/userlisting.php:
|
6579 |
msgid "Sign-up Date"
|
6580 |
msgstr ""
|
6581 |
|
@@ -6595,275 +6595,275 @@ msgstr ""
|
|
6595 |
msgid "User not found"
|
6596 |
msgstr ""
|
6597 |
|
6598 |
-
#: modules/user-listing/userlisting.php:
|
6599 |
msgid "First/Lastname"
|
6600 |
msgstr ""
|
6601 |
|
6602 |
-
#: modules/user-listing/userlisting.php:
|
6603 |
msgid "Display Name"
|
6604 |
msgstr ""
|
6605 |
|
6606 |
-
#: modules/user-listing/userlisting.php:
|
6607 |
msgid "Aim"
|
6608 |
msgstr ""
|
6609 |
|
6610 |
-
#: modules/user-listing/userlisting.php:
|
6611 |
msgid "Yim"
|
6612 |
msgstr ""
|
6613 |
|
6614 |
-
#: modules/user-listing/userlisting.php:
|
6615 |
msgid "Jabber"
|
6616 |
msgstr ""
|
6617 |
|
6618 |
-
#: modules/user-listing/userlisting.php:
|
6619 |
msgid "Search Users by All Fields"
|
6620 |
msgstr ""
|
6621 |
|
6622 |
-
#: modules/user-listing/userlisting.php:
|
6623 |
msgid "Click here to see more information about this user"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
-
#: modules/user-listing/userlisting.php:
|
6627 |
msgid "More..."
|
6628 |
msgstr ""
|
6629 |
|
6630 |
-
#: modules/user-listing/userlisting.php:
|
6631 |
msgid "Click here to see more information about this user."
|
6632 |
msgstr ""
|
6633 |
|
6634 |
-
#: modules/user-listing/userlisting.php:
|
6635 |
msgid "View Map"
|
6636 |
msgstr ""
|
6637 |
|
6638 |
-
#: modules/user-listing/userlisting.php:
|
6639 |
msgid "Click here to go back"
|
6640 |
msgstr ""
|
6641 |
|
6642 |
-
#: modules/user-listing/userlisting.php:
|
6643 |
msgid "Back"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
-
#: modules/user-listing/userlisting.php:
|
6647 |
msgid "«« First"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
-
#: modules/user-listing/userlisting.php:
|
6651 |
msgid "« Prev"
|
6652 |
msgstr ""
|
6653 |
|
6654 |
-
#: modules/user-listing/userlisting.php:
|
6655 |
msgid "Next » "
|
6656 |
msgstr ""
|
6657 |
|
6658 |
-
#: modules/user-listing/userlisting.php:
|
6659 |
msgid "Last »»"
|
6660 |
msgstr ""
|
6661 |
|
6662 |
-
#: modules/user-listing/userlisting.php:
|
6663 |
msgid "You don't have any pagination settings on this userlisting!"
|
6664 |
msgstr ""
|
6665 |
|
6666 |
-
#: modules/user-listing/userlisting.php:
|
6667 |
msgid "Show All"
|
6668 |
msgstr ""
|
6669 |
|
6670 |
-
#: modules/user-listing/userlisting.php:
|
6671 |
msgid "Choose..."
|
6672 |
msgstr ""
|
6673 |
|
6674 |
-
#: modules/user-listing/userlisting.php:
|
6675 |
msgid "No options available"
|
6676 |
msgstr ""
|
6677 |
|
6678 |
-
#: modules/user-listing/userlisting.php:
|
6679 |
msgid "Remove All Filters"
|
6680 |
msgstr ""
|
6681 |
|
6682 |
-
#: modules/user-listing/userlisting.php:
|
6683 |
msgid "Search"
|
6684 |
msgstr ""
|
6685 |
|
6686 |
-
#: modules/user-listing/userlisting.php:
|
6687 |
msgid "Clear Results"
|
6688 |
msgstr ""
|
6689 |
|
6690 |
-
#: modules/user-listing/userlisting.php:
|
6691 |
msgid "Extra shortcode parameters"
|
6692 |
msgstr ""
|
6693 |
|
6694 |
-
#: modules/user-listing/userlisting.php:
|
6695 |
msgid "View all extra shortcode parameters"
|
6696 |
msgstr ""
|
6697 |
|
6698 |
-
#: modules/user-listing/userlisting.php:
|
6699 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6700 |
msgstr ""
|
6701 |
|
6702 |
-
#: modules/user-listing/userlisting.php:
|
6703 |
msgid "Example:"
|
6704 |
msgstr ""
|
6705 |
|
6706 |
-
#: modules/user-listing/userlisting.php:
|
6707 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6708 |
msgstr ""
|
6709 |
|
6710 |
-
#: modules/user-listing/userlisting.php:
|
6711 |
msgid "displays only the users that you specified the user_id for"
|
6712 |
msgstr ""
|
6713 |
|
6714 |
-
#: modules/user-listing/userlisting.php:
|
6715 |
msgid "displays all users except the ones you specified the user_id for"
|
6716 |
msgstr ""
|
6717 |
|
6718 |
-
#: modules/user-listing/userlisting.php:
|
6719 |
msgid "Random (very slow on large databases > 10K user)"
|
6720 |
msgstr ""
|
6721 |
|
6722 |
-
#: modules/user-listing/userlisting.php:
|
6723 |
msgid "Ascending"
|
6724 |
msgstr ""
|
6725 |
|
6726 |
-
#: modules/user-listing/userlisting.php:
|
6727 |
msgid "Descending"
|
6728 |
msgstr ""
|
6729 |
|
6730 |
-
#: modules/user-listing/userlisting.php:
|
6731 |
msgid "Roles to Display"
|
6732 |
msgstr ""
|
6733 |
|
6734 |
-
#: modules/user-listing/userlisting.php:
|
6735 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6736 |
msgstr ""
|
6737 |
|
6738 |
-
#: modules/user-listing/userlisting.php:
|
6739 |
msgid "Number of Users/Page"
|
6740 |
msgstr ""
|
6741 |
|
6742 |
-
#: modules/user-listing/userlisting.php:
|
6743 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6744 |
msgstr ""
|
6745 |
|
6746 |
-
#: modules/user-listing/userlisting.php:
|
6747 |
msgid "Default Sorting Criteria"
|
6748 |
msgstr ""
|
6749 |
|
6750 |
-
#: modules/user-listing/userlisting.php:
|
6751 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6752 |
msgstr ""
|
6753 |
|
6754 |
-
#: modules/user-listing/userlisting.php:
|
6755 |
msgid "Default Sorting Order"
|
6756 |
msgstr ""
|
6757 |
|
6758 |
-
#: modules/user-listing/userlisting.php:
|
6759 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6760 |
msgstr ""
|
6761 |
|
6762 |
-
#: modules/user-listing/userlisting.php:
|
6763 |
msgid "Avatar Size (All-userlisting)"
|
6764 |
msgstr ""
|
6765 |
|
6766 |
-
#: modules/user-listing/userlisting.php:
|
6767 |
msgid "Set the avatar size on the all-userlisting only"
|
6768 |
msgstr ""
|
6769 |
|
6770 |
-
#: modules/user-listing/userlisting.php:
|
6771 |
msgid "Avatar Size (Single-userlisting)"
|
6772 |
msgstr ""
|
6773 |
|
6774 |
-
#: modules/user-listing/userlisting.php:
|
6775 |
msgid "Set the avatar size on the single-userlisting only"
|
6776 |
msgstr ""
|
6777 |
|
6778 |
-
#: modules/user-listing/userlisting.php:
|
6779 |
msgid "Visible only to logged in users?"
|
6780 |
msgstr ""
|
6781 |
|
6782 |
-
#: modules/user-listing/userlisting.php:
|
6783 |
msgid "The userlisting will only be visible only to the logged in users"
|
6784 |
msgstr ""
|
6785 |
|
6786 |
-
#: modules/user-listing/userlisting.php:
|
6787 |
msgid "Visible to following Roles"
|
6788 |
msgstr ""
|
6789 |
|
6790 |
-
#: modules/user-listing/userlisting.php:
|
6791 |
msgid "The userlisting will only be visible to the following roles"
|
6792 |
msgstr ""
|
6793 |
|
6794 |
-
#: modules/user-listing/userlisting.php:
|
6795 |
msgid "Userlisting Settings"
|
6796 |
msgstr ""
|
6797 |
|
6798 |
-
#: modules/user-listing/userlisting.php:
|
6799 |
msgid "Label"
|
6800 |
msgstr ""
|
6801 |
|
6802 |
-
#: modules/user-listing/userlisting.php:
|
6803 |
msgid "Choose the facet name that appears on the frontend"
|
6804 |
msgstr ""
|
6805 |
|
6806 |
-
#: modules/user-listing/userlisting.php:
|
6807 |
msgid "Facet Type"
|
6808 |
msgstr ""
|
6809 |
|
6810 |
-
#: modules/user-listing/userlisting.php:
|
6811 |
msgid "Choose the facet menu type"
|
6812 |
msgstr ""
|
6813 |
|
6814 |
-
#: modules/user-listing/userlisting.php:
|
6815 |
msgid "Facet Meta"
|
6816 |
msgstr ""
|
6817 |
|
6818 |
-
#: modules/user-listing/userlisting.php:
|
6819 |
msgid "Choose the meta field for the facet menu"
|
6820 |
msgstr ""
|
6821 |
|
6822 |
-
#: modules/user-listing/userlisting.php:
|
6823 |
msgid "Behaviour"
|
6824 |
msgstr ""
|
6825 |
|
6826 |
-
#: modules/user-listing/userlisting.php:
|
6827 |
msgid "Narrow the results"
|
6828 |
msgstr ""
|
6829 |
|
6830 |
-
#: modules/user-listing/userlisting.php:
|
6831 |
msgid "Expand the results"
|
6832 |
msgstr ""
|
6833 |
|
6834 |
-
#: modules/user-listing/userlisting.php:
|
6835 |
msgid "Choose how multiple selections affect the results"
|
6836 |
msgstr ""
|
6837 |
|
6838 |
-
#: modules/user-listing/userlisting.php:
|
6839 |
msgid "Visible choices"
|
6840 |
msgstr ""
|
6841 |
|
6842 |
-
#: modules/user-listing/userlisting.php:
|
6843 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6844 |
msgstr ""
|
6845 |
|
6846 |
-
#: modules/user-listing/userlisting.php:
|
6847 |
msgid "Search Fields"
|
6848 |
msgstr ""
|
6849 |
|
6850 |
-
#: modules/user-listing/userlisting.php:
|
6851 |
msgid "Choose the fields in which the Search Field will look in"
|
6852 |
msgstr ""
|
6853 |
|
6854 |
-
#: modules/user-listing/userlisting.php:
|
6855 |
msgid "Search Settings"
|
6856 |
msgstr ""
|
6857 |
|
6858 |
-
#: modules/user-listing/userlisting.php:
|
6859 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6860 |
msgstr ""
|
6861 |
|
6862 |
-
#: modules/user-listing/userlisting.php:
|
6863 |
msgid "You can find it in the Profile Builder menu."
|
6864 |
msgstr ""
|
6865 |
|
6866 |
-
#: modules/user-listing/userlisting.php:
|
6867 |
msgid "No results found!"
|
6868 |
msgstr ""
|
6869 |
|
369 |
msgid "Edit Profile"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: ../pb-add-on-custom-profile-menus/index.php:308, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, front-end/class-formbuilder.php:426, front-end/login.php:421
|
373 |
msgid "Register"
|
374 |
msgstr ""
|
375 |
|
421 |
msgid "Settings"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: ../pb-add-on-email-confirmation-field/index.php:85
|
425 |
msgid "The email confirmation does not match your email address."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ../pb-add-on-field-visibility/index.php:214, admin/admin-bar.php:63
|
429 |
msgid "Visibility"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: ../pb-add-on-field-visibility/index.php:214
|
433 |
msgid "<strong>Admin Only</strong> field is visible only for administrators. <strong>User Locked</strong> field is visible for both administrators and users, but only administrators have the capability to edit it."
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: ../pb-add-on-field-visibility/index.php:215
|
437 |
msgid "User Role Visibility"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: ../pb-add-on-field-visibility/index.php:215
|
441 |
msgid "Select which user roles see this field"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: ../pb-add-on-field-visibility/index.php:216
|
445 |
msgid "Location Visibility"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: ../pb-add-on-field-visibility/index.php:216
|
449 |
msgid "Select the locations you wish the field to appear"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: ../pb-add-on-field-visibility/index.php:234
|
453 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: ../pb-add-on-field-visibility/index.php:234, ../pb-add-on-labels-edit/pble.php:381, admin/manage-fields.php:1313, features/functions.php:805, features/functions.php:812, features/admin-approval/class-admin-approval.php:108, features/roles-editor/roles-editor.php:866, modules/custom-redirects/custom_redirects_admin.php:183, modules/custom-redirects/custom_redirects_admin.php:197, modules/custom-redirects/custom_redirects_admin.php:211, modules/custom-redirects/custom_redirects_admin.php:225, modules/multiple-forms/multiple-forms.php:406
|
457 |
msgid "Edit"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: ../pb-add-on-field-visibility/index.php:234, admin/manage-fields.php:1313, features/functions.php:798, features/functions.php:812, features/admin-approval/class-admin-approval.php:113, features/email-confirmation/class-email-confirmation.php:121, features/email-confirmation/class-email-confirmation.php:218, features/roles-editor/roles-editor.php:179, features/roles-editor/roles-editor.php:884, features/roles-editor/roles-editor.php:893, features/roles-editor/roles-editor.php:904, modules/custom-redirects/custom_redirects_admin.php:183, modules/custom-redirects/custom_redirects_admin.php:197, modules/custom-redirects/custom_redirects_admin.php:211, modules/custom-redirects/custom_redirects_admin.php:225, front-end/default-fields/gdpr-delete/gdpr-delete.php:18
|
461 |
msgid "Delete"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: ../pb-add-on-field-visibility/index.php:255
|
465 |
msgid "This field is visible only for administrators."
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: ../pb-add-on-field-visibility/index.php:258
|
469 |
msgid "This field is visible for both administrators and users, but only administrators have the capability to edit it."
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: ../pb-add-on-field-visibility/index.php:281
|
473 |
msgid "This field is visible only for the following user roles: %1$s"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: ../pb-add-on-field-visibility/index.php:327
|
477 |
msgid "This field is visible only in the following locations: %1$s"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: ../pb-add-on-field-visibility/index.php:469
|
481 |
msgid "Get file"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: ../pb-add-on-field-visibility/index.php:598
|
485 |
msgid "You do not have the capabilities necessary to edit this field."
|
486 |
msgstr ""
|
487 |
|
683 |
msgid "Replace labels with placeholders:"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:324, admin/general-settings.php:113, admin/general-settings.php:126, admin/general-settings.php:175, admin/general-settings.php:222, admin/private-website.php:60, admin/private-website.php:117, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:18, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:34, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:18, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:66, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:181, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:197, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:217, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:240, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:261, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:132, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:149, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:164, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:184, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:201, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:239, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:260, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:280, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:302, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:16, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:32, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:48, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:64, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:53, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:75, features/content-restriction/content-restriction.php:88, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:229, modules/multiple-forms/register-forms.php:230, modules/user-listing/userlisting.php:2372
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
883 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: ../pb-add-on-social-connect/index.php:392, features/functions.php:1092
|
887 |
msgid "here"
|
888 |
msgstr ""
|
889 |
|
1357 |
msgid "Save the communication preferences order"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:53, ../pb-add-on-select2/front-end/select2-field.php:72, ../pb-add-on-select2/front-end/select2-multiple-field.php:87, front-end/extra-fields/avatar/avatar.php:78, front-end/extra-fields/checkbox/checkbox.php:46, 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/map/map.php:51, 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:58, front-end/extra-fields/select-multiple/select-multiple.php:47, front-end/extra-fields/select-timezone/select-timezone.php:49, front-end/extra-fields/textarea/textarea.php:30, front-end/extra-fields/upload/upload.php:74, front-end/extra-fields/wysiwyg/wysiwyg.php:33
|
1361 |
msgid "required"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:77
|
1365 |
msgid "Date"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:77
|
1369 |
msgid "Preference"
|
1370 |
msgstr ""
|
1371 |
|
1705 |
msgid "Not compatible with Profile Builder"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: admin/add-ons.php:328, front-end/class-formbuilder.php:429
|
1709 |
msgid "Update"
|
1710 |
msgstr ""
|
1711 |
|
1745 |
msgid "Show"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: admin/admin-bar.php:80, modules/user-listing/userlisting.php:1653
|
1749 |
msgid "Hide"
|
1750 |
msgstr ""
|
1751 |
|
2253 |
msgid "Username and Email"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: admin/general-settings.php:251, admin/manage-fields.php:317, front-end/login.php:246, front-end/login.php:260, front-end/login.php:389, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:121, features/admin-approval/class-admin-approval.php:166, features/email-confirmation/class-email-confirmation.php:168, modules/custom-redirects/custom_redirects_admin.php:60, modules/email-customizer/email-customizer.php:28, modules/user-listing/userlisting.php:111, modules/user-listing/userlisting.php:311, modules/user-listing/userlisting.php:795, modules/user-listing/userlisting.php:2326
|
2257 |
msgid "Username"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: admin/general-settings.php:252, front-end/login.php:386, modules/email-customizer/email-customizer.php:29, modules/user-listing/userlisting.php:801, modules/user-listing/userlisting.php:2327
|
2261 |
msgid "Email"
|
2262 |
msgstr ""
|
2263 |
|
2733 |
msgid "Usernames cannot be changed."
|
2734 |
msgstr ""
|
2735 |
|
2736 |
+
#: admin/manage-fields.php:320, modules/user-listing/userlisting.php:834, modules/user-listing/userlisting.php:2334
|
2737 |
msgid "Nickname"
|
2738 |
msgstr ""
|
2739 |
|
2741 |
msgid "Display name publicly as"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
+
#: admin/manage-fields.php:324, modules/email-customizer/email-customizer.php:33, modules/user-listing/userlisting.php:120, modules/user-listing/userlisting.php:816, modules/user-listing/userlisting.php:2328
|
2745 |
msgid "Website"
|
2746 |
msgstr ""
|
2747 |
|
2757 |
msgid "Jabber / Google Talk"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
+
#: admin/manage-fields.php:334, modules/user-listing/userlisting.php:123, modules/user-listing/userlisting.php:819, modules/user-listing/userlisting.php:2329
|
2761 |
msgid "Biographical Info"
|
2762 |
msgstr ""
|
2763 |
|
4595 |
msgid "Content"
|
4596 |
msgstr ""
|
4597 |
|
4598 |
+
#: features/functions.php:994
|
4599 |
msgid "<br><br>Also, you will be able to visit your site at "
|
4600 |
msgstr ""
|
4601 |
|
4602 |
+
#: features/functions.php:1007
|
4603 |
msgid "<br><br>You can visit your site at "
|
4604 |
msgstr ""
|
4605 |
|
4606 |
+
#: features/functions.php:1093
|
4607 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4608 |
msgstr ""
|
4609 |
|
4610 |
+
#: features/functions.php:1223
|
4611 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
4612 |
msgstr ""
|
4613 |
|
4614 |
+
#: features/functions.php:1258
|
4615 |
msgid "You are not currently logged in."
|
4616 |
msgstr ""
|
4617 |
|
4647 |
msgid "You must be logged in to edit your profile."
|
4648 |
msgstr ""
|
4649 |
|
4650 |
+
#: front-end/class-formbuilder.php:270, front-end/login.php:479
|
4651 |
msgid "You are not allowed to do this."
|
4652 |
msgstr ""
|
4653 |
|
4654 |
+
#: front-end/class-formbuilder.php:326, front-end/class-formbuilder.php:333
|
4655 |
msgid "The account %1s has been successfully created!"
|
4656 |
msgstr ""
|
4657 |
|
4658 |
+
#: front-end/class-formbuilder.php:329, front-end/class-formbuilder.php:339
|
4659 |
msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
|
4660 |
msgstr ""
|
4661 |
|
4662 |
+
#: front-end/class-formbuilder.php:335
|
4663 |
msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
|
4664 |
msgstr ""
|
4665 |
|
4666 |
+
#: front-end/class-formbuilder.php:358
|
4667 |
msgid "Your profile has been successfully updated!"
|
4668 |
msgstr ""
|
4669 |
|
4670 |
+
#: front-end/class-formbuilder.php:369
|
4671 |
msgid "There was an error in the submitted form"
|
4672 |
msgstr ""
|
4673 |
|
4674 |
+
#: front-end/class-formbuilder.php:426
|
4675 |
msgid "Add User"
|
4676 |
msgstr ""
|
4677 |
|
4678 |
+
#: front-end/class-formbuilder.php:495
|
4679 |
msgid "Send these credentials via email."
|
4680 |
msgstr ""
|
4681 |
|
4682 |
+
#: front-end/class-formbuilder.php:691
|
4683 |
msgid "User to edit:"
|
4684 |
msgstr ""
|
4685 |
|
4686 |
+
#: front-end/class-formbuilder.php:693
|
4687 |
msgid "Select User"
|
4688 |
msgstr ""
|
4689 |
|
4690 |
+
#: front-end/class-formbuilder.php:709
|
4691 |
msgid "There are no other users to edit"
|
4692 |
msgstr ""
|
4693 |
|
4694 |
+
#: front-end/class-formbuilder.php:727
|
4695 |
msgid "Something went wrong. Please try again!"
|
4696 |
msgstr ""
|
4697 |
|
5379 |
msgid "Approve"
|
5380 |
msgstr ""
|
5381 |
|
5382 |
+
#: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:312, modules/user-listing/userlisting.php:807, modules/user-listing/userlisting.php:2331
|
5383 |
msgid "Firstname"
|
5384 |
msgstr ""
|
5385 |
|
5386 |
+
#: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:810, modules/user-listing/userlisting.php:2332
|
5387 |
msgid "Lastname"
|
5388 |
msgstr ""
|
5389 |
|
5390 |
+
#: features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:255, modules/user-listing/userlisting.php:159, modules/user-listing/userlisting.php:313, modules/user-listing/userlisting.php:837, modules/user-listing/userlisting.php:2336
|
5391 |
msgid "Role"
|
5392 |
msgstr ""
|
5393 |
|
6327 |
msgid "No Edit-profile Forms found in trash"
|
6328 |
msgstr ""
|
6329 |
|
6330 |
+
#: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:2222
|
6331 |
msgid "Shortcode"
|
6332 |
msgstr ""
|
6333 |
|
6334 |
+
#: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:2243
|
6335 |
msgid "(no title)"
|
6336 |
msgstr ""
|
6337 |
|
6338 |
+
#: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:2263
|
6339 |
msgid "The shortcode will be available after you publish this form."
|
6340 |
msgstr ""
|
6341 |
|
6342 |
+
#: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:2265
|
6343 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6344 |
msgstr ""
|
6345 |
|
6346 |
+
#: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:2269
|
6347 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6348 |
msgstr ""
|
6349 |
|
6350 |
+
#: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:2302
|
6351 |
msgid "Form Shortcode"
|
6352 |
msgstr ""
|
6353 |
|
6503 |
msgid "Display name as"
|
6504 |
msgstr ""
|
6505 |
|
6506 |
+
#: modules/user-listing/userlisting.php:161, modules/user-listing/userlisting.php:2330
|
6507 |
msgid "Registration Date"
|
6508 |
msgstr ""
|
6509 |
|
6510 |
+
#: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:2335
|
6511 |
msgid "Number of Posts"
|
6512 |
msgstr ""
|
6513 |
|
6543 |
msgid "Search all Fields"
|
6544 |
msgstr ""
|
6545 |
|
6546 |
+
#: modules/user-listing/userlisting.php:227, modules/user-listing/userlisting.php:2414
|
6547 |
msgid "Faceted Menus"
|
6548 |
msgstr ""
|
6549 |
|
6571 |
msgid "Avatar"
|
6572 |
msgstr ""
|
6573 |
|
6574 |
+
#: modules/user-listing/userlisting.php:314, modules/user-listing/userlisting.php:822
|
6575 |
msgid "Posts"
|
6576 |
msgstr ""
|
6577 |
|
6578 |
+
#: modules/user-listing/userlisting.php:315, modules/user-listing/userlisting.php:804
|
6579 |
msgid "Sign-up Date"
|
6580 |
msgstr ""
|
6581 |
|
6595 |
msgid "User not found"
|
6596 |
msgstr ""
|
6597 |
|
6598 |
+
#: modules/user-listing/userlisting.php:798
|
6599 |
msgid "First/Lastname"
|
6600 |
msgstr ""
|
6601 |
|
6602 |
+
#: modules/user-listing/userlisting.php:813, modules/user-listing/userlisting.php:2333
|
6603 |
msgid "Display Name"
|
6604 |
msgstr ""
|
6605 |
|
6606 |
+
#: modules/user-listing/userlisting.php:825, modules/user-listing/userlisting.php:2340
|
6607 |
msgid "Aim"
|
6608 |
msgstr ""
|
6609 |
|
6610 |
+
#: modules/user-listing/userlisting.php:828, modules/user-listing/userlisting.php:2341
|
6611 |
msgid "Yim"
|
6612 |
msgstr ""
|
6613 |
|
6614 |
+
#: modules/user-listing/userlisting.php:831, modules/user-listing/userlisting.php:2342
|
6615 |
msgid "Jabber"
|
6616 |
msgstr ""
|
6617 |
|
6618 |
+
#: modules/user-listing/userlisting.php:1108, modules/user-listing/userlisting.php:1584, modules/user-listing/userlisting.php:2057, modules/user-listing/userlisting.php:2534
|
6619 |
msgid "Search Users by All Fields"
|
6620 |
msgstr ""
|
6621 |
|
6622 |
+
#: modules/user-listing/userlisting.php:1377
|
6623 |
msgid "Click here to see more information about this user"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
+
#: modules/user-listing/userlisting.php:1377, modules/user-listing/userlisting.php:1377
|
6627 |
msgid "More..."
|
6628 |
msgstr ""
|
6629 |
|
6630 |
+
#: modules/user-listing/userlisting.php:1380
|
6631 |
msgid "Click here to see more information about this user."
|
6632 |
msgstr ""
|
6633 |
|
6634 |
+
#: modules/user-listing/userlisting.php:1407
|
6635 |
msgid "View Map"
|
6636 |
msgstr ""
|
6637 |
|
6638 |
+
#: modules/user-listing/userlisting.php:1538, modules/user-listing/userlisting.php:1541
|
6639 |
msgid "Click here to go back"
|
6640 |
msgstr ""
|
6641 |
|
6642 |
+
#: modules/user-listing/userlisting.php:1538, modules/user-listing/userlisting.php:1538
|
6643 |
msgid "Back"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
+
#: modules/user-listing/userlisting.php:1571
|
6647 |
msgid "«« First"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
+
#: modules/user-listing/userlisting.php:1572
|
6651 |
msgid "« Prev"
|
6652 |
msgstr ""
|
6653 |
|
6654 |
+
#: modules/user-listing/userlisting.php:1573
|
6655 |
msgid "Next » "
|
6656 |
msgstr ""
|
6657 |
|
6658 |
+
#: modules/user-listing/userlisting.php:1574
|
6659 |
msgid "Last »»"
|
6660 |
msgstr ""
|
6661 |
|
6662 |
+
#: modules/user-listing/userlisting.php:1603
|
6663 |
msgid "You don't have any pagination settings on this userlisting!"
|
6664 |
msgstr ""
|
6665 |
|
6666 |
+
#: modules/user-listing/userlisting.php:1652
|
6667 |
msgid "Show All"
|
6668 |
msgstr ""
|
6669 |
|
6670 |
+
#: modules/user-listing/userlisting.php:1726
|
6671 |
msgid "Choose..."
|
6672 |
msgstr ""
|
6673 |
|
6674 |
+
#: modules/user-listing/userlisting.php:1815
|
6675 |
msgid "No options available"
|
6676 |
msgstr ""
|
6677 |
|
6678 |
+
#: modules/user-listing/userlisting.php:1965
|
6679 |
msgid "Remove All Filters"
|
6680 |
msgstr ""
|
6681 |
|
6682 |
+
#: modules/user-listing/userlisting.php:2074
|
6683 |
msgid "Search"
|
6684 |
msgstr ""
|
6685 |
|
6686 |
+
#: modules/user-listing/userlisting.php:2075
|
6687 |
msgid "Clear Results"
|
6688 |
msgstr ""
|
6689 |
|
6690 |
+
#: modules/user-listing/userlisting.php:2272, modules/user-listing/userlisting.php:2276
|
6691 |
msgid "Extra shortcode parameters"
|
6692 |
msgstr ""
|
6693 |
|
6694 |
+
#: modules/user-listing/userlisting.php:2274
|
6695 |
msgid "View all extra shortcode parameters"
|
6696 |
msgstr ""
|
6697 |
|
6698 |
+
#: modules/user-listing/userlisting.php:2279
|
6699 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6700 |
msgstr ""
|
6701 |
|
6702 |
+
#: modules/user-listing/userlisting.php:2280
|
6703 |
msgid "Example:"
|
6704 |
msgstr ""
|
6705 |
|
6706 |
+
#: modules/user-listing/userlisting.php:2282
|
6707 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6708 |
msgstr ""
|
6709 |
|
6710 |
+
#: modules/user-listing/userlisting.php:2288
|
6711 |
msgid "displays only the users that you specified the user_id for"
|
6712 |
msgstr ""
|
6713 |
|
6714 |
+
#: modules/user-listing/userlisting.php:2294
|
6715 |
msgid "displays all users except the ones you specified the user_id for"
|
6716 |
msgstr ""
|
6717 |
|
6718 |
+
#: modules/user-listing/userlisting.php:2357
|
6719 |
msgid "Random (very slow on large databases > 10K user)"
|
6720 |
msgstr ""
|
6721 |
|
6722 |
+
#: modules/user-listing/userlisting.php:2360
|
6723 |
msgid "Ascending"
|
6724 |
msgstr ""
|
6725 |
|
6726 |
+
#: modules/user-listing/userlisting.php:2361
|
6727 |
msgid "Descending"
|
6728 |
msgstr ""
|
6729 |
|
6730 |
+
#: modules/user-listing/userlisting.php:2366
|
6731 |
msgid "Roles to Display"
|
6732 |
msgstr ""
|
6733 |
|
6734 |
+
#: modules/user-listing/userlisting.php:2366
|
6735 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6736 |
msgstr ""
|
6737 |
|
6738 |
+
#: modules/user-listing/userlisting.php:2367
|
6739 |
msgid "Number of Users/Page"
|
6740 |
msgstr ""
|
6741 |
|
6742 |
+
#: modules/user-listing/userlisting.php:2367
|
6743 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6744 |
msgstr ""
|
6745 |
|
6746 |
+
#: modules/user-listing/userlisting.php:2368
|
6747 |
msgid "Default Sorting Criteria"
|
6748 |
msgstr ""
|
6749 |
|
6750 |
+
#: modules/user-listing/userlisting.php:2368
|
6751 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6752 |
msgstr ""
|
6753 |
|
6754 |
+
#: modules/user-listing/userlisting.php:2369
|
6755 |
msgid "Default Sorting Order"
|
6756 |
msgstr ""
|
6757 |
|
6758 |
+
#: modules/user-listing/userlisting.php:2369
|
6759 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6760 |
msgstr ""
|
6761 |
|
6762 |
+
#: modules/user-listing/userlisting.php:2370
|
6763 |
msgid "Avatar Size (All-userlisting)"
|
6764 |
msgstr ""
|
6765 |
|
6766 |
+
#: modules/user-listing/userlisting.php:2370
|
6767 |
msgid "Set the avatar size on the all-userlisting only"
|
6768 |
msgstr ""
|
6769 |
|
6770 |
+
#: modules/user-listing/userlisting.php:2371
|
6771 |
msgid "Avatar Size (Single-userlisting)"
|
6772 |
msgstr ""
|
6773 |
|
6774 |
+
#: modules/user-listing/userlisting.php:2371
|
6775 |
msgid "Set the avatar size on the single-userlisting only"
|
6776 |
msgstr ""
|
6777 |
|
6778 |
+
#: modules/user-listing/userlisting.php:2372
|
6779 |
msgid "Visible only to logged in users?"
|
6780 |
msgstr ""
|
6781 |
|
6782 |
+
#: modules/user-listing/userlisting.php:2372
|
6783 |
msgid "The userlisting will only be visible only to the logged in users"
|
6784 |
msgstr ""
|
6785 |
|
6786 |
+
#: modules/user-listing/userlisting.php:2373
|
6787 |
msgid "Visible to following Roles"
|
6788 |
msgstr ""
|
6789 |
|
6790 |
+
#: modules/user-listing/userlisting.php:2373
|
6791 |
msgid "The userlisting will only be visible to the following roles"
|
6792 |
msgstr ""
|
6793 |
|
6794 |
+
#: modules/user-listing/userlisting.php:2379
|
6795 |
msgid "Userlisting Settings"
|
6796 |
msgstr ""
|
6797 |
|
6798 |
+
#: modules/user-listing/userlisting.php:2404
|
6799 |
msgid "Label"
|
6800 |
msgstr ""
|
6801 |
|
6802 |
+
#: modules/user-listing/userlisting.php:2404
|
6803 |
msgid "Choose the facet name that appears on the frontend"
|
6804 |
msgstr ""
|
6805 |
|
6806 |
+
#: modules/user-listing/userlisting.php:2405
|
6807 |
msgid "Facet Type"
|
6808 |
msgstr ""
|
6809 |
|
6810 |
+
#: modules/user-listing/userlisting.php:2405
|
6811 |
msgid "Choose the facet menu type"
|
6812 |
msgstr ""
|
6813 |
|
6814 |
+
#: modules/user-listing/userlisting.php:2406
|
6815 |
msgid "Facet Meta"
|
6816 |
msgstr ""
|
6817 |
|
6818 |
+
#: modules/user-listing/userlisting.php:2406
|
6819 |
msgid "Choose the meta field for the facet menu"
|
6820 |
msgstr ""
|
6821 |
|
6822 |
+
#: modules/user-listing/userlisting.php:2407
|
6823 |
msgid "Behaviour"
|
6824 |
msgstr ""
|
6825 |
|
6826 |
+
#: modules/user-listing/userlisting.php:2407
|
6827 |
msgid "Narrow the results"
|
6828 |
msgstr ""
|
6829 |
|
6830 |
+
#: modules/user-listing/userlisting.php:2407
|
6831 |
msgid "Expand the results"
|
6832 |
msgstr ""
|
6833 |
|
6834 |
+
#: modules/user-listing/userlisting.php:2407
|
6835 |
msgid "Choose how multiple selections affect the results"
|
6836 |
msgstr ""
|
6837 |
|
6838 |
+
#: modules/user-listing/userlisting.php:2408
|
6839 |
msgid "Visible choices"
|
6840 |
msgstr ""
|
6841 |
|
6842 |
+
#: modules/user-listing/userlisting.php:2408
|
6843 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6844 |
msgstr ""
|
6845 |
|
6846 |
+
#: modules/user-listing/userlisting.php:2433
|
6847 |
msgid "Search Fields"
|
6848 |
msgstr ""
|
6849 |
|
6850 |
+
#: modules/user-listing/userlisting.php:2433
|
6851 |
msgid "Choose the fields in which the Search Field will look in"
|
6852 |
msgstr ""
|
6853 |
|
6854 |
+
#: modules/user-listing/userlisting.php:2438
|
6855 |
msgid "Search Settings"
|
6856 |
msgstr ""
|
6857 |
|
6858 |
+
#: modules/user-listing/userlisting.php:2510
|
6859 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6860 |
msgstr ""
|
6861 |
|
6862 |
+
#: modules/user-listing/userlisting.php:2510
|
6863 |
msgid "You can find it in the Profile Builder menu."
|
6864 |
msgstr ""
|
6865 |
|
6866 |
+
#: modules/user-listing/userlisting.php:2673
|
6867 |
msgid "No results found!"
|
6868 |
msgstr ""
|
6869 |
|