An open API service indexing awesome lists of open source software.

https://github.com/kosatyi/xgettext-utils


https://github.com/kosatyi/xgettext-utils

gettext i18n localization

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

# xgettext-utils

```javascript
extract({
path: ['./pathtosource'],
target: './locale/templates.js'
}).then(function () {
return generator({
locales: ['uk', 'ru', 'en'],
target: './locales',
name: 'messages',
source:['./locale']
})
}).then(function(){
console.log('generate complete');
});
```