//=====================================================================||
//       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.                                             ||
//---------------------------------------------------------------------||
MonetarySymbol = '€ ';
DisplayNotice         = false;
DisplayShippingColumn = false;
DisplayShippingRow    = true;
FixedShippingRate     = true;
ShippingRate          = 2;
DisplayTaxRow         = true;
PricesIncludeTax	  = true;
TaxRate               = 0.19;
TaxByRegion           = false;
TaxPrompt             = '';
TaxablePrompt         = '';
NonTaxablePrompt      = '';
MinimumOrder          = 0.00;
MinimumOrderPrompt    = 'U order is lager dan het minimum. U kunt nog niet verder gaan.';

DisplayPaymentRow	  = true;
PaymentIsFree	     = true;

//methodes moeten in het taalbestand staan.



DisplayBetaalRow	  = false;
Vooruitbetaling		  = 5.50;
VooruitbetalingPrompt = 'Vooruit betalen';
Rembours			  = 13;
RemboursPrompt		  = 'Onder rembours';
Ophalen				  = 0;
OphalenPrompt		  = 'Afhalen';
BetalenPrompt		  = 'Kies een betaalwijze.';
Verzendkosten		  = 0;
Verzendkostengrens	  = 100000.00;
Verzendkostenprompt	  = "Bedrag is hoger dan " + Verzendkostengrens +" waardoor u geen verzendkosten hoeft te betalen.";

strSorry  = "Uw winkelwagen is vol, gaat u aub naar de Kassa !!!";
strAdded  = " aan uw winkelwagen toegevoegd.";
strRemove = "Klik op 'Ok' om dit product uit uw winkelwagen te verwijderen.";
strILabel = "Art.nr.";
strQLabel = "Aantal";
strDLabel = "Omschrijving";
strPLabel = "Prijs";
strSLabel = "Verzendkosten";
strRLabel = "";
strRButton= "Verwijderen";
strSUB    = "SUBTOTAAL";
strSHIP   = "VERZENDKOSTEN";
strTAX    = "waarvan BTW";
strPAY	  = "Betaalwijze";
strTOT    = "TOTAAL";
strErrQty = "Ongeldig Aantal.";
strNewQty = 'Voer een nieuw aantal in aub:';

PaymentMethodInstruction = 'Alle betalingen lopen via ENGRAVE. De electronische betalingen worden afgehandeld worden door Tripledeal Payment Services.';

PaymentMethod = new Array;
	PaymentMethod = new Array;
	PaymentMethod[0] = new Array;
	PaymentMethod[0][0] = 'iDeal (alleen voor Nederland)';	//name of payment method
	PaymentMethod[0][1] = 0;		//cost of payment method
	PaymentMethod[0][2] = 'ideal';		//code of payment method
	PaymentMethod[0][3] = '/images/betaalmethoden/ideal.gif';		//icon of payment method
	
	PaymentMethod[1] = new Array;
	PaymentMethod[1][0] = 'Mastercard (via Tripledeal Payment Services)';	//name of payment method
	PaymentMethod[1][1] = 0;		//cost of payment method
	PaymentMethod[1][2] = 'mastercard';		//code of payment method
	PaymentMethod[1][3] = '/images/betaalmethoden/mastercard.gif';		//icon of payment method
	
	PaymentMethod[2] = new Array;
	PaymentMethod[2][0] = 'Visacard (via Tripledeal Payment Services)';	//name of payment method
	PaymentMethod[2][1] = 0;		//cost of payment method
	PaymentMethod[2][2] = 'visa';		//code of payment method
	PaymentMethod[2][3] = '/images/betaalmethoden/visacard.gif';		//icon of payment method
	
	PaymentMethod[3] = new Array;
	PaymentMethod[3][0] = 'Bank overschrijving';	//name of payment method
	PaymentMethod[3][1] = 0;		//cost of payment method
	PaymentMethod[3][2] = 'bankoverschrijving';		//code of payment method
	PaymentMethod[3][3] = '/images/betaalmethoden/overschrijving.gif';		//icon of payment method
	
	PaymentMethod[4] = new Array;
	PaymentMethod[4][0] = 'Dexia (Alleen voor België)';	//name of payment method
	PaymentMethod[4][1] = 0;		//cost of payment method
	PaymentMethod[4][2] = 'dexia';		//code of payment method
	PaymentMethod[4][3] = '/images/betaalmethoden/dexia.gif';		//icon of payment method
	
	PaymentMethod[5] = new Array;
	PaymentMethod[5][0] = 'ING HomePay (Alleen voor België)';	//name of payment method
	PaymentMethod[5][1] = 0;		//cost of payment method
	PaymentMethod[5][2] = 'ing';		//code of payment method
	PaymentMethod[5][3] = '/images/betaalmethoden/ing_homepay.gif';		//icon of payment method
	
	PaymentMethod[6] = new Array;
	PaymentMethod[6][0] = 'KBC Online (Alleen voor België)';	//name of payment method
	PaymentMethod[6][1] = 0;		//cost of payment method
	PaymentMethod[6][2] = 'kbc';		//code of payment method
	PaymentMethod[6][3] = '/images/betaalmethoden/kbconline.gif';		//icon of payment method
	
Language = 'nl';
bLanguageDefined = true;

