|
From: <fri...@us...> - 2009-01-15 16:30:59
|
Revision: 9666
http://zaf.svn.sourceforge.net/zaf/?rev=9666&view=rev
Author: friedelwolff
Date: 2009-01-15 16:30:46 +0000 (Thu, 15 Jan 2009)
Log Message:
-----------
comparative particles. Need to see if we can have some negatives and possibly other extentions such as -sa-
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 16:18:05 UTC (rev 9665)
+++ trunk/dict/zu/hunspell/zu_aff.py 2009-01-15 16:30:46 UTC (rev 9666)
@@ -566,5 +566,13 @@
noun_rules(noun, affix="wu", contition="[ou]", morphology="IDENTIFICATIVE_COPULATIVE", continuation_classes=[simple_subjects])
noun_rules(noun, affix="wu", contition="[ou]", needaffix=True, morphology="NEG_IDENTIFICATIVE_COPULATIVE", continuation_classes=[simple_subjects_neg])
+ # comparative particle words
+ noun_rules(noun, affix="njenga", morphology="COMPARATIVE_PARTICLE")
+ noun_rules(noun, affix="nganga", needaffix=True, morphology="COMPARATIVE_PARTICLE", continuation_classes=[simple_subjects])
+ # confirm ^^
+ # negative? -sa- ?
+ noun_rules(noun, affix="kwa", morphology="COMPARATIVE_PARTICLE")
+ # ^^^This duplicates a the possessive with class 15, so we could leave it out for performance
+
print aff.hunspell()
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|