gushov / grunt-messageformat

messageformat.js's command line tool ported to a grunt plugin
MIT License
6 stars 4 forks source link

grunt-messageformat

messageformat.js's command line tool ported to a grunt plugin

Getting Started

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');

Example

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'
    }
  }
  //...
}

Release History

License

Copyright (c) 2013 Gus Hovland
Licensed under the MIT license.