blob: a6e5b6188a2bdf2c348f21fd1a0b06fe6bfcd843 [file] [log] [blame]
margaretha51e5e3f2018-10-17 15:10:03 +02001define(["hint/foundries","hint/foundries/stts"], function (ah, sttsArray) {
2 ah["-"].push(
3 ["MarMoT", "marmot/", "Morphology, Part-of-Speech"]
4 );
5
6 ah["marmot/"] = [
7 ["Morphology", "m="],
8 ["Part-of-Speech", "p="]
9 ];
10
11 ah["marmot/p="] = [
12 ["ADJA","ADJA ", "Attributive Adjective"],
13 ["ADJD","ADJD ", "Predicative Adjective"],
14 ["ADV","ADV ", "Adverb"],
15 ["APPO","APPO ", "Postposition"],
16 ["APPR","APPR ", "Preposition"],
17 ["APPRART","APPRART ", "Preposition with Determiner"],
18 ["APZR","APZR ","Right Circumposition"],
19 ["ART","ART ", "Determiner"],
20 ["CARD","CARD ", "Cardinal Number"],
21 ["FM","FM ", "Foreign Material"],
22 ["ITJ","ITJ ", "Interjection"],
23 ["KOKOM","KOKOM ", "Comparison Particle"],
24 ["KON","KON ", "Coordinating Conjuncion"],
25 ["KOUI","KOUI ", "Subordinating Conjunction with 'zu'"],
26 ["KOUS","KOUS ", "Subordinating Conjunction with Sentence"],
27 ["NE","NE ", "Named Entity"],
28 ["NN","NN ", "Normal Nomina"],
29 ["PAV", "PAV ", "Pronominal Adverb"],
30 ["PDAT","PDAT ","Attributive Demonstrative Pronoun"],
31 ["PDS","PDS ", "Substitutive Demonstrative Pronoun"],
32 ["PIAT","PIAT ", "Attributive Indefinite Pronoun without Determiner"],
33 ["PIDAT","PIDAT ", "Attributive Indefinite Pronoun with Determiner"],
34 ["PIS","PIS ", "Substitutive Indefinite Pronoun"],
35 ["PPER","PPER ", "Personal Pronoun"],
36 ["PPOSAT","PPOSAT ", "Attributive Possessive Pronoun"],
37 ["PPOSS","PPOSS ", "Substitutive Possessive Pronoun"],
38 ["PRELAT","PRELAT ", "Attributive Relative Pronoun"],
39 ["PRELS","PRELS ", "Substitutive Relative Pronoun"],
40 ["PRF","PRF ", "Reflexive Pronoun"],
41 ["PROAV","PROAV ", "Pronominal Adverb"],
42 ["PTKA","PTKA ","Particle with Adjective"],
43 ["PTKANT","PTKANT ", "Answering Particle"],
44 ["PTKNEG","PTKNEG ", "Negation Particle"],
45 ["PTKVZ","PTKVZ ", "Separated Verbal Particle"],
46 ["PTKZU","PTKZU ", "'zu' Particle"],
47 ["PWAT","PWAT ", "Attributive Interrogative Pronoun"],
48 ["PWAV","PWAV ", "Adverbial Interrogative Pronoun"],
49 ["PWS","PWS ", "Substitutive Interrogative Pronoun"],
50 ["TRUNC","TRUNC ","Truncated"],
51 ["VAFIN","VAFIN ", "Auxiliary Finite Verb"],
52 ["VAIMP","VAIMP ", "Auxiliary Finite Imperative Verb"],
53 ["VAINF","VAINF ", "Auxiliary Infinite Verb"],
54 ["VAPP","VAPP ", "Auxiliary Perfect Participle"],
55 ["VMFIN","VMFIN ", "Modal Finite Verb"],
56 ["VMINF","VMINF ", "Modal Infinite Verb"],
57 ["VMPP","VMPP ", "Modal Perfect Participle"],
58 ["VVFIN","VVFIN ","Finite Verb"],
59 ["VVIMP","VVIMP ", "Finite Imperative Verb"],
60 ["VVINF","VVINF ", "Infinite Verb"],
61 ["VVIZU","VVIZU ", "Infinite Verb with 'zu'"],
62 ["VVPP","VVPP ", "Perfect Participle"],
63 ["XY", "XY ", "Non-Word"]
64 ];
65
66 ah["marmot/m="] = [
67 ["Case", "case:"],
68 ["Degree", "degree:"],
69 ["Gender", "gender:"],
70 ["Mood", "mood:"],
71 ["Number", "number:"],
72 ["Person", "person:"],
73 ["Tense","tense:"],
74 ["No type", "<no-type> "]
75 ];
76
77 ah["marmot/m=case:"] = [
78 ["acc", "acc ", "Accusative"],
79 ["dat","dat ", "Dative"],
80 ["gen", "gen ","Genitive"],
81 ["nom","nom ", "Nominative"],
82 ["*","* ", "Undefined"]
83 ];
84
85 ah["marmot/m=degree:"] = [
86 ["comp","comp ", "Comparative"],
87 ["pos","pos ", "Positive"],
88 ["sup","sup ", "Superative"]
89 ];
90
91 ah["marmot/m=gender:"] = [
92 ["fem", "fem ", "Feminium"],
93 ["masc", "masc ", "Masculinum"],
94 ["neut","neut ", "Neuter"],
95 ["*","* ","Undefined"]
96 ];
97
98 ah["marmot/m=mood:"] = [
99 ["imp","imp ", "Imperative"],
100 ["ind","ind ", "Indicative"],
101 ["subj","subj ", "Subjunctive"]
102 ];
103
104 ah["marmot/m=number:"] = [
105 ["pl","pl ","Plural"],
106 ["sg","sg ","Singular"],
107 ["*","* ","Undefined"]
108 ];
109
110 ah["marmot/m=person:"] = [
111 ["1","1 ", "First Person"],
112 ["2","2 ", "Second Person"],
113 ["3","3 ", "Third Person"]
114 ];
115
116 ah["marmot/m=tense:"] = [
117 ["past","past ", "Past"],
118 ["pres","pres ", "Present"]
119 ];
120});