Skip to:
Content

bbPress.org


Ignore:
Timestamp:
06/16/2017 05:31:39 PM (7 years ago)
Author:
johnjamesjacoby
Message:

Adimn: Fix some formatting in PHPDoc blocks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/replies.php

    r6438 r6566  
    260260     */
    261261    public function bulk_post_updated_messages( $bulk_messages, $bulk_counts ) {
    262 
    263         $bulk_messages['reply']['updated'] = _n( '%s reply updated.', '%s replies updated.', $bulk_counts['updated'], 'bbpress' );
    264         $bulk_messages['reply']['locked']  = ( 1 === $bulk_counts['locked'] ) ? __( '1 reply not updated, somebody is editing it.', 'bbpress' ) :
    265                                                   _n( '%s reply not updated, somebody is editing it.', '%s replies not updated, somebody is editing them.', $bulk_counts['locked'], 'bbpress' );
     262        $bulk_messages['reply']['updated'] = _n( '%s reply updated.', '%s replies updated.', $bulk_counts['updated'], 'bbpress');
     263        $bulk_messages['reply']['locked']  = ( 1 === $bulk_counts['locked'] )
     264            ? __( '1 reply not updated, somebody is editing it.', 'bbpress' )
     265            : _n( '%s reply not updated, somebody is editing it.', '%s replies not updated, somebody is editing them.', $bulk_counts['locked'], 'bbpress' );
     266
    266267        return $bulk_messages;
    267268    }
Note: See TracChangeset for help on using the changeset viewer.