# HG changeset patch # User Will Maier # Date 1284518743 18000 # Node ID 6ad36bca3a8ae7eae5764ecb51d4f0e007124983 # Parent 3a082866422aa7f3de98ff49764fb3b15d879d58 bookmarks: set VALUE in push/pull diff -r 3a082866422a -r 6ad36bca3a8a hgext/bookmarks.py --- a/hgext/bookmarks.py Tue Sep 14 16:52:32 2010 +0200 +++ b/hgext/bookmarks.py Tue Sep 14 21:45:43 2010 -0500 @@ -504,10 +504,12 @@ entry = extensions.wrapcommand(commands.table, 'pull', pull) entry[1].append(('B', 'bookmark', [], - _("bookmark to import"))) + _("bookmark to import"), + _('BOOKMARK'))) entry = extensions.wrapcommand(commands.table, 'push', push) entry[1].append(('B', 'bookmark', [], - _("bookmark to export"))) + _("bookmark to export"), + _('BOOKMARK'))) entry = extensions.wrapcommand(commands.table, 'incoming', incoming) entry[1].append(('B', 'bookmarks', False, _("compare bookmark")))