Make WordPress Core


Ignore:
Timestamp:
04/01/2019 12:23:54 PM (6 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/media.php

    r44785 r45082  
    28992899 */
    29002900function multisite_over_quota_message() {
    2901     echo '<p>' . sprintf( __( 'Sorry, you have used all of your storage quota of %s MB.' ), get_space_allowed() ) . '</p>';
     2901    echo '<p>' . sprintf(
     2902        /* translators: %s: allowed space allocation */
     2903        __( 'Sorry, you have used your space allocation of %s. Please delete some files to upload more files.' ),
     2904        size_format( get_space_allowed() * MB_IN_BYTES )
     2905    ) . '</p>';
    29022906}
    29032907
Note: See TracChangeset for help on using the changeset viewer.