

//==============================================================================
//
//  MisterClipping :: Labels for javascript files
//
//  (p) Martijn Zwaal, maart 2007
//  iov Poort80 BV, Sarphatistraat 638, 1018 AV  Amsterdam
//
//==============================================================================

function LabelObject()
{
	this.labelArray = new Array();
	
	
	
	this.labelArray['common_allwithin48'] = 'All your orders are delivered within 24 hours.';
	
	
	
	this.labelArray['common_browsersorry'] = 'Sorry, your browser is not fully supported by Misterclipping, see our list of <a href=\'/default.aspx?pageid=45\'>compatible browsers</a>';
	
	
	
	this.labelArray['common_choosepictures'] = 'Choose pictures';
	
	
	
	this.labelArray['common_enterpromocode'] = 'Enter a valid promotional code to receive a discount';
	
	
	
	this.labelArray['common_invalidcode'] = 'Invalid promotional code entered';
	
	
	
	this.labelArray['common_jobestimation'] = 'This is an estimation of the price of this job, the real price may differ.';
	
	
	
	this.labelArray['common_newpasswordrequired'] = 'It\'s required to enter a new password';
	
	
	
	this.labelArray['common_numbercountrycode'] = 'Number of positions after countrycode: ';
	
	
	
	this.labelArray['common_originalpasswordrequired'] = 'It\'s required to enter your original password';
	
	
	
	this.labelArray['common_passwordnomatch'] = 'Your new and confirmed password don\'t match,\nplease enter them again';
	
	
	
	this.labelArray['common_promotionalinfo'] = 'A promotional code, consists of a number followed by 10 letters. For example \'123ABCDEFGHIJ\'. Enter a valid promotional code to receive a discount.';
	
	
	
	this.labelArray['job_commentadderror'] = 'A problem occurred while adding comments to this picture. Please try again later, if the problem persists, please write down the errormessage below and contact our servicedesk';
	
	
	
	this.labelArray['job_complexitysaveerror'] = 'A problem occurred while setting this picture\'s complexity. Please try again later, if the problem persists, please write down the errormessage below and contact our servicedesk';
	
	
	
	this.labelArray['job_descriptionsaveerror'] = 'A problem occurred while saving the jobdescription. Please try again later, if the problem persists, please write down the errormessage below and contact our servicedesk';
	
	
	
	this.labelArray['job_fetchrequiredfieldsmissing'] = 'URL, username and password are required fields for the FTP fetch.';
	
	
	
	this.labelArray['job_fetchsubmitok'] = 'The data you submitted was successfully sent to our server, the download will begin shortly';
	
	
	
	this.labelArray['job_ftpfetchwronguse'] = 'Don\'t submit the misterclipping.com FTP information to the FTP fetcher,\nthis function is meant to download pictures from a server\nof your own.';
	
	
	
	this.labelArray['job_jobnamesaveerror'] = 'A problem occurred while saving the jobname. Please try again later, if the problem persists, please write down the errormessage below and contact our servicedesk';
	
	
	
	this.labelArray['job_problemrejecting'] = 'A problem occurred while rejecting this picture. Please try again later, if the problem persists, please write down the errormessage below and contact our servicedesk';
	
	
	
	this.labelArray['job_problemremovingpicture'] = 'A problem occurred while removing this picture. Please try again later, if the problem persists, please write down the errormessage below and contact our servicedesk';
	
	
	
	this.labelArray['job_rejectoption_corruptfile'] = 'Corrupt file';
	
	
	
	this.labelArray['job_rejectoption_details'] = 'Details';
	
	
	
	this.labelArray['job_rejectoption_noreason'] = 'No Reason';
	
	
	
	this.labelArray['job_rejectoption_objectwrong'] = 'Object wrong';
	
	
	
	this.labelArray['job_rejectoption_other'] = 'other';
	
	
	
	this.labelArray['job_rejectothermessage'] = 'If you have another reason to reject a picture than one the predefined reasons, a comment is mandatory';
	
	
	
	this.labelArray['job_rejectwithoutreason'] = 'A picture cannot be rejected without a reason!';
	
	
	
	this.labelArray['job_sessioninvalid'] = 'Your session seems to be invalid, try to sign out and then log in again.';
	
	
	
	this.labelArray['job_waiting_for_thumbnails'] = '<FONT color=#008000><STRONG>Waiting for thumbnails to be generated...</STRONG></FONT><IMG src=\"http://mrclipping.poort80.nl/load.gif\">&nbsp; <P>&nbsp;</P><P><FONT color=#008000><STRONG>Please remember to add specific instruction in the description field! Problems with uploading? Please click <A href=\"http://www.misterclipping.com/default.aspx?pageid=39&mainmenuid=17\" target=_new>here</A>!</STRONG></FONT></P><P align=left><STRONG><FONT color=#008000><IMG src=\"http://www.misterclipping.com/callsupport.bmp\"></FONT></STRONG></P>';
	
	
	
	this.labelArray['job_waitingforthumbnails'] = '<FONT color=#008000><STRONG>Number of thumbnails to be generated: </STRONG></FONT>';
	
	
	
	this.labelArray['step3_acceptofferbutton'] = 'Accept offer';
	
	
	
	this.labelArray['step3_acceptpaysitebutton'] = 'Accept offer and continue to paysite';
	
	
	
	this.write = function(label, original)
		{
			if(this.labelArray[label] == null)
			{
				alert("Error, missing label '" + label + " for:" +  original);
			}
			else
			{
				return this.labelArray[label];
			}
		}

	return this;
}

var label = new LabelObject();