@@ -717,9 +717,9 @@ void QgisApp::createActions()
717
717
connect ( mActionAddRing , SIGNAL ( triggered () ), this , SLOT ( addRing () ) );
718
718
mActionAddRing ->setEnabled ( false );
719
719
720
- mActionAddIsland = new QAction ( getThemeIcon ( " mActionAddIsland.png" ), tr ( " Add Island " ), this );
720
+ mActionAddIsland = new QAction ( getThemeIcon ( " mActionAddIsland.png" ), tr ( " Add Part " ), this );
721
721
shortcuts->registerAction ( mActionAddIsland );
722
- mActionAddIsland ->setStatusTip ( tr ( " Add Island to multipolygon" ) );
722
+ mActionAddIsland ->setStatusTip ( tr ( " Add part to multipolygon" ) );
723
723
connect ( mActionAddIsland , SIGNAL ( triggered () ), this , SLOT ( addIsland () ) );
724
724
mActionAddIsland ->setEnabled ( false );
725
725
@@ -731,13 +731,13 @@ void QgisApp::createActions()
731
731
732
732
mActionDeleteRing = new QAction ( getThemeIcon ( " mActionDeleteRing.png" ), tr ( " Delete Ring" ), this );
733
733
shortcuts->registerAction ( mActionDeleteRing );
734
- mActionDeleteRing ->setStatusTip ( tr ( " Delete Ring " ) );
734
+ mActionDeleteRing ->setStatusTip ( tr ( " Click a vertex of the ring to delete " ) );
735
735
connect ( mActionDeleteRing , SIGNAL ( triggered () ), this , SLOT ( deleteRing () ) );
736
736
mActionDeleteRing ->setEnabled ( false );
737
737
738
738
mActionDeletePart = new QAction ( getThemeIcon ( " mActionDeletePart.png" ), tr ( " Delete Part" ), this );
739
739
shortcuts->registerAction ( mActionDeletePart );
740
- mActionDeletePart ->setStatusTip ( tr ( " Delete Part " ) );
740
+ mActionDeletePart ->setStatusTip ( tr ( " Click a vertex of the part to delete " ) );
741
741
connect ( mActionDeletePart , SIGNAL ( triggered () ), this , SLOT ( deletePart () ) );
742
742
mActionDeletePart ->setEnabled ( false );
743
743
0 commit comments