'From etoys4.0 of 5 November 2008 [latest update: #2260] on 3 September 2009 at 3:14:22 pm'! "Change Set: sugarSaveHelp-sw Date: 3 September 2009 Author: Scott Wallace Fix for SQ-294 Save Project balloon help wrong under Sugar."! !ProjectNavigationMorph methodsFor: 'the buttons' stamp: 'sw 9/3/2009 15:12'! buttonPublish "Answer a button for publishing the project " | help | help := SugarLauncher isRunningInSugar ifFalse: ['Publish (save) this project. Hold mouse button down for further options' translated] ifTrue: ['Keep a copy of the current project in the Journal. Hold mouse button down for further options.' translated]. ^ self makeButton: 'PUBLISH IT!!' translated balloonText: help for: #publishProject! !