From be4d8a3f44f42cf9f0c6f005884e8ad5251f9daa Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 4 Nov 2016 10:39:46 +0530 Subject: [PATCH] ... --- src/calibre/srv/opds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/srv/opds.py b/src/calibre/srv/opds.py index 2e8d98b280..356467447b 100644 --- a/src/calibre/srv/opds.py +++ b/src/calibre/srv/opds.py @@ -171,7 +171,7 @@ def CATALOG_GROUP_ENTRY(item, category, request_context, updated): TITLE(item.text), ID(id_), UPDATED(updated), - E.content(_('%d items')%item.count, type='text'), + E.content(ngettext('one item', '{} items', item.count).format(item.count), type='text'), link )