# RTL and Multilingual

## Multilingual <a href="#multilingual" id="multilingual"></a>

Just add a file under **src/assets/i18n/** with your local language name and copy the content of the file **`english.json`** into an added file. Change the right side content to local

![](/files/-LF2I3zPKK_PXoxLt7je)

To localize your app set your default language within the constructor of **app.component.ts** file like

```typescript
this.translateService.setDefaultLang('french');
```

{% hint style="info" %}
&#x20;change french -> to your file name
{% endhint %}

## RTL <a href="#rtl" id="rtl"></a>

To use RTL set appDir to rtl in **src/providers/config.ts** file

```typescript
appDir: any = 'rtl';
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://woostore.gitbook.io/woostore-docs/rtl-and-multilingual.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
