in cs_CZ/thesaurus/dictionary-to-thesaurus.py [0:0]
def classify(typ):
if typ == '':
return ''
elif typ == 'adj':
return '(příd. jm.)'
elif typ == 'adv':
return '(přísl.)'
elif typ == 'n':
return '(podst. jm.)'
elif typ == 'v':
return '(slov.)'
return ''