Skip to content

Commit c080fd4

Browse files
author
g_j_m
committed
Applied patch in ticket #113, with some minor modifications.
git-svn-id: http://svn.osgeo.org/qgis/trunk@5449 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 8487326 commit c080fd4

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

src/gui/qgisapp.cpp

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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,

src/gui/qgsabout.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ void QgsAbout::openUrl(QString url)
175175
tr("Enter the name of a web browser to use (eg. konqueror).\n"
176176
"Enter the full path if the browser is not in your PATH.\n"
177177
"You can change this option later by selection Options from"
178-
" the Tools menu."),
178+
" the Settings menu (Help Browser tab)."),
179179
QLineEdit::Normal,
180180
QString::null, &ok, this);
181181
if (ok && !text.isEmpty())

src/gui/qgscustomprojectiondialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@ void QgsCustomProjectionDialog::on_pbnCalculate_clicked()
901901
if ( wgs84Proj == NULL )
902902
{
903903
QMessageBox::information( this, tr("QGIS Custom Projection"),
904-
tr("Internal Error (source projection invalid?") );
904+
tr("Internal Error (source projection invalid?)") );
905905
projectedX->setText("");
906906
projectedY->setText("");
907907
pj_free(myProj);

0 commit comments

Comments
 (0)