forked from tachyons/apertium-mal-eng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apertium-mal-eng.mal-eng.t3x
80 lines (72 loc) · 1.8 KB
/
apertium-mal-eng.mal-eng.t3x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?xml version="1.0" encoding="UTF-8"?>
<!-- -*- nxml -*- -->
<postchunk>
<section-def-cats>
<def-cat n="verb">
<cat-item name="verb"/>
<cat-item name="ആക്"/>
</def-cat>
<def-cat n="nom">
<cat-item name="nom"/>
</def-cat>
</section-def-cats>
<section-def-attrs>
<def-attr n="a_pers">
<attr-item tags="p1"/>
<attr-item tags="p2"/>
<attr-item tags="p3"/>
<attr-item tags="PD"/>
</def-attr>
<def-attr n="a_nbr">
<attr-item tags="sg"/>
<attr-item tags="pl"/>
<attr-item tags="ND"/>
</def-attr>
<def-attr n="a_temps">
<attr-item tags="pres"/>
<attr-item tags="past"/>
</def-attr>
<def-attr n="a_nom">
<attr-item tags="n"/>
<attr-item tags="np"/>
</def-attr>
</section-def-attrs>
<section-def-vars>
<def-var n="paraula"/>
<def-var n="person"/>
</section-def-vars>
<section-rules>
<rule comment="CHUNK: nom">
<pattern>
<pattern-item n="nom"/>
</pattern>
<action>
<out>
<lu>
<clip pos="1" part="whole"/>
</lu>
</out>
</action>
</rule>
<rule comment="CHUNK: verb">
<pattern>
<pattern-item n="verb"/>
</pattern>
<action>
<choose>
<when>
<test><not><and><equal><clip pos="1" part="a_nbr"/><lit-tag v="sg"/></equal>
<equal><clip pos="1" part="a_pers"/><lit-tag v="p3"/></equal></and></not></test>
<let><clip pos="1" part="a_nbr"/><lit v=""/></let>
<let><clip pos="1" part="a_pers"/><lit v=""/></let>
</when>
</choose>
<out>
<lu>
<clip pos="1" part="whole"/>
</lu>
</out>
</action>
</rule>
</section-rules>
</postchunk>