See the original posting on DZone Python
Internationalization is the process of designing and preparing your app to be usable in different languages. Localization is the process of translating your internationalized app into specific languages for particular locales.
Therefore, just as youd ensure that your design is aesthetically-pleasing and accessible, you should also ensure that your text is localized. This is the process of ensuring that your applications support multiple languages. In Angular, this is done in multiple ways.
For example, you can use third-party libraries, such us ngx-translate, or you can just use the built-in i18n functionality.
Why Is Internationalization so Important?
These days, with so many websites to choose from, making applications available and user-friendly to a worldwide audience is important. In this article, we will focus on using the built-in i18n tool. So, let’s get started.