Fix malformed translation string (#1749)

This commit is contained in:
Veronica Berglyd Olsen
2024-03-12 18:27:15 +01:00
parent d15e4ebb17
commit 6a3f6048c2
+2 -2
View File
@@ -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"<a href='{nwConst.URL_RELEASES}'>", "</a>")