|
|
Article » Language Support
CounterCode currently includes language packs for English, German and Italian. Further language packs will be added as they become available.
If you are intersted in translating the software into your own language, or want to change the phrases and words used in CounterCode it is very simple to do.
All language phrases are stored in external language files, which makes translating very easy. See below for an example of the format of these files:
English:
CODE:
$lang['control_panel'] = "Control Panel";
$lang['members_login'] = "Members Login";
$lang['username'] = "Username";
$lang['password'] = "Password";
$lang['login'] = "Login";
German:
CODE:
$lang['control_panel'] = "Einstellungsumgebung";
$lang['members_login'] = "Mitglieder-Login";
$lang['username'] = "Benutzername";
$lang['password'] = "Passwort";
$lang['login'] = "Einloggen";
|
|