diff -r 635b6c5a36e1 -r be9f8e7e42e0 src/eric7/WebBrowser/WebBrowserWindow.py --- a/src/eric7/WebBrowser/WebBrowserWindow.py Tue Dec 06 16:57:54 2022 +0100 +++ b/src/eric7/WebBrowser/WebBrowserWindow.py Tue Dec 06 17:35:41 2022 +0100 @@ -818,9 +818,7 @@ ) self.saveAsAct.setStatusTip(self.tr("Save the current page to disk")) self.saveAsAct.setWhatsThis( - self.tr( - """<b>Save As...</b><p>Saves the current page to disk.</p>""" - ) + self.tr("""<b>Save As...</b><p>Saves the current page to disk.</p>""") ) self.saveAsAct.triggered.connect(self.__savePageAs) self.__actions.append(self.saveAsAct) @@ -837,7 +835,7 @@ "webbrowser_file_save_visible_page_screen", ) self.saveVisiblePageScreenAct.setStatusTip( - self.tr("Save the visible part of the current page as a" " screen shot") + self.tr("Save the visible part of the current page as a screen shot") ) self.saveVisiblePageScreenAct.setWhatsThis( self.tr( @@ -978,9 +976,7 @@ ) self.closeAct.setStatusTip(self.tr("Close the current help window")) self.closeAct.setWhatsThis( - self.tr( - """<b>Close</b><p>Closes the current web browser window.</p>""" - ) + self.tr("""<b>Close</b><p>Closes the current web browser window.</p>""") ) self.closeAct.triggered.connect(self.__tabWidget.closeBrowser) self.__actions.append(self.closeAct) @@ -1118,9 +1114,7 @@ ) self.copyAct.setStatusTip(self.tr("Copy the selected text")) self.copyAct.setWhatsThis( - self.tr( - """<b>Copy</b><p>Copy the selected text to the clipboard.</p>""" - ) + self.tr("""<b>Copy</b><p>Copy the selected text to the clipboard.</p>""") ) self.copyAct.triggered.connect(self.__copy) self.__actions.append(self.copyAct) @@ -1136,9 +1130,7 @@ ) self.cutAct.setStatusTip(self.tr("Cut the selected text")) self.cutAct.setWhatsThis( - self.tr( - """<b>Cut</b><p>Cut the selected text to the clipboard.</p>""" - ) + self.tr("""<b>Cut</b><p>Cut the selected text to the clipboard.</p>""") ) self.cutAct.triggered.connect(self.__cut) self.__actions.append(self.cutAct) @@ -5553,7 +5545,7 @@ self.tr("Import Keyboard Shortcuts"), "", self.tr( - "Keyboard Shortcuts File (*.ekj);;" "XML Keyboard shortcut file (*.e4k)" + "Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)" ), )