The Inbox: HelpSystem-Core-ct.121.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: HelpSystem-Core-ct.121.mcz

commits-2
A new version of HelpSystem-Core was added to project The Inbox:
http://source.squeak.org/inbox/HelpSystem-Core-ct.121.mcz

==================== Summary ====================

Name: HelpSystem-Core-ct.121
Author: ct
Time: 3 October 2019, 2:06:54.879682 am
UUID: da301ede-67fa-8648-b347-fecac9239c1a
Ancestors: HelpSystem-Core-ct.120

Honor international reputation of Squeak (allows for translations of HelpBrowser menu)

=============== Diff against HelpSystem-Core-ct.120 ===============

Item was changed:
  ----- Method: HelpBrowser>>treeListMenu: (in category 'menus') -----
  treeListMenu: aMenu
  <treeListMenu>
 
  self currentTopic ifNil: [^ aMenu].
 
  aMenu
+ add: 'Inspect (i)' translated action: #inspectTopic;
+ add: 'Explore (I)' translated action: #exploreTopic.
- add: 'Inspect (i)' action: #inspectTopic;
- add: 'Explore (I)' action: #exploreTopic.
 
  self canBrowseTopic ifTrue: [
  aMenu
  addLine;
+ add: 'Browse (b)' translated action: #browseTopic].
- add: 'Browse (b)' action: #browseTopic].
 
  ^ aMenu!