Version Description
See: https://codex.buddypress.org/releases/version-6-1-0/
Download this release
Release Info
Developer | imath |
Plugin | BuddyPress |
Version | 6.1.0 |
Comparing to | |
See all releases |
Code changes from version 6.0.0 to 6.1.0
- bp-blogs/classes/class-bp-blogs-component.php +1 -1
- bp-core/classes/class-bp-block.php +2 -2
- bp-friends/bp-friends-filters.php +4 -0
- bp-friends/bp-friends-template.php +0 -1
- bp-friends/classes/class-bp-friends-component.php +1 -1
- bp-friends/classes/class-bp-rest-friends-endpoint.php +11 -0
- bp-groups/classes/class-bp-rest-group-membership-endpoint.php +4 -0
- bp-groups/screens/single/request-membership.php +1 -1
- bp-loader.php +1 -1
- bp-members/bp-members-functions.php +40 -9
- bp-notifications/bp-notifications-filters.php +5 -1
- bp-notifications/classes/class-bp-notifications-component.php +1 -1
- bp-templates/bp-legacy/buddypress-functions.php +1 -1
- bp-templates/bp-nouveau/includes/blogs/loader.php +4 -0
- bp-templates/bp-nouveau/includes/friends/loader.php +5 -1
- bp-templates/bp-nouveau/includes/groups/ajax.php +1 -1
- bp-templates/bp-nouveau/includes/groups/loader.php +2 -1
- bp-templates/bp-nouveau/includes/notifications/loader.php +4 -1
- buddypress.pot +104 -100
- class-buddypress.php +1 -1
- readme.txt +8 -2
bp-blogs/classes/class-bp-blogs-component.php
CHANGED
@@ -224,7 +224,7 @@ class BP_Blogs_Component extends BP_Component {
|
|
224 |
sprintf(
|
225 |
'<span class="%s">%s</span>',
|
226 |
esc_attr( $class ),
|
227 |
-
|
228 |
)
|
229 |
);
|
230 |
$main_nav = array(
|
224 |
sprintf(
|
225 |
'<span class="%s">%s</span>',
|
226 |
esc_attr( $class ),
|
227 |
+
esc_html( $count )
|
228 |
)
|
229 |
);
|
230 |
$main_nav = array(
|
bp-core/classes/class-bp-block.php
CHANGED
@@ -186,10 +186,10 @@ class BP_Block {
|
|
186 |
* @param string $editor_script The editor's script handle.
|
187 |
* @param string $name The block's name.
|
188 |
*/
|
189 |
-
$
|
190 |
|
191 |
// Try to load the translation.
|
192 |
-
$translated = wp_set_script_translations( $this->block->editor_script, $
|
193 |
}
|
194 |
}
|
195 |
}
|
186 |
* @param string $editor_script The editor's script handle.
|
187 |
* @param string $name The block's name.
|
188 |
*/
|
189 |
+
$translation_domain = apply_filters( 'bp_block_translation_domain', 'buddypress', $this->block->editor_script, $name );
|
190 |
|
191 |
// Try to load the translation.
|
192 |
+
$translated = wp_set_script_translations( $this->block->editor_script, $translation_domain, $translation_dir );
|
193 |
}
|
194 |
}
|
195 |
}
|
bp-friends/bp-friends-filters.php
CHANGED
@@ -10,6 +10,10 @@
|
|
10 |
// Exit if accessed directly.
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
|
|
|
|
|
|
|
|
13 |
/**
|
14 |
* Filter BP_User_Query::populate_extras to add confirmed friendship status.
|
15 |
*
|
10 |
// Exit if accessed directly.
|
11 |
defined( 'ABSPATH' ) || exit;
|
12 |
|
13 |
+
// Format numerical output.
|
14 |
+
add_filter( 'friends_get_total_friend_count', 'bp_core_number_format' );
|
15 |
+
add_filter( 'bp_get_total_friend_count', 'bp_core_number_format' );
|
16 |
+
|
17 |
/**
|
18 |
* Filter BP_User_Query::populate_extras to add confirmed friendship status.
|
19 |
*
|
bp-friends/bp-friends-template.php
CHANGED
@@ -649,7 +649,6 @@ function bp_total_friend_count( $user_id = 0 ) {
|
|
649 |
*/
|
650 |
return apply_filters( 'bp_get_total_friend_count', friends_get_total_friend_count( $user_id ), $user_id );
|
651 |
}
|
652 |
-
add_filter( 'bp_get_total_friend_count', 'bp_core_number_format' );
|
653 |
|
654 |
/**
|
655 |
* Output the total friendship request count for a given user.
|
649 |
*/
|
650 |
return apply_filters( 'bp_get_total_friend_count', friends_get_total_friend_count( $user_id ), $user_id );
|
651 |
}
|
|
|
652 |
|
653 |
/**
|
654 |
* Output the total friendship request count for a given user.
|
bp-friends/classes/class-bp-friends-component.php
CHANGED
@@ -176,7 +176,7 @@ class BP_Friends_Component extends BP_Component {
|
|
176 |
sprintf(
|
177 |
'<span class="%s">%s</span>',
|
178 |
esc_attr( $class ),
|
179 |
-
|
180 |
)
|
181 |
);
|
182 |
|
176 |
sprintf(
|
177 |
'<span class="%s">%s</span>',
|
178 |
esc_attr( $class ),
|
179 |
+
esc_html( $count )
|
180 |
)
|
181 |
);
|
182 |
|
bp-friends/classes/class-bp-rest-friends-endpoint.php
CHANGED
@@ -309,6 +309,17 @@ class BP_REST_Friends_Endpoint extends WP_REST_Controller {
|
|
309 |
);
|
310 |
}
|
311 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
312 |
$is_moderator = bp_current_user_can( 'bp_moderate' );
|
313 |
|
314 |
// Only admins can create friendship requests for other people.
|
309 |
);
|
310 |
}
|
311 |
|
312 |
+
// Check if users are friends or if there is a friendship request.
|
313 |
+
if ( 'not_friends' !== friends_check_friendship_status( $initiator_id->ID, $friend_id->ID ) ) {
|
314 |
+
return new WP_Error(
|
315 |
+
'bp_rest_friends_create_item_failed',
|
316 |
+
__( 'Those users are already friends or have sent friendship request(s) recently.', 'buddypress' ),
|
317 |
+
array(
|
318 |
+
'status' => 500,
|
319 |
+
)
|
320 |
+
);
|
321 |
+
}
|
322 |
+
|
323 |
$is_moderator = bp_current_user_can( 'bp_moderate' );
|
324 |
|
325 |
// Only admins can create friendship requests for other people.
|
bp-groups/classes/class-bp-rest-group-membership-endpoint.php
CHANGED
@@ -138,6 +138,10 @@ class BP_REST_Group_Membership_Endpoint extends WP_REST_Controller {
|
|
138 |
$args['exclude'] = false;
|
139 |
}
|
140 |
|
|
|
|
|
|
|
|
|
141 |
/**
|
142 |
* Filter the query arguments for the request.
|
143 |
*
|
138 |
$args['exclude'] = false;
|
139 |
}
|
140 |
|
141 |
+
if ( is_null( $args['search_terms'] ) ) {
|
142 |
+
$args['search_terms'] = false;
|
143 |
+
}
|
144 |
+
|
145 |
/**
|
146 |
* Filter the query arguments for the request.
|
147 |
*
|
bp-groups/screens/single/request-membership.php
CHANGED
@@ -38,7 +38,7 @@ function groups_screen_group_request_membership() {
|
|
38 |
if ( !check_admin_referer( 'groups_request_membership' ) )
|
39 |
return false;
|
40 |
|
41 |
-
if ( !groups_send_membership_request( bp_loggedin_user_id(), $bp->groups->current_group->id ) ) {
|
42 |
bp_core_add_message( __( 'There was an error sending your group membership request. Please try again.', 'buddypress' ), 'error' );
|
43 |
} else {
|
44 |
bp_core_add_message( __( 'Your membership request was sent to the group administrator successfully. You will be notified when the group administrator responds to your request.', 'buddypress' ) );
|
38 |
if ( !check_admin_referer( 'groups_request_membership' ) )
|
39 |
return false;
|
40 |
|
41 |
+
if ( !groups_send_membership_request( [ 'user_id' => bp_loggedin_user_id(), 'group_id' => $bp->groups->current_group->id ] ) ) {
|
42 |
bp_core_add_message( __( 'There was an error sending your group membership request. Please try again.', 'buddypress' ), 'error' );
|
43 |
} else {
|
44 |
bp_core_add_message( __( 'Your membership request was sent to the group administrator successfully. You will be notified when the group administrator responds to your request.', 'buddypress' ) );
|
bp-loader.php
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
* Description: BuddyPress adds community features to WordPress. Member Profiles, Activity Streams, Direct Messaging, Notifications, and more!
|
16 |
* Author: The BuddyPress Community
|
17 |
* Author URI: https://buddypress.org/
|
18 |
-
* Version: 6.
|
19 |
* Text Domain: buddypress
|
20 |
* Domain Path: /bp-languages/
|
21 |
* License: GPLv2 or later (license.txt)
|
15 |
* Description: BuddyPress adds community features to WordPress. Member Profiles, Activity Streams, Direct Messaging, Notifications, and more!
|
16 |
* Author: The BuddyPress Community
|
17 |
* Author URI: https://buddypress.org/
|
18 |
+
* Version: 6.1.0
|
19 |
* Text Domain: buddypress
|
20 |
* Domain Path: /bp-languages/
|
21 |
* License: GPLv2 or later (license.txt)
|
bp-members/bp-members-functions.php
CHANGED
@@ -692,18 +692,49 @@ function bp_core_process_spammer_status( $user_id, $status, $do_wp_cleanup = tru
|
|
692 |
// Force the cleanup of WordPress content and status for multisite configs.
|
693 |
if ( $do_wp_cleanup ) {
|
694 |
|
695 |
-
//
|
696 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
697 |
|
698 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
699 |
|
700 |
-
|
701 |
-
if ( 1 == $details->userblog_id || bp_get_root_blog_id() == $details->userblog_id ) {
|
702 |
-
continue;
|
703 |
-
}
|
704 |
|
705 |
-
|
706 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
707 |
}
|
708 |
|
709 |
// Finally, mark this user as a spammer.
|
692 |
// Force the cleanup of WordPress content and status for multisite configs.
|
693 |
if ( $do_wp_cleanup ) {
|
694 |
|
695 |
+
// Mark blogs as spam if the user is the sole admin of a site.
|
696 |
+
if ( is_multisite() ) {
|
697 |
+
/*
|
698 |
+
* No native function to fetch a user's blogs by role, so do it manually.
|
699 |
+
*
|
700 |
+
* This logic is mostly copied from get_blogs_of_user().
|
701 |
+
*/
|
702 |
+
$meta = get_user_meta( $user_id );
|
703 |
|
704 |
+
foreach ( $meta as $key => $val ) {
|
705 |
+
if ( 'capabilities' !== substr( $key, -12 ) ) {
|
706 |
+
continue;
|
707 |
+
}
|
708 |
+
if ( $wpdb->base_prefix && 0 !== strpos( $key, $wpdb->base_prefix ) ) {
|
709 |
+
continue;
|
710 |
+
}
|
711 |
+
$site_id = str_replace( array( $wpdb->base_prefix, '_capabilities' ), '', $key );
|
712 |
+
if ( ! is_numeric( $site_id ) ) {
|
713 |
+
continue;
|
714 |
+
}
|
715 |
|
716 |
+
$site_id = (int) $site_id;
|
|
|
|
|
|
|
717 |
|
718 |
+
// Do not mark the main or current root blog as spam.
|
719 |
+
if ( 1 === $site_id || bp_get_root_blog_id() === $site_id ) {
|
720 |
+
continue;
|
721 |
+
}
|
722 |
+
|
723 |
+
// Now, do check for administrator role.
|
724 |
+
$role = maybe_unserialize( $val );
|
725 |
+
if ( empty( $role['administrator'] ) ) {
|
726 |
+
continue;
|
727 |
+
}
|
728 |
+
|
729 |
+
// Check if the site has more than 1 admin. If so, bail.
|
730 |
+
$counts = count_users( 'time', $site_id );
|
731 |
+
if ( empty( $counts['avail_roles']['administrator'] ) || $counts['avail_roles']['administrator'] > 1 ) {
|
732 |
+
continue;
|
733 |
+
}
|
734 |
+
|
735 |
+
// Now we can spam the blog.
|
736 |
+
update_blog_status( $site_id, 'spam', $is_spam );
|
737 |
+
}
|
738 |
}
|
739 |
|
740 |
// Finally, mark this user as a spammer.
|
bp-notifications/bp-notifications-filters.php
CHANGED
@@ -1,12 +1,16 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Filters related to the
|
4 |
*
|
5 |
* @package BuddyPress
|
6 |
* @subpackage Notifications
|
7 |
* @since 4.0.0
|
8 |
*/
|
9 |
|
|
|
|
|
|
|
|
|
10 |
// Privacy data export.
|
11 |
add_filter( 'wp_privacy_personal_data_exporters', 'bp_register_notifications_personal_data_exporter' );
|
12 |
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Filters related to the Notifications component.
|
4 |
*
|
5 |
* @package BuddyPress
|
6 |
* @subpackage Notifications
|
7 |
* @since 4.0.0
|
8 |
*/
|
9 |
|
10 |
+
|
11 |
+
// Format numerical output.
|
12 |
+
add_filter( 'bp_notifications_get_total_notification_count', 'bp_core_number_format' );
|
13 |
+
|
14 |
// Privacy data export.
|
15 |
add_filter( 'wp_privacy_personal_data_exporters', 'bp_register_notifications_personal_data_exporter' );
|
16 |
|
bp-notifications/classes/class-bp-notifications-component.php
CHANGED
@@ -164,7 +164,7 @@ class BP_Notifications_Component extends BP_Component {
|
|
164 |
sprintf(
|
165 |
'<span class="%s">%s</span>',
|
166 |
esc_attr( $class ),
|
167 |
-
|
168 |
)
|
169 |
);
|
170 |
} else {
|
164 |
sprintf(
|
165 |
'<span class="%s">%s</span>',
|
166 |
esc_attr( $class ),
|
167 |
+
esc_html( $count )
|
168 |
)
|
169 |
);
|
170 |
} else {
|
bp-templates/bp-legacy/buddypress-functions.php
CHANGED
@@ -1582,7 +1582,7 @@ function bp_legacy_theme_ajax_joinleave_group() {
|
|
1582 |
case 'request_membership' :
|
1583 |
check_ajax_referer( 'groups_request_membership' );
|
1584 |
|
1585 |
-
if ( ! groups_send_membership_request( bp_loggedin_user_id(), $group->id ) ) {
|
1586 |
_e( 'Error requesting membership', 'buddypress' );
|
1587 |
} else {
|
1588 |
echo '<a id="group-' . esc_attr( $group->id ) . '" class="group-button disabled pending membership-requested" rel="membership-requested" href="' . bp_get_group_permalink( $group ) . '">' . __( 'Request Sent', 'buddypress' ) . '</a>';
|
1582 |
case 'request_membership' :
|
1583 |
check_ajax_referer( 'groups_request_membership' );
|
1584 |
|
1585 |
+
if ( ! groups_send_membership_request( [ 'user_id' => bp_loggedin_user_id(), 'group_id' => $group->id ] ) ) {
|
1586 |
_e( 'Error requesting membership', 'buddypress' );
|
1587 |
} else {
|
1588 |
echo '<a id="group-' . esc_attr( $group->id ) . '" class="group-button disabled pending membership-requested" rel="membership-requested" href="' . bp_get_group_permalink( $group ) . '">' . __( 'Request Sent', 'buddypress' ) . '</a>';
|
bp-templates/bp-nouveau/includes/blogs/loader.php
CHANGED
@@ -3,6 +3,7 @@
|
|
3 |
* BP Nouveau Blogs
|
4 |
*
|
5 |
* @since 3.0.0
|
|
|
6 |
*/
|
7 |
|
8 |
// Exit if accessed directly.
|
@@ -88,6 +89,9 @@ class BP_Nouveau_Blogs {
|
|
88 |
|
89 |
// Add controls into the Blogs sections of the customizer.
|
90 |
add_filter( 'bp_nouveau_customizer_controls', 'bp_nouveau_blogs_customizer_controls', 11, 1 );
|
|
|
|
|
|
|
91 |
}
|
92 |
}
|
93 |
}
|
3 |
* BP Nouveau Blogs
|
4 |
*
|
5 |
* @since 3.0.0
|
6 |
+
* @version 6.1.0
|
7 |
*/
|
8 |
|
9 |
// Exit if accessed directly.
|
89 |
|
90 |
// Add controls into the Blogs sections of the customizer.
|
91 |
add_filter( 'bp_nouveau_customizer_controls', 'bp_nouveau_blogs_customizer_controls', 11, 1 );
|
92 |
+
|
93 |
+
// The number formatting is done into the `bp_nouveau_nav_count()` template tag.
|
94 |
+
remove_filter( 'bp_get_total_blog_count_for_user', 'bp_core_number_format' );
|
95 |
}
|
96 |
}
|
97 |
}
|
bp-templates/bp-nouveau/includes/friends/loader.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* BP Nouveau Friends
|
4 |
*
|
5 |
* @since 3.0.0
|
6 |
-
* @version
|
7 |
*/
|
8 |
|
9 |
// Exit if accessed directly.
|
@@ -87,6 +87,10 @@ class BP_Nouveau_Friends {
|
|
87 |
foreach ( $buttons as $button ) {
|
88 |
add_filter( 'bp_button_' . $button, 'bp_nouveau_ajax_button', 10, 5 );
|
89 |
}
|
|
|
|
|
|
|
|
|
90 |
}
|
91 |
|
92 |
/**
|
3 |
* BP Nouveau Friends
|
4 |
*
|
5 |
* @since 3.0.0
|
6 |
+
* @version 6.1.0
|
7 |
*/
|
8 |
|
9 |
// Exit if accessed directly.
|
87 |
foreach ( $buttons as $button ) {
|
88 |
add_filter( 'bp_button_' . $button, 'bp_nouveau_ajax_button', 10, 5 );
|
89 |
}
|
90 |
+
|
91 |
+
// The number formatting is done into the `bp_nouveau_nav_count()` template tag.
|
92 |
+
remove_filter( 'friends_get_total_friend_count', 'bp_core_number_format' );
|
93 |
+
remove_filter( 'bp_get_total_friend_count', 'bp_core_number_format' );
|
94 |
}
|
95 |
|
96 |
/**
|
bp-templates/bp-nouveau/includes/groups/ajax.php
CHANGED
@@ -189,7 +189,7 @@ function bp_nouveau_ajax_joinleave_group() {
|
|
189 |
break;
|
190 |
|
191 |
case 'groups_request_membership' :
|
192 |
-
if ( ! groups_send_membership_request( bp_loggedin_user_id(), $group->id ) ) {
|
193 |
$response = array(
|
194 |
'feedback' => sprintf(
|
195 |
'<div class="bp-feedback error"><span class="bp-icon" aria-hidden="true"></span><p>%s</p></div>',
|
189 |
break;
|
190 |
|
191 |
case 'groups_request_membership' :
|
192 |
+
if ( ! groups_send_membership_request( [ 'user_id' => bp_loggedin_user_id(), 'group_id' => $group->id ] ) ) {
|
193 |
$response = array(
|
194 |
'feedback' => sprintf(
|
195 |
'<div class="bp-feedback error"><span class="bp-icon" aria-hidden="true"></span><p>%s</p></div>',
|
bp-templates/bp-nouveau/includes/groups/loader.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* BP Nouveau Groups
|
4 |
*
|
5 |
* @since 3.0.0
|
6 |
-
* @version 6.
|
7 |
*/
|
8 |
|
9 |
// Exit if accessed directly.
|
@@ -133,6 +133,7 @@ class BP_Nouveau_Groups {
|
|
133 |
|
134 |
// The number formatting is done into the `bp_nouveau_nav_count()` template tag.
|
135 |
remove_filter( 'bp_get_total_group_count', 'bp_core_number_format' );
|
|
|
136 |
}
|
137 |
|
138 |
/**
|
3 |
* BP Nouveau Groups
|
4 |
*
|
5 |
* @since 3.0.0
|
6 |
+
* @version 6.1.0
|
7 |
*/
|
8 |
|
9 |
// Exit if accessed directly.
|
133 |
|
134 |
// The number formatting is done into the `bp_nouveau_nav_count()` template tag.
|
135 |
remove_filter( 'bp_get_total_group_count', 'bp_core_number_format' );
|
136 |
+
remove_filter( 'bp_get_total_group_count_for_user', 'bp_core_number_format' );
|
137 |
}
|
138 |
|
139 |
/**
|
bp-templates/bp-nouveau/includes/notifications/loader.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* BP Nouveau Notifications
|
4 |
*
|
5 |
* @since 3.0.0
|
6 |
-
* @version
|
7 |
*/
|
8 |
|
9 |
// Exit if accessed directly.
|
@@ -87,6 +87,9 @@ class BP_Nouveau_Notifications {
|
|
87 |
add_filter( 'bp_get_the_notification_mark_unread_link', 'bp_nouveau_notifications_mark_unread_link', 10, 1 );
|
88 |
add_filter( 'bp_get_the_notification_mark_read_link', 'bp_nouveau_notifications_mark_read_link', 10, 1 );
|
89 |
add_filter( 'bp_get_the_notification_delete_link', 'bp_nouveau_notifications_delete_link', 10, 1 );
|
|
|
|
|
|
|
90 |
}
|
91 |
}
|
92 |
|
3 |
* BP Nouveau Notifications
|
4 |
*
|
5 |
* @since 3.0.0
|
6 |
+
* @version 6.1.0
|
7 |
*/
|
8 |
|
9 |
// Exit if accessed directly.
|
87 |
add_filter( 'bp_get_the_notification_mark_unread_link', 'bp_nouveau_notifications_mark_unread_link', 10, 1 );
|
88 |
add_filter( 'bp_get_the_notification_mark_read_link', 'bp_nouveau_notifications_mark_read_link', 10, 1 );
|
89 |
add_filter( 'bp_get_the_notification_delete_link', 'bp_nouveau_notifications_delete_link', 10, 1 );
|
90 |
+
|
91 |
+
// The number formatting is done into the `bp_nouveau_nav_count()` template tag.
|
92 |
+
remove_filter( 'bp_notifications_get_total_notification_count', 'bp_core_number_format' );
|
93 |
}
|
94 |
}
|
95 |
|
buddypress.pot
CHANGED
@@ -9,7 +9,7 @@ msgstr ""
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2020-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.4.0\n"
|
15 |
"X-Domain: buddypress\n"
|
@@ -1669,9 +1669,9 @@ msgstr ""
|
|
1669 |
#: bp-groups/classes/class-bp-rest-attachments-group-avatar-endpoint.php:178
|
1670 |
#: bp-groups/classes/class-bp-rest-group-invites-endpoint.php:211
|
1671 |
#: bp-groups/classes/class-bp-rest-group-invites-endpoint.php:461
|
1672 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
1673 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
1674 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
1675 |
#: bp-groups/classes/class-bp-rest-group-membership-request-endpoint.php:207
|
1676 |
#: bp-groups/classes/class-bp-rest-group-membership-request-endpoint.php:449
|
1677 |
#: bp-groups/classes/class-bp-rest-groups-endpoint.php:245
|
@@ -4705,29 +4705,29 @@ msgstr ""
|
|
4705 |
msgid "%1$s and %2$s are now friends"
|
4706 |
msgstr ""
|
4707 |
|
4708 |
-
#: bp-friends/bp-friends-filters.php:
|
4709 |
msgid "BuddyPress Friends"
|
4710 |
msgstr ""
|
4711 |
|
4712 |
-
#: bp-friends/bp-friends-filters.php:
|
4713 |
msgctxt "BuddyPress Friends data exporter friendly name"
|
4714 |
msgid "Friends"
|
4715 |
msgstr ""
|
4716 |
|
4717 |
-
#: bp-friends/bp-friends-filters.php:
|
4718 |
msgid "BuddyPress Friend Requests (Sent)"
|
4719 |
msgstr ""
|
4720 |
|
4721 |
-
#: bp-friends/bp-friends-filters.php:
|
4722 |
msgctxt "BuddyPress Friend Requests data exporter friendly name"
|
4723 |
msgid "Friend Requests (Sent)"
|
4724 |
msgstr ""
|
4725 |
|
4726 |
-
#: bp-friends/bp-friends-filters.php:
|
4727 |
msgid "BuddyPress Friend Requests (Received)"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
-
#: bp-friends/bp-friends-filters.php:
|
4731 |
msgctxt "BuddyPress Friend Requests data exporter friendly name"
|
4732 |
msgid "Friend Requests (Received)"
|
4733 |
msgstr ""
|
@@ -4848,7 +4848,7 @@ msgstr ""
|
|
4848 |
|
4849 |
#. translators: %d: total friend count
|
4850 |
#: bp-friends/bp-friends-template.php:268
|
4851 |
-
#: bp-friends/bp-friends-template.php:
|
4852 |
msgid "%d friend"
|
4853 |
msgid_plural "%d friends"
|
4854 |
msgstr[0] ""
|
@@ -4983,8 +4983,8 @@ msgstr ""
|
|
4983 |
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:132
|
4984 |
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:213
|
4985 |
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:305
|
4986 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
4987 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
4988 |
msgid "There was a problem confirming if user is valid."
|
4989 |
msgstr ""
|
4990 |
|
@@ -4999,80 +4999,84 @@ msgid "Sorry, you need to be logged in to perform this action."
|
|
4999 |
msgstr ""
|
5000 |
|
5001 |
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:228
|
5002 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
5003 |
msgid "Friendship does not exist."
|
5004 |
msgstr ""
|
5005 |
|
5006 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
|
|
|
|
|
|
|
|
5007 |
#: bp-templates/bp-nouveau/includes/groups/functions.php:488
|
5008 |
msgid "You are not allowed to perform this action."
|
5009 |
msgstr ""
|
5010 |
|
5011 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
5012 |
msgid "There was an error trying to create the friendship."
|
5013 |
msgstr ""
|
5014 |
|
5015 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
5016 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
5017 |
msgid "Invalid friendship ID."
|
5018 |
msgstr ""
|
5019 |
|
5020 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
5021 |
msgid "Could not accept friendship."
|
5022 |
msgstr ""
|
5023 |
|
5024 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
5025 |
msgid "Could not delete friendship."
|
5026 |
msgstr ""
|
5027 |
|
5028 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
5029 |
msgid "A unique numeric ID of a user."
|
5030 |
msgstr ""
|
5031 |
|
5032 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
5033 |
msgid "Whether to force the friendship agreement."
|
5034 |
msgstr ""
|
5035 |
|
5036 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
5037 |
msgid "Whether to force friendship removal."
|
5038 |
msgstr ""
|
5039 |
|
5040 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
5041 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
5042 |
msgid "Unique numeric identifier of the friendship."
|
5043 |
msgstr ""
|
5044 |
|
5045 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
5046 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
5047 |
msgid "The ID of the user who is requesting the Friendship."
|
5048 |
msgstr ""
|
5049 |
|
5050 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
5051 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
5052 |
msgid "The ID of the user who is invited to agree to the Friendship request."
|
5053 |
msgstr ""
|
5054 |
|
5055 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
5056 |
msgid "Whether the friendship been confirmed/accepted."
|
5057 |
msgstr ""
|
5058 |
|
5059 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
5060 |
msgid "The date the friendship was created, in the site's timezone."
|
5061 |
msgstr ""
|
5062 |
|
5063 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
5064 |
msgid "ID of the member whose friendships are being retrieved."
|
5065 |
msgstr ""
|
5066 |
|
5067 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
5068 |
msgid "Wether the friendship has been accepted."
|
5069 |
msgstr ""
|
5070 |
|
5071 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
5072 |
msgid "Column name to order the results by."
|
5073 |
msgstr ""
|
5074 |
|
5075 |
-
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:
|
5076 |
msgid "Order results ascending or descending."
|
5077 |
msgstr ""
|
5078 |
|
@@ -6688,125 +6692,125 @@ msgstr ""
|
|
6688 |
msgid "A unique numeric ID for the Group Member."
|
6689 |
msgstr ""
|
6690 |
|
6691 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6692 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6693 |
msgid "Could not join the group."
|
6694 |
msgstr ""
|
6695 |
|
6696 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6697 |
msgid "Could not add member to the group."
|
6698 |
msgstr ""
|
6699 |
|
6700 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6701 |
msgid "Sorry, you need to be logged in to join a group."
|
6702 |
msgstr ""
|
6703 |
|
6704 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6705 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6706 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6707 |
msgid "Invalid group member ID."
|
6708 |
msgstr ""
|
6709 |
|
6710 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6711 |
msgid "Could not promote member."
|
6712 |
msgstr ""
|
6713 |
|
6714 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6715 |
msgid "Could not demote member."
|
6716 |
msgstr ""
|
6717 |
|
6718 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6719 |
msgid "Could not demote member from the group."
|
6720 |
msgstr ""
|
6721 |
|
6722 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6723 |
msgid "Could not ban member from the group."
|
6724 |
msgstr ""
|
6725 |
|
6726 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6727 |
msgid "Could not unban member from the group."
|
6728 |
msgstr ""
|
6729 |
|
6730 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6731 |
#: bp-groups/classes/class-bp-rest-group-membership-request-endpoint.php:546
|
6732 |
msgid "Sorry, you need to be logged in to make an update."
|
6733 |
msgstr ""
|
6734 |
|
6735 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6736 |
msgid "Sorry, you are not allowed to ban this group member."
|
6737 |
msgstr ""
|
6738 |
|
6739 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6740 |
msgid "Sorry, you are not allowed to unban this group member."
|
6741 |
msgstr ""
|
6742 |
|
6743 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6744 |
msgid "Sorry, you are not allowed to promote this group member."
|
6745 |
msgstr ""
|
6746 |
|
6747 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6748 |
msgid "Sorry, you are not allowed to demote this group member."
|
6749 |
msgstr ""
|
6750 |
|
6751 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6752 |
msgid "Could not remove member from this group."
|
6753 |
msgstr ""
|
6754 |
|
6755 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6756 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6757 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6758 |
msgid "Sorry, you need to be logged in to view a group membership."
|
6759 |
msgstr ""
|
6760 |
|
6761 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6762 |
msgid "Group role to assign the user to."
|
6763 |
msgstr ""
|
6764 |
|
6765 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6766 |
msgid "A unique numeric ID for the Member to add to the Group."
|
6767 |
msgstr ""
|
6768 |
|
6769 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6770 |
msgid "Action used to update a group member."
|
6771 |
msgstr ""
|
6772 |
|
6773 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6774 |
msgid "Whether the member is a group moderator."
|
6775 |
msgstr ""
|
6776 |
|
6777 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6778 |
msgid "Whether the member has been banned from the group."
|
6779 |
msgstr ""
|
6780 |
|
6781 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6782 |
msgid "Whether the member is a group administrator."
|
6783 |
msgstr ""
|
6784 |
|
6785 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6786 |
msgid "Whether the membership of this user has been confirmed."
|
6787 |
msgstr ""
|
6788 |
|
6789 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6790 |
msgid "The date of the last time the membership of this user was modified, in the site's timezone."
|
6791 |
msgstr ""
|
6792 |
|
6793 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6794 |
msgid "Sort the order of results by the status of the group members."
|
6795 |
msgstr ""
|
6796 |
|
6797 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6798 |
msgid "Ensure result set includes specific group roles."
|
6799 |
msgstr ""
|
6800 |
|
6801 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6802 |
msgid "Ensure result set excludes specific member IDs."
|
6803 |
msgstr ""
|
6804 |
|
6805 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6806 |
msgid "Whether results should exclude group admins and mods."
|
6807 |
msgstr ""
|
6808 |
|
6809 |
-
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:
|
6810 |
msgid "Whether results should exclude banned group members."
|
6811 |
msgstr ""
|
6812 |
|
@@ -7244,104 +7248,104 @@ msgstr ""
|
|
7244 |
msgid "View Profile"
|
7245 |
msgstr ""
|
7246 |
|
7247 |
-
#: bp-members/bp-members-functions.php:
|
7248 |
msgid "User last_activity data is no longer stored in usermeta. Use bp_get_user_last_activity() instead."
|
7249 |
msgstr ""
|
7250 |
|
7251 |
-
#: bp-members/bp-members-functions.php:
|
7252 |
msgid "User last_activity data is no longer stored in usermeta. Use bp_update_user_last_activity() instead."
|
7253 |
msgstr ""
|
7254 |
|
7255 |
-
#: bp-members/bp-members-functions.php:
|
7256 |
-
#: bp-members/bp-members-functions.php:
|
7257 |
msgid "<strong>ERROR</strong>: Your account has been marked as a spammer."
|
7258 |
msgstr ""
|
7259 |
|
7260 |
-
#: bp-members/bp-members-functions.php:
|
7261 |
msgid "Please check your email address."
|
7262 |
msgstr ""
|
7263 |
|
7264 |
-
#: bp-members/bp-members-functions.php:
|
7265 |
-
#: bp-members/bp-members-functions.php:
|
7266 |
msgid "Sorry, that email address is not allowed!"
|
7267 |
msgstr ""
|
7268 |
|
7269 |
-
#: bp-members/bp-members-functions.php:
|
7270 |
msgid "Sorry, that email address is already used!"
|
7271 |
msgstr ""
|
7272 |
|
7273 |
-
#: bp-members/bp-members-functions.php:
|
7274 |
msgid "Please enter a username"
|
7275 |
msgstr ""
|
7276 |
|
7277 |
-
#: bp-members/bp-members-functions.php:
|
7278 |
msgid "That username is not allowed"
|
7279 |
msgstr ""
|
7280 |
|
7281 |
-
#: bp-members/bp-members-functions.php:
|
7282 |
msgid "Usernames can contain only letters, numbers, ., -, and @"
|
7283 |
msgstr ""
|
7284 |
|
7285 |
-
#: bp-members/bp-members-functions.php:
|
7286 |
msgid "Username must be at least 4 characters"
|
7287 |
msgstr ""
|
7288 |
|
7289 |
-
#: bp-members/bp-members-functions.php:
|
7290 |
msgid "Sorry, usernames may not contain the character \"_\"!"
|
7291 |
msgstr ""
|
7292 |
|
7293 |
-
#: bp-members/bp-members-functions.php:
|
7294 |
msgid "Sorry, usernames must have letters too!"
|
7295 |
msgstr ""
|
7296 |
|
7297 |
-
#: bp-members/bp-members-functions.php:
|
7298 |
msgid "Sorry, that username already exists!"
|
7299 |
msgstr ""
|
7300 |
|
7301 |
-
#: bp-members/bp-members-functions.php:
|
7302 |
-
#: bp-members/bp-members-functions.php:
|
7303 |
#: bp-members/classes/class-bp-rest-signup-endpoint.php:666
|
7304 |
msgid "Invalid activation key."
|
7305 |
msgstr ""
|
7306 |
|
7307 |
-
#: bp-members/bp-members-functions.php:
|
7308 |
msgid "The user is already active."
|
7309 |
msgstr ""
|
7310 |
|
7311 |
-
#: bp-members/bp-members-functions.php:
|
7312 |
msgid "The site is already active."
|
7313 |
msgstr ""
|
7314 |
|
7315 |
-
#: bp-members/bp-members-functions.php:
|
7316 |
msgid "Could not create user"
|
7317 |
msgstr ""
|
7318 |
|
7319 |
-
#: bp-members/bp-members-functions.php:
|
7320 |
msgid "That username is already activated."
|
7321 |
msgstr ""
|
7322 |
|
7323 |
#. translators: %s: the activation url
|
7324 |
-
#: bp-members/bp-members-functions.php:
|
7325 |
msgid "If you have not received an email yet, <a href=\"%s\">click here to resend it</a>."
|
7326 |
msgstr ""
|
7327 |
|
7328 |
-
#: bp-members/bp-members-functions.php:
|
7329 |
msgid "<strong>ERROR</strong>: Your account has not been activated. Check your email for the activation link."
|
7330 |
msgstr ""
|
7331 |
|
7332 |
-
#: bp-members/bp-members-functions.php:
|
7333 |
msgid "<strong>ERROR</strong>: Your account has already been activated."
|
7334 |
msgstr ""
|
7335 |
|
7336 |
-
#: bp-members/bp-members-functions.php:
|
7337 |
msgid "Activation email resent! Please check your inbox or spam folder."
|
7338 |
msgstr ""
|
7339 |
|
7340 |
-
#: bp-members/bp-members-functions.php:
|
7341 |
msgid "Member type already exists."
|
7342 |
msgstr ""
|
7343 |
|
7344 |
-
#: bp-members/bp-members-functions.php:
|
7345 |
msgid "You may not register a member type with this name."
|
7346 |
msgstr ""
|
7347 |
|
@@ -8967,11 +8971,11 @@ msgstr ""
|
|
8967 |
msgid "No new notifications"
|
8968 |
msgstr ""
|
8969 |
|
8970 |
-
#: bp-notifications/bp-notifications-filters.php:
|
8971 |
msgid "BuddyPress Notifications Data"
|
8972 |
msgstr ""
|
8973 |
|
8974 |
-
#: bp-notifications/bp-notifications-filters.php:
|
8975 |
msgctxt "BuddyPress Notifications data exporter friendly name"
|
8976 |
msgid "Notifications Data"
|
8977 |
msgstr ""
|
@@ -11663,11 +11667,11 @@ msgstr ""
|
|
11663 |
msgid "Friendship cancelled."
|
11664 |
msgstr ""
|
11665 |
|
11666 |
-
#: bp-templates/bp-nouveau/includes/friends/loader.php:
|
11667 |
msgid "Accepted friendship requests"
|
11668 |
msgstr ""
|
11669 |
|
11670 |
-
#: bp-templates/bp-nouveau/includes/friends/loader.php:
|
11671 |
msgid "Pending friendship requests"
|
11672 |
msgstr ""
|
11673 |
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2020-07-01T01:15:24+00:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.4.0\n"
|
15 |
"X-Domain: buddypress\n"
|
1669 |
#: bp-groups/classes/class-bp-rest-attachments-group-avatar-endpoint.php:178
|
1670 |
#: bp-groups/classes/class-bp-rest-group-invites-endpoint.php:211
|
1671 |
#: bp-groups/classes/class-bp-rest-group-invites-endpoint.php:461
|
1672 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:328
|
1673 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:488
|
1674 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:625
|
1675 |
#: bp-groups/classes/class-bp-rest-group-membership-request-endpoint.php:207
|
1676 |
#: bp-groups/classes/class-bp-rest-group-membership-request-endpoint.php:449
|
1677 |
#: bp-groups/classes/class-bp-rest-groups-endpoint.php:245
|
4705 |
msgid "%1$s and %2$s are now friends"
|
4706 |
msgstr ""
|
4707 |
|
4708 |
+
#: bp-friends/bp-friends-filters.php:66
|
4709 |
msgid "BuddyPress Friends"
|
4710 |
msgstr ""
|
4711 |
|
4712 |
+
#: bp-friends/bp-friends-filters.php:68
|
4713 |
msgctxt "BuddyPress Friends data exporter friendly name"
|
4714 |
msgid "Friends"
|
4715 |
msgstr ""
|
4716 |
|
4717 |
+
#: bp-friends/bp-friends-filters.php:72
|
4718 |
msgid "BuddyPress Friend Requests (Sent)"
|
4719 |
msgstr ""
|
4720 |
|
4721 |
+
#: bp-friends/bp-friends-filters.php:74
|
4722 |
msgctxt "BuddyPress Friend Requests data exporter friendly name"
|
4723 |
msgid "Friend Requests (Sent)"
|
4724 |
msgstr ""
|
4725 |
|
4726 |
+
#: bp-friends/bp-friends-filters.php:78
|
4727 |
msgid "BuddyPress Friend Requests (Received)"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
+
#: bp-friends/bp-friends-filters.php:80
|
4731 |
msgctxt "BuddyPress Friend Requests data exporter friendly name"
|
4732 |
msgid "Friend Requests (Received)"
|
4733 |
msgstr ""
|
4848 |
|
4849 |
#. translators: %d: total friend count
|
4850 |
#: bp-friends/bp-friends-template.php:268
|
4851 |
+
#: bp-friends/bp-friends-template.php:738
|
4852 |
msgid "%d friend"
|
4853 |
msgid_plural "%d friends"
|
4854 |
msgstr[0] ""
|
4983 |
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:132
|
4984 |
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:213
|
4985 |
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:305
|
4986 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:427
|
4987 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:522
|
4988 |
msgid "There was a problem confirming if user is valid."
|
4989 |
msgstr ""
|
4990 |
|
4999 |
msgstr ""
|
5000 |
|
5001 |
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:228
|
5002 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:361
|
5003 |
msgid "Friendship does not exist."
|
5004 |
msgstr ""
|
5005 |
|
5006 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:316
|
5007 |
+
msgid "Those users are already friends or have sent friendship request(s) recently."
|
5008 |
+
msgstr ""
|
5009 |
+
|
5010 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:329
|
5011 |
#: bp-templates/bp-nouveau/includes/groups/functions.php:488
|
5012 |
msgid "You are not allowed to perform this action."
|
5013 |
msgstr ""
|
5014 |
|
5015 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:346
|
5016 |
msgid "There was an error trying to create the friendship."
|
5017 |
msgstr ""
|
5018 |
|
5019 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:442
|
5020 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:537
|
5021 |
msgid "Invalid friendship ID."
|
5022 |
msgstr ""
|
5023 |
|
5024 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:453
|
5025 |
msgid "Could not accept friendship."
|
5026 |
msgstr ""
|
5027 |
|
5028 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:571
|
5029 |
msgid "Could not delete friendship."
|
5030 |
msgstr ""
|
5031 |
|
5032 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:726
|
5033 |
msgid "A unique numeric ID of a user."
|
5034 |
msgstr ""
|
5035 |
|
5036 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:745
|
5037 |
msgid "Whether to force the friendship agreement."
|
5038 |
msgstr ""
|
5039 |
|
5040 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:757
|
5041 |
msgid "Whether to force friendship removal."
|
5042 |
msgstr ""
|
5043 |
|
5044 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:817
|
5045 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:887
|
5046 |
msgid "Unique numeric identifier of the friendship."
|
5047 |
msgstr ""
|
5048 |
|
5049 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:822
|
5050 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:895
|
5051 |
msgid "The ID of the user who is requesting the Friendship."
|
5052 |
msgstr ""
|
5053 |
|
5054 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:827
|
5055 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:903
|
5056 |
msgid "The ID of the user who is invited to agree to the Friendship request."
|
5057 |
msgstr ""
|
5058 |
|
5059 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:832
|
5060 |
msgid "Whether the friendship been confirmed/accepted."
|
5061 |
msgstr ""
|
5062 |
|
5063 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:838
|
5064 |
msgid "The date the friendship was created, in the site's timezone."
|
5065 |
msgstr ""
|
5066 |
|
5067 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:870
|
5068 |
msgid "ID of the member whose friendships are being retrieved."
|
5069 |
msgstr ""
|
5070 |
|
5071 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:879
|
5072 |
msgid "Wether the friendship has been accepted."
|
5073 |
msgstr ""
|
5074 |
|
5075 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:911
|
5076 |
msgid "Column name to order the results by."
|
5077 |
msgstr ""
|
5078 |
|
5079 |
+
#: bp-friends/classes/class-bp-rest-friends-endpoint.php:920
|
5080 |
msgid "Order results ascending or descending."
|
5081 |
msgstr ""
|
5082 |
|
6692 |
msgid "A unique numeric ID for the Group Member."
|
6693 |
msgstr ""
|
6694 |
|
6695 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:223
|
6696 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:351
|
6697 |
msgid "Could not join the group."
|
6698 |
msgstr ""
|
6699 |
|
6700 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:248
|
6701 |
msgid "Could not add member to the group."
|
6702 |
msgstr ""
|
6703 |
|
6704 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:305
|
6705 |
msgid "Sorry, you need to be logged in to join a group."
|
6706 |
msgstr ""
|
6707 |
|
6708 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:317
|
6709 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:477
|
6710 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:614
|
6711 |
msgid "Invalid group member ID."
|
6712 |
msgstr ""
|
6713 |
|
6714 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:390
|
6715 |
msgid "Could not promote member."
|
6716 |
msgstr ""
|
6717 |
|
6718 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:400
|
6719 |
msgid "Could not demote member."
|
6720 |
msgstr ""
|
6721 |
|
6722 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:409
|
6723 |
msgid "Could not demote member from the group."
|
6724 |
msgstr ""
|
6725 |
|
6726 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:410
|
6727 |
msgid "Could not ban member from the group."
|
6728 |
msgstr ""
|
6729 |
|
6730 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:411
|
6731 |
msgid "Could not unban member from the group."
|
6732 |
msgstr ""
|
6733 |
|
6734 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:465
|
6735 |
#: bp-groups/classes/class-bp-rest-group-membership-request-endpoint.php:546
|
6736 |
msgid "Sorry, you need to be logged in to make an update."
|
6737 |
msgstr ""
|
6738 |
|
6739 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:504
|
6740 |
msgid "Sorry, you are not allowed to ban this group member."
|
6741 |
msgstr ""
|
6742 |
|
6743 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:505
|
6744 |
msgid "Sorry, you are not allowed to unban this group member."
|
6745 |
msgstr ""
|
6746 |
|
6747 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:506
|
6748 |
msgid "Sorry, you are not allowed to promote this group member."
|
6749 |
msgstr ""
|
6750 |
|
6751 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:507
|
6752 |
msgid "Sorry, you are not allowed to demote this group member."
|
6753 |
msgstr ""
|
6754 |
|
6755 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:553
|
6756 |
msgid "Could not remove member from this group."
|
6757 |
msgstr ""
|
6758 |
|
6759 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:602
|
6760 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:643
|
6761 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:659
|
6762 |
msgid "Sorry, you need to be logged in to view a group membership."
|
6763 |
msgstr ""
|
6764 |
|
6765 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:778
|
6766 |
msgid "Group role to assign the user to."
|
6767 |
msgstr ""
|
6768 |
|
6769 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:792
|
6770 |
msgid "A unique numeric ID for the Member to add to the Group."
|
6771 |
msgstr ""
|
6772 |
|
6773 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:803
|
6774 |
msgid "Action used to update a group member."
|
6775 |
msgstr ""
|
6776 |
|
6777 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:843
|
6778 |
msgid "Whether the member is a group moderator."
|
6779 |
msgstr ""
|
6780 |
|
6781 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:849
|
6782 |
msgid "Whether the member has been banned from the group."
|
6783 |
msgstr ""
|
6784 |
|
6785 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:855
|
6786 |
msgid "Whether the member is a group administrator."
|
6787 |
msgstr ""
|
6788 |
|
6789 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:861
|
6790 |
msgid "Whether the membership of this user has been confirmed."
|
6791 |
msgstr ""
|
6792 |
|
6793 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:867
|
6794 |
msgid "The date of the last time the membership of this user was modified, in the site's timezone."
|
6795 |
msgstr ""
|
6796 |
|
6797 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:897
|
6798 |
msgid "Sort the order of results by the status of the group members."
|
6799 |
msgstr ""
|
6800 |
|
6801 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:906
|
6802 |
msgid "Ensure result set includes specific group roles."
|
6803 |
msgstr ""
|
6804 |
|
6805 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:918
|
6806 |
msgid "Ensure result set excludes specific member IDs."
|
6807 |
msgstr ""
|
6808 |
|
6809 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:927
|
6810 |
msgid "Whether results should exclude group admins and mods."
|
6811 |
msgstr ""
|
6812 |
|
6813 |
+
#: bp-groups/classes/class-bp-rest-group-membership-endpoint.php:935
|
6814 |
msgid "Whether results should exclude banned group members."
|
6815 |
msgstr ""
|
6816 |
|
7248 |
msgid "View Profile"
|
7249 |
msgstr ""
|
7250 |
|
7251 |
+
#: bp-members/bp-members-functions.php:1104
|
7252 |
msgid "User last_activity data is no longer stored in usermeta. Use bp_get_user_last_activity() instead."
|
7253 |
msgstr ""
|
7254 |
|
7255 |
+
#: bp-members/bp-members-functions.php:1139
|
7256 |
msgid "User last_activity data is no longer stored in usermeta. Use bp_update_user_last_activity() instead."
|
7257 |
msgstr ""
|
7258 |
|
7259 |
+
#: bp-members/bp-members-functions.php:1398
|
7260 |
+
#: bp-members/bp-members-functions.php:2547
|
7261 |
msgid "<strong>ERROR</strong>: Your account has been marked as a spammer."
|
7262 |
msgstr ""
|
7263 |
|
7264 |
+
#: bp-members/bp-members-functions.php:1646
|
7265 |
msgid "Please check your email address."
|
7266 |
msgstr ""
|
7267 |
|
7268 |
+
#: bp-members/bp-members-functions.php:1650
|
7269 |
+
#: bp-members/bp-members-functions.php:1654
|
7270 |
msgid "Sorry, that email address is not allowed!"
|
7271 |
msgstr ""
|
7272 |
|
7273 |
+
#: bp-members/bp-members-functions.php:1658
|
7274 |
msgid "Sorry, that email address is already used!"
|
7275 |
msgstr ""
|
7276 |
|
7277 |
+
#: bp-members/bp-members-functions.php:1698
|
7278 |
msgid "Please enter a username"
|
7279 |
msgstr ""
|
7280 |
|
7281 |
+
#: bp-members/bp-members-functions.php:1704
|
7282 |
msgid "That username is not allowed"
|
7283 |
msgstr ""
|
7284 |
|
7285 |
+
#: bp-members/bp-members-functions.php:1709
|
7286 |
msgid "Usernames can contain only letters, numbers, ., -, and @"
|
7287 |
msgstr ""
|
7288 |
|
7289 |
+
#: bp-members/bp-members-functions.php:1714
|
7290 |
msgid "Username must be at least 4 characters"
|
7291 |
msgstr ""
|
7292 |
|
7293 |
+
#: bp-members/bp-members-functions.php:1719
|
7294 |
msgid "Sorry, usernames may not contain the character \"_\"!"
|
7295 |
msgstr ""
|
7296 |
|
7297 |
+
#: bp-members/bp-members-functions.php:1726
|
7298 |
msgid "Sorry, usernames must have letters too!"
|
7299 |
msgstr ""
|
7300 |
|
7301 |
+
#: bp-members/bp-members-functions.php:1738
|
7302 |
msgid "Sorry, that username already exists!"
|
7303 |
msgstr ""
|
7304 |
|
7305 |
+
#: bp-members/bp-members-functions.php:1957
|
7306 |
+
#: bp-members/bp-members-functions.php:1984
|
7307 |
#: bp-members/classes/class-bp-rest-signup-endpoint.php:666
|
7308 |
msgid "Invalid activation key."
|
7309 |
msgstr ""
|
7310 |
|
7311 |
+
#: bp-members/bp-members-functions.php:1964
|
7312 |
msgid "The user is already active."
|
7313 |
msgstr ""
|
7314 |
|
7315 |
+
#: bp-members/bp-members-functions.php:1966
|
7316 |
msgid "The site is already active."
|
7317 |
msgstr ""
|
7318 |
|
7319 |
+
#: bp-members/bp-members-functions.php:1996
|
7320 |
msgid "Could not create user"
|
7321 |
msgstr ""
|
7322 |
|
7323 |
+
#: bp-members/bp-members-functions.php:2010
|
7324 |
msgid "That username is already activated."
|
7325 |
msgstr ""
|
7326 |
|
7327 |
#. translators: %s: the activation url
|
7328 |
+
#: bp-members/bp-members-functions.php:2369
|
7329 |
msgid "If you have not received an email yet, <a href=\"%s\">click here to resend it</a>."
|
7330 |
msgstr ""
|
7331 |
|
7332 |
+
#: bp-members/bp-members-functions.php:2371
|
7333 |
msgid "<strong>ERROR</strong>: Your account has not been activated. Check your email for the activation link."
|
7334 |
msgstr ""
|
7335 |
|
7336 |
+
#: bp-members/bp-members-functions.php:2402
|
7337 |
msgid "<strong>ERROR</strong>: Your account has already been activated."
|
7338 |
msgstr ""
|
7339 |
|
7340 |
+
#: bp-members/bp-members-functions.php:2404
|
7341 |
msgid "Activation email resent! Please check your inbox or spam folder."
|
7342 |
msgstr ""
|
7343 |
|
7344 |
+
#: bp-members/bp-members-functions.php:2634
|
7345 |
msgid "Member type already exists."
|
7346 |
msgstr ""
|
7347 |
|
7348 |
+
#: bp-members/bp-members-functions.php:2657
|
7349 |
msgid "You may not register a member type with this name."
|
7350 |
msgstr ""
|
7351 |
|
8971 |
msgid "No new notifications"
|
8972 |
msgstr ""
|
8973 |
|
8974 |
+
#: bp-notifications/bp-notifications-filters.php:28
|
8975 |
msgid "BuddyPress Notifications Data"
|
8976 |
msgstr ""
|
8977 |
|
8978 |
+
#: bp-notifications/bp-notifications-filters.php:30
|
8979 |
msgctxt "BuddyPress Notifications data exporter friendly name"
|
8980 |
msgid "Notifications Data"
|
8981 |
msgstr ""
|
11667 |
msgid "Friendship cancelled."
|
11668 |
msgstr ""
|
11669 |
|
11670 |
+
#: bp-templates/bp-nouveau/includes/friends/loader.php:105
|
11671 |
msgid "Accepted friendship requests"
|
11672 |
msgstr ""
|
11673 |
|
11674 |
+
#: bp-templates/bp-nouveau/includes/friends/loader.php:110
|
11675 |
msgid "Pending friendship requests"
|
11676 |
msgstr ""
|
11677 |
|
class-buddypress.php
CHANGED
@@ -303,7 +303,7 @@ class BuddyPress {
|
|
303 |
|
304 |
/** Versions **********************************************************/
|
305 |
|
306 |
-
$this->version = '6.
|
307 |
$this->db_version = 12385;
|
308 |
|
309 |
/** Loading ***********************************************************/
|
303 |
|
304 |
/** Versions **********************************************************/
|
305 |
|
306 |
+
$this->version = '6.1.0';
|
307 |
$this->db_version = 12385;
|
308 |
|
309 |
/** Loading ***********************************************************/
|
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: johnjamesjacoby, DJPaul, boonebgorges, r-a-y, imath, mercime, tw2113, dcavins, hnla, karmatosed, slaFFik, dimensionmedia, henrywright, netweb, offereins, espellcaste, modemlooper, danbp, Venutius, apeatling, shanebp
|
3 |
Tags: user profiles, activity streams, messaging, friends, user groups, notifications, community, social networking, intranet
|
4 |
Requires at least: 4.8
|
5 |
-
Tested up to: 5.4.
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 6.
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -125,6 +125,9 @@ Try <a href="https://wordpress.org/plugins/bbpress/">bbPress</a>. It integrates
|
|
125 |
|
126 |
== Upgrade Notice ==
|
127 |
|
|
|
|
|
|
|
128 |
= 6.0.0 =
|
129 |
See: https://codex.buddypress.org/releases/version-6-0-0/
|
130 |
|
@@ -160,6 +163,9 @@ See: https://codex.buddypress.org/releases/version-4-0-0/
|
|
160 |
|
161 |
== Changelog ==
|
162 |
|
|
|
|
|
|
|
163 |
= 6.0.0 =
|
164 |
See: https://codex.buddypress.org/releases/version-6-0-0/
|
165 |
|
2 |
Contributors: johnjamesjacoby, DJPaul, boonebgorges, r-a-y, imath, mercime, tw2113, dcavins, hnla, karmatosed, slaFFik, dimensionmedia, henrywright, netweb, offereins, espellcaste, modemlooper, danbp, Venutius, apeatling, shanebp
|
3 |
Tags: user profiles, activity streams, messaging, friends, user groups, notifications, community, social networking, intranet
|
4 |
Requires at least: 4.8
|
5 |
+
Tested up to: 5.4.2
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 6.1.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
125 |
|
126 |
== Upgrade Notice ==
|
127 |
|
128 |
+
= 6.1.0 =
|
129 |
+
See: https://codex.buddypress.org/releases/version-6-1-0/
|
130 |
+
|
131 |
= 6.0.0 =
|
132 |
See: https://codex.buddypress.org/releases/version-6-0-0/
|
133 |
|
163 |
|
164 |
== Changelog ==
|
165 |
|
166 |
+
= 6.1.0 =
|
167 |
+
See: https://codex.buddypress.org/releases/version-6-1-0/
|
168 |
+
|
169 |
= 6.0.0 =
|
170 |
See: https://codex.buddypress.org/releases/version-6-0-0/
|
171 |
|