For the complete documentation index, see llms.txt. This page is also available as Markdown.

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

  1. Copy data/locales/en.lua to data/locales/[your_locale].lua (for example cs.lua).

  2. Translate every value in the table. Leave keys untouched.

  3. Set Config.Locale = 'cs' and restart the resource.

🧩 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