@@ -74,21 +74,21 @@ public void actionPerformed(ActionEvent e) {
7474
7575 public JMenu buildSketchMenu ()
7676 {
77- JMenuItem startServerItem = Base .newJMenuItem ("Start server " , 'R' );
77+ JMenuItem startServerItem = Base .newJMenuItem ("Start Server " , 'R' );
7878 startServerItem .addActionListener (new ActionListener () {
7979 public void actionPerformed (ActionEvent e ) {
8080 handleStartServer ();
8181 }
8282 });
8383
84- JMenuItem stopServerItem = new JMenuItem ("Stop server " );
84+ JMenuItem stopServerItem = new JMenuItem ("Stop Server " );
8585 stopServerItem .addActionListener (new ActionListener () {
8686 public void actionPerformed (ActionEvent e ) {
8787 handleStopServer ();
8888 }
8989 });
9090
91- JMenuItem copyServerAddressItem = new JMenuItem ("Copy server address " );
91+ JMenuItem copyServerAddressItem = new JMenuItem ("Copy Server Address " );
9292 copyServerAddressItem .addActionListener (new ActionListener (){
9393 public void actionPerformed (ActionEvent e ) {
9494 handleCopyServerAddress ();
@@ -103,7 +103,7 @@ public void actionPerformed(ActionEvent e) {
103103 // }
104104 // );
105105
106- JMenuItem setServerPortItem = new JMenuItem ("Set server port " );
106+ JMenuItem setServerPortItem = new JMenuItem ("Set Server Port " );
107107 setServerPortItem .addActionListener (new ActionListener (){
108108 public void actionPerformed (ActionEvent e ) {
109109 handleSetServerPort ();
@@ -120,7 +120,7 @@ public JMenu buildModeMenu() {
120120 JMenu menu = new JMenu ("JavaScript" );
121121 JMenuItem item ;
122122
123- item = new JMenuItem ("Playback settings (directives )" );
123+ item = new JMenuItem ("Playback Settings (Directives )" );
124124 item .addActionListener (new ActionListener () {
125125 public void actionPerformed (ActionEvent e ) {
126126 handleShowDirectivesEditor ();
@@ -130,15 +130,15 @@ public void actionPerformed(ActionEvent e) {
130130
131131 menu .addSeparator ();
132132
133- item = new JMenuItem ("Start custom template " );
133+ item = new JMenuItem ("Start Custom Template " );
134134 item .addActionListener (new ActionListener () {
135135 public void actionPerformed (ActionEvent e ) {
136136 handleCreateCustomTemplate ();
137137 }
138138 });
139139 menu .add (item );
140140
141- item = new JMenuItem ("Show custom template " );
141+ item = new JMenuItem ("Show Custom Template " );
142142 item .addActionListener (new ActionListener () {
143143 public void actionPerformed (ActionEvent e ) {
144144 handleOpenCustomTemplateFolder ();
0 commit comments