Commit 93dfb961 authored by OzzieIsaacs's avatar OzzieIsaacs

Added Translation of title for read/unread books

parent f446e292
......@@ -1633,10 +1633,10 @@ def render_read_books(page, are_read, as_xml=False):
return response
else:
if are_read:
name = u'Read Books' + ' (' + str(len(readBookIds)) + ')'
name = _(u'Read Books') + ' (' + str(len(readBookIds)) + ')'
else:
total_books = db.session.query(func.count(db.Books.id)).scalar()
name = u'Unread Books' + ' (' + str(total_books - len(readBookIds)) + ')'
name = _(u'Unread Books') + ' (' + str(total_books - len(readBookIds)) + ')'
return render_title_template('index.html', random=random, entries=entries, pagination=pagination,
title=_(name, name=name))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment