class: ChangeSetBrowser
authorClaus Gittinger <cg@exept.de>
Wed, 04 Feb 2015 19:08:15 +0100
changeset 15188 213ae62f842e
parent 15187 2937c35632c2
child 15189 101061415d25
class: ChangeSetBrowser changed: #changeListMenu #menuSpec
ChangeSetBrowser.st
--- a/ChangeSetBrowser.st	Wed Feb 04 19:08:03 2015 +0100
+++ b/ChangeSetBrowser.st	Wed Feb 04 19:08:15 2015 +0100
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libtool' }"
 
+"{ NameSpace: Smalltalk }"
+
 ChangesBrowser subclass:#ChangeSetBrowser
 	instanceVariableNames:'changeSet originalChangeSet'
 	classVariableNames:''
@@ -180,7 +182,7 @@
                 )
                (MenuItem
                   enabled: hasSelection
-                  label: 'Save All for Class In...'
+                  label: 'Save all for Class In...'
                   itemValue: doSaveClassAll
                   translateLabel: true
                 )
@@ -302,14 +304,14 @@
                 )
                (MenuItem
                   enabled: hasSelection
-                  label: 'Delete All for Class'
+                  label: 'Delete all for Class'
                   itemValue: doDeleteClassAll
                   translateLabel: true
                   isVisible: notReadOnly
                 )
                (MenuItem
                   enabled: hasSelection
-                  label: 'Delete All for Class && its Private Classes'
+                  label: 'Delete all for Class && its Private Classes'
                   itemValue: doDeleteClassAndPrivateClassesAll
                   translateLabel: true
                   isVisible: notReadOnly
@@ -583,12 +585,12 @@
     items := #(
                              ('Apply'                              doApply)
                              ('Apply to End'                       doApplyRest)
-                             ('Apply All changes'                  doApplyAll)
+                             ('Apply all changes'                  doApplyAll)
                              ('-'                                  )
                              ('Delete'                             doDelete)
                              ('Delete to End'                      doDeleteRest)
                              ('Delete for Class to End'            doDeleteClassRest)
-                             ('Delete All for Class'               doDeleteClassAll)
+                             ('Delete all for Class'               doDeleteClassAll)
                              ('-'                                  )
 "/                             ('Compress'                          doCompress)
                              ('Compare with Current'               doCompare)
@@ -1089,10 +1091,10 @@
 !ChangeSetBrowser class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/ChangeSetBrowser.st,v 1.65 2014-12-11 21:56:44 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/ChangeSetBrowser.st,v 1.66 2015-02-04 18:08:15 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/ChangeSetBrowser.st,v 1.65 2014-12-11 21:56:44 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/ChangeSetBrowser.st,v 1.66 2015-02-04 18:08:15 cg Exp $'
 ! !