diff options
Diffstat (limited to 'cs_CZ')
-rwxr-xr-x | cs_CZ/thesaurus/dictionary-to-thesaurus.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cs_CZ/thesaurus/dictionary-to-thesaurus.py b/cs_CZ/thesaurus/dictionary-to-thesaurus.py index 8a0ae8a..d4974ed 100755 --- a/cs_CZ/thesaurus/dictionary-to-thesaurus.py +++ b/cs_CZ/thesaurus/dictionary-to-thesaurus.py @@ -37,13 +37,13 @@ def classify(typ): if typ == '': return '' elif typ == 'adj': - return '(adj)' + return '(příd. jm.)' elif typ == 'adv': - return '(adv)' + return '(přísl.)' elif typ == 'n': - return '(noun)' + return '(podst. jm.)' elif typ == 'v': - return '(verb)' + return '(slov.)' return '' |