Can this product be easily translated into various languages? All preset text in DevEdit is stored in 1 file, located at:
/de/de_lang/language.php
This file can be edited in any text editor. Here is an example. Just say you wanted to change "Modify" to "Alter". So open up language.php and search for "Modify", it will look like this:
define("sTxtImageModify", "Modify");
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("sTxtImageModify", "Alter");
If you need to put a quotation mark inside the text, you can not use a normal ", but instead can use the html entity equivalant: "
Example:
define("sTxtImageModify", "Example "with" quotes");
would return:
Example "with" quotes
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.
