This commit is contained in:
Kovid Goyal 2020-06-01 09:32:28 +05:30
parent efc137db7b
commit 4b159dc9ef
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -456,7 +456,7 @@ def render_book(container_id, book_id):
render_book.title = metadata.title
set_title(c, metadata.title)
authors = metadata.authors.join(' & ') if metadata.authors else _('Unknown')
alt = _('{} by {}\nClick to read').format(metadata.title, authors)
alt = _('{} by {}\n\nClick to read').format(metadata.title, authors)
bsrgb = get_color_as_rgba('button-start')
def prev_next_button(is_prev):