|
From: <fri...@us...> - 2009-05-29 13:09:49
|
Revision: 9795
http://zaf.svn.sourceforge.net/zaf/?rev=9795&view=rev
Author: friedelwolff
Date: 2009-05-29 13:09:40 +0000 (Fri, 29 May 2009)
Log Message:
-----------
Add simple ka- prefix for adjectives and relatives (like kakhulu, kabuhlungu, etc.
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-05-28 19:49:07 UTC (rev 9794)
+++ trunk/dict/zu/hunspell/zu_aff.py 2009-05-29 13:09:40 UTC (rev 9795)
@@ -692,6 +692,7 @@
### Adjectives and relatives ###
+ adjective.add_rule(affix="ka", morphology="ADJECTIVE")
for morpheme in adjective_prefixes:
adjective.add_rule(affix=morpheme, morphology="COPULATIVE")
for morpheme in adjective_prefixes_neg:
@@ -701,6 +702,7 @@
for morpheme in qualificative_adjective_prefixes_neg:
adjective.add_rule(affix=morpheme, morphology="NEG_RELATIVE/QUALIFICATIVE")
+ relative.add_rule(affix="ka", morphology="RELATIVE")
for morpheme in subject_morphemes:
relative.add_rule(affix=morpheme, morphology="COPULATIVE")
relative.add_rule(affix=add_semivowels("a"+morpheme), morphology="NEG_COPULATIVE")
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|