'From Squeak3.2alpha of 4 October 2001 [latest update: #4417] on 8 October 2001 at 3:30:45 pm'! "Change Set: colorSeer-bf Date: 8 October 2001 Author: Bert Freudenberg Fixes the color seer tile so it can be used again with other natural languages. TODO: The English label now says 'colorSees' instead of 'color sees', I'm not sure where this comes from., or how to correctly fix it. (NB: the TODO issue is fixed in the next update)"! !ColorSeerTile methodsFor: 'initialization' stamp: 'bf 10/8/2001 14:59'! updateWordingToMatchVocabulary "The current vocabulary has changed; change the wording on my face, if appropriate" | aMethodInterface | aMethodInterface _ self currentVocabulary methodInterfaceAt: operatorOrExpression ifAbsent: [Vocabulary eToyVocabulary methodInterfaceAt: operatorOrExpression ifAbsent: [^ self]]. self labelMorph contents: aMethodInterface wording. self setBalloonText: aMethodInterface documentation.! !