Our Location
304 North Cardinal St.
Dorchester Center, MA 02124
To customize language:
For example, if you want to change a definition found in /language/en_us/users.php, copy the language string like:
$lang['Users.!error.username.empty'] = 'Please enter a username.'; |
And paste it into /language/en_us/_override.php with your changes like so:
$lang['Users.!error.username.empty'] = 'My custom text here.'; |
You can run the following query, replacing en_us with your desired language, like es_es. Please note that this will update ALL CLIENTS to use the language you set. Make sure the language is installed and valid and take a backup of your database before running the query.
UPDATE client_settings SET `value` = 'en_us' WHERE `key` = 'language'; |