The Trunk: Morphic-ct.2223.mcz

[email protected] Wed, 29 Jul 2026 12:01:59 0000
Newsgroups gmane.comp.lang.smalltalk.squeak.general
Message-ID <[email protected]>
Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-ct.2223.mcz

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

Name: Morphic-ct.2223
Author: ct
Time: 28 July 2026, 7:46:12.511861 pm
UUID: e85255bd-6496-4eb8-a3d8-e69bf8a458ee
Ancestors: Morphic-mt.2222

Fixes grammar and improves multilingual support of close confirmation dialogs for project view morphs.

=============== Diff against Morphic-mt.2222 ===============

Item was changed:
  ----- Method: ProjectViewMorph>>dismissViaHalo (in category 'initialization') -----
  dismissViaHalo
  	| choice |
  	project ifNil:[^self delete]. "no current project"
  	choice := Project uiManager
  				chooseOptionFrom: 
  					{'Yes, close view and delete project' translated.
  					'Yes, but close this view only' translated.
  					'No, don''t do anything' translated}
+ 				title: ('Do you really want to discard this project and all its contents?\\	{1}\\(You can still access a project later without its view though the ''Projects'' menu.)' translated withCRs asText format: {project name asText allBold}).
- 				title: ('Do you really want discard this project and all its contents?\\	{1}\\(You can still access a project later without its view though the ''Projects'' menu.)' translated withCRs asText format: {project name asText allBold}).
  	choice = 1 ifTrue:[^self expungeProjectSilently].
  	choice = 2 ifTrue:[^self delete].!

Item was changed:
  ----- Method: ProjectViewMorph>>expungeProject (in category 'events') -----
  expungeProject
  
+ 	(Project uiManager confirm: 'Do you really want to discard this project and all its contents?' translated title: project name)
- 	(Project uiManager confirm:  'Do you really want discard this project and all its contents?' title: project name)
  		ifFalse: [^ self].
  	self expungeProjectSilently.!

Squeak-dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]