https://github.com/kosatyi/xgettext-utils
https://github.com/kosatyi/xgettext-utils
gettext i18n localization
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kosatyi/xgettext-utils
- Owner: kosatyi
- Created: 2021-04-28T14:37:58.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-04-15T23:52:47.000Z (about 3 years ago)
- Last Synced: 2024-12-29T07:25:03.843Z (over 1 year ago)
- Topics: gettext, i18n, localization
- Language: JavaScript
- Homepage: https://kosatyi.com/xgettext-utils/
- Size: 256 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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');
});
```