mirror of
https://github.com/ansible/awx.git
synced 2026-09-16 00:40:11 -02:30
More Translations
This commit is contained in:
@@ -14,7 +14,9 @@ function JobsStrings (BaseString) {
|
||||
ROW_ITEM_LABEL_INVENTORY: t.s('Inventory'),
|
||||
ROW_ITEM_LABEL_PROJECT: t.s('Project'),
|
||||
ROW_ITEM_LABEL_CREDENTIALS: t.s('Credentials'),
|
||||
NO_RUNNING: t.s('There are no running jobs.')
|
||||
NO_RUNNING: t.s('There are no running jobs.'),
|
||||
JOB: t.s('Job'),
|
||||
STATUS_TOOLTIP: status => t.s('Job {{status}}. Click for details.', { status })
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
<!-- TODO: include workflow tab as well -->
|
||||
<at-row-item
|
||||
status="{{ job.status }}"
|
||||
status-tip="Job {{job.status}}. Click for details."
|
||||
status-tip="{{ vm.strings.get('list.STATUS_TOOLTIP', job.status) }}"
|
||||
header-value="{{ job.id }} - {{ job.name }}"
|
||||
header-state="{{ vm.getSref(job) }}"
|
||||
header-tag="{{ vm.jobTypes[job.type] }}">
|
||||
@@ -76,6 +76,7 @@
|
||||
ng-show="job.summary_fields.user_capabilities.start">
|
||||
</at-relaunch>
|
||||
<at-row-action icon="fa-minus-circle" ng-click="vm.cancelJob(job)"
|
||||
tooltip="{{ vm.strings.get('listActions.CANCEL', vm.strings.get('list.JOB')) }}"
|
||||
ng-show="!vm.isPortalMode && (job.summary_fields.user_capabilities.start &&
|
||||
(job.status === 'pending' ||
|
||||
job.status === 'waiting' ||
|
||||
@@ -85,6 +86,7 @@
|
||||
job.status === 'running'))">
|
||||
</at-row-action>
|
||||
<at-row-action icon="fa-trash" ng-click="vm.deleteJob(job)"
|
||||
tooltip="{{ vm.strings.get('listActions.DELETE', vm.strings.get('list.JOB')) }}"
|
||||
ng-show="!vm.isPortalMode && job.summary_fields.user_capabilities.delete &&
|
||||
!(job.status === 'pending' ||
|
||||
job.status === 'waiting' ||
|
||||
|
||||
Reference in New Issue
Block a user