[squeak-dev] The Trunk: Compiler-mt.467.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Jan 19 10:39:29 UTC 2022


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

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

Name: Compiler-mt.467
Author: mt
Time: 19 January 2022, 11:39:29.231855 am
UUID: 4a68e034-8573-6b46-be92-4f7d7d246a15
Ancestors: Compiler-ct.466

Fixes GetText export: "withCRs translated" -> "translated withCRs"

=============== Diff against Compiler-ct.466 ===============

Item was changed:
  ----- Method: UndefinedVariable>>openMenuIn: (in category 'handling') -----
  openMenuIn: aBlock
  
  	self resume: (Project uiManager
+ 		confirm: ('{1} appears to be undefined at this point.\Proceed anyway?' translated withCRs asText
- 		confirm: ('{1} appears to be undefined at this point.\Proceed anyway?' withCRs translated asText
  			format: {name asText allBold})
  		orCancel: [false]
  		title: 'Undefined Variable' translated).!

Item was changed:
  ----- Method: UnusedVariable>>openMenuIn: (in category 'handling') -----
  openMenuIn: aBlock
  	
  	self resume: (Project uiManager
+ 		confirm: ('{1} appears to be unused in this method.\Remove it from the code?' translated withCRs asText
- 		confirm: ('{1} appears to be unused in this method.\Remove it from the code?' withCRs translated asText
  			format: {name asText allBold})
  		orCancel: [nil]
  		title: 'Unused Variable' translated).!



More information about the Squeak-dev mailing list