mirror of
https://github.com/ansible/awx.git
synced 2026-02-22 13:36:02 -03:30
23 lines
472 B
JavaScript
23 lines
472 B
JavaScript
let source = [
|
|
'client/features/**/*.js',
|
|
'client/features/**/*.html',
|
|
'client/lib/**/*.js',
|
|
'client/lib/**/*.html',
|
|
'client/src/**/*.js',
|
|
'client/src/**/*.html'
|
|
];
|
|
|
|
module.exports = {
|
|
all: {
|
|
options: {
|
|
markerNames: ['_', 'N_'],
|
|
moduleName: 't',
|
|
moduleMethodString: 's',
|
|
moduleMethodPlural: 'p'
|
|
},
|
|
files: {
|
|
'po/ansible-tower-ui.pot': source
|
|
}
|
|
}
|
|
};
|