From e4f83c52ca0857eb98b68ee500067865cfbb769d Mon Sep 17 00:00:00 2001 From: Jim Miller Date: Tue, 22 Oct 2024 13:24:28 -0500 Subject: [PATCH] Fix for translation string bug --- calibre-plugin/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calibre-plugin/config.py b/calibre-plugin/config.py index 74eaf26e..8eb5d134 100644 --- a/calibre-plugin/config.py +++ b/calibre-plugin/config.py @@ -1094,7 +1094,7 @@ class CalibreCoverTab(QWidget): self.plugin_gen_cover = QRadioButton(_('Plugin %(gc)s')%no_trans,self) self.plugin_gen_cover.setToolTip(_("Use the %(gc)s plugin to create covers.
" "Requires that you have the the %(gc)s plugin installed.
" - "Additional settings are below."%no_trans)) + "Additional settings are below.")%no_trans) self.gencov_rdgrp.addButton(self.plugin_gen_cover) # always, new only, when no cover from site, inject yes/no... self.plugin_gen_cover.setChecked(prefs['plugin_gen_cover'])