Skip to:
Content

BuddyPress.org

Changeset 12991


Ignore:
Timestamp:
07/11/2021 11:03:29 PM (5 years ago)
Author:
imath
Message:

i18n: Fix wrong double spaces into 5 strings

Props NekoJonez

Fixes #8510

Location:
trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/admin/bp-core-admin-slugs.php

    r12948 r12991  
    199199                    printf(
    200200                        /* 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' ),
    202202                        sprintf(
    203203                            '<a href="%1$s">%2$s</a>',
     
    213213                    printf(
    214214                        /* 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' ),
    216216                        sprintf(
    217217                            '<a href="%1$s">%2$s</a>',
  • trunk/src/bp-friends/classes/class-bp-core-friends-widget.php

    r12976 r12991  
    2626    function __construct() {
    2727        $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' ),
    2929            'classname'                   => 'widget_bp_core_friends_widget buddypress widget',
    3030            'customize_selective_refresh' => true,
  • trunk/src/bp-groups/bp-groups-functions.php

    r12873 r12991  
    21182118
    21192119    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__ ) );
    21212121    }
    21222122
     
    21562156    if ( ! empty( $membership_id ) ){
    21572157        /* 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__ ) );
    21592159    }
    21602160
Note: See TracChangeset for help on using the changeset viewer.