Files
awx/awx/ui/grunt-tasks/nggettext_compile.js
Takao Fujiwara 40b94a38a8 Enable message i18n with angular-gettext
Signed-off-by: Takao Fujiwara <tfujiwar@redhat.com>
2016-10-25 15:26:45 -07:00

16 lines
303 B
JavaScript

module.exports = {
all: {
options: {
format: 'json'
},
files: [ {
expand: true,
dot: true,
dest: 'client/languages',
cwd: 'po',
ext: '.json',
src: ['*.po']
} ]
}
};