Home > General Help > Editing the default store language
The language file
From version 2.0 of the plus templates we've placed all the text that the store generates in one easy to edit file. This means that you have the option of changing the default words and phrases that appear on the store. Most users won't want to make any changes at all but it's there if you need it. It also means that translating the store into another language is much simpler. We do have some other language versions available for download on our downloads page.
What you need to do is open the file vsadmin/inc/languagefile.asp or vsadmin/inc/languagefile.php ,depending on your version, in your favorite text editor like Notepad. Don't make any changes to the first or last line and be sure that any changes you make are the ones in the text between "inverted commas".
For example if you wanted to change the word "Details" that appears next to each product to "More information" you would locate this line xxPrDets="Details" and change it to xxPrDets="More information", then save the file and upload it to your server.
You may want to make a copy of this file before making any changes just in case anything gets messed up. That's about all there is to it - make sure you check the changes on your store as you make them.
Updater proofing the language files
The updater does includes a copy of languagefile.asp / .php so any changes you make there will be overwritten by updaters. The way to get around this is to copy any changes you've made into includes.asp / .php. That way your edits won't be modified each time you update.
Advanced tips
It is also possible to change the text to graphics. For example you might want to change the "Details" text link on the products page to your own image. To do this add the following to vsadmin/includes.asp
xxPrDets="<img src=""images/details.gif"" border=""0"" />"
or to vsadmin/includes.php
$xxPrDets="<img src=\"/images/details.gif\" border=\"0\">";
Do note the syntax in each example there.
