diff -r 3b46c662a004 -r 9960d19d66b5 src/eric7/UI/UserInterface.py --- a/src/eric7/UI/UserInterface.py Tue Dec 06 16:00:06 2022 +0100 +++ b/src/eric7/UI/UserInterface.py Tue Dec 06 16:04:58 2022 +0100 @@ -2715,7 +2715,7 @@ self.versionAct.setStatusTip(self.tr("Display version information")) self.versionAct.setWhatsThis( self.tr( - """<b>Show Versions</b>""" """<p>Display version information.</p>""" + """<b>Show Versions</b><p>Display version information.</p>""" ) ) self.versionAct.triggered.connect(self.__showVersions) @@ -2764,7 +2764,7 @@ self.reportBugAct.setStatusTip(self.tr("Report a bug")) self.reportBugAct.setWhatsThis( self.tr( - """<b>Report Bug...</b>""" """<p>Opens a dialog to report a bug.</p>""" + """<b>Report Bug...</b><p>Opens a dialog to report a bug.</p>""" ) ) self.reportBugAct.triggered.connect(self.__reportBug) @@ -2865,7 +2865,7 @@ self.testScriptAct.setStatusTip(self.tr("Run tests of the current script")) self.testScriptAct.setWhatsThis( self.tr( - """<b>Test Script</b>""" """<p>Run tests with the current script.</p>""" + """<b>Test Script</b><p>Run tests with the current script.</p>""" ) ) self.testScriptAct.triggered.connect(self.__startTestScript) @@ -2884,7 +2884,7 @@ self.testProjectAct.setStatusTip(self.tr("Run tests of the current project")) self.testProjectAct.setWhatsThis( self.tr( - """<b>Test Project</b>""" """<p>Run test of the current project.</p>""" + """<b>Test Project</b><p>Run test of the current project.</p>""" ) ) self.testProjectAct.triggered.connect(self.__startTestProject) @@ -2915,7 +2915,7 @@ ) self.designer4Act.setStatusTip(self.tr("Start Qt-Designer")) self.designer4Act.setWhatsThis( - self.tr("""<b>Qt-Designer</b>""" """<p>Start Qt-Designer.</p>""") + self.tr("""<b>Qt-Designer</b><p>Start Qt-Designer.</p>""") ) self.designer4Act.triggered.connect(self.__designer) self.actions.append(self.designer4Act) @@ -2945,7 +2945,7 @@ ) self.linguist4Act.setStatusTip(self.tr("Start Qt-Linguist")) self.linguist4Act.setWhatsThis( - self.tr("""<b>Qt-Linguist</b>""" """<p>Start Qt-Linguist.</p>""") + self.tr("""<b>Qt-Linguist</b><p>Start Qt-Linguist.</p>""") ) self.linguist4Act.triggered.connect(self.__linguist) self.actions.append(self.linguist4Act) @@ -2963,7 +2963,7 @@ ) self.uipreviewerAct.setStatusTip(self.tr("Start the UI Previewer")) self.uipreviewerAct.setWhatsThis( - self.tr("""<b>UI Previewer</b>""" """<p>Start the UI Previewer.</p>""") + self.tr("""<b>UI Previewer</b><p>Start the UI Previewer.</p>""") ) self.uipreviewerAct.triggered.connect(self.__UIPreviewer) self.actions.append(self.uipreviewerAct) @@ -3037,7 +3037,7 @@ ) self.sqlBrowserAct.setStatusTip(self.tr("Browse a SQL database")) self.sqlBrowserAct.setWhatsThis( - self.tr("""<b>SQL Browser</b>""" """<p>Browse a SQL database.</p>""") + self.tr("""<b>SQL Browser</b><p>Browse a SQL database.</p>""") ) self.sqlBrowserAct.triggered.connect(self.__sqlBrowser) self.actions.append(self.sqlBrowserAct) @@ -3243,7 +3243,7 @@ ) self.reloadAPIsAct.setStatusTip(self.tr("Reload the API information")) self.reloadAPIsAct.setWhatsThis( - self.tr("""<b>Reload APIs</b>""" """<p>Reload the API information.</p>""") + self.tr("""<b>Reload APIs</b><p>Reload the API information.</p>""") ) self.reloadAPIsAct.triggered.connect(self.__reloadAPIs) self.actions.append(self.reloadAPIsAct) @@ -4524,7 +4524,7 @@ sizeStr = "64-Bit" if sys.maxsize > 2**32 else "32-Bit" - versionText = self.tr("""<h2>Version Numbers</h2>""" """<table>""") + versionText = self.tr("""<h2>Version Numbers</h2><table>""") # Python version versionText += ("""<tr><td><b>Python</b></td><td>{0}, {1}</td></tr>""").format( @@ -6959,7 +6959,7 @@ self, self.tr("Start Web Browser"), self.tr( - """The eric web browser could not be""" """ started.""" + """The eric web browser could not be started.""" ), ) return False