From 151bc8eca052c064aeb26658911082f7298cec88 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 2 Apr 2021 10:06:25 +0530 Subject: [PATCH] Fix #1922304 [[Enhancement] Colons missing in the Cover generation settings screen](https://bugs.launchpad.net/calibre/+bug/1922304) --- src/calibre/gui2/covers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/gui2/covers.py b/src/calibre/gui2/covers.py index b298e4dac2..9cbc89b46c 100644 --- a/src/calibre/gui2/covers.py +++ b/src/calibre/gui2/covers.py @@ -182,8 +182,8 @@ class CoverSettingsWidget(QWidget): for x, label, size_label in ( ('title', _('&Title font family:'), _('&Title font size:')), - ('subtitle', _('&Subtitle font family'), _('&Subtitle font size:')), - ('footer', _('&Footer font family'), _('&Footer font size')), + ('subtitle', _('&Subtitle font family:'), _('&Subtitle font size:')), + ('footer', _('&Footer font family:'), _('&Footer font size:')), ): attr = '%s_font_family' % x ff = FontFamilyChooser(fp)