$lang = function(key)
{
	var translations = Array;
	translations['IN THE LAST'] = "In the last";
	translations['TODAY'] = "Today";
	translations['YESTERDAY'] = "Yesterday";
	translations['THIS WEEK'] = "This week";
	translations['TOMORROW'] = "Tomorrow";
	translations['NEXT WEEK'] = "Next week";
	translations['NEXT MONTH'] = "Next month";
	translations['THIS MONTH'] = "This month";
	translations['IN THE NEXT'] = "In the next";
	translations['EXACTLY'] = "Exactly";
	translations['BEFORE'] = "Before";
	translations['AFTER'] = "After";
	translations['CONTAINS'] = "Contains";
	translations['STARTS WITH'] = "Starts with";
	translations['ENDS WITH'] = "Ends with";
	translations['IS'] = "Is";
	translations['ISNOT'] = "Is not";
	translations['EQUALS'] = "Equals";
	translations['GREATER THAN'] = "Greater than";
	translations['LOWER THAN'] = "Lower than";
	translations['NOT EQUAL'] = "Not equals";
	translations['BOOL_SELECT_TRUE'] = "Yes";
	translations['BOOL_SELECT_FALSE'] = "No";
	translations['TIMESELECT_DAYS'] = "Days";
	translations['TIMESELECT_WEEKS'] = "Weeks";
	translations['TIMESELECT_MONTHS'] = "Months";
	translations['TIMESELECT_YEARS'] = "Years";
	translations['SHOW_FILTERS'] = "Show filters";
	translations['HIDE_FILTERS'] = "Hide filters";
	translations['HIDE_FILTERS'] = "Hide filters";
	translations['CONFIRM_DELETE'] = "You're about to delete 1 registry, continue?";
	translations['DELETE MULTIPLE'] = "You're about to delete multiple registries, continue?";
	translations['LOADING'] = "Loading...";
	translations['SWAP_LIST_UNSELECT_ALL'] = "<< unselect all";
	translations['SWAP_LIST_SELECT_ALL'] = "select all >>";
	translations['SWAP_LIST_SELECT'] = "select >>";
	translations['SWAP_LIST_UNSELECT'] = "<< unselect";
	translations['RESET_PASS'] = "You're about to reset 1 user password, continue?";
	translations['tables_switch_bool'] = "You're about to change the state of 1 item, continue?";
	translations['NO ITEMS SELECTED'] = "No items selected";
	translations['single_fancy_upload_delete_file'] = "Delete";
	translations['single_fancy_upload_cancel']="Cancel";
	translations['single_fancy_upload_error_max_filesize']="File <em>{name}</em> (<em>{size}</em>) is too big, the maximal file size is <em>{fileSizeMax}</em>.";
	translations['single_fancy_upload_retry_upload'] = "Retry";
	translations['single_fancy_upload_error_http_status'] = "Server returned HTTP-Status #{code}";
	translations['single_fancy_upload_attach'] = "Attach a file";
	translations['onlineedit.noteditable'] = "The selected element is not editable on-line.";
	if(!translations[key]) return key;
	return translations[key];
}