Skip to main content

Languages

FR Pause Menu ships with 5 languages:

CodeLanguage
esEspañol (default)
enEnglish
ptPortuguês
frFrançais
deDeutsch

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:

  1. html/app.js → the I18N object (94 keys per language).
  2. 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.