[QGIS Commit] r12009 - trunk/qgis/src/app

svn_qgis at osgeo.org svn_qgis at osgeo.org
Sun Nov 8 07:27:26 EST 2009


Author: jef
Date: 2009-11-08 07:27:26 -0500 (Sun, 08 Nov 2009)
New Revision: 12009

Modified:
   trunk/qgis/src/app/qgisapp.cpp
Log:
- rename 'add island' to 'add part'
- rename 'delete ring' to 'delete part'


Modified: trunk/qgis/src/app/qgisapp.cpp
===================================================================
--- trunk/qgis/src/app/qgisapp.cpp	2009-11-08 12:27:21 UTC (rev 12008)
+++ trunk/qgis/src/app/qgisapp.cpp	2009-11-08 12:27:26 UTC (rev 12009)
@@ -717,9 +717,9 @@
   connect( mActionAddRing, SIGNAL( triggered() ), this, SLOT( addRing() ) );
   mActionAddRing->setEnabled( false );
 
-  mActionAddIsland = new QAction( getThemeIcon( "mActionAddIsland.png" ), tr( "Add Island" ), this );
+  mActionAddIsland = new QAction( getThemeIcon( "mActionAddIsland.png" ), tr( "Add Part" ), this );
   shortcuts->registerAction( mActionAddIsland );
-  mActionAddIsland->setStatusTip( tr( "Add Island to multipolygon" ) );
+  mActionAddIsland->setStatusTip( tr( "Add part to multipolygon" ) );
   connect( mActionAddIsland, SIGNAL( triggered() ), this, SLOT( addIsland() ) );
   mActionAddIsland->setEnabled( false );
 
@@ -731,13 +731,13 @@
 
   mActionDeleteRing = new QAction( getThemeIcon( "mActionDeleteRing.png" ), tr( "Delete Ring" ), this );
   shortcuts->registerAction( mActionDeleteRing );
-  mActionDeleteRing->setStatusTip( tr( "Delete Ring" ) );
+  mActionDeleteRing->setStatusTip( tr( "Click a vertex of the ring to delete" ) );
   connect( mActionDeleteRing, SIGNAL( triggered() ), this, SLOT( deleteRing() ) );
   mActionDeleteRing->setEnabled( false );
 
   mActionDeletePart = new QAction( getThemeIcon( "mActionDeletePart.png" ), tr( "Delete Part" ), this );
   shortcuts->registerAction( mActionDeletePart );
-  mActionDeletePart->setStatusTip( tr( "Delete Part" ) );
+  mActionDeletePart->setStatusTip( tr( "Click a vertex of the part to delete" ) );
   connect( mActionDeletePart, SIGNAL( triggered() ), this, SLOT( deletePart() ) );
   mActionDeletePart->setEnabled( false );
 



More information about the QGIS-commit mailing list