Previous versions of the templates relied on making changes to the language file for regional variations such as for UK, Australian, Canadian stores and so on. Now this is handled automatically by the cart even for foreign language sites such as Spanish and French. If you want to make changes to any of the text in the cart it is best not to edit the language file directly but rather add the text changes to your includes.asp/php file. Then make sure your includes files are in the following order...
PHP - These maybe setup differently on the pages but they should still be in the following order:
<?php include "vsadmin/db_conn_open.php"; include "vsadmin/inc/languagefile.php"; include "vsadmin/includes.php"; include "vsadmin/inc/incfunctions.php"; ?>
An example of this would be say you wanted to change the text for "Make A Donation" to "Service Payment". Just search for that text in languagefile_en.asp/php and you will find the line... xxMakDon="Make A Donation" ' ASP $xxMakDon='Make A Donation'; // PHP Then add the new line to your includes.asp/php file such as... xxMakDon="Service Payment" ' ASP $xxMakDon='Service Payment'; // PHP