|
From: <fri...@us...> - 2009-01-15 15:49:21
|
Revision: 9663
http://zaf.svn.sourceforge.net/zaf/?rev=9663&view=rev
Author: friedelwolff
Date: 2009-01-15 15:49:09 +0000 (Thu, 15 Jan 2009)
Log Message:
-----------
Connective particle word 'na' and associative copulative (positive and negative)
Modified Paths:
--------------
trunk/dict/zu/hunspell/zu_aff.py
Modified: trunk/dict/zu/hunspell/zu_aff.py
===================================================================
--- trunk/dict/zu/hunspell/zu_aff.py 2009-01-15 15:39:12 UTC (rev 9662)
+++ trunk/dict/zu/hunspell/zu_aff.py 2009-01-15 15:49:09 UTC (rev 9663)
@@ -549,5 +549,12 @@
for morpheme in possesive_morphemes:
noun_rules(noun, affix=morpheme, morphology="POSSESSIVE")
+ #noun_rules(noun, affix="na", morphology="CONNECTIVE_PARTICLE_WORD", continuation_classes=[simple_subjects])
+ # ^ This is merged into the rule for associative copulatives, just for
+ # simplification. Uncomment the rule above, and put needaffix=True in for
+ # the following rule for more correct morphological analysis
+ noun_rules(noun, affix="na", morphology="ASSOCIATIVE_COPULATIVE", continuation_classes=[simple_subjects])
+ noun_rules(noun, affix="na", needaffix=True, morphology="NEG_ASSOCIATIVE_COPULATIVE", continuation_classes=[simple_subjects_neg])
+
print aff.hunspell()
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|