# Locale & Debug

File: `shared/config.lua`

***

## Config.Debug

| Key     | Type      | Default | Description                                                         |
| ------- | --------- | ------- | ------------------------------------------------------------------- |
| `Debug` | `boolean` | `true`  | Enables debug mode. Prints extra information to the server console. |

:::hint{type="warning"}
⚠️ Production: Always set this to `false` before deploying to a live server.
:::

```lua
Config.Debug = true
```

***

### Language / Locale

```lua
Config.Locale = 'en'
```

Purpose: Set the language for all UI text, notifications, and messages.

Available Languages:

| Code   | Language | File              |
| ------ | -------- | ----------------- |
| `'en'` | English  | `locales/en.json` |
| `'pl'` | Polish   | `locales/pl.json` |
| `'de'` | German   | `locales/de.json` |
| `'es'` | Spanish  | `locales/es.json` |
| `'fr'` | French   | `locales/fr.json` |
| `'hi'` | Hindi    | `locales/hi.json` |
| `'ja'` | Japanese | `locales/ja.json` |
| `'ru'` | Russian  | `locales/ru.json` |
| `'zh'` | Chinese  | `locales/zh.json` |

## Related pages

- [Company](/jobs/lawnmower/configuration/company) — Defines the gardener company — its name, NPC, map blip, job requirement, parking spots, vehicles, and equipment offsets.
- [Database](/jobs/lawnmower/configuration/database) — File: shared/config.lua → Config.Database
- [Levels](/jobs/lawnmower/configuration/levels) — Controls the leveling progression for the gardener job.
- [Missions](/jobs/lawnmower/configuration/missions) — File: shared/config.lua → Config.Missions
- [Skills](/jobs/lawnmower/configuration/skills) — Defines the entire skill tree displayed in the Upgrades panel.
- [Uniforms](/jobs/lawnmower/configuration/uniforms) — File: shared/config.lua → Config.Uniforms
- [Configuration](/jobs/lawnmower/configuration) — back to the section overview
