# Translate App

***Embryo-Angular*** support multilingual feature which helps you to build your app in your native language. Read the documentation carefully and follow the steps. Embryo by default supports 2 languages, they are: **English** and **French**.

### **How To Set Default Locale**

If you want to change your default locale(you can select any of the given locale as default for your template) then you can follow the steps given below:

**Step 1:** Go to the `src->app` folder and open `app.component.ts` file:

{% code title="app.component.ts" %}

```typescript
import { TranslateService } from '@ngx-translate/core';

export class AppComponent {
   constructor(translate: TranslateService) {
      translate.setDefaultLang('en');
   }
}
```

{% endcode %}

**Step 2:** Now change the language code to your desired language code. You can get the language code from the table above.

### How To Add A New Locale

Here are the instructions to add a new locale in your app. We are taking an example of **French** that we are going to add.

**Step 1:** Create a `json` file with name of locale code inside the `src->assets->i18n` folder.

**Step 2:** Open the `fr.json` file that you have just created and define the static strings which you want to translate into French, you can check the other locale files to check how strings are defined.

{% code title="fr.json " %}

```
{
  "HOME":"Accueil",
  "SHOP":"Boutique",
  "PRODUCT DETAILS": "détails du produit",
  "CART" : "Chariot"
}
```

{% endcode %}

**Step 3:** Now you need to add your locale inside the `app.component.ts` file under the `src->app` folder.

{% code title="app.component.ts" %}

```typescript
import { TranslateService } from '@ngx-translate/core';

export class AppComponent {
   constructor(translate: TranslateService) {
      translate.addLangs(['en', 'fr']);
      
      const browserLang: string = translate.getBrowserLang();
      translate.use(browserLang.match(/en|fr/) ? browserLang : 'en');
   }
}
```

{% endcode %}

Now , where you want to use the translation language then you can use it as follows:

```
<a class="nav-link" routerLinkActive="active-link">
				  {{item.name | translate}}
				</a>
```

That's it, Now you can translate your app in your preferred language.
