Can this product be easily translated into various languages? All preset text in Trackpoint is stored in 1 file, located at:
/language/language.php
This file can be edited in any text editor. Here is an example. Just say you wanted to change "Control Panel" to "Admin Area". So open up language.php and search for "Control Panel", it will look like this:
define('LNG_PageTitle', 'Control Panel');
In order to change it, you only need to edit the text within the right set of quotes. So we might change it to:
define('LNG_PageTitle', 'Admin Area');
If you need to put a single quotation mark inside the text, you can not use a normal ', but instead can use the html equivalant: '
Example:
define('LNG_PageTitle', 'Secret 'Admin' Area');
would return:
Secret 'Admin' Area
Once you have changed it, save and re-upload to your site.
If you have any trouble, send in a trouble ticket via the client area.
