> For the complete documentation index, see [llms.txt](https://gocomedyfunstoredocs.gitbook.io/gocomedyfun-store/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gocomedyfunstoredocs.gitbook.io/gocomedyfun-store/scripts-free/login-fun/english/configuration/traduction.md).

# Traduction

#### **Multilanguage Translation**

The `Config.Traduction` parameter defines the language used by the script

**Configuration Example**

```lua
Config.Traduction = 'fr'
```

***

#### **How It Works**

This parameter tells the script which translation file to use\
Language files are located in the folder:

```
Login_Fun/traduction
```

Each file corresponds to a specific language:

* `fr.json` → French
* `en.json` → English
* `de.json` → German
* `it.json` → Italian
* `es.json` → Spanish
* `ru.json` → Russian

***

#### **How to Change the Language**

1. Open the `config.lua` file.
2. Locate the line:

   ```lua
   Config.Traduction = 'fr'
   ```
3. Replace `'fr'` with the desired language code:
   * French → `'fr'`
   * English → `'en'`
   * German → `'de'`
   * Italian → `'it'`
   * Spanish → `'es'`
   * Russian → `'ru'`

**Example in English:**

```lua
Config.Traduction = 'en'
```

***

#### **Important**

Make sure the selected translation file exists in the `Login_Fun/traduction` folder\
If the language code doesn’t match an available file, the script may fail to display text correctly
