# Support for multiple languages

**To change the culture value by adding string.xml:**

* Right-click on the "res" directory (app/res).
* Click on "New" -> "New Resource directory".
* Select "Locale" as the resource type.
* Choose the desired language (e.g., Bangla) from the dropdown menu.
* Click "OK".
* "values-bn" will be created inside the res folder.
* After that, add strings.xml inside "values-bn"(eg. for Bangla language) file for the respective languages, otherwise, it will use English(default strings.xml) as the default language. add the strings inside the file.

<figure><img src="https://2347658875-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F7inBQ0zjo0nwpqK5625P%2Fuploads%2FJFUQFSz5aT6i1btUhMoY%2Fculture1.png?alt=media&#x26;token=7eb904e0-02d3-4f25-88c0-e10df984abd3" alt=""><figcaption></figcaption></figure>

<figure><img src="https://2347658875-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F7inBQ0zjo0nwpqK5625P%2Fuploads%2F9zUJiewcLXwMcfzrF8nc%2Fculture2.png?alt=media&#x26;token=95c2d28e-5fd7-4c6c-9044-172e5a327574" alt=""><figcaption></figcaption></figure>

<figure><img src="https://2347658875-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F7inBQ0zjo0nwpqK5625P%2Fuploads%2FbwczYriP3HXsJy8k0Pw4%2Fculture3.png?alt=media&#x26;token=34578c04-bb73-4193-a5ac-48be97d73e7d" alt=""><figcaption></figcaption></figure>

**In Moblie Source Code**&#x20;

Open the file CultureLocale.\
Add the country language code and language names from the backend table named culture\_table with the column name "name"

```
package com.medtroniclabs.opensource.formgeneration.formsupport.viewmodel
enum class CultureLocale (val value: String) {
    EN("English"),
    BN("Bengali"),
    SW("Swahili")
}
```
