If you have a VBO with confirmation page you get only "You selected the following items:" instead of "You selected the following XXX items:" above the list of items.

The count is calculated and send to format_plural() but the the palceholder for the count is missing.

See:
http://drupalcode.org/project/views_bulk_operations.git/blob/refs/heads/...

Changing

$count = format_plural(count($entities), 'item', 'items');

to

$count = format_plural(count($entities), 'item', '@count items');

Sending patch after issue number creation.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

marcusx’s picture

Status: Active » Needs review
FileSize
663 bytes

Patch...

marcusx’s picture

Component: User interface » Core
bojanz’s picture

Status: Needs review » Fixed

Committed, thanks!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

Anonymous’s picture

Issue summary: View changes

Updated issue summary.