diff options
author | Jan Holesovsky <kendy@collabora.com> | 2016-02-25 13:58:25 +0100 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2016-02-25 13:59:26 +0100 |
commit | 68c702c5ed8876de74efb12fa11f6e40af61f664 (patch) | |
tree | a05857f09fb7467b6e21be1fe3e2c190d5e2ab16 | |
parent | 46febeac1b9d8e4edea5c9cbac327aa0e2c846ae (diff) |
dictionary-to-thesaurus.py: Actually use the Czech names.
Change-Id: Ifb47efe7562ca9ccc2324d4ebd966506cae2bec6
-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 '' |