Implemented generic prompt modal for launching and saving launch configurations. Added UI support for prompting on job template schedules.

This commit is contained in:
mabashian
2018-01-31 15:28:52 -05:00
parent e43879d44e
commit e57d200d6e
55 changed files with 2814 additions and 607 deletions

View File

@@ -60,6 +60,13 @@ function BaseStringService (namespace) {
this.CANCEL = t.s('CANCEL');
this.SAVE = t.s('SAVE');
this.OK = t.s('OK');
this.NEXT = t.s('NEXT');
this.SHOW = t.s('SHOW');
this.HIDE = t.s('HIDE');
this.ON = t.s('ON');
this.OFF = t.s('OFF');
this.YAML = t.s('YAML');
this.JSON = t.s('JSON');
this.deleteResource = {
HEADER: t.s('Delete'),
USED_BY: resourceType => t.s('The {{ resourceType }} is currently being used by other resources.', { resourceType }),