From ecfb6fc69222d1f8253eb2a851cced7cffa5e98f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 20 Sep 2020 10:30:54 +0530 Subject: [PATCH] String changes --- src/calibre/gui2/actions/add.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/actions/add.py b/src/calibre/gui2/actions/add.py index a1ff257a60..91a98e7bdd 100644 --- a/src/calibre/gui2/actions/add.py +++ b/src/calibre/gui2/actions/add.py @@ -225,7 +225,7 @@ class AddAction(InterfaceAction): formats = {x.lower() for x in formats.split(',')} if format_ in formats: title = db.title(ids[0], index_is_id=True) - msg = _('The {0} format will be replaced in the book {1}. Are you sure?').format( + msg = _('The {0} format will be replaced in the book: {1}. Are you sure?').format( format_, title) if not confirm(msg, 'confirm_format_override_on_add', title=_('Are you sure?'), parent=self.gui):