Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/2823827-task-object-labels' into…
Browse files Browse the repository at this point in the history
… feature/quick-review
  • Loading branch information
helmo committed Nov 17, 2016
2 parents 195c5f1 + 6dc31c3 commit a5a44dd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions migrate/hosting_migrate.module
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions platform/hosting_platform.module
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions server/hosting_server.module
Original file line number Diff line number Diff line change
Expand Up @@ -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.'),
);

Expand Down
4 changes: 2 additions & 2 deletions site/hosting_site.module
Original file line number Diff line number Diff line change
Expand Up @@ -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,
);
Expand All @@ -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?'),
Expand Down

0 comments on commit a5a44dd

Please sign in to comment.