//=====================================================================||
//       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.                                             ||
//---------------------------------------------------------------------||
   strSorry  = "Your cart is full! Please proceed to checkout.";
   strAdded  = " added to your shopping cart.";
   strRemove = "Are you sure you want to remove this item?\n\nClick 'OK' to proceed or 'Cancel' to escape:";
   strILabel = "Item Code";
   strDLabel = "Description";
   strQLabel = "Qty";
   strPLabel = "Price Each";
   strELabel = "Item Total"
   strSLabel = "Shipping";
   strRLabel = "Remove?";
   strRButton= "Remove";
   strSUB    = "Subtotal: ";
   strSHIP   = "Shipping: ";
   strTAX    = "Tax: ";
   strTOT    = "TOTAL: ";
   strErrQty = "Invalid Quantity!";
   strAlready= "This item is already in your cart!\n\nIf you wish to order more of this item,\nupdate the quantity shown in your cart.";
   strNewQty = 'Please enter new quantity:';
   strDIS    = "Discount: ";   //---------ADDED-----------||
   strMINUS  = "-";          //---------ADDED-----------||
   strPRESUB = "Cart Total: "; // added ||

Language         = 'en';
bLanguageDefined = true;


