[squeak-dev] The Inbox: HelpSystem-Core-ct.121.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Oct 3 00:06:52 UTC 2019


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!



More information about the Squeak-dev mailing list