You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See \ActionScheduler_ListTable::display_admin_notices() method, it has this part:
'message' => sprintf(
/* translators: %s: amount of claims */__( 'Maximum simultaneous queues already in progress (%s queues). No additional queues will begin processing until the current queues are complete.', 'action-scheduler' ),
$this->store->get_claim_count()
),
If the number of claims is 1 (and it seems to be a default value) we have an incorrect plural in the site admin area:
Maximum simultaneous queues already in progress (1 queues). No additional queues will begin processing until the current queues are complete.
The text was updated successfully, but these errors were encountered:
See
\ActionScheduler_ListTable::display_admin_notices()
method, it has this part:If the number of claims is 1 (and it seems to be a default value) we have an incorrect plural in the site admin area:
The text was updated successfully, but these errors were encountered: