var translation_properties = {
	first_day_in_week: 1
};

/* The translations variable is structured as follows:
 * 
 * package_name: {
 *   string_name: 'string value';
 *   string_name: 'string value';
 * },
 * 
 * If a package or a string is missing, the function 
 * will return a message describing the problem instead
 * of the actual string.
 * 
 */

var translations = {
	link_notice: {
		headline: 'Link warning',
		text: '<b>Please notice:</b> This link is to an external website.'
	},
	
	buttons: {
		ok: 'OK',
		cancel: 'cancel'
	},
	
	calendar: {
		next_month_tooltip: 'Next month',
		previous_month_tooltip: 'Previous month',
		select_month_and_year_tooltip: 'Select month and year',
		ok_button: 'OK',
		cancel_button: 'Cancel',
		today: 'Today'
	},
	
	days: {
	   sunday: 'Sunday',
	   monday: 'Monday',
	   tuesday: 'Tuesday',
	   wednesday: 'Wednesday',
	   thursday: 'Thursday',
	   friday: 'Friday',
	   saturday: 'Saturday'
	},
	
	months: {
	   january: "January",
	   february: "February",
	   march: "March",
	   april: "April",
	   may: "May",
	   june: "June",
	   july: "July",
	   august: "August",
	   september: "September",
	   october: "October",
	   november: "November",
	   december: "December"
	}	
};
