ApplicationModel.st
changeset 2442 6f46d1a6fef2
parent 2405 e1c1fc97daf8
child 2445 5ace64945a9b
equal deleted inserted replaced
2441:61d9292cdb41 2442:6f46d1a6fef2
  1319     |helpText xLated|
  1319     |helpText xLated|
  1320 
  1320 
  1321     helpText := self basicHelpTextForKey:aKey.
  1321     helpText := self basicHelpTextForKey:aKey.
  1322     helpText isNil ifTrue:[
  1322     helpText isNil ifTrue:[
  1323         aKey isSymbol ifFalse:[^ nil].
  1323         aKey isSymbol ifFalse:[^ nil].
  1324         ^ 'Sorry, no help for: ',aKey "/ nil
  1324         ^ resources string:'Sorry, no help for: %1' with:aKey "/ nil
  1325     ].
  1325     ].
  1326 
  1326 
  1327     "/ translate.
  1327     "/ translate.
  1328     resources notNil ifTrue:[
  1328     resources notNil ifTrue:[
  1329         xLated := resources string:helpText default:nil.
  1329         xLated := resources string:helpText default:nil.
  3101 ! !
  3101 ! !
  3102 
  3102 
  3103 !ApplicationModel class methodsFor:'documentation'!
  3103 !ApplicationModel class methodsFor:'documentation'!
  3104 
  3104 
  3105 version
  3105 version
  3106     ^ '$Header: /cvs/stx/stx/libview2/ApplicationModel.st,v 1.248 2008-03-10 18:36:50 stefan Exp $'
  3106     ^ '$Header: /cvs/stx/stx/libview2/ApplicationModel.st,v 1.249 2008-04-24 14:31:37 cg Exp $'
  3107 ! !
  3107 ! !
  3108 
  3108 
  3109 ApplicationModel initialize!
  3109 ApplicationModel initialize!