Making WordPress.org


Ignore:
Timestamp:
10/20/2022 05:10:00 PM (3 years ago)
Author:
coffee2code
Message:

Photo Directory, User: Move Uploads::user_reached_concurrent_submission_limit() to User::has_reached_concurrent_submission_limit().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/photo-directory/inc/moderation.php

    r12107 r12140  
    560560        $content .= '<p>';
    561561        $content .= sprintf(
    562             _n( 'You can have up to <strong>%d</strong> photo in the moderation queue at a time. You currently have <strong>%d</strong>.', 'You can have up to <strong>%d</strong> photos in the moderation queue at a time. You currently have <strong>%d</strong>.', Uploads::MAX_PENDING_SUBMISSIONS,'wporg-photos' ),
    563             Uploads::MAX_PENDING_SUBMISSIONS,
     562            _n( 'You can have up to <strong>%d</strong> photo in the moderation queue at a time. You currently have <strong>%d</strong>.', 'You can have up to <strong>%d</strong> photos in the moderation queue at a time. You currently have <strong>%d</strong>.', User::MAX_PENDING_SUBMISSIONS,'wporg-photos' ),
     563            User::MAX_PENDING_SUBMISSIONS,
    564564            count( $pending )
    565565        );
Note: See TracChangeset for help on using the changeset viewer.