Skip to content

Commit 5e73ca5

Browse files
author
jef
committedNov 8, 2009
- rename 'add island' to 'add part'
- rename 'delete ring' to 'delete part' git-svn-id: http://svn.osgeo.org/qgis/trunk@12009 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 582e1b8 commit 5e73ca5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎src/app/qgisapp.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -717,9 +717,9 @@ void QgisApp::createActions()
717717
connect( mActionAddRing, SIGNAL( triggered() ), this, SLOT( addRing() ) );
718718
mActionAddRing->setEnabled( false );
719719

720-
mActionAddIsland = new QAction( getThemeIcon( "mActionAddIsland.png" ), tr( "Add Island" ), this );
720+
mActionAddIsland = new QAction( getThemeIcon( "mActionAddIsland.png" ), tr( "Add Part" ), this );
721721
shortcuts->registerAction( mActionAddIsland );
722-
mActionAddIsland->setStatusTip( tr( "Add Island to multipolygon" ) );
722+
mActionAddIsland->setStatusTip( tr( "Add part to multipolygon" ) );
723723
connect( mActionAddIsland, SIGNAL( triggered() ), this, SLOT( addIsland() ) );
724724
mActionAddIsland->setEnabled( false );
725725

@@ -731,13 +731,13 @@ void QgisApp::createActions()
731731

732732
mActionDeleteRing = new QAction( getThemeIcon( "mActionDeleteRing.png" ), tr( "Delete Ring" ), this );
733733
shortcuts->registerAction( mActionDeleteRing );
734-
mActionDeleteRing->setStatusTip( tr( "Delete Ring" ) );
734+
mActionDeleteRing->setStatusTip( tr( "Click a vertex of the ring to delete" ) );
735735
connect( mActionDeleteRing, SIGNAL( triggered() ), this, SLOT( deleteRing() ) );
736736
mActionDeleteRing->setEnabled( false );
737737

738738
mActionDeletePart = new QAction( getThemeIcon( "mActionDeletePart.png" ), tr( "Delete Part" ), this );
739739
shortcuts->registerAction( mActionDeletePart );
740-
mActionDeletePart->setStatusTip( tr( "Delete Part" ) );
740+
mActionDeletePart->setStatusTip( tr( "Click a vertex of the part to delete" ) );
741741
connect( mActionDeletePart, SIGNAL( triggered() ), this, SLOT( deletePart() ) );
742742
mActionDeletePart->setEnabled( false );
743743

0 commit comments

Comments
 (0)
Please sign in to comment.