Skip to content

Commit

Permalink
CHE-904: update loading steps language
Browse files Browse the repository at this point in the history
Signed-off-by: Ann Shumilova <ashumilova@codenvy.com>
  • Loading branch information
ashumilova committed Mar 29, 2016
1 parent 32c6a1e commit adc54da
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions dashboard/src/app/ide/ide.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ class IdeSvc {
this.listeningChannels = [];

this.steps = [
{text: 'Initialize', inProgressText : 'Initializing', logs: '', hasError: false},
{text: 'Start workspace master', inProgressText : 'Starting workspace master', logs: '', hasError: false},
{text: 'Inject and start workspace agent', inProgressText : 'Injecting and starting workspace agent', logs: '', hasError: false},
{text: 'View IDE', inProgressText : 'Opening IDE', logs: '', hasError: false}
{text: 'Initializing workspace', inProgressText : 'Provision workspace and associating it with the existing user', logs: '', hasError: false},
{text: 'Starting workspace runtime', inProgressText : 'Retrieving the stack\'s image and launching it', logs: '', hasError: false},
{text: 'Starting workspace agent', inProgressText : 'Agents provide RESTful services like intellisense and SSH', logs: '', hasError: false},
{text: 'Open IDE', inProgressText : 'Opening IDE', logs: '', hasError: false}
];
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ export class CreateProjectSvc {


this.creationSteps = [
{text: 'Create and initialize workspace', inProgressText: 'Creating workspace', logs: '', hasError: false},
{text: 'Start workspace master', inProgressText: 'Starting workspace master', logs: '', hasError: false},
{text: 'Inject and start workspace agent', inProgressText: 'Injecting and starting workspace agent', logs: '', hasError: false},
{text: 'Create project', inProgressText: 'Creating project', logs: '', hasError: false},
{text: 'Creating and initializing workspace', inProgressText: 'Provision workspace and associating it with the existing user', logs: '', hasError: false},
{text: 'Starting workspace runtime', inProgressText: 'Retrieving the stack\'s image and launching it', logs: '', hasError: false},
{text: 'Starting workspace agent', inProgressText: 'Agents provide RESTful services like intellisense and SSH', logs: '', hasError: false},
{text: 'Creating project', inProgressText: 'Creating and configuring project', logs: '', hasError: false},
{text: 'Project created', inProgressText: 'Opening project', logs: '', hasError: false}
];

Expand Down

0 comments on commit adc54da

Please sign in to comment.