From 13c6a4c018bb5b0627fb2e5de72428450071c525 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 20 Mar 2024 12:33:49 +0530 Subject: [PATCH] EPUB Input: Use a translated name for the cover page --- src/calibre/ebooks/conversion/plugins/epub_input.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/calibre/ebooks/conversion/plugins/epub_input.py b/src/calibre/ebooks/conversion/plugins/epub_input.py index 9915c2b169..e28d54d103 100644 --- a/src/calibre/ebooks/conversion/plugins/epub_input.py +++ b/src/calibre/ebooks/conversion/plugins/epub_input.py @@ -224,7 +224,8 @@ class EPUBInput(InputFormatPlugin): f.write(renderer) # Set the titlepage guide entry - self.set_guide_type(opf, 'titlepage', guide_cover, 'Title page') + from calibre.utils.localization import __ + self.set_guide_type(opf, 'titlepage', guide_cover, __('Cover page')) return removed def find_opf(self):