Ricardo Moran uploaded a new version of Morphic to project Etoys:
http://source.squeak.org/etoys/Morphic-Richo.78.mcz==================== Summary ====================
Name: Morphic-Richo.78
Author: Richo
Time: 25 February 2012, 7:42:18 pm
UUID: 9ae9ba4d-acb5-8542-9e89-3c42bf92a7cc
Ancestors: Morphic-Richo.77
* Reverted one of the strings changed in previous commit because I think that's not the one to be changed.
=============== Diff against Morphic-Richo.77 ===============
Item was changed:
----- Method: ProjectViewMorph>>dismissViaHalo (in category 'initialization') -----
dismissViaHalo
"The user clicked on the dismiss icon on the halo."
| choice |
project ifNil: [^ self delete]. "no current project"
choice := (PopUpMenu labelArray:{
'yes - delete icon and remove the project' translated.
'no - delete icon but keep the project' translated.
'cancel - do not delete anything' translated.
+ }) startUpWithCaption: ('Do you really want to delete the
+ project named {1}
+ and all its contents?' translated format: {project name printString}).
- }) startUpWithCaption: ('Do you really want to delete the icon {1} and remove the project {2} from Etoys? {1} (file will still be saved on disk)' translated format: {Character cr asString. project name printString}).
choice = 1 ifTrue: [^ self expungeProject].
choice = 2 ifTrue: [^ self delete]!
_______________________________________________
etoys-dev mailing list
[hidden email]
http://lists.squeakland.org/mailman/listinfo/etoys-dev