@@ -599,10 +599,15 @@ void QgisApp::createActions()
599599 // Digitising Toolbar Items
600600 //
601601
602- mActionStartEditing = new QAction (QIcon (myIconPath+" /mActionStartEditing.png" ), tr (" Start Editing" ), this );
602+ mActionStartEditing = new QAction (QIcon (myIconPath+" /mActionStartEditing.png" ),
603+ tr (" Start editing the current layer" ), this );
603604 connect (mActionStartEditing , SIGNAL (triggered ()), this , SLOT (startEditing ()));
604- mActionStopEditing = new QAction (QIcon (myIconPath+" /mActionStopEditing.png" ), tr (" Stop Editing" ), this );
605+ //
606+ mActionStopEditing = new QAction (QIcon (myIconPath+" /mActionStopEditing.png" ),
607+ tr (" Stop editing the current layer" ), this );
608+ mActionStopEditing ->setStatusTip (tr (" Stop editing the current layer" ));
605609 connect (mActionStopEditing , SIGNAL (triggered ()), this , SLOT (stopEditing ()));
610+ //
606611 mActionCapturePoint = new QAction (QIcon (myIconPath+" /mActionCapturePoint.png" ), tr (" Capture Point" ), this );
607612 mActionCapturePoint ->setShortcut (tr (" ." ," Capture Points" ));
608613 mActionCapturePoint ->setStatusTip (tr (" Capture Points" ));
@@ -4106,7 +4111,7 @@ void QgisApp::openURL(QString url, bool useQgisDocDirectory)
41064111 QString myHeading = tr (" QGIS Browser Selection" );
41074112 QString myMessage = tr (" Enter the name of a web browser to use (eg. konqueror).\n " );
41084113 myMessage += tr (" Enter the full path if the browser is not in your PATH.\n " );
4109- myMessage += tr (" You can change this option later by selecting Preferences from the Settings menu." );
4114+ myMessage += tr (" You can change this option later by selecting Options from the Settings menu (Help Browser tab) ." );
41104115 QString text = QInputDialog::getText (myHeading,
41114116 myMessage,
41124117 QLineEdit::Normal,
0 commit comments