var lang_name = new Array();
var lang_text = new Array();

/*
	'0' => 'decode_entities',
	'1' => 'parse_whitespace',
	'2' => 'show_whitespace',
	'3' => 'do_split',
	'4' => 'empty_replace',
	'5' => 'no_match',
	'6' => 'multiline_pattern',
	'7' => 'full_subject',
	'8' => 'keep_subject',
*/

lang_name[0] = "Parse HTML Entities";
lang_text[0] = "Decodes all HTML entities in input into characters they represent.";

lang_name[1] = "Parse Whitespace";
lang_text[1] = "All whitespace escape sequences (\\r, \\n and \\t) are turned into appropriate characters.";

lang_name[2] = "Show Whitespace";
lang_text[2] = "Shows whitespace in output using special bolded characters and sequences.";

lang_name[3] = "Split";
lang_text[3] = "Splits the text according to the given match and shows the resulted array.";

lang_name[4] = "Empty Replace";
lang_text[4] = "Use empty string as replacement. Otherwise, if is replace left empty no replacing is performed.";

lang_name[5] = "Don't Match";
lang_text[5] = "Don't perform regular expression matching. Useful when you are only interested in results of replace or split.";

lang_name[6] = "Multiline Patterns";
lang_text[6] = "Pattern and Replace fields are turned into &lt;textarea&gt; elements to allow multiple lines.";

lang_name[7] = "Full Subject";
lang_text[7] = "Print out the entire subject here. Otherwise, only first 5kb is printed. Parts that are not displayed can not be highlighted.";

lang_name[8] = "Keep Subject";
lang_text[8] = "Keeps the subject in the editing field after saving. Useful when you need to keep editing subject.";