'From Squeakland 3.8.5976 of 25 August 2004 [latest update: #388] on 10 February 2005 at 3:48:23 pm'! "Change Set: translateNavButtons Date: 10 February 2005 Author: Yoshiki Ohshima add #translate to the menu items for nav bar buttons."! !ProjectNavigationMorph methodsFor: 'the actions' stamp: 'yo 2/10/2005 15:42'! doPublishButtonMenuEvent: evt | menu selection | menu _ CustomMenu new. menu add: 'Publish' translated action: [self publishProject]; add: 'Publish As...' translated action: [self publishProjectAs]; add: 'Publish to Different Server' translated action: [self publishDifferent]; add: 'edit project info' translated action: [self editProjectInfo]. selection _ menu build startUpCenteredWithCaption: 'Publish options' translated. selection ifNil: [^self]. selection value. ! ! !ProjectNavigationMorph methodsFor: 'the buttons' stamp: 'yo 2/10/2005 15:37'! buttonFind "Answer a button for finding/loading projects" ^ self makeButton: 'FIND' balloonText: 'Click here to find a project. Hold down this button to reveal additional options.' translated for: #findAProjectSimple ! ! !ProjectNavigationMorph methodsFor: 'the buttons' stamp: 'yo 2/10/2005 15:42'! buttonPublish "Answer a button for publishing the project" ^ self makeButton: 'PUBLISH IT!!' translated balloonText: 'Click here to save a project. Hold down this button to reveal additional publishing options' translated for: #publishProject! !