messageformat.js's command line tool ported to a grunt plugin
Install this grunt plugin next to your project's grunt.js gruntfile with: npm install grunt-messageformat
Then add this line to your project's grunt.js
gruntfile:
grunt.loadNpmTasks('grunt-messageformat');
In your InitConfig object
// Project configuration.
grunt.initConfig({
//...
messageformat: {
en: {
locale: 'en',
inputdir: './static/messages/en',
output: './locales/en/i18n.js'
},
de: {
locale: 'de',
inputdir: './static/messages/de',
output: './public/locales/de/i18n.js'
}
}
//...
}
- 2013-03-14 v0.2.0 Switched to grunt 0.4
Copyright (c) 2013 Gus Hovland
Licensed under the MIT license.