Changeset 12991
- Timestamp:
- 07/11/2021 11:03:29 PM (5 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
-
bp-core/admin/bp-core-admin-slugs.php (modified) (2 diffs)
-
bp-friends/classes/class-bp-core-friends-widget.php (modified) (1 diff)
-
bp-groups/bp-groups-functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/admin/bp-core-admin-slugs.php
r12948 r12991 199 199 printf( 200 200 /* translators: %s: the link to the Network settings page */ 201 esc_html_x( 'Registration is currently disabled. Before associating a page is allowed, please enable registration by selecting either the "User accounts may be registered" or "Both sites and user accounts can be registered" option on %s.', 'Disabled registration message for multisite config', 'buddypress' ),201 esc_html_x( 'Registration is currently disabled. Before associating a page is allowed, please enable registration by selecting either the "User accounts may be registered" or "Both sites and user accounts can be registered" option on %s.', 'Disabled registration message for multisite config', 'buddypress' ), 202 202 sprintf( 203 203 '<a href="%1$s">%2$s</a>', … … 213 213 printf( 214 214 /* translators: %s: the link to the Site general options page */ 215 esc_html_x( 'Registration is currently disabled. Before associating a page is allowed, please enable registration by clicking on the "Anyone can register" checkbox on %s.', 'Disabled registration message for regular site config', 'buddypress' ),215 esc_html_x( 'Registration is currently disabled. Before associating a page is allowed, please enable registration by clicking on the "Anyone can register" checkbox on %s.', 'Disabled registration message for regular site config', 'buddypress' ), 216 216 sprintf( 217 217 '<a href="%1$s">%2$s</a>', -
trunk/src/bp-friends/classes/class-bp-core-friends-widget.php
r12976 r12991 26 26 function __construct() { 27 27 $widget_ops = array( 28 'description' => __( 'A dynamic list of recently active, popular, and newest Friends of the displayed member. Widget is only shown when viewing a member profile.', 'buddypress' ),28 'description' => __( 'A dynamic list of recently active, popular, and newest Friends of the displayed member. Widget is only shown when viewing a member profile.', 'buddypress' ), 29 29 'classname' => 'widget_bp_core_friends_widget buddypress widget', 30 30 'customize_selective_refresh' => true, -
trunk/src/bp-groups/bp-groups-functions.php
r12873 r12991 2118 2118 2119 2119 if ( ! empty( $membership_id ) ){ 2120 _deprecated_argument( __METHOD__, '5.0.0', sprintf( __( 'Argument `membership_id` passed to %1$s is deprecated. See the inline documentation at %2$s for more details.', 'buddypress' ), __METHOD__, __FILE__ ) );2120 _deprecated_argument( __METHOD__, '5.0.0', sprintf( __( 'Argument `membership_id` passed to %1$s is deprecated. See the inline documentation at %2$s for more details.', 'buddypress' ), __METHOD__, __FILE__ ) ); 2121 2121 } 2122 2122 … … 2156 2156 if ( ! empty( $membership_id ) ){ 2157 2157 /* translators: 1: method name. 2: file name. */ 2158 _deprecated_argument( __METHOD__, '5.0.0', sprintf( __( 'Argument `membership_id` passed to %1$s is deprecated. See the inline documentation at %2$s for more details.', 'buddypress' ), __METHOD__, __FILE__ ) );2158 _deprecated_argument( __METHOD__, '5.0.0', sprintf( __( 'Argument `membership_id` passed to %1$s is deprecated. See the inline documentation at %2$s for more details.', 'buddypress' ), __METHOD__, __FILE__ ) ); 2159 2159 } 2160 2160
Note: See TracChangeset
for help on using the changeset viewer.