Christoph Thiede uploaded a new version of Tools to project The Inbox:
http://source.squeak.org/inbox/Tools-ct.936.mcz==================== Summary ====================
Name: Tools-ct.936
Author: ct
Time: 22 January 2020, 10:37:56.857972 am
UUID: 9dd5f018-67fa-7648-af22-eca66ebbfd23
Ancestors: Tools-mt.929
Complements Morphic-ct.1620 (#assignmentsToIt).
=============== Diff against Tools-mt.929 ===============
Item was changed:
----- Method: StringHolder class>>shiftedYellowButtonMenuItems (in category '*Tools-yellow button menu') -----
shiftedYellowButtonMenuItems
"Returns the standard yellow button menu items"
| entries |
entries := OrderedCollection withAll:
{
#-.
{'explain' translated. #explain}.
{'pretty print' translated. #prettyPrint}.
{'pretty print with color' translated. #prettyPrintWithColor}.
{'file it in (G)' translated. #fileItIn}.
{'spawn (o)' translated. #spawn}.
#-.
{'browse it (b)' translated. #browseIt}.
{'senders of it (n)' translated. #sendersOfIt}.
{'implementors of it (m)' translated. #implementorsOfIt}.
{'references to it (N)' translated. #referencesToIt}.
+ {'assignments to it' translated. #assignmentsToIt}.
#-.
{'selectors containing it (W)' translated. #methodNamesContainingIt}.
{'method strings with it (E)' translated. #methodStringsContainingit}.
{'method source with it' translated. #methodSourceContainingIt}.
{'class names containing it' translated. #classNamesContainingIt}.
{'class comments with it' translated. #classCommentsContainingIt}.
{'change sets with it' translated. #browseChangeSetsWithSelector}.
#-.
{'save contents to file...' translated. #saveContentsInFile}.
{'send contents to printer' translated. #sendContentsToPrinter}.
{'printer setup' translated. #printerSetup}.
#-.
}.
Smalltalk isMorphic ifFalse: [ entries add:
{'special menu...' translated. #presentSpecialMenu}.].
entries add:
{'more...' translated. #yellowButtonActivity}.
^ entries!