Slotara ships with complete UI translations for 8 popular languages. Every panel — Super Admin, Business, and the public-facing booking pages — is fully translated. Users switch language with a single click from the header; the choice is stored in their session and takes effect immediately without a page reload.
| Code | Language | Native Name |
|---|---|---|
en |
English | English |
es |
Spanish | Español |
de |
German | Deutsch |
fr |
French | Français |
ar |
Arabic | العربية |
ru |
Russian | Русский |
zh |
Chinese (Simplified) | 中文 |
hi |
Hindi | हिन्दी |
All 8 languages cover the full interface: navigation, form labels, validation messages, button text, notifications, and email template subject lines.
Super admins can control which languages are active platform-wide from a single checkbox list.
To change enabled languages:
The change takes effect immediately across every panel and public page without any cache clear or deploy. Disabled languages disappear from:
locale.switch endpoint (a request to switch to a disabled locale is silently rejected).{info} Disabling a language only hides it from the UI — its translation files remain on disk. Re-enabling it restores it immediately.
{warning} If a user has a disabled language saved as their profile locale, they will fall back to the app default (
en) on their next session.
The language switcher lives in the top-right header of every panel (shown as a two-letter locale code, e.g. EN, ES, DE).
The selected language is stored in the user's session, so it persists across page navigations until changed or until the session expires.
| Area | Translated? |
|---|---|
Super Admin Panel (/admin) |
✅ Full UI |
Business Panel (/manage) |
✅ Full UI |
Public Booking Page (/{slug}) |
✅ Full UI |
| Email notifications | ✅ Subject lines |
| Validation error messages | ✅ Yes |
| API responses | — (English only) |
{info} The language switcher controls the panel UI language. It does not change the content your business has entered (service names, descriptions, etc.) — those are business-controlled.
All translation strings live in lang/ under a sub-directory per locale:
lang/
en/ ← English (default)
es/ ← Spanish
de/ ← German
fr/ ← French
ar/ ← Arabic
ru/ ← Russian
zh/ ← Chinese
hi/ ← Hindi
To edit an existing translation, open the relevant file (e.g. lang/fr/booking.php) and change the value string. Clear the config cache after saving:
php artisan config:clear
php artisan cache:clear
To add a new language:
lang/ using the ISO 639-1 code (e.g. lang/pt/).lang/en/ into the new directory and translate the values.config/app.php under available_locales:'available_locales' => ['en', 'es', 'de', 'fr', 'ar', 'ru', 'zh', 'hi', 'pt'],
{primary} RTL support — Arabic (
ar) is automatically rendered right-to-left. Any locale declared as RTL inconfig/app.php(rtl_locales) will receive the same treatment.