AbstractLauncherApplication.st
changeset 2809 4094e478153c
parent 2807 70a16d1b0d13
child 2833 5bceae325a3e
--- a/AbstractLauncherApplication.st	Fri Sep 29 19:13:31 2000 +0200
+++ b/AbstractLauncherApplication.st	Fri Sep 29 19:30:44 2000 +0200
@@ -1632,9 +1632,9 @@
     "/ create a box on those values ...
     "/
     box := DialogBox new.
-    box label:(resources string:'Communications settings').
-
-    box addTextLabel:'Window migration'.
+    box label:(resources string:'Communication settings').
+
+    box addTextLabel:(resources string:'Window migration').
 
     check := box addCheckBox:(resources string:'Window migration enabled') on:windowMigrationEnabled.
     hasWindowMigrationServer ifFalse:[
@@ -1762,43 +1762,43 @@
     box leftIndent:0.
     box addHorizontalLine.
 
-    box addTextLabel:'OSI Protocols (addOn package)'.
-
-    check := box addCheckBox:(resources string:'Log OSI-ACSE errors') on:osiACSEErrorLogging.
+    box addTextLabel:(resources string:'OSI Protocols (addOn package)').
+
+    check := box addCheckBox:(resources string:'Log %1 errors' with:'OSI-ACSE') on:osiACSEErrorLogging.
     osiACSEPresent ifFalse:[
         check disable
     ].
-    check := box addCheckBox:(resources string:'Log OSI-ACSE connection') on:osiACSEConnectionLogging.
+    check := box addCheckBox:(resources string:'Log %1 connection' with:'OSI-ACSE') on:osiACSEConnectionLogging.
     osiACSEPresent ifFalse:[
         check disable
     ].
-    check := box addCheckBox:(resources string:'Log OSI-ACSE data xfers') on:osiACSEDataLogging.
+    check := box addCheckBox:(resources string:'Log %1 data xfers' with:'OSI-ACSE') on:osiACSEDataLogging.
     osiACSEPresent ifFalse:[
         check disable
     ].
 
     box addVerticalSpace.
 
-    check := box addCheckBox:(resources string:'Log OSI-ROSE errors') on:osiROSEErrorLogging.
+    check := box addCheckBox:(resources string:'Log %1 errors' with:'OSI-ROSE') on:osiROSEErrorLogging.
     osiROSEPresent ifFalse:[
         check disable
     ].
-    check := box addCheckBox:(resources string:'Log OSI-ROSE invokations') on:osiROSEInvokationLogging.
+    check := box addCheckBox:(resources string:'Log %1 invokations' with:'OSI-ROSE') on:osiROSEInvokationLogging.
     osiROSEPresent ifFalse:[
         check disable
     ].
-    check := box addCheckBox:(resources string:'Log OSI-ROSE responses') on:osiROSEResponseLogging.
+    check := box addCheckBox:(resources string:'Log %1 responses' with:'OSI-ROSE') on:osiROSEResponseLogging.
     osiROSEPresent ifFalse:[
         check disable
     ].
 
     box addVerticalSpace.
 
-    check := box addCheckBox:(resources string:'Log OSI-CMISE errors') on:osiCMISEErrorLogging.
+    check := box addCheckBox:(resources string:'Log %1 errors' with:'OSI-CMISE') on:osiCMISEErrorLogging.
     osiCMISEPresent ifFalse:[
         check disable
     ].
-    check := box addCheckBox:(resources string:'Log OSI-CMISE messages') on:osiCMISEMessageLogging.
+    check := box addCheckBox:(resources string:'Log %1 messages' with:'OSI-CMISE') on:osiCMISEMessageLogging.
     osiCMISEPresent ifFalse:[
         check disable
     ].
@@ -5778,5 +5778,5 @@
 !AbstractLauncherApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.130 2000-09-29 17:11:35 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.131 2000-09-29 17:30:44 cg Exp $'
 ! !