Merge "Modify the success message of launch instance"

This commit is contained in:
Zuul 2019-03-21 08:27:00 +00:00 committed by Gerrit Code Review
commit 2b52125d06
1 changed files with 2 additions and 2 deletions

View File

@ -332,8 +332,8 @@
function successMessage() {
var numberInstances = model.newInstanceSpec.instance_count;
var message = ngettext('Scheduled of %s instance.',
'Scheduled of %s instances.',
var message = ngettext('Scheduled creation of %s instance.',
'Scheduled creation of %s instances.',
numberInstances);
toast.add('info', interpolate(message, [numberInstances]));
}