Languages
FR Pause Menu ships with 5 languages:
| Code | Language |
|---|---|
es | Español (default) |
en | English |
pt | Português |
fr | Français |
de | Deutsch |
The entire deck UI is automatically translated:
- All 9 shards and every subsection.
- The in-game support ticket system (categories, statuses, form, replies).
- Contextual texts (behind the wheel, in combat, vehicle data).
- The Los Santos map (street, zone, legend, hints).
- Client notifications.
How to change the language
Edit shared/brand.lua:
Brand = {
-- …
locale = 'en', -- es | en | pt | fr | de
}
Then restart the resource:
restart fr_deck
The change applies immediately.
My language is not included?
You can add your own by editing two places:
html/app.js→ theI18Nobject (94 keys per language).shared/locale.lua→ client messages (5 keys per language).
It is a plain string table, no programming required. If you translate a full language, send it to us on Discord and we will include it in the official release.
Changing a specific text
For example, customising the Hub welcome message:
en: {
hub_welcome: 'Welcome, soldier!',
// …
},
Restart the resource and the new texts appear instantly.