Version Description
- Removed a deprecated jQuery event from our code
- Added a filter for form request data
- Fixed Private Website not properly restricting json api, and added a setting for it
- Fixed password strength message translation
- Fixed a security issue regarding a nonce field
- Fixed Private Site not excluding search results
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 3.2.5 |
Comparing to | |
See all releases |
Code changes from version 3.2.2 to 3.2.5
- admin/manage-fields.php +1 -1
- admin/private-website.php +14 -0
- assets/js/jquery-pb-sitewide.js +2 -0
- features/content-restriction/assets/js/content-restriction.js +1 -1
- features/functions.php +20 -10
- front-end/class-formbuilder.php +2 -0
- front-end/edit-profile.php +1 -1
- index.php +2 -2
- readme.txt +16 -2
- translation/profile-builder.catalog.php +6 -5
- translation/profile-builder.pot +174 -171
admin/manage-fields.php
CHANGED
@@ -1150,7 +1150,7 @@ function wppb_check_field_on_edit_add( $message, $fields, $required_fields, $met
|
|
1150 |
if( empty( $date_format ) )
|
1151 |
$message .= __( "You must enter a value for the date-format\n", 'profile-builder' );
|
1152 |
else {
|
1153 |
-
$date_format = preg_split("/(, |
|
1154 |
$valid_pieces = array('d', 'dd', 'D', 'DD', 'o', 'oo', 'm', 'mm', 'M', 'MM', 'y', 'yy', '@');
|
1155 |
if ($date_format) {
|
1156 |
$invalid_format = false;
|
1150 |
if( empty( $date_format ) )
|
1151 |
$message .= __( "You must enter a value for the date-format\n", 'profile-builder' );
|
1152 |
else {
|
1153 |
+
$date_format = preg_split("/(, | |\/|-|\.|,)/", $date_format );
|
1154 |
$valid_pieces = array('d', 'dd', 'D', 'DD', 'o', 'oo', 'm', 'mm', 'M', 'MM', 'y', 'yy', '@');
|
1155 |
if ($date_format) {
|
1156 |
$invalid_format = false;
|
admin/private-website.php
CHANGED
@@ -24,6 +24,7 @@ function wppb_private_website_settings_defaults() {
|
|
24 |
'redirect_to' => '',
|
25 |
'allowed_pages' => array(),
|
26 |
'hide_menus' => 'no',
|
|
|
27 |
)
|
28 |
);
|
29 |
|
@@ -129,6 +130,19 @@ function wppb_private_website_content() {
|
|
129 |
</td>
|
130 |
</tr>
|
131 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
</tbody>
|
133 |
</table>
|
134 |
|
24 |
'redirect_to' => '',
|
25 |
'allowed_pages' => array(),
|
26 |
'hide_menus' => 'no',
|
27 |
+
'disable_rest_api' => 'yes',
|
28 |
)
|
29 |
);
|
30 |
|
130 |
</td>
|
131 |
</tr>
|
132 |
|
133 |
+
<tr>
|
134 |
+
<th><?php _e( 'Disable REST-API', 'profile-builder' ); ?></th>
|
135 |
+
<td>
|
136 |
+
<select id="private-website-disable-rest-api" class="wppb-select" name="wppb_private_website_settings[disable_rest_api]">
|
137 |
+
<option value="yes" <?php selected ( ( $wppb_private_website_settings != 'not_found' && ( !isset( $wppb_private_website_settings[ 'disable_rest_api' ] ) || ( isset( $wppb_private_website_settings[ 'disable_rest_api' ] ) && $wppb_private_website_settings[ 'disable_rest_api' ] == 'yes' ) ) ), true ); ?>><?php _e( 'Yes', 'profile-builder' ); ?></option>
|
138 |
+
<option value="no" <?php selected ( ( $wppb_private_website_settings != 'not_found' && isset( $wppb_private_website_settings[ 'disable_rest_api' ] ) && $wppb_private_website_settings[ 'disable_rest_api' ] == 'no' ), true ); ?>><?php _e( 'No', 'profile-builder' ); ?></option>
|
139 |
+
</select>
|
140 |
+
<ul>
|
141 |
+
<li class="description"><?php _e( 'Disable the WordPress REST-API for non-logged in users when Private Website is enabled', 'profile-builder' ); ?></li>
|
142 |
+
</ul>
|
143 |
+
</td>
|
144 |
+
</tr>
|
145 |
+
|
146 |
</tbody>
|
147 |
</table>
|
148 |
|
assets/js/jquery-pb-sitewide.js
CHANGED
@@ -155,11 +155,13 @@ jQuery( function() {
|
|
155 |
jQuery('#private-website-redirect-to-login').closest('tr').addClass("wppb-disabled");
|
156 |
jQuery('#private-website-allowed-pages').closest('tr').addClass("wppb-disabled");
|
157 |
jQuery('#private-website-menu-hide').addClass("wppb-disabled");
|
|
|
158 |
}
|
159 |
else if (value == 'yes') {
|
160 |
jQuery('#private-website-redirect-to-login').closest('tr').removeClass("wppb-disabled");
|
161 |
jQuery('#private-website-allowed-pages').closest('tr').removeClass("wppb-disabled");
|
162 |
jQuery('#private-website-menu-hide').removeClass("wppb-disabled");
|
|
|
163 |
}
|
164 |
}
|
165 |
}
|
155 |
jQuery('#private-website-redirect-to-login').closest('tr').addClass("wppb-disabled");
|
156 |
jQuery('#private-website-allowed-pages').closest('tr').addClass("wppb-disabled");
|
157 |
jQuery('#private-website-menu-hide').addClass("wppb-disabled");
|
158 |
+
jQuery('#private-website-disable-rest-api').addClass("wppb-disabled");
|
159 |
}
|
160 |
else if (value == 'yes') {
|
161 |
jQuery('#private-website-redirect-to-login').closest('tr').removeClass("wppb-disabled");
|
162 |
jQuery('#private-website-allowed-pages').closest('tr').removeClass("wppb-disabled");
|
163 |
jQuery('#private-website-menu-hide').removeClass("wppb-disabled");
|
164 |
+
jQuery('#private-website-disable-rest-api').removeClass("wppb-disabled");
|
165 |
}
|
166 |
}
|
167 |
}
|
features/content-restriction/assets/js/content-restriction.js
CHANGED
@@ -26,7 +26,7 @@ jQuery( function(){
|
|
26 |
|
27 |
|
28 |
/* Disable / Enable the user roles from the "Display for" field if the "Logged in Users" option is checked or not */
|
29 |
-
jQuery( document ).on( '
|
30 |
wppb_disable_enable_user_roles( jQuery( this ) );
|
31 |
} );
|
32 |
|
26 |
|
27 |
|
28 |
/* Disable / Enable the user roles from the "Display for" field if the "Logged in Users" option is checked or not */
|
29 |
+
jQuery( document ).on( 'click', 'input[name="wppb-content-restrict-user-status"]', function() {
|
30 |
wppb_disable_enable_user_roles( jQuery( this ) );
|
31 |
} );
|
32 |
|
features/functions.php
CHANGED
@@ -695,7 +695,7 @@ function wppb_password_strength_description() {
|
|
695 |
|
696 |
if( ! empty( $wppb_generalSettings['minimum_password_strength'] ) ) {
|
697 |
$password_strength_text = array( 'short' => __( 'Very Weak', 'profile-builder' ), 'bad' => __( 'Weak', 'profile-builder' ), 'good' => __( 'Medium', 'profile-builder' ), 'strong' => __( 'Strong', 'profile-builder' ) );
|
698 |
-
$password_strength_description = '<br>'. sprintf( __( 'The password must have a minimum strength of %s
|
699 |
|
700 |
return $password_strength_description;
|
701 |
} else {
|
@@ -838,14 +838,19 @@ function wppb_remove_query_arg( $key, $url = false ){
|
|
838 |
$striped_url = remove_query_arg( $key, $url);
|
839 |
|
840 |
//treat page key on frontpage case where it is transformed into a pretty permalink
|
841 |
-
if( ( is_array($key) && in_array('
|
842 |
-
$striped_url = preg_replace( '/\/
|
843 |
-
$striped_url = preg_replace( '/\/
|
844 |
}
|
845 |
|
846 |
return $striped_url;
|
847 |
}
|
848 |
|
|
|
|
|
|
|
|
|
|
|
849 |
/* Filter the "Save Changes" button text, to make it translatable */
|
850 |
function wppb_change_save_changes_button($value){
|
851 |
$value = __('Save Changes','profile-builder');
|
@@ -1243,10 +1248,10 @@ function wppb_private_website_functionality(){
|
|
1243 |
else
|
1244 |
$post_id = $post->ID;
|
1245 |
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
|
1251 |
}
|
1252 |
}
|
@@ -1303,6 +1308,9 @@ function wppb_disable_rest( $bool ){
|
|
1303 |
$wppb_private_website_settings = get_option( 'wppb_private_website_settings', 'not_found' );
|
1304 |
if( $wppb_private_website_settings != 'not_found' ) {
|
1305 |
if ($wppb_private_website_settings['private_website'] == 'yes') {
|
|
|
|
|
|
|
1306 |
if (!is_user_logged_in()) {
|
1307 |
return false;
|
1308 |
}
|
@@ -1312,7 +1320,7 @@ function wppb_disable_rest( $bool ){
|
|
1312 |
}
|
1313 |
|
1314 |
/* I should test this to not create any problems */
|
1315 |
-
|
1316 |
function wppb_disable_rest_api_authentication($result) {
|
1317 |
if (!empty($result)) {
|
1318 |
return $result;
|
@@ -1321,6 +1329,9 @@ function wppb_disable_rest_api_authentication($result) {
|
|
1321 |
$wppb_private_website_settings = get_option( 'wppb_private_website_settings', 'not_found' );
|
1322 |
if( $wppb_private_website_settings != 'not_found' ) {
|
1323 |
if ($wppb_private_website_settings['private_website'] == 'yes') {
|
|
|
|
|
|
|
1324 |
if (!is_user_logged_in() && $_SERVER['REQUEST_URI'] !== "/wp-json/jwt-auth/v1/token" && $_SERVER['REQUEST_URI'] !== "/wp-json/jwt-auth/v1/token/validate") {
|
1325 |
return new WP_Error('rest_not_logged_in', __( 'You are not currently logged in.', 'profile-builder' ), array('status' => 401));
|
1326 |
}
|
@@ -1330,7 +1341,6 @@ function wppb_disable_rest_api_authentication($result) {
|
|
1330 |
return $result;
|
1331 |
}
|
1332 |
|
1333 |
-
|
1334 |
/**
|
1335 |
* We can hide all menu items
|
1336 |
*/
|
695 |
|
696 |
if( ! empty( $wppb_generalSettings['minimum_password_strength'] ) ) {
|
697 |
$password_strength_text = array( 'short' => __( 'Very Weak', 'profile-builder' ), 'bad' => __( 'Weak', 'profile-builder' ), 'good' => __( 'Medium', 'profile-builder' ), 'strong' => __( 'Strong', 'profile-builder' ) );
|
698 |
+
$password_strength_description = '<br>'. sprintf( __( 'The password must have a minimum strength of %s', 'profile-builder' ), $password_strength_text[$wppb_generalSettings['minimum_password_strength']] );
|
699 |
|
700 |
return $password_strength_description;
|
701 |
} else {
|
838 |
$striped_url = remove_query_arg( $key, $url);
|
839 |
|
840 |
//treat page key on frontpage case where it is transformed into a pretty permalink
|
841 |
+
if( ( is_array($key) && in_array('wppb_page', $key) ) || ( !is_array($key) && 'wppb_page' === $key ) ){
|
842 |
+
$striped_url = preg_replace( '/\/'.wppb_get_users_pagination_slug().'\/\d+\//', '/', $striped_url );
|
843 |
+
$striped_url = preg_replace( '/\/'.wppb_get_users_pagination_slug().'\//', '/', $striped_url );
|
844 |
}
|
845 |
|
846 |
return $striped_url;
|
847 |
}
|
848 |
|
849 |
+
//function that generates tha pagination slug for userlisting
|
850 |
+
function wppb_get_users_pagination_slug(){
|
851 |
+
return apply_filters('wppb_users_pagination_slug', 'users-page');
|
852 |
+
}
|
853 |
+
|
854 |
/* Filter the "Save Changes" button text, to make it translatable */
|
855 |
function wppb_change_save_changes_button($value){
|
856 |
$value = __('Save Changes','profile-builder');
|
1248 |
else
|
1249 |
$post_id = $post->ID;
|
1250 |
|
1251 |
+
if( ( !in_array( $post_id, $allowed_pages ) && $redirect_url !== strtok( wppb_curpageurl(), '?' ) ) || is_search() ){
|
1252 |
+
wp_safe_redirect( $redirect_url );
|
1253 |
+
exit;
|
1254 |
+
}
|
1255 |
|
1256 |
}
|
1257 |
}
|
1308 |
$wppb_private_website_settings = get_option( 'wppb_private_website_settings', 'not_found' );
|
1309 |
if( $wppb_private_website_settings != 'not_found' ) {
|
1310 |
if ($wppb_private_website_settings['private_website'] == 'yes') {
|
1311 |
+
if ( isset( $wppb_private_website_settings[ 'disable_rest_api' ] ) && $wppb_private_website_settings[ 'disable_rest_api' ] == 'no' ) {
|
1312 |
+
return $bool;
|
1313 |
+
}
|
1314 |
if (!is_user_logged_in()) {
|
1315 |
return false;
|
1316 |
}
|
1320 |
}
|
1321 |
|
1322 |
/* I should test this to not create any problems */
|
1323 |
+
add_filter('rest_authentication_errors', 'wppb_disable_rest_api_authentication', 10, 1 );
|
1324 |
function wppb_disable_rest_api_authentication($result) {
|
1325 |
if (!empty($result)) {
|
1326 |
return $result;
|
1329 |
$wppb_private_website_settings = get_option( 'wppb_private_website_settings', 'not_found' );
|
1330 |
if( $wppb_private_website_settings != 'not_found' ) {
|
1331 |
if ($wppb_private_website_settings['private_website'] == 'yes') {
|
1332 |
+
if ( isset( $wppb_private_website_settings[ 'disable_rest_api' ] ) && $wppb_private_website_settings[ 'disable_rest_api' ] == 'no' ) {
|
1333 |
+
return $result;
|
1334 |
+
}
|
1335 |
if (!is_user_logged_in() && $_SERVER['REQUEST_URI'] !== "/wp-json/jwt-auth/v1/token" && $_SERVER['REQUEST_URI'] !== "/wp-json/jwt-auth/v1/token/validate") {
|
1336 |
return new WP_Error('rest_not_logged_in', __( 'You are not currently logged in.', 'profile-builder' ), array('status' => 401));
|
1337 |
}
|
1341 |
return $result;
|
1342 |
}
|
1343 |
|
|
|
1344 |
/**
|
1345 |
* We can hide all menu items
|
1346 |
*/
|
front-end/class-formbuilder.php
CHANGED
@@ -274,6 +274,8 @@ class Profile_Builder_Form_Creator{
|
|
274 |
return;
|
275 |
}
|
276 |
|
|
|
|
|
277 |
$field_check_errors = $this->wppb_test_required_form_values( $_REQUEST );
|
278 |
if( empty( $field_check_errors ) ) {
|
279 |
|
274 |
return;
|
275 |
}
|
276 |
|
277 |
+
$_REQUEST = apply_filters( 'wppb_filter_form_request_data', $_REQUEST, $this->args );
|
278 |
+
|
279 |
$field_check_errors = $this->wppb_test_required_form_values( $_REQUEST );
|
280 |
if( empty( $field_check_errors ) ) {
|
281 |
|
front-end/edit-profile.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
add_action( 'init', 'wppb_autologin_after_password_changed' );
|
10 |
function wppb_autologin_after_password_changed(){
|
11 |
if( isset( $_POST['action'] ) && $_POST['action'] == 'edit_profile' ){
|
12 |
-
if( isset( $_POST['passw1'] ) && !empty( $_POST['passw1'] ) && !empty( $_POST['form_name'] ) ){
|
13 |
|
14 |
/* all the error checking filters are defined in each field file so we need them here */
|
15 |
if ( file_exists ( WPPB_PLUGIN_DIR.'/front-end/default-fields/default-fields.php' ) )
|
9 |
add_action( 'init', 'wppb_autologin_after_password_changed' );
|
10 |
function wppb_autologin_after_password_changed(){
|
11 |
if( isset( $_POST['action'] ) && $_POST['action'] == 'edit_profile' ){
|
12 |
+
if( isset( $_POST['passw1'] ) && !empty( $_POST['passw1'] ) && !empty( $_POST['form_name'] ) && isset( $_POST['edit_profile_'. $_POST['form_name'] .'_nonce_field'] ) && wp_verify_nonce( $_POST['edit_profile_'. $_POST['form_name'] .'_nonce_field'], 'wppb_verify_form_submission' ) ){
|
13 |
|
14 |
/* all the error checking filters are defined in each field file so we need them here */
|
15 |
if ( file_exists ( WPPB_PLUGIN_DIR.'/front-end/default-fields/default-fields.php' ) )
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
-
Version: 3.2.
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
@@ -63,7 +63,7 @@ function wppb_free_plugin_init() {
|
|
63 |
*
|
64 |
*
|
65 |
*/
|
66 |
-
define('PROFILE_BUILDER_VERSION', '3.2.
|
67 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
68 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
69 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
+
Version: 3.2.5
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
63 |
*
|
64 |
*
|
65 |
*/
|
66 |
+
define('PROFILE_BUILDER_VERSION', '3.2.5' );
|
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
@@ -3,8 +3,8 @@ Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungurea
|
|
3 |
Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
|
5 |
Requires at least: 3.1
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 3.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -169,6 +169,20 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
169 |
12. Role Editor
|
170 |
|
171 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
= 3.2.2 =
|
173 |
* We now restrict comments as well
|
174 |
* Fixed a error message when both login fields were empty
|
3 |
Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
|
5 |
Requires at least: 3.1
|
6 |
+
Tested up to: 5.5
|
7 |
+
Stable tag: 3.2.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
169 |
12. Role Editor
|
170 |
|
171 |
== Changelog ==
|
172 |
+
= 3.2.5 =
|
173 |
+
* Removed a deprecated jQuery event from our code
|
174 |
+
* Added a filter for form request data
|
175 |
+
* Fixed Private Website not properly restricting json api, and added a setting for it
|
176 |
+
* Fixed password strength message translation
|
177 |
+
* Fixed a security issue regarding a nonce field
|
178 |
+
* Fixed Private Site not excluding search results
|
179 |
+
|
180 |
+
= 3.2.4 =
|
181 |
+
* Skipped this version to synchronize with the PRO version
|
182 |
+
|
183 |
+
= 3.2.3 =
|
184 |
+
* Skipped this version to synchronize with the PRO version
|
185 |
+
|
186 |
= 3.2.2 =
|
187 |
* We now restrict comments as well
|
188 |
* Fixed a error message when both login fields were empty
|
translation/profile-builder.catalog.php
CHANGED
@@ -1074,6 +1074,8 @@
|
|
1074 |
<?php __("Hide all Menus", "profile-builder"); ?>
|
1075 |
<?php __("Hide all menu items if you are not logged in.", "profile-builder"); ?>
|
1076 |
<?php __("We recommend \"<a href=\"%s\" target=\"_blank\">Custom Profile Menus</a>\" addon if you need different menu items for logged in / logged out users.", "profile-builder"); ?>
|
|
|
|
|
1077 |
<?php __("Save Changes", "profile-builder"); ?>
|
1078 |
<?php __("Profile Builder Register", "profile-builder"); ?>
|
1079 |
<?php __("Register Your Version", "profile-builder"); ?>
|
@@ -1099,7 +1101,7 @@
|
|
1099 |
<?php __("Strength indicator", "profile-builder"); ?>
|
1100 |
<?php __("Very Weak", "profile-builder"); ?>
|
1101 |
<?php __("Minimum length of %d characters.", "profile-builder"); ?>
|
1102 |
-
<?php __("The password must have a minimum strength of %s
|
1103 |
<?php __("This field is required", "profile-builder"); ?>
|
1104 |
<?php __("Please enter a (valid) reCAPTCHA value", "profile-builder"); ?>
|
1105 |
<?php __("Incorrect phone number", "profile-builder"); ?>
|
@@ -1159,7 +1161,6 @@
|
|
1159 |
<?php __("The password must not be empty!", "profile-builder"); ?>
|
1160 |
<?php __("The entered passwords don't match!", "profile-builder"); ?>
|
1161 |
<?php __("The password must have the minimum length of %s characters", "profile-builder"); ?>
|
1162 |
-
<?php __("The password must have a minimum strength of %s", "profile-builder"); ?>
|
1163 |
<?php __("Your password has been successfully changed!", "profile-builder"); ?>
|
1164 |
<?php __("The username entered wasn't found in the database!", "profile-builder"); ?>
|
1165 |
<?php __("Please check that you entered the correct username.", "profile-builder"); ?>
|
@@ -1476,7 +1477,7 @@
|
|
1476 |
<?php __("Default Registration & Registration with Email Confirmation", "profile-builder"); ?>
|
1477 |
<?php __("<p>New subscriber on {{site_name}}.</p>\n<p>Username:{{username}}</p>\n<p>E-mail:{{user_email}}</p>\n<p>The Admin Approval feature was activated at the time of registration,\nso please remember that you need to approve this user before he/she can log in!</p>", "profile-builder"); ?>
|
1478 |
<?php __("Registration with Admin Approval", "profile-builder"); ?>
|
1479 |
-
<?php __("<p>{{username}} has requested a password change via the password reset feature.</p>\n
|
1480 |
<?php __("Admin Notification for User Password Reset", "profile-builder"); ?>
|
1481 |
<?php __("<p>The user {{username}} has updated their profile and some of the fields require admin approval:</p>\n<br>\n{{modified_fields}}\n<br>\n<p>Access this link to approve changes: {{approval_url}}</p>\n", "profile-builder"); ?>
|
1482 |
<?php __("[{{site_name}}] A user has updated their profile. Some fields need approval", "profile-builder"); ?>
|
@@ -1505,11 +1506,11 @@
|
|
1505 |
<?php __("User Email Customizer", "profile-builder"); ?>
|
1506 |
<?php __("User Email Customizer Settings", "profile-builder"); ?>
|
1507 |
<?php __("These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save.", "profile-builder"); ?>
|
1508 |
-
<?php __("<h3>Welcome to {{site_name}}!</h3>\n<p>Your username is: {{username}}
|
1509 |
<?php __("<p>To activate your user, please click the following link:<br/>\n{{{activation_link}}}</p>\n<p>After you activate, you will receive another email with your credentials.</p>\n", "profile-builder"); ?>
|
1510 |
<?php __("[{{site_name}}] Activate {{username}}", "profile-builder"); ?>
|
1511 |
<?php __("Registration with Email Confirmation", "profile-builder"); ?>
|
1512 |
-
<?php __("<h3>Welcome to {{site_name}}!</h3>\n<p>Your username is: {{username}}
|
1513 |
<?php __("A new account has been created for you on {{site_name}}", "profile-builder"); ?>
|
1514 |
<?php __("<h3>Good News!</h3>\n<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n", "profile-builder"); ?>
|
1515 |
<?php __("Your account on {{site_name}} has been approved!", "profile-builder"); ?>
|
1074 |
<?php __("Hide all Menus", "profile-builder"); ?>
|
1075 |
<?php __("Hide all menu items if you are not logged in.", "profile-builder"); ?>
|
1076 |
<?php __("We recommend \"<a href=\"%s\" target=\"_blank\">Custom Profile Menus</a>\" addon if you need different menu items for logged in / logged out users.", "profile-builder"); ?>
|
1077 |
+
<?php __("Disable REST-API", "profile-builder"); ?>
|
1078 |
+
<?php __("Disable the WordPress REST-API for non-logged in users when Private Website is enabled", "profile-builder"); ?>
|
1079 |
<?php __("Save Changes", "profile-builder"); ?>
|
1080 |
<?php __("Profile Builder Register", "profile-builder"); ?>
|
1081 |
<?php __("Register Your Version", "profile-builder"); ?>
|
1101 |
<?php __("Strength indicator", "profile-builder"); ?>
|
1102 |
<?php __("Very Weak", "profile-builder"); ?>
|
1103 |
<?php __("Minimum length of %d characters.", "profile-builder"); ?>
|
1104 |
+
<?php __("The password must have a minimum strength of %s", "profile-builder"); ?>
|
1105 |
<?php __("This field is required", "profile-builder"); ?>
|
1106 |
<?php __("Please enter a (valid) reCAPTCHA value", "profile-builder"); ?>
|
1107 |
<?php __("Incorrect phone number", "profile-builder"); ?>
|
1161 |
<?php __("The password must not be empty!", "profile-builder"); ?>
|
1162 |
<?php __("The entered passwords don't match!", "profile-builder"); ?>
|
1163 |
<?php __("The password must have the minimum length of %s characters", "profile-builder"); ?>
|
|
|
1164 |
<?php __("Your password has been successfully changed!", "profile-builder"); ?>
|
1165 |
<?php __("The username entered wasn't found in the database!", "profile-builder"); ?>
|
1166 |
<?php __("Please check that you entered the correct username.", "profile-builder"); ?>
|
1477 |
<?php __("Default Registration & Registration with Email Confirmation", "profile-builder"); ?>
|
1478 |
<?php __("<p>New subscriber on {{site_name}}.</p>\n<p>Username:{{username}}</p>\n<p>E-mail:{{user_email}}</p>\n<p>The Admin Approval feature was activated at the time of registration,\nso please remember that you need to approve this user before he/she can log in!</p>", "profile-builder"); ?>
|
1479 |
<?php __("Registration with Admin Approval", "profile-builder"); ?>
|
1480 |
+
<?php __("<p>{{username}} has requested a password change via the password reset feature.</p>\n", "profile-builder"); ?>
|
1481 |
<?php __("Admin Notification for User Password Reset", "profile-builder"); ?>
|
1482 |
<?php __("<p>The user {{username}} has updated their profile and some of the fields require admin approval:</p>\n<br>\n{{modified_fields}}\n<br>\n<p>Access this link to approve changes: {{approval_url}}</p>\n", "profile-builder"); ?>
|
1483 |
<?php __("[{{site_name}}] A user has updated their profile. Some fields need approval", "profile-builder"); ?>
|
1506 |
<?php __("User Email Customizer", "profile-builder"); ?>
|
1507 |
<?php __("User Email Customizer Settings", "profile-builder"); ?>
|
1508 |
<?php __("These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save.", "profile-builder"); ?>
|
1509 |
+
<?php __("<h3>Welcome to {{site_name}}!</h3>\n<p>Your username is: {{username}}</p>\n", "profile-builder"); ?>
|
1510 |
<?php __("<p>To activate your user, please click the following link:<br/>\n{{{activation_link}}}</p>\n<p>After you activate, you will receive another email with your credentials.</p>\n", "profile-builder"); ?>
|
1511 |
<?php __("[{{site_name}}] Activate {{username}}", "profile-builder"); ?>
|
1512 |
<?php __("Registration with Email Confirmation", "profile-builder"); ?>
|
1513 |
+
<?php __("<h3>Welcome to {{site_name}}!</h3>\n<p>Your username is: {{username}}</p>\n<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n", "profile-builder"); ?>
|
1514 |
<?php __("A new account has been created for you on {{site_name}}", "profile-builder"); ?>
|
1515 |
<?php __("<h3>Good News!</h3>\n<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n", "profile-builder"); ?>
|
1516 |
<?php __("Your account on {{site_name}} has been approved!", "profile-builder"); ?>
|
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:311, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, front-end/class-formbuilder.php:
|
373 |
msgid "Register"
|
374 |
msgstr ""
|
375 |
|
@@ -453,11 +453,11 @@ msgstr ""
|
|
453 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: ../pb-add-on-field-visibility/index.php:239, ../pb-add-on-labels-edit/pble.php:381, admin/manage-fields.php:1318, features/functions.php:
|
457 |
msgid "Edit"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ../pb-add-on-field-visibility/index.php:239, admin/manage-fields.php:1318, features/functions.php:
|
461 |
msgid "Delete"
|
462 |
msgstr ""
|
463 |
|
@@ -683,11 +683,11 @@ msgstr ""
|
|
683 |
msgid "Replace labels with placeholders:"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:324, admin/general-settings.php:113, admin/general-settings.php:126, admin/general-settings.php:175, admin/general-settings.php:222, admin/general-settings.php:296, admin/private-website.php:
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: ../pb-add-on-placeholder-labels/pbpl.php:172, ../pb-add-on-social-connect/index.php:325, admin/general-settings.php:127, admin/general-settings.php:176, admin/general-settings.php:221, admin/general-settings.php:295, admin/private-website.php:
|
691 |
msgid "No"
|
692 |
msgstr ""
|
693 |
|
@@ -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 |
|
@@ -1123,7 +1123,7 @@ msgstr ""
|
|
1123 |
msgid "Communication Preferences"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29, ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:9, admin/manage-fields.php:324, front-end/recover.php:116, ../pb-add-on-customization-toolbox/includes/shortcodes/resend-activation.php:9, features/admin-approval/class-admin-approval.php:169, features/email-confirmation/class-email-confirmation.php:169, modules/user-listing/userlisting.php:
|
1127 |
msgid "E-mail"
|
1128 |
msgstr ""
|
1129 |
|
@@ -1227,7 +1227,7 @@ msgstr ""
|
|
1227 |
msgid "Edit this item"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:
|
1231 |
msgid "Cancel"
|
1232 |
msgstr ""
|
1233 |
|
@@ -1543,7 +1543,7 @@ msgstr ""
|
|
1543 |
msgid "Available with All Versions"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: admin/add-ons.php:330, front-end/class-formbuilder.php:
|
1547 |
msgid "Update"
|
1548 |
msgstr ""
|
1549 |
|
@@ -1603,7 +1603,7 @@ msgstr ""
|
|
1603 |
msgid "Show"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: admin/admin-bar.php:80, modules/user-listing/userlisting.php:
|
1607 |
msgid "Hide"
|
1608 |
msgstr ""
|
1609 |
|
@@ -2111,11 +2111,11 @@ msgstr ""
|
|
2111 |
msgid "Username and Email"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: admin/general-settings.php:251, admin/manage-fields.php:318, front-end/login.php:246, front-end/login.php:260, front-end/login.php:391, ../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:
|
2115 |
msgid "Username"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: admin/general-settings.php:252, front-end/login.php:388, modules/email-customizer/email-customizer.php:29, modules/user-listing/userlisting.php:
|
2119 |
msgid "Email"
|
2120 |
msgstr ""
|
2121 |
|
@@ -2607,7 +2607,7 @@ msgstr ""
|
|
2607 |
msgid "Usernames cannot be changed."
|
2608 |
msgstr ""
|
2609 |
|
2610 |
-
#: admin/manage-fields.php:321, modules/user-listing/userlisting.php:
|
2611 |
msgid "Nickname"
|
2612 |
msgstr ""
|
2613 |
|
@@ -2615,7 +2615,7 @@ msgstr ""
|
|
2615 |
msgid "Display name publicly as"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
-
#: admin/manage-fields.php:325, modules/email-customizer/email-customizer.php:33, modules/user-listing/userlisting.php:
|
2619 |
msgid "Website"
|
2620 |
msgstr ""
|
2621 |
|
@@ -2631,7 +2631,7 @@ msgstr ""
|
|
2631 |
msgid "Jabber / Google Talk"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
-
#: admin/manage-fields.php:335, modules/user-listing/userlisting.php:
|
2635 |
msgid "Biographical Info"
|
2636 |
msgstr ""
|
2637 |
|
@@ -4307,55 +4307,63 @@ msgstr ""
|
|
4307 |
msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
-
#: admin/private-website.php:
|
4311 |
msgid "Private Website Settings"
|
4312 |
msgstr ""
|
4313 |
|
4314 |
-
#: admin/private-website.php:
|
4315 |
msgid "Enable Private Website"
|
4316 |
msgstr ""
|
4317 |
|
4318 |
-
#: admin/private-website.php:
|
4319 |
msgid "Activate Private Website. It will restrict the content, RSS and REST API for your website"
|
4320 |
msgstr ""
|
4321 |
|
4322 |
-
#: admin/private-website.php:
|
4323 |
msgid "Redirect to"
|
4324 |
msgstr ""
|
4325 |
|
4326 |
-
#: admin/private-website.php:
|
4327 |
msgid "Default WordPress login page"
|
4328 |
msgstr ""
|
4329 |
|
4330 |
-
#: admin/private-website.php:
|
4331 |
msgid "Redirects to this page if not logged in. We recommend this page contains the [wppb-login] shortcode."
|
4332 |
msgstr ""
|
4333 |
|
4334 |
-
#: admin/private-website.php:
|
4335 |
msgid "You can force access to wp-login.php so you don't get locked out of the site by accessing the link:"
|
4336 |
msgstr ""
|
4337 |
|
4338 |
-
#: admin/private-website.php:
|
4339 |
msgid "Allowed Pages"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
-
#: admin/private-website.php:
|
4343 |
msgid "Allow these pages to be accessed even if you are not logged in"
|
4344 |
msgstr ""
|
4345 |
|
4346 |
-
#: admin/private-website.php:
|
4347 |
msgid "Hide all Menus"
|
4348 |
msgstr ""
|
4349 |
|
4350 |
-
#: admin/private-website.php:
|
4351 |
msgid "Hide all menu items if you are not logged in."
|
4352 |
msgstr ""
|
4353 |
|
4354 |
-
#: admin/private-website.php:
|
4355 |
msgid "We recommend \"<a href=\"%s\" target=\"_blank\">Custom Profile Menus</a>\" addon if you need different menu items for logged in / logged out users."
|
4356 |
msgstr ""
|
4357 |
|
4358 |
-
#: admin/private-website.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4359 |
msgid "Save Changes"
|
4360 |
msgstr ""
|
4361 |
|
@@ -4455,8 +4463,8 @@ msgstr ""
|
|
4455 |
msgid "Minimum length of %d characters."
|
4456 |
msgstr ""
|
4457 |
|
4458 |
-
#: features/functions.php:698
|
4459 |
-
msgid "The password must have a minimum strength of %s
|
4460 |
msgstr ""
|
4461 |
|
4462 |
#: features/functions.php:775
|
@@ -4471,27 +4479,27 @@ msgstr ""
|
|
4471 |
msgid "Incorrect phone number"
|
4472 |
msgstr ""
|
4473 |
|
4474 |
-
#: features/functions.php:
|
4475 |
msgid "Content"
|
4476 |
msgstr ""
|
4477 |
|
4478 |
-
#: features/functions.php:
|
4479 |
msgid "<br><br>Also, you will be able to visit your site at "
|
4480 |
msgstr ""
|
4481 |
|
4482 |
-
#: features/functions.php:
|
4483 |
msgid "<br><br>You can visit your site at "
|
4484 |
msgstr ""
|
4485 |
|
4486 |
-
#: features/functions.php:
|
4487 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4488 |
msgstr ""
|
4489 |
|
4490 |
-
#: features/functions.php:
|
4491 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
-
#: features/functions.php:
|
4495 |
msgid "You are not currently logged in."
|
4496 |
msgstr ""
|
4497 |
|
@@ -4531,47 +4539,47 @@ msgstr ""
|
|
4531 |
msgid "You are not allowed to do this."
|
4532 |
msgstr ""
|
4533 |
|
4534 |
-
#: front-end/class-formbuilder.php:
|
4535 |
msgid "There was an error in the submitted form"
|
4536 |
msgstr ""
|
4537 |
|
4538 |
-
#: front-end/class-formbuilder.php:
|
4539 |
msgid "Your profile has been successfully updated!"
|
4540 |
msgstr ""
|
4541 |
|
4542 |
-
#: front-end/class-formbuilder.php:
|
4543 |
msgid "The account %1s has been successfully created!"
|
4544 |
msgstr ""
|
4545 |
|
4546 |
-
#: front-end/class-formbuilder.php:
|
4547 |
msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
|
4548 |
msgstr ""
|
4549 |
|
4550 |
-
#: front-end/class-formbuilder.php:
|
4551 |
msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
|
4552 |
msgstr ""
|
4553 |
|
4554 |
-
#: front-end/class-formbuilder.php:
|
4555 |
msgid "Add User"
|
4556 |
msgstr ""
|
4557 |
|
4558 |
-
#: front-end/class-formbuilder.php:
|
4559 |
msgid "Send these credentials via email."
|
4560 |
msgstr ""
|
4561 |
|
4562 |
-
#: front-end/class-formbuilder.php:
|
4563 |
msgid "There are no other users to edit"
|
4564 |
msgstr ""
|
4565 |
|
4566 |
-
#: front-end/class-formbuilder.php:
|
4567 |
msgid "User to edit:"
|
4568 |
msgstr ""
|
4569 |
|
4570 |
-
#: front-end/class-formbuilder.php:
|
4571 |
msgid "Select User"
|
4572 |
msgstr ""
|
4573 |
|
4574 |
-
#: front-end/class-formbuilder.php:
|
4575 |
msgid "Something went wrong. Please try again!"
|
4576 |
msgstr ""
|
4577 |
|
@@ -4695,10 +4703,6 @@ msgstr ""
|
|
4695 |
msgid "The password must have the minimum length of %s characters"
|
4696 |
msgstr ""
|
4697 |
|
4698 |
-
#: front-end/recover.php:343, front-end/default-fields/password/password.php:54
|
4699 |
-
msgid "The password must have a minimum strength of %s"
|
4700 |
-
msgstr ""
|
4701 |
-
|
4702 |
#: front-end/recover.php:350
|
4703 |
msgid "Your password has been successfully changed!"
|
4704 |
msgstr ""
|
@@ -5263,15 +5267,15 @@ msgstr ""
|
|
5263 |
msgid "Unapprove"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
-
#: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:
|
5267 |
msgid "Firstname"
|
5268 |
msgstr ""
|
5269 |
|
5270 |
-
#: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:
|
5271 |
msgid "Lastname"
|
5272 |
msgstr ""
|
5273 |
|
5274 |
-
#: features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:255, modules/user-listing/userlisting.php:
|
5275 |
msgid "Role"
|
5276 |
msgstr ""
|
5277 |
|
@@ -5595,7 +5599,7 @@ msgstr ""
|
|
5595 |
msgid "[%1$s] Your new account information"
|
5596 |
msgstr ""
|
5597 |
|
5598 |
-
#: features/email-confirmation/email-confirmation.php:582, modules/email-customizer/email-customizer.php:
|
5599 |
msgid "Your selected password at signup"
|
5600 |
msgstr ""
|
5601 |
|
@@ -5707,7 +5711,7 @@ msgstr ""
|
|
5707 |
msgid "Role Name"
|
5708 |
msgstr ""
|
5709 |
|
5710 |
-
#: features/roles-editor/roles-editor.php:365, modules/user-listing/userlisting.php:
|
5711 |
msgid "Role Slug"
|
5712 |
msgstr ""
|
5713 |
|
@@ -5947,11 +5951,11 @@ msgid ""
|
|
5947 |
""
|
5948 |
msgstr ""
|
5949 |
|
5950 |
-
#: modules/email-customizer/admin-email-customizer.php:80, modules/email-customizer/admin-email-customizer.php:111, modules/email-customizer/admin-email-customizer.php:142, modules/email-customizer/admin-email-customizer.php:
|
5951 |
msgid "Email Subject"
|
5952 |
msgstr ""
|
5953 |
|
5954 |
-
#: modules/email-customizer/admin-email-customizer.php:87, modules/email-customizer/admin-email-customizer.php:118, modules/email-customizer/admin-email-customizer.php:149, modules/email-customizer/admin-email-customizer.php:
|
5955 |
msgid "Enable email"
|
5956 |
msgstr ""
|
5957 |
|
@@ -5975,7 +5979,6 @@ msgstr ""
|
|
5975 |
#: modules/email-customizer/admin-email-customizer.php:136
|
5976 |
msgid ""
|
5977 |
"<p>{{username}} has requested a password change via the password reset feature.</p>\n"
|
5978 |
-
"<p>His/her new password is: {{password}}</p>\n"
|
5979 |
""
|
5980 |
msgstr ""
|
5981 |
|
@@ -5983,7 +5986,7 @@ msgstr ""
|
|
5983 |
msgid "Admin Notification for User Password Reset"
|
5984 |
msgstr ""
|
5985 |
|
5986 |
-
#: modules/email-customizer/admin-email-customizer.php:
|
5987 |
msgid ""
|
5988 |
"<p>The user {{username}} has updated their profile and some of the fields require admin approval:</p>\n"
|
5989 |
"<br>\n"
|
@@ -5993,11 +5996,11 @@ msgid ""
|
|
5993 |
""
|
5994 |
msgstr ""
|
5995 |
|
5996 |
-
#: modules/email-customizer/admin-email-customizer.php:
|
5997 |
msgid "[{{site_name}}] A user has updated their profile. Some fields need approval"
|
5998 |
msgstr ""
|
5999 |
|
6000 |
-
#: modules/email-customizer/admin-email-customizer.php:
|
6001 |
msgid "Admin Notification for Edit Profile Approved by Admin"
|
6002 |
msgstr ""
|
6003 |
|
@@ -6005,7 +6008,7 @@ msgstr ""
|
|
6005 |
msgid "Available Tags"
|
6006 |
msgstr ""
|
6007 |
|
6008 |
-
#: modules/email-customizer/email-customizer.php:11, modules/user-listing/userlisting.php:
|
6009 |
msgid "User Fields Tags"
|
6010 |
msgstr ""
|
6011 |
|
@@ -6017,7 +6020,7 @@ msgstr ""
|
|
6017 |
msgid "Site Name"
|
6018 |
msgstr ""
|
6019 |
|
6020 |
-
#: modules/email-customizer/email-customizer.php:25, modules/user-listing/userlisting.php:
|
6021 |
msgid "User Id"
|
6022 |
msgstr ""
|
6023 |
|
@@ -6029,7 +6032,7 @@ msgstr ""
|
|
6029 |
msgid "Reply To"
|
6030 |
msgstr ""
|
6031 |
|
6032 |
-
#: modules/email-customizer/email-customizer.php:37, modules/user-listing/userlisting.php:
|
6033 |
msgid "Blog URL"
|
6034 |
msgstr ""
|
6035 |
|
@@ -6081,7 +6084,7 @@ msgstr ""
|
|
6081 |
msgid "Approval URL"
|
6082 |
msgstr ""
|
6083 |
|
6084 |
-
#: modules/email-customizer/email-customizer.php:
|
6085 |
msgid "The users selected password at signup"
|
6086 |
msgstr ""
|
6087 |
|
@@ -6100,7 +6103,7 @@ msgstr ""
|
|
6100 |
#: modules/email-customizer/user-email-customizer.php:79
|
6101 |
msgid ""
|
6102 |
"<h3>Welcome to {{site_name}}!</h3>\n"
|
6103 |
-
"<p>Your username is: {{username}}
|
6104 |
""
|
6105 |
msgstr ""
|
6106 |
|
@@ -6123,7 +6126,7 @@ msgstr ""
|
|
6123 |
#: modules/email-customizer/user-email-customizer.php:142
|
6124 |
msgid ""
|
6125 |
"<h3>Welcome to {{site_name}}!</h3>\n"
|
6126 |
-
"<p>Your username is: {{username}}
|
6127 |
"<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
|
6128 |
""
|
6129 |
msgstr ""
|
@@ -6213,7 +6216,7 @@ msgstr ""
|
|
6213 |
msgid "Changed Email Address Notification"
|
6214 |
msgstr ""
|
6215 |
|
6216 |
-
#: modules/email-customizer/user-email-customizer.php:
|
6217 |
msgid ""
|
6218 |
"<p>Your profile has been reviewed by an administrator:</p>\n"
|
6219 |
"<br>\n"
|
@@ -6222,11 +6225,11 @@ msgid ""
|
|
6222 |
""
|
6223 |
msgstr ""
|
6224 |
|
6225 |
-
#: modules/email-customizer/user-email-customizer.php:
|
6226 |
msgid "[{{site_name}}] Your profile has been reviewed by an administrator"
|
6227 |
msgstr ""
|
6228 |
|
6229 |
-
#: modules/email-customizer/user-email-customizer.php:
|
6230 |
msgid "User Notification for Edit Profile Approved by Admin"
|
6231 |
msgstr ""
|
6232 |
|
@@ -6270,27 +6273,27 @@ msgstr ""
|
|
6270 |
msgid "No Edit-profile Forms found in trash"
|
6271 |
msgstr ""
|
6272 |
|
6273 |
-
#: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:
|
6274 |
msgid "Shortcode"
|
6275 |
msgstr ""
|
6276 |
|
6277 |
-
#: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:
|
6278 |
msgid "(no title)"
|
6279 |
msgstr ""
|
6280 |
|
6281 |
-
#: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:
|
6282 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6283 |
msgstr ""
|
6284 |
|
6285 |
-
#: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:
|
6286 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6287 |
msgstr ""
|
6288 |
|
6289 |
-
#: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:
|
6290 |
msgid "The shortcode will be available after you publish this form."
|
6291 |
msgstr ""
|
6292 |
|
6293 |
-
#: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:
|
6294 |
msgid "Form Shortcode"
|
6295 |
msgstr ""
|
6296 |
|
@@ -6406,11 +6409,11 @@ msgstr ""
|
|
6406 |
msgid "Are you sure you want to delete this?"
|
6407 |
msgstr ""
|
6408 |
|
6409 |
-
#: modules/user-listing/one-map-listing.php:
|
6410 |
msgid "Please wait while the pins are loading..."
|
6411 |
msgstr ""
|
6412 |
|
6413 |
-
#: modules/user-listing/one-map-listing.php:
|
6414 |
msgid "The API Key was not provided."
|
6415 |
msgstr ""
|
6416 |
|
@@ -6442,371 +6445,371 @@ msgstr ""
|
|
6442 |
msgid "No User Listing found in trash"
|
6443 |
msgstr ""
|
6444 |
|
6445 |
-
#: modules/user-listing/userlisting.php:
|
6446 |
msgid "Display name as"
|
6447 |
msgstr ""
|
6448 |
|
6449 |
-
#: modules/user-listing/userlisting.php:
|
6450 |
msgid "Registration Date"
|
6451 |
msgstr ""
|
6452 |
|
6453 |
-
#: modules/user-listing/userlisting.php:
|
6454 |
msgid "Number of Posts"
|
6455 |
msgstr ""
|
6456 |
|
6457 |
-
#: modules/user-listing/userlisting.php:
|
6458 |
msgid "More Info"
|
6459 |
msgstr ""
|
6460 |
|
6461 |
-
#: modules/user-listing/userlisting.php:
|
6462 |
msgid "More Info Url"
|
6463 |
msgstr ""
|
6464 |
|
6465 |
-
#: modules/user-listing/userlisting.php:
|
6466 |
msgid "Avatar or Gravatar"
|
6467 |
msgstr ""
|
6468 |
|
6469 |
-
#: modules/user-listing/userlisting.php:
|
6470 |
msgid "User Nicename"
|
6471 |
msgstr ""
|
6472 |
|
6473 |
-
#: modules/user-listing/userlisting.php:
|
6474 |
msgid "Sort Tags"
|
6475 |
msgstr ""
|
6476 |
|
6477 |
-
#: modules/user-listing/userlisting.php:
|
6478 |
msgid "Extra Functions"
|
6479 |
msgstr ""
|
6480 |
|
6481 |
-
#: modules/user-listing/userlisting.php:
|
6482 |
msgid "Pagination"
|
6483 |
msgstr ""
|
6484 |
|
6485 |
-
#: modules/user-listing/userlisting.php:
|
6486 |
msgid "Search all Fields"
|
6487 |
msgstr ""
|
6488 |
|
6489 |
-
#: modules/user-listing/userlisting.php:
|
6490 |
msgid "Faceted Menus"
|
6491 |
msgstr ""
|
6492 |
|
6493 |
-
#: modules/user-listing/userlisting.php:
|
6494 |
msgid "User Count"
|
6495 |
msgstr ""
|
6496 |
|
6497 |
-
#: modules/user-listing/userlisting.php:
|
6498 |
msgid "Map of listed users"
|
6499 |
msgstr ""
|
6500 |
|
6501 |
-
#: modules/user-listing/userlisting.php:
|
6502 |
msgid "Go Back Link"
|
6503 |
msgstr ""
|
6504 |
|
6505 |
-
#: modules/user-listing/userlisting.php:
|
6506 |
msgid "All-userlisting Template"
|
6507 |
msgstr ""
|
6508 |
|
6509 |
-
#: modules/user-listing/userlisting.php:
|
6510 |
msgid "Single-userlisting Template"
|
6511 |
msgstr ""
|
6512 |
|
6513 |
-
#: modules/user-listing/userlisting.php:
|
6514 |
msgid "Avatar"
|
6515 |
msgstr ""
|
6516 |
|
6517 |
-
#: modules/user-listing/userlisting.php:
|
6518 |
msgid "Posts"
|
6519 |
msgstr ""
|
6520 |
|
6521 |
-
#: modules/user-listing/userlisting.php:
|
6522 |
msgid "Sign-up Date"
|
6523 |
msgstr ""
|
6524 |
|
6525 |
-
#: modules/user-listing/userlisting.php:
|
6526 |
msgid "More"
|
6527 |
msgstr ""
|
6528 |
|
6529 |
-
#: modules/user-listing/userlisting.php:
|
6530 |
msgid "You do not have permission to view this user list."
|
6531 |
msgstr ""
|
6532 |
|
6533 |
-
#: modules/user-listing/userlisting.php:
|
6534 |
msgid "You do not have the required user role to view this user list."
|
6535 |
msgstr ""
|
6536 |
|
6537 |
-
#: modules/user-listing/userlisting.php:
|
6538 |
msgid "User not found"
|
6539 |
msgstr ""
|
6540 |
|
6541 |
-
#: modules/user-listing/userlisting.php:
|
6542 |
msgid "Jabber"
|
6543 |
msgstr ""
|
6544 |
|
6545 |
-
#: modules/user-listing/userlisting.php:
|
6546 |
msgid "Yim"
|
6547 |
msgstr ""
|
6548 |
|
6549 |
-
#: modules/user-listing/userlisting.php:
|
6550 |
msgid "Aim"
|
6551 |
msgstr ""
|
6552 |
|
6553 |
-
#: modules/user-listing/userlisting.php:
|
6554 |
msgid "Display Name"
|
6555 |
msgstr ""
|
6556 |
|
6557 |
-
#: modules/user-listing/userlisting.php:
|
6558 |
msgid "First/Lastname"
|
6559 |
msgstr ""
|
6560 |
|
6561 |
-
#: modules/user-listing/userlisting.php:
|
6562 |
msgid "Search Users by All Fields"
|
6563 |
msgstr ""
|
6564 |
|
6565 |
-
#: modules/user-listing/userlisting.php:
|
6566 |
msgid "Click here to see more information about this user."
|
6567 |
msgstr ""
|
6568 |
|
6569 |
-
#: modules/user-listing/userlisting.php:
|
6570 |
msgid "Click here to see more information about this user"
|
6571 |
msgstr ""
|
6572 |
|
6573 |
-
#: modules/user-listing/userlisting.php:
|
6574 |
msgid "More..."
|
6575 |
msgstr ""
|
6576 |
|
6577 |
-
#: modules/user-listing/userlisting.php:
|
6578 |
msgid "View Map"
|
6579 |
msgstr ""
|
6580 |
|
6581 |
-
#: modules/user-listing/userlisting.php:
|
6582 |
msgid "Click here to go back"
|
6583 |
msgstr ""
|
6584 |
|
6585 |
-
#: modules/user-listing/userlisting.php:
|
6586 |
msgid "Back"
|
6587 |
msgstr ""
|
6588 |
|
6589 |
-
#: modules/user-listing/userlisting.php:
|
6590 |
msgid "You don't have any pagination settings on this userlisting!"
|
6591 |
msgstr ""
|
6592 |
|
6593 |
-
#: modules/user-listing/userlisting.php:
|
6594 |
msgid "«« First"
|
6595 |
msgstr ""
|
6596 |
|
6597 |
-
#: modules/user-listing/userlisting.php:
|
6598 |
msgid "« Prev"
|
6599 |
msgstr ""
|
6600 |
|
6601 |
-
#: modules/user-listing/userlisting.php:
|
6602 |
msgid "Next » "
|
6603 |
msgstr ""
|
6604 |
|
6605 |
-
#: modules/user-listing/userlisting.php:
|
6606 |
msgid "Last »»"
|
6607 |
msgstr ""
|
6608 |
|
6609 |
-
#: modules/user-listing/userlisting.php:
|
6610 |
msgid "Show All"
|
6611 |
msgstr ""
|
6612 |
|
6613 |
-
#: modules/user-listing/userlisting.php:
|
6614 |
msgid "Choose..."
|
6615 |
msgstr ""
|
6616 |
|
6617 |
-
#: modules/user-listing/userlisting.php:
|
6618 |
msgid "No options available"
|
6619 |
msgstr ""
|
6620 |
|
6621 |
-
#: modules/user-listing/userlisting.php:
|
6622 |
msgid "Remove All Filters"
|
6623 |
msgstr ""
|
6624 |
|
6625 |
-
#: modules/user-listing/userlisting.php:
|
6626 |
msgid "Search"
|
6627 |
msgstr ""
|
6628 |
|
6629 |
-
#: modules/user-listing/userlisting.php:
|
6630 |
msgid "Clear Results"
|
6631 |
msgstr ""
|
6632 |
|
6633 |
-
#: modules/user-listing/userlisting.php:
|
6634 |
msgid "Extra shortcode parameters"
|
6635 |
msgstr ""
|
6636 |
|
6637 |
-
#: modules/user-listing/userlisting.php:
|
6638 |
msgid "View all extra shortcode parameters"
|
6639 |
msgstr ""
|
6640 |
|
6641 |
-
#: modules/user-listing/userlisting.php:
|
6642 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6643 |
msgstr ""
|
6644 |
|
6645 |
-
#: modules/user-listing/userlisting.php:
|
6646 |
msgid "Example:"
|
6647 |
msgstr ""
|
6648 |
|
6649 |
-
#: modules/user-listing/userlisting.php:
|
6650 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6651 |
msgstr ""
|
6652 |
|
6653 |
-
#: modules/user-listing/userlisting.php:
|
6654 |
msgid "displays only the users that you specified the user_id for"
|
6655 |
msgstr ""
|
6656 |
|
6657 |
-
#: modules/user-listing/userlisting.php:
|
6658 |
msgid "displays all users except the ones you specified the user_id for"
|
6659 |
msgstr ""
|
6660 |
|
6661 |
-
#: modules/user-listing/userlisting.php:
|
6662 |
msgid "Random (very slow on large databases > 10K user)"
|
6663 |
msgstr ""
|
6664 |
|
6665 |
-
#: modules/user-listing/userlisting.php:
|
6666 |
msgid "Ascending"
|
6667 |
msgstr ""
|
6668 |
|
6669 |
-
#: modules/user-listing/userlisting.php:
|
6670 |
msgid "Descending"
|
6671 |
msgstr ""
|
6672 |
|
6673 |
-
#: modules/user-listing/userlisting.php:
|
6674 |
msgid "Roles to Display"
|
6675 |
msgstr ""
|
6676 |
|
6677 |
-
#: modules/user-listing/userlisting.php:
|
6678 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6679 |
msgstr ""
|
6680 |
|
6681 |
-
#: modules/user-listing/userlisting.php:
|
6682 |
msgid "Number of Users/Page"
|
6683 |
msgstr ""
|
6684 |
|
6685 |
-
#: modules/user-listing/userlisting.php:
|
6686 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6687 |
msgstr ""
|
6688 |
|
6689 |
-
#: modules/user-listing/userlisting.php:
|
6690 |
msgid "Default Sorting Criteria"
|
6691 |
msgstr ""
|
6692 |
|
6693 |
-
#: modules/user-listing/userlisting.php:
|
6694 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6695 |
msgstr ""
|
6696 |
|
6697 |
-
#: modules/user-listing/userlisting.php:
|
6698 |
msgid "Default Sorting Order"
|
6699 |
msgstr ""
|
6700 |
|
6701 |
-
#: modules/user-listing/userlisting.php:
|
6702 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6703 |
msgstr ""
|
6704 |
|
6705 |
-
#: modules/user-listing/userlisting.php:
|
6706 |
msgid "Avatar Size (All-userlisting)"
|
6707 |
msgstr ""
|
6708 |
|
6709 |
-
#: modules/user-listing/userlisting.php:
|
6710 |
msgid "Set the avatar size on the all-userlisting only"
|
6711 |
msgstr ""
|
6712 |
|
6713 |
-
#: modules/user-listing/userlisting.php:
|
6714 |
msgid "Avatar Size (Single-userlisting)"
|
6715 |
msgstr ""
|
6716 |
|
6717 |
-
#: modules/user-listing/userlisting.php:
|
6718 |
msgid "Set the avatar size on the single-userlisting only"
|
6719 |
msgstr ""
|
6720 |
|
6721 |
-
#: modules/user-listing/userlisting.php:
|
6722 |
msgid "Visible only to logged in users?"
|
6723 |
msgstr ""
|
6724 |
|
6725 |
-
#: modules/user-listing/userlisting.php:
|
6726 |
msgid "The userlisting will only be visible only to the logged in users"
|
6727 |
msgstr ""
|
6728 |
|
6729 |
-
#: modules/user-listing/userlisting.php:
|
6730 |
msgid "Visible to following Roles"
|
6731 |
msgstr ""
|
6732 |
|
6733 |
-
#: modules/user-listing/userlisting.php:
|
6734 |
msgid "The userlisting will only be visible to the following roles"
|
6735 |
msgstr ""
|
6736 |
|
6737 |
-
#: modules/user-listing/userlisting.php:
|
6738 |
msgid "Userlisting Settings"
|
6739 |
msgstr ""
|
6740 |
|
6741 |
-
#: modules/user-listing/userlisting.php:
|
6742 |
msgid "Label"
|
6743 |
msgstr ""
|
6744 |
|
6745 |
-
#: modules/user-listing/userlisting.php:
|
6746 |
msgid "Choose the facet name that appears on the frontend"
|
6747 |
msgstr ""
|
6748 |
|
6749 |
-
#: modules/user-listing/userlisting.php:
|
6750 |
msgid "Facet Type"
|
6751 |
msgstr ""
|
6752 |
|
6753 |
-
#: modules/user-listing/userlisting.php:
|
6754 |
msgid "Choose the facet menu type"
|
6755 |
msgstr ""
|
6756 |
|
6757 |
-
#: modules/user-listing/userlisting.php:
|
6758 |
msgid "Facet Meta"
|
6759 |
msgstr ""
|
6760 |
|
6761 |
-
#: modules/user-listing/userlisting.php:
|
6762 |
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."
|
6763 |
msgstr ""
|
6764 |
|
6765 |
-
#: modules/user-listing/userlisting.php:
|
6766 |
msgid "Behaviour"
|
6767 |
msgstr ""
|
6768 |
|
6769 |
-
#: modules/user-listing/userlisting.php:
|
6770 |
msgid "Narrow the results"
|
6771 |
msgstr ""
|
6772 |
|
6773 |
-
#: modules/user-listing/userlisting.php:
|
6774 |
msgid "Expand the results"
|
6775 |
msgstr ""
|
6776 |
|
6777 |
-
#: modules/user-listing/userlisting.php:
|
6778 |
msgid "Choose how multiple selections affect the results"
|
6779 |
msgstr ""
|
6780 |
|
6781 |
-
#: modules/user-listing/userlisting.php:
|
6782 |
msgid "Visible choices"
|
6783 |
msgstr ""
|
6784 |
|
6785 |
-
#: modules/user-listing/userlisting.php:
|
6786 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6787 |
msgstr ""
|
6788 |
|
6789 |
-
#: modules/user-listing/userlisting.php:
|
6790 |
msgid "Search Fields"
|
6791 |
msgstr ""
|
6792 |
|
6793 |
-
#: modules/user-listing/userlisting.php:
|
6794 |
msgid "Choose the fields in which the Search Field will look in"
|
6795 |
msgstr ""
|
6796 |
|
6797 |
-
#: modules/user-listing/userlisting.php:
|
6798 |
msgid "Search Settings"
|
6799 |
msgstr ""
|
6800 |
|
6801 |
-
#: modules/user-listing/userlisting.php:
|
6802 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6803 |
msgstr ""
|
6804 |
|
6805 |
-
#: modules/user-listing/userlisting.php:
|
6806 |
msgid "You can find it in the Profile Builder menu."
|
6807 |
msgstr ""
|
6808 |
|
6809 |
-
#: modules/user-listing/userlisting.php:
|
6810 |
msgid "No results found!"
|
6811 |
msgstr ""
|
6812 |
|
369 |
msgid "Edit Profile"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: ../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:431, front-end/login.php:423
|
373 |
msgid "Register"
|
374 |
msgstr ""
|
375 |
|
453 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: ../pb-add-on-field-visibility/index.php:239, ../pb-add-on-labels-edit/pble.php:381, admin/manage-fields.php:1318, features/functions.php:877, features/functions.php:884, features/admin-approval/class-admin-approval.php:108, features/roles-editor/roles-editor.php:866, modules/custom-redirects/custom_redirects_admin.php:183, modules/custom-redirects/custom_redirects_admin.php:197, modules/custom-redirects/custom_redirects_admin.php:211, modules/custom-redirects/custom_redirects_admin.php:225, modules/multiple-forms/multiple-forms.php:406
|
457 |
msgid "Edit"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: ../pb-add-on-field-visibility/index.php:239, admin/manage-fields.php:1318, features/functions.php:870, features/functions.php:884, features/admin-approval/class-admin-approval.php:113, features/email-confirmation/class-email-confirmation.php:121, features/email-confirmation/class-email-confirmation.php:218, features/roles-editor/roles-editor.php:179, features/roles-editor/roles-editor.php:904, features/roles-editor/roles-editor.php:893, features/roles-editor/roles-editor.php:884, modules/custom-redirects/custom_redirects_admin.php:183, modules/custom-redirects/custom_redirects_admin.php:197, modules/custom-redirects/custom_redirects_admin.php:211, modules/custom-redirects/custom_redirects_admin.php:225, front-end/default-fields/gdpr-delete/gdpr-delete.php:18
|
461 |
msgid "Delete"
|
462 |
msgstr ""
|
463 |
|
683 |
msgid "Replace labels with placeholders:"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:324, admin/general-settings.php:113, admin/general-settings.php:126, admin/general-settings.php:175, admin/general-settings.php:222, admin/general-settings.php:296, admin/private-website.php:67, admin/private-website.php:124, admin/private-website.php:137, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:18, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:34, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:18, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:66, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:181, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:197, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:217, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:240, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:261, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:279, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:132, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:149, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:164, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:184, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:201, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:239, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:260, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:280, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:302, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:16, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:32, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:48, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:64, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:53, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:75, features/content-restriction/content-restriction.php:88, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:229, modules/multiple-forms/register-forms.php:230, modules/user-listing/userlisting.php:2403
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:172, ../pb-add-on-social-connect/index.php:325, admin/general-settings.php:127, admin/general-settings.php:176, admin/general-settings.php:221, admin/general-settings.php:295, admin/private-website.php:66, admin/private-website.php:123, admin/private-website.php:138, features/content-restriction/content-restriction.php:87, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:229, modules/multiple-forms/register-forms.php:230
|
691 |
msgid "No"
|
692 |
msgstr ""
|
693 |
|
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:1164
|
887 |
msgid "here"
|
888 |
msgstr ""
|
889 |
|
1123 |
msgid "Communication Preferences"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29, ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:9, admin/manage-fields.php:324, front-end/recover.php:116, ../pb-add-on-customization-toolbox/includes/shortcodes/resend-activation.php:9, features/admin-approval/class-admin-approval.php:169, features/email-confirmation/class-email-confirmation.php:169, modules/user-listing/userlisting.php:118
|
1127 |
msgid "E-mail"
|
1128 |
msgstr ""
|
1129 |
|
1227 |
msgid "Edit this item"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:863, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:403, assets/lib/wck-api/wordpress-creation-kit.php:406
|
1231 |
msgid "Cancel"
|
1232 |
msgstr ""
|
1233 |
|
1543 |
msgid "Available with All Versions"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: admin/add-ons.php:330, front-end/class-formbuilder.php:434
|
1547 |
msgid "Update"
|
1548 |
msgstr ""
|
1549 |
|
1603 |
msgid "Show"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: admin/admin-bar.php:80, modules/user-listing/userlisting.php:1679
|
1607 |
msgid "Hide"
|
1608 |
msgstr ""
|
1609 |
|
2111 |
msgid "Username and Email"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: admin/general-settings.php:251, admin/manage-fields.php:318, front-end/login.php:246, front-end/login.php:260, front-end/login.php:391, ../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:112, modules/user-listing/userlisting.php:312, modules/user-listing/userlisting.php:807, modules/user-listing/userlisting.php:2357
|
2115 |
msgid "Username"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: admin/general-settings.php:252, front-end/login.php:388, modules/email-customizer/email-customizer.php:29, modules/user-listing/userlisting.php:813, modules/user-listing/userlisting.php:2358
|
2119 |
msgid "Email"
|
2120 |
msgstr ""
|
2121 |
|
2607 |
msgid "Usernames cannot be changed."
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: admin/manage-fields.php:321, modules/user-listing/userlisting.php:846, modules/user-listing/userlisting.php:2365
|
2611 |
msgid "Nickname"
|
2612 |
msgstr ""
|
2613 |
|
2615 |
msgid "Display name publicly as"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: admin/manage-fields.php:325, modules/email-customizer/email-customizer.php:33, modules/user-listing/userlisting.php:121, modules/user-listing/userlisting.php:828, modules/user-listing/userlisting.php:2359
|
2619 |
msgid "Website"
|
2620 |
msgstr ""
|
2621 |
|
2631 |
msgid "Jabber / Google Talk"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: admin/manage-fields.php:335, modules/user-listing/userlisting.php:124, modules/user-listing/userlisting.php:831, modules/user-listing/userlisting.php:2360
|
2635 |
msgid "Biographical Info"
|
2636 |
msgstr ""
|
2637 |
|
4307 |
msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
+
#: admin/private-website.php:50
|
4311 |
msgid "Private Website Settings"
|
4312 |
msgstr ""
|
4313 |
|
4314 |
+
#: admin/private-website.php:63
|
4315 |
msgid "Enable Private Website"
|
4316 |
msgstr ""
|
4317 |
|
4318 |
+
#: admin/private-website.php:70
|
4319 |
msgid "Activate Private Website. It will restrict the content, RSS and REST API for your website"
|
4320 |
msgstr ""
|
4321 |
|
4322 |
+
#: admin/private-website.php:76
|
4323 |
msgid "Redirect to"
|
4324 |
msgstr ""
|
4325 |
|
4326 |
+
#: admin/private-website.php:79
|
4327 |
msgid "Default WordPress login page"
|
4328 |
msgstr ""
|
4329 |
|
4330 |
+
#: admin/private-website.php:92
|
4331 |
msgid "Redirects to this page if not logged in. We recommend this page contains the [wppb-login] shortcode."
|
4332 |
msgstr ""
|
4333 |
|
4334 |
+
#: admin/private-website.php:93
|
4335 |
msgid "You can force access to wp-login.php so you don't get locked out of the site by accessing the link:"
|
4336 |
msgstr ""
|
4337 |
|
4338 |
+
#: admin/private-website.php:99
|
4339 |
msgid "Allowed Pages"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
+
#: admin/private-website.php:114
|
4343 |
msgid "Allow these pages to be accessed even if you are not logged in"
|
4344 |
msgstr ""
|
4345 |
|
4346 |
+
#: admin/private-website.php:120
|
4347 |
msgid "Hide all Menus"
|
4348 |
msgstr ""
|
4349 |
|
4350 |
+
#: admin/private-website.php:127
|
4351 |
msgid "Hide all menu items if you are not logged in."
|
4352 |
msgstr ""
|
4353 |
|
4354 |
+
#: admin/private-website.php:128
|
4355 |
msgid "We recommend \"<a href=\"%s\" target=\"_blank\">Custom Profile Menus</a>\" addon if you need different menu items for logged in / logged out users."
|
4356 |
msgstr ""
|
4357 |
|
4358 |
+
#: admin/private-website.php:134
|
4359 |
+
msgid "Disable REST-API"
|
4360 |
+
msgstr ""
|
4361 |
+
|
4362 |
+
#: admin/private-website.php:141
|
4363 |
+
msgid "Disable the WordPress REST-API for non-logged in users when Private Website is enabled"
|
4364 |
+
msgstr ""
|
4365 |
+
|
4366 |
+
#: admin/private-website.php:149, features/functions.php:856, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:47, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:293, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:321, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:77, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:91, features/content-restriction/content-restriction.php:161, modules/class-mustache-templates/class-mustache-templates.php:390, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:402, assets/lib/wck-api/wordpress-creation-kit.php:405
|
4367 |
msgid "Save Changes"
|
4368 |
msgstr ""
|
4369 |
|
4463 |
msgid "Minimum length of %d characters."
|
4464 |
msgstr ""
|
4465 |
|
4466 |
+
#: features/functions.php:698, front-end/recover.php:343, front-end/default-fields/password/password.php:54
|
4467 |
+
msgid "The password must have a minimum strength of %s"
|
4468 |
msgstr ""
|
4469 |
|
4470 |
#: features/functions.php:775
|
4479 |
msgid "Incorrect phone number"
|
4480 |
msgstr ""
|
4481 |
|
4482 |
+
#: features/functions.php:884, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:444, assets/lib/wck-api/wordpress-creation-kit.php:447
|
4483 |
msgid "Content"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
+
#: features/functions.php:1066
|
4487 |
msgid "<br><br>Also, you will be able to visit your site at "
|
4488 |
msgstr ""
|
4489 |
|
4490 |
+
#: features/functions.php:1079
|
4491 |
msgid "<br><br>You can visit your site at "
|
4492 |
msgstr ""
|
4493 |
|
4494 |
+
#: features/functions.php:1165
|
4495 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4496 |
msgstr ""
|
4497 |
|
4498 |
+
#: features/functions.php:1295
|
4499 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
4500 |
msgstr ""
|
4501 |
|
4502 |
+
#: features/functions.php:1336
|
4503 |
msgid "You are not currently logged in."
|
4504 |
msgstr ""
|
4505 |
|
4539 |
msgid "You are not allowed to do this."
|
4540 |
msgstr ""
|
4541 |
|
4542 |
+
#: front-end/class-formbuilder.php:374
|
4543 |
msgid "There was an error in the submitted form"
|
4544 |
msgstr ""
|
4545 |
|
4546 |
+
#: front-end/class-formbuilder.php:363
|
4547 |
msgid "Your profile has been successfully updated!"
|
4548 |
msgstr ""
|
4549 |
|
4550 |
+
#: front-end/class-formbuilder.php:331, front-end/class-formbuilder.php:338
|
4551 |
msgid "The account %1s has been successfully created!"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
+
#: front-end/class-formbuilder.php:334, front-end/class-formbuilder.php:344
|
4555 |
msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
|
4556 |
msgstr ""
|
4557 |
|
4558 |
+
#: front-end/class-formbuilder.php:340
|
4559 |
msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
|
4560 |
msgstr ""
|
4561 |
|
4562 |
+
#: front-end/class-formbuilder.php:431
|
4563 |
msgid "Add User"
|
4564 |
msgstr ""
|
4565 |
|
4566 |
+
#: front-end/class-formbuilder.php:513
|
4567 |
msgid "Send these credentials via email."
|
4568 |
msgstr ""
|
4569 |
|
4570 |
+
#: front-end/class-formbuilder.php:730
|
4571 |
msgid "There are no other users to edit"
|
4572 |
msgstr ""
|
4573 |
|
4574 |
+
#: front-end/class-formbuilder.php:712
|
4575 |
msgid "User to edit:"
|
4576 |
msgstr ""
|
4577 |
|
4578 |
+
#: front-end/class-formbuilder.php:714
|
4579 |
msgid "Select User"
|
4580 |
msgstr ""
|
4581 |
|
4582 |
+
#: front-end/class-formbuilder.php:753
|
4583 |
msgid "Something went wrong. Please try again!"
|
4584 |
msgstr ""
|
4585 |
|
4703 |
msgid "The password must have the minimum length of %s characters"
|
4704 |
msgstr ""
|
4705 |
|
|
|
|
|
|
|
|
|
4706 |
#: front-end/recover.php:350
|
4707 |
msgid "Your password has been successfully changed!"
|
4708 |
msgstr ""
|
5267 |
msgid "Unapprove"
|
5268 |
msgstr ""
|
5269 |
|
5270 |
+
#: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:313, modules/user-listing/userlisting.php:819, modules/user-listing/userlisting.php:2362
|
5271 |
msgid "Firstname"
|
5272 |
msgstr ""
|
5273 |
|
5274 |
+
#: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:822, modules/user-listing/userlisting.php:2363
|
5275 |
msgid "Lastname"
|
5276 |
msgstr ""
|
5277 |
|
5278 |
+
#: features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:255, modules/user-listing/userlisting.php:160, modules/user-listing/userlisting.php:314, modules/user-listing/userlisting.php:849, modules/user-listing/userlisting.php:2367
|
5279 |
msgid "Role"
|
5280 |
msgstr ""
|
5281 |
|
5599 |
msgid "[%1$s] Your new account information"
|
5600 |
msgstr ""
|
5601 |
|
5602 |
+
#: features/email-confirmation/email-confirmation.php:582, modules/email-customizer/email-customizer.php:583, modules/email-customizer/email-customizer.php:590, modules/email-customizer/email-customizer.php:604
|
5603 |
msgid "Your selected password at signup"
|
5604 |
msgstr ""
|
5605 |
|
5711 |
msgid "Role Name"
|
5712 |
msgstr ""
|
5713 |
|
5714 |
+
#: features/roles-editor/roles-editor.php:365, modules/user-listing/userlisting.php:161
|
5715 |
msgid "Role Slug"
|
5716 |
msgstr ""
|
5717 |
|
5951 |
""
|
5952 |
msgstr ""
|
5953 |
|
5954 |
+
#: modules/email-customizer/admin-email-customizer.php:80, modules/email-customizer/admin-email-customizer.php:111, modules/email-customizer/admin-email-customizer.php:142, modules/email-customizer/admin-email-customizer.php:182, modules/email-customizer/user-email-customizer.php:83, modules/email-customizer/user-email-customizer.php:114, modules/email-customizer/user-email-customizer.php:146, modules/email-customizer/user-email-customizer.php:177, modules/email-customizer/user-email-customizer.php:209, modules/email-customizer/user-email-customizer.php:241, modules/email-customizer/user-email-customizer.php:273, modules/email-customizer/user-email-customizer.php:307, modules/email-customizer/user-email-customizer.php:346
|
5955 |
msgid "Email Subject"
|
5956 |
msgstr ""
|
5957 |
|
5958 |
+
#: modules/email-customizer/admin-email-customizer.php:87, modules/email-customizer/admin-email-customizer.php:118, modules/email-customizer/admin-email-customizer.php:149, modules/email-customizer/admin-email-customizer.php:189, modules/email-customizer/user-email-customizer.php:90, modules/email-customizer/user-email-customizer.php:121, modules/email-customizer/user-email-customizer.php:153, modules/email-customizer/user-email-customizer.php:184, modules/email-customizer/user-email-customizer.php:216, modules/email-customizer/user-email-customizer.php:248, modules/email-customizer/user-email-customizer.php:280, modules/email-customizer/user-email-customizer.php:314, modules/email-customizer/user-email-customizer.php:353
|
5959 |
msgid "Enable email"
|
5960 |
msgstr ""
|
5961 |
|
5979 |
#: modules/email-customizer/admin-email-customizer.php:136
|
5980 |
msgid ""
|
5981 |
"<p>{{username}} has requested a password change via the password reset feature.</p>\n"
|
|
|
5982 |
""
|
5983 |
msgstr ""
|
5984 |
|
5986 |
msgid "Admin Notification for User Password Reset"
|
5987 |
msgstr ""
|
5988 |
|
5989 |
+
#: modules/email-customizer/admin-email-customizer.php:178
|
5990 |
msgid ""
|
5991 |
"<p>The user {{username}} has updated their profile and some of the fields require admin approval:</p>\n"
|
5992 |
"<br>\n"
|
5996 |
""
|
5997 |
msgstr ""
|
5998 |
|
5999 |
+
#: modules/email-customizer/admin-email-customizer.php:186
|
6000 |
msgid "[{{site_name}}] A user has updated their profile. Some fields need approval"
|
6001 |
msgstr ""
|
6002 |
|
6003 |
+
#: modules/email-customizer/admin-email-customizer.php:204
|
6004 |
msgid "Admin Notification for Edit Profile Approved by Admin"
|
6005 |
msgstr ""
|
6006 |
|
6008 |
msgid "Available Tags"
|
6009 |
msgstr ""
|
6010 |
|
6011 |
+
#: modules/email-customizer/email-customizer.php:11, modules/user-listing/userlisting.php:213
|
6012 |
msgid "User Fields Tags"
|
6013 |
msgstr ""
|
6014 |
|
6020 |
msgid "Site Name"
|
6021 |
msgstr ""
|
6022 |
|
6023 |
+
#: modules/email-customizer/email-customizer.php:25, modules/user-listing/userlisting.php:170
|
6024 |
msgid "User Id"
|
6025 |
msgstr ""
|
6026 |
|
6032 |
msgid "Reply To"
|
6033 |
msgstr ""
|
6034 |
|
6035 |
+
#: modules/email-customizer/email-customizer.php:37, modules/user-listing/userlisting.php:128
|
6036 |
msgid "Blog URL"
|
6037 |
msgstr ""
|
6038 |
|
6084 |
msgid "Approval URL"
|
6085 |
msgstr ""
|
6086 |
|
6087 |
+
#: modules/email-customizer/email-customizer.php:575
|
6088 |
msgid "The users selected password at signup"
|
6089 |
msgstr ""
|
6090 |
|
6103 |
#: modules/email-customizer/user-email-customizer.php:79
|
6104 |
msgid ""
|
6105 |
"<h3>Welcome to {{site_name}}!</h3>\n"
|
6106 |
+
"<p>Your username is: {{username}}</p>\n"
|
6107 |
""
|
6108 |
msgstr ""
|
6109 |
|
6126 |
#: modules/email-customizer/user-email-customizer.php:142
|
6127 |
msgid ""
|
6128 |
"<h3>Welcome to {{site_name}}!</h3>\n"
|
6129 |
+
"<p>Your username is: {{username}}</p>\n"
|
6130 |
"<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
|
6131 |
""
|
6132 |
msgstr ""
|
6216 |
msgid "Changed Email Address Notification"
|
6217 |
msgstr ""
|
6218 |
|
6219 |
+
#: modules/email-customizer/user-email-customizer.php:342
|
6220 |
msgid ""
|
6221 |
"<p>Your profile has been reviewed by an administrator:</p>\n"
|
6222 |
"<br>\n"
|
6225 |
""
|
6226 |
msgstr ""
|
6227 |
|
6228 |
+
#: modules/email-customizer/user-email-customizer.php:350
|
6229 |
msgid "[{{site_name}}] Your profile has been reviewed by an administrator"
|
6230 |
msgstr ""
|
6231 |
|
6232 |
+
#: modules/email-customizer/user-email-customizer.php:368
|
6233 |
msgid "User Notification for Edit Profile Approved by Admin"
|
6234 |
msgstr ""
|
6235 |
|
6273 |
msgid "No Edit-profile Forms found in trash"
|
6274 |
msgstr ""
|
6275 |
|
6276 |
+
#: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:2253
|
6277 |
msgid "Shortcode"
|
6278 |
msgstr ""
|
6279 |
|
6280 |
+
#: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:2274
|
6281 |
msgid "(no title)"
|
6282 |
msgstr ""
|
6283 |
|
6284 |
+
#: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:2296
|
6285 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6286 |
msgstr ""
|
6287 |
|
6288 |
+
#: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:2300
|
6289 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6290 |
msgstr ""
|
6291 |
|
6292 |
+
#: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:2294
|
6293 |
msgid "The shortcode will be available after you publish this form."
|
6294 |
msgstr ""
|
6295 |
|
6296 |
+
#: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:2333
|
6297 |
msgid "Form Shortcode"
|
6298 |
msgstr ""
|
6299 |
|
6409 |
msgid "Are you sure you want to delete this?"
|
6410 |
msgstr ""
|
6411 |
|
6412 |
+
#: modules/user-listing/one-map-listing.php:437
|
6413 |
msgid "Please wait while the pins are loading..."
|
6414 |
msgstr ""
|
6415 |
|
6416 |
+
#: modules/user-listing/one-map-listing.php:552
|
6417 |
msgid "The API Key was not provided."
|
6418 |
msgstr ""
|
6419 |
|
6445 |
msgid "No User Listing found in trash"
|
6446 |
msgstr ""
|
6447 |
|
6448 |
+
#: modules/user-listing/userlisting.php:115
|
6449 |
msgid "Display name as"
|
6450 |
msgstr ""
|
6451 |
|
6452 |
+
#: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:2361
|
6453 |
msgid "Registration Date"
|
6454 |
msgstr ""
|
6455 |
|
6456 |
+
#: modules/user-listing/userlisting.php:163, modules/user-listing/userlisting.php:2366
|
6457 |
msgid "Number of Posts"
|
6458 |
msgstr ""
|
6459 |
|
6460 |
+
#: modules/user-listing/userlisting.php:167
|
6461 |
msgid "More Info"
|
6462 |
msgstr ""
|
6463 |
|
6464 |
+
#: modules/user-listing/userlisting.php:168
|
6465 |
msgid "More Info Url"
|
6466 |
msgstr ""
|
6467 |
|
6468 |
+
#: modules/user-listing/userlisting.php:169
|
6469 |
msgid "Avatar or Gravatar"
|
6470 |
msgstr ""
|
6471 |
|
6472 |
+
#: modules/user-listing/userlisting.php:171
|
6473 |
msgid "User Nicename"
|
6474 |
msgstr ""
|
6475 |
|
6476 |
+
#: modules/user-listing/userlisting.php:219
|
6477 |
msgid "Sort Tags"
|
6478 |
msgstr ""
|
6479 |
|
6480 |
+
#: modules/user-listing/userlisting.php:223, modules/user-listing/userlisting.php:262
|
6481 |
msgid "Extra Functions"
|
6482 |
msgstr ""
|
6483 |
|
6484 |
+
#: modules/user-listing/userlisting.php:226
|
6485 |
msgid "Pagination"
|
6486 |
msgstr ""
|
6487 |
|
6488 |
+
#: modules/user-listing/userlisting.php:227
|
6489 |
msgid "Search all Fields"
|
6490 |
msgstr ""
|
6491 |
|
6492 |
+
#: modules/user-listing/userlisting.php:228, modules/user-listing/userlisting.php:2445
|
6493 |
msgid "Faceted Menus"
|
6494 |
msgstr ""
|
6495 |
|
6496 |
+
#: modules/user-listing/userlisting.php:229
|
6497 |
msgid "User Count"
|
6498 |
msgstr ""
|
6499 |
|
6500 |
+
#: modules/user-listing/userlisting.php:236
|
6501 |
msgid "Map of listed users"
|
6502 |
msgstr ""
|
6503 |
|
6504 |
+
#: modules/user-listing/userlisting.php:264
|
6505 |
msgid "Go Back Link"
|
6506 |
msgstr ""
|
6507 |
|
6508 |
+
#: modules/user-listing/userlisting.php:282
|
6509 |
msgid "All-userlisting Template"
|
6510 |
msgstr ""
|
6511 |
|
6512 |
+
#: modules/user-listing/userlisting.php:285
|
6513 |
msgid "Single-userlisting Template"
|
6514 |
msgstr ""
|
6515 |
|
6516 |
+
#: modules/user-listing/userlisting.php:311
|
6517 |
msgid "Avatar"
|
6518 |
msgstr ""
|
6519 |
|
6520 |
+
#: modules/user-listing/userlisting.php:315, modules/user-listing/userlisting.php:834
|
6521 |
msgid "Posts"
|
6522 |
msgstr ""
|
6523 |
|
6524 |
+
#: modules/user-listing/userlisting.php:316, modules/user-listing/userlisting.php:816
|
6525 |
msgid "Sign-up Date"
|
6526 |
msgstr ""
|
6527 |
|
6528 |
+
#: modules/user-listing/userlisting.php:317
|
6529 |
msgid "More"
|
6530 |
msgstr ""
|
6531 |
|
6532 |
+
#: modules/user-listing/userlisting.php:411
|
6533 |
msgid "You do not have permission to view this user list."
|
6534 |
msgstr ""
|
6535 |
|
6536 |
+
#: modules/user-listing/userlisting.php:424
|
6537 |
msgid "You do not have the required user role to view this user list."
|
6538 |
msgstr ""
|
6539 |
|
6540 |
+
#: modules/user-listing/userlisting.php:448
|
6541 |
msgid "User not found"
|
6542 |
msgstr ""
|
6543 |
|
6544 |
+
#: modules/user-listing/userlisting.php:843, modules/user-listing/userlisting.php:2373
|
6545 |
msgid "Jabber"
|
6546 |
msgstr ""
|
6547 |
|
6548 |
+
#: modules/user-listing/userlisting.php:840, modules/user-listing/userlisting.php:2372
|
6549 |
msgid "Yim"
|
6550 |
msgstr ""
|
6551 |
|
6552 |
+
#: modules/user-listing/userlisting.php:837, modules/user-listing/userlisting.php:2371
|
6553 |
msgid "Aim"
|
6554 |
msgstr ""
|
6555 |
|
6556 |
+
#: modules/user-listing/userlisting.php:825, modules/user-listing/userlisting.php:2364
|
6557 |
msgid "Display Name"
|
6558 |
msgstr ""
|
6559 |
|
6560 |
+
#: modules/user-listing/userlisting.php:810
|
6561 |
msgid "First/Lastname"
|
6562 |
msgstr ""
|
6563 |
|
6564 |
+
#: modules/user-listing/userlisting.php:1130, modules/user-listing/userlisting.php:1610, modules/user-listing/userlisting.php:2088, modules/user-listing/userlisting.php:2565
|
6565 |
msgid "Search Users by All Fields"
|
6566 |
msgstr ""
|
6567 |
|
6568 |
+
#: modules/user-listing/userlisting.php:1406
|
6569 |
msgid "Click here to see more information about this user."
|
6570 |
msgstr ""
|
6571 |
|
6572 |
+
#: modules/user-listing/userlisting.php:1403
|
6573 |
msgid "Click here to see more information about this user"
|
6574 |
msgstr ""
|
6575 |
|
6576 |
+
#: modules/user-listing/userlisting.php:1403, modules/user-listing/userlisting.php:1403
|
6577 |
msgid "More..."
|
6578 |
msgstr ""
|
6579 |
|
6580 |
+
#: modules/user-listing/userlisting.php:1433
|
6581 |
msgid "View Map"
|
6582 |
msgstr ""
|
6583 |
|
6584 |
+
#: modules/user-listing/userlisting.php:1567, modules/user-listing/userlisting.php:1564
|
6585 |
msgid "Click here to go back"
|
6586 |
msgstr ""
|
6587 |
|
6588 |
+
#: modules/user-listing/userlisting.php:1564, modules/user-listing/userlisting.php:1564
|
6589 |
msgid "Back"
|
6590 |
msgstr ""
|
6591 |
|
6592 |
+
#: modules/user-listing/userlisting.php:1629
|
6593 |
msgid "You don't have any pagination settings on this userlisting!"
|
6594 |
msgstr ""
|
6595 |
|
6596 |
+
#: modules/user-listing/userlisting.php:1597
|
6597 |
msgid "«« First"
|
6598 |
msgstr ""
|
6599 |
|
6600 |
+
#: modules/user-listing/userlisting.php:1598
|
6601 |
msgid "« Prev"
|
6602 |
msgstr ""
|
6603 |
|
6604 |
+
#: modules/user-listing/userlisting.php:1599
|
6605 |
msgid "Next » "
|
6606 |
msgstr ""
|
6607 |
|
6608 |
+
#: modules/user-listing/userlisting.php:1600
|
6609 |
msgid "Last »»"
|
6610 |
msgstr ""
|
6611 |
|
6612 |
+
#: modules/user-listing/userlisting.php:1678
|
6613 |
msgid "Show All"
|
6614 |
msgstr ""
|
6615 |
|
6616 |
+
#: modules/user-listing/userlisting.php:1752
|
6617 |
msgid "Choose..."
|
6618 |
msgstr ""
|
6619 |
|
6620 |
+
#: modules/user-listing/userlisting.php:1841
|
6621 |
msgid "No options available"
|
6622 |
msgstr ""
|
6623 |
|
6624 |
+
#: modules/user-listing/userlisting.php:1991
|
6625 |
msgid "Remove All Filters"
|
6626 |
msgstr ""
|
6627 |
|
6628 |
+
#: modules/user-listing/userlisting.php:2105
|
6629 |
msgid "Search"
|
6630 |
msgstr ""
|
6631 |
|
6632 |
+
#: modules/user-listing/userlisting.php:2106
|
6633 |
msgid "Clear Results"
|
6634 |
msgstr ""
|
6635 |
|
6636 |
+
#: modules/user-listing/userlisting.php:2303, modules/user-listing/userlisting.php:2307
|
6637 |
msgid "Extra shortcode parameters"
|
6638 |
msgstr ""
|
6639 |
|
6640 |
+
#: modules/user-listing/userlisting.php:2305
|
6641 |
msgid "View all extra shortcode parameters"
|
6642 |
msgstr ""
|
6643 |
|
6644 |
+
#: modules/user-listing/userlisting.php:2310
|
6645 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6646 |
msgstr ""
|
6647 |
|
6648 |
+
#: modules/user-listing/userlisting.php:2311
|
6649 |
msgid "Example:"
|
6650 |
msgstr ""
|
6651 |
|
6652 |
+
#: modules/user-listing/userlisting.php:2313
|
6653 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6654 |
msgstr ""
|
6655 |
|
6656 |
+
#: modules/user-listing/userlisting.php:2319
|
6657 |
msgid "displays only the users that you specified the user_id for"
|
6658 |
msgstr ""
|
6659 |
|
6660 |
+
#: modules/user-listing/userlisting.php:2325
|
6661 |
msgid "displays all users except the ones you specified the user_id for"
|
6662 |
msgstr ""
|
6663 |
|
6664 |
+
#: modules/user-listing/userlisting.php:2388
|
6665 |
msgid "Random (very slow on large databases > 10K user)"
|
6666 |
msgstr ""
|
6667 |
|
6668 |
+
#: modules/user-listing/userlisting.php:2391
|
6669 |
msgid "Ascending"
|
6670 |
msgstr ""
|
6671 |
|
6672 |
+
#: modules/user-listing/userlisting.php:2392
|
6673 |
msgid "Descending"
|
6674 |
msgstr ""
|
6675 |
|
6676 |
+
#: modules/user-listing/userlisting.php:2397
|
6677 |
msgid "Roles to Display"
|
6678 |
msgstr ""
|
6679 |
|
6680 |
+
#: modules/user-listing/userlisting.php:2397
|
6681 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6682 |
msgstr ""
|
6683 |
|
6684 |
+
#: modules/user-listing/userlisting.php:2398
|
6685 |
msgid "Number of Users/Page"
|
6686 |
msgstr ""
|
6687 |
|
6688 |
+
#: modules/user-listing/userlisting.php:2398
|
6689 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6690 |
msgstr ""
|
6691 |
|
6692 |
+
#: modules/user-listing/userlisting.php:2399
|
6693 |
msgid "Default Sorting Criteria"
|
6694 |
msgstr ""
|
6695 |
|
6696 |
+
#: modules/user-listing/userlisting.php:2399
|
6697 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6698 |
msgstr ""
|
6699 |
|
6700 |
+
#: modules/user-listing/userlisting.php:2400
|
6701 |
msgid "Default Sorting Order"
|
6702 |
msgstr ""
|
6703 |
|
6704 |
+
#: modules/user-listing/userlisting.php:2400
|
6705 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6706 |
msgstr ""
|
6707 |
|
6708 |
+
#: modules/user-listing/userlisting.php:2401
|
6709 |
msgid "Avatar Size (All-userlisting)"
|
6710 |
msgstr ""
|
6711 |
|
6712 |
+
#: modules/user-listing/userlisting.php:2401
|
6713 |
msgid "Set the avatar size on the all-userlisting only"
|
6714 |
msgstr ""
|
6715 |
|
6716 |
+
#: modules/user-listing/userlisting.php:2402
|
6717 |
msgid "Avatar Size (Single-userlisting)"
|
6718 |
msgstr ""
|
6719 |
|
6720 |
+
#: modules/user-listing/userlisting.php:2402
|
6721 |
msgid "Set the avatar size on the single-userlisting only"
|
6722 |
msgstr ""
|
6723 |
|
6724 |
+
#: modules/user-listing/userlisting.php:2403
|
6725 |
msgid "Visible only to logged in users?"
|
6726 |
msgstr ""
|
6727 |
|
6728 |
+
#: modules/user-listing/userlisting.php:2403
|
6729 |
msgid "The userlisting will only be visible only to the logged in users"
|
6730 |
msgstr ""
|
6731 |
|
6732 |
+
#: modules/user-listing/userlisting.php:2404
|
6733 |
msgid "Visible to following Roles"
|
6734 |
msgstr ""
|
6735 |
|
6736 |
+
#: modules/user-listing/userlisting.php:2404
|
6737 |
msgid "The userlisting will only be visible to the following roles"
|
6738 |
msgstr ""
|
6739 |
|
6740 |
+
#: modules/user-listing/userlisting.php:2410
|
6741 |
msgid "Userlisting Settings"
|
6742 |
msgstr ""
|
6743 |
|
6744 |
+
#: modules/user-listing/userlisting.php:2435
|
6745 |
msgid "Label"
|
6746 |
msgstr ""
|
6747 |
|
6748 |
+
#: modules/user-listing/userlisting.php:2435
|
6749 |
msgid "Choose the facet name that appears on the frontend"
|
6750 |
msgstr ""
|
6751 |
|
6752 |
+
#: modules/user-listing/userlisting.php:2436
|
6753 |
msgid "Facet Type"
|
6754 |
msgstr ""
|
6755 |
|
6756 |
+
#: modules/user-listing/userlisting.php:2436
|
6757 |
msgid "Choose the facet menu type"
|
6758 |
msgstr ""
|
6759 |
|
6760 |
+
#: modules/user-listing/userlisting.php:2437
|
6761 |
msgid "Facet Meta"
|
6762 |
msgstr ""
|
6763 |
|
6764 |
+
#: modules/user-listing/userlisting.php:2437
|
6765 |
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."
|
6766 |
msgstr ""
|
6767 |
|
6768 |
+
#: modules/user-listing/userlisting.php:2438
|
6769 |
msgid "Behaviour"
|
6770 |
msgstr ""
|
6771 |
|
6772 |
+
#: modules/user-listing/userlisting.php:2438
|
6773 |
msgid "Narrow the results"
|
6774 |
msgstr ""
|
6775 |
|
6776 |
+
#: modules/user-listing/userlisting.php:2438
|
6777 |
msgid "Expand the results"
|
6778 |
msgstr ""
|
6779 |
|
6780 |
+
#: modules/user-listing/userlisting.php:2438
|
6781 |
msgid "Choose how multiple selections affect the results"
|
6782 |
msgstr ""
|
6783 |
|
6784 |
+
#: modules/user-listing/userlisting.php:2439
|
6785 |
msgid "Visible choices"
|
6786 |
msgstr ""
|
6787 |
|
6788 |
+
#: modules/user-listing/userlisting.php:2439
|
6789 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6790 |
msgstr ""
|
6791 |
|
6792 |
+
#: modules/user-listing/userlisting.php:2464
|
6793 |
msgid "Search Fields"
|
6794 |
msgstr ""
|
6795 |
|
6796 |
+
#: modules/user-listing/userlisting.php:2464
|
6797 |
msgid "Choose the fields in which the Search Field will look in"
|
6798 |
msgstr ""
|
6799 |
|
6800 |
+
#: modules/user-listing/userlisting.php:2469
|
6801 |
msgid "Search Settings"
|
6802 |
msgstr ""
|
6803 |
|
6804 |
+
#: modules/user-listing/userlisting.php:2541
|
6805 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6806 |
msgstr ""
|
6807 |
|
6808 |
+
#: modules/user-listing/userlisting.php:2541
|
6809 |
msgid "You can find it in the Profile Builder menu."
|
6810 |
msgstr ""
|
6811 |
|
6812 |
+
#: modules/user-listing/userlisting.php:2704
|
6813 |
msgid "No results found!"
|
6814 |
msgstr ""
|
6815 |
|