// Generated at 2011-01-10 17:37:31 GMT on skybound.xlshosting.com from IP 80.101.89.151.
// DO NOT EDIT!


var I18N = new (function() {
	this.language = 'en';
	this.mon_thousands_sep = ',';
	this.mon_decimal_point = '.';
	this.thousands_sep = ',';
	this.decimal_point = '.';
	this.formatCurrency = function(value) {
		var f = Math.round(value * 100);
		if (f == 0) {
			return '0' + this.mon_decimal_point + '00';
		}
		var s = String(f);
		var e = s.length > 2 ? s.substr(0,s.length - 2) : '0';
		var c = s.substr(s.length - 2);
		var re = /(\d+)(\d{3})/;
		while (re.test(e)) {
			e = e.replace(re, '$1' + this.mon_thousands_sep + '$2');
		}
		return e + this.mon_decimal_point + c;
	}
})();

if (!Number.prototype.toCurrency) {
	Number.prototype.toCurrency = function() {
		return I18N.formatCurrency(this);
	}
}
if (!String.prototype.toCurrency) {
	String.prototype.toCurrency = function() {
		return Number(this).toCurrency();
	}
}

var Strings = {
	address:	'Address',
	alt_address:	'Delivery address',
	alt_city:	'Delivery city',
	alt_company:	'Delivery to company',
	alt_country_code:	'Delivery country',
	alt_name:	'Delivery to name',
	alt_postalcode:	'Delivery postalcode',
	cart_1_product_added:	'1 product has been added to your cart.',
	cart_product_x_added:	'Product %s has been added to your cart.',
	cart_x_products_added:	'%d products have been added to your cart.',
	city:	'City',
	company:	'Company',
	country_code:	'Country',
	current_password:	'Current password',
	email:	'E-mail',
	err_accept_conditions:	'You first need to accept the terms and conditions in order to proceed.',
	err_confirm_del_profile:	'You haven\'t confirmed that you want to delete your profile.',
	err_eenmalige_machtiging_bankaccnum_invalid:	'The bank account number you entered is invalid.',
	err_eenmalige_machtiging_bankaccnum_missing:	'You need to enter your dutch giro or bank account number in order to continue.',
	err_eenmalige_machtiging_unchecked:	'You need to check the box at \"I hereby...\" in order to continue.',
	err_failed:	'Failed!',
	err_fields_empty:	'The following mandatory fields are empty:',
	err_fields_syntax:	'The following fields contain invalid input:',
	err_new_email_mismatch:	'You didn\'t enter the same email address twice.',
	err_new_password_mismatch:	'The new passwords don\'t match. Please enter them again.',
	err_no_payment_method:	'You need to select a payment method before proceeding.',
	err_password_mismatch:	'The entered passwords don\'t match. Please enter them again.',
	firstname:	'First name',
	gender:	'Mr./Mrs.',
	info_caption:	'Extra information for product code',
	info_close:	'Close',
	legend_addToCart:	'Place product in cart.',
	legend_caption:	'Legend',
	legend_info:	'Click on the icon for more product information.',
	legend_limited:	'Limited availability.',
	legend_new:	'New product.',
	legend_photo:	'Photo available. Click on the icon in order to view it.',
	legend_stock_n:	'Not in stock, but deliverable within 8-10 days.',
	legend_stock_y:	'In stock and ready for direct delivery.',
	message:	'Message',
	name:	'Name',
	new_email:	'New email',
	new_email2:	'New email (repeat)',
	new_password:	'New password',
	new_password2:	'New password (repeated)',
	newsletter:	'Newsletter',
	password:	'Password',
	password2:	'Password (repeated)',
	payment_method:	'Payment method',
	photo_caption:	'Photo of product code',
	postalcode:	'Postalcode',
	surname:	'Surname',
	telephone:	'Telephone #',
	usermenu_forgot_password:	'Forgot password?',
	usermenu_login:	'Login',
	usermenu_logout:	'Logout',
	usermenu_my_orders:	'My orders',
	usermenu_my_profile:	'My profile',
	usermenu_register:	'Register',
	usermenu_title:	'My Bioreform'
};
		
