# HG changeset patch
# User Yuki KODAMA <endflow....@gmail.com>
# Date 1255970793 -32400
# Branch stable
# Node ID dc0d0231f39afa0107c738b363ff62550ca65b64
# Parent  1c2bb1a7c48c6c3b989f3dfa8b555a801b58bd8d
thgmq: make confirm message helpful on folding patch

diff --git a/tortoisehg/hgtk/thgmq.py b/tortoisehg/hgtk/thgmq.py
--- a/tortoisehg/hgtk/thgmq.py
+++ b/tortoisehg/hgtk/thgmq.py
@@ -404,8 +404,10 @@
         """
         if not patch or not self.has_applied():
             return
+        data = dict(target=patch, qtip=self.get_qtip_patchname())
         ret = gdialog.Confirm(_('Confirm Fold'), [], None,
-                              _('Do you want to fold?')).run()
+                    _("Do you want to fold un-applied patch '%(target)s'"
+                      " into current patch '%(qtip)s'?") % data).run()
         if ret != gtk.RESPONSE_YES:
             return
         cmdline = ['hg', 'qfold', patch]

Attachment: thg-kuy_rev4681.patch
Description: Binary data

------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
Tortoisehg-develop mailing list
Tortoisehg-develop@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tortoisehg-develop

Reply via email to