[etoys-dev] Etoys: System-bf.24.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Aug 7 17:03:19 EDT 2010


Bert Freudenberg uploaded a new version of System to project Etoys:
http://source.squeak.org/etoys/System-bf.24.mcz

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

Name: System-bf.24
Author: bf
Time: 7 August 2010, 11:02:45 pm
UUID: 7608199c-e1a8-4dd5-a7cf-88345a05b61c
Ancestors: System-bf.23

- make DiskProxy printString translateable (used in balloon help of unloaded projects)

=============== Diff against System-bf.23 ===============

Item was changed:
  ----- Method: DiskProxy>>printOn: (in category 'printing') -----
  printOn: aStream
  	"Try to report the name of the project"
  
  	globalObjectName == #Project ifFalse: [^ super printOn: aStream].
  	constructorArgs size > 0 ifFalse: [^ super printOn: aStream].
  	constructorArgs first isString ifFalse: [^ super printOn: aStream].
+ 	aStream nextPutAll: ('{1} (not loaded yet)' translated format: {constructorArgs first})!
- 	aStream nextPutAll: constructorArgs first, ' (on server)'!



More information about the etoys-dev mailing list