# these tables are used to change url characters # one character from 'url_original' table at a specific position # will be translated to one character from 'url_changeto' at the same position url_original = "ąćęłńóśźżĄĆĘŁŃÓŚŹŻ" url_changeto = "acelnoszzacelnoszz" # these tables are used to change from small to capital letters # ASCII characters (a-z, A-Z) are tested beforehand # so these tables are not used for such characters smallleters = "ąćęłńóśźż" capitalics = "ĄĆĘŁŃÓŚŹŻ"