// JavaScript Document

Oshoplang = { 

RemoveError: 'The item has now been removed from your cart.', 
// (Message displayed when product is removed from the shopping cart) 

Added: ' item(s) have been added to your cart.', 
// (Message displayed when product is added to the shopping cart. NOTE: The system will display the number of items added to the cart followed by your message)

OutOfStock: 'Sorry, this item is unavailable or out of stock.', 
// (Message displayed when product added is out of stock)

PreOrder: ' pre-order item(s) have been added to your cart.', 
// (Message displayed when pre-ordered product is added to the shopping cart. NOTE: The system will display the number of items added to the cart followed by your message)

InvalidQuantity: 'An invalid quantity has been entered. Please try again with a valid quantity.', 
// (Message displayed when invalid quantity is added the shopping cart)

CartEmpty: 'Your cart has now been cleared.', 
// (Message displayed when the shopping cart is empty)

CartUpdateSuccess: 'Your cart has been successfully updated.', 
// (Message displayed when the shopping cart is successfully updated)

InvalidShip: 'Please select a valid shipping option before continuing.', 
// (Message displayed when customer tries to check out without selecting a shipping option)

ChooseState: 'Please select a valid state/region before continuing.', 
// (Message displayed when customer tries to check out without selecting a destination state)

EnterZip: 'Please select a valid Post/Zip code before continuing.', 
// (Message displayed when customer tries to check out without entering a zip code)

ChooseShip: 'Please select a valid shipping option before continuing.', 
// (Message displayed when customer tries to check out without selecting a radio button shipping option)

IncorrectGForm: 'Sorry, there seems to be something wrong with our Gift voucher System. Please contact us for more information.', 
// (Message displayed when the gift voucher form in Admin -> More Customization Options -> Online Shop Layouts -> gift Voucher layout is broken)

EnterGName: 'Please enter the recipients name for the gift voucher.', 
// (Message displayed when customer tries to submit the Gift Voucher form without entering the recipients name)

InvalidGEmail: 'Please enter a valid email address for the gift voucher recipient.', 
// (Message displayed when customer tries to submit the Gift Voucher form without entering a proper email address)

EnterGMessage: 'Please enter a message for the recipient of the gift voucher.' 
// (Message displayed when customer tries to submit the Gift Voucher form without entering a message for the recipient)
}
