Fix singular vs plural noun usage

This commit is contained in:
Jesse Weinstein 2015-06-24 22:53:16 -07:00
parent ab7c0321d6
commit 85244ec177

View file

@ -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: