Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gushov committed Dec 28, 2012
1 parent 790cb62 commit a68e96e
Showing 1 changed file with 21 additions and 7 deletions.
28 changes: 21 additions & 7 deletions README.md
Expand Up @@ -14,14 +14,28 @@ grunt.loadNpmTasks('grunt-messageformat');
[grunt]: http://gruntjs.com/
[getting_started]: https://github.com/gruntjs/grunt/blob/master/docs/getting_started.md

## Documentation
_(Coming soon)_
## Example
In your InitConfig object

## Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [grunt][grunt].

## Release History
_(Nothing yet)_
```javascript
// 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'
}
}
//...
}
```
## License
Copyright (c) 2012 Gus Hovland
Expand Down

0 comments on commit a68e96e

Please sign in to comment.