|
From: <fri...@us...> - 2009-05-26 10:56:00
|
Revision: 9770
http://zaf.svn.sourceforge.net/zaf/?rev=9770&view=rev
Author: friedelwolff
Date: 2009-05-26 10:55:30 +0000 (Tue, 26 May 2009)
Log Message:
-----------
Support using relative/qualificative prefixes with copulative locatives
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-25 22:50:59 UTC (rev 9769)
+++ trunk/dict/zu/hunspell/zu_aff.py 2009-05-26 10:55:30 UTC (rev 9770)
@@ -611,6 +611,11 @@
locative_rules(locative_e_ini, affix=prefix, morphology="POSSESSIVE+LOC_pfx", circumfix=True, continuation_classes=[locative_sfx_ini])
verb_rules(infixes, affix=prefix+"ku", morphology="POSSESSIVE+LOC_pfx+INFINITIVE", circumfix=True, continuation_classes=[locative_sfx_ini])
+ for prefix in [morpheme + "se" for morpheme in qualificative_prefixes]:
+ locative_rules(locative_e, affix=prefix, morphology="RELATIVE/QUALIFICATIVE+COPULATIVE+LOC_pfx")
+ locative_rules(locative_e_ini, affix=prefix, morphology="RELATIVE/QUALIFICATIVE+COPULATIVE+LOC_pfx", circumfix=True, continuation_classes=[locative_sfx_ini])
+ verb_rules(infixes, affix=prefix+"ku", morphology="RELATIVE/QUALIFICATIVE+COPULATIVE+LOC_pfx+INFINITIVE", circumfix=True, continuation_classes=[locative_sfx_ini])
+
locative_o_ini.add_rule(affix="o", strip="u", morphology="LOC_pfx", circumfix=True, continuation_classes=[locative_sfx_ini])
locative_ku.add_rule(affix="ku", strip="a", morphology="LOC_pfx")
locative_ku.add_rule(affix="ku", strip="u", morphology="LOC_pfx")
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|