mirror of
https://github.com/ansible/awx.git
synced 2026-01-21 06:28:01 -03:30
18 lines
440 B
JavaScript
18 lines
440 B
JavaScript
function TemplatesStrings (BaseString) {
|
|
BaseString.call(this, 'templates');
|
|
|
|
let t = this.t;
|
|
let ns = this.templates;
|
|
|
|
ns.jobTemplates = {
|
|
deleteJobTemplate: {
|
|
CONFIRM: t.s('Are you sure you want to delete this job template?'),
|
|
INVALIDATE: t.s('Doing so will invalidate the following:')
|
|
}
|
|
};
|
|
}
|
|
|
|
TemplatesStrings.$inject = ['BaseStringService'];
|
|
|
|
export default TemplatesStrings;
|