mirror of
https://github.com/ansible/awx.git
synced 2026-03-15 07:57:29 -02:30
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
function JobsStrings (BaseString) {
|
|
BaseString.call(this, 'jobs');
|
|
|
|
const { t } = this;
|
|
const ns = this.jobs;
|
|
|
|
ns.state = {
|
|
TITLE: t.s('JOBZ')
|
|
};
|
|
|
|
ns.warnings = {
|
|
CANCEL_ACTION: t.s('PROCEED'),
|
|
CANCEL_BODY: t.s('Are you sure you want to cancel this job?'),
|
|
CANCEL_HEADER: t.s('Cancel Job'),
|
|
DELETE_BODY: t.s('Are you sure you want to delete this job?'),
|
|
DELETE_HEADER: t.s('Delete Job'),
|
|
};
|
|
|
|
ns.status = {
|
|
RUNNING: t.s('The host status bar will update when the job is complete.'),
|
|
UNAVAILABLE: t.s('Host status information for this job is unavailable.'),
|
|
};
|
|
|
|
ns.resourceTooltips = {
|
|
USER: t.s('View the User'),
|
|
SCHEDULE: t.s('View the Schedule'),
|
|
INVENTORY: t.s('View the Inventory'),
|
|
CREDENTIAL: t.s('View the Credential'),
|
|
JOB_TEMPLATE: t.s('View the Job Template'),
|
|
SOURCE_WORKFLOW_JOB: t.s('View the source Workflow Job'),
|
|
PROJECT: t.s('View the Project'),
|
|
PROJECT_UPDATE: t.s('View Project checkout results')
|
|
};
|
|
}
|
|
|
|
JobsStrings.$inject = ['BaseStringService'];
|
|
|
|
export default JobsStrings;
|