class: NewLauncher
authorClaus Gittinger <cg@exept.de>
Sat, 13 Dec 2014 00:26:27 +0100
changeset 15023 94038fb66a25
parent 15022 ec4d4a24ecd3
child 15024 0ad57d839a68
class: NewLauncher changed: #allWindowsMenu #menuChangeHistory #toolsMenu #windowsMenu
NewLauncher.st
--- a/NewLauncher.st	Sat Dec 13 00:25:30 2014 +0100
+++ b/NewLauncher.st	Sat Dec 13 00:26:27 2014 +0100
@@ -2829,12 +2829,12 @@
                 )
                (MenuItem
                   activeHelpKey: classesShowTracePoints
-                  label: 'Show all Break && Trace Points'
+                  label: 'Show All Break && Trace Points'
                   itemValue: browseAllBreakAndTracePoints
                 )
                (MenuItem
                   activeHelpKey: classesRemoveAllTracePoints
-                  label: 'Remove all Break && Trace Points'
+                  label: 'Remove All Break && Trace Points'
                   itemValue: removeAllBreakAndTracePoints
                 )
                (MenuItem
@@ -2864,12 +2864,12 @@
                 )
                (MenuItem
                   activeHelpKey: enableGlobalCoverageAnalysis
-                  label: 'Clear all Coverage Info (Systemwide)'
+                  label: 'Clear All Coverage Info (Systemwide)'
                   itemValue: clearAllCoverageInfo
                 )
                (MenuItem
                   activeHelpKey: enableGlobalCoverageAnalysis
-                  label: 'Enable Coverage Analysis in all Processes'
+                  label: 'Enable Coverage Analysis in All Processes'
                   itemValue: enableGlobalCoverageAnalysis
                 )
                )
@@ -3031,7 +3031,7 @@
                   itemValue: inspectWorkspaceVariables
                 )
                (MenuItem
-                  label: 'Remove all Workspace Variables'
+                  label: 'Remove All Workspace Variables'
                   itemValue: removeAllWorkspaceVariables
                 )
                )
@@ -3091,7 +3091,7 @@
            (Menu
               (
                (MenuItem
-                  label: 'Bring all Windows onto Screen'
+                  label: 'Bring All Windows onto Screen'
                   itemValue: bringAllWindowsOntoScreen
                 )
                (MenuItem
@@ -3150,7 +3150,7 @@
           )
          (MenuItem
             activeHelpKey: windowsViewTreeAllScreens
-            label: 'Window Tree (All on All Screens)'
+            label: 'Window Tree (All Windows on All Screens)'
             itemValue: startWindowTreeViewForAll
             isVisible: windowTreeViewAvailable
           )
@@ -4257,19 +4257,19 @@
         ].
 
         submenu addItem:(MenuItem new
-                            label: (resources string:'Close All like This%1' with:info);
+                            label: (resources string:'Close all like This%1' with:info);
                             itemValue: [likeThis do:[:eachView | eachView destroy]];
                             translateLabel: false;
                             enabled:(likeThis size > 1)).
 
         submenu addItem:(MenuItem new
-                            label: (resources string:'Iconify All like This%1' with:info);
+                            label: (resources string:'Iconify all like This%1' with:info);
                             itemValue: [likeThis do:[:eachView | eachView collapse]];
                             translateLabel: false;
                             enabled:(likeThis size > 1)).
 
         submenu addItem:(MenuItem new
-                            label: (resources string:'Deiconify All like This%1' with:info);
+                            label: (resources string:'Deiconify all like This%1' with:info);
                             itemValue: [likeThis do:[:eachView | eachView raiseDeiconified]];
                             translateLabel: false;
                             enabled:(likeThis size > 1)).
@@ -4334,7 +4334,7 @@
     menu addItemGroup:
         {
             MenuItem new
-                label: (resources string:'Open Change Set Browser on All Changes')
+                label: (resources string:'Open Change Set Browser on all Changes')
                 itemValue:#startChangeSetBrowser
                 translateLabel: false;
                 activeHelpKey: #startChangeSetBrowser
@@ -5321,14 +5321,14 @@
 !NewLauncher class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/NewLauncher.st,v 1.511 2014-12-11 10:20:14 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/NewLauncher.st,v 1.512 2014-12-12 23:26:27 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/NewLauncher.st,v 1.511 2014-12-11 10:20:14 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/NewLauncher.st,v 1.512 2014-12-12 23:26:27 cg Exp $'
 !
 
 version_SVN
-    ^ '$Id: NewLauncher.st,v 1.511 2014-12-11 10:20:14 cg Exp $'
+    ^ '$Id: NewLauncher.st,v 1.512 2014-12-12 23:26:27 cg Exp $'
 ! !