> For the complete documentation index, see [llms.txt](https://spice.docs.medtroniclabs.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://spice.docs.medtroniclabs.org/deploy/customization-guide/multi-language-translation/support-for-multiple-languages.md).

# 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://1478837505-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fc8r5CWDYQD5YGrlFur8R%2Fuploads%2Fgit-blob-12916215a0c4d9feaf58d73305be953018f79793%2Fculture1.png?alt=media" alt=""><figcaption></figcaption></figure>

<figure><img src="https://1478837505-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fc8r5CWDYQD5YGrlFur8R%2Fuploads%2Fgit-blob-e86f2901671a5290b5ddc2a9af951b7dfa4e975f%2Fculture2.png?alt=media" alt=""><figcaption></figcaption></figure>

<figure><img src="https://1478837505-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fc8r5CWDYQD5YGrlFur8R%2Fuploads%2Fgit-blob-6b9fdd571f75a02a6906b898902d94d8ea67e27f%2Fculture3.png?alt=media" alt=""><figcaption></figcaption></figure>

**In Moblie Source Code**

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")
}
```
