forked from apertium/apertium-lex-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapertium-no-en.no-en.lrx
126 lines (104 loc) · 3.07 KB
/
apertium-no-en.no-en.lrx
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<rules>
<!-- Likevel er det greit å ha en liten anelse om hva jeg vil gjøre videre. Nevertheless, it is nice to have a little inkling what I will do next. -->
<rule>
<or>
<match lemma="liten" tags="adj.*"/>
<match lemma="fjern" tags="adj.*"/>
</or>
<match lemma="anelse" tags="n.m.*">
<select lemma="inkling" tags="n.*"/>
</match>
</rule>
<!-- Det er en markant forskjell mellom de to. There is a marked difference between them. -->
<rule>
<or>
<match lemma="markant" tags="adj.*"/>
<match lemma="betydelig" tags="adj.*"/>
</or>
<match lemma="forskjell" tags="n.m.*">
<select lemma="difference" tags="n.*"/>
</match>
</rule>
<!-- Tyskland hadde ikke nok bevis til å arrestere ham. Germany did not have enough evidence to arrest him. -->
<rule>
<or>
<match lemma="teknisk" tags="adj.*"/>
<match lemma="nok" tags="*"/>
</or>
<match lemma="bevis" tags="n.*">
<select lemma="evidence" tags="n.*"/>
</match>
</rule>
<!-- Hvor finner jeg en lang kjole? Where do I find a long dress? -->
<rule>
<or>
<match lemma="lang" tags="adj.*"/>
<match lemma="vakker" tags="adj.*"/>
</or>
<match lemma="kjole" tags="n.m.*">
<select lemma="dress" tags="n.*"/>
</match>
</rule>
<!-- Det blir ikke god suppe av billig kjøtt. Cheap meat doesn't make a good soup. -->
<rule>
<or>
<match lemma="billig" tags="adj.*"/>
<match lemma="and" tags="n.*"/>
<match lemma="kylling" tags="n.m.*"/>
</or>
<match lemma="kjøtt" tags="n.*">
<select lemma="meat" tags="n.*"/>
</match>
</rule>
<!-- Vi er i samme klasse. We are in the same class. -->
<rule>
<or>
<match lemma="samme" tags="det.*"/>
<match lemma="morgen" tags="adj.*"/>
<match lemma="ettermiddag" tags="adj.*"/>
</or>
<match lemma="klasse" tags="n.*">
<select lemma="class" tags="n.*"/>
</match>
</rule>
<!-- Han har sterk kontroll over tidsplanen. He has strong control over the schedule. -->
<rule>
<or>
<match lemma="sterk" tags="adj.*"/>
<match lemma="ubegrenset" tags="adj.*"/>
</or>
<match lemma="kontroll" tags="n.m.*">
<select lemma="control" tags="n.*"/>
</match>
</rule>
<!-- Produktene er av god kvalitet. The products are of good quality. -->
<rule>
<or>
<match lemma="god" tags="adj.*"/>
<match lemma="darlig" tags="adj.*"/>
</or>
<match lemma="kvalitet" tags="n.m.*">
<select lemma="quality" tags="n.*"/>
</match>
</rule>
<!-- Somalia er i dag et av verdens mest konfliktfylte og farlig land. Today, Somalia is one of the world's most conflicted and dangerous countries. -->
<rule>
<or>
<match lemma="konfliktfylte" tags="*"/>
<match lemma="farlig" tags="adj.*"/>
</or>
<match lemma="land" tags="n.*">
<select lemma="country" tags="n.*"/>
</match>
</rule>
<!-- Nordmenn sutrer over for lav lønn. Norwegians whine over low pay. -->
<rule>
<or>
<match lemma="lav" tags="adj.*"/>
<match lemma="dårlig" tags="adj.*"/>
</or>
<match lemma="lønn" tags="n.f.*">
<select lemma="pay" tags="n.*"/>
</match>
</rule>
</rules>