From 6a3f6048c25bdfc9b38c6fe011db95efde793ced Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Tue, 12 Mar 2024 18:27:15 +0100 Subject: [PATCH] Fix malformed translation string (#1749) --- novelwriter/guimain.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/novelwriter/guimain.py b/novelwriter/guimain.py index 50807495..e4f4b41b 100644 --- a/novelwriter/guimain.py +++ b/novelwriter/guimain.py @@ -355,8 +355,8 @@ class GuiMain(QMainWindow): if hexToInt(CONFIG.lastNotes) < hexToInt(__hexversion__): CONFIG.lastNotes = __hexversion__ trVersion = self.tr( - "You are now running novelWriter version {0}.".format(formatVersion(__version__)) - ) + "You are now running novelWriter version {0}." + ).format(formatVersion(__version__)) trRelease = self.tr( "Please check the {0}release notes{1} for further details." ).format(f"", "")