Make WordPress Core


Ignore:
Timestamp:
04/01/2019 12:23:54 PM (7 years ago)
Author:
SergeyBiryukov
Message:

I18N: Merge similar strings about allowed space allocation in Multisite.

Props ramiy, Jonathandejong, pento.
Fixes #42223.

File:
1 edited

Legend:

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

    r44905 r45082  
    227227    if ( ( $space_allowed - $space_used ) < 0 ) {
    228228        if ( $echo ) {
    229             _e( 'Sorry, you have used your space allocation. Please delete some files to upload more files.' );
     229            printf(
     230                /* translators: %s: allowed space allocation */
     231                __( 'Sorry, you have used your space allocation of %s. Please delete some files to upload more files.' ),
     232                size_format( $space_allowed * MB_IN_BYTES )
     233            );
    230234        }
    231235        return true;
     
    10031007
    10041008    submit_button( __( 'Confirm Deletion' ), 'primary' );
    1005     ?>
     1009?>
    10061010    </form>
    10071011    <?php
Note: See TracChangeset for help on using the changeset viewer.