Version Description
- Fix: compatibility issue with MailPoet where our menu was showing different items when opened from their pages
- Fix: issue with Select2 not working correctly in the back-end due to to some compatibility issues
- Fix: case where the password visibility feature was not working
Download this release
Release Info
Developer | raster02 |
Plugin | User registration & user profile – Profile Builder |
Version | 3.6.4 |
Comparing to | |
See all releases |
Code changes from version 3.6.3 to 3.6.4
- admin/advanced-settings/advanced-settings.php +2 -1
- assets/js/jquery-manage-fields-live-change.js +2 -0
- assets/js/jquery-pb-sitewide.js +5 -0
- assets/js/script-front-end.js +7 -6
- assets/js/select2-compat.js +5 -0
- assets/lib/wck-api/wordpress-creation-kit.php +2 -1
- assets/misc/plugin-compatibilities.php +22 -0
- features/functions.php +10 -3
- index.php +2 -2
- readme.txt +6 -1
- translation/profile-builder.pot +171 -171
admin/advanced-settings/advanced-settings.php
CHANGED
@@ -28,7 +28,7 @@ if( !class_exists('WPPB_toolbox') ){
|
|
28 |
$this->generate_settings();
|
29 |
|
30 |
add_action( 'admin_menu', array( &$this, 'register_submenu_page' ) );
|
31 |
-
add_action( 'admin_enqueue_scripts', array( &$this, 'enqueue_scripts' ) );
|
32 |
add_action( 'admin_init', array( &$this, 'register_settings' ) );
|
33 |
|
34 |
$this->setup_functions();
|
@@ -148,6 +148,7 @@ if( !class_exists('WPPB_toolbox') ){
|
|
148 |
public function enqueue_scripts( $hook ) {
|
149 |
if ( $hook == 'profile-builder_page_profile-builder-toolbox-settings' ) {
|
150 |
wp_enqueue_script( 'wppb-select2', WPPB_PLUGIN_URL . 'assets/js/select2/select2.min.js', array(), PROFILE_BUILDER_VERSION );
|
|
|
151 |
wp_enqueue_style( 'wppb-select2-style', WPPB_PLUGIN_URL . 'assets/css/select2/select2.min.css', array(), PROFILE_BUILDER_VERSION );
|
152 |
}
|
153 |
}
|
28 |
$this->generate_settings();
|
29 |
|
30 |
add_action( 'admin_menu', array( &$this, 'register_submenu_page' ) );
|
31 |
+
add_action( 'admin_enqueue_scripts', array( &$this, 'enqueue_scripts' ), 9 );
|
32 |
add_action( 'admin_init', array( &$this, 'register_settings' ) );
|
33 |
|
34 |
$this->setup_functions();
|
148 |
public function enqueue_scripts( $hook ) {
|
149 |
if ( $hook == 'profile-builder_page_profile-builder-toolbox-settings' ) {
|
150 |
wp_enqueue_script( 'wppb-select2', WPPB_PLUGIN_URL . 'assets/js/select2/select2.min.js', array(), PROFILE_BUILDER_VERSION );
|
151 |
+
wp_enqueue_script( 'wppb-select2-compat', WPPB_PLUGIN_URL . 'assets/js/select2-compat.js', array(), PROFILE_BUILDER_VERSION );
|
152 |
wp_enqueue_style( 'wppb-select2-style', WPPB_PLUGIN_URL . 'assets/css/select2/select2.min.css', array(), PROFILE_BUILDER_VERSION );
|
153 |
}
|
154 |
}
|
assets/js/jquery-manage-fields-live-change.js
CHANGED
@@ -856,6 +856,8 @@ function wppb_initialize_live_select( container_name ){
|
|
856 |
function wppb_enable_select2(container_name){
|
857 |
// Select2 initialization on manage fields.
|
858 |
|
|
|
|
|
859 |
jQuery( container_name + ' #field').select2({
|
860 |
placeholder: 'Select an option',
|
861 |
allowClear: true
|
856 |
function wppb_enable_select2(container_name){
|
857 |
// Select2 initialization on manage fields.
|
858 |
|
859 |
+
jQuery.fn.select2 = wppbSelect2;
|
860 |
+
|
861 |
jQuery( container_name + ' #field').select2({
|
862 |
placeholder: 'Select an option',
|
863 |
allowClear: true
|
assets/js/jquery-pb-sitewide.js
CHANGED
@@ -141,6 +141,9 @@ jQuery( function() {
|
|
141 |
|
142 |
jQuery( function() {
|
143 |
if( jQuery( '.wppb-private-website' ).length != 0 ) {
|
|
|
|
|
|
|
144 |
jQuery('#private-website-redirect-to-login').select2();
|
145 |
jQuery('#private-website-allowed-pages').select2();
|
146 |
|
@@ -193,6 +196,8 @@ jQuery( function() {
|
|
193 |
jQuery( function() {
|
194 |
if( jQuery('body.profile-builder_page_profile-builder-toolbox-settings').length != 0 ) {
|
195 |
|
|
|
|
|
196 |
jQuery('#toolbox-bypass-ec').select2();
|
197 |
|
198 |
jQuery('#toolbox-restricted-emails').select2({
|
141 |
|
142 |
jQuery( function() {
|
143 |
if( jQuery( '.wppb-private-website' ).length != 0 ) {
|
144 |
+
|
145 |
+
jQuery.fn.select2 = wppbSelect2;
|
146 |
+
|
147 |
jQuery('#private-website-redirect-to-login').select2();
|
148 |
jQuery('#private-website-allowed-pages').select2();
|
149 |
|
196 |
jQuery( function() {
|
197 |
if( jQuery('body.profile-builder_page_profile-builder-toolbox-settings').length != 0 ) {
|
198 |
|
199 |
+
jQuery.fn.select2 = wppbSelect2;
|
200 |
+
|
201 |
jQuery('#toolbox-bypass-ec').select2();
|
202 |
|
203 |
jQuery('#toolbox-restricted-emails').select2({
|
assets/js/script-front-end.js
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
jQuery(document).ready(function(){
|
|
|
2 |
if( jQuery("#wppb-register-user").length ) {
|
3 |
jQuery('#wppb-register-user').on('submit', function (e) {
|
4 |
-
|
5 |
-
e.preventDefault();
|
6 |
//disable the submit button
|
7 |
jQuery('.form-submit #register').attr('disabled', true);
|
8 |
-
|
9 |
-
})
|
10 |
}
|
11 |
|
12 |
//scroll to top on success message
|
@@ -18,5 +18,6 @@ jQuery(document).ready(function(){
|
|
18 |
jQuery(document).on('select2:open', function() {
|
19 |
let allSelect2Found = document.querySelectorAll('.select2-container--open .select2-search__field');
|
20 |
allSelect2Found[allSelect2Found.length - 1].focus();
|
21 |
-
})
|
22 |
-
|
|
1 |
jQuery(document).ready(function(){
|
2 |
+
|
3 |
if( jQuery("#wppb-register-user").length ) {
|
4 |
jQuery('#wppb-register-user').on('submit', function (e) {
|
5 |
+
|
|
|
6 |
//disable the submit button
|
7 |
jQuery('.form-submit #register').attr('disabled', true);
|
8 |
+
|
9 |
+
})
|
10 |
}
|
11 |
|
12 |
//scroll to top on success message
|
18 |
jQuery(document).on('select2:open', function() {
|
19 |
let allSelect2Found = document.querySelectorAll('.select2-container--open .select2-search__field');
|
20 |
allSelect2Found[allSelect2Found.length - 1].focus();
|
21 |
+
})
|
22 |
+
|
23 |
+
})
|
assets/js/select2-compat.js
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
* Allow for compatibility with other Select2 versions loaded by other plugins
|
3 |
+
*/
|
4 |
+
var wppbSelect2 = jQuery.fn.select2;
|
5 |
+
delete jQuery.fn.select2;
|
assets/lib/wck-api/wordpress-creation-kit.php
CHANGED
@@ -83,7 +83,7 @@ class Wordpress_Creation_Kit_PB{
|
|
83 |
$wck_objects[$this->args['metabox_id']] = $this->args;
|
84 |
|
85 |
/*print scripts*/
|
86 |
-
add_action('admin_enqueue_scripts', array( &$this, 'wck_print_scripts' ));
|
87 |
/* add our own ajaxurl because we are going to use the wck script also in frontend and we want to avoid any conflicts */
|
88 |
add_action( 'admin_head', array( &$this, 'wck_print_ajax_url' ) );
|
89 |
|
@@ -702,6 +702,7 @@ class Wordpress_Creation_Kit_PB{
|
|
702 |
|
703 |
//select 2 KEEP the wppb-select2 handle so we don't include it multiple times, seeing we include it from PB as well
|
704 |
wp_enqueue_script( 'wppb-select2', plugins_url( '/assets/js/select2/select2.min.js', __FILE__ ), array(), PROFILE_BUILDER_VERSION, true );
|
|
|
705 |
wp_enqueue_style( 'wppb-select2-style', plugins_url( '/assets/js/select2/select2.min.css', __FILE__ ), false, PROFILE_BUILDER_VERSION );
|
706 |
|
707 |
//datepicker
|
83 |
$wck_objects[$this->args['metabox_id']] = $this->args;
|
84 |
|
85 |
/*print scripts*/
|
86 |
+
add_action('admin_enqueue_scripts', array( &$this, 'wck_print_scripts' ), 9);
|
87 |
/* add our own ajaxurl because we are going to use the wck script also in frontend and we want to avoid any conflicts */
|
88 |
add_action( 'admin_head', array( &$this, 'wck_print_ajax_url' ) );
|
89 |
|
702 |
|
703 |
//select 2 KEEP the wppb-select2 handle so we don't include it multiple times, seeing we include it from PB as well
|
704 |
wp_enqueue_script( 'wppb-select2', plugins_url( '/assets/js/select2/select2.min.js', __FILE__ ), array(), PROFILE_BUILDER_VERSION, true );
|
705 |
+
wp_enqueue_script( 'wppb-select2-compat', WPPB_PLUGIN_URL . 'assets/js/select2-compat.js', array(), PROFILE_BUILDER_VERSION, true );
|
706 |
wp_enqueue_style( 'wppb-select2-style', plugins_url( '/assets/js/select2/select2.min.css', __FILE__ ), false, PROFILE_BUILDER_VERSION );
|
707 |
|
708 |
//datepicker
|
assets/misc/plugin-compatibilities.php
CHANGED
@@ -397,3 +397,25 @@
|
|
397 |
}
|
398 |
}
|
399 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
397 |
}
|
398 |
}
|
399 |
|
400 |
+
/****************************************************
|
401 |
+
* Plugin Name: MailPoet
|
402 |
+
* By default MailPoet disables custom scripts and styles to prevent JavaScript and CSS conflicts with their interface
|
403 |
+
* With these filters we can whitelist our styles and scripts
|
404 |
+
****************************************************/
|
405 |
+
|
406 |
+
function wppb_mailpoet_conflict_resolver_whitelist_style($styles) {
|
407 |
+
$current_file_path = explode('/',plugin_basename( __FILE__ ));
|
408 |
+
$plugin_name = reset($current_file_path);
|
409 |
+
array_push($styles, $plugin_name);
|
410 |
+
return $styles;
|
411 |
+
}
|
412 |
+
add_filter('mailpoet_conflict_resolver_whitelist_style', 'wppb_mailpoet_conflict_resolver_whitelist_style');
|
413 |
+
|
414 |
+
function wppb_mailpoet_conflict_resolver_whitelist_script($scripts) {
|
415 |
+
$current_file_path = explode('/',plugin_basename( __FILE__ ));
|
416 |
+
$plugin_name = reset($current_file_path);
|
417 |
+
array_push($scripts, $plugin_name);
|
418 |
+
return $scripts;
|
419 |
+
}
|
420 |
+
add_filter('mailpoet_conflict_resolver_whitelist_script', 'wppb_mailpoet_conflict_resolver_whitelist_script');
|
421 |
+
|
features/functions.php
CHANGED
@@ -345,7 +345,8 @@ function wppb_print_cpt_script( $hook ){
|
|
345 |
|
346 |
if ( $hook == 'admin_page_profile-builder-private-website' ){
|
347 |
wp_enqueue_script( 'wppb-select2', WPPB_PLUGIN_URL . 'assets/js/select2/select2.min.js', array(), PROFILE_BUILDER_VERSION, true );
|
348 |
-
|
|
|
349 |
}
|
350 |
|
351 |
if (( $hook == 'profile-builder_page_manage-fields' ) ||
|
@@ -401,7 +402,7 @@ function wppb_print_cpt_script( $hook ){
|
|
401 |
|
402 |
wp_enqueue_style( 'wppb-serial-notice-css', WPPB_PLUGIN_URL . 'assets/css/serial-notice.css', false, PROFILE_BUILDER_VERSION );
|
403 |
}
|
404 |
-
add_action( 'admin_enqueue_scripts', 'wppb_print_cpt_script' );
|
405 |
|
406 |
/**
|
407 |
* Highlight the settings page under Profile Builder in the admin menu for these pages
|
@@ -895,6 +896,12 @@ add_action( 'wp_footer', 'wppb_enqueue_password_visibility_toggle' );
|
|
895 |
function wppb_enqueue_password_visibility_toggle() {
|
896 |
global $wppb_shortcode_on_front;
|
897 |
if( $wppb_shortcode_on_front && apply_filters( 'wppb_show_password_visibility_toggle', false ) ){
|
|
|
|
|
|
|
|
|
|
|
|
|
898 |
?>
|
899 |
<script type="text/javascript">
|
900 |
jQuery( document ).ready( function() {
|
@@ -1766,4 +1773,4 @@ function wppb_check_if_add_on_is_active( $slug ){
|
|
1766 |
}
|
1767 |
|
1768 |
return false;
|
1769 |
-
}
|
345 |
|
346 |
if ( $hook == 'admin_page_profile-builder-private-website' ){
|
347 |
wp_enqueue_script( 'wppb-select2', WPPB_PLUGIN_URL . 'assets/js/select2/select2.min.js', array(), PROFILE_BUILDER_VERSION, true );
|
348 |
+
wp_enqueue_script( 'wppb-select2-compat', WPPB_PLUGIN_URL . 'assets/js/select2-compat.js', array(), PROFILE_BUILDER_VERSION, true );
|
349 |
+
wp_enqueue_style( 'wppb-select2-style', WPPB_PLUGIN_URL . 'assets/css/select2/select2.min.css', false, PROFILE_BUILDER_VERSION );
|
350 |
}
|
351 |
|
352 |
if (( $hook == 'profile-builder_page_manage-fields' ) ||
|
402 |
|
403 |
wp_enqueue_style( 'wppb-serial-notice-css', WPPB_PLUGIN_URL . 'assets/css/serial-notice.css', false, PROFILE_BUILDER_VERSION );
|
404 |
}
|
405 |
+
add_action( 'admin_enqueue_scripts', 'wppb_print_cpt_script', 9 );
|
406 |
|
407 |
/**
|
408 |
* Highlight the settings page under Profile Builder in the admin menu for these pages
|
896 |
function wppb_enqueue_password_visibility_toggle() {
|
897 |
global $wppb_shortcode_on_front;
|
898 |
if( $wppb_shortcode_on_front && apply_filters( 'wppb_show_password_visibility_toggle', false ) ){
|
899 |
+
|
900 |
+
//load jQuery if needed
|
901 |
+
if( !wp_script_is('jquery', 'done') ){
|
902 |
+
wp_print_scripts('jquery');
|
903 |
+
}
|
904 |
+
|
905 |
?>
|
906 |
<script type="text/javascript">
|
907 |
jQuery( document ).ready( function() {
|
1773 |
}
|
1774 |
|
1775 |
return false;
|
1776 |
+
}
|
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.6.
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
@@ -70,7 +70,7 @@ function wppb_free_plugin_init() {
|
|
70 |
*
|
71 |
*
|
72 |
*/
|
73 |
-
define('PROFILE_BUILDER_VERSION', '3.6.
|
74 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
75 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
76 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
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.6.4
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
70 |
*
|
71 |
*
|
72 |
*/
|
73 |
+
define('PROFILE_BUILDER_VERSION', '3.6.4' );
|
74 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
75 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
76 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
|
4 |
Tags: user registration, user profile, registration, profile, user registration form, user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 5.9
|
7 |
-
Stable tag: 3.6.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -177,6 +177,11 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
177 |
15. Edit or Add New User Role
|
178 |
|
179 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
180 |
= 3.6.3 =
|
181 |
* Feature: add support for automatically login after email confirmation
|
182 |
* Fix: for admin defined strings which have WPML support. They are now registered in the default site language instead of always being registered in english
|
4 |
Tags: user registration, user profile, registration, profile, user registration form, user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 5.9
|
7 |
+
Stable tag: 3.6.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
177 |
15. Edit or Add New User Role
|
178 |
|
179 |
== Changelog ==
|
180 |
+
= 3.6.4 =
|
181 |
+
* Fix: compatibility issue with MailPoet where our menu was showing different items when opened from their pages
|
182 |
+
* Fix: issue with Select2 not working correctly in the back-end due to to some compatibility issues
|
183 |
+
* Fix: case where the password visibility feature was not working
|
184 |
+
|
185 |
= 3.6.3 =
|
186 |
* Feature: add support for automatically login after email confirmation
|
187 |
* Fix: for admin defined strings which have WPML support. They are now registered in the default site language instead of always being registered in english
|
translation/profile-builder.pot
CHANGED
@@ -25,7 +25,7 @@ msgstr ""
|
|
25 |
msgid "Choose (Single) User Listing to display under bbPress user Profile tab:"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: ../pb-add-on-bbpress/bbpress-page.php:82, ../pb-add-on-bbpress/bbpress-page.php:117, ../pb-add-on-woocommerce/woosync-page.php:80, ../pb-add-on-woocommerce/woosync-page.php:115, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:232, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:307, add-ons/user-listing/userlisting.php:
|
29 |
msgid "None"
|
30 |
msgstr ""
|
31 |
|
@@ -53,7 +53,7 @@ msgstr ""
|
|
53 |
msgid "No"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: ../pb-add-on-bbpress/bbpress-page.php:153, ../pb-add-on-social-connect/index.php:352, ../pb-add-on-social-connect/index.php:411, admin/general-settings.php:149, admin/general-settings.php:162, admin/general-settings.php:177, admin/general-settings.php:226, admin/general-settings.php:273, admin/manage-fields.php:193, admin/private-website.php:70, admin/private-website.php:137, admin/private-website.php:150, add-ons/multiple-forms/edit-profile-forms.php:206, add-ons/multiple-forms/register-forms.php:229, add-ons/multiple-forms/register-forms.php:230, add-ons/user-listing/userlisting.php:
|
57 |
msgid "Yes"
|
58 |
msgstr ""
|
59 |
|
@@ -749,7 +749,7 @@ msgstr ""
|
|
749 |
msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: ../pb-add-on-social-connect/index.php:420, features/admin-approval/admin-approval.php:
|
753 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
754 |
msgstr ""
|
755 |
|
@@ -757,7 +757,7 @@ msgstr ""
|
|
757 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: ../pb-add-on-social-connect/index.php:422, features/functions.php:
|
761 |
msgid "here"
|
762 |
msgstr ""
|
763 |
|
@@ -833,11 +833,11 @@ msgstr ""
|
|
833 |
msgid "Country"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, admin/manage-fields.php:334, add-ons/user-listing/userlisting.php:
|
837 |
msgid "First Name"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, admin/manage-fields.php:335, add-ons/user-listing/userlisting.php:
|
841 |
msgid "Last Name"
|
842 |
msgstr ""
|
843 |
|
@@ -1065,7 +1065,7 @@ msgstr ""
|
|
1065 |
msgid "Edit this item"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:
|
1069 |
msgid "Cancel"
|
1070 |
msgstr ""
|
1071 |
|
@@ -1545,11 +1545,11 @@ msgstr ""
|
|
1545 |
msgid "Show"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: admin/admin-bar.php:81, add-ons/user-listing/userlisting.php:
|
1549 |
msgid "Hide"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: admin/admin-bar.php:92, admin/general-settings.php:346, admin/private-website.php:162, admin/register-version.php:96, features/functions.php:
|
1553 |
msgid "Save Changes"
|
1554 |
msgstr ""
|
1555 |
|
@@ -1573,15 +1573,15 @@ msgstr ""
|
|
1573 |
msgid "Very weak"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: admin/admin-functions.php:138, admin/general-settings.php:333, features/functions.php:
|
1577 |
msgid "Weak"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: admin/admin-functions.php:138, admin/general-settings.php:334, features/functions.php:
|
1581 |
msgid "Medium"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
-
#: admin/admin-functions.php:138, admin/general-settings.php:335, features/functions.php:
|
1585 |
msgid "Strong"
|
1586 |
msgstr ""
|
1587 |
|
@@ -2077,11 +2077,11 @@ msgstr ""
|
|
2077 |
msgid "Username and Email"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#: admin/general-settings.php:302, admin/manage-fields.php:333, front-end/login.php:334, front-end/login.php:348, front-end/login.php:532, add-ons/custom-redirects/custom_redirects_admin.php:60, add-ons/email-customizer/email-customizer.php:28, add-ons/user-listing/userlisting.php:
|
2081 |
msgid "Username"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
#: admin/general-settings.php:303, front-end/login.php:529, front-end/recover.php:118, add-ons/email-customizer/email-customizer.php:29, add-ons/user-listing/userlisting.php:
|
2085 |
msgid "Email"
|
2086 |
msgstr ""
|
2087 |
|
@@ -2161,7 +2161,7 @@ msgstr ""
|
|
2161 |
msgid "Meta-name"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
-
#: admin/manage-fields.php:189, add-ons/custom-redirects/custom_redirects_admin.php:69, add-ons/custom-redirects/custom_redirects_admin.php:99, add-ons/custom-redirects/custom_redirects_admin.php:118, add-ons/custom-redirects/custom_redirects_admin.php:143, add-ons/multiple-forms/edit-profile-forms.php:246, add-ons/multiple-forms/register-forms.php:267, assets/misc/elementor/widgets/class-pb-widget-ul.php:170
|
2165 |
msgid "ID"
|
2166 |
msgstr ""
|
2167 |
|
@@ -2601,7 +2601,7 @@ msgstr ""
|
|
2601 |
msgid "Usernames cannot be changed."
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#: admin/manage-fields.php:336, add-ons/user-listing/userlisting.php:
|
2605 |
msgid "Nickname"
|
2606 |
msgstr ""
|
2607 |
|
@@ -2613,7 +2613,7 @@ msgstr ""
|
|
2613 |
msgid "E-mail"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#: admin/manage-fields.php:340, add-ons/email-customizer/email-customizer.php:33, add-ons/user-listing/userlisting.php:
|
2617 |
msgid "Website"
|
2618 |
msgstr ""
|
2619 |
|
@@ -2629,7 +2629,7 @@ msgstr ""
|
|
2629 |
msgid "Jabber / Google Talk"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
-
#: admin/manage-fields.php:350, add-ons/user-listing/userlisting.php:
|
2633 |
msgid "Biographical Info"
|
2634 |
msgstr ""
|
2635 |
|
@@ -4241,11 +4241,11 @@ msgstr ""
|
|
4241 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
4242 |
msgstr ""
|
4243 |
|
4244 |
-
#: admin/manage-fields.php:1362, features/functions.php:
|
4245 |
msgid "Edit"
|
4246 |
msgstr ""
|
4247 |
|
4248 |
-
#: admin/manage-fields.php:1362, features/functions.php:
|
4249 |
msgid "Delete"
|
4250 |
msgstr ""
|
4251 |
|
@@ -4557,63 +4557,63 @@ msgstr ""
|
|
4557 |
msgid "Honeypot"
|
4558 |
msgstr ""
|
4559 |
|
4560 |
-
#: features/functions.php:
|
4561 |
msgid "Strength indicator"
|
4562 |
msgstr ""
|
4563 |
|
4564 |
-
#: features/functions.php:
|
4565 |
msgid "Very Weak"
|
4566 |
msgstr ""
|
4567 |
|
4568 |
-
#: features/functions.php:
|
4569 |
msgid "Minimum length of %d characters."
|
4570 |
msgstr ""
|
4571 |
|
4572 |
-
#: features/functions.php:
|
4573 |
msgid "The password must have a minimum strength of %s"
|
4574 |
msgstr ""
|
4575 |
|
4576 |
-
#: features/functions.php:
|
4577 |
msgid "This field is required"
|
4578 |
msgstr ""
|
4579 |
|
4580 |
-
#: features/functions.php:
|
4581 |
msgid "Please enter a (valid) reCAPTCHA value"
|
4582 |
msgstr ""
|
4583 |
|
4584 |
-
#: features/functions.php:
|
4585 |
msgid "Incorrect phone number"
|
4586 |
msgstr ""
|
4587 |
|
4588 |
-
#: features/functions.php:
|
4589 |
msgid "Content"
|
4590 |
msgstr ""
|
4591 |
|
4592 |
-
#: features/functions.php:
|
4593 |
msgid "<br><br>Also, you will be able to visit your site at "
|
4594 |
msgstr ""
|
4595 |
|
4596 |
-
#: features/functions.php:
|
4597 |
msgid "<br><br>You can visit your site at "
|
4598 |
msgstr ""
|
4599 |
|
4600 |
-
#: features/functions.php:
|
4601 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4602 |
msgstr ""
|
4603 |
|
4604 |
-
#: features/functions.php:
|
4605 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
4606 |
msgstr ""
|
4607 |
|
4608 |
-
#: features/functions.php:
|
4609 |
msgid "You are not currently logged in."
|
4610 |
msgstr ""
|
4611 |
|
4612 |
-
#: features/functions.php:
|
4613 |
msgid "Profile Builder"
|
4614 |
msgstr ""
|
4615 |
|
4616 |
-
#: features/functions.php:
|
4617 |
msgid "User Meta"
|
4618 |
msgstr ""
|
4619 |
|
@@ -4649,7 +4649,7 @@ msgstr ""
|
|
4649 |
msgid "Only an administrator can add new users."
|
4650 |
msgstr ""
|
4651 |
|
4652 |
-
#: front-end/class-formbuilder.php:302, front-end/login.php:636, assets/lib/wck-api/wordpress-creation-kit.php:
|
4653 |
msgid "You are not allowed to do this."
|
4654 |
msgstr ""
|
4655 |
|
@@ -4954,7 +4954,7 @@ msgstr ""
|
|
4954 |
msgid "Dashboard (redirect users from accessing the dashboard)"
|
4955 |
msgstr ""
|
4956 |
|
4957 |
-
#: add-ons/custom-redirects/custom_redirects_admin.php:59
|
4958 |
msgid "User ID"
|
4959 |
msgstr ""
|
4960 |
|
@@ -5207,7 +5207,7 @@ msgstr ""
|
|
5207 |
msgid "Available Tags"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
-
#: add-ons/email-customizer/email-customizer.php:11, add-ons/user-listing/userlisting.php:
|
5211 |
msgid "User Fields Tags"
|
5212 |
msgstr ""
|
5213 |
|
@@ -5219,7 +5219,7 @@ msgstr ""
|
|
5219 |
msgid "Site Name"
|
5220 |
msgstr ""
|
5221 |
|
5222 |
-
#: add-ons/email-customizer/email-customizer.php:25
|
5223 |
msgid "User Id"
|
5224 |
msgstr ""
|
5225 |
|
@@ -5231,7 +5231,7 @@ msgstr ""
|
|
5231 |
msgid "Reply To"
|
5232 |
msgstr ""
|
5233 |
|
5234 |
-
#: add-ons/email-customizer/email-customizer.php:37, add-ons/user-listing/userlisting.php:
|
5235 |
msgid "Blog URL"
|
5236 |
msgstr ""
|
5237 |
|
@@ -5506,27 +5506,27 @@ msgstr ""
|
|
5506 |
msgid "No Edit-profile Forms found in trash"
|
5507 |
msgstr ""
|
5508 |
|
5509 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:
|
5510 |
msgid "Shortcode"
|
5511 |
msgstr ""
|
5512 |
|
5513 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:
|
5514 |
msgid "(no title)"
|
5515 |
msgstr ""
|
5516 |
|
5517 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:
|
5518 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
5519 |
msgstr ""
|
5520 |
|
5521 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:
|
5522 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
5523 |
msgstr ""
|
5524 |
|
5525 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:
|
5526 |
msgid "The shortcode will be available after you publish this form."
|
5527 |
msgstr ""
|
5528 |
|
5529 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:
|
5530 |
msgid "Form Shortcode"
|
5531 |
msgstr ""
|
5532 |
|
@@ -5686,395 +5686,395 @@ msgstr ""
|
|
5686 |
msgid "No User Listing found in trash"
|
5687 |
msgstr ""
|
5688 |
|
5689 |
-
#: add-ons/user-listing/userlisting.php:
|
5690 |
msgid "Display name as"
|
5691 |
msgstr ""
|
5692 |
|
5693 |
-
#: add-ons/user-listing/userlisting.php:
|
5694 |
msgid "Role"
|
5695 |
msgstr ""
|
5696 |
|
5697 |
-
#: add-ons/user-listing/userlisting.php:
|
5698 |
msgid "Role Slug"
|
5699 |
msgstr ""
|
5700 |
|
5701 |
-
#: add-ons/user-listing/userlisting.php:
|
5702 |
msgid "Registration Date"
|
5703 |
msgstr ""
|
5704 |
|
5705 |
-
#: add-ons/user-listing/userlisting.php:
|
5706 |
msgid "Number of Posts"
|
5707 |
msgstr ""
|
5708 |
|
5709 |
-
#: add-ons/user-listing/userlisting.php:
|
5710 |
msgid "More Info"
|
5711 |
msgstr ""
|
5712 |
|
5713 |
-
#: add-ons/user-listing/userlisting.php:
|
5714 |
msgid "More Info Url"
|
5715 |
msgstr ""
|
5716 |
|
5717 |
-
#: add-ons/user-listing/userlisting.php:
|
5718 |
msgid "Avatar or Gravatar"
|
5719 |
msgstr ""
|
5720 |
|
5721 |
-
#: add-ons/user-listing/userlisting.php:
|
5722 |
msgid "User Nicename"
|
5723 |
msgstr ""
|
5724 |
|
5725 |
-
#: add-ons/user-listing/userlisting.php:
|
5726 |
msgid "Pagination"
|
5727 |
msgstr ""
|
5728 |
|
5729 |
-
#: add-ons/user-listing/userlisting.php:
|
5730 |
msgid "Search all Fields"
|
5731 |
msgstr ""
|
5732 |
|
5733 |
-
#: add-ons/user-listing/userlisting.php:
|
5734 |
msgid "Faceted Menus"
|
5735 |
msgstr ""
|
5736 |
|
5737 |
-
#: add-ons/user-listing/userlisting.php:
|
5738 |
msgid "User Count"
|
5739 |
msgstr ""
|
5740 |
|
5741 |
-
#: add-ons/user-listing/userlisting.php:
|
5742 |
msgid "Map of listed users"
|
5743 |
msgstr ""
|
5744 |
|
5745 |
-
#: add-ons/user-listing/userlisting.php:
|
5746 |
msgid "Sort Tags"
|
5747 |
msgstr ""
|
5748 |
|
5749 |
-
#: add-ons/user-listing/userlisting.php:
|
5750 |
msgid "Extra Functions"
|
5751 |
msgstr ""
|
5752 |
|
5753 |
-
#: add-ons/user-listing/userlisting.php:
|
5754 |
msgid "Go Back Link"
|
5755 |
msgstr ""
|
5756 |
|
5757 |
-
#: add-ons/user-listing/userlisting.php:
|
5758 |
msgid "All-userlisting Template"
|
5759 |
msgstr ""
|
5760 |
|
5761 |
-
#: add-ons/user-listing/userlisting.php:
|
5762 |
msgid "Single-userlisting Template"
|
5763 |
msgstr ""
|
5764 |
|
5765 |
-
#: add-ons/user-listing/userlisting.php:
|
5766 |
msgid "Avatar"
|
5767 |
msgstr ""
|
5768 |
|
5769 |
-
#: add-ons/user-listing/userlisting.php:
|
5770 |
msgid "Firstname"
|
5771 |
msgstr ""
|
5772 |
|
5773 |
-
#: add-ons/user-listing/userlisting.php:
|
5774 |
msgid "Posts"
|
5775 |
msgstr ""
|
5776 |
|
5777 |
-
#: add-ons/user-listing/userlisting.php:
|
5778 |
msgid "Sign-up Date"
|
5779 |
msgstr ""
|
5780 |
|
5781 |
-
#: add-ons/user-listing/userlisting.php:
|
5782 |
msgid "More"
|
5783 |
msgstr ""
|
5784 |
|
5785 |
-
#: add-ons/user-listing/userlisting.php:
|
5786 |
msgid "You do not have permission to view this user list."
|
5787 |
msgstr ""
|
5788 |
|
5789 |
-
#: add-ons/user-listing/userlisting.php:
|
5790 |
msgid "You do not have the required user role to view this user list."
|
5791 |
msgstr ""
|
5792 |
|
5793 |
-
#: add-ons/user-listing/userlisting.php:
|
5794 |
msgid "User not found"
|
5795 |
msgstr ""
|
5796 |
|
5797 |
-
#: add-ons/user-listing/userlisting.php:
|
5798 |
msgid "Jabber"
|
5799 |
msgstr ""
|
5800 |
|
5801 |
-
#: add-ons/user-listing/userlisting.php:
|
5802 |
msgid "Yim"
|
5803 |
msgstr ""
|
5804 |
|
5805 |
-
#: add-ons/user-listing/userlisting.php:
|
5806 |
msgid "Aim"
|
5807 |
msgstr ""
|
5808 |
|
5809 |
-
#: add-ons/user-listing/userlisting.php:
|
5810 |
msgid "Display Name"
|
5811 |
msgstr ""
|
5812 |
|
5813 |
-
#: add-ons/user-listing/userlisting.php:
|
5814 |
msgid "First/Lastname"
|
5815 |
msgstr ""
|
5816 |
|
5817 |
-
#: add-ons/user-listing/userlisting.php:
|
5818 |
msgid "Search Users by All Fields"
|
5819 |
msgstr ""
|
5820 |
|
5821 |
-
#: add-ons/user-listing/userlisting.php:
|
5822 |
msgid "Click here to see more information about this user."
|
5823 |
msgstr ""
|
5824 |
|
5825 |
-
#: add-ons/user-listing/userlisting.php:
|
5826 |
msgid "Click here to see more information about this user"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
-
#: add-ons/user-listing/userlisting.php:
|
5830 |
msgid "More..."
|
5831 |
msgstr ""
|
5832 |
|
5833 |
-
#: add-ons/user-listing/userlisting.php:
|
5834 |
msgid "Remove Marker"
|
5835 |
msgstr ""
|
5836 |
|
5837 |
-
#: add-ons/user-listing/userlisting.php:
|
5838 |
msgid "View Map"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
-
#: add-ons/user-listing/userlisting.php:
|
5842 |
msgid "Click here to go back"
|
5843 |
msgstr ""
|
5844 |
|
5845 |
-
#: add-ons/user-listing/userlisting.php:
|
5846 |
msgid "Back"
|
5847 |
msgstr ""
|
5848 |
|
5849 |
-
#: add-ons/user-listing/userlisting.php:
|
5850 |
msgid "You don't have any pagination settings on this userlisting!"
|
5851 |
msgstr ""
|
5852 |
|
5853 |
-
#: add-ons/user-listing/userlisting.php:
|
5854 |
msgid "«« First"
|
5855 |
msgstr ""
|
5856 |
|
5857 |
-
#: add-ons/user-listing/userlisting.php:
|
5858 |
msgid "« Prev"
|
5859 |
msgstr ""
|
5860 |
|
5861 |
-
#: add-ons/user-listing/userlisting.php:
|
5862 |
msgid "Next » "
|
5863 |
msgstr ""
|
5864 |
|
5865 |
-
#: add-ons/user-listing/userlisting.php:
|
5866 |
msgid "Last »»"
|
5867 |
msgstr ""
|
5868 |
|
5869 |
-
#: add-ons/user-listing/userlisting.php:
|
5870 |
msgid "Show All"
|
5871 |
msgstr ""
|
5872 |
|
5873 |
-
#: add-ons/user-listing/userlisting.php:
|
5874 |
msgid "Choose..."
|
5875 |
msgstr ""
|
5876 |
|
5877 |
-
#: add-ons/user-listing/userlisting.php:
|
5878 |
msgid "Choose or type in an option..."
|
5879 |
msgstr ""
|
5880 |
|
5881 |
-
#: add-ons/user-listing/userlisting.php:
|
5882 |
msgid "No options available"
|
5883 |
msgstr ""
|
5884 |
|
5885 |
-
#: add-ons/user-listing/userlisting.php:
|
5886 |
msgid "Remove All Filters"
|
5887 |
msgstr ""
|
5888 |
|
5889 |
-
#: add-ons/user-listing/userlisting.php:
|
5890 |
msgid "Search"
|
5891 |
msgstr ""
|
5892 |
|
5893 |
-
#: add-ons/user-listing/userlisting.php:
|
5894 |
msgid "Clear Results"
|
5895 |
msgstr ""
|
5896 |
|
5897 |
-
#: add-ons/user-listing/userlisting.php:
|
5898 |
msgid "Extra shortcode parameters"
|
5899 |
msgstr ""
|
5900 |
|
5901 |
-
#: add-ons/user-listing/userlisting.php:
|
5902 |
msgid "View all extra shortcode parameters"
|
5903 |
msgstr ""
|
5904 |
|
5905 |
-
#: add-ons/user-listing/userlisting.php:
|
5906 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
5907 |
msgstr ""
|
5908 |
|
5909 |
-
#: add-ons/user-listing/userlisting.php:
|
5910 |
msgid "Example:"
|
5911 |
msgstr ""
|
5912 |
|
5913 |
-
#: add-ons/user-listing/userlisting.php:
|
5914 |
msgid "Remember though, that the field-value combination must exist in the database."
|
5915 |
msgstr ""
|
5916 |
|
5917 |
-
#: add-ons/user-listing/userlisting.php:
|
5918 |
msgid "displays only the users that you specified the user_id for"
|
5919 |
msgstr ""
|
5920 |
|
5921 |
-
#: add-ons/user-listing/userlisting.php:
|
5922 |
msgid "displays all users except the ones you specified the user_id for"
|
5923 |
msgstr ""
|
5924 |
|
5925 |
-
#: add-ons/user-listing/userlisting.php:
|
5926 |
msgid "Lastname"
|
5927 |
msgstr ""
|
5928 |
|
5929 |
-
#: add-ons/user-listing/userlisting.php:
|
5930 |
msgid "Random (very slow on large databases > 10K user)"
|
5931 |
msgstr ""
|
5932 |
|
5933 |
-
#: add-ons/user-listing/userlisting.php:
|
5934 |
msgid "Ascending"
|
5935 |
msgstr ""
|
5936 |
|
5937 |
-
#: add-ons/user-listing/userlisting.php:
|
5938 |
msgid "Descending"
|
5939 |
msgstr ""
|
5940 |
|
5941 |
-
#: add-ons/user-listing/userlisting.php:
|
5942 |
msgid "Roles to Display"
|
5943 |
msgstr ""
|
5944 |
|
5945 |
-
#: add-ons/user-listing/userlisting.php:
|
5946 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
5947 |
msgstr ""
|
5948 |
|
5949 |
-
#: add-ons/user-listing/userlisting.php:
|
5950 |
msgid "Number of Users/Page"
|
5951 |
msgstr ""
|
5952 |
|
5953 |
-
#: add-ons/user-listing/userlisting.php:
|
5954 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
5955 |
msgstr ""
|
5956 |
|
5957 |
-
#: add-ons/user-listing/userlisting.php:
|
5958 |
msgid "Default Sorting Criteria"
|
5959 |
msgstr ""
|
5960 |
|
5961 |
-
#: add-ons/user-listing/userlisting.php:
|
5962 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
5963 |
msgstr ""
|
5964 |
|
5965 |
-
#: add-ons/user-listing/userlisting.php:
|
5966 |
msgid "Default Sorting Order"
|
5967 |
msgstr ""
|
5968 |
|
5969 |
-
#: add-ons/user-listing/userlisting.php:
|
5970 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
5971 |
msgstr ""
|
5972 |
|
5973 |
-
#: add-ons/user-listing/userlisting.php:
|
5974 |
msgid "Avatar Size (All-userlisting)"
|
5975 |
msgstr ""
|
5976 |
|
5977 |
-
#: add-ons/user-listing/userlisting.php:
|
5978 |
msgid "Set the avatar size on the all-userlisting only"
|
5979 |
msgstr ""
|
5980 |
|
5981 |
-
#: add-ons/user-listing/userlisting.php:
|
5982 |
msgid "Avatar Size (Single-userlisting)"
|
5983 |
msgstr ""
|
5984 |
|
5985 |
-
#: add-ons/user-listing/userlisting.php:
|
5986 |
msgid "Set the avatar size on the single-userlisting only"
|
5987 |
msgstr ""
|
5988 |
|
5989 |
-
#: add-ons/user-listing/userlisting.php:
|
5990 |
msgid "Visible only to logged in users?"
|
5991 |
msgstr ""
|
5992 |
|
5993 |
-
#: add-ons/user-listing/userlisting.php:
|
5994 |
msgid "The userlisting will only be visible only to the logged in users"
|
5995 |
msgstr ""
|
5996 |
|
5997 |
-
#: add-ons/user-listing/userlisting.php:
|
5998 |
msgid "Visible to following Roles"
|
5999 |
msgstr ""
|
6000 |
|
6001 |
-
#: add-ons/user-listing/userlisting.php:
|
6002 |
msgid "The userlisting will only be visible to the following roles"
|
6003 |
msgstr ""
|
6004 |
|
6005 |
-
#: add-ons/user-listing/userlisting.php:
|
6006 |
msgid "Userlisting Settings"
|
6007 |
msgstr ""
|
6008 |
|
6009 |
-
#: add-ons/user-listing/userlisting.php:
|
6010 |
msgid "Label"
|
6011 |
msgstr ""
|
6012 |
|
6013 |
-
#: add-ons/user-listing/userlisting.php:
|
6014 |
msgid "Choose the facet name that appears on the frontend"
|
6015 |
msgstr ""
|
6016 |
|
6017 |
-
#: add-ons/user-listing/userlisting.php:
|
6018 |
msgid "Facet Type"
|
6019 |
msgstr ""
|
6020 |
|
6021 |
-
#: add-ons/user-listing/userlisting.php:
|
6022 |
msgid "Choose the facet menu type"
|
6023 |
msgstr ""
|
6024 |
|
6025 |
-
#: add-ons/user-listing/userlisting.php:
|
6026 |
msgid "Facet Meta"
|
6027 |
msgstr ""
|
6028 |
|
6029 |
-
#: add-ons/user-listing/userlisting.php:
|
6030 |
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."
|
6031 |
msgstr ""
|
6032 |
|
6033 |
-
#: add-ons/user-listing/userlisting.php:
|
6034 |
msgid "Behaviour"
|
6035 |
msgstr ""
|
6036 |
|
6037 |
-
#: add-ons/user-listing/userlisting.php:
|
6038 |
msgid "Narrow the results"
|
6039 |
msgstr ""
|
6040 |
|
6041 |
-
#: add-ons/user-listing/userlisting.php:
|
6042 |
msgid "Expand the results"
|
6043 |
msgstr ""
|
6044 |
|
6045 |
-
#: add-ons/user-listing/userlisting.php:
|
6046 |
msgid "Choose how multiple selections affect the results"
|
6047 |
msgstr ""
|
6048 |
|
6049 |
-
#: add-ons/user-listing/userlisting.php:
|
6050 |
msgid "Visible choices"
|
6051 |
msgstr ""
|
6052 |
|
6053 |
-
#: add-ons/user-listing/userlisting.php:
|
6054 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6055 |
msgstr ""
|
6056 |
|
6057 |
-
#: add-ons/user-listing/userlisting.php:
|
6058 |
msgid "Search Fields"
|
6059 |
msgstr ""
|
6060 |
|
6061 |
-
#: add-ons/user-listing/userlisting.php:
|
6062 |
msgid "Choose the fields in which the Search Field will look in"
|
6063 |
msgstr ""
|
6064 |
|
6065 |
-
#: add-ons/user-listing/userlisting.php:
|
6066 |
msgid "Search Settings"
|
6067 |
msgstr ""
|
6068 |
|
6069 |
-
#: add-ons/user-listing/userlisting.php:
|
6070 |
msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
|
6071 |
msgstr ""
|
6072 |
|
6073 |
-
#: add-ons/user-listing/userlisting.php:
|
6074 |
msgid "You can find it in the Profile Builder menu."
|
6075 |
msgstr ""
|
6076 |
|
6077 |
-
#: add-ons/user-listing/userlisting.php:
|
6078 |
msgid "No results found!"
|
6079 |
msgstr ""
|
6080 |
|
@@ -6090,23 +6090,23 @@ msgstr ""
|
|
6090 |
msgid "Your submission contains banned words."
|
6091 |
msgstr ""
|
6092 |
|
6093 |
-
#: admin/advanced-settings/advanced-settings.php:
|
6094 |
msgid "are"
|
6095 |
msgstr ""
|
6096 |
|
6097 |
-
#: admin/advanced-settings/advanced-settings.php:
|
6098 |
msgid "have"
|
6099 |
msgstr ""
|
6100 |
|
6101 |
-
#: admin/advanced-settings/advanced-settings.php:
|
6102 |
msgid "is"
|
6103 |
msgstr ""
|
6104 |
|
6105 |
-
#: admin/advanced-settings/advanced-settings.php:
|
6106 |
msgid "has"
|
6107 |
msgstr ""
|
6108 |
|
6109 |
-
#: admin/advanced-settings/advanced-settings.php:
|
6110 |
msgid "%1$s of the emails provided in the Admin Emails field %2$s invalid and %3$s been removed from the list"
|
6111 |
msgstr ""
|
6112 |
|
@@ -6114,7 +6114,7 @@ msgstr ""
|
|
6114 |
msgid "Your account has to be confirmed by an administrator before you can log in."
|
6115 |
msgstr ""
|
6116 |
|
6117 |
-
#: features/admin-approval/admin-approval.php:27, features/admin-approval/admin-approval.php:
|
6118 |
msgid "Admin Approval"
|
6119 |
msgstr ""
|
6120 |
|
@@ -6126,7 +6126,7 @@ msgstr ""
|
|
6126 |
msgid "Your session has expired! Please refresh the page and try again."
|
6127 |
msgstr ""
|
6128 |
|
6129 |
-
#: features/admin-approval/admin-approval.php:102, features/admin-approval/admin-approval.php:
|
6130 |
msgid "You either don't have permission for that action or there was an error!"
|
6131 |
msgstr ""
|
6132 |
|
@@ -6134,15 +6134,15 @@ msgstr ""
|
|
6134 |
msgid "User successfully deleted!"
|
6135 |
msgstr ""
|
6136 |
|
6137 |
-
#: features/admin-approval/admin-approval.php:90, features/admin-approval/admin-approval.php:
|
6138 |
msgid "User successfully unapproved!"
|
6139 |
msgstr ""
|
6140 |
|
6141 |
-
#: features/admin-approval/admin-approval.php:80, features/admin-approval/admin-approval.php:
|
6142 |
msgid "User successfully approved!"
|
6143 |
msgstr ""
|
6144 |
|
6145 |
-
#: features/admin-approval/admin-approval.php:
|
6146 |
msgid "Users successfully deleted!"
|
6147 |
msgstr ""
|
6148 |
|
@@ -6154,67 +6154,67 @@ msgstr ""
|
|
6154 |
msgid "Users successfully approved!"
|
6155 |
msgstr ""
|
6156 |
|
6157 |
-
#: features/admin-approval/admin-approval.php:
|
6158 |
msgid "Your account on %1$s has been unapproved!"
|
6159 |
msgstr ""
|
6160 |
|
6161 |
-
#: features/admin-approval/admin-approval.php:
|
6162 |
msgid "unapproved"
|
6163 |
msgstr ""
|
6164 |
|
6165 |
-
#: features/admin-approval/admin-approval.php:
|
6166 |
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
6167 |
msgstr ""
|
6168 |
|
6169 |
-
#: features/admin-approval/admin-approval.php:
|
6170 |
msgid "Your account on %1$s has been approved!"
|
6171 |
msgstr ""
|
6172 |
|
6173 |
-
#: features/admin-approval/admin-approval.php:
|
6174 |
msgid "approved"
|
6175 |
msgstr ""
|
6176 |
|
6177 |
-
#: features/admin-approval/admin-approval.php:
|
6178 |
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
6179 |
msgstr ""
|
6180 |
|
6181 |
-
#: features/admin-approval/admin-approval.php:
|
6182 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
|
6183 |
msgstr ""
|
6184 |
|
6185 |
-
#: features/admin-approval/admin-approval.php:
|
6186 |
msgid "Your account has been successfully created!"
|
6187 |
msgstr ""
|
6188 |
|
6189 |
-
#: features/admin-approval/admin-approval.php:
|
6190 |
msgid "Something went wrong!"
|
6191 |
msgstr ""
|
6192 |
|
6193 |
-
#: features/admin-approval/admin-approval.php:
|
6194 |
msgid "Admin Approval Error"
|
6195 |
msgstr ""
|
6196 |
|
6197 |
-
#: features/admin-approval/admin-approval.php:
|
6198 |
msgid "User not approved!"
|
6199 |
msgstr ""
|
6200 |
|
6201 |
-
#: features/admin-approval/admin-approval.php:
|
6202 |
msgid "Admin Approval Declined"
|
6203 |
msgstr ""
|
6204 |
|
6205 |
-
#: features/admin-approval/admin-approval.php:
|
6206 |
msgid "Do you wish to unapprove the registration?"
|
6207 |
msgstr ""
|
6208 |
|
6209 |
-
#: features/admin-approval/admin-approval.php:
|
6210 |
msgid "Do you wish to approve the registration?"
|
6211 |
msgstr ""
|
6212 |
|
6213 |
-
#: features/admin-approval/admin-approval.php:
|
6214 |
msgid "The approval link is not valid! Please <a href=\"%s\"> log in </a> to approve the user manually. "
|
6215 |
msgstr ""
|
6216 |
|
6217 |
-
#: features/admin-approval/admin-approval.php:
|
6218 |
msgid "Admin Approval Unsuccessful"
|
6219 |
msgstr ""
|
6220 |
|
@@ -6979,7 +6979,7 @@ msgstr ""
|
|
6979 |
msgid "Delete this item"
|
6980 |
msgstr ""
|
6981 |
|
6982 |
-
#: assets/lib/wck-api/wordpress-creation-kit.php:
|
6983 |
msgid "Please enter a value for the required field "
|
6984 |
msgstr ""
|
6985 |
|
25 |
msgid "Choose (Single) User Listing to display under bbPress user Profile tab:"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: ../pb-add-on-bbpress/bbpress-page.php:82, ../pb-add-on-bbpress/bbpress-page.php:117, ../pb-add-on-woocommerce/woosync-page.php:80, ../pb-add-on-woocommerce/woosync-page.php:115, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:232, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:307, add-ons/user-listing/userlisting.php:591, add-ons/user-listing/userlisting.php:588, add-ons/user-listing/userlisting.php:586, add-ons/user-listing/userlisting.php:569, add-ons/user-listing/userlisting.php:566, add-ons/user-listing/userlisting.php:564, features/content-restriction/content-restriction.php:136
|
29 |
msgid "None"
|
30 |
msgstr ""
|
31 |
|
53 |
msgid "No"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: ../pb-add-on-bbpress/bbpress-page.php:153, ../pb-add-on-social-connect/index.php:352, ../pb-add-on-social-connect/index.php:411, admin/general-settings.php:149, admin/general-settings.php:162, admin/general-settings.php:177, admin/general-settings.php:226, admin/general-settings.php:273, admin/manage-fields.php:193, admin/private-website.php:70, admin/private-website.php:137, admin/private-website.php:150, add-ons/multiple-forms/edit-profile-forms.php:206, add-ons/multiple-forms/register-forms.php:229, add-ons/multiple-forms/register-forms.php:230, add-ons/user-listing/userlisting.php:2573, features/content-restriction/content-restriction.php:89, features/two-factor-authentication/class-two-factor-authentication.php:125, admin/advanced-settings/includes/forms/placeholder-labels.php:135, admin/advanced-settings/includes/views/view-admin.php:18, admin/advanced-settings/includes/views/view-admin.php:34, admin/advanced-settings/includes/views/view-admin.php:50, admin/advanced-settings/includes/views/view-admin.php:69, admin/advanced-settings/includes/views/view-admin.php:100, admin/advanced-settings/includes/views/view-fields.php:18, admin/advanced-settings/includes/views/view-fields.php:66, admin/advanced-settings/includes/views/view-fields.php:181, admin/advanced-settings/includes/views/view-fields.php:197, admin/advanced-settings/includes/views/view-fields.php:217, admin/advanced-settings/includes/views/view-fields.php:240, admin/advanced-settings/includes/views/view-fields.php:260, admin/advanced-settings/includes/views/view-fields.php:277, admin/advanced-settings/includes/views/view-fields.php:295, admin/advanced-settings/includes/views/view-forms.php:19, admin/advanced-settings/includes/views/view-forms.php:148, admin/advanced-settings/includes/views/view-forms.php:166, admin/advanced-settings/includes/views/view-forms.php:183, admin/advanced-settings/includes/views/view-forms.php:198, admin/advanced-settings/includes/views/view-forms.php:218, admin/advanced-settings/includes/views/view-forms.php:235, admin/advanced-settings/includes/views/view-forms.php:271, admin/advanced-settings/includes/views/view-forms.php:292, admin/advanced-settings/includes/views/view-forms.php:312, admin/advanced-settings/includes/views/view-forms.php:334, admin/advanced-settings/includes/views/view-forms.php:356, admin/advanced-settings/includes/views/view-forms.php:376, admin/advanced-settings/includes/views/view-shortcodes.php:16, admin/advanced-settings/includes/views/view-shortcodes.php:32, admin/advanced-settings/includes/views/view-shortcodes.php:48, admin/advanced-settings/includes/views/view-shortcodes.php:64, admin/advanced-settings/includes/views/view-userlisting.php:53, admin/advanced-settings/includes/views/view-userlisting.php:75, assets/misc/elementor/widgets/class-pb-widget-l.php:75, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:179, assets/misc/elementor/widgets/class-pb-widget-ul.php:107
|
57 |
msgid "Yes"
|
58 |
msgstr ""
|
59 |
|
749 |
msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: ../pb-add-on-social-connect/index.php:420, features/admin-approval/admin-approval.php:195
|
753 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
754 |
msgstr ""
|
755 |
|
757 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: ../pb-add-on-social-connect/index.php:422, features/functions.php:1355
|
761 |
msgid "here"
|
762 |
msgstr ""
|
763 |
|
833 |
msgid "Country"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, admin/manage-fields.php:334, add-ons/user-listing/userlisting.php:890, admin/advanced-settings/includes/views/view-fields.php:127
|
837 |
msgid "First Name"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, admin/manage-fields.php:335, add-ons/user-listing/userlisting.php:893, admin/advanced-settings/includes/views/view-fields.php:133
|
841 |
msgid "Last Name"
|
842 |
msgstr ""
|
843 |
|
1065 |
msgid "Edit this item"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:1044, features/roles-editor/roles-editor.php:181, assets/lib/wck-api/wordpress-creation-kit.php:406
|
1069 |
msgid "Cancel"
|
1070 |
msgstr ""
|
1071 |
|
1545 |
msgid "Show"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: admin/admin-bar.php:81, add-ons/user-listing/userlisting.php:1782
|
1549 |
msgid "Hide"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: admin/admin-bar.php:92, admin/general-settings.php:346, admin/private-website.php:162, admin/register-version.php:96, features/functions.php:1037, features/content-restriction/content-restriction.php:162, features/two-factor-authentication/class-two-factor-authentication.php:156, assets/lib/class-mustache-templates/class-mustache-templates.php:392, assets/lib/wck-api/wordpress-creation-kit.php:405, admin/advanced-settings/includes/views/view-admin.php:112, admin/advanced-settings/includes/views/view-fields.php:309, admin/advanced-settings/includes/views/view-forms.php:392, admin/advanced-settings/includes/views/view-shortcodes.php:77, admin/advanced-settings/includes/views/view-userlisting.php:91
|
1553 |
msgid "Save Changes"
|
1554 |
msgstr ""
|
1555 |
|
1573 |
msgid "Very weak"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: admin/admin-functions.php:138, admin/general-settings.php:333, features/functions.php:780, features/functions.php:804
|
1577 |
msgid "Weak"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: admin/admin-functions.php:138, admin/general-settings.php:334, features/functions.php:780, features/functions.php:804
|
1581 |
msgid "Medium"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: admin/admin-functions.php:138, admin/general-settings.php:335, features/functions.php:780, features/functions.php:804
|
1585 |
msgid "Strong"
|
1586 |
msgstr ""
|
1587 |
|
2077 |
msgid "Username and Email"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: admin/general-settings.php:302, admin/manage-fields.php:333, front-end/login.php:334, front-end/login.php:348, front-end/login.php:532, add-ons/custom-redirects/custom_redirects_admin.php:60, add-ons/email-customizer/email-customizer.php:28, add-ons/user-listing/userlisting.php:113, add-ons/user-listing/userlisting.php:336, add-ons/user-listing/userlisting.php:878, add-ons/user-listing/userlisting.php:2526, features/admin-approval/class-admin-approval.php:174, features/email-confirmation/class-email-confirmation.php:168, admin/advanced-settings/includes/views/view-fields.php:121
|
2081 |
msgid "Username"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: admin/general-settings.php:303, front-end/login.php:529, front-end/recover.php:118, add-ons/email-customizer/email-customizer.php:29, add-ons/user-listing/userlisting.php:119, add-ons/user-listing/userlisting.php:884, add-ons/user-listing/userlisting.php:2527, features/admin-approval/class-admin-approval.php:177, features/email-confirmation/class-email-confirmation.php:169, admin/advanced-settings/includes/shortcodes/resend-activation.php:9
|
2085 |
msgid "Email"
|
2086 |
msgstr ""
|
2087 |
|
2161 |
msgid "Meta-name"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: admin/manage-fields.php:189, add-ons/custom-redirects/custom_redirects_admin.php:69, add-ons/custom-redirects/custom_redirects_admin.php:99, add-ons/custom-redirects/custom_redirects_admin.php:118, add-ons/custom-redirects/custom_redirects_admin.php:143, add-ons/multiple-forms/edit-profile-forms.php:246, add-ons/multiple-forms/register-forms.php:267, add-ons/user-listing/userlisting.php:923, assets/misc/elementor/widgets/class-pb-widget-ul.php:170
|
2165 |
msgid "ID"
|
2166 |
msgstr ""
|
2167 |
|
2601 |
msgid "Usernames cannot be changed."
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: admin/manage-fields.php:336, add-ons/user-listing/userlisting.php:917, add-ons/user-listing/userlisting.php:2535
|
2605 |
msgid "Nickname"
|
2606 |
msgstr ""
|
2607 |
|
2613 |
msgid "E-mail"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: admin/manage-fields.php:340, add-ons/email-customizer/email-customizer.php:33, add-ons/user-listing/userlisting.php:122, add-ons/user-listing/userlisting.php:899, add-ons/user-listing/userlisting.php:2529
|
2617 |
msgid "Website"
|
2618 |
msgstr ""
|
2619 |
|
2629 |
msgid "Jabber / Google Talk"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: admin/manage-fields.php:350, add-ons/user-listing/userlisting.php:125, add-ons/user-listing/userlisting.php:902, add-ons/user-listing/userlisting.php:2530
|
2633 |
msgid "Biographical Info"
|
2634 |
msgstr ""
|
2635 |
|
4241 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
4242 |
msgstr ""
|
4243 |
|
4244 |
+
#: admin/manage-fields.php:1362, features/functions.php:1058, features/functions.php:1065, add-ons/custom-redirects/custom_redirects_admin.php:183, add-ons/custom-redirects/custom_redirects_admin.php:197, add-ons/custom-redirects/custom_redirects_admin.php:211, add-ons/custom-redirects/custom_redirects_admin.php:225, add-ons/multiple-forms/multiple-forms.php:411, features/admin-approval/class-admin-approval.php:111, features/roles-editor/roles-editor.php:869, assets/lib/wck-api/wordpress-creation-kit.php:447, assets/lib/wck-api/wordpress-creation-kit.php:548
|
4245 |
msgid "Edit"
|
4246 |
msgstr ""
|
4247 |
|
4248 |
+
#: admin/manage-fields.php:1362, features/functions.php:1051, features/functions.php:1065, add-ons/custom-redirects/custom_redirects_admin.php:183, add-ons/custom-redirects/custom_redirects_admin.php:197, add-ons/custom-redirects/custom_redirects_admin.php:211, add-ons/custom-redirects/custom_redirects_admin.php:225, features/admin-approval/class-admin-approval.php:116, features/admin-approval/class-admin-approval.php:232, features/email-confirmation/class-email-confirmation.php:121, features/email-confirmation/class-email-confirmation.php:218, features/roles-editor/roles-editor.php:180, features/roles-editor/roles-editor.php:907, features/roles-editor/roles-editor.php:896, features/roles-editor/roles-editor.php:887, assets/lib/wck-api/wordpress-creation-kit.php:447, assets/lib/wck-api/wordpress-creation-kit.php:549, front-end/default-fields/gdpr-delete/gdpr-delete.php:20
|
4249 |
msgid "Delete"
|
4250 |
msgstr ""
|
4251 |
|
4557 |
msgid "Honeypot"
|
4558 |
msgstr ""
|
4559 |
|
4560 |
+
#: features/functions.php:754
|
4561 |
msgid "Strength indicator"
|
4562 |
msgstr ""
|
4563 |
|
4564 |
+
#: features/functions.php:780, features/functions.php:804
|
4565 |
msgid "Very Weak"
|
4566 |
msgstr ""
|
4567 |
|
4568 |
+
#: features/functions.php:794
|
4569 |
msgid "Minimum length of %d characters."
|
4570 |
msgstr ""
|
4571 |
|
4572 |
+
#: features/functions.php:805, front-end/recover.php:384, front-end/default-fields/password/password.php:59
|
4573 |
msgid "The password must have a minimum strength of %s"
|
4574 |
msgstr ""
|
4575 |
|
4576 |
+
#: features/functions.php:956
|
4577 |
msgid "This field is required"
|
4578 |
msgstr ""
|
4579 |
|
4580 |
+
#: features/functions.php:994, front-end/default-fields/recaptcha/recaptcha.php:533, front-end/default-fields/recaptcha/recaptcha.php:524, front-end/default-fields/recaptcha/recaptcha.php:589, front-end/default-fields/recaptcha/recaptcha.php:637
|
4581 |
msgid "Please enter a (valid) reCAPTCHA value"
|
4582 |
msgstr ""
|
4583 |
|
4584 |
+
#: features/functions.php:1001
|
4585 |
msgid "Incorrect phone number"
|
4586 |
msgstr ""
|
4587 |
|
4588 |
+
#: features/functions.php:1065, assets/lib/wck-api/wordpress-creation-kit.php:447
|
4589 |
msgid "Content"
|
4590 |
msgstr ""
|
4591 |
|
4592 |
+
#: features/functions.php:1253
|
4593 |
msgid "<br><br>Also, you will be able to visit your site at "
|
4594 |
msgstr ""
|
4595 |
|
4596 |
+
#: features/functions.php:1266
|
4597 |
msgid "<br><br>You can visit your site at "
|
4598 |
msgstr ""
|
4599 |
|
4600 |
+
#: features/functions.php:1356
|
4601 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4602 |
msgstr ""
|
4603 |
|
4604 |
+
#: features/functions.php:1532
|
4605 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
4606 |
msgstr ""
|
4607 |
|
4608 |
+
#: features/functions.php:1573
|
4609 |
msgid "You are not currently logged in."
|
4610 |
msgstr ""
|
4611 |
|
4612 |
+
#: features/functions.php:1610
|
4613 |
msgid "Profile Builder"
|
4614 |
msgstr ""
|
4615 |
|
4616 |
+
#: features/functions.php:1628, features/email-confirmation/class-email-confirmation.php:92, features/email-confirmation/class-email-confirmation.php:171
|
4617 |
msgid "User Meta"
|
4618 |
msgstr ""
|
4619 |
|
4649 |
msgid "Only an administrator can add new users."
|
4650 |
msgstr ""
|
4651 |
|
4652 |
+
#: front-end/class-formbuilder.php:302, front-end/login.php:636, assets/lib/wck-api/wordpress-creation-kit.php:787
|
4653 |
msgid "You are not allowed to do this."
|
4654 |
msgstr ""
|
4655 |
|
4954 |
msgid "Dashboard (redirect users from accessing the dashboard)"
|
4955 |
msgstr ""
|
4956 |
|
4957 |
+
#: add-ons/custom-redirects/custom_redirects_admin.php:59, add-ons/user-listing/userlisting.php:168, add-ons/user-listing/userlisting.php:2528
|
4958 |
msgid "User ID"
|
4959 |
msgstr ""
|
4960 |
|
5207 |
msgid "Available Tags"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
+
#: add-ons/email-customizer/email-customizer.php:11, add-ons/user-listing/userlisting.php:252
|
5211 |
msgid "User Fields Tags"
|
5212 |
msgstr ""
|
5213 |
|
5219 |
msgid "Site Name"
|
5220 |
msgstr ""
|
5221 |
|
5222 |
+
#: add-ons/email-customizer/email-customizer.php:25
|
5223 |
msgid "User Id"
|
5224 |
msgstr ""
|
5225 |
|
5231 |
msgid "Reply To"
|
5232 |
msgstr ""
|
5233 |
|
5234 |
+
#: add-ons/email-customizer/email-customizer.php:37, add-ons/user-listing/userlisting.php:129
|
5235 |
msgid "Blog URL"
|
5236 |
msgstr ""
|
5237 |
|
5506 |
msgid "No Edit-profile Forms found in trash"
|
5507 |
msgstr ""
|
5508 |
|
5509 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:2422
|
5510 |
msgid "Shortcode"
|
5511 |
msgstr ""
|
5512 |
|
5513 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:2443
|
5514 |
msgid "(no title)"
|
5515 |
msgstr ""
|
5516 |
|
5517 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:2465
|
5518 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
5519 |
msgstr ""
|
5520 |
|
5521 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:2469
|
5522 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
5523 |
msgstr ""
|
5524 |
|
5525 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:2463
|
5526 |
msgid "The shortcode will be available after you publish this form."
|
5527 |
msgstr ""
|
5528 |
|
5529 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:2502
|
5530 |
msgid "Form Shortcode"
|
5531 |
msgstr ""
|
5532 |
|
5686 |
msgid "No User Listing found in trash"
|
5687 |
msgstr ""
|
5688 |
|
5689 |
+
#: add-ons/user-listing/userlisting.php:116
|
5690 |
msgid "Display name as"
|
5691 |
msgstr ""
|
5692 |
|
5693 |
+
#: add-ons/user-listing/userlisting.php:169, add-ons/user-listing/userlisting.php:338, add-ons/user-listing/userlisting.php:920, add-ons/user-listing/userlisting.php:2537, features/admin-approval/class-admin-approval.php:178, features/roles-editor/roles-editor.php:256
|
5694 |
msgid "Role"
|
5695 |
msgstr ""
|
5696 |
|
5697 |
+
#: add-ons/user-listing/userlisting.php:170, features/roles-editor/roles-editor.php:366, features/roles-editor/roles-editor.php:530
|
5698 |
msgid "Role Slug"
|
5699 |
msgstr ""
|
5700 |
|
5701 |
+
#: add-ons/user-listing/userlisting.php:171, add-ons/user-listing/userlisting.php:2531
|
5702 |
msgid "Registration Date"
|
5703 |
msgstr ""
|
5704 |
|
5705 |
+
#: add-ons/user-listing/userlisting.php:172, add-ons/user-listing/userlisting.php:2536
|
5706 |
msgid "Number of Posts"
|
5707 |
msgstr ""
|
5708 |
|
5709 |
+
#: add-ons/user-listing/userlisting.php:176
|
5710 |
msgid "More Info"
|
5711 |
msgstr ""
|
5712 |
|
5713 |
+
#: add-ons/user-listing/userlisting.php:177
|
5714 |
msgid "More Info Url"
|
5715 |
msgstr ""
|
5716 |
|
5717 |
+
#: add-ons/user-listing/userlisting.php:178
|
5718 |
msgid "Avatar or Gravatar"
|
5719 |
msgstr ""
|
5720 |
|
5721 |
+
#: add-ons/user-listing/userlisting.php:179
|
5722 |
msgid "User Nicename"
|
5723 |
msgstr ""
|
5724 |
|
5725 |
+
#: add-ons/user-listing/userlisting.php:221
|
5726 |
msgid "Pagination"
|
5727 |
msgstr ""
|
5728 |
|
5729 |
+
#: add-ons/user-listing/userlisting.php:222
|
5730 |
msgid "Search all Fields"
|
5731 |
msgstr ""
|
5732 |
|
5733 |
+
#: add-ons/user-listing/userlisting.php:223, add-ons/user-listing/userlisting.php:2615
|
5734 |
msgid "Faceted Menus"
|
5735 |
msgstr ""
|
5736 |
|
5737 |
+
#: add-ons/user-listing/userlisting.php:224
|
5738 |
msgid "User Count"
|
5739 |
msgstr ""
|
5740 |
|
5741 |
+
#: add-ons/user-listing/userlisting.php:231
|
5742 |
msgid "Map of listed users"
|
5743 |
msgstr ""
|
5744 |
|
5745 |
+
#: add-ons/user-listing/userlisting.php:258
|
5746 |
msgid "Sort Tags"
|
5747 |
msgstr ""
|
5748 |
|
5749 |
+
#: add-ons/user-listing/userlisting.php:262, add-ons/user-listing/userlisting.php:286
|
5750 |
msgid "Extra Functions"
|
5751 |
msgstr ""
|
5752 |
|
5753 |
+
#: add-ons/user-listing/userlisting.php:288
|
5754 |
msgid "Go Back Link"
|
5755 |
msgstr ""
|
5756 |
|
5757 |
+
#: add-ons/user-listing/userlisting.php:306
|
5758 |
msgid "All-userlisting Template"
|
5759 |
msgstr ""
|
5760 |
|
5761 |
+
#: add-ons/user-listing/userlisting.php:309
|
5762 |
msgid "Single-userlisting Template"
|
5763 |
msgstr ""
|
5764 |
|
5765 |
+
#: add-ons/user-listing/userlisting.php:335
|
5766 |
msgid "Avatar"
|
5767 |
msgstr ""
|
5768 |
|
5769 |
+
#: add-ons/user-listing/userlisting.php:337, add-ons/user-listing/userlisting.php:2532, features/admin-approval/class-admin-approval.php:175
|
5770 |
msgid "Firstname"
|
5771 |
msgstr ""
|
5772 |
|
5773 |
+
#: add-ons/user-listing/userlisting.php:339, add-ons/user-listing/userlisting.php:905, features/roles-editor/roles-editor.php:451
|
5774 |
msgid "Posts"
|
5775 |
msgstr ""
|
5776 |
|
5777 |
+
#: add-ons/user-listing/userlisting.php:340, add-ons/user-listing/userlisting.php:887
|
5778 |
msgid "Sign-up Date"
|
5779 |
msgstr ""
|
5780 |
|
5781 |
+
#: add-ons/user-listing/userlisting.php:341
|
5782 |
msgid "More"
|
5783 |
msgstr ""
|
5784 |
|
5785 |
+
#: add-ons/user-listing/userlisting.php:436
|
5786 |
msgid "You do not have permission to view this user list."
|
5787 |
msgstr ""
|
5788 |
|
5789 |
+
#: add-ons/user-listing/userlisting.php:449
|
5790 |
msgid "You do not have the required user role to view this user list."
|
5791 |
msgstr ""
|
5792 |
|
5793 |
+
#: add-ons/user-listing/userlisting.php:473
|
5794 |
msgid "User not found"
|
5795 |
msgstr ""
|
5796 |
|
5797 |
+
#: add-ons/user-listing/userlisting.php:914, add-ons/user-listing/userlisting.php:2543
|
5798 |
msgid "Jabber"
|
5799 |
msgstr ""
|
5800 |
|
5801 |
+
#: add-ons/user-listing/userlisting.php:911, add-ons/user-listing/userlisting.php:2542
|
5802 |
msgid "Yim"
|
5803 |
msgstr ""
|
5804 |
|
5805 |
+
#: add-ons/user-listing/userlisting.php:908, add-ons/user-listing/userlisting.php:2541
|
5806 |
msgid "Aim"
|
5807 |
msgstr ""
|
5808 |
|
5809 |
+
#: add-ons/user-listing/userlisting.php:896, add-ons/user-listing/userlisting.php:2534
|
5810 |
msgid "Display Name"
|
5811 |
msgstr ""
|
5812 |
|
5813 |
+
#: add-ons/user-listing/userlisting.php:881
|
5814 |
msgid "First/Lastname"
|
5815 |
msgstr ""
|
5816 |
|
5817 |
+
#: add-ons/user-listing/userlisting.php:1209, add-ons/user-listing/userlisting.php:1713, add-ons/user-listing/userlisting.php:2249, add-ons/user-listing/userlisting.php:2735
|
5818 |
msgid "Search Users by All Fields"
|
5819 |
msgstr ""
|
5820 |
|
5821 |
+
#: add-ons/user-listing/userlisting.php:1494
|
5822 |
msgid "Click here to see more information about this user."
|
5823 |
msgstr ""
|
5824 |
|
5825 |
+
#: add-ons/user-listing/userlisting.php:1491
|
5826 |
msgid "Click here to see more information about this user"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
+
#: add-ons/user-listing/userlisting.php:1491, add-ons/user-listing/userlisting.php:1491
|
5830 |
msgid "More..."
|
5831 |
msgstr ""
|
5832 |
|
5833 |
+
#: add-ons/user-listing/userlisting.php:1539, front-end/extra-fields/map/map.php:12
|
5834 |
msgid "Remove Marker"
|
5835 |
msgstr ""
|
5836 |
|
5837 |
+
#: add-ons/user-listing/userlisting.php:1521
|
5838 |
msgid "View Map"
|
5839 |
msgstr ""
|
5840 |
|
5841 |
+
#: add-ons/user-listing/userlisting.php:1670, add-ons/user-listing/userlisting.php:1667
|
5842 |
msgid "Click here to go back"
|
5843 |
msgstr ""
|
5844 |
|
5845 |
+
#: add-ons/user-listing/userlisting.php:1667, add-ons/user-listing/userlisting.php:1667
|
5846 |
msgid "Back"
|
5847 |
msgstr ""
|
5848 |
|
5849 |
+
#: add-ons/user-listing/userlisting.php:1732
|
5850 |
msgid "You don't have any pagination settings on this userlisting!"
|
5851 |
msgstr ""
|
5852 |
|
5853 |
+
#: add-ons/user-listing/userlisting.php:1700
|
5854 |
msgid "«« First"
|
5855 |
msgstr ""
|
5856 |
|
5857 |
+
#: add-ons/user-listing/userlisting.php:1701
|
5858 |
msgid "« Prev"
|
5859 |
msgstr ""
|
5860 |
|
5861 |
+
#: add-ons/user-listing/userlisting.php:1702
|
5862 |
msgid "Next » "
|
5863 |
msgstr ""
|
5864 |
|
5865 |
+
#: add-ons/user-listing/userlisting.php:1703
|
5866 |
msgid "Last »»"
|
5867 |
msgstr ""
|
5868 |
|
5869 |
+
#: add-ons/user-listing/userlisting.php:1781
|
5870 |
msgid "Show All"
|
5871 |
msgstr ""
|
5872 |
|
5873 |
+
#: add-ons/user-listing/userlisting.php:1857, admin/advanced-settings/includes/views/view-fields.php:78
|
5874 |
msgid "Choose..."
|
5875 |
msgstr ""
|
5876 |
|
5877 |
+
#: add-ons/user-listing/userlisting.php:1893
|
5878 |
msgid "Choose or type in an option..."
|
5879 |
msgstr ""
|
5880 |
|
5881 |
+
#: add-ons/user-listing/userlisting.php:1996
|
5882 |
msgid "No options available"
|
5883 |
msgstr ""
|
5884 |
|
5885 |
+
#: add-ons/user-listing/userlisting.php:2151
|
5886 |
msgid "Remove All Filters"
|
5887 |
msgstr ""
|
5888 |
|
5889 |
+
#: add-ons/user-listing/userlisting.php:2266
|
5890 |
msgid "Search"
|
5891 |
msgstr ""
|
5892 |
|
5893 |
+
#: add-ons/user-listing/userlisting.php:2267
|
5894 |
msgid "Clear Results"
|
5895 |
msgstr ""
|
5896 |
|
5897 |
+
#: add-ons/user-listing/userlisting.php:2472, add-ons/user-listing/userlisting.php:2476
|
5898 |
msgid "Extra shortcode parameters"
|
5899 |
msgstr ""
|
5900 |
|
5901 |
+
#: add-ons/user-listing/userlisting.php:2474
|
5902 |
msgid "View all extra shortcode parameters"
|
5903 |
msgstr ""
|
5904 |
|
5905 |
+
#: add-ons/user-listing/userlisting.php:2479
|
5906 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
5907 |
msgstr ""
|
5908 |
|
5909 |
+
#: add-ons/user-listing/userlisting.php:2480
|
5910 |
msgid "Example:"
|
5911 |
msgstr ""
|
5912 |
|
5913 |
+
#: add-ons/user-listing/userlisting.php:2482
|
5914 |
msgid "Remember though, that the field-value combination must exist in the database."
|
5915 |
msgstr ""
|
5916 |
|
5917 |
+
#: add-ons/user-listing/userlisting.php:2488
|
5918 |
msgid "displays only the users that you specified the user_id for"
|
5919 |
msgstr ""
|
5920 |
|
5921 |
+
#: add-ons/user-listing/userlisting.php:2494
|
5922 |
msgid "displays all users except the ones you specified the user_id for"
|
5923 |
msgstr ""
|
5924 |
|
5925 |
+
#: add-ons/user-listing/userlisting.php:2533, features/admin-approval/class-admin-approval.php:176
|
5926 |
msgid "Lastname"
|
5927 |
msgstr ""
|
5928 |
|
5929 |
+
#: add-ons/user-listing/userlisting.php:2558
|
5930 |
msgid "Random (very slow on large databases > 10K user)"
|
5931 |
msgstr ""
|
5932 |
|
5933 |
+
#: add-ons/user-listing/userlisting.php:2561
|
5934 |
msgid "Ascending"
|
5935 |
msgstr ""
|
5936 |
|
5937 |
+
#: add-ons/user-listing/userlisting.php:2562
|
5938 |
msgid "Descending"
|
5939 |
msgstr ""
|
5940 |
|
5941 |
+
#: add-ons/user-listing/userlisting.php:2567
|
5942 |
msgid "Roles to Display"
|
5943 |
msgstr ""
|
5944 |
|
5945 |
+
#: add-ons/user-listing/userlisting.php:2567
|
5946 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
5947 |
msgstr ""
|
5948 |
|
5949 |
+
#: add-ons/user-listing/userlisting.php:2568
|
5950 |
msgid "Number of Users/Page"
|
5951 |
msgstr ""
|
5952 |
|
5953 |
+
#: add-ons/user-listing/userlisting.php:2568
|
5954 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
5955 |
msgstr ""
|
5956 |
|
5957 |
+
#: add-ons/user-listing/userlisting.php:2569
|
5958 |
msgid "Default Sorting Criteria"
|
5959 |
msgstr ""
|
5960 |
|
5961 |
+
#: add-ons/user-listing/userlisting.php:2569
|
5962 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
5963 |
msgstr ""
|
5964 |
|
5965 |
+
#: add-ons/user-listing/userlisting.php:2570
|
5966 |
msgid "Default Sorting Order"
|
5967 |
msgstr ""
|
5968 |
|
5969 |
+
#: add-ons/user-listing/userlisting.php:2570
|
5970 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
5971 |
msgstr ""
|
5972 |
|
5973 |
+
#: add-ons/user-listing/userlisting.php:2571
|
5974 |
msgid "Avatar Size (All-userlisting)"
|
5975 |
msgstr ""
|
5976 |
|
5977 |
+
#: add-ons/user-listing/userlisting.php:2571
|
5978 |
msgid "Set the avatar size on the all-userlisting only"
|
5979 |
msgstr ""
|
5980 |
|
5981 |
+
#: add-ons/user-listing/userlisting.php:2572
|
5982 |
msgid "Avatar Size (Single-userlisting)"
|
5983 |
msgstr ""
|
5984 |
|
5985 |
+
#: add-ons/user-listing/userlisting.php:2572
|
5986 |
msgid "Set the avatar size on the single-userlisting only"
|
5987 |
msgstr ""
|
5988 |
|
5989 |
+
#: add-ons/user-listing/userlisting.php:2573
|
5990 |
msgid "Visible only to logged in users?"
|
5991 |
msgstr ""
|
5992 |
|
5993 |
+
#: add-ons/user-listing/userlisting.php:2573
|
5994 |
msgid "The userlisting will only be visible only to the logged in users"
|
5995 |
msgstr ""
|
5996 |
|
5997 |
+
#: add-ons/user-listing/userlisting.php:2574
|
5998 |
msgid "Visible to following Roles"
|
5999 |
msgstr ""
|
6000 |
|
6001 |
+
#: add-ons/user-listing/userlisting.php:2574
|
6002 |
msgid "The userlisting will only be visible to the following roles"
|
6003 |
msgstr ""
|
6004 |
|
6005 |
+
#: add-ons/user-listing/userlisting.php:2580
|
6006 |
msgid "Userlisting Settings"
|
6007 |
msgstr ""
|
6008 |
|
6009 |
+
#: add-ons/user-listing/userlisting.php:2605
|
6010 |
msgid "Label"
|
6011 |
msgstr ""
|
6012 |
|
6013 |
+
#: add-ons/user-listing/userlisting.php:2605
|
6014 |
msgid "Choose the facet name that appears on the frontend"
|
6015 |
msgstr ""
|
6016 |
|
6017 |
+
#: add-ons/user-listing/userlisting.php:2606
|
6018 |
msgid "Facet Type"
|
6019 |
msgstr ""
|
6020 |
|
6021 |
+
#: add-ons/user-listing/userlisting.php:2606
|
6022 |
msgid "Choose the facet menu type"
|
6023 |
msgstr ""
|
6024 |
|
6025 |
+
#: add-ons/user-listing/userlisting.php:2607
|
6026 |
msgid "Facet Meta"
|
6027 |
msgstr ""
|
6028 |
|
6029 |
+
#: add-ons/user-listing/userlisting.php:2607
|
6030 |
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."
|
6031 |
msgstr ""
|
6032 |
|
6033 |
+
#: add-ons/user-listing/userlisting.php:2608
|
6034 |
msgid "Behaviour"
|
6035 |
msgstr ""
|
6036 |
|
6037 |
+
#: add-ons/user-listing/userlisting.php:2608
|
6038 |
msgid "Narrow the results"
|
6039 |
msgstr ""
|
6040 |
|
6041 |
+
#: add-ons/user-listing/userlisting.php:2608
|
6042 |
msgid "Expand the results"
|
6043 |
msgstr ""
|
6044 |
|
6045 |
+
#: add-ons/user-listing/userlisting.php:2608
|
6046 |
msgid "Choose how multiple selections affect the results"
|
6047 |
msgstr ""
|
6048 |
|
6049 |
+
#: add-ons/user-listing/userlisting.php:2609
|
6050 |
msgid "Visible choices"
|
6051 |
msgstr ""
|
6052 |
|
6053 |
+
#: add-ons/user-listing/userlisting.php:2609
|
6054 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6055 |
msgstr ""
|
6056 |
|
6057 |
+
#: add-ons/user-listing/userlisting.php:2634
|
6058 |
msgid "Search Fields"
|
6059 |
msgstr ""
|
6060 |
|
6061 |
+
#: add-ons/user-listing/userlisting.php:2634
|
6062 |
msgid "Choose the fields in which the Search Field will look in"
|
6063 |
msgstr ""
|
6064 |
|
6065 |
+
#: add-ons/user-listing/userlisting.php:2639
|
6066 |
msgid "Search Settings"
|
6067 |
msgstr ""
|
6068 |
|
6069 |
+
#: add-ons/user-listing/userlisting.php:2711
|
6070 |
msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
|
6071 |
msgstr ""
|
6072 |
|
6073 |
+
#: add-ons/user-listing/userlisting.php:2711
|
6074 |
msgid "You can find it in the Profile Builder menu."
|
6075 |
msgstr ""
|
6076 |
|
6077 |
+
#: add-ons/user-listing/userlisting.php:2874
|
6078 |
msgid "No results found!"
|
6079 |
msgstr ""
|
6080 |
|
6090 |
msgid "Your submission contains banned words."
|
6091 |
msgstr ""
|
6092 |
|
6093 |
+
#: admin/advanced-settings/advanced-settings.php:187
|
6094 |
msgid "are"
|
6095 |
msgstr ""
|
6096 |
|
6097 |
+
#: admin/advanced-settings/advanced-settings.php:188
|
6098 |
msgid "have"
|
6099 |
msgstr ""
|
6100 |
|
6101 |
+
#: admin/advanced-settings/advanced-settings.php:184
|
6102 |
msgid "is"
|
6103 |
msgstr ""
|
6104 |
|
6105 |
+
#: admin/advanced-settings/advanced-settings.php:185
|
6106 |
msgid "has"
|
6107 |
msgstr ""
|
6108 |
|
6109 |
+
#: admin/advanced-settings/advanced-settings.php:191
|
6110 |
msgid "%1$s of the emails provided in the Admin Emails field %2$s invalid and %3$s been removed from the list"
|
6111 |
msgstr ""
|
6112 |
|
6114 |
msgid "Your account has to be confirmed by an administrator before you can log in."
|
6115 |
msgstr ""
|
6116 |
|
6117 |
+
#: features/admin-approval/admin-approval.php:27, features/admin-approval/admin-approval.php:396, features/admin-approval/admin-approval.php:380, features/admin-approval/class-admin-approval.php:472, features/admin-approval/class-admin-approval.php:545
|
6118 |
msgid "Admin Approval"
|
6119 |
msgstr ""
|
6120 |
|
6126 |
msgid "Your session has expired! Please refresh the page and try again."
|
6127 |
msgstr ""
|
6128 |
|
6129 |
+
#: features/admin-approval/admin-approval.php:102, features/admin-approval/admin-approval.php:149, features/email-confirmation/email-confirmation.php:134
|
6130 |
msgid "You either don't have permission for that action or there was an error!"
|
6131 |
msgstr ""
|
6132 |
|
6134 |
msgid "User successfully deleted!"
|
6135 |
msgstr ""
|
6136 |
|
6137 |
+
#: features/admin-approval/admin-approval.php:90, features/admin-approval/admin-approval.php:394
|
6138 |
msgid "User successfully unapproved!"
|
6139 |
msgstr ""
|
6140 |
|
6141 |
+
#: features/admin-approval/admin-approval.php:80, features/admin-approval/admin-approval.php:378
|
6142 |
msgid "User successfully approved!"
|
6143 |
msgstr ""
|
6144 |
|
6145 |
+
#: features/admin-approval/admin-approval.php:145
|
6146 |
msgid "Users successfully deleted!"
|
6147 |
msgstr ""
|
6148 |
|
6154 |
msgid "Users successfully approved!"
|
6155 |
msgstr ""
|
6156 |
|
6157 |
+
#: features/admin-approval/admin-approval.php:173
|
6158 |
msgid "Your account on %1$s has been unapproved!"
|
6159 |
msgstr ""
|
6160 |
|
6161 |
+
#: features/admin-approval/admin-approval.php:174, features/admin-approval/admin-approval.php:177
|
6162 |
msgid "unapproved"
|
6163 |
msgstr ""
|
6164 |
|
6165 |
+
#: features/admin-approval/admin-approval.php:176
|
6166 |
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
6167 |
msgstr ""
|
6168 |
|
6169 |
+
#: features/admin-approval/admin-approval.php:165
|
6170 |
msgid "Your account on %1$s has been approved!"
|
6171 |
msgstr ""
|
6172 |
|
6173 |
+
#: features/admin-approval/admin-approval.php:166, features/admin-approval/admin-approval.php:169
|
6174 |
msgid "approved"
|
6175 |
msgstr ""
|
6176 |
|
6177 |
+
#: features/admin-approval/admin-approval.php:168
|
6178 |
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
6179 |
msgstr ""
|
6180 |
|
6181 |
+
#: features/admin-approval/admin-approval.php:207
|
6182 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
|
6183 |
msgstr ""
|
6184 |
|
6185 |
+
#: features/admin-approval/admin-approval.php:246
|
6186 |
msgid "Your account has been successfully created!"
|
6187 |
msgstr ""
|
6188 |
|
6189 |
+
#: features/admin-approval/admin-approval.php:333
|
6190 |
msgid "Something went wrong!"
|
6191 |
msgstr ""
|
6192 |
|
6193 |
+
#: features/admin-approval/admin-approval.php:335
|
6194 |
msgid "Admin Approval Error"
|
6195 |
msgstr ""
|
6196 |
|
6197 |
+
#: features/admin-approval/admin-approval.php:329
|
6198 |
msgid "User not approved!"
|
6199 |
msgstr ""
|
6200 |
|
6201 |
+
#: features/admin-approval/admin-approval.php:331
|
6202 |
msgid "Admin Approval Declined"
|
6203 |
msgstr ""
|
6204 |
|
6205 |
+
#: features/admin-approval/admin-approval.php:309
|
6206 |
msgid "Do you wish to unapprove the registration?"
|
6207 |
msgstr ""
|
6208 |
|
6209 |
+
#: features/admin-approval/admin-approval.php:307
|
6210 |
msgid "Do you wish to approve the registration?"
|
6211 |
msgstr ""
|
6212 |
|
6213 |
+
#: features/admin-approval/admin-approval.php:354
|
6214 |
msgid "The approval link is not valid! Please <a href=\"%s\"> log in </a> to approve the user manually. "
|
6215 |
msgstr ""
|
6216 |
|
6217 |
+
#: features/admin-approval/admin-approval.php:357
|
6218 |
msgid "Admin Approval Unsuccessful"
|
6219 |
msgstr ""
|
6220 |
|
6979 |
msgid "Delete this item"
|
6980 |
msgstr ""
|
6981 |
|
6982 |
+
#: assets/lib/wck-api/wordpress-creation-kit.php:738
|
6983 |
msgid "Please enter a value for the required field "
|
6984 |
msgstr ""
|
6985 |
|