Multi-Language Support
Configure multiple languages and add translations for your CoinTrail installation.
Included Languages
CoinTrail comes with the following languages pre-installed:
| Language | Code | Direction | Status |
|---|---|---|---|
| English | en |
LTR | Complete |
| Spanish | es |
LTR | Complete |
| French | fr |
LTR | Complete |
| German | de |
LTR | Complete |
| Arabic | ar |
RTL | Complete |
| Portuguese | pt |
LTR | Complete |
Translate Files
Translate all PHP files in the new folder. Example:
lang/it/messages.php
<?php
return [
'welcome' => 'Benvenuto',
'login' => 'Accedi',
'register' => 'Registrati',
'logout' => 'Esci',
'dashboard' => 'Dashboard',
// ... more translations
];
Register Language
Add the language to config/app.php:
config/app.php
'available_locales' => [
'en' => 'English',
'es' => 'Español',
'fr' => 'Français',
'de' => 'Deutsch',
'ar' => 'العربية',
'pt' => 'Português',
'it' => 'Italiano', // Add new language
],
Enable in Admin
Go to Admin → Settings → Languages and enable the new language.