Skip to content

Commit a5a44dd

Browse files
committed
Merge remote-tracking branch 'origin/2823827-task-object-labels' into feature/quick-review
2 parents 195c5f1 + 6dc31c3 commit a5a44dd

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

migrate/hosting_migrate.module

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ function hosting_migrate_hosting_tasks() {
4949
$tasks = array();
5050

5151
$tasks['site']['migrate'] = array(
52-
'title' => t('Migrate'),
52+
'title' => t('Migrate Site'),
5353
'description' => t('Move the site to a new platform.'),
5454
'dialog' => TRUE,
5555
);
5656

5757
$tasks['platform']['migrate'] = array(
58-
'title' => t('Migrate'),
58+
'title' => t('Migrate Sites'),
5959
'description' => t('Migrate sites to a new platform.'),
6060
'page arguments' => array('hosting_migrate_platform', 1),
6161
'dialog' => TRUE,

platform/hosting_platform.module

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ function hosting_platform_node_info() {
7474
function hosting_platform_hosting_tasks() {
7575
$tasks = array();
7676
$tasks['platform']['verify'] = array(
77-
'title' => t('Verify'),
77+
'title' => t('Verify Platform'),
7878
'description' => t('Verify that the platform is correctly installed and working.'),
7979
'weight' => 10,
8080
'provision_save' => TRUE,
8181
);
8282
$tasks['platform']['delete'] = array(
83-
'title' => t('Delete'),
83+
'title' => t('Delete Platform'),
8484
'description' => t('Deleting this platform will completely remove it from the hosting system.
8585
This process can not be undone. It can not be performed if you have sites currently
8686
running on this platform.

server/hosting_server.module

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,14 +130,14 @@ function hosting_server_menu() {
130130
function hosting_server_hosting_tasks() {
131131
$tasks = array();
132132
$tasks['server']['verify'] = array(
133-
'title' => t('Verify'),
133+
'title' => t('Verify Server'),
134134
'description' => t('Verify that the server is correctly installed and working.'),
135135
'weight' => 10,
136136
'provision_save' => TRUE,
137137
);
138138

139139
$tasks['server']['delete'] = array(
140-
'title' => t('Delete'),
140+
'title' => t('Delete Server'),
141141
'description' => t('Delete the server.'),
142142
);
143143

site/hosting_site.module

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ function hosting_site_hosting_tasks() {
294294
);
295295

296296
$tasks['site']['verify'] = array(
297-
'title' => t('Verify'),
297+
'title' => t('Verify Site'),
298298
'description' => t('Confirm that the site has been correctly installed and regenerate all configuration files to match the hosting front end.'),
299299
'provision_save' => TRUE,
300300
);
@@ -311,7 +311,7 @@ function hosting_site_hosting_tasks() {
311311
It may be disabled again if needed.'),
312312
);
313313
$tasks['site']['delete'] = array(
314-
'title' => t('Delete'),
314+
'title' => t('Delete Site'),
315315
'description' => t('Deleting this site will completely remove it from the hosting system,
316316
but will keep the last backup available. This process can not be undone.
317317
Are you really sure you want to delete this site?'),

0 commit comments

Comments
 (0)