# HG changeset patch # User Claus Gittinger # Date 1209047497 -7200 # Node ID 6f46d1a6fef20b398a6617125e80e44db1cf41da # Parent 61d9292cdb4164190456a6b97ff49e3336186548 'sorry-no help' is translated diff -r 61d9292cdb41 -r 6f46d1a6fef2 ApplicationModel.st --- a/ApplicationModel.st Wed Apr 23 22:59:54 2008 +0200 +++ b/ApplicationModel.st Thu Apr 24 16:31:37 2008 +0200 @@ -1321,7 +1321,7 @@ helpText := self basicHelpTextForKey:aKey. helpText isNil ifTrue:[ aKey isSymbol ifFalse:[^ nil]. - ^ 'Sorry, no help for: ',aKey "/ nil + ^ resources string:'Sorry, no help for: %1' with:aKey "/ nil ]. "/ translate. @@ -3103,7 +3103,7 @@ !ApplicationModel class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libview2/ApplicationModel.st,v 1.248 2008-03-10 18:36:50 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libview2/ApplicationModel.st,v 1.249 2008-04-24 14:31:37 cg Exp $' ! ! ApplicationModel initialize!