Language Files
All text can be found at one central place - the language files. For each language one file resides in the folder /languages/. You can edit the files using a text editor.
In case you want to create a new language file, follow these steps:
Copy one of the existing language files and change the language abbreviation.
Open the new language file with a file editor and make your changes.
Open the file /inc/core.inc.php and look for the option
$language_list
Add your language to the array, i.g.:
$language_list = array(
'en' => 'English',
'de' => 'German',
'es' => 'Spanish'
);The new language should now appear in the admin area -> settings.
Once you have finished the translation of a file you could support us by sending in that file so that we can add it to the official version of the script. Thanks in advance.