//=====================================================================||
//       NOP Design JavaScript Shopping Cart Language Pack             ||
//                                                                     ||
//                      Language Strings                               ||
//                     ------------------                              ||
// Strings displayed to end users, in language specific encoding.      ||
// only modify these strings if you wish to change language specific   ||
// wording for your site.  If you add a new language, please send it   ||
// back to NOP Design (http://www.nopdesign.com/forum) so we can add   ||
// it to the distribution.                                             ||
//---------------------------------------------------------------------||
var strSorry  = "I'm Sorry, your cart is full, please proceed to checkout.";
var strAdded  = " added to your shopping cart.";
var strRemove = "Click 'Ok' to remove this product from your shopping cart.";
var strILabel = "Product Id";
var strDLabel = "Product Name/Description";
var strQLabel = "Quantity";
var strPLabel = "Price";
var strSLabel = "Shipping";
var strRLabel = "Remove From Cart";
var strRButton= "Remove";
var strSUB    = "SUBTOTAL";
var strSHIP   = "SHIPPING";
var strTAX    = "TAX";
var strTOT    = "TOTAL";
var strErrQty = "Invalid Quantity.";
var strNewQty = 'Please enter new quantity:';

var Language = 'en';
var bLanguageDefined = true;


