From 732a92b153d188f5f91e2c37bbe0af7f09f3211b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 21 Dec 2022 21:51:46 +0530 Subject: [PATCH] ... --- src/calibre/gui2/tweak_book/boss.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/gui2/tweak_book/boss.py b/src/calibre/gui2/tweak_book/boss.py index 4f34f49ab4..b9dcacb193 100644 --- a/src/calibre/gui2/tweak_book/boss.py +++ b/src/calibre/gui2/tweak_book/boss.py @@ -319,8 +319,8 @@ class Boss(QObject): return error_dialog(self.gui, _('File not found'), _( 'The file %s does not exist.') % path, show=True) if not os.access(path, os.W_OK): - warning_dialog(self.gui, _('Readonly file'), _( - 'The file {} is readon-only. Saving changes to it will either fail or cause its permissions to be reset.').format(path), show=True) + warning_dialog(self.gui, _('Read-only file'), _( + 'The file {} is read-only. Saving changes to it will either fail or cause its permissions to be reset.').format(path), show=True) isdir = os.path.isdir(path) ext = path.rpartition('.')[-1].upper() if ext not in SUPPORTED and not isdir: