src/eric7/WebBrowser/WebBrowserWindow.py

branch
eric7
changeset 9576
be9f8e7e42e0
parent 9573
9960d19d66b5
child 9624
b47dfa7a137d
--- 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)"
             ),
         )
 

eric ide

mercurial