Not until the general idea meets approval ;-) after that, sure why not.

Am Mo., 30. Dez. 2019 um 15:25 Uhr schrieb Thiede, Christoph <Christoph.Thiede@student.hpi.uni-potsdam.de>:

Good idea! Maybe add some #translated stuff?


Von: Squeak-dev <squeak-dev-bounces@lists.squeakfoundation.org> im Auftrag von commits@source.squeak.org <commits@source.squeak.org>
Gesendet: Montag, 30. Dezember 2019 15:20:09
An: squeak-dev@lists.squeakfoundation.org
Betreff: [squeak-dev] The Inbox: Tools-jr.929.mcz
 
A new version of Tools was added to project The Inbox:
http://source.squeak.org/inbox/Tools-jr.929.mcz

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

Name: Tools-jr.929
Author: jr
Time: 30 December 2019, 3:20:08.513977 pm
UUID: 0a4d62fd-022e-1844-b6bc-db1502ab2466
Ancestors: Tools-cmm.928

Show browsed environment in Browser title if it is not the default environment.

=============== Diff against Tools-cmm.928 ===============

Item was changed:
  ----- Method: Browser>>defaultBrowserTitle (in category 'initialize-release') -----
  defaultBrowserTitle
+        | title |
+        title := 'System Browser'.
+        ^ environment = self class environment
+                ifTrue: [title]
+                ifFalse: [title, ' on environment ', environment asString]!
-        ^ 'System Browser'!