|
From: <fri...@us...> - 2008-12-24 05:56:57
|
Revision: 9637
http://zaf.svn.sourceforge.net/zaf/?rev=9637&view=rev
Author: friedelwolff
Date: 2008-12-24 05:56:55 +0000 (Wed, 24 Dec 2008)
Log Message:
-----------
Indicative, present, negative with subject morpheme only
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-24 05:55:34 UTC (rev 9636)
+++ trunk/dict/zu/hunspell/zu_aff.py 2008-12-24 05:56:55 UTC (rev 9637)
@@ -365,9 +365,11 @@
locative_sfx = aff.add_group(suffix=True, flag="M")
# This group will contain rules for locative suffixes
- #main_subjects.add_rule(affix="angi", morphology="1st_person_NEG", needaffix=True, circumfix=True, continuation_classes=[negative_indicative])
for morpheme in subject_morphemes:
main_subjects.add_rule(affix=morpheme, continuation_classes=[past_indicative, question])
+ main_subjects.add_rule(affix=add_semivowels("a"+morpheme), needaffix=True, circumfix=True, continuation_classes=[negative_indicative])
+ # We handle class 1 negative separately:
+ main_subjects.add_rule(affix="aka", needaffix=True, circumfix=True, continuation_classes=[negative_indicative])
simple_subjects.add_rule(affix="ngi", morphology="1st_person_flag_s")
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|