# ============================================================================= # taxon_name_corr.lst - Correction list for taxon_name component # # Source: - # Last update: 20/12/2006, Andreas Müller # # Entries in the file are of the form: # # replacement := values # # where 'values' can be one word or character or a comma separated list of # words or characters. Each value will be replaced by the 'replacement' # string on the left side. # Both the replacement string and each of the value strings must be enclosed # in either single or double quotes. # ============================================================================= # Remove characters and words from input 'ens' := 'iens' 'ean' := 'ian' 'man' := 'mann' 'm' := 'nn' 's' := 'ss' 'ti' := 'ci' 'l' := 'll','r','t','th' 'ium' := 'eum' 'e' := 'ae','is','ia','us','or' 'a' := 'ha','us','um','on' 'i' := 'ii','j','y','ei' 'v' := 'ff','w','u','n' 'ae' := 'ö','oe','ä' 'ea' := 'aea','es' 'ue' := 'ü' 'di' := 'bi' 'o' := 'oi' 's' := 'z','c','k' 'q' := 'g' '' := '?', '~', '_', ':', ';', '^', '=', '*' # Correct words and symbols # ' and ' := '+', '&' # ' baby ' := ' babe ' # Remove ' from o'brian etc # ' o' := " o'" # ' a' := " a'" # Correct roman numbers # ' i ' := ' first ' # ' ii ' := ' second ' # ' iii ' := ' third ' ###original replacements: ###Remove characters and words from input # 'ens' := 'iens' # 'ean' := 'ian' # 'man' := 'mann' # 'v' := 'ff','w','u' # 'ae' := 'oe' # 'di' := 'bi' # 'ti' := 'ci' # 'um' := 'on' # 'i' := 'ii','j','y' # 't' := 'th' # 'e' := 'ae','is' # 'o' := 'oi' # 'a' := 'ha','us','um' # 'c' := 'z' # '' := '?', '~', '_', ':', ';', '^', '=', '*'