@@ -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