[squeak-dev] The Trunk: Tools-mt.1142.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Mar 14 15:40:37 UTC 2022


Marcel Taeumel uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-mt.1142.mcz

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

Name: Tools-mt.1142
Author: mt
Time: 14 March 2022, 4:40:33.895786 pm
UUID: bc1a8a46-ed2c-4747-8f17-5de6ad178f04
Ancestors: Tools-mt.1141

Remove manual line breaks in dialog texts. Keep double-breaks (i.e., '\\' or '<br><br>') as visual gap. Complements Morphic-mt.1935.

=============== Diff against Tools-mt.1141 ===============

Item was changed:
  ----- Method: Browser>>informUnknownPackage (in category 'system category functions') -----
  informUnknownPackage
  
+ 	self inform: ('The category <b>{1}</b> does not belong to a known package.' translated format: {self selectedSystemCategory}) asTextFromHtml.!
- 	self inform: ('The category <b>{1}</b> does not<br>belong to a known package.' translated format: {self selectedSystemCategory}) asTextFromHtml.!

Item was changed:
  ----- Method: Workspace>>acceptContents: (in category 'accessing') -----
  acceptContents: aString
  
  	(self class fileOutOnAccept and: [acceptAction isNil]) ifTrue: [
  		(Project uiManager
  			confirm: ('Do you want to append the contents to\\	{1}\\on accept so that you can safely close this window?\\{2}' translated withCRs asText format: {
  				(self suggestedFileNameForSave withNoLineLongerThan: 40) asText allBold.
+ 				'(You will not be asked again for this window. Use the window menu to revise your decision later. Disable this prompt via the system-wide #fileOutOnAccept preference.)' translated withCRs asText
- 				'(You will not be asked again for this window. Use the window\menu to revise your decision later. Disable this prompt via the\system-wide #fileOutOnAccept preference.)' translated withCRs asText
  					addAttribute: (TextFontReference toFont: Preferences standardButtonFont)})
  			title: 'Accept Changes')
  				ifTrue: [self appendContentsToFileOnAccept]
  				ifFalse: [acceptAction := [:edits | true ]]].
  			
  	^ (acceptAction ifNotNil: [acceptAction value: aString]) ~~ false
  		and: [super acceptContents: aString]!



More information about the Squeak-dev mailing list