var language = [];
language["cancel"] = "Cancel";
language["choose_category_first"] = "Choose category first";
language["citation_error"] = "You can not quote more than 300 characters per quote (you have marked #1# characters).";
language["citation_info"] = "You must select the text you want to quote (max 300 characters per quote).";
language["confirm_comment_remove"] = "Are you sure you want to remove the comment?";
language["confirm_entries_remove_all"] = "Are you sure you want to remove #1# entries and all images?";
language["confirm_entries_remove"] = "Are you sure you want to remove #1# entries?";
language["confirm_entry_remove"] = "Are you sure you want to remove the entry?";
language["confirm_file_remove"] = "Are you sure you want to remove the file?";
language["confirm_image_remove"] = "Are you sure you want to remove the image?";
language["confirm_merge"] = "Are you sure you want to merge #1# entries?";
language["confirm_remove"] = "Are you sure you want to remove #1#?";
language["confirm_remove_thread_forever"] = "This will remove the thread, all replies, polls and replies. Are you sure you want to continue?";
language["confirm_thread_lock"] = "Are you sure you want to close the thread?";
language["confirm_thread_move"] = "This will move the thread to #1# Are you sure you want to continue?";
language["confirm_thread_remove"] = "This will remove the thread and all replies. Are you sure you want to continue?";
language["confirm_thread_reset"] = "This will recover the thread to forum #1#. Ok?";
language["confirm_thread_sticky"] = "Sticky thread?";
language["confirm_thread_unlock"] = "Unlock thread?";
language["confirm_thread_unsticky"] = "Unsticky thread?";
language["forum"] = "Forum";
language["invalid"] = "Invalid";
language["invalid_address"] = "invalid address";
language["invalid_email"] = "Invalid E-mailaddress";
language["latest"] = "Latest";
language["mark_error"] = "Invalid selection. Please make sure you have selected the correct text.";
language["merge_atleast_two"] = "You must select two or more replies to merge.";
language["no_category"] = "No category is selected.";
language["no_citation"] = "Your browser does not suppeot the quote function.";
language["no_comment_message"] = "The comment must be atleast 2 characters.";
language["no_forum"] = "You must select in which forum to post the thread.";
language["no_forum_headline"] = "Your thread must have a topic atleast 3 characters long.";
language["no_forum_message"] = "the entry must be atleast 5 characters.";
language["no_message"] = "You must write something in your message.";
language["no_move_forum"] = "You must select a forum to move to.";
language["no_search_message"] = "Your search must be atleast 5 characters.";
language["no_subject"] = "You must submit a topic.";

function gt(text)
{
	return language[text];
}

function gta(text, params)
{
	text = language[text];
  
  if (params.length)
  {
    for (var i = 0; i < params.length; i++)
    {      
      text = text.replace("#" + (i+1) + "#", params[i]);
    }   
  }
  
  return text;
}
