Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where are the AngularJS I18n files?

Tags:

They talk about locale-specific files here http://docs.angularjs.org/guide/i18n but don't mention where to get them (the official AngularJS repo doesn't contain them).

So where does one obtain these locale files?

like image 719
randomguy Avatar asked Jan 11 '13 01:01

randomguy


People also ask

What is i18n in AngularJS?

Internationalization (i18n) is the process of developing products in such a way that they can be localized for languages and cultures easily. Localization (l10n), is the process of adapting applications and text to enable their usability in a particular cultural or linguistic market.

Does AngularJS support Internationlization?

AngularJS supports inbuilt internationalization for three types of filters currency, date and numbers. We only need to incorporate corresponding js according to locale of the country. By default it handles the locale of the browser.

What is the difference between i18n and l10n?

I18n - Internationalization - Providing some kind of framework so that you can easily swap out strings, graphics, sounds and other resources and generally handling different conventions of communication. L10n - Localization - The process of creating a bunch of strings, graphics, sounds etc.

What is i18n library?

Internationalization, or i18n (18 is the number of letters between i and n), is the process of building your product to support multiple languages. This can include separating your text from your code and using a library to format your dates based on different countries and time zones.


2 Answers

You can also get them with bower:

bower install angular-i18n 

It is the official bower distribution that mirrors the files at https://code.angularjs.org/

More info at https://github.com/angular/bower-angular-i18n

like image 144
Jesús Carrera Avatar answered Sep 22 '22 18:09

Jesús Carrera


Lastest stable version i18n files at here: http://code.angularjs.org/1.0.3/i18n/

You can also find other versions at here: http://code.angularjs.org/

like image 27
tenifre Avatar answered Sep 26 '22 18:09

tenifre