Make WordPress Core


Ignore:
Timestamp:
07/26/2015 11:18:19 PM (10 years ago)
Author:
SergeyBiryukov
Message:

Multisite: Introduce a singular string for user removal (we already have one for deletion).

props pavelevap.
fixes #32387.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/users.php

    r33067 r33434  
    338338<div class="wrap">
    339339<h1><?php _e( 'Remove Users from Site' ); ?></h1>
    340 <p><?php _e('You have specified these users for removal:'); ?></p>
     340
     341<?php if ( 1 == count( $userids ) ) : ?>
     342    <p><?php _e( 'You have specified this user for removal:' ); ?></p>
     343<?php else : ?>
     344    <p><?php _e( 'You have specified these users for removal:' ); ?></p>
     345<?php endif; ?>
     346
    341347<ul>
    342348<?php
Note: See TracChangeset for help on using the changeset viewer.