# HG changeset patch
# User Doug Philips <[EMAIL PROTECTED]>
# Date 1216705703 14400
# Node ID 4392842933791d2b3f0833940cee800327c74bab
# Parent  1625a49de779e63c63eaf8d97974f9c1ae04a62a
Clean up Email radio button text and tooltips

diff -r 1625a49de779 -r 439284293379 hggtk/hgemail.py
--- a/hggtk/hgemail.py  Sun Jul 20 05:54:01 2008 +0100
+++ b/hggtk/hgemail.py  Tue Jul 22 01:48:23 2008 -0400
@@ -110,23 +110,25 @@
         flagframe.add(vbox)

         self.tooltips = gtk.Tooltips()
-        self._normal = gtk.RadioButton(None, "Send changesets as HG  
patches")
+        self._normal = gtk.RadioButton(None,
+                "Send changesets as generic Hg patches")
         vbox.pack_start(self._normal, True, True, 4)
         self.tooltips.set_tip(self._normal,
-                'HG patches (as generated by export command) are  
compatible'
+                'These patches (as generated by export command) are  
compatible'
                 ' with most patch programs.  They include a header  
which'
-                ' contains the most important changeset metadata.')
+                ' contains the most important changeset metadata.  
Binary files'
+                ' copies, permissions are not captured.')

         self._git = gtk.RadioButton(self._normal,
-                "Use extended (git) patch format")
+                "Use extended (Hg/git) patch format")
         vbox.pack_start(self._git, True, True, 4)
         self.tooltips.set_tip(self._git,
-                'Git patches can describe binary files, copies, and'
+                'These patches can describe binary files, copies, and'
                 ' permission changes, but recipients may not be able  
to'
-                ' use them if they are not using git or Mercurial.')
+                ' use them if they are not using Mercurial or git.')

         self._plain = gtk.RadioButton(self._normal,
-                "Plain, do not prepend HG header")
+                "Plain, without any HG headers")
         vbox.pack_start(self._plain, True, True, 4)
         self.tooltips.set_tip(self._plain,
                 'Stripping Mercurial header removes username and  
parent'
@@ -134,7 +136,7 @@
                 ' Mercurial (and does not like to see the headers).')

         self._bundle = gtk.RadioButton(self._normal,
-                "Send single binary bundle, not patches")
+                "Send single Hg binary bundle, not patches")
         vbox.pack_start(self._bundle, True, True, 4)
         self.tooltips.set_tip(self._bundle,
                 'Bundles store complete changesets in binary form.'

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Tortoisehg-develop mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tortoisehg-develop

Reply via email to