multisite_over_quota_message

The timeline below displays how wordpress function multisite_over_quota_message has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 5.3

/**
 * Displays the out of storage quota message in Multisite.
 *
 * @since 3.5.0
 */
function multisite_over_quota_message()
{
    echo '<p>' . sprintf(
        /* translators: %s: Allowed space allocation. */
        __('Sorry, you have used your space allocation of %s. Please delete some files to upload more files.'),
        size_format(get_space_allowed() * MB_IN_BYTES)
    ) . '</p>';
}

WordPress Version: 5.2

/**
 * Displays the out of storage quota message in Multisite.
 *
 * @since 3.5.0
 */
function multisite_over_quota_message()
{
    echo '<p>' . sprintf(
        /* translators: %s: allowed space allocation */
        __('Sorry, you have used your space allocation of %s. Please delete some files to upload more files.'),
        size_format(get_space_allowed() * MB_IN_BYTES)
    ) . '</p>';
}

WordPress Version: 3.7

/**
 * Displays the out of storage quota message in Multisite.
 *
 * @since 3.5.0
 */
function multisite_over_quota_message()
{
    echo '<p>' . sprintf(__('Sorry, you have used all of your storage quota of %s MB.'), get_space_allowed()) . '</p>';
}