

          translit inrange outrange string
               Translate characters in string matching characters in
               inrange to the corresponding character in outrange.
               Inrange and outrange may be list of characters or a
               range in the form `A-M'.
                   Example:
                       translit a-z A-Z foobar
                   returns
                       FOOBAR

