Getting started

The main goal of angular-gettext is to make it extremely simple to use. Here's how it works, conceptually:

1
Write your application as usual, in English.

2
Annotate the strings that should be translated.

3
Use the angular-gettext tools to extract those strings to a translation template.

4
Once translated, use the same tools to embed the translations back into your application.

Sample application

A sample application can be found at https://github.com/rubenv/angular-gettext-example. This is an adaptation of the TodoMVC example. You can use this as a guideline while adding angular-gettext to your own application.

Next steps