diff --git a/migrate/hosting_migrate.module b/migrate/hosting_migrate.module
index 65cc62f..9342b89 100644
--- a/migrate/hosting_migrate.module
+++ b/migrate/hosting_migrate.module
@@ -49,13 +49,13 @@ function hosting_migrate_hosting_tasks() {
   $tasks = array();
 
   $tasks['site']['migrate'] = array(
-    'title' => t('Migrate'),
+    'title' => t('Migrate Site'),
     'description' => t('Move the site to a new platform.'),
     'dialog' => TRUE,
   );
 
   $tasks['platform']['migrate'] = array(
-    'title' => t('Migrate'),
+    'title' => t('Migrate Sites'),
     'description' => t('Migrate sites to a new platform.'),
     'page arguments' => array('hosting_migrate_platform', 1),
     'dialog' => TRUE,
diff --git a/platform/hosting_platform.module b/platform/hosting_platform.module
index ca94987..2d92861 100644
--- a/platform/hosting_platform.module
+++ b/platform/hosting_platform.module
@@ -74,13 +74,13 @@ function hosting_platform_node_info() {
 function hosting_platform_hosting_tasks() {
   $tasks = array();
   $tasks['platform']['verify'] = array(
-    'title' => t('Verify'),
+    'title' => t('Verify Platform'),
     'description' => t('Verify that the platform is correctly installed and working.'),
     'weight' => 10,
     'provision_save' => TRUE,
   );
   $tasks['platform']['delete'] = array(
-    'title' => t('Delete'),
+    'title' => t('Delete Platform'),
     'description' => t('Deleting this platform will completely remove it from the hosting system.
         This process can not be undone. It can not be performed if you have sites currently
         running on this platform.
diff --git a/server/hosting_server.module b/server/hosting_server.module
index cb88334..66e1d3f 100644
--- a/server/hosting_server.module
+++ b/server/hosting_server.module
@@ -130,14 +130,14 @@ function hosting_server_menu() {
 function hosting_server_hosting_tasks() {
   $tasks = array();
   $tasks['server']['verify'] = array(
-    'title' => t('Verify'),
+    'title' => t('Verify Server'),
     'description' => t('Verify that the server is correctly installed and working.'),
     'weight' => 10,
     'provision_save' => TRUE,
   );
 
   $tasks['server']['delete'] = array(
-    'title' => t('Delete'),
+    'title' => t('Delete Server'),
     'description' => t('Delete the server.'),
   );
 
diff --git a/site/hosting_site.module b/site/hosting_site.module
index 38a9175..d0cdd45 100644
--- a/site/hosting_site.module
+++ b/site/hosting_site.module
@@ -294,7 +294,7 @@ function hosting_site_hosting_tasks() {
   );
 
   $tasks['site']['verify'] = array(
-    'title' => t('Verify'),
+    'title' => t('Verify Site'),
     'description' => t('Confirm that the site has been correctly installed and regenerate all configuration files to match the hosting front end.'),
     'provision_save' => TRUE,
   );
@@ -311,7 +311,7 @@ function hosting_site_hosting_tasks() {
          It may be disabled again if needed.'),
   );
   $tasks['site']['delete'] = array(
-    'title' => t('Delete'),
+    'title' => t('Delete Site'),
     'description' => t('Deleting this site will completely remove it from the hosting system,
         but will keep the last backup available. This process can not be undone.
         Are you really sure you want to delete this site?'),
