YesNoBox.st
changeset 2428 f800d9ec09a8
parent 2361 227ff51a7e7b
child 2467 82d16b9ea94d
--- a/YesNoBox.st	Thu Oct 04 18:53:32 2001 +0200
+++ b/YesNoBox.st	Thu Oct 04 19:26:48 2001 +0200
@@ -212,8 +212,8 @@
 
     buttonPanel horizontalLayout:#fitSpace.  "/ looks better; should it come from the StyleSheet ?
 
-    textLabel label:(resources string:'please confirm').
-    okButton label:(resources string:'yes').
+    textLabel label:(resources string:'Please confirm').
+    okButton label:(resources string:'Yes').
 
     abortButton := Button abortButton.
 
@@ -227,7 +227,7 @@
 "/    ].
     buttonPanel addSubView:abortButton before:okButton.
 
-    abortButton label:(resources string:'no').
+    abortButton label:(resources string:'No').
     abortButton height:(okButton height).
     abortButton model:self; change:#noPressed
 
@@ -318,5 +318,5 @@
 !YesNoBox class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/YesNoBox.st,v 1.46 2001-05-15 17:46:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/YesNoBox.st,v 1.47 2001-10-04 17:26:48 cg Exp $'
 ! !