Version Description
- Fix: An issue when a default form was used in an Elementor widget
- Fix: An issue with the Toolbox option to Save Last Login Date
- Fix: GDPR Communication Preferences field is not validated correctly
- Misc: Added translation support for the roles in the Select User Role field
Download this release
Release Info
Developer | raster02 |
Plugin | User registration & user profile – Profile Builder |
Version | 3.4.3 |
Comparing to | |
See all releases |
Code changes from version 3.4.2 to 3.4.3
- add-ons-free/gdpr-communication-preferences/front-end/gdpr-communication-preferences.php +1 -1
- admin/advanced-settings/includes/forms/save-last-login.php +1 -1
- assets/misc/elementor/widgets/class-pb-widget-base.php +8 -2
- front-end/default-fields/user-role/user-role.php +2 -2
- index.php +2 -2
- readme.txt +7 -1
- translation/profile-builder.pot +74 -74
add-ons-free/gdpr-communication-preferences/front-end/gdpr-communication-preferences.php
CHANGED
@@ -142,7 +142,7 @@ function wppb_check_gdprcp_value( $message, $field, $request_data, $form_locatio
|
|
142 |
|
143 |
return $message;
|
144 |
}
|
145 |
-
add_filter( '
|
146 |
|
147 |
|
148 |
/**
|
142 |
|
143 |
return $message;
|
144 |
}
|
145 |
+
add_filter( 'wppb_check_form_field_gdpr-communication-preferences', 'wppb_check_gdprcp_value', 10, 4 );
|
146 |
|
147 |
|
148 |
/**
|
admin/advanced-settings/includes/forms/save-last-login.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
add_action( 'wp_login', 'wppb_toolbox_count_user_logins', 20, 2 );
|
4 |
function wppb_toolbox_count_user_logins( $user_login, $user ) {
|
5 |
-
if ( empty($user->ID) ) return;
|
6 |
|
7 |
$now = new DateTime( 'now', wp_timezone() );
|
8 |
update_user_meta( $user->ID, 'last_login_date', apply_filters( 'wppb_convert_date_format', $now->format( 'Y-m-d H:i:s' ) ) );
|
2 |
|
3 |
add_action( 'wp_login', 'wppb_toolbox_count_user_logins', 20, 2 );
|
4 |
function wppb_toolbox_count_user_logins( $user_login, $user ) {
|
5 |
+
if ( empty($user->ID) || !function_exists( 'wp_timezone' ) ) return;
|
6 |
|
7 |
$now = new DateTime( 'now', wp_timezone() );
|
8 |
update_user_meta( $user->ID, 'last_login_date', apply_filters( 'wppb_convert_date_format', $now->format( 'Y-m-d H:i:s' ) ) );
|
assets/misc/elementor/widgets/class-pb-widget-base.php
CHANGED
@@ -260,10 +260,13 @@ abstract class PB_Elementor_Widget extends \Elementor\Widget_Base {
|
|
260 |
case 'rf':
|
261 |
include_once(WPPB_PLUGIN_DIR . '/front-end/register.php');
|
262 |
include_once(WPPB_PLUGIN_DIR . '/front-end/class-formbuilder.php');
|
263 |
-
$form_name = '
|
264 |
if (array_key_exists('pb_form_name', $settings)) {
|
265 |
$form_name = substr($settings['pb_form_name'], 1);
|
266 |
}
|
|
|
|
|
|
|
267 |
$atts = [
|
268 |
'role' => $settings['pb_role'],
|
269 |
'form_name' => $form_name,
|
@@ -275,10 +278,13 @@ abstract class PB_Elementor_Widget extends \Elementor\Widget_Base {
|
|
275 |
case 'epf':
|
276 |
include_once(WPPB_PLUGIN_DIR . '/front-end/edit-profile.php');
|
277 |
include_once(WPPB_PLUGIN_DIR . '/front-end/class-formbuilder.php');
|
278 |
-
$form_name = '
|
279 |
if (array_key_exists('pb_form_name', $settings)) {
|
280 |
$form_name = substr($settings['pb_form_name'], 1);
|
281 |
}
|
|
|
|
|
|
|
282 |
$atts = [
|
283 |
'form_name' => $form_name,
|
284 |
'redirect_url' => $settings['pb_redirect_url'],
|
260 |
case 'rf':
|
261 |
include_once(WPPB_PLUGIN_DIR . '/front-end/register.php');
|
262 |
include_once(WPPB_PLUGIN_DIR . '/front-end/class-formbuilder.php');
|
263 |
+
$form_name = '';
|
264 |
if (array_key_exists('pb_form_name', $settings)) {
|
265 |
$form_name = substr($settings['pb_form_name'], 1);
|
266 |
}
|
267 |
+
if (!$form_name || $form_name === ''){
|
268 |
+
$form_name = 'unspecified';
|
269 |
+
}
|
270 |
$atts = [
|
271 |
'role' => $settings['pb_role'],
|
272 |
'form_name' => $form_name,
|
278 |
case 'epf':
|
279 |
include_once(WPPB_PLUGIN_DIR . '/front-end/edit-profile.php');
|
280 |
include_once(WPPB_PLUGIN_DIR . '/front-end/class-formbuilder.php');
|
281 |
+
$form_name = '';
|
282 |
if (array_key_exists('pb_form_name', $settings)) {
|
283 |
$form_name = substr($settings['pb_form_name'], 1);
|
284 |
}
|
285 |
+
if (!$form_name || $form_name === ''){
|
286 |
+
$form_name = 'unspecified';
|
287 |
+
}
|
288 |
$atts = [
|
289 |
'form_name' => $form_name,
|
290 |
'redirect_url' => $settings['pb_redirect_url'],
|
front-end/default-fields/user-role/user-role.php
CHANGED
@@ -89,7 +89,7 @@ function wppb_user_role_handler( $output, $form_location, $field, $user_id, $fie
|
|
89 |
$output .= selected( $input_value, $user_role['slug'], false );
|
90 |
}
|
91 |
|
92 |
-
$output .= '>'. $user_role['name'] .'</option>';
|
93 |
}
|
94 |
}
|
95 |
|
@@ -223,4 +223,4 @@ function wppb_userdata_add_user_role( $userdata, $global_request, $form_args ){
|
|
223 |
|
224 |
return $userdata;
|
225 |
}
|
226 |
-
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_user_role', 10, 3 );
|
89 |
$output .= selected( $input_value, $user_role['slug'], false );
|
90 |
}
|
91 |
|
92 |
+
$output .= '>'. translate_user_role( $user_role['name'] ) .'</option>';
|
93 |
}
|
94 |
}
|
95 |
|
223 |
|
224 |
return $userdata;
|
225 |
}
|
226 |
+
add_filter( 'wppb_build_userdata', 'wppb_userdata_add_user_role', 10, 3 );
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
-
Version: 3.4.
|
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.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__));
|
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.4.3
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
70 |
*
|
71 |
*
|
72 |
*/
|
73 |
+
define('PROFILE_BUILDER_VERSION', '3.4.3' );
|
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, user registration form, user fields, registration, 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
|
7 |
-
Stable tag: 3.4.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -170,6 +170,12 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
170 |
15. Edit or Add New User Role
|
171 |
|
172 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
= 3.4.2 =
|
174 |
* Fix: An issue where the Username field was not required
|
175 |
* Misc: Add $form_name parameter to edit other users dropdown display and user role filters
|
4 |
Tags: user registration, user profile, user registration form, user fields, registration, 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
|
7 |
+
Stable tag: 3.4.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
170 |
15. Edit or Add New User Role
|
171 |
|
172 |
== Changelog ==
|
173 |
+
= 3.4.3 =
|
174 |
+
* Fix: An issue when a default form was used in an Elementor widget
|
175 |
+
* Fix: An issue with the Toolbox option to Save Last Login Date
|
176 |
+
* Fix: GDPR Communication Preferences field is not validated correctly
|
177 |
+
* Misc: Added translation support for the roles in the Select User Role field
|
178 |
+
|
179 |
= 3.4.2 =
|
180 |
* Fix: An issue where the Username field was not required
|
181 |
* Misc: Add $form_name parameter to edit other users dropdown display and user role filters
|
translation/profile-builder.pot
CHANGED
@@ -697,7 +697,7 @@ msgstr ""
|
|
697 |
msgid "Display Social Connect buttons:"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: ../pb-add-on-social-connect/index.php:326, admin/general-settings.php:143, admin/general-settings.php:156, admin/general-settings.php:171, admin/general-settings.php:220, admin/general-settings.php:267, admin/general-settings.php:341, admin/manage-fields.php:190, 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:
|
701 |
msgid "Yes"
|
702 |
msgstr ""
|
703 |
|
@@ -957,11 +957,11 @@ msgstr ""
|
|
957 |
msgid "Shipping "
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: ../pb-add-on-woocommerce/woo-checkout-field-support.php:
|
961 |
msgid "Display on WooCommerce Checkout"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: ../pb-add-on-woocommerce/woo-checkout-field-support.php:
|
965 |
msgid "Whether the field should be added to the WooCommerce checkout form or not"
|
966 |
msgstr ""
|
967 |
|
@@ -2038,11 +2038,11 @@ msgstr ""
|
|
2038 |
msgid "Username and Email"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
-
#: admin/general-settings.php:296, admin/manage-fields.php:330, front-end/login.php:255, front-end/login.php:269, front-end/login.php:416, add-ons/custom-redirects/custom_redirects_admin.php:60, add-ons/email-customizer/email-customizer.php:28, add-ons/user-listing/userlisting.php:112, add-ons/user-listing/userlisting.php:328, add-ons/user-listing/userlisting.php:828, add-ons/user-listing/userlisting.php:
|
2042 |
msgid "Username"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#: admin/general-settings.php:297, front-end/login.php:413, front-end/recover.php:119, add-ons/email-customizer/email-customizer.php:29, add-ons/user-listing/userlisting.php:118, add-ons/user-listing/userlisting.php:834, add-ons/user-listing/userlisting.php:
|
2046 |
msgid "Email"
|
2047 |
msgstr ""
|
2048 |
|
@@ -2562,7 +2562,7 @@ msgstr ""
|
|
2562 |
msgid "Usernames cannot be changed."
|
2563 |
msgstr ""
|
2564 |
|
2565 |
-
#: admin/manage-fields.php:333, add-ons/user-listing/userlisting.php:867, add-ons/user-listing/userlisting.php:
|
2566 |
msgid "Nickname"
|
2567 |
msgstr ""
|
2568 |
|
@@ -2574,7 +2574,7 @@ msgstr ""
|
|
2574 |
msgid "E-mail"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#: admin/manage-fields.php:337, add-ons/email-customizer/email-customizer.php:33, add-ons/user-listing/userlisting.php:121, add-ons/user-listing/userlisting.php:849, add-ons/user-listing/userlisting.php:
|
2578 |
msgid "Website"
|
2579 |
msgstr ""
|
2580 |
|
@@ -2590,7 +2590,7 @@ msgstr ""
|
|
2590 |
msgid "Jabber / Google Talk"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
-
#: admin/manage-fields.php:347, add-ons/user-listing/userlisting.php:124, add-ons/user-listing/userlisting.php:852, add-ons/user-listing/userlisting.php:
|
2594 |
msgid "Biographical Info"
|
2595 |
msgstr ""
|
2596 |
|
@@ -5360,27 +5360,27 @@ msgstr ""
|
|
5360 |
msgid "No Edit-profile Forms found in trash"
|
5361 |
msgstr ""
|
5362 |
|
5363 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:
|
5364 |
msgid "Shortcode"
|
5365 |
msgstr ""
|
5366 |
|
5367 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:
|
5368 |
msgid "(no title)"
|
5369 |
msgstr ""
|
5370 |
|
5371 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:
|
5372 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
5373 |
msgstr ""
|
5374 |
|
5375 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:
|
5376 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
5377 |
msgstr ""
|
5378 |
|
5379 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:
|
5380 |
msgid "The shortcode will be available after you publish this form."
|
5381 |
msgstr ""
|
5382 |
|
5383 |
-
#: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:
|
5384 |
msgid "Form Shortcode"
|
5385 |
msgstr ""
|
5386 |
|
@@ -5544,7 +5544,7 @@ msgstr ""
|
|
5544 |
msgid "Display name as"
|
5545 |
msgstr ""
|
5546 |
|
5547 |
-
#: add-ons/user-listing/userlisting.php:160, add-ons/user-listing/userlisting.php:330, add-ons/user-listing/userlisting.php:870, add-ons/user-listing/userlisting.php:
|
5548 |
msgid "Role"
|
5549 |
msgstr ""
|
5550 |
|
@@ -5552,11 +5552,11 @@ msgstr ""
|
|
5552 |
msgid "Role Slug"
|
5553 |
msgstr ""
|
5554 |
|
5555 |
-
#: add-ons/user-listing/userlisting.php:162, add-ons/user-listing/userlisting.php:
|
5556 |
msgid "Registration Date"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
-
#: add-ons/user-listing/userlisting.php:163, add-ons/user-listing/userlisting.php:
|
5560 |
msgid "Number of Posts"
|
5561 |
msgstr ""
|
5562 |
|
@@ -5584,7 +5584,7 @@ msgstr ""
|
|
5584 |
msgid "Search all Fields"
|
5585 |
msgstr ""
|
5586 |
|
5587 |
-
#: add-ons/user-listing/userlisting.php:215, add-ons/user-listing/userlisting.php:
|
5588 |
msgid "Faceted Menus"
|
5589 |
msgstr ""
|
5590 |
|
@@ -5620,7 +5620,7 @@ msgstr ""
|
|
5620 |
msgid "Avatar"
|
5621 |
msgstr ""
|
5622 |
|
5623 |
-
#: add-ons/user-listing/userlisting.php:329, add-ons/user-listing/userlisting.php:840, add-ons/user-listing/userlisting.php:
|
5624 |
msgid "Firstname"
|
5625 |
msgstr ""
|
5626 |
|
@@ -5648,23 +5648,23 @@ msgstr ""
|
|
5648 |
msgid "User not found"
|
5649 |
msgstr ""
|
5650 |
|
5651 |
-
#: add-ons/user-listing/userlisting.php:864, add-ons/user-listing/userlisting.php:
|
5652 |
msgid "Jabber"
|
5653 |
msgstr ""
|
5654 |
|
5655 |
-
#: add-ons/user-listing/userlisting.php:861, add-ons/user-listing/userlisting.php:
|
5656 |
msgid "Yim"
|
5657 |
msgstr ""
|
5658 |
|
5659 |
-
#: add-ons/user-listing/userlisting.php:858, add-ons/user-listing/userlisting.php:
|
5660 |
msgid "Aim"
|
5661 |
msgstr ""
|
5662 |
|
5663 |
-
#: add-ons/user-listing/userlisting.php:846, add-ons/user-listing/userlisting.php:
|
5664 |
msgid "Display Name"
|
5665 |
msgstr ""
|
5666 |
|
5667 |
-
#: add-ons/user-listing/userlisting.php:843, add-ons/user-listing/userlisting.php:
|
5668 |
msgid "Lastname"
|
5669 |
msgstr ""
|
5670 |
|
@@ -5672,7 +5672,7 @@ msgstr ""
|
|
5672 |
msgid "First/Lastname"
|
5673 |
msgstr ""
|
5674 |
|
5675 |
-
#: add-ons/user-listing/userlisting.php:1151, add-ons/user-listing/userlisting.php:1635, add-ons/user-listing/userlisting.php:
|
5676 |
msgid "Search Users by All Fields"
|
5677 |
msgstr ""
|
5678 |
|
@@ -5728,199 +5728,199 @@ msgstr ""
|
|
5728 |
msgid "Choose..."
|
5729 |
msgstr ""
|
5730 |
|
5731 |
-
#: add-ons/user-listing/userlisting.php:
|
5732 |
msgid "No options available"
|
5733 |
msgstr ""
|
5734 |
|
5735 |
-
#: add-ons/user-listing/userlisting.php:
|
5736 |
msgid "Remove All Filters"
|
5737 |
msgstr ""
|
5738 |
|
5739 |
-
#: add-ons/user-listing/userlisting.php:
|
5740 |
msgid "Search"
|
5741 |
msgstr ""
|
5742 |
|
5743 |
-
#: add-ons/user-listing/userlisting.php:
|
5744 |
msgid "Clear Results"
|
5745 |
msgstr ""
|
5746 |
|
5747 |
-
#: add-ons/user-listing/userlisting.php:
|
5748 |
msgid "Extra shortcode parameters"
|
5749 |
msgstr ""
|
5750 |
|
5751 |
-
#: add-ons/user-listing/userlisting.php:
|
5752 |
msgid "View all extra shortcode parameters"
|
5753 |
msgstr ""
|
5754 |
|
5755 |
-
#: add-ons/user-listing/userlisting.php:
|
5756 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
5757 |
msgstr ""
|
5758 |
|
5759 |
-
#: add-ons/user-listing/userlisting.php:
|
5760 |
msgid "Example:"
|
5761 |
msgstr ""
|
5762 |
|
5763 |
-
#: add-ons/user-listing/userlisting.php:
|
5764 |
msgid "Remember though, that the field-value combination must exist in the database."
|
5765 |
msgstr ""
|
5766 |
|
5767 |
-
#: add-ons/user-listing/userlisting.php:
|
5768 |
msgid "displays only the users that you specified the user_id for"
|
5769 |
msgstr ""
|
5770 |
|
5771 |
-
#: add-ons/user-listing/userlisting.php:
|
5772 |
msgid "displays all users except the ones you specified the user_id for"
|
5773 |
msgstr ""
|
5774 |
|
5775 |
-
#: add-ons/user-listing/userlisting.php:
|
5776 |
msgid "Random (very slow on large databases > 10K user)"
|
5777 |
msgstr ""
|
5778 |
|
5779 |
-
#: add-ons/user-listing/userlisting.php:
|
5780 |
msgid "Ascending"
|
5781 |
msgstr ""
|
5782 |
|
5783 |
-
#: add-ons/user-listing/userlisting.php:
|
5784 |
msgid "Descending"
|
5785 |
msgstr ""
|
5786 |
|
5787 |
-
#: add-ons/user-listing/userlisting.php:
|
5788 |
msgid "Roles to Display"
|
5789 |
msgstr ""
|
5790 |
|
5791 |
-
#: add-ons/user-listing/userlisting.php:
|
5792 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
5793 |
msgstr ""
|
5794 |
|
5795 |
-
#: add-ons/user-listing/userlisting.php:
|
5796 |
msgid "Number of Users/Page"
|
5797 |
msgstr ""
|
5798 |
|
5799 |
-
#: add-ons/user-listing/userlisting.php:
|
5800 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
5801 |
msgstr ""
|
5802 |
|
5803 |
-
#: add-ons/user-listing/userlisting.php:
|
5804 |
msgid "Default Sorting Criteria"
|
5805 |
msgstr ""
|
5806 |
|
5807 |
-
#: add-ons/user-listing/userlisting.php:
|
5808 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
5809 |
msgstr ""
|
5810 |
|
5811 |
-
#: add-ons/user-listing/userlisting.php:
|
5812 |
msgid "Default Sorting Order"
|
5813 |
msgstr ""
|
5814 |
|
5815 |
-
#: add-ons/user-listing/userlisting.php:
|
5816 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
5817 |
msgstr ""
|
5818 |
|
5819 |
-
#: add-ons/user-listing/userlisting.php:
|
5820 |
msgid "Avatar Size (All-userlisting)"
|
5821 |
msgstr ""
|
5822 |
|
5823 |
-
#: add-ons/user-listing/userlisting.php:
|
5824 |
msgid "Set the avatar size on the all-userlisting only"
|
5825 |
msgstr ""
|
5826 |
|
5827 |
-
#: add-ons/user-listing/userlisting.php:
|
5828 |
msgid "Avatar Size (Single-userlisting)"
|
5829 |
msgstr ""
|
5830 |
|
5831 |
-
#: add-ons/user-listing/userlisting.php:
|
5832 |
msgid "Set the avatar size on the single-userlisting only"
|
5833 |
msgstr ""
|
5834 |
|
5835 |
-
#: add-ons/user-listing/userlisting.php:
|
5836 |
msgid "Visible only to logged in users?"
|
5837 |
msgstr ""
|
5838 |
|
5839 |
-
#: add-ons/user-listing/userlisting.php:
|
5840 |
msgid "The userlisting will only be visible only to the logged in users"
|
5841 |
msgstr ""
|
5842 |
|
5843 |
-
#: add-ons/user-listing/userlisting.php:
|
5844 |
msgid "Visible to following Roles"
|
5845 |
msgstr ""
|
5846 |
|
5847 |
-
#: add-ons/user-listing/userlisting.php:
|
5848 |
msgid "The userlisting will only be visible to the following roles"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
-
#: add-ons/user-listing/userlisting.php:
|
5852 |
msgid "Userlisting Settings"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
-
#: add-ons/user-listing/userlisting.php:
|
5856 |
msgid "Label"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
-
#: add-ons/user-listing/userlisting.php:
|
5860 |
msgid "Choose the facet name that appears on the frontend"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
-
#: add-ons/user-listing/userlisting.php:
|
5864 |
msgid "Facet Type"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
-
#: add-ons/user-listing/userlisting.php:
|
5868 |
msgid "Choose the facet menu type"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
-
#: add-ons/user-listing/userlisting.php:
|
5872 |
msgid "Facet Meta"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
-
#: add-ons/user-listing/userlisting.php:
|
5876 |
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."
|
5877 |
msgstr ""
|
5878 |
|
5879 |
-
#: add-ons/user-listing/userlisting.php:
|
5880 |
msgid "Behaviour"
|
5881 |
msgstr ""
|
5882 |
|
5883 |
-
#: add-ons/user-listing/userlisting.php:
|
5884 |
msgid "Narrow the results"
|
5885 |
msgstr ""
|
5886 |
|
5887 |
-
#: add-ons/user-listing/userlisting.php:
|
5888 |
msgid "Expand the results"
|
5889 |
msgstr ""
|
5890 |
|
5891 |
-
#: add-ons/user-listing/userlisting.php:
|
5892 |
msgid "Choose how multiple selections affect the results"
|
5893 |
msgstr ""
|
5894 |
|
5895 |
-
#: add-ons/user-listing/userlisting.php:
|
5896 |
msgid "Visible choices"
|
5897 |
msgstr ""
|
5898 |
|
5899 |
-
#: add-ons/user-listing/userlisting.php:
|
5900 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
5901 |
msgstr ""
|
5902 |
|
5903 |
-
#: add-ons/user-listing/userlisting.php:
|
5904 |
msgid "Search Fields"
|
5905 |
msgstr ""
|
5906 |
|
5907 |
-
#: add-ons/user-listing/userlisting.php:
|
5908 |
msgid "Choose the fields in which the Search Field will look in"
|
5909 |
msgstr ""
|
5910 |
|
5911 |
-
#: add-ons/user-listing/userlisting.php:
|
5912 |
msgid "Search Settings"
|
5913 |
msgstr ""
|
5914 |
|
5915 |
-
#: add-ons/user-listing/userlisting.php:
|
5916 |
msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
|
5917 |
msgstr ""
|
5918 |
|
5919 |
-
#: add-ons/user-listing/userlisting.php:
|
5920 |
msgid "You can find it in the Profile Builder menu."
|
5921 |
msgstr ""
|
5922 |
|
5923 |
-
#: add-ons/user-listing/userlisting.php:
|
5924 |
msgid "No results found!"
|
5925 |
msgstr ""
|
5926 |
|
697 |
msgid "Display Social Connect buttons:"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: ../pb-add-on-social-connect/index.php:326, admin/general-settings.php:143, admin/general-settings.php:156, admin/general-settings.php:171, admin/general-settings.php:220, admin/general-settings.php:267, admin/general-settings.php:341, admin/manage-fields.php:190, 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:2451, features/content-restriction/content-restriction.php:89, 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-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:261, admin/advanced-settings/includes/views/view-fields.php:279, admin/advanced-settings/includes/views/view-forms.php:19, admin/advanced-settings/includes/views/view-forms.php:148, admin/advanced-settings/includes/views/view-forms.php:165, admin/advanced-settings/includes/views/view-forms.php:180, admin/advanced-settings/includes/views/view-forms.php:200, admin/advanced-settings/includes/views/view-forms.php:217, admin/advanced-settings/includes/views/view-forms.php:255, admin/advanced-settings/includes/views/view-forms.php:276, admin/advanced-settings/includes/views/view-forms.php:296, admin/advanced-settings/includes/views/view-forms.php:318, admin/advanced-settings/includes/views/view-forms.php:340, 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
|
701 |
msgid "Yes"
|
702 |
msgstr ""
|
703 |
|
957 |
msgid "Shipping "
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: ../pb-add-on-woocommerce/woo-checkout-field-support.php:83
|
961 |
msgid "Display on WooCommerce Checkout"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: ../pb-add-on-woocommerce/woo-checkout-field-support.php:83
|
965 |
msgid "Whether the field should be added to the WooCommerce checkout form or not"
|
966 |
msgstr ""
|
967 |
|
2038 |
msgid "Username and Email"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
+
#: admin/general-settings.php:296, admin/manage-fields.php:330, front-end/login.php:255, front-end/login.php:269, front-end/login.php:416, add-ons/custom-redirects/custom_redirects_admin.php:60, add-ons/email-customizer/email-customizer.php:28, add-ons/user-listing/userlisting.php:112, add-ons/user-listing/userlisting.php:328, add-ons/user-listing/userlisting.php:828, add-ons/user-listing/userlisting.php:2405, features/admin-approval/class-admin-approval.php:171, features/email-confirmation/class-email-confirmation.php:168, admin/advanced-settings/includes/views/view-fields.php:121
|
2042 |
msgid "Username"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
+
#: admin/general-settings.php:297, front-end/login.php:413, front-end/recover.php:119, add-ons/email-customizer/email-customizer.php:29, add-ons/user-listing/userlisting.php:118, add-ons/user-listing/userlisting.php:834, add-ons/user-listing/userlisting.php:2406, features/admin-approval/class-admin-approval.php:174, features/email-confirmation/class-email-confirmation.php:169, admin/advanced-settings/includes/shortcodes/resend-activation.php:9
|
2046 |
msgid "Email"
|
2047 |
msgstr ""
|
2048 |
|
2562 |
msgid "Usernames cannot be changed."
|
2563 |
msgstr ""
|
2564 |
|
2565 |
+
#: admin/manage-fields.php:333, add-ons/user-listing/userlisting.php:867, add-ons/user-listing/userlisting.php:2413
|
2566 |
msgid "Nickname"
|
2567 |
msgstr ""
|
2568 |
|
2574 |
msgid "E-mail"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
+
#: admin/manage-fields.php:337, add-ons/email-customizer/email-customizer.php:33, add-ons/user-listing/userlisting.php:121, add-ons/user-listing/userlisting.php:849, add-ons/user-listing/userlisting.php:2407
|
2578 |
msgid "Website"
|
2579 |
msgstr ""
|
2580 |
|
2590 |
msgid "Jabber / Google Talk"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
+
#: admin/manage-fields.php:347, add-ons/user-listing/userlisting.php:124, add-ons/user-listing/userlisting.php:852, add-ons/user-listing/userlisting.php:2408
|
2594 |
msgid "Biographical Info"
|
2595 |
msgstr ""
|
2596 |
|
5360 |
msgid "No Edit-profile Forms found in trash"
|
5361 |
msgstr ""
|
5362 |
|
5363 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:2301
|
5364 |
msgid "Shortcode"
|
5365 |
msgstr ""
|
5366 |
|
5367 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:2322
|
5368 |
msgid "(no title)"
|
5369 |
msgstr ""
|
5370 |
|
5371 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:2344
|
5372 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
5373 |
msgstr ""
|
5374 |
|
5375 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:2348
|
5376 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
5377 |
msgstr ""
|
5378 |
|
5379 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:2342
|
5380 |
msgid "The shortcode will be available after you publish this form."
|
5381 |
msgstr ""
|
5382 |
|
5383 |
+
#: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:2381
|
5384 |
msgid "Form Shortcode"
|
5385 |
msgstr ""
|
5386 |
|
5544 |
msgid "Display name as"
|
5545 |
msgstr ""
|
5546 |
|
5547 |
+
#: add-ons/user-listing/userlisting.php:160, add-ons/user-listing/userlisting.php:330, add-ons/user-listing/userlisting.php:870, add-ons/user-listing/userlisting.php:2415, features/admin-approval/class-admin-approval.php:175, features/roles-editor/roles-editor.php:256
|
5548 |
msgid "Role"
|
5549 |
msgstr ""
|
5550 |
|
5552 |
msgid "Role Slug"
|
5553 |
msgstr ""
|
5554 |
|
5555 |
+
#: add-ons/user-listing/userlisting.php:162, add-ons/user-listing/userlisting.php:2409
|
5556 |
msgid "Registration Date"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
+
#: add-ons/user-listing/userlisting.php:163, add-ons/user-listing/userlisting.php:2414
|
5560 |
msgid "Number of Posts"
|
5561 |
msgstr ""
|
5562 |
|
5584 |
msgid "Search all Fields"
|
5585 |
msgstr ""
|
5586 |
|
5587 |
+
#: add-ons/user-listing/userlisting.php:215, add-ons/user-listing/userlisting.php:2493
|
5588 |
msgid "Faceted Menus"
|
5589 |
msgstr ""
|
5590 |
|
5620 |
msgid "Avatar"
|
5621 |
msgstr ""
|
5622 |
|
5623 |
+
#: add-ons/user-listing/userlisting.php:329, add-ons/user-listing/userlisting.php:840, add-ons/user-listing/userlisting.php:2410, features/admin-approval/class-admin-approval.php:172
|
5624 |
msgid "Firstname"
|
5625 |
msgstr ""
|
5626 |
|
5648 |
msgid "User not found"
|
5649 |
msgstr ""
|
5650 |
|
5651 |
+
#: add-ons/user-listing/userlisting.php:864, add-ons/user-listing/userlisting.php:2421
|
5652 |
msgid "Jabber"
|
5653 |
msgstr ""
|
5654 |
|
5655 |
+
#: add-ons/user-listing/userlisting.php:861, add-ons/user-listing/userlisting.php:2420
|
5656 |
msgid "Yim"
|
5657 |
msgstr ""
|
5658 |
|
5659 |
+
#: add-ons/user-listing/userlisting.php:858, add-ons/user-listing/userlisting.php:2419
|
5660 |
msgid "Aim"
|
5661 |
msgstr ""
|
5662 |
|
5663 |
+
#: add-ons/user-listing/userlisting.php:846, add-ons/user-listing/userlisting.php:2412
|
5664 |
msgid "Display Name"
|
5665 |
msgstr ""
|
5666 |
|
5667 |
+
#: add-ons/user-listing/userlisting.php:843, add-ons/user-listing/userlisting.php:2411, features/admin-approval/class-admin-approval.php:173
|
5668 |
msgid "Lastname"
|
5669 |
msgstr ""
|
5670 |
|
5672 |
msgid "First/Lastname"
|
5673 |
msgstr ""
|
5674 |
|
5675 |
+
#: add-ons/user-listing/userlisting.php:1151, add-ons/user-listing/userlisting.php:1635, add-ons/user-listing/userlisting.php:2128, add-ons/user-listing/userlisting.php:2613
|
5676 |
msgid "Search Users by All Fields"
|
5677 |
msgstr ""
|
5678 |
|
5728 |
msgid "Choose..."
|
5729 |
msgstr ""
|
5730 |
|
5731 |
+
#: add-ons/user-listing/userlisting.php:1875
|
5732 |
msgid "No options available"
|
5733 |
msgstr ""
|
5734 |
|
5735 |
+
#: add-ons/user-listing/userlisting.php:2030
|
5736 |
msgid "Remove All Filters"
|
5737 |
msgstr ""
|
5738 |
|
5739 |
+
#: add-ons/user-listing/userlisting.php:2145
|
5740 |
msgid "Search"
|
5741 |
msgstr ""
|
5742 |
|
5743 |
+
#: add-ons/user-listing/userlisting.php:2146
|
5744 |
msgid "Clear Results"
|
5745 |
msgstr ""
|
5746 |
|
5747 |
+
#: add-ons/user-listing/userlisting.php:2351, add-ons/user-listing/userlisting.php:2355
|
5748 |
msgid "Extra shortcode parameters"
|
5749 |
msgstr ""
|
5750 |
|
5751 |
+
#: add-ons/user-listing/userlisting.php:2353
|
5752 |
msgid "View all extra shortcode parameters"
|
5753 |
msgstr ""
|
5754 |
|
5755 |
+
#: add-ons/user-listing/userlisting.php:2358
|
5756 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
5757 |
msgstr ""
|
5758 |
|
5759 |
+
#: add-ons/user-listing/userlisting.php:2359
|
5760 |
msgid "Example:"
|
5761 |
msgstr ""
|
5762 |
|
5763 |
+
#: add-ons/user-listing/userlisting.php:2361
|
5764 |
msgid "Remember though, that the field-value combination must exist in the database."
|
5765 |
msgstr ""
|
5766 |
|
5767 |
+
#: add-ons/user-listing/userlisting.php:2367
|
5768 |
msgid "displays only the users that you specified the user_id for"
|
5769 |
msgstr ""
|
5770 |
|
5771 |
+
#: add-ons/user-listing/userlisting.php:2373
|
5772 |
msgid "displays all users except the ones you specified the user_id for"
|
5773 |
msgstr ""
|
5774 |
|
5775 |
+
#: add-ons/user-listing/userlisting.php:2436
|
5776 |
msgid "Random (very slow on large databases > 10K user)"
|
5777 |
msgstr ""
|
5778 |
|
5779 |
+
#: add-ons/user-listing/userlisting.php:2439
|
5780 |
msgid "Ascending"
|
5781 |
msgstr ""
|
5782 |
|
5783 |
+
#: add-ons/user-listing/userlisting.php:2440
|
5784 |
msgid "Descending"
|
5785 |
msgstr ""
|
5786 |
|
5787 |
+
#: add-ons/user-listing/userlisting.php:2445
|
5788 |
msgid "Roles to Display"
|
5789 |
msgstr ""
|
5790 |
|
5791 |
+
#: add-ons/user-listing/userlisting.php:2445
|
5792 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
5793 |
msgstr ""
|
5794 |
|
5795 |
+
#: add-ons/user-listing/userlisting.php:2446
|
5796 |
msgid "Number of Users/Page"
|
5797 |
msgstr ""
|
5798 |
|
5799 |
+
#: add-ons/user-listing/userlisting.php:2446
|
5800 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
5801 |
msgstr ""
|
5802 |
|
5803 |
+
#: add-ons/user-listing/userlisting.php:2447
|
5804 |
msgid "Default Sorting Criteria"
|
5805 |
msgstr ""
|
5806 |
|
5807 |
+
#: add-ons/user-listing/userlisting.php:2447
|
5808 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
5809 |
msgstr ""
|
5810 |
|
5811 |
+
#: add-ons/user-listing/userlisting.php:2448
|
5812 |
msgid "Default Sorting Order"
|
5813 |
msgstr ""
|
5814 |
|
5815 |
+
#: add-ons/user-listing/userlisting.php:2448
|
5816 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
5817 |
msgstr ""
|
5818 |
|
5819 |
+
#: add-ons/user-listing/userlisting.php:2449
|
5820 |
msgid "Avatar Size (All-userlisting)"
|
5821 |
msgstr ""
|
5822 |
|
5823 |
+
#: add-ons/user-listing/userlisting.php:2449
|
5824 |
msgid "Set the avatar size on the all-userlisting only"
|
5825 |
msgstr ""
|
5826 |
|
5827 |
+
#: add-ons/user-listing/userlisting.php:2450
|
5828 |
msgid "Avatar Size (Single-userlisting)"
|
5829 |
msgstr ""
|
5830 |
|
5831 |
+
#: add-ons/user-listing/userlisting.php:2450
|
5832 |
msgid "Set the avatar size on the single-userlisting only"
|
5833 |
msgstr ""
|
5834 |
|
5835 |
+
#: add-ons/user-listing/userlisting.php:2451
|
5836 |
msgid "Visible only to logged in users?"
|
5837 |
msgstr ""
|
5838 |
|
5839 |
+
#: add-ons/user-listing/userlisting.php:2451
|
5840 |
msgid "The userlisting will only be visible only to the logged in users"
|
5841 |
msgstr ""
|
5842 |
|
5843 |
+
#: add-ons/user-listing/userlisting.php:2452
|
5844 |
msgid "Visible to following Roles"
|
5845 |
msgstr ""
|
5846 |
|
5847 |
+
#: add-ons/user-listing/userlisting.php:2452
|
5848 |
msgid "The userlisting will only be visible to the following roles"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
+
#: add-ons/user-listing/userlisting.php:2458
|
5852 |
msgid "Userlisting Settings"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
+
#: add-ons/user-listing/userlisting.php:2483
|
5856 |
msgid "Label"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
+
#: add-ons/user-listing/userlisting.php:2483
|
5860 |
msgid "Choose the facet name that appears on the frontend"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
+
#: add-ons/user-listing/userlisting.php:2484
|
5864 |
msgid "Facet Type"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
+
#: add-ons/user-listing/userlisting.php:2484
|
5868 |
msgid "Choose the facet menu type"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: add-ons/user-listing/userlisting.php:2485
|
5872 |
msgid "Facet Meta"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
+
#: add-ons/user-listing/userlisting.php:2485
|
5876 |
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."
|
5877 |
msgstr ""
|
5878 |
|
5879 |
+
#: add-ons/user-listing/userlisting.php:2486
|
5880 |
msgid "Behaviour"
|
5881 |
msgstr ""
|
5882 |
|
5883 |
+
#: add-ons/user-listing/userlisting.php:2486
|
5884 |
msgid "Narrow the results"
|
5885 |
msgstr ""
|
5886 |
|
5887 |
+
#: add-ons/user-listing/userlisting.php:2486
|
5888 |
msgid "Expand the results"
|
5889 |
msgstr ""
|
5890 |
|
5891 |
+
#: add-ons/user-listing/userlisting.php:2486
|
5892 |
msgid "Choose how multiple selections affect the results"
|
5893 |
msgstr ""
|
5894 |
|
5895 |
+
#: add-ons/user-listing/userlisting.php:2487
|
5896 |
msgid "Visible choices"
|
5897 |
msgstr ""
|
5898 |
|
5899 |
+
#: add-ons/user-listing/userlisting.php:2487
|
5900 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
5901 |
msgstr ""
|
5902 |
|
5903 |
+
#: add-ons/user-listing/userlisting.php:2512
|
5904 |
msgid "Search Fields"
|
5905 |
msgstr ""
|
5906 |
|
5907 |
+
#: add-ons/user-listing/userlisting.php:2512
|
5908 |
msgid "Choose the fields in which the Search Field will look in"
|
5909 |
msgstr ""
|
5910 |
|
5911 |
+
#: add-ons/user-listing/userlisting.php:2517
|
5912 |
msgid "Search Settings"
|
5913 |
msgstr ""
|
5914 |
|
5915 |
+
#: add-ons/user-listing/userlisting.php:2589
|
5916 |
msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
|
5917 |
msgstr ""
|
5918 |
|
5919 |
+
#: add-ons/user-listing/userlisting.php:2589
|
5920 |
msgid "You can find it in the Profile Builder menu."
|
5921 |
msgstr ""
|
5922 |
|
5923 |
+
#: add-ons/user-listing/userlisting.php:2752
|
5924 |
msgid "No results found!"
|
5925 |
msgstr ""
|
5926 |
|