Add translation for components and credentials

* Add typeahead feature of the Lookup component
This commit is contained in:
gconsidine
2017-06-29 17:33:19 -04:00
parent e8433c6301
commit 727568c80d
28 changed files with 335 additions and 117 deletions

View File

@@ -1,11 +1,19 @@
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_']
markerNames: ['_', 'N_', 't']
},
files: {
'po/ansible-tower-ui.pot': ['client/src/**/*.js',
'client/src/**/*.html']
'po/ansible-tower-ui.pot': source
}
},
}
};