Locale
rcore_housing reads UI strings and notifications from data/locales/[locale].lua.
🌍 Selecting a Language
Config.Locale = 'en'Set Config.Locale to the basename of the locale file you want to load. Only en.lua ships by default.
➕ Adding a New Language
Copy
data/locales/en.luatodata/locales/[your_locale].lua(for examplecs.lua).Translate every value in the table. Leave keys untouched.
Set
Config.Locale = 'cs'and restart the resource.
Do not rename or remove keys. Missing keys fall back to the literal key string in the UI.
🧩 What's Translated
The locale file covers:
Property state labels (
FOR_SALE,FOR_RENT,OWNED,RENTED)Upgrade names and feature lists
Furniture delivery toasts
Lockpick, breach, and alarm messages
Access control prompts (member, manager, guest, tenant)
Rent and utilities bill notifications
Marketplace listing UI labels
Real estate business UI strings
Last updated