|
From: <fri...@us...> - 2008-12-29 08:11:43
|
Revision: 9649
http://zaf.svn.sourceforge.net/zaf/?rev=9649&view=rev
Author: friedelwolff
Date: 2008-12-29 08:11:35 +0000 (Mon, 29 Dec 2008)
Log Message:
-----------
Limit the -zo- and -yo- future indicative prefixes to non-vowel verbs
Modified Paths:
--------------
trunk/dict/zu/hunspell/zu_aff.py
Modified: trunk/dict/zu/hunspell/zu_aff.py
===================================================================
--- trunk/dict/zu/hunspell/zu_aff.py 2008-12-26 16:55:40 UTC (rev 9648)
+++ trunk/dict/zu/hunspell/zu_aff.py 2008-12-29 08:11:35 UTC (rev 9649)
@@ -359,7 +359,7 @@
# This group will contain all the major subject morphemes
simple_subjects = aff.add_group(suffix=False, flag="s")
- # This group will contain plain positive indicate subject morphemes that
+ # This group will contain plain positive indicative subject morphemes that
# can combine with -ya-. This will duplicate some contents of main_subjects.
infixes = aff.add_group(suffix=False, flag="C")
@@ -406,9 +406,9 @@
verb_rules(infixes, affix="nga", needaffix=True, morphology="POTEN", continuation_classes=[main_subjects])
#indicative future tenses
- verb_rules(infixes, affix="zo", needaffix=True, morphology="NEAR_FUTURE_IND_SHORT", continuation_classes=[main_subjects])
+ verb_rules(infixes, affix="zo", condition="[^aeiou]", needaffix=True, morphology="NEAR_FUTURE_IND_SHORT", continuation_classes=[main_subjects])
verb_rules(infixes, affix="zoku", needaffix=True, morphology="NEAR_FUTURE_IND_LONG", continuation_classes=[main_subjects])
- verb_rules(infixes, affix="yo", needaffix=True, morphology="DISTANT_FUTURE_IND_SHORT", continuation_classes=[main_subjects])
+ verb_rules(infixes, affix="yo", condition="[^aeiou]", needaffix=True, morphology="DISTANT_FUTURE_IND_SHORT", continuation_classes=[main_subjects])
verb_rules(infixes, affix="yoku", needaffix=True, morphology="DISTANT_FUTURE_IND_LONG", continuation_classes=[main_subjects])
#-sa- + indicative future tenses
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|