The experience and subtlety of your program's text can be important. MessageFormat is a mechanism for handling both pluralization and gender in your applications. It can also lead to much better translations, as it's designed to support all the languages included in the Unicode CLDR.
The ICU has an official guide for the format. Messageformat.js supports and extends all parts of the standard, with the exception of the deprecated ChoiceFormat.
There is a good slide-deck on Plural and Gender in Translated Messages by Markus Scherer and Mark Davis. But, again, remember that many of these problems apply even if you're only outputting english.
Please see messageformat.github.io for a guide to MessageFormat, more information on on the build-time use of messageformat.js, and the code documentation.
Using messageformat.js, you can separate your code from your text formatting, while enabling much more humane expressions. In other words, you won't need to see this anymore in your output:
There are 1 results.
There are 1 result(s).
Number of results: 5.
With this message:
> var msg =
'{GENDER, select, male{He} female{She} other{They} }' +
' found ' +
'{RES, plural, =0{no results} one{1 result} other{# results} }' +
' in the ' +
'{CAT, selectordinal, one{#st} two{#nd} few{#rd} other{#th} }' +
' category.';
You'll get these results:
> var mfunc = new MessageFormat('en').compile(msg);
> mfunc({ GENDER: 'male', RES: 1, CAT: 2 })
'He found 1 result in the 2nd category.'
> mfunc({ GENDER: 'female', RES: 1, CAT: 2 })
'She found 1 result in the 2nd category.'
> mfunc({ GENDER: 'male', RES: 2, CAT: 1 })
'He found 2 results in the 1st category.'
> mfunc({ RES: 2, CAT: 2 })
'They found 2 results in the 2nd category.'
- Handles arbitrary nesting of pluralization and select rules
- Supports all ~466 languages included in the Unicode CLDR
- Works on the server and the client
- Remarkably useful even for single-language use
- Speed & efficiency: Can pre-compile messages to JavaScript code
- Great for speed: message formatting is just string concatenation
- Compatible with other MessageFormat implementations
- Extendable with custom formatting functions
- Very whitespace tolerant
- Supports Unicode
npm install messageformat
var MessageFormat = require('messageformat');
var mf = new MessageFormat('en');
bower install messageformat
<script src="path/to/bower_components/messageformat/messageformat.js"></script>
<script>
var mf = new MessageFormat('en');
</script>
The tagged releases available on github.com include all of the compiled files that are kept off the master branch of the repository. When working with a clone of the repository, you'll likely want to run make all
to generate them yourself.
You may use this software under the MIT License.
We require all contributions to be covered under the JS Foundation's Contributor License Agreement. This can be done electronically and essentially ensures that you are making it clear that your contributions are your contributions, you have the legal right to contribute and you are transferring the copyright of your works to the JavaScript Foundation.
If you are an unfamiliar contributor to the committer assessing your pull request, it is best to make it clear how you are covered by a CLA in the notes of the pull request. The committer will verify your status.
If your GitHub user id you are submitting your pull request from differs from the e-mail address which you have signed your CLA under, you should specifically note what you have your CLA filed under (and for CCLA that you are listed under your company's authorised contributors).
- Alex Sexton - @SlexAxton - http://alexsexton.com/
- Eemeli Aro - @eemeli - https://github.com/eemeli
Thanks to:
- Bazaarvoice - my previous employer - for letting me do cool stuff like this.
- Google has an implementation that is similar in Google Closure, I tried to vet my code against many of their tests.
- Norbert Lindenberg for showing me how good it can be.
Jeff Hansen (@jeffijoe) has written an implementation for .NET - it's a Portable Class Library, making it possible to use on iOS, Android, Windows Phone, and pretty much any other .NET target.
icu-converter is a NodeJS tool for converting message files in the ICU Resource Bundle format into JSON or .property files.