From 85244ec177fef30f5f64a04c6845fbe69f33535d Mon Sep 17 00:00:00 2001 From: Jesse Weinstein Date: Wed, 24 Jun 2015 22:53:16 -0700 Subject: [PATCH] Fix singular vs plural noun usage --- beets/ui/commands.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/beets/ui/commands.py b/beets/ui/commands.py index 00006ce51..4b403764f 100644 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -1107,11 +1107,11 @@ def remove_items(lib, query, album, delete): print_() if delete: fmt = u'$path - $title' - prompt = 'Really DELETE %i files (y/n)?' % len(items) + prompt = 'Really DELETE %i file%s (y/n)?' % (len(items), 's' if len(items)>1 else '') else: fmt = '' - prompt = 'Really remove %i items from the library (y/n)?' % \ - len(items) + prompt = 'Really remove %i item%s from the library (y/n)?' % \ + (len(items), 's' if len(items)>1 else '') # Show all the items. for item in items: