|
|
|
|
|
by bijanv
4499 days ago
|
|
Had a look but couldn't quickly see if this supports Gettext? As you build out an increasingly large app and i8n is important to you, using a standardized i8n process makes your life significantly easier than managing lists of strings. We've been using angular-gettext[1] along with Transifex and it's made a significant impact our development and translation management. [1] http://angular-gettext.rocketeer.be/ |
|
1. You never will run out of keys.
2. Makes code much easier to read with a real language on messages instead of keys that can't possibly describe the whole message.
3. While writing code, you don't need to stop to think in a new key to add your message, go to the key->value list file and add it there. You just wrap you message with _('') and it's done.
4. Easier to write messages that have variables inside using sprintf or similar.