diff -r 9ea9d7e7ef95 -r bbb8d7ef1de8 FileApplicationNoteBook.st --- a/FileApplicationNoteBook.st Sat Feb 28 13:58:25 2004 +0100 +++ b/FileApplicationNoteBook.st Sun Feb 29 18:02:27 2004 +0100 @@ -2044,20 +2044,20 @@ dir := dir asFilename. dir exists ifFalse:[ - answer := Dialog confirm:('Directory %1 does not exist. Create ?' bindWith:dir asString). + answer := Dialog confirm:(resources stringWithCRs:'Directory %1 does not exist.\\Create ?' with:(dir asString allBold)). answer isNil ifTrue:[ ^ nil ]. answer ifTrue:[ dir makeDirectory. dir exists ifFalse:[ - Dialog warn:('Cannot create directory %1' bindWith: dir asString). + Dialog warn:(resources stringWithCRs:'Cannot create directory %1 !!' with:(dir asString allBold)). ] ]. ]. dir exists ifTrue:[ (dir isExecutable not or:[dir isWritable not]) ifTrue:[ - Dialog warn:('Cannot write into directory %1' bindWith:dir asString). + Dialog warn:(resources stringWithCRs:'Cannot write into directory %1 !!' with:dir asString allBold). ] ifFalse:[ haveDirectory := true. ]. @@ -5439,5 +5439,5 @@ !FileApplicationNoteBook class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.156 2004-02-28 12:58:25 cg Exp $' + ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.157 2004-02-29 17:02:27 cg Exp $' ! !