Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1, 2.1.1, and 2.1.2

contextmenu: Improved context menu item descriptions

The most important change is the removal of a reference to "Windows Explorer",
which does not make sense now that thg is multi-platform. I substituted it with
"a file browser".

Changeset 9a14bc308a08

Parent d575c7c0f968

by Angel Ezquerra

Changes to 2 files · Browse files at 9a14bc308a08 Showing diff from parent d575c7c0f968 Diff from another changeset...

 
193
194
195
196
 
 
197
198
199
 
193
194
195
 
196
197
198
199
200
@@ -193,7 +193,8 @@
  'Alt+Ctrl+O', _('Open the selected subrepository'),   self.opensubrepo),   ('explore', _('Explore subrepository'), 'system-file-manager', - 'Alt+Ctrl+E', _('Open the selected subrepository'), + 'Alt+Ctrl+E', + _('Open the selected subrepository in a file browser'),   self.explore),   ('terminal', _('Open terminal in subrepository'),   'utilities-terminal', 'Alt+Ctrl+T',
 
171
172
173
174
 
175
176
 
177
178
179
 
171
172
173
 
174
175
 
176
177
178
179
@@ -171,9 +171,9 @@
  ("clone", _("Clone..."), 'hg-clone',   _("Clone Repository"), self.cloneRepo),   ("explore", _("Explore"), 'system-file-manager', - _("Open the repository in Windows Explorer"), self.explore), + _("Open the repository in a file browser"), self.explore),   ("terminal", _("Terminal"), 'utilities-terminal', - _("Open a shell terminal in repository root"), self.terminal), + _("Open a shell terminal in the repository root"), self.terminal),   ("add", _("Add repository..."), 'hg',   _("Add a repository to this group"), self.addNewRepo),   ]