'sorry-no help' is translated
authorClaus Gittinger <cg@exept.de>
Thu, 24 Apr 2008 16:31:37 +0200
changeset 2442 6f46d1a6fef2
parent 2441 61d9292cdb41
child 2443 1043b37a4a5a
'sorry-no help' is translated
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!