From 68c702c5ed8876de74efb12fa11f6e40af61f664 Mon Sep 17 00:00:00 2001 From: Jan Holesovsky Date: Thu, 25 Feb 2016 13:58:25 +0100 Subject: dictionary-to-thesaurus.py: Actually use the Czech names. Change-Id: Ifb47efe7562ca9ccc2324d4ebd966506cae2bec6 --- cs_CZ/thesaurus/dictionary-to-thesaurus.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cs_CZ') 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 '' -- cgit