Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2525
8b507a9a2d40
parent 3008
7848489bcb92
child 3058
0a02c433f52d
diff -r 9986ec0e559a -r 10516539f238 Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py
--- a/Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py	Tue Oct 15 22:03:54 2013 +0200
+++ b/Plugins/VcsPlugins/vcsMercurial/PurgeExtension/ProjectHelper.py	Fri Oct 18 23:00:41 2013 +0200
@@ -43,7 +43,8 @@
             """<b>Purge Files</b>"""
             """<p>This deletes files and directories not known to Mercurial."""
             """ That means that purge will delete:<ul>"""
-            """<li>unknown files (marked with "not tracked" in the status dialog)</li>"""
+            """<li>unknown files (marked with "not tracked" in the status"""
+            """ dialog)</li>"""
             """<li>empty directories</li>"""
             """</ul>Note that ignored files will be left untouched.</p>"""
         ))
@@ -54,13 +55,15 @@
                 self.trUtf8('Purge All Files'),
                 0, 0, self, 'mercurial_purge_all')
         self.hgPurgeAllAct.setStatusTip(self.trUtf8(
-            'Delete files and directories not known to Mercurial including ignored ones'
+            'Delete files and directories not known to Mercurial including'
+            ' ignored ones'
         ))
         self.hgPurgeAllAct.setWhatsThis(self.trUtf8(
             """<b>Purge All Files</b>"""
             """<p>This deletes files and directories not known to Mercurial."""
             """ That means that purge will delete:<ul>"""
-            """<li>unknown files (marked with "not tracked" in the status dialog)</li>"""
+            """<li>unknown files (marked with "not tracked" in the status"""
+            """ dialog)</li>"""
             """<li>empty directories</li>"""
             """<li>ignored files and directories</li>"""
             """</ul></p>"""
@@ -83,17 +86,19 @@
         self.hgPurgeListAct.triggered[()].connect(self.__hgPurgeList)
         self.actions.append(self.hgPurgeListAct)
         
-        self.hgPurgeAllListAct = E5Action(self.trUtf8('List All Files to be Purged'),
-                self.trUtf8('List All Files to be Purged...'),
-                0, 0, self, 'mercurial_purge_all_list')
+        self.hgPurgeAllListAct = E5Action(
+            self.trUtf8('List All Files to be Purged'),
+            self.trUtf8('List All Files to be Purged...'),
+            0, 0, self, 'mercurial_purge_all_list')
         self.hgPurgeAllListAct.setStatusTip(self.trUtf8(
-            'List files and directories not known to Mercurial including ignored ones'
+            'List files and directories not known to Mercurial including'
+            ' ignored ones'
         ))
         self.hgPurgeAllListAct.setWhatsThis(self.trUtf8(
             """<b>List All Files to be Purged</b>"""
-            """<p>This lists files and directories not known to Mercurial including"""
-            """ ignored ones. These would be deleted by the "Purge All Files" menu"""
-            """ entry.</p>"""
+            """<p>This lists files and directories not known to Mercurial"""
+            """ including ignored ones. These would be deleted by the"""
+            """ "Purge All Files" menu entry.</p>"""
         ))
         self.hgPurgeAllListAct.triggered[()].connect(self.__hgPurgeAllList)
         self.actions.append(self.hgPurgeAllListAct)

eric ide

mercurial