From 7e7f6a30be8f679b3748180f61fd9a020110b6db Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Tue, 29 Oct 2019 17:48:59 +0100 Subject: [PATCH] Some minor changes to the about dialog --- nw/gui/mainmenu.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nw/gui/mainmenu.py b/nw/gui/mainmenu.py index bf20c126..e2f5775d 100644 --- a/nw/gui/mainmenu.py +++ b/nw/gui/mainmenu.py @@ -110,7 +110,7 @@ class GuiMainMenu(QMenuBar): "

About {name:s}

" "

Version: {version:s}
Release Date: {date:s}

" "

{name:s} is a markdown-like text editor designed for organising and writing novels. " - "It is written in Python 3 with a Qt5 GUI. The Python and Qt layers are connected with PyQt5

" + "It is written in Python 3 with a Qt5 GUI, using PyQt5

" "

{name:s} is licensed under GPL v3.0

" "

{copyright:s}

" "

Website: {website:s}

" @@ -129,11 +129,11 @@ class GuiMainMenu(QMenuBar): aboutMsg += "

GUI Theme and Syntax Highlighting

" aboutMsg += "

" if theTheme.themeCredit != "": - aboutMsg += "%s%s by %s
" % ( + aboutMsg += "%s\"%s\" by %s
" % ( listPrefix, theTheme.themeName, theTheme.themeCredit ) if theTheme.syntaxCredit != "": - aboutMsg += "%s%s by %s
" % ( + aboutMsg += "%s\"%s\" by %s
" % ( listPrefix, theTheme.syntaxName, theTheme.syntaxCredit ) aboutMsg += "

"