I tried to find documentation in AngularJS for supporting multiple languages with no success. Is localization supported?
Take a look at angular-translate: https://github.com/angular-translate/angular-translate
for all DIY folks:
You can find localized files for angular: here
These files will help you with the build-in angular filters: date, currency and number. Amazing... so far.
Now you want to use your own texts, than all you need is the power of angular.js dependency injection. Create a new file like: "myTexts_en_us.js" and use $provide.value like this:
$provide.value("myTexts", {firstText : "This is my localized text"});
For details:
http://jsfiddle.net/4tRBY/24/
For real-world-use, you should add a filter: http://jsfiddle.net/4tRBY/41/
Tips: