diff --git a/awx/ui/client/features/applications/applications.strings.js b/awx/ui/client/features/applications/applications.strings.js index f6fb73f56a..27a05fb0ed 100644 --- a/awx/ui/client/features/applications/applications.strings.js +++ b/awx/ui/client/features/applications/applications.strings.js @@ -16,10 +16,6 @@ function ApplicationsStrings (BaseString) { USERS: t.s('Tokens') }; - ns.tooltips = { - ADD: t.s('Create a new Application') - }; - ns.add = { PANEL_TITLE: t.s('NEW APPLICATION'), CLIENT_ID_LABEL: t.s('CLIENT ID'), @@ -32,7 +28,8 @@ function ApplicationsStrings (BaseString) { PANEL_TITLE: t.s('APPLICATIONS'), ROW_ITEM_LABEL_EXPIRED: t.s('EXPIRATION'), ROW_ITEM_LABEL_ORGANIZATION: t.s('ORG'), - ROW_ITEM_LABEL_MODIFIED: t.s('LAST MODIFIED') + ROW_ITEM_LABEL_MODIFIED: t.s('LAST MODIFIED'), + ADD: t.s('Create a new Application') }; ns.inputs = { diff --git a/awx/ui/client/features/applications/list-applications.controller.js b/awx/ui/client/features/applications/list-applications.controller.js index 254b31930b..5ac065163c 100644 --- a/awx/ui/client/features/applications/list-applications.controller.js +++ b/awx/ui/client/features/applications/list-applications.controller.js @@ -43,10 +43,6 @@ function ListApplicationsController ( paginateQuerySet = queryset; }); - vm.tooltips = { - add: strings.get('tooltips.ADD') - }; - const toolbarSortDefault = { label: `${strings.get('sort.NAME_ASCENDING')}`, value: 'name' diff --git a/awx/ui/client/features/applications/list-applications.view.html b/awx/ui/client/features/applications/list-applications.view.html index e30c45e249..be08782f53 100644 --- a/awx/ui/client/features/applications/list-applications.view.html +++ b/awx/ui/client/features/applications/list-applications.view.html @@ -19,11 +19,12 @@
diff --git a/awx/ui/client/features/output/output.strings.js b/awx/ui/client/features/output/output.strings.js index 47b2e74883..caa53e9fa7 100644 --- a/awx/ui/client/features/output/output.strings.js +++ b/awx/ui/client/features/output/output.strings.js @@ -51,6 +51,8 @@ function OutputStrings (BaseString) { SHOW_MORE: t.s('Show More'), UNKNOWN: t.s('Finished'), WEBHOOK: t.s('Webhook'), + CANCEL_JOB: t.s('Cancel Job'), + DELETE_JOB: t.s('Delete Job'), }; ns.labels = { @@ -107,13 +109,15 @@ function OutputStrings (BaseString) { PLACEHOLDER_RUNNING: t.s('JOB IS STILL RUNNING'), REJECT_DEFAULT: t.s('Failed to update search results.'), REJECT_INVALID: t.s('Invalid search filter provided.'), + SUBMIT: t.s('Submit search') }; ns.stats = { ELAPSED: t.s('Elapsed'), PLAYS: t.s('Plays'), TASKS: t.s('Tasks'), - HOSTS: t.s('Hosts') + HOSTS: t.s('Hosts'), + TOGGLE_EXPANDED_OUTPUT: t.s('Toggle expanded output') }; ns.stdout = { @@ -128,7 +132,8 @@ function OutputStrings (BaseString) { MODULE: t.s('MODULE'), NO_RESULT_FOUND: t.s('No result found'), STANDARD_OUT: t.s('Standard Out'), - STANDARD_ERROR: t.s('Standard Error') + STANDARD_ERROR: t.s('Standard Error'), + CLOSE_HOST_EVENT_MODAL: t.s('Close host event modal') }; ns.workflow_status = { diff --git a/awx/ui/client/features/output/search.partial.html b/awx/ui/client/features/output/search.partial.html index b6e6a7342f..d7d91ac493 100644 --- a/awx/ui/client/features/output/search.partial.html +++ b/awx/ui/client/features/output/search.partial.html @@ -14,6 +14,7 @@