Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.4rc1, 0.4rc2, and 0.4rc3

cmenu: use 'update to' syntax in cmenu

Feedback from users claims that 'Checkout Revision' in the context menu
is more confusing than 'Update To Revision'

Changeset 748ab03fa73e

Parent 1b42d593d866

by Steve Borho

Changes to 2 files · Browse files at 748ab03fa73e Showing diff from parent 1b42d593d866 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​synch.py Stacked
 
232
233
234
235
 
236
237
238
 
232
233
234
 
235
236
237
238
@@ -232,7 +232,7 @@
  if len(pl) > 1:   warning = "Outstanding uncommitted merges"   elif pa != p1 and pa != p2: - warning = "Checkout spans branches" + warning = "Update spans branches"   elif wc.files():   warning = "Outstanding uncommitted changes"   if warning:
 
327
328
329
330
 
331
332
333
 
327
328
329
 
330
331
332
333
@@ -327,7 +327,7 @@
  self._annotate, icon="menublame.ico"))     result.append(TortoiseMenuSep()) - result.append(TortoiseMenu(_("Checkout Revision"), + result.append(TortoiseMenu(_("Update To Revision"),   _("update working directory"),   self._update, icon="menucheckout.ico"))