Coverage for src/wiktextract/extractor/en/inflectiondata.py: 79%
54 statements
« prev ^ index » next coverage.py v7.9.0, created at 2025-06-13 07:43 +0000
« prev ^ index » next coverage.py v7.9.0, created at 2025-06-13 07:43 +0000
1# -*- fundamental -*-
2#
3# Data for parsing inflection tables
4#
5# Copyright (c) 2021, 2022 Tatu Ylonen. See file LICENSE and https://ylonen.org
7# mypy: disable-error-code = literal-required
9import re
10from typing import TypedDict, Union
12from ...tags import head_final_numeric_langs, valid_tags
13from .parts_of_speech import PARTS_OF_SPEECH
15# Languages where possessive forms (e.g. pronouns) inflect according to the
16# gender/number of the possessed object(s)
17POSSESSIVE_POSSESSED_LANGS = set(
18 [
19 "Azerbaijani",
20 "Danish",
21 "Faroese",
22 "Icelandic",
23 "Kumyk",
24 "Norwegian Bokmål",
25 "Norwegian Nynorsk",
26 "Quechua",
27 "Swedish",
28 "Uyghur",
29 "Turkish",
30 ]
31)
33# Languages that have numbered infinitives (infinitive-i etc)
34LANGS_WITH_NUMBERED_INFINITIVES = set(
35 [
36 "Finnish",
37 "Ingrian",
38 "Veps",
39 "Northern Sami",
40 "Proto-Samic",
41 "Skolt Sami",
42 "Lule Sami",
43 "Inari Sami",
44 "Pite Sami",
45 ]
46)
49# Inflection map for parsing headers in tables.
51# When the parser encounters a header in a table, it checks here for a key, like
52# "plural". Then if that key leads to a string, or a list or tuple of strings,
53# it uses those tag strings as the tags for that header. If it encounters a
54# dict, it recursively uses entries in the dict to perform simple if-then-else
55# control flow.
56# "default": default tag string or list; propagates to lower levels
57# "then": follow this if "if", "lang" and "pos" are all true
58# "if": if the current header already has some tags, check if it has these ones
59# "lang": is the current language equal to string or in a list of strings
60# "pos": is the current PART OF SPEECH equal to string or in a list of strings
61# "nested-table-depth": is the current depth of nested tables, and only tables.
62# Only in scope from handle_wikitext_table() onwards and not stored for anything
63# else.
66InflMapNode = Union[str, list[str], "InflMapNodeDict"]
68InflMapNodeDict = TypedDict(
69 "InflMapNodeDict",
70 {
71 "lang": Union[str, set[str], list[str]],
72 "pos": Union[str, set[str], list[str]],
73 "inflection-template": Union[str, list[str], tuple[str, ...]],
74 "nested-table-depth": Union[int, list[int]],
75 "default": str,
76 "if": str,
77 "then": InflMapNode,
78 "else": InflMapNode,
79 },
80 total=False,
81)
83infl_map: dict[str, InflMapNode] = {
84 "plural": {
85 "default": "plural",
86 "if": "possessive",
87 "lang": POSSESSIVE_POSSESSED_LANGS,
88 "then": "possessed-many",
89 "else": {
90 "if": "combined-form",
91 "then": "object-plural",
92 },
93 },
94 "singular": {
95 "default": "singular",
96 "if": "possessive",
97 "lang": POSSESSIVE_POSSESSED_LANGS,
98 "then": "possessed-single",
99 "else": {
100 "if": "combined-form",
101 "then": "object-singular",
102 "else": "singular",
103 },
104 },
105 "accusative": "accusative",
106 "dative": "dative",
107 "instrumental": "instrumental",
108 "ablative": "ablative",
109 "illative": "illative",
110 "elative": "elative",
111 "adessive": "adessive",
112 "allative": "allative",
113 "possessor": "possessive",
114 "vocative": "vocative",
115 "Singular": "singular",
116 "instructive": "instructive",
117 "Plural": "plural",
118 "1st person": {
119 "if": "combined-form",
120 "then": "object-first-person",
121 "else": "first-person",
122 },
123 "2nd person": {
124 "if": "combined-form",
125 "then": "object-second-person",
126 "else": "second-person",
127 },
128 "3rd person": {
129 "if": "combined-form",
130 "then": "object-third-person",
131 "else": "third-person",
132 },
133 "1st - Singular": "first-person singular",
134 "2nd - Singular": "second-person singular",
135 "3rd - Singular Masculine": "third-person singular masculine",
136 "3rd - Singular Feminine": "third-person singular feminine",
137 "3rd - Singular Neuter": "third-person singular neuter",
138 "1st - Plural": "first-person plural",
139 "2nd - Plural": "second-person plural",
140 "3rd - Plural": "third-person plural",
141 "2nd - Polite": "second-person polite",
142 "1st infinitive": "infinitive infinitive-i",
143 "2nd infinitive": "infinitive infinitive-ii",
144 "3rd infinitive": "infinitive infinitive-iii",
145 "1 sg": "first-person singular",
146 "2 sg": "second-person singular",
147 "3 sg": "third-person singular",
148 "1 pl": "first-person plural",
149 "2 pl": "second-person plural",
150 "3 pl": "third-person plural",
151 "nom.": "nominative",
152 "gen.": "genitive",
153 "Nominative": "nominative",
154 "Genitive": "genitive",
155 "Dative": "dative",
156 "Vocative": "vocative",
157 "Accusative": "accusative",
158 "feminine": {
159 "if": "possessive",
160 "lang": POSSESSIVE_POSSESSED_LANGS,
161 "then": "possessed-feminine",
162 "else": "feminine",
163 },
164 "neuter": {
165 "if": "possessive",
166 "lang": POSSESSIVE_POSSESSED_LANGS,
167 "then": "possessed-neuter",
168 "else": "neuter",
169 },
170 "Ablative": "ablative",
171 "imperative": "imperative",
172 "causal-final": "causal-final",
173 "essive-formal": "essive-formal",
174 "essive-modal": "essive-modal",
175 "superessive": "superessive",
176 "sublative": "sublative",
177 "delative": "delative",
178 "non-attributive possessive - singular":
179 "predicative possessive possessed-single", # XXX hűtő/Hungarian/Noun
180 "non-attributive possessive - plural":
181 "predicative possessive possessed-single",
182 "infinitive": "infinitive",
183 "prepositional": "prepositional",
184 "masculine": {
185 "if": "possessive",
186 "lang": POSSESSIVE_POSSESSED_LANGS,
187 "then": "possessed-masculine",
188 "else": "masculine",
189 },
190 "error-unrecognized-form": "error-unrecognized-form", # internal use
191 "active": "active",
192 "passive": "passive",
193 "Case": "*", # Interpret the column as headers (e.g., anglais/Irish)
194 "participles": "participle",
195 "Participles": "participle",
196 "PARTICIPLES (divdabji)": "participle",
197 "Present forms": "present",
198 "Transgressives": "transgressive",
199 "past tense": "past",
200 "Positive participial": "positive participle",
201 "Negative participial": "negative participle",
202 "present tense": "present",
203 "future tense": "future",
204 "Neuter": "neuter",
205 # "Masculine": "masculine",
206 "Feminine": "feminine",
207 "adverbial": "adverbial",
208 "1st singular (я)": "first-person singular",
209 "2nd singular (ты)": "second-person singular",
210 "3rd singular (он/она́/оно́)": "third-person singular",
211 "1st plural (мы)": "first-person plural",
212 "2nd plural (вы)": "second-person plural",
213 "3rd plural (они́)": "third-person plural",
214 "plural (мы/вы/они́)": "plural",
215 "masculine (я/ты/он)": "masculine",
216 "feminine (я/ты/она́)": "feminine",
217 "neuter (оно́)": "neuter",
218 "feminine + neuter singular": "feminine neuter singular",
219 "1st person plural": "first-person plural",
220 "2nd person plural": "second-person plural",
221 "3rd person plural": "third-person plural",
222 "single possession": "possessive possessed-single",
223 "multiple possessions": "possessive possessed-many",
224 "1st person sing.": "first-person singular",
225 "2nd person sing.": "second-person singular",
226 "2nd person sing. (u)": "second-person singular formal",
227 "2nd person sing. (gij)": [
228 "second-person singular archaic " "formal majestic",
229 "second-person singular colloquial Flanders",
230 ],
231 "3rd person sing.": "third-person singular",
232 "2d person sing.": "second-person singular",
233 "3d sing. masc.": "third-person singular masculine",
234 "3d sing. fem.": "third-person singular feminine",
235 "1st person pl.": "first-person plural",
236 "2d person pl.": "second-person plural",
237 "3d person pl.": "third-person plural",
238 "First": "first-person",
239 "Second": "second-person",
240 "Third": "third-person",
241 "Case / Gender": "",
242 "masculine inanimate": "masculine inanimate",
243 "Infinitive": "infinitive",
244 "Past indicative": "past indicative",
245 "Past participle": "past participle",
246 "Past participles": "past participle",
247 "past participle plural": "past participle plural",
248 "Passive participles": "passive participle",
249 "Present participle": "present participle",
250 "present participle/gerund": "present participle",
251 "1st person sg": "first-person singular",
252 "2nd person sg informal": "second-person singular informal",
253 "3rd person sg 2nd p. sg formal": [
254 "third-person singular",
255 "third-person singular formal second-person-semantically",
256 ],
257 "1st person pl": "first-person plural",
258 "3rd person pl 2nd p. pl formal": [
259 "third-person plural",
260 "third-person plural formal second-person-semantically",
261 ],
262 "Indicative mood": "indicative",
263 "Present": "present",
264 "Indef.": {
265 "lang": "Hungarian",
266 "then": "object-indefinite",
267 "else": "indefinite",
268 },
269 "Def.": {
270 "lang": "Hungarian",
271 "then": "object-definite",
272 "else": "definite",
273 },
274 "2nd-p. o.": "object-second-person",
275 "m verbs conjugated according to third person sg. er": "third-person singular",
276 "m verbs conjugated according to 3nd person sg. er": "third-person singular",
277 "verbs conjugated according to 2nd person pl. ihr": "second-person plural",
278 "verbs conjugated according to 3rd person pl. sie": "second-person plural",
279 "2nd person plural (familiar)": "second-person plural familiar",
280 "2nd person sg. or pl. (polite)": "second-person singular plural polite",
281 "2nd person sg. or pl. (elevated²)": "second-person singular plural polite archaic",
282 "Conditional mood": "conditional",
283 "Subjunctive mood": "subjunctive",
284 "Other nonfinite verb forms": {
285 "lang": "Hungarian",
286 "then": "",
287 "else": "dummy-mood",
288 },
289 "Verbal noun": "noun-from-verb",
290 "Future part.": "future participle",
291 "Future I": "future future-i",
292 "Future II": "future future-ii",
293 "Adverbial part.": "adverbial participle",
294 "Potential": "potential",
295 "potential": "potential",
296 "present": "present",
297 "virile": "virile",
298 "nonvirile": "nonvirile",
299 "case": "",
300 "nominative, vocative": "nominative vocative",
301 "indefinite": "indefinite",
302 "masculine personal/animate": {
303 "lang": "Polish",
304 "then": "masculine animate",
305 "else": "masculine personal animate",
306 },
307 "perfective aspect": "perfective",
308 "definite": "definite",
309 "animate": "animate",
310 "inanimate": "inanimate",
311 "Dual": "dual",
312 "indicative": "indicative",
313 "subjunctive": "subjunctive",
314 "person": {
315 "default": "person",
316 "lang": "Polish",
317 "then": "", # Needs to be empty for mówić/Polish
318 },
319 "Forms with the definite article": "definite",
320 "Forms with the definite article:": "definite",
321 "indefinite articulation": "indefinite",
322 "definite articulation": "definite",
323 "nominative/accusative": "nominative accusative",
324 "genitive/dative": "genitive dative",
325 "imperfective aspect": "imperfective",
326 "future": "future",
327 "Immediate future": "future future-near",
328 "Remote future": "future future-remote",
329 "Comparative": "comparative",
330 "Superlative": "superlative",
331 "perfect": "perfect",
332 "gerund": "gerund",
333 "first": "first-person",
334 "second": "second-person",
335 "third": "third-person",
336 "imperfect": "imperfect",
337 "infinitives": "infinitive",
338 "conditional": "conditional",
339 "pluperfect": "pluperfect",
340 # XXX These need to be better structured, but I don't know where these
341 # are from (see e.g. cois/Irish)
342 "Bare forms": "indefinite",
343 "Bare forms:": "",
344 "past": "past",
345 "1st": {
346 "default": "first-person",
347 "lang": LANGS_WITH_NUMBERED_INFINITIVES,
348 "if": "infinitive",
349 "then": "infinitive-i",
350 "else": {"lang": "Swahili", "then": "first-person"},
351 },
352 "2nd": {
353 "default": "second-person",
354 "lang": LANGS_WITH_NUMBERED_INFINITIVES,
355 "if": "infinitive",
356 "then": "infinitive-ii",
357 "else": {"lang": "Swahili", "then": "second-person"},
358 },
359 "3rd": {
360 "default": "third-person",
361 "lang": LANGS_WITH_NUMBERED_INFINITIVES,
362 "if": "infinitive",
363 "then": "infinitive-iii",
364 },
365 "4th": {
366 "default": "fourth-person",
367 "lang": LANGS_WITH_NUMBERED_INFINITIVES,
368 "if": "infinitive",
369 "then": "infinitive-iv",
370 },
371 "5th": {
372 "lang": LANGS_WITH_NUMBERED_INFINITIVES,
373 "if": "infinitive",
374 "then": "infinitive-v",
375 },
376 "Case / #": "",
377 # XXX needs special handling ['-льник', '-овка', '-ник']
378 "accusative animate inanimate": "accusative animate inanimate",
379 "negative": "negative",
380 "past participle": "past participle",
381 "indicative mood": "indicative",
382 "nominative/ accusative": "nominative accusative",
383 "genitive/ dative": "genitive dative",
384 "Positive": "positive",
385 "short form": "short-form",
386 "Short past participle": "past participle short-form",
387 "Long past participle": "past participle long-form",
388 "positive": "positive",
389 "1st sing.": "first-person singular",
390 "2nd sing.": "second-person singular",
391 "3rd sing.": "third-person singular",
392 "1st plur.": "first-person plural",
393 "2nd plur.": "second-person plural",
394 "3rd plur.": "third-person plural",
395 "conditional mood": "conditional",
396 "imperative mood": "imperative",
397 "potential mood": "potential",
398 "Nominal forms": "dummy-reset-headers", # Reset column inheritance
399 "long 1st": "infinitive-i-long",
400 "I": {
401 "lang": LANGS_WITH_NUMBERED_INFINITIVES,
402 "if": "infinitive",
403 "then": "infinitive-i",
404 "else": {
405 "lang": "Czech", # podnikat/Czech
406 "then": "first-person singular",
407 "else": {
408 "lang": "Komi-Zyrian", # ань/Komi-Zyrian
409 "if": "accusative",
410 "then": "accusative-i",
411 "else": {
412 "lang": "Komi-Zyrian",
413 "if": "prolative",
414 "then": "prolative-i",
415 "else": {
416 "lang": "Avar",
417 "if": "locative",
418 "then": "locative-i",
419 "else": {
420 "lang": "Avar",
421 "if": "allative",
422 "then": "allative-i",
423 "else": {
424 "lang": "Avar",
425 "if": "ablative",
426 "then": "ablative-i",
427 "else": {
428 "lang": "Avar",
429 "if": "translative",
430 "then": "translative-i",
431 },
432 },
433 },
434 },
435 },
436 },
437 },
438 },
439 "long I": {
440 "lang": LANGS_WITH_NUMBERED_INFINITIVES,
441 "if": "infinitive",
442 "then": "infinitive-i-long",
443 },
444 "II": {
445 "lang": LANGS_WITH_NUMBERED_INFINITIVES,
446 "if": "infinitive",
447 "then": "infinitive-ii",
448 "else": {
449 "lang": "Komi-Zyrian", # ань/Komi-Zyrian
450 "if": "accusative",
451 "then": "accusative-ii",
452 "else": {
453 "lang": "Komi-Zyrian",
454 "if": "prolative",
455 "then": "prolative-ii",
456 "else": {
457 "lang": "Avar",
458 "if": "locative",
459 "then": "locative-ii",
460 "else": {
461 "lang": "Avar",
462 "if": "allative",
463 "then": "allative-ii",
464 "else": {
465 "lang": "Avar",
466 "if": "ablative",
467 "then": "ablative-ii",
468 "else": {
469 "lang": "Avar",
470 "if": "translative",
471 "then": "translative-ii",
472 },
473 },
474 },
475 },
476 },
477 },
478 },
479 "III": {
480 "lang": LANGS_WITH_NUMBERED_INFINITIVES,
481 "if": "infinitive",
482 "then": "infinitive-iii",
483 "else": {
484 "lang": "Avar",
485 "if": "locative",
486 "then": "locative-iii",
487 "else": {
488 "lang": "Avar",
489 "if": "allative",
490 "then": "allative-iii",
491 "else": {
492 "lang": "Avar",
493 "if": "ablative",
494 "then": "ablative-iii",
495 "else": {
496 "lang": "Avar",
497 "if": "translative",
498 "then": "translative-iii",
499 },
500 },
501 },
502 },
503 },
504 "IV": {
505 "lang": LANGS_WITH_NUMBERED_INFINITIVES,
506 "if": "infinitive",
507 "then": "infinitive-iv",
508 "else": {
509 "lang": "Avar",
510 "if": "locative",
511 "then": "locative-iv",
512 "else": {
513 "lang": "Avar",
514 "if": "allative",
515 "then": "allative-iv",
516 "else": {
517 "lang": "Avar",
518 "if": "ablative",
519 "then": "ablative-iv",
520 "else": {
521 "lang": "Avar",
522 "if": "translative",
523 "then": "translative-iv",
524 },
525 },
526 },
527 },
528 },
529 "V": {
530 "lang": LANGS_WITH_NUMBERED_INFINITIVES,
531 "if": "infinitive",
532 "then": "infinitive-v",
533 "else": {
534 "lang": "Avar",
535 "if": "locative",
536 "then": "locative-v",
537 "else": {
538 "lang": "Avar",
539 "if": "allative",
540 "then": "allative-v",
541 "else": {
542 "lang": "Avar",
543 "if": "ablative",
544 "then": "ablative-v",
545 "else": {
546 "lang": "Avar",
547 "if": "translative",
548 "then": "translative-v",
549 },
550 },
551 },
552 },
553 },
554 "agent": "agent",
555 "Plural (m/f)": "plural masculine feminine",
556 "(strong noun)": "strong",
557 "(weak noun)": "weak",
558 "Weak conjugation": "weak",
559 "Strong conjugation": "strong",
560 "Masc./Fem.": "masculine feminine",
561 "present participle": "present participle",
562 "number case / gender": "",
563 "Case/Gender": "",
564 "Derived forms": "",
565 "Adverb": "adverbial",
566 "augmentative": "augmentative",
567 "diminutive": "diminutive",
568 "singular (vienaskaita)": "singular",
569 "plural (daugiskaita)": "plural",
570 "nominative (vardininkas)": "nominative",
571 "genitive (kilmininkas)": "genitive",
572 "dative (naudininkas)": "dative",
573 "accusative (galininkas)": "accusative",
574 "instrumental (įnagininkas)": "instrumental",
575 "locative (vietininkas)": "locative",
576 "vocative (šauksmininkas)": "vocative",
577 "ie": {
578 "lang": "Dutch",
579 "pos": "verb",
580 "if": "third-person singular",
581 "then": "third-person singular",
582 "else": {
583 "lang": [
584 "Middle French",
585 "Old Occitan",
586 "Ladin",
587 ],
588 "pos": "verb",
589 "if": "first-person singular",
590 "then": "first-person singular",
591 },
592 },
593 "io": {
594 "lang": [
595 "Aromanian",
596 "Interlingua",
597 "Istro-Romanian",
598 "Italian",
599 "Neapolitan",
600 ],
601 "pos": ["verb", "suffix"], # -urre/Italian; Added Italian entries
602 "if": "first-person singular",
603 "then": "first-person singular",
604 },
605 "tu": {
606 "lang": [
607 "Aromanian",
608 "Asturian",
609 "Catalan",
610 "French",
611 "Friulian",
612 "Gallurese",
613 "Gaulish",
614 "Ido",
615 "Interlingua",
616 "Italian",
617 "Kalasha",
618 "Kalo Finnish Romani",
619 "Ladino",
620 "Latgalian",
621 "Latin",
622 "Latvian",
623 "Lithuanian",
624 "Middle French",
625 "Mirandese",
626 "Neapolitan",
627 "Northern Kurdish",
628 "Old French",
629 "Occitan",
630 "Old Irish",
631 "Old Portuguese",
632 "Phalura",
633 "Portuguese",
634 "Romani",
635 "Romanian",
636 "Sassarese",
637 "Savi",
638 "Scottish Gaelic",
639 "Sicilian",
640 "Sinte Romani",
641 "Sudovian",
642 "Tarantino",
643 "Tocharian A",
644 "Welsh Romani",
645 ],
646 "pos": ["verb", "suffix"],
647 "then": "second-person",
648 "else": {
649 "lang": "Ladin",
650 "then": "second-person singular",
651 },
652 },
653 "lui/lei, esso/essa": {
654 "lang": "Italian",
655 "pos": ["verb", "suffix"],
656 "if": "third-person singular",
657 "then": "third-person singular",
658 },
659 "lui/lei": { # calere/Italian
660 "lang": "Italian",
661 "pos": ["verb", "suffix"],
662 "if": "third-person singular",
663 "then": "third-person singular",
664 },
665 "noi": {
666 "lang": [
667 "Aromanian",
668 "Corsican",
669 "Gallurese",
670 "Italian",
671 "Piedmontese",
672 "Romanian",
673 "Sassarese",
674 ],
675 "pos": ["verb", "suffix"],
676 "if": "first-person plural",
677 "then": "first-person plural",
678 },
679 "voi": {
680 "lang": [
681 "Aromanian",
682 "Corsican",
683 "Gallurese",
684 "Italian",
685 "Piedmontese",
686 "Romanian",
687 "Sassarese",
688 ],
689 "pos": ["verb", "suffix"],
690 "if": "second-person plural",
691 "then": "second-person plural",
692 },
693 "loro, essi/esse": {
694 "lang": "Italian",
695 "pos": ["verb", "suffix"],
696 "if": "third-person plural",
697 "then": "third-person plural",
698 },
699 "loro": { # calere/Italian
700 "lang": "Italian",
701 "pos": ["verb", "suffix"],
702 "if": "third-person plural",
703 "then": "third-person plural",
704 },
705 "che io": {
706 "lang": "Italian",
707 "pos": ["verb", "suffix"],
708 "if": "first-person singular",
709 "then": "first-person singular",
710 },
711 "che tu": {
712 "lang": ["Italian", "Ladin"],
713 "pos": ["verb", "suffix"],
714 "if": "second-person singular",
715 "then": "second-person singular",
716 },
717 "che lui/che lei, che esso/che essa": {
718 "lang": "Italian",
719 "pos": ["verb", "suffix"],
720 "if": "third-person singular",
721 "then": "third-person singular",
722 },
723 "che lui/che lei": { # calere/Italian
724 "lang": "Italian",
725 "pos": ["verb", "suffix"],
726 "if": "third-person singular",
727 "then": "third-person singular",
728 },
729 "che noi": {
730 "lang": "Italian",
731 "pos": ["verb", "suffix"],
732 "if": "first-person plural",
733 "then": "first-person plural",
734 },
735 "che voi": {
736 "lang": "Italian",
737 "pos": ["verb", "suffix"],
738 "if": "second-person plural",
739 "then": "second-person plural",
740 },
741 "che loro, che essi/che esse": {
742 "lang": "Italian",
743 "pos": ["verb", "suffix"],
744 "if": "third-person plural",
745 "then": "third-person plural",
746 },
747 "che loro": { # calere/Italian
748 "lang": "Italian",
749 "pos": ["verb", "suffix"],
750 "if": "third-person plural",
751 "then": "third-person plural",
752 },
753 "io/mini/mine": {
754 "lang": "Aromanian",
755 "pos": "verb",
756 "if": "first-person singular",
757 "then": "first-person singular",
758 },
759 "mini / mine": { # escu/Aromanian
760 "lang": "Aromanian",
761 "pos": "verb",
762 "if": "first-person singular",
763 "then": "first-person singular",
764 },
765 "tu/tini/tine": {
766 "lang": "Aromanian",
767 "pos": "verb",
768 "if": "second-person singular",
769 "then": "second-person singular",
770 },
771 "tini / tine": { # escu/Aromanian
772 "lang": "Aromanian",
773 "pos": "verb",
774 "if": "second-person singular",
775 "then": "second-person singular",
776 },
777 "nãsh/nãshi, nãsi/nãse, elj, eali/eale": {
778 "lang": "Aromanian",
779 "pos": "verb",
780 "if": "third-person plural",
781 "then": "third-person plural",
782 },
783 "nãsh, nãse / nãsi, elj, eali": {
784 "lang": "Aromanian",
785 "pos": "verb",
786 "if": "third-person plural",
787 "then": "third-person plural",
788 },
789 "nãs, nãsã / nãsa, el, ea": {
790 "lang": "Aromanian",
791 "pos": "verb",
792 "if": "third-person singular",
793 "then": "third-person singular",
794 },
795 "eiu": {
796 "lang": "Corsican",
797 "pos": "verb",
798 "if": "first-person singular",
799 "then": "first-person singular",
800 },
801 "tù": {
802 "lang": "Corsican",
803 "pos": "verb",
804 "if": "second-person singular",
805 "then": "second-person singular",
806 },
807 "ellu/ella": {
808 "lang": "Corsican",
809 "pos": "verb",
810 "if": "third-person singular",
811 "then": "third-person singular",
812 },
813 "elli/elle": {
814 "lang": "Corsican",
815 "pos": "verb",
816 "if": "third-person plural",
817 "then": "third-person plural",
818 },
819 "eu": {
820 "lang": [
821 "Galician",
822 "Gallurese",
823 "Old Occitan",
824 "Old Portuguese",
825 "Portuguese",
826 "Romanian",
827 "Romansch",
828 ],
829 "pos": "verb",
830 # ~ "if": "first-person singular",
831 "then": "first-person singular",
832 },
833 "el/ea": {
834 "lang": "Romanian",
835 "pos": "verb",
836 "if": "third-person singular",
837 "then": "third-person singular",
838 },
839 "ei/ele": {
840 "lang": "Romanian",
841 "pos": "verb",
842 "if": "third-person plural",
843 "then": "third-person plural",
844 },
845 "aš": {
846 "lang": "Lithuanian",
847 "pos": "verb",
848 "if": "first-person singular",
849 "then": "first-person",
850 },
851 "jis/ji": {
852 "lang": "Lithuanian",
853 "pos": "verb",
854 "if": "third-person singular",
855 "then": "third-person",
856 },
857 "mes": {
858 "lang": ["Latgalian", "Latvian", "Lithuanian", "Old Prussian"],
859 "pos": "verb",
860 "if": "first-person plural",
861 "then": "first-person",
862 },
863 "mēs": {
864 "lang": "Latvian",
865 "pos": "verb",
866 "if": "first-person plural",
867 "then": "first-person plural",
868 },
869 "es": {
870 "lang": [
871 "Alemannic German",
872 "Cimbrian",
873 "German",
874 "Hunsrik",
875 "Pennsylvania German",
876 "Sudovian",
877 ],
878 "pos": "verb",
879 "if": "third-person singular",
880 "then": "third-person singular",
881 "else": {
882 "lang": ["Bavarian"],
883 "pos": "verb",
884 "if": "second-person plural familiar",
885 "then": "second-person plural familiar",
886 "else": {
887 "lang": "Kabuverdianu",
888 "pos": "verb",
889 "if": "third-person plural",
890 "then": "third-person plural",
891 "else": {
892 "lang": ["Latgalian", "Latvian"],
893 "pos": "verb",
894 "if": "first-person singular",
895 "then": "first-person singular",
896 },
897 },
898 },
899 },
900 "jūs": {
901 "lang": ["Latvian", "Lithuanian", "Old Prussian"],
902 "pos": "verb",
903 "if": "singular",
904 "then": "second-person singular",
905 "else": {
906 "lang": ["Latvian", "Lithuanian", "Old Prussian"],
907 "pos": "verb",
908 "if": "plural",
909 "then": "second-person plural",
910 "else": "second-person plural",
911 },
912 },
913 "jie/jos": {
914 "lang": "Lithuanian",
915 "pos": "verb",
916 "if": "third-person plural",
917 "then": "third-person plural",
918 },
919 "jie": {
920 "lang": "Saterland Frisian",
921 "pos": "verb",
922 "if": "second-person singular",
923 "then": "second-person singular",
924 "else": {
925 "lang": "Saterland Frisian",
926 "pos": "verb",
927 "if": "second-person plural",
928 "then": "second-person plural",
929 },
930 },
931 "ije": {
932 "lang": ["Neapolitan", "Tarantino"],
933 "pos": "verb",
934 "if": "first-person singular",
935 "then": "first-person singular",
936 },
937 "jidde / jèdde": {
938 "lang": "Tarantino",
939 "pos": "verb",
940 "if": "third-person singular",
941 "then": "third-person singular",
942 },
943 "nuje": {
944 "lang": ["Neapolitan", "Tarantino"],
945 "pos": "verb",
946 "if": "first-person plural",
947 "then": "first-person plural",
948 },
949 "vuje": {
950 "lang": ["Neapolitan", "Tarantino"],
951 "pos": "verb",
952 "if": "second-person plural",
953 "then": "second-person plural",
954 },
955 "lóre": {
956 "lang": "Tarantino",
957 "pos": "verb",
958 "if": "third-person plural",
959 "then": "third-person plural",
960 },
961 "lloro": {
962 "lang": "Neapolitan",
963 "pos": "verb",
964 "if": "third-person plural",
965 "then": "third-person plural",
966 },
967 "isso/essa": {
968 "lang": "Neapolitan",
969 "pos": "verb",
970 "if": "third-person singular",
971 "then": "third-person singular",
972 },
973 "cu ije": {
974 "lang": "Tarantino",
975 "pos": "verb",
976 "if": "first-person singular",
977 "then": "first-person singular",
978 },
979 "cu tu": {
980 "lang": [
981 "Neapolitan",
982 "Tarantino",
983 ],
984 "pos": "verb",
985 "if": "second-person singular",
986 "then": "second-person singular",
987 },
988 "cu jidde / cu jèdde": {
989 "lang": "Tarantino",
990 "pos": "verb",
991 "if": "third-person singular",
992 "then": "third-person singular",
993 },
994 "cu nuje": {
995 "lang": [
996 "Neapolitan",
997 "Tarantino",
998 ],
999 "pos": "verb",
1000 "if": "first-person plural",
1001 "then": "first-person plural",
1002 },
1003 "cu vuje": {
1004 "lang": "Tarantino",
1005 "pos": "verb",
1006 "if": "second-person plural",
1007 "then": "second-person plural",
1008 },
1009 "cu lóre": {
1010 "lang": "Tarantino",
1011 "pos": "verb",
1012 "if": "third-person plural",
1013 "then": "third-person plural",
1014 },
1015 "ca io": {
1016 "lang": "Neapolitan",
1017 "pos": "verb",
1018 "if": "first-person singular",
1019 "then": "first-person singular",
1020 },
1021 "ca isso/ca essa": {
1022 "lang": "Neapolitan",
1023 "pos": "verb",
1024 "if": "third-person singular",
1025 "then": "third-person singular",
1026 },
1027 "ca vuje": {
1028 "lang": "Neapolitan",
1029 "pos": "verb",
1030 "if": "second-person plural",
1031 "then": "second-person plural",
1032 },
1033 "ca lloro": {
1034 "lang": "Neapolitan",
1035 "pos": "verb",
1036 "if": "third-person plural",
1037 "then": "third-person plural",
1038 },
1039 "ja": {
1040 "lang": [
1041 "Assan",
1042 "Guerrero Amuzgo",
1043 "Gutnish",
1044 "Lower Sorbian",
1045 "Polish",
1046 "Serbo-Croatian",
1047 "Slovak",
1048 "Upper Sorbian",
1049 ],
1050 "pos": ["verb", "suffix"],
1051 "if": "first-person singular",
1052 "then": "first-person singular",
1053 "else": {
1054 "lang": "North Frisian",
1055 "pos": "verb",
1056 "if": "third-person plural",
1057 "then": "third-person plural",
1058 },
1059 },
1060 "ti": {
1061 "lang": [
1062 "Albanian",
1063 "Galician",
1064 "Istriot",
1065 "Ligurian",
1066 "Piedmontese",
1067 "Romansch",
1068 "Serbo-Croatian",
1069 "Slovene",
1070 "Welsh",
1071 "Cumprar",
1072 ],
1073 "pos": ["verb", "suffix"],
1074 # ~ "if": "second-person singular",
1075 "then": "second-person singular",
1076 "else": {
1077 "lang": "Czech",
1078 "pos": "verb",
1079 # ~ "if": "third-person plural",
1080 "then": "third-person plural",
1081 "else": {
1082 "lang": "Hungarian",
1083 "pos": "verb",
1084 # ~ "if": "second-person plural",
1085 "then": "second-person plural",
1086 },
1087 },
1088 },
1089 "on / ona / ono": {
1090 "lang": [
1091 "Czech",
1092 "Old Czech",
1093 "Polish",
1094 "Serbo-Croatian",
1095 "Slovak",
1096 "Slovene",
1097 ],
1098 "pos": ["verb", "suffix"],
1099 "if": "third-person singular",
1100 "then": "third-person singular",
1101 },
1102 "mi": {
1103 "lang": [
1104 "Bislama",
1105 "Esperanto",
1106 "Fula",
1107 "Ga",
1108 "Gaulish",
1109 "Guinea-Bissau Creole",
1110 "Jamaican Creole",
1111 "Kabuverdianu",
1112 "Ligurian",
1113 "Nigerian Pidgin",
1114 "Nzadi",
1115 "Önge",
1116 "Papiamentu",
1117 "Piedmontese",
1118 "Pijin",
1119 "Scottish Gaelic",
1120 "Sranan Tongo",
1121 "Tok Pisin",
1122 "Welsh",
1123 ],
1124 "pos": "verb",
1125 "if": "first-person singular",
1126 "then": "first-person singular",
1127 "else": {
1128 "lang": ["Hungarian", "Serbo-Croatian", "Slovene"],
1129 "pos": ["verb", "suffix"],
1130 "if": "first-person plural",
1131 "then": "first-person plural",
1132 "else": {
1133 "lang": ["Ewe", "Laboya"],
1134 "pos": "verb",
1135 "if": "second-person plural",
1136 "then": "second-person plural",
1137 "else": {
1138 "lang": "Jarawa",
1139 "pos": "verb",
1140 "if": "first-person singular", # both plural and singular
1141 "then": "first-person singular",
1142 "else": {
1143 "lang": "Jarawa",
1144 "pos": "verb",
1145 "if": "first-person plural",
1146 "then": "first-person plural",
1147 },
1148 },
1149 },
1150 },
1151 },
1152 "vi": {
1153 "lang": ["Danish", "Norwegian Bokmål", "Norwegian Nynorsk", "Swedish"],
1154 "pos": "verb",
1155 "if": "first-person plural",
1156 "then": "first-person plural",
1157 "else": {
1158 "lang": ["Esperanto", "Ido", "Serbo-Croatian"],
1159 "pos": ["verb", "suffix"],
1160 "if": "second-person plural",
1161 "then": "second-person plural",
1162 "else": {
1163 "lang": "Slovene",
1164 "pos": "verb",
1165 "if": "second-person", # plural or (formal) singular
1166 "then": "second-person",
1167 },
1168 },
1169 },
1170 "oni / one / ona": {
1171 "lang": [
1172 "Czech",
1173 "Old Czech",
1174 "Polish",
1175 "Serbo-Croatian",
1176 "Slovak",
1177 "Slovene",
1178 ],
1179 "pos": ["verb", "suffix"],
1180 "if": "third-person plural",
1181 "then": "third-person plural",
1182 },
1183 "ono": {
1184 "lang": "Hadza",
1185 "pos": "verb",
1186 "if": "first-person singular",
1187 "then": "first-person singular",
1188 },
1189 "me": {
1190 "lang": "Romani",
1191 "pos": "verb",
1192 "if": "first-person singular",
1193 "then": "first-person singular",
1194 },
1195 "amen": {
1196 "lang": "Romani",
1197 "pos": "verb",
1198 "if": "first-person plural",
1199 "then": "first-person plural",
1200 },
1201 "tumen": {
1202 "lang": "Romani",
1203 "pos": "verb",
1204 "if": "second-person plural",
1205 "then": "second-person plural",
1206 },
1207 "on": {
1208 "lang": "Romani",
1209 "pos": "verb",
1210 "if": "third-person plural",
1211 "then": "third-person plural",
1212 },
1213 "Lei": {
1214 "lang": "Italian",
1215 "if": "third-person",
1216 "then": "third-person singular formal second-person-semantically",
1217 },
1218 "Loro": {
1219 "lang": "Italian",
1220 "if": "third-person",
1221 "then": "third-person plural formal second-person-semantically",
1222 },
1223 "yo": {
1224 "lang": [
1225 "Afar",
1226 "Aragonese",
1227 "Asturian",
1228 "Chavacano",
1229 "Kristang",
1230 "Ladino",
1231 "Spanish",
1232 ],
1233 "pos": ["verb", "suffix"],
1234 "if": "first-person singular",
1235 "then": "first-person singular",
1236 "else": {
1237 "lang": "Haitian Creole",
1238 "pos": "verb",
1239 "if": "third-person plural",
1240 "then": "third-person plural",
1241 },
1242 },
1243 "vos": {
1244 "lang": [
1245 "Interlingua",
1246 "Ladino",
1247 "Latin",
1248 "Old French",
1249 "Old Occitan",
1250 "Sardinian",
1251 "Lorrain",
1252 ],
1253 "pos": "verb",
1254 "then": "second-person",
1255 "else": {
1256 "lang": [
1257 "Ladin",
1258 "Walloon",
1259 ],
1260 "then": "second-person plural",
1261 },
1262 },
1263 "tú": {
1264 "lang": ["Aragonese", "Faroese", "Irish", "Ladino", "Old Irish"],
1265 "pos": "verb",
1266 "if": "second-person singular",
1267 "then": "second-person singular",
1268 },
1269 "jo": {
1270 "lang": ["Catalan", "Friulian", "Occitan", "Old French", "Silesian"],
1271 "pos": "verb",
1272 "if": "first-person singular",
1273 "then": "first-person singular",
1274 "else": {
1275 "lang": ["North Frisian", "Saterland Frisian"],
1276 "pos": "verb",
1277 "if": "third-person singular",
1278 "then": "third-person singular",
1279 },
1280 },
1281 "ell/ella vostè": {
1282 "lang": "Catalan",
1283 "pos": "verb",
1284 "if": "third-person singular",
1285 "then": "third-person singular",
1286 },
1287 "nosaltres nós": {
1288 "lang": "Catalan",
1289 "pos": "verb",
1290 "if": "first-person plural",
1291 "then": "first-person plural",
1292 },
1293 "vosaltres vós": {
1294 "lang": "Catalan",
1295 "pos": "verb",
1296 "if": "second-person plural",
1297 "then": "second-person plural",
1298 },
1299 "ells/elles vostès": {
1300 "lang": "Catalan",
1301 "pos": "verb",
1302 "if": "third-person plural",
1303 "then": "third-person plural",
1304 },
1305 "vostè": {
1306 "lang": "Catalan",
1307 "pos": "verb",
1308 "if": "third-person singular",
1309 "then": "formal second-person-semantically",
1310 },
1311 "nosaltres": {
1312 "lang": "Catalan",
1313 "pos": "verb",
1314 "if": "first-person plural",
1315 "then": "first-person plural",
1316 },
1317 "vostès": {
1318 "lang": "Catalan",
1319 "pos": "verb",
1320 "if": "third-person plural",
1321 "then": "formal second-person-semantically",
1322 },
1323 "tú vos": {
1324 "if": "second-person singular",
1325 "then": "second-person singular",
1326 },
1327 "él/ella/ello usted": {
1328 "lang": "Spanish",
1329 "pos": ["verb", "suffix"],
1330 "if": "third-person singular",
1331 "then": "third-person singular",
1332 },
1333 "nosotros nosotras": {
1334 "lang": ["Asturian", "Spanish"],
1335 "pos": ["verb", "suffix"],
1336 "if": "first-person plural",
1337 "then": "first-person plural",
1338 },
1339 "vosotros vosotras": {
1340 "lang": ["Spanish"],
1341 "pos": ["verb", "suffix"],
1342 "if": "second-person plural",
1343 "then": "second-person plural",
1344 },
1345 "ellos/ellas ustedes": {
1346 "lang": "Spanish",
1347 "pos": ["verb", "suffix"],
1348 "if": "third-person plural",
1349 "then": "third-person plural",
1350 },
1351 "usted": {
1352 "lang": "Spanish",
1353 "pos": ["verb", "suffix"],
1354 "if": "imperative",
1355 "then": [
1356 "third-person singular formal second-person-semantically",
1357 "third-person singular",
1358 ],
1359 },
1360 "ustedes": {
1361 "lang": "Spanish",
1362 "pos": ["verb", "suffix"],
1363 "if": "imperative",
1364 "then": [
1365 "third-person plural formal second-person-semantically",
1366 "third-person plural",
1367 ],
1368 },
1369 "je (j’)": {
1370 "lang": "French",
1371 "pos": [
1372 "verb",
1373 "suffix",
1374 ],
1375 "then": "first-person singular",
1376 },
1377 "il, elle, on": {
1378 "lang": ["French", "Middle French"],
1379 "pos": [
1380 "verb",
1381 "suffix",
1382 ],
1383 "then": "third-person singular",
1384 },
1385 "il, elle": {
1386 "lang": ["French", "Middle French"],
1387 "pos": [
1388 "verb",
1389 "suffix",
1390 ],
1391 "then": "third-person singular",
1392 },
1393 "nous": {
1394 "lang": ["French", "Middle French"],
1395 "pos": [
1396 "verb",
1397 "suffix",
1398 ],
1399 "then": "first-person plural",
1400 },
1401 "vous": {
1402 "lang": ["French", "Middle French"],
1403 "pos": [
1404 "verb",
1405 "suffix",
1406 ],
1407 "then": "second-person plural",
1408 },
1409 "ils, elles": {
1410 "lang": "French",
1411 "pos": [
1412 "verb",
1413 "suffix",
1414 ],
1415 "then": "third-person plural",
1416 },
1417 "que je (j’)": {
1418 "lang": "French",
1419 "pos": [
1420 "verb",
1421 "suffix",
1422 ],
1423 "then": "first-person singular",
1424 },
1425 "que tu": {
1426 "lang": [
1427 "French",
1428 "Middle French",
1429 "Old French",
1430 "Lorrain",
1431 ],
1432 "pos": [
1433 "verb",
1434 "suffix",
1435 ],
1436 "then": "second-person singular",
1437 },
1438 "qu’il, qu’elle": {
1439 "lang": ["French", "Middle French"],
1440 "pos": [
1441 "verb",
1442 "suffix",
1443 ],
1444 "then": "third-person singular",
1445 },
1446 "que nous": {
1447 "lang": ["French", "Middle French"],
1448 "pos": [
1449 "verb",
1450 "suffix",
1451 ],
1452 "then": "first-person plural",
1453 },
1454 "que vous": {
1455 "lang": ["French", "Middle French"],
1456 "pos": [
1457 "verb",
1458 "suffix",
1459 ],
1460 "then": "second-person plural",
1461 },
1462 "qu’ils, qu’elles": {
1463 "lang": ["French", "Middle French"],
1464 "pos": [
1465 "verb",
1466 "suffix",
1467 ],
1468 "then": "third-person plural",
1469 },
1470 "ie (i’)": {
1471 "lang": "Middle French",
1472 "pos": "verb",
1473 "then": "first-person singular",
1474 },
1475 "ilz, elles": {
1476 "lang": "Middle French",
1477 "pos": "verb",
1478 "then": "third-person plural",
1479 },
1480 "que ie (i’)": {
1481 "lang": "Middle French",
1482 "pos": "verb",
1483 "then": "first-person singular",
1484 },
1485 "qu’ilz, qu’elles": {
1486 "lang": "Middle French",
1487 "pos": "verb",
1488 "then": "third-person plural",
1489 },
1490 "il": {
1491 "lang": ["Old French"],
1492 "pos": "verb",
1493 "then": "third-person",
1494 },
1495 "nos": {
1496 "lang": [
1497 "Lorrain",
1498 "Old French",
1499 "Ladin",
1500 ],
1501 "pos": "verb",
1502 "then": "first-person plural",
1503 },
1504 "que jo": {
1505 "lang": ["Old French"],
1506 "pos": "verb",
1507 "if": "first-person singular",
1508 "then": "first-person singular",
1509 },
1510 "qu’il": {
1511 "lang": "Old French",
1512 "pos": "verb",
1513 "if": "third-person",
1514 "then": "third-person",
1515 },
1516 "que nos": {
1517 "lang": "Old French",
1518 "pos": "verb",
1519 "if": "first-person plural",
1520 "then": "first-person plural",
1521 },
1522 "que vos": {
1523 "lang": [
1524 "Old French",
1525 "Lorrain",
1526 ],
1527 "pos": "verb",
1528 "if": "second-person plural",
1529 "then": "second-person plural",
1530 },
1531 "lui/jê": {
1532 "lang": "Friulian",
1533 "pos": "verb",
1534 "if": "third-person singular",
1535 "then": "third-person singular",
1536 },
1537 "nô": {
1538 "lang": "Friulian",
1539 "pos": "verb",
1540 "if": "first-person plural",
1541 "then": "first-person plural",
1542 },
1543 "vô": {
1544 "lang": "Friulian",
1545 "pos": "verb",
1546 "if": "second-person plural",
1547 "then": "second-person plural",
1548 },
1549 "lôr": {
1550 "lang": "Friulian",
1551 "pos": "verb",
1552 "if": "third-person plural",
1553 "then": "third-person plural",
1554 },
1555 "ես": {
1556 "lang": ["Armenian", "Old Armenian"],
1557 "pos": "verb",
1558 "if": "first-person singular",
1559 "then": "first-person singular",
1560 },
1561 "դու": {
1562 "lang": ["Armenian", "Old Armenian"],
1563 "pos": "verb",
1564 "if": "second-person singular",
1565 "then": "second-person singular",
1566 },
1567 "նա": {
1568 "lang": ["Armenian", "Old Armenian"],
1569 "pos": "verb",
1570 "if": "third-person singular",
1571 "then": "third-person singular",
1572 },
1573 "դուք": {
1574 "lang": ["Armenian", "Old Armenian"],
1575 "pos": "verb",
1576 "if": "second-person plural",
1577 "then": "second-person plural",
1578 },
1579 "(դու)": {
1580 "lang": ["Armenian", "Old Armenian"],
1581 "pos": "verb",
1582 "if": "second-person singular",
1583 "then": "rare",
1584 },
1585 "(դուք)": {
1586 "lang": ["Armenian", "Old Armenian"],
1587 "pos": "verb",
1588 "if": "second-person plural",
1589 "then": "rare",
1590 },
1591 "nós": {
1592 "lang": [
1593 "Asturian",
1594 "Galician",
1595 "Indo-Portuguese",
1596 "Mirandese",
1597 "Portuguese",
1598 ],
1599 "pos": "verb",
1600 # ~ "if": "first-person plural",
1601 "then": "first-person plural",
1602 },
1603 "el/ela/Vde.": {
1604 "lang": "Galician",
1605 "pos": "verb",
1606 # ~ "if": "third-person singular",
1607 "then": "third-person singular",
1608 },
1609 "eles/elas/Vdes.": {
1610 "lang": "Galician",
1611 "pos": "verb",
1612 # ~ "if": "third-person plural",
1613 "then": "third-person plural",
1614 },
1615 "mì": {
1616 "lang": ["Lombard", "Western Lombard"],
1617 "pos": "verb",
1618 "if": "first-person singular",
1619 "then": "first-person singular",
1620 },
1621 "tì te": {
1622 "lang": ["Lombard", "Western Lombard"],
1623 "pos": "verb",
1624 "if": "second-person singular",
1625 "then": "second-person singular",
1626 },
1627 "lù el / lee la": {
1628 "lang": ["Lombard", "Western Lombard"],
1629 "pos": "verb",
1630 "if": "third-person singular",
1631 "then": "third-person singular",
1632 },
1633 "nun": {
1634 "lang": ["Lombard", "Western Lombard", "Wolof"],
1635 "pos": "verb",
1636 "if": "first-person plural",
1637 "then": "first-person plural",
1638 },
1639 "violter / vialter": {
1640 "lang": ["Lombard", "Western Lombard"],
1641 "pos": "verb",
1642 "if": "second-person plural",
1643 "then": "second-person plural",
1644 },
1645 "lor": {
1646 "lang": ["Lombard", "Western Lombard"],
1647 "pos": "verb",
1648 "if": "third-person plural",
1649 "then": "third-person plural",
1650 },
1651 "iu": {
1652 "lang": "Sicilian",
1653 "pos": "verb",
1654 "if": "first-person singular",
1655 "then": "first-person singular",
1656 },
1657 "iddu/idda": {
1658 "lang": ["Gallurese", "Sicilian"],
1659 "pos": "verb",
1660 "if": "third-person singular",
1661 "then": "third-person singular",
1662 },
1663 "éiu, eu": {
1664 "lang": "Sassarese",
1665 "pos": "verb",
1666 "if": "first-person singular",
1667 "then": "first-person singular",
1668 },
1669 "eddu/edda": {
1670 "lang": "Sassarese",
1671 "pos": "verb",
1672 "if": "third-person singular",
1673 "then": "third-person singular",
1674 },
1675 "eddi": {
1676 "lang": "Sassarese",
1677 "pos": "verb",
1678 "if": "third-person plural",
1679 "then": "third-person plural",
1680 },
1681 "che éiu, chi eu": {
1682 "lang": "Sassarese",
1683 "pos": "verb",
1684 "if": "first-person singular",
1685 "then": "first-person singular",
1686 },
1687 "chi eddu/edda": {
1688 "lang": "Sassarese",
1689 "pos": "verb",
1690 "if": "third-person singular",
1691 "then": "third-person singular",
1692 },
1693 "chi noi": {
1694 "lang": "Sassarese",
1695 "pos": "verb",
1696 "if": "first-person plural",
1697 "then": "first-person plural",
1698 },
1699 "chi voi": {
1700 "lang": "Sassarese",
1701 "pos": "verb",
1702 "if": "second-person plural",
1703 "then": "second-person plural",
1704 },
1705 "chi eddi": {
1706 "lang": "Sassarese",
1707 "pos": "verb",
1708 "if": "third-person plural",
1709 "then": "third-person plural",
1710 },
1711 "nuàutri": {
1712 "lang": "Sicilian",
1713 "pos": "verb",
1714 "if": "first-person plural",
1715 "then": "first-person plural",
1716 },
1717 "vuàutri": {
1718 "lang": "Sicilian",
1719 "pos": "verb",
1720 "if": "second-person plural",
1721 "then": "second-person plural",
1722 },
1723 "iddi": {
1724 "lang": ["Gallurese", "Sicilian"],
1725 "pos": "verb",
1726 "if": "third-person plural",
1727 "then": "third-person plural",
1728 },
1729 "(che) mì": {
1730 "lang": ["Lombard", "Western Lombard"],
1731 "pos": "verb",
1732 "if": "first-person singular",
1733 "then": "first-person singular",
1734 },
1735 "(che) tì te": {
1736 "lang": ["Lombard", "Western Lombard"],
1737 "pos": "verb",
1738 "if": "second-person singular",
1739 "then": "second-person singular",
1740 },
1741 "(che) lù el / lee la": {
1742 "lang": ["Lombard", "Western Lombard"],
1743 "pos": "verb",
1744 "if": "third-person singular",
1745 "then": "third-person singular",
1746 },
1747 "(che) nun": {
1748 "lang": ["Lombard", "Western Lombard"],
1749 "pos": "verb",
1750 "if": "first-person plural",
1751 "then": "first-person plural",
1752 },
1753 "(che) violter / vialter": {
1754 "lang": ["Lombard", "Western Lombard"],
1755 "pos": "verb",
1756 "if": "second-person plural",
1757 "then": "second-person plural",
1758 },
1759 "(che) lor": {
1760 "lang": ["Lombard", "Western Lombard"],
1761 "pos": "verb",
1762 "if": "third-person plural",
1763 "then": "third-person plural",
1764 },
1765 "tì": {
1766 "lang": ["Lombard", "Western Lombard"],
1767 "pos": "verb",
1768 "if": "second-person singular",
1769 "then": "second-person singular",
1770 },
1771 "lù / lee che el": {
1772 "lang": ["Lombard", "Western Lombard"],
1773 "pos": "verb",
1774 "if": "third-person singular",
1775 "then": "third-person singular",
1776 },
1777 "lor che el": {
1778 "lang": ["Lombard", "Western Lombard"],
1779 "pos": "verb",
1780 "if": "third-person plural",
1781 "then": "third-person plural",
1782 },
1783 "mé": {
1784 "lang": ["Eastern Lombard", "Irish", "Lombard", "Old Irish"],
1785 "pos": "verb",
1786 "if": "first-person singular",
1787 "then": "first-person singular",
1788 },
1789 "té": {
1790 "lang": ["Eastern Lombard", "Lombard"],
1791 "pos": "verb",
1792 "if": "second-person singular",
1793 "then": "second-person singular",
1794 },
1795 "lü / le": {
1796 "lang": ["Eastern Lombard", "Lombard"],
1797 "pos": "verb",
1798 "if": "third-person singular",
1799 "then": "third-person singular",
1800 },
1801 "lü / lé": {
1802 "lang": ["Eastern Lombard", "Lombard"],
1803 "pos": "verb",
1804 "if": "third-person singular",
1805 "then": "third-person singular",
1806 },
1807 "nóter": {
1808 "lang": ["Eastern Lombard", "Lombard"],
1809 "pos": "verb",
1810 "if": "first-person plural",
1811 "then": "first-person plural",
1812 },
1813 "vóter": {
1814 "lang": ["Eastern Lombard", "Lombard"],
1815 "pos": "verb",
1816 "if": "second-person plural",
1817 "then": "second-person plural",
1818 },
1819 "lur / lùre": {
1820 "lang": ["Eastern Lombard", "Lombard"],
1821 "pos": "verb",
1822 "if": "third-person plural",
1823 "then": "third-person plural",
1824 },
1825 "lur / lúre": {
1826 "lang": ["Eastern Lombard", "Lombard"],
1827 "pos": "verb",
1828 "if": "third-person plural",
1829 "then": "third-person plural",
1830 },
1831 "(che) mé": {
1832 "lang": ["Eastern Lombard", "Lombard"],
1833 "pos": "verb",
1834 "if": "first-person singular",
1835 "then": "first-person singular",
1836 },
1837 "(che) té": {
1838 "lang": ["Eastern Lombard", "Lombard"],
1839 "pos": "verb",
1840 "if": "second-person singular",
1841 "then": "second-person singular",
1842 },
1843 "(che) lü / le": {
1844 "lang": ["Eastern Lombard", "Lombard"],
1845 "pos": "verb",
1846 "if": "third-person singular",
1847 "then": "third-person singular",
1848 },
1849 "(che) lü / lé": {
1850 "lang": ["Eastern Lombard", "Lombard"],
1851 "pos": "verb",
1852 "if": "third-person singular",
1853 "then": "third-person singular",
1854 },
1855 "(che) nóter": {
1856 "lang": ["Eastern Lombard", "Lombard"],
1857 "pos": "verb",
1858 "if": "first-person plural",
1859 "then": "first-person plural",
1860 },
1861 "(che) vóter": {
1862 "lang": ["Eastern Lombard", "Lombard"],
1863 "pos": "verb",
1864 "if": "second-person plural",
1865 "then": "second-person plural",
1866 },
1867 "(che) lur / lùre": {
1868 "lang": ["Eastern Lombard", "Lombard"],
1869 "pos": "verb",
1870 "if": "third-person plural",
1871 "then": "third-person plural",
1872 },
1873 "non-finite forms": {
1874 "lang": "Latin",
1875 "pos": "verb",
1876 "then": "dummy-reset-headers", # Reset column inheritance
1877 "else": "",
1878 },
1879 "ben": {
1880 "lang": "Turkish",
1881 "pos": ["verb", "adj"],
1882 "if": "first-person singular",
1883 "then": "first-person singular",
1884 },
1885 "sen": {
1886 "lang": ["Crimean Tatar", "Turkish", "Turkmen"],
1887 "pos": "verb",
1888 # ~ "if": "second-person singular",
1889 "then": "second-person singular",
1890 },
1891 "o": {
1892 "lang": [
1893 "Azerbaijani",
1894 "Crimean Tatar",
1895 "Fula",
1896 "Igbo",
1897 "Turkish",
1898 "Welsh",
1899 "Zazaki",
1900 ],
1901 "pos": "verb",
1902 "if": "third-person singular",
1903 "then": "third-person singular",
1904 "else": {
1905 "lang": "Kikuyu",
1906 "pos": "verb",
1907 "if": "third-person plural",
1908 "then": "third-person plural",
1909 "else": {
1910 "lang": "Pnar",
1911 "pos": "verb",
1912 "if": "first-person singular",
1913 "then": "first-person singular",
1914 "else": {
1915 "lang": "Yoruba",
1916 "pos": "verb",
1917 "if": "second-person third-person singular",
1918 "then": "second-person third-person singular",
1919 },
1920 },
1921 },
1922 },
1923 "biz": {
1924 "lang": ["Azerbaijani", "Crimean Tatar", "Turkish", "Turkmen"],
1925 "pos": "verb",
1926 "if": "first-person plural",
1927 "then": "first-person plural",
1928 },
1929 "siz": {
1930 "lang": ["Azerbaijani", "Crimean Tatar", "Turkish", "Turkmen"],
1931 "pos": "verb",
1932 "if": "second-person plural",
1933 "then": "second-person plural",
1934 },
1935 "onlar": {
1936 "lang": ["Azerbaijani", "Turkish"],
1937 "pos": "verb",
1938 "if": "third-person plural",
1939 "then": "third-person plural",
1940 },
1941 "vossìa": {"lang": "Sicilian", "if": "third-person singular", "then": ""},
1942 "deo eo": {"lang": "Sardinian", "if": "first-person singular", "then": ""},
1943 "tue": {"lang": "Sardinian", "if": "second-person singular", "then": ""},
1944 "issu/issa/isse": {
1945 "lang": "Sardinian",
1946 "if": "third-person singular",
1947 "then": "",
1948 },
1949 "nois": {"lang": "Sardinian", "if": "first-person plural", "then": ""},
1950 "bois": {"lang": "Sardinian", "if": "second-person plural", "then": ""},
1951 "issos/issas": {
1952 "lang": "Sardinian",
1953 "if": "third-person plural",
1954 "then": "",
1955 },
1956 "chi deo chi eo": {
1957 "lang": "Sardinian",
1958 "if": "first-person singular",
1959 "then": "",
1960 },
1961 "chi tue": {
1962 "lang": "Sardinian",
1963 "if": "second-person singular",
1964 "then": "",
1965 },
1966 "chi issu/issa/isse": {
1967 "lang": "Sardinian",
1968 "if": "third-person singular",
1969 "then": "",
1970 },
1971 "chi nois": {"lang": "Sardinian", "if": "first-person plural", "then": ""},
1972 "chi bois": {"lang": "Sardinian", "if": "second-person plural", "then": ""},
1973 "chi issos/issas": {
1974 "lang": "Sardinian",
1975 "if": "third-person plural",
1976 "then": "",
1977 },
1978 "dego deo": {
1979 "lang": "Sardinian",
1980 "if": "first-person singular",
1981 "then": "",
1982 },
1983 "issu/issa": {
1984 "lang": "Sardinian",
1985 "if": "third-person singular",
1986 "then": "",
1987 },
1988 "chi dego chi deo": {
1989 "lang": "Sardinian",
1990 "if": "first-person singular",
1991 "then": "",
1992 },
1993 "chi issu/issa": {
1994 "lang": "Sardinian",
1995 "if": "third-person singular",
1996 "then": "",
1997 },
1998 "ieu": {"lang": "Occitan", "if": "first-person singular", "then": ""},
1999 "el": {"lang": "Occitan", "if": "third-person singular", "then": ""},
2000 "nosautres": {"lang": "Occitan", "if": "first-person plural", "then": ""},
2001 "vosautres": {"lang": "Occitan", "if": "second-person plural", "then": ""},
2002 "eles": {"lang": "Occitan", "if": "third-person plural", "then": ""},
2003 "que ieu": {"lang": "Occitan", "if": "first-person singular", "then": ""},
2004 "que el": {"lang": "Occitan", "if": "third-person singular", "then": ""},
2005 "que nosautres": {
2006 "lang": "Occitan",
2007 "if": "first-person plural",
2008 "then": "",
2009 },
2010 "que vosautres": {
2011 "lang": "Occitan",
2012 "if": "second-person plural",
2013 "then": "",
2014 },
2015 "que eles": {"lang": "Occitan", "if": "third-person plural", "then": ""},
2016 "аз": {"lang": "Bulgarian", "if": "first-person singular", "then": ""},
2017 "ти": {
2018 "lang": ["Bulgarian", "Serbo-Croatian"],
2019 "if": "second-person singular",
2020 "then": "",
2021 },
2022 "той/тя/то": {
2023 "lang": "Bulgarian",
2024 "if": "third-person singular",
2025 "then": "",
2026 },
2027 "ние": {"lang": "Bulgarian", "if": "first-person plural", "then": ""},
2028 "вие": {"lang": "Bulgarian", "if": "second-person plural", "then": ""},
2029 "те": {"lang": "Bulgarian", "if": "third-person plural", "then": ""},
2030 "viņš, viņa": {
2031 "lang": "Latvian",
2032 "if": "third-person singular",
2033 "then": "",
2034 },
2035 "viņi, viņas": {"lang": "Latvian", "if": "third-person plural", "then": ""},
2036 "el / ela / Vde.": {
2037 "lang": "Galician",
2038 # ~ "if": "singular third-person",
2039 "then": "third-person singular",
2040 },
2041 "vós": {
2042 "lang": "Galician",
2043 # ~ "if": "plural second-person",
2044 "then": "second-person plural",
2045 },
2046 "eles / elas / Vdes.": {
2047 "lang": "Galician",
2048 # ~ "if": "plural third-person",
2049 "then": "third-person plural",
2050 },
2051 "Vde.": {
2052 "lang": "Galician",
2053 # ~ "if": "singular third-person",
2054 "then": "third-person singular formal",
2055 },
2056 "Vdes.": {
2057 "lang": "Galician",
2058 # ~ "if": "plural third-person",
2059 "then": "third-person plural formal",
2060 },
2061 "ⲛ̄ⲧⲟⲕ": {
2062 "lang": "Coptic",
2063 "if": "second-person singular masculine",
2064 "then": "",
2065 },
2066 "ⲛ̄ⲧⲟ": {
2067 "lang": "Coptic",
2068 "if": "second-person singular feminine",
2069 "then": "",
2070 },
2071 "ⲛ̄ⲧⲟϥ": {
2072 "lang": "Coptic",
2073 "if": "third-person singular masculine",
2074 "then": "",
2075 },
2076 "ⲛ̄ⲧⲟⲥ": {
2077 "lang": "Coptic",
2078 "if": "third-person singular feminine",
2079 "then": "",
2080 },
2081 "ⲛ̄ⲧⲱⲧⲛ̄": {"lang": "Coptic", "if": "second-person plural", "then": ""},
2082 "ⲛ̄ⲧⲟⲟⲩ": {"lang": "Coptic", "if": "third-person plural", "then": ""},
2083 "ⲛ̀ⲑⲟⲕ": {
2084 "lang": "Coptic",
2085 "if": "second-person singular masculine",
2086 "then": "",
2087 },
2088 "ⲛ̀ⲑⲟ": {
2089 "lang": "Coptic",
2090 "if": "second-person singular feminine",
2091 "then": "",
2092 },
2093 "ⲛ̀ⲑⲟϥ": {
2094 "lang": "Coptic",
2095 "if": "third-person singular masculine",
2096 "then": "",
2097 },
2098 "ⲛ̀ⲑⲟⲥ": {
2099 "lang": "Coptic",
2100 "if": "third-person singular feminine",
2101 "then": "",
2102 },
2103 "ⲛ̀ⲑⲱⲧⲉⲛ": {"lang": "Coptic", "if": "second-person plural", "then": ""},
2104 "ⲛ̀ⲑⲱⲟⲩ": {"lang": "Coptic", "if": "third-person plural", "then": ""},
2105 "ñuqa": {"lang": "Quechua", "if": "first-person singular", "then": ""},
2106 "qam": {"lang": "Quechua", "if": "second-person singular", "then": ""},
2107 "pay": {"lang": "Quechua", "if": "third-person singular", "then": ""},
2108 "ñuqanchik": {
2109 "lang": "Quechua",
2110 "if": "first-person plural inclusive",
2111 "then": "",
2112 },
2113 "ñuqayku": {
2114 "lang": "Quechua",
2115 "if": "first-person plural exclusive",
2116 "then": "",
2117 },
2118 "qamkuna": {"lang": "Quechua", "if": "second-person plural", "then": ""},
2119 "paykuna": {"lang": "Quechua", "if": "third-person plural", "then": ""},
2120 "unë": {
2121 "lang": "Albanian",
2122 "then": "first-person singular",
2123 },
2124 "ai/ajo": {
2125 "lang": "Albanian",
2126 "then": "third-person singular",
2127 },
2128 "ne": {
2129 "lang": "Albanian",
2130 "then": "first-person plural",
2131 "else": {
2132 "lang": "Livonian",
2133 "then": "third-person plural",
2134 },
2135 },
2136 "ju": {
2137 "lang": "Albanian",
2138 "then": "second-person plural",
2139 },
2140 "ata/ato": {
2141 "lang": "Albanian",
2142 "then": "third-person plural",
2143 },
2144 "մենք": {"lang": "Armenian", "if": "first-person plural", "then": ""},
2145 "նրանք": {"lang": "Armenian", "if": "third-person plural", "then": ""},
2146 "verbal nouns": "noun-from-verb",
2147 "supine": "supine",
2148 "past historic": "past historic",
2149 "passato remoto": "past historic",
2150 "future perfect": "future perfect",
2151 "impersonal": "impersonal",
2152 "verbal noun": "noun-from-verb",
2153 "auxiliary verb": "auxiliary",
2154 "active adjectival participle": "active adjectival participle",
2155 "contemporary adverbial participle": "contemporary adjectival participle",
2156 "passive adjectival participle": "passive adjectival participle",
2157 "Instrumental": "instrumental",
2158 "exessive": "exessive",
2159 "indef.": "indefinite", # XXX see -heit, may need special handling
2160 "def.": "definite",
2161 "noun": "noun", # XXX see ['-heit', '-schaft', '-tum']
2162 "absolutive": "absolutive",
2163 "definite accusative": "definite accusative",
2164 "definite genitive": "definite genitive",
2165 "possessive": "possessive",
2166 "Possessive": "possessive",
2167 "2nd person formal": "second-person formal",
2168 "3rd person masculine": "third-person masculine",
2169 "3rd person feminine": "third-person feminine",
2170 "3rd person neuter": "third-person neuter",
2171 "mənim (“my”)": "first-person singular possessive",
2172 "sənin (“your”)": "second-person singular possessive",
2173 "onun (“his/her/its”)": "third-person singular possessive",
2174 "bizim (“our”)": "first-person plural possessive",
2175 "sizin (“your”)": "second-person plural possessive",
2176 "onların (“their”)": "third-person plural possessive",
2177 "mən (“I am”)": "first-person predicative",
2178 "sən (“you are”)": "second-person predicative",
2179 "o (“he/she is”)": "third-person predicative",
2180 "predicative": "predicative",
2181 "subjective": "subjective",
2182 "preterite": "preterite",
2183 "strong/subject": "strong subjective",
2184 "weak (direct object)": "weak objective direct-object",
2185 "weak (indirect object)": "weak objective indirect-object",
2186 "proclitic": "proclitic",
2187 "Proclitic": "proclitic",
2188 "enclitic": "enclitic",
2189 "Enclitic": "enclitic",
2190 "1st person majestic": "first-person majestic formal",
2191 "2nd person very formal": "second-person formal",
2192 "3rd person reflexive": "third-person reflexive",
2193 "ablative/genitive": "ablative genitive",
2194 "Masculine / Feminine": "masculine feminine",
2195 "Imperative": "imperative",
2196 "imperfect (ra)": "imperfect",
2197 "imperfect (se)": "imperfect imperfect-se",
2198 "affirmative": {
2199 "if": "imperative",
2200 "then": "positive",
2201 "else": "affirmative",
2202 },
2203 "Affirmative": {
2204 "if": "imperative",
2205 "then": "positive",
2206 "else": "affirmative",
2207 },
2208 "Affirmative (+)": {
2209 "if": "imperative",
2210 "then": "positive",
2211 "else": "affirmative",
2212 },
2213 "participle": "participle",
2214 "Bare forms (no plural for this noun):": "no-plural",
2215 "old dative": "dative archaic", # XXX archaic or dated?
2216 "Bare forms (no plural of this noun)": "no-plural",
2217 "Conditional": "conditional",
2218 "Inflection": "",
2219 "Definite accusative": "definite accusative",
2220 "present perfect": "present perfect",
2221 "optative": "optative",
2222 "positive degree": "positive",
2223 "comparative degree": "comparative",
2224 "superlative degree": "superlative",
2225 "prolative": "prolative",
2226 "comparative": {
2227 "lang": [
2228 "Chechen",
2229 "Mari",
2230 "Nivkh",
2231 ],
2232 "pos": "noun",
2233 "then": "comparative-case",
2234 "else": "comparative",
2235 },
2236 "causative": "causative",
2237 "Indicative": "indicative",
2238 "Class": "",
2239 "11": "class-11",
2240 "14": "class-14",
2241 "15": "class-15",
2242 "–": {
2243 "lang": "Nepalese",
2244 "then": "negative",
2245 "else": "dummy-ignore-skipped",
2246 },
2247 "m": "masculine",
2248 "f": "feminine",
2249 "compound": "multiword-construction",
2250 "reflexive": "reflexive",
2251 "Reflexive": "reflexive",
2252 "unstr.": "unstressed",
2253 "First-person singular": "first-person singular",
2254 "Second-person singular": "second-person singular",
2255 "Third-person singular": "third-person singular",
2256 "First-person plural": "first-person plural",
2257 "Second-person plural": "second-person plural",
2258 "Third-person plural": "third-person plural",
2259 "First-person (eu)": "first-person singular",
2260 "Second-person (tu)": "second-person singular",
2261 "Third-person (ele / ela / você)": "third-person singular",
2262 "First-person (nós)": "first-person plural",
2263 "Second-person (vós)": "second-person plural",
2264 "Third-person (eles / elas / vocês)": "third-person plural",
2265 "Impersonal": "impersonal",
2266 "Personal": "personal",
2267 "Gerund": "gerund",
2268 "Preterite": "preterite",
2269 "Pluperfect": "pluperfect",
2270 "Negative (-)": "negative",
2271 "Negative (não)": "negative",
2272 "definite (subject form)": "definite subjective",
2273 "definite (object form)": "definite objective",
2274 "extended (vocative form)": "extended vocative",
2275 "number": "",
2276 "dual": "dual",
2277 "middle/ passive": "middle passive",
2278 "Active": "active",
2279 "Passive": "passive",
2280 "first person": "first-person",
2281 "second person": "second-person",
2282 "third person": "third-person",
2283 "first person singular": "first-person singular",
2284 "second person singular": "second-person singular",
2285 "third person singular": "third-person singular",
2286 "1ˢᵗ person": "first-person",
2287 "2ⁿᵈ person": "second-person",
2288 "3ʳᵈ person": "third-person",
2289 "middle/passive": "middle passive",
2290 "present participle or gerund": "present participle gerund",
2291 "(simple tenses)": "",
2292 "(compound tenses)": "multiword-construction",
2293 "past anterior": "past anterior",
2294 "conditional perfect": "conditional perfect",
2295 "middle": "middle",
2296 "Indefinite": "indefinite",
2297 "Definite": "definite",
2298 "1st-person singular": "first-person singular",
2299 "2nd-person singular": "second-person singular",
2300 "3rd-person singular": "third-person singular",
2301 "1st-person plural": "first-person plural",
2302 "2nd-person plural": "second-person plural",
2303 "3rd-person plural": "third-person plural",
2304 "derivations": "",
2305 "subject": "subjective",
2306 "object": "objective",
2307 "full": "stressed",
2308 "pred.": "predicative",
2309 "2nd person archaic or regiolectal": "second-person archaic dialectal",
2310 "m-s1": "", # Icelandic ['-lingur', '-hlaðningur']
2311 r"Tense \ Voice": "",
2312 "Strong declension": "strong",
2313 "gender": "",
2314 "Weak declension": "weak",
2315 "Bare forms (no plural form of this noun)": "indefinite no-plural",
2316 "Positive declarative": "",
2317 "imperfective participle": "imperfective participle",
2318 "personal": "personal",
2319 "future participle": "future participle",
2320 "personal participle": "personal participle",
2321 "way of doing": "adverbial",
2322 "aorist": "aorist",
2323 "imperfective": "imperfective",
2324 "perfective": "perfective",
2325 "inferential": "inferential",
2326 "progressive": "progressive",
2327 "necessitative": "necessitative",
2328 "Positive interrogative": "interrogative",
2329 "Negative declarative": "negative",
2330 "Negative interrogative": "negative interrogative",
2331 "m6": "", # Faroese ['-gustur', '-lingur']
2332 "indefinite forms, (trajta të pashquara)": "indefinite",
2333 "definite forms, (trajta të shquara)": "definite",
2334 "singular (numri njëjës)": "singular",
2335 "plural (numri shumës)": "plural",
2336 "nominative (emërore)": "nominative",
2337 "accusative (kallëzore)": "accusative",
2338 "genitive (gjinore), (i/e/të/së)": "genitive",
2339 "dative (dhanore)": "dative",
2340 "ablative (rrjedhore)": "ablative",
2341 "notes": "",
2342 "m-w1": "", # Icelandic ['-isti', '-ismi']
2343 "masculine animate": "masculine animate",
2344 "Masculine singular": "masculine singular",
2345 "Neuter singular": "neuter singular",
2346 "n-s": "", # Icelandic ['-leysi']
2347 "singular (vienskaitlis)": "singular",
2348 "nominative (nominatīvs)": "nominative",
2349 "accusative (akuzatīvs)": "accusative",
2350 "genitive (ģenitīvs)": "genitive",
2351 "dative (datīvs)": "dative",
2352 "instrumental (instrumentālis)": "instrumental",
2353 "locative (lokatīvs)": "locative",
2354 "vocative (vokatīvs)": "vocative",
2355 "past perfect": "past perfect",
2356 "plural only": "plural-only",
2357 "m pers": "masculine personal",
2358 "other": "",
2359 "f-w1": "", # Icelandic ['-ína']
2360 "Supine": "supine",
2361 "Imper. plural": "imperative plural",
2362 "Ind. plural": "indicative plural",
2363 "-skur a24": "", # Faroese ['-skur']
2364 "Singular (eintal)": "singular",
2365 "Nominative (hvørfall)": "nominative",
2366 "Accusative (hvønnfall)": "accusative",
2367 "Dative (hvørjumfall)": "dative",
2368 "Genitive (hvørsfall)": "genitive",
2369 "Plural (fleirtal)": "plural",
2370 "Original form": "", # XXX Latin ['-bo']
2371 "Derived form": "", # XXX Latin ['-bo']
2372 "Present active indicative (third conjugation)": "present active indicative conjugation-3",
2373 "Present active subjunctive": "present active subjunctive",
2374 "Present passive indicative": "present passive indicative",
2375 "Present passive subjunctive": "present passive subjunctive",
2376 "f1": "", # Faroese ['-isma']
2377 "anterior adverbial participle": "anterior adverbial participle",
2378 "Plural only": "plural-only",
2379 "m1": "", # Faroese ['-ari']
2380 "f2": "", # Faroese ['-d']
2381 "m. plural": "masculine plural",
2382 "n./f. plural": "neuter feminine plural",
2383 "1ˢᵗ person inclusive": "first-person inclusive",
2384 "1ˢᵗ person exclusive": "first-person exclusive",
2385 "hortative": "hortative",
2386 "reciprocal": "reciprocal",
2387 "Reciprocal": "reciprocal",
2388 "Preesens": "present",
2389 "coactive": "coactive",
2390 "objective": "objective",
2391 "subsuntive": "subsuntive",
2392 "relative": "relative",
2393 "autonomous": "autonomous",
2394 "past habitual": "past habitual",
2395 "Habituals": "habitual",
2396 "n gender": "neuter",
2397 "Feminine singular": "feminine singular",
2398 "Root word": "root",
2399 "Aspect": "",
2400 "Complete": "completive",
2401 "Progressive": "progressive",
2402 "Contemplative": "contemplative",
2403 "Masculine o-stem": "masculine stem",
2404 "ergative": "ergative",
2405 "Ergative": "ergative",
2406 "prosecutive": "prosecutive",
2407 "equative": "equative",
2408 "Verbal forms": "",
2409 "Conditional I": "conditional conditional-i",
2410 "conditional I": "conditional conditional-i",
2411 "Conditional II": "conditional conditional-ii",
2412 "conditional II": "conditional conditional-ii",
2413 "Active past participle": "active past participle",
2414 "Objective": "objective",
2415 "Objective Genitive": "objective genitive",
2416 "often only in the singular": "often singular-only",
2417 "Common singular": "common-gender singular",
2418 "common(noun)": "common-gender",
2419 "neuter(noun)": "neuter",
2420 "masculine (person)": "masculine person",
2421 "feminine (person)": "feminine person",
2422 "Masculine plural": "masculine plural",
2423 "modern": "",
2424 "archaic / formal": "archaic formal",
2425 "All": "",
2426 "str.": "stressed",
2427 "1st person singular": "first-person singular",
2428 "2nd person singular (informal)": "second-person singular informal",
2429 "2nd person singular (familiar)": "second-person singular familiar",
2430 "2nd person singular (polite)": "second-person singular polite",
2431 "2nd person singular (formal)": "second-person singular formal",
2432 "3rd person singular": "third-person singular",
2433 "3rd person singular (m.)": "third-person singular masculine",
2434 "3rd person singular (f.)": "third-person singular feminine",
2435 "3rd person singular (n.)": "third-person singular neuter",
2436 "Present verbal adverb": "present adverbial",
2437 "Past verbal adverb": "past adverbial",
2438 "disused": "",
2439 "all genders": "",
2440 "number & gender": "",
2441 "strong declension (without article)": "strong without-article",
2442 "weak declension (with definite article)": "weak definite includes-article",
2443 "mixed declension (with indefinite article)": "mixed indefinite includes-article",
2444 "inanimate animate": "animate inanimate",
2445 "Informal": "informal",
2446 "modern / informal": "informal",
2447 "i": {
2448 "lang": [
2449 "German",
2450 "Cimbrian",
2451 ],
2452 "then": "subjunctive subjunctive-i",
2453 "else": {
2454 "if": "subjunctive",
2455 "then": "subjunctive-i",
2456 "else": {
2457 "lang": ["Tagalog", "Assamese"],
2458 "then": "",
2459 },
2460 },
2461 },
2462 "ii": {
2463 "lang": [
2464 "German",
2465 "Cimbrian",
2466 ],
2467 "then": "subjunctive subjunctive-ii",
2468 "else": {
2469 "if": "subjunctive",
2470 "then": "subjunctive-ii",
2471 },
2472 },
2473 "definite forms": "definite",
2474 "1ˢᵗ person possessive forms (my)": "possessive first-person",
2475 "2ⁿᵈ person possessive forms (your)": "possessive second-person",
2476 "oblique": "oblique",
2477 "direct": "direct",
2478 "Construct": "construct",
2479 "Negative": "negative",
2480 "auxiliary": "auxiliary",
2481 "Conjunctive": "conjunctive",
2482 "Perfective": "perfective",
2483 "Stem forms": "stem",
2484 "Continuative": "continuative",
2485 "Continuative (連用形)": "continuative",
2486 "Terminal (終止形)": "terminative",
2487 "Attributive (連体形)": "attributive",
2488 "Imperative (命令形)": "imperative",
2489 "Imperfective (未然形)": "imperfective",
2490 "Hypothetical (仮定形)": "hypothetical",
2491 "Terminal": "terminative",
2492 "Attributive": "attributive",
2493 "Volitional": "volitional",
2494 "Imperfective": "imperfective",
2495 "Hypothetical": "hypothetical",
2496 "Negative continuative": "negative continuative",
2497 "Formal": "formal",
2498 "Hypothetical conditional": "hypothetical conditional",
2499 "1st singular": "first-person singular",
2500 "2nd singular": "second-person singular",
2501 "3rd singular": "third-person singular",
2502 "1st plural": "first-person plural",
2503 "2nd plural": "second-person plural",
2504 "3rd plural": "third-person plural",
2505 "benefactive": "benefactive",
2506 "future in the past": "past-future",
2507 "Passive past participle": "passive past participle",
2508 "associative": "associative",
2509 "distributive": "distributive",
2510 "exclusive": "exclusive",
2511 "future i": "future future-i",
2512 "subjunctive i": "subjunctive subjunctive-i",
2513 "subjunctive ii": "subjunctive subjunctive-ii",
2514 "future ii": "future future-ii",
2515 "л-participles": "participle",
2516 "verbal adjective m.sg.": "masculine singular adjectival",
2517 "verbal adverb": "adverbial",
2518 "Compound tenses": "multiword-construction",
2519 "има-perfect": "има perfect",
2520 "има-pluperfect": "има pluperfect",
2521 "има-perfect reported": "има perfect reported",
2522 "има-future": "има future",
2523 "има-future in the past": "има future past",
2524 "future reported": "future reported",
2525 "има-future reported": "има future reported",
2526 "има-conditional": "има conditional",
2527 "uninflected": "uninflected",
2528 "inflected": "inflected",
2529 # XXX pending removal; the participle marking is in sense
2530 # "predicative/adverbial": {
2531 # "lang": "Dutch",
2532 # "pos": "verb",
2533 # "then": ["participle predicative", "participle adverbial"],
2534 # "else": "predicative adverbial",
2535 # },
2536 "predicative/adverbial": "predicative adverbial",
2537 "m./f. sing.": "masculine feminine singular",
2538 "n. sing.": "neuter singular",
2539 "masculine (vīriešu dzimte)": "masculine",
2540 "feminine (sieviešu dzimte)": "feminine",
2541 "plural (daudzskaitlis)": "plural",
2542 "archaic plural": "archaic plural",
2543 "Non-past": "non-past",
2544 "Interrogative": "interrogative",
2545 "Assertive": "assertive",
2546 "Cause/Reason": "causative",
2547 "Contrast": "contrastive",
2548 "Conjunction": "conjunctive",
2549 "Condition": "conditional",
2550 "Verbal nouns": "noun-from-verb",
2551 "Past-tense verbal nouns": "past noun-from-verb",
2552 "Determiners": "determiner",
2553 "simple perfect": "perfect",
2554 "Notes": {
2555 "lang": "Assamese",
2556 "then": "dummy-remove-this-cell",
2557 "else": "dummy-skip-this",
2558 },
2559 # ~ "Notes": "dummy-ignore-skipped",
2560 "postpositions taking a dative case": "postpositional with-dative",
2561 "postpositions taking a genitive case": "postpositional with-genitive",
2562 "postpositions taking an instrumental case": "postpositional with-instrumental",
2563 "postpositions taking an adverbial case": "postpositional with-adverb",
2564 "Motive": "motive-form",
2565 "zu-infinitive": "infinitive infinitive-zu",
2566 "active participle": "active participle",
2567 "active voice": "active",
2568 "Active voice ➤ — Imperfective aspect": "active imperfective",
2569 "Active voice ➤ — Imperfective aspect ➤": "active imperfective",
2570 "Active voice ➤": "active",
2571 "Passive voice ➤": "passive",
2572 "Active voice": "active",
2573 "Passive voice": "passive",
2574 "Imperfective aspect ➤": "imperfective",
2575 "Perfective aspect ➤": "perfective",
2576 "Imperfective aspect": "imperfective",
2577 "Perfective aspect": "perfective",
2578 "Perfect aspect ➤": "perfective",
2579 "Perfect aspect": "perfective",
2580 "Present perfect ➤": {
2581 "lang": "Greek",
2582 "then": "dummy-skip-this", # e.g περπατάω/Greek
2583 },
2584 "Past perfect ➤": {
2585 "lang": "Greek",
2586 "then": "dummy-skip-this", # e.g περπατάω/Greek
2587 },
2588 "Future perfect ➤": {
2589 "lang": "Greek",
2590 "then": "dummy-skip-this", # e.g περπατάω/Greek
2591 },
2592 "Indicative mood ➤": "indicative",
2593 "Past tenses ➤": {
2594 "lang": "Greek",
2595 "then": "", # tense column follows
2596 },
2597 "Non-past tenses ➤": "",
2598 "Dependent ➤": "dependent",
2599 "Dependent": "dependent",
2600 "dependent": "dependent", # immee/Manx
2601 "Present participle➤": "present participle",
2602 "Perfect participle➤": "past participle",
2603 "Nonfinite form➤": {
2604 "lang": "Greek",
2605 "then": "infinitive-aorist",
2606 },
2607 "Subjunctive mood ➤": {
2608 "lang": "Greek",
2609 "then": "subjunctive dummy-tense",
2610 "else": "subjunctive",
2611 },
2612 "Imperative mood ➤": {
2613 "lang": "Greek",
2614 "then": "imperative dummy-tense",
2615 "else": "imperative",
2616 },
2617 "Imperative mood": {
2618 "lang": "Greek",
2619 "then": "imperative dummy-tense",
2620 "else": "imperative",
2621 },
2622 "Subjunctive mood": {
2623 "lang": "Greek",
2624 "then": "subjunctive dummy-tense",
2625 "else": "subjunctive",
2626 },
2627 "Present ➤": "present",
2628 "Imperfect ➤": "imperfect",
2629 "Simple past ➤": "past",
2630 "Future ➤": "future",
2631 "Future tenses ➤": "future",
2632 "Continuous ➤": "progressive",
2633 "Simple ➤": "",
2634 "Present participle ➤": "present participle",
2635 "Simple past": "past",
2636 "Habitual": "habitual",
2637 "passive participle": "passive participle",
2638 "passive voice": "passive",
2639 "singular (жекеше)": "singular",
2640 "plural (көпше)": "plural",
2641 "nominative (атау септік)": "nominative",
2642 "genitive (ілік септік)": "genitive",
2643 "dative (барыс септік)": "dative",
2644 "accusative (табыс септік)": "accusative",
2645 "locative (жатыс септік)": "locative",
2646 "ablative (шығыс септік)": "ablative",
2647 "instrumental (көмектес септік)": "instrumental",
2648 "compound tenses": "multiword-construction",
2649 "Sentence-final forms": "sentence-final",
2650 "Connective forms": "connective",
2651 "Noun and determiner forms": "",
2652 "Verbal Noun": "noun-from-verb",
2653 "count form": "count-form",
2654 "infinitive (nafnháttur)": "infinitive",
2655 "supine (sagnbót)": "supine",
2656 "present participle (lýsingarháttur nútíðar)": "present participle",
2657 "indicative (framsöguháttur)": "indicative",
2658 "subjunctive (viðtengingarháttur)": "subjunctive",
2659 "present (nútíð)": "present",
2660 "past (þátíð)": "past",
2661 "imperative (boðháttur)": "past",
2662 "Forms with appended personal pronoun": "pronoun-included",
2663 "Sentence-final forms with honorific": "sentence-final honorific",
2664 "Connective forms with honorific": "connective honorific",
2665 "Noun and determiner forms with honorific": "honorific",
2666 "Hortative": "hortative",
2667 "singular (uncountable)": "singular uncountable",
2668 "absolute": "absolute",
2669 "Positive absolute": "positive absolute",
2670 "Negative absolute": "negative absolute",
2671 "singular (singulare tantum)": "singular singular-only",
2672 "Nom. sg.": "nominative singular",
2673 "Gen. sg.": "genitive singular",
2674 "nom. sing.": "nominative singular",
2675 "gen. sing.": "genitive singular",
2676 "Non-finite forms": "dummy-mood",
2677 "1st singular я": "first-person singular",
2678 "second-person": "second-person",
2679 "4th person": "fourth-person",
2680 "invertive": "invertive",
2681 "Simple finite forms": "finite-form",
2682 "Positive form": "positive",
2683 "Complex finite forms": "dummy-reset-headers", # Reset
2684 "2nd singular ти": "second-person singular",
2685 "3rd singular він / вона / воно": "third-person singular",
2686 "1st plural ми": "first-person plural",
2687 "2nd plural ви": "second-person plural",
2688 "3rd plural вони": "third-person plural",
2689 "first-person": "first-person",
2690 "plural ми / ви / вони": "plural",
2691 "masculine я / ти / він": "masculine",
2692 "feminine я / ти / вона": "feminine",
2693 "neuter воно": "neuter",
2694 "vocative form": "vocative",
2695 "Uncountable": "uncountable",
2696 "definite unspecified": "definite unspecified",
2697 "definite proximal": "definite proximal",
2698 "definite distal": "definite distal",
2699 "informal": "informal",
2700 "f gender": "feminine",
2701 "simple tenses": "",
2702 "present indicative": "present indicative",
2703 "ñuqap (my)": "first-person singular",
2704 "qampa (your)": "second-person singular",
2705 "paypa (his/her/its)": "third-person singular",
2706 "ñuqanchikpa (our(incl))": "first-person plural inclusive",
2707 "ñuqaykup (our(excl))": "first-person plural exclusive",
2708 "qamkunap (your(pl))": "second-person plural",
2709 "paykunap (their)": "third-person plural",
2710 "tense": "",
2711 "m.": "masculine",
2712 "f.": "feminine",
2713 "Stem": "stem",
2714 "aorist stem": "stem",
2715 "pos.": "positive",
2716 "neg.": "negative",
2717 "future perfect in the past": "future perfect past",
2718 "renarrative": "renarrative",
2719 "present and imperfect": ["present", "imperfect"],
2720 "future and future in the past": ["future", "future past"],
2721 "present and past perfect": ["present", "past perfect"],
2722 "future perfect and future perfect in the past": [
2723 "future perfect",
2724 "future past perfect",
2725 ],
2726 "dubitative": "dubitative",
2727 "conclusive": "conclusive",
2728 "f-s2": "", # Icelandic ['bölvun', 'létteind', 'dvöl']
2729 "Indicative mood": "indicative",
2730 "2,3 sg, 1,2,3 pl": {
2731 "lang": "Greek",
2732 "then": "dummy-skip-this", # used in περπατάω/Greek
2733 },
2734 "Present perfect": "present perfect",
2735 "Past perfect": "past perfect",
2736 "Future perfect": "future perfect",
2737 "Inflected colloquial forms": "colloquial",
2738 "adjective active participle": "adjective active participle",
2739 "adverbial active participle": "adverbial active participle",
2740 "nominal active participle": "noun-from-verb active participle",
2741 "plural unknown": "plural unknown",
2742 "Contrafactual": "counterfactual",
2743 "finite forms": "finite-form",
2744 "Indefinite forms": "indefinite",
2745 "Definite forms": "definite",
2746 "numeral": "numeral",
2747 "non-numeral (plural)": "non-numeral plural",
2748 "Strong (indefinite) inflection": "strong indefinite",
2749 "Weak (definite) inflection": "weak definite",
2750 "directive": "directive",
2751 "destinative": "destinative",
2752 "Regular": "",
2753 "PERFECTIVE": "perfective",
2754 "Present passive": "present passive",
2755 "1st dual": "first-person dual",
2756 "2nd dual": "second-person dual",
2757 "Undeclined": "",
2758 "Oblique Infinitive": "oblique infinitive",
2759 "Prospective Agentive": "prospective agentive",
2760 "prospective": "prospective",
2761 "non-prospective": "non-prospective",
2762 "Adjectival": "adjectival",
2763 "մեք": "first-person plural",
2764 "նոքա": "third-person plural",
2765 "imperatives": "imperative",
2766 "cohortative": "cohortative",
2767 "prohibitive": "prohibitive",
2768 "A-stem": "",
2769 "continuous": "continuative",
2770 "f-s1": "", # Icelandic ['blæðing', 'Sigríður', 'líkamsræktarstöð']
2771 "+": "positive",
2772 "Unknown": "unknown",
2773 "Simple": "",
2774 "simple": {
2775 "lang": ["English"],
2776 "then": "dummy-mood",
2777 "else": "",
2778 },
2779 "formal": "formal",
2780 "INDICATIVE (īstenības izteiksme)": "indicative",
2781 "IMPERATIVE (pavēles izteiksme)": "imperative",
2782 "Present (tagadne)": "present",
2783 "Past (pagātne)": "past",
2784 "Future (nākotne)": "future",
2785 "1st pers. sg.": "first-person singular",
2786 "2nd pers. sg.": "second-person singular",
2787 "3rd pers. sg.": "third-person singular",
2788 "1st pers. pl.": "first-person plural",
2789 "2nd pers. pl.": "second-person plural",
2790 "3rd pers. pl.": "third-person plural",
2791 "RENARRATIVE (atstāstījuma izteiksme)": "renarrative",
2792 "Present Active 1 (Adj.)": "participle participle-1 present active adjectival",
2793 "Present Active 2 (Adv.)": "participle participle-2 present active adverbial",
2794 "Present Active 3 (Adv.)": "participle participle-3 present active adverbial",
2795 "Present Active 4 (Obj.)": "participle participle-4 present active",
2796 "CONDITIONAL (vēlējuma izteiksme)": "conditional",
2797 "Past Active": {
2798 "if": "participle",
2799 "then": "participle past active", # saprast/Latvian/Verb
2800 "else": "past active",
2801 },
2802 "Present Passive": {
2803 "if": "participle",
2804 "then": "participle present passive", # saprast/Latvian/Verb
2805 "else": "present passive",
2806 },
2807 "Past Passive": {
2808 "if": "participle",
2809 "then": "participle past passive",
2810 "else": "past passive",
2811 },
2812 "DEBITIVE (vajadzības izteiksme)": "debitive",
2813 "NOMINAL FORMS": "dummy-mood",
2814 "Infinitive (nenoteiksme)": "infinitive",
2815 "Conjunctive 1": "conjunctive conjunctive-1",
2816 "Conjunctive 2": "conjunctive conjunctive-2",
2817 "Nonfinite form": "dummy-mood",
2818 "Perfect participle": "perfect participle",
2819 "perfect progressive": "perfect progressive",
2820 "Recently Completive": "completive past past-recent",
2821 "subject non-past participle": "subjective non-past participle",
2822 "subject past participle": "subjective past participle",
2823 "subject future definite participle": "subjective future definite participle",
2824 "non-subject participle": "non-subject participle",
2825 "general temporal participle": "general temporal participle",
2826 "participle of intensification": "intensifier participle",
2827 "specific temporal participle": "specific temporal participle",
2828 "modal participle": "modal participle",
2829 "perfect 1": "perfect perfect-i",
2830 "perfect 2": "perfect perfect-ii",
2831 "future-in-the-past": "past-future",
2832 "obligational": "obligative",
2833 "evidential": "evidential",
2834 "converb": "converb",
2835 "negative potential": "negative potential",
2836 "adjective passive participle": "adjectival passive participle",
2837 "adverbial passive participle": "adverbial passive participle",
2838 "nominal passive participle": "noun-from-verb passive participle",
2839 "IMPERFECTIVE": "imperfective",
2840 "Non-Aspectual": "non-aspectual",
2841 "PERF": "perfect",
2842 "FUT": "future",
2843 "PST": "past",
2844 "PRS": "present",
2845 "Presumptive": "presumptive",
2846 "PRS PST": "present past",
2847 "PRS PST FUT": "present past future",
2848 "agentive": "agentive",
2849 "FUTURE": "future",
2850 "Jussive": "jussive",
2851 "Root": {
2852 "lang": "Limburgish", # beer/Limburgish
2853 "then": "",
2854 "else": "root",
2855 },
2856 "Involuntary": "involuntary", # Verb form, e.g., khitan/Indonesian
2857 "part participle": "past participle",
2858 "direct present": "direct present",
2859 "indirect present": "indirect present",
2860 "singular/plural": "singular plural",
2861 "personal infinitive": "personal infinitive",
2862 "Class 1": "class-1",
2863 "Class 2": "class-2",
2864 "Class 3": "class-3",
2865 "Class 4": "class-4",
2866 "Class 5": "class-5",
2867 "Class 6": "class-6",
2868 "Class 7": "class-7",
2869 "Class 8": "class-8",
2870 "Class 9": "class-9",
2871 "Class 10": "class-10",
2872 "Class 11": "class-11",
2873 "Class 12": "class-12",
2874 "Class 13": "class-13",
2875 "Class 14": "class-14",
2876 "Class 15": "class-15",
2877 "Class 16": "class-16",
2878 "Class 17": "class-17",
2879 "Class 18": "class-18",
2880 "Class 2 strong": "class-2 strong",
2881 "Class 4 strong": "class-4 strong",
2882 "Class 6 strong": "class-6 strong",
2883 "Class 7 strong": "class-7 strong",
2884 "imperfect subjunctive": "imperfect subjunctive",
2885 "dative-locative": "dative locative",
2886 "directional": "directional",
2887 "possessive pronoun": "possessive pronoun",
2888 "possessive determiner": "possessive determiner",
2889 "genderless, nonspecific (formal)": "gender-neutral formal",
2890 "genderless": "gender-neutral",
2891 "standard formal": "formal",
2892 "archaic informal": "archaic informal",
2893 "Gen/Dat": "genitive dative",
2894 "Nom/Acc": "nominative accusative",
2895 "uncountable": "uncountable",
2896 "gender f": "feminine",
2897 "Present subjunctive": "present subjunctive",
2898 "Future progressive presumptive": "future progressive presumptive",
2899 "Past progressive": "past progressive",
2900 "Negative present progressive": "negative present progressive",
2901 "1.": "first-person",
2902 "2.": "second-person",
2903 "3. m": "third-person masculine",
2904 "3. f": "third-person feminine",
2905 "3. n": "third-person neuter",
2906 "1st person plural inclusive": "first-person plural inclusive",
2907 "1st person plural exclusive": "first-person plural exclusive",
2908 "3rd person plural participle": "third-person plural participle",
2909 "Indefinite subject (passive)": "passive",
2910 "3rd person pl": "third-person plural",
2911 "2nd person pl": "second-person plural",
2912 "3rd person dual": "third-person dual",
2913 "2nd person dual": "second-person dual",
2914 "1st person dual": "first-person dual",
2915 "2nd person sg": "second-person singular",
2916 "3rd-person sg": "third-person singular",
2917 "perfective aorist": "perfective aorist",
2918 "f-w2": "", # málfræði/Icelandic
2919 "f-s3": "", # kvaðratrót/Icelandic
2920 "m-s2": "",
2921 "m-s3": "",
2922 "3rd person plural (3p) Wiinawaa": "third-person plural",
2923 "2nd-person plural (2p) Giinawaa": "second-person plural",
2924 "1st person plural inclusive (21) Giinawind": "first-person plural inclusive",
2925 "1st person plural exclusive (1p) Niinawind": "first-person plural exclusive",
2926 "Indefinite (X)": "indefinite",
2927 "Obviative (3')": "third-person obviative",
2928 "1st person (1s) Niin": "first-person singular",
2929 "2nd person (2s) Giin": "second-person singular",
2930 "3rd person (3s) Wiin": "third-person singular",
2931 "1st sg": "first-person singular",
2932 "2nd sg": "second-person singular",
2933 "3rd sg": "third-person singular",
2934 "1st pl": "first-person plural",
2935 "2nd pl": "second-person plural",
2936 "3rd pl": "third-person plural",
2937 "2nd sg neuter": "second-person singular neuter",
2938 "2nd sg for": "second-person singular formal",
2939 "Mood / Tense": "",
2940 "hypothetic": "hypothetical",
2941 "Indefinite feminine and masculine gender": "indefinite feminine masculine",
2942 "contrafactual": "counterfactual",
2943 "presumptive": "presumptive",
2944 "habitual": "habitual",
2945 "2ⁿᵈ person*": "second-person",
2946 "мынем (“my”)": "first-person singular possessive",
2947 "Primary stem": "stem stem-primary",
2948 "Secondary stem": "stem stem-secondary",
2949 "intentive": "intentive",
2950 "serial": "habitual",
2951 "characteristic": "adverbial", # patjaṉi/Pitjantjatjara
2952 "imperative continuous": "imperative continuative",
2953 "precursive": "precursive",
2954 "limitative": "limitative",
2955 "circumstantial focalising": "circumstantial focalising",
2956 "focalising precursive": "focalising precursive",
2957 "focalising": "focalising",
2958 "expectative": "expectative",
2959 "nominative (ప్రథమా విభక్తి)": "nominative",
2960 "genitive": "genitive",
2961 "locative": "locative",
2962 "1st मैं": "first-person",
2963 "basic": "",
2964 "Preterite I": "preterite preterite-i",
2965 "Preterite II": "preterite preterite-ii",
2966 "Pluperfect I": "pluperfect pluperfect-i",
2967 "Pluperfect II": "pluperfect pluperfect-ii",
2968 "Durative preterite": "durative preterite",
2969 "Frequentative preterite": "frequentative preterite",
2970 "Auxiliary": "auxiliary",
2971 "Nominative Accusative": "nominative accusative",
2972 "obviative singular (0')": "obviative singular",
2973 "singular (0')": "singular",
2974 "Indefinite masculine gender": "indefinite masculine",
2975 "Definite masculine gender": "definite masculine",
2976 "SUBJECT": "subjective",
2977 "Singular OBJECT": {
2978 "lang": "Pashto",
2979 "then": "object-singular object-concord",
2980 "else": "singular objective",
2981 },
2982 "Plural OBJECT": {
2983 "lang": "Pashto",
2984 "then": "object-plural object-concord",
2985 "else": "plural objective",
2986 },
2987 "indefinite forms": "indefinite",
2988 "2ⁿᵈ person singular": "second-person singular",
2989 "2ⁿᵈ person plural": "second-person plural",
2990 "3ʳᵈ person [sing. and plural]": "third-person singular plural",
2991 "Actor": {"lang": "Tagalog", "then": "trigger-actor"},
2992 "Object": {"lang": "Tagalog", "then": "trigger-object"},
2993 "Locative": {
2994 "lang": "Tagalog",
2995 "then": "trigger-locative",
2996 "else": "locative",
2997 },
2998 "Instrument": {
2999 "lang": "Tagalog",
3000 "then": "trigger-instrument",
3001 "else": "instrumental",
3002 },
3003 "Causative": {
3004 "lang": "Tagalog",
3005 "then": "trigger-causative",
3006 "else": "causative",
3007 },
3008 "Referential": {"lang": "Tagalog", "then": "trigger-referential"},
3009 "1ˢᵗ person m": "first-person masculine",
3010 "1ˢᵗ person f": "first-person feminine",
3011 "2ⁿᵈ person m": "second-person masculine",
3012 "2ⁿᵈ person f": "second-person feminine",
3013 "Tense/Mood": "",
3014 "masculine object": "masculine objective",
3015 "feminine object": "feminine objective",
3016 "neuter object": "neuter objective",
3017 "singular subject": "singular subjective",
3018 "plural subject": "plural subjective",
3019 "Allative I": "allative allative-i",
3020 "Allative II": "allative allative-ii",
3021 "conditional active": "conditional active",
3022 "subjunctive active": "subjunctive active",
3023 "Concessive": "concessive",
3024 "Preparative": "preparative",
3025 "Durative": "durative",
3026 "Subordinative (Past gerund)": "past gerund",
3027 "Coordinative (Infinitive)": "infinitive",
3028 "Converbs": "converb",
3029 "Optative": "optative",
3030 "Polite": "polite",
3031 "Strong": "emphatic",
3032 "Normal": "",
3033 "Present-future": "future",
3034 "habitual/conditional past": "habitual conditional past",
3035 "simple past": "past",
3036 "present continuous": "present continuative",
3037 "simple present": "present",
3038 "polite": "polite",
3039 "familiar": "familiar",
3040 "very familiar": "familiar",
3041 "PAST TENSE": "past",
3042 "3rd person m": "third-person masculine",
3043 "3rd person f": "third-person feminine",
3044 "3rd m": "third-person masculine",
3045 "3rd m.": "third-person masculine", # hug/Manx
3046 "gender m": "masculine",
3047 "dative form": "dative",
3048 "continuative": "continuative",
3049 "circumposition": "circumposition",
3050 "singular and plural": "singular plural",
3051 "accusative indefinite-dative": "accusative indefinite dative",
3052 "Literary forms": "literary",
3053 "Case \\ Number": "",
3054 "masc./fem.": "masculine feminine",
3055 "gender n": "neuter",
3056 "m or n": "masculine neuter",
3057 "actor I": "actor-i",
3058 "Sociative": "sociative",
3059 "Present negative": "present negative",
3060 "Possessive determiner": "possessive determiner",
3061 "Proximal": "proximal",
3062 "ergative-instrumental": "ergative instrumental",
3063 "Plural/Distributive": "plural distributive",
3064 "stressed": "stressed",
3065 "vir pl": "virile plural",
3066 "poss. adj.": "possessive adjective",
3067 "Gender": "",
3068 "All numbers": "",
3069 "m obl, pl": "masculine oblique plural",
3070 "m & n": "masculine neuter",
3071 "dative-lative-locative": "dative lative locative",
3072 "aspect": "",
3073 "Third person m": "third-person masculine",
3074 "Dual virile": "dual virile",
3075 "Accusative /Genitive": "accusative genitive",
3076 "1st c. sg. (me)": "first-person singular",
3077 "Future tense": "future",
3078 "👤 singular": "singular",
3079 "👥 dual": "dual",
3080 "👤👥👥 plural": "plural",
3081 "Feminine i/ō-stem": "feminine stem",
3082 "past indicative": "past indicative",
3083 "Irregular with past tense": "irregular",
3084 "Abs.": "absolute",
3085 "Conj.": "conjunct",
3086 "Rel.": "relative",
3087 "Positive relative": "positive relative",
3088 "Negative relative": "negative relative",
3089 "intentional": "intentive",
3090 "oblig": "obligative",
3091 "indef": "indefinite",
3092 "def": "definite",
3093 "perf": "perfective",
3094 "cont": "continuative",
3095 "comp": "completive",
3096 "simpl": "",
3097 "nominal non-finites": "noun-from-verb dummy-mood",
3098 "comitative": "comitative",
3099 "abessive": "abessive",
3100 "essive": "essive",
3101 "terminative": "terminative",
3102 "translative": "translative",
3103 "inessive": "inessive",
3104 "partitive": "partitive",
3105 "nominative": "nominative",
3106 "singulare tantum": "singular-only",
3107 "Absolutive": "absolutive",
3108 "Infinitival": "infinitive",
3109 "negatival complement": "negative",
3110 "complementary infinitive": "infinitive", # XXX what add gp/Egyptian
3111 "stative stem": "stative",
3112 "periphrastic imperfective": "imperfective",
3113 "periphrastic prospective": "prospective",
3114 "‘pseudoverbal’ forms": "",
3115 "suffix conjugation": "",
3116 "contingent": "contingent",
3117 "obligative": "obligative",
3118 "potentialis": "potential",
3119 "normal": "",
3120 "1ˢᵗ Perfect": "perfect-i",
3121 "2ⁿᵈ Perfect": "perfect-ii",
3122 "m. sing.": "masculine singular",
3123 "f. sing.": "feminine singular",
3124 "c. sing.": "common-gender singular",
3125 "pl.": "plural",
3126 "high-resp.": "formal deferential",
3127 "Conjugation type": "conjugation-type",
3128 "Injunctive": "injunctive",
3129 "Habitual participle": "habitual participle",
3130 "Future conditional": "future conditional",
3131 "condizionale passato": "past conditional", # ripromettersi/Italian
3132 "futuro anteriore": "future perfect", # ripromettersi/Italian
3133 "passato prossimo": "perfect", # ripromettersi/Italian
3134 "trapassato remoto": "preterite-perfect", # ripromettersi/Italian
3135 "trapassato prossimo": "past perfect", # ripromettersi/Italian
3136 "(♂)": "masculine",
3137 "Contingent": "contingent",
3138 "Reason": "reason",
3139 "Goal": "goal",
3140 "Agentive (emphatic)": "agentive emphatic",
3141 "Genitive infinitive": "genitive infinitive",
3142 "Conjugative": "conjugative",
3143 "Gerund Past participle Agentive": "gerund past participle agentive",
3144 "construct": "construct",
3145 "Form": "",
3146 "form": "",
3147 "Isolated forms": "",
3148 "isolated forms": "", # a ܡܘܙܐ/Assyrian Neo-Aramaic
3149 "Possessed": "possessed-form",
3150 "Unpossessed": "unpossessed-form",
3151 "past imperfective": "past imperfective",
3152 "past perfective": "past perfective",
3153 "Conjunct": "conjunct",
3154 "dir m s": "direct masculine singular",
3155 "m p obl m s": ["masculine plural", "oblique masculine singular"],
3156 "f s": "feminine singular",
3157 "f p": "feminine plural",
3158 "gerunds": "gerund",
3159 "perfect subjunctive": "perfect subjunctive",
3160 "future subjunctive": "future subjunctive",
3161 "screeves": "", # კვეთს/Georgian
3162 "second-person singular formal": "second-person singular formal",
3163 "second-person singular informal": "second-person singular informal",
3164 "first-person singular": "first-person singular",
3165 "possessive forms": "possessive",
3166 "Indirect": "indirect",
3167 "Direct": "direct",
3168 "Soft": "soft",
3169 "Hard": "hard",
3170 "Nasalization": "mutation-nasal",
3171 "soft": {
3172 "if": "mutation",
3173 "then": "mutation-soft",
3174 "else": {
3175 "lang": "Breton",
3176 "then": "mutation-soft",
3177 "else": "soft",
3178 },
3179 },
3180 "nasal": {
3181 "if": "mutation",
3182 "then": "mutation-nasal",
3183 },
3184 "aspirate": {
3185 "if": "mutation",
3186 "then": "mutation-aspirate",
3187 "else": {
3188 "lang": "Breton",
3189 "then": "mutation-aspirate",
3190 },
3191 },
3192 "mixed": {
3193 "if": "mutation",
3194 "then": "mutation-mixed",
3195 "else": "mixed",
3196 },
3197 "radical": {
3198 "if": "mutation",
3199 "then": "mutation-radical",
3200 },
3201 "Radical": {
3202 "if": "mutation",
3203 "then": "mutation-radical",
3204 },
3205 "with h-prothesis": {
3206 "if": "mutation",
3207 "then": "prothesis-h",
3208 },
3209 "with t-prothesis": {
3210 "if": "mutation",
3211 "then": "prothesis-t",
3212 },
3213 "Lenition": "lenition",
3214 "Eclipsis": "eclipsis",
3215 "+ object concord": "object-concord",
3216 "lative": "lative",
3217 "post./nom.": "postpositional", # XXX what is nom. ?
3218 "Measurement": {"lang": "Tagalog", "then": "trigger-measurement"},
3219 "past continuous": "past continuative",
3220 "with definite article": "definite includes-article",
3221 "with indefinite article": "indefinite includes-article",
3222 "(usually without article)": "usually-without-article",
3223 "Completive": "completive",
3224 "dative definite": "dative definite",
3225 "nominative definite": "nominative definite",
3226 "long nominative": "nominative",
3227 "Past subjunctive": "past subjunctive",
3228 "Prot.": "prototonic",
3229 "Deut.": "deuterotonic",
3230 "Imperfect": "imperfect",
3231 "Present indicative": "present indicative",
3232 "Passive pl.": "passive plural",
3233 "Passive sg.": "passive singular",
3234 "1st sg.": "first-person singular",
3235 "2nd sg.": "second-person singular",
3236 "3rd sg.": "third-person singular",
3237 "1st pl.": "first-person plural",
3238 "2nd pl.": "second-person plural",
3239 "3rd pl.": "third-person plural",
3240 "Indefinite feminine gender": "indefinite feminine",
3241 "Definite feminine gender": "definite feminine",
3242 "present participle¹ or gerund": "present participle gerund",
3243 "short forms": "short-form",
3244 "long forms": "long-form",
3245 "Negative adjective (un-…-able)": "negative participle",
3246 "Positive adjective (-able)": "participle",
3247 "Infinitive (archaic)": "infinitive archaic",
3248 "Subjunctive Mood": "subjunctive",
3249 "Conditional Mood": "conditional",
3250 "Indicative Mood": "indicative",
3251 "3rd person pl, 2nd p. pl formal": [
3252 "third-person plural",
3253 "third-person plural formal second-person-semantically",
3254 ],
3255 "2nd person pl informal": "second-person plural informal",
3256 "3rd person sg, 2nd p. sg formal": [
3257 "third-person singular",
3258 "third-person singular formal second-person-semantically",
3259 ],
3260 "Participle": "participle",
3261 "Past tense": "past",
3262 "Present tense": "present",
3263 "oblique/vocative": "oblique vocative",
3264 "3ʳᵈ person f": "third-person feminine",
3265 "3ʳᵈ person m": "third-person masculine",
3266 "Case/Form": "",
3267 "Positive Infinitive": "positive infinitive",
3268 "future converb I": "future converb converb-i",
3269 "future converb II": "future converb converb-ii",
3270 "perfective converb": "perfective converb",
3271 "simultaneous converb": "simultaneous converb",
3272 "imperfective converb": "imperfective converb",
3273 "dative and adverbial": ["dative", "adverbial"],
3274 "nominative genitive and instrumental": "nominative genitive instrumental",
3275 "singular unknown": "singular",
3276 "Plural of variety": "plural plural-of-variety",
3277 "dir. pl.": "direct plural",
3278 "dir. sg.": "direct singular",
3279 "Terminative": "terminative",
3280 "Desiderative": "desiderative",
3281 "mediopassive voice": "mediopassive",
3282 "past frequentative": "past frequentative",
3283 "Infinitives": {
3284 "default": "infinitive",
3285 "lang": "Swahili",
3286 "then": "dummy-section-header infinitive",
3287 },
3288 "Pronon": "",
3289 "म SING.": {"if": "first-person", "then": "singular"},
3290 "हामी PL.": {"if": "first-person", "then": "plural"},
3291 "तँ LOW-RESP. SING.": {"if": "second-person", "then": "singular impolite"},
3292 "तिमी MID-RESP.": {"if": "second-person", "then": "polite"},
3293 "ऊ LOW-RESP. SING.": {"if": "third-person", "then": "singular impolite"},
3294 "उनी MID-RESP.": {"if": "third-person", "then": "polite"},
3295 "तपाईं / ऊहाँ HIGH-RESP.": "formal deferential",
3296 "2ⁿᵈ & 3ʳᵈ": "second-person third-person",
3297 "plural only (plurale tantum)": "plural-only",
3298 "approximative": "approximative",
3299 "consecutive": "consecutive",
3300 "post-classical": "",
3301 "Active present participle": "active present participle",
3302 "Active perfect participle": "active perfect participle",
3303 "Passive perfect participle": "passive perfect participle",
3304 "active participle اِسْم الْفَاعِل": "active participle",
3305 "active voice الْفِعْل الْمَعْلُوم": "active",
3306 "singular الْمُفْرَد": "singular",
3307 "dual الْمُثَنَّى": "dual",
3308 "plural الْجَمْع": "plural",
3309 "1ˢᵗ person الْمُتَكَلِّم": "first-person",
3310 "2ⁿᵈ person الْمُخَاطَب": "second-person",
3311 "3ʳᵈ person الْغَائِب": "third-person",
3312 "past (perfect) indicative الْمَاضِي": "past perfective indicative",
3313 "non-past (imperfect) indicative الْمُضَارِع": # XXX remove me to check if I'm relevant
3314 "non-past imperfective indicative",
3315 # ^ This might have been changed in the wiktionary template:
3316 "non-past (imperfect) indicative الْمُضَارِع الْمَرْفُوع": # x تراجع/Arabic
3317 "non-past imperfective indicative",
3318 "subjunctive الْمُضَارِع الْمَنْصُوب": "subjunctive",
3319 "jussive الْمُضَارِع الْمَجْزُوم": "jussive",
3320 "imperative الْأَمْر": "imperative",
3321 "passive participle اِسْم الْمَفْعُول": "passive participle",
3322 "passive voice الْفِعْل الْمَجْهُول": "passive",
3323 "verbal noun الْمَصْدَر": "noun-from-verb",
3324 "verbal nouns الْمَصَادِر": "noun-from-verb",
3325 "strong declension": "strong",
3326 "weak declension": "weak",
3327 "Recently Complete": "completive past past-recent",
3328 "Recent past": "past past-recent",
3329 "Remote past": "past past-remote",
3330 "first singular": "first-person singular",
3331 "second singular": "second-person singular",
3332 "third singular": "third-person singular",
3333 "quotative": "quotative",
3334 "ma-infinitive": "infinitive infinitive-ma",
3335 "ma- infinitive": "infinitive infinitive-ma",
3336 "da-infinitive": "infinitive infinitive-da",
3337 "da- infinitive": "infinitive infinitive-da",
3338 "da-form": "verb-form-da",
3339 "des-form": "verb-form-des",
3340 "m gender": "masculine",
3341 "long": "long-form",
3342 "short": "short-form",
3343 "1st pers.": "first-person",
3344 "2nd pers.": "second-person",
3345 "3rd pers.": "third-person",
3346 "aorist (simple past)": "aorist",
3347 "aorist II (past perfect II)": "aorist aorist-ii",
3348 "admirative": "admirative",
3349 "Adverbial": "adverbial",
3350 "adjective": "adjectival",
3351 "neuter gender": "neuter",
3352 "number and gender": "",
3353 "attributive and/or after a declined word": "attributive",
3354 "independent as first declined word": "",
3355 "after a declined word": "attributive",
3356 "as first declined word": "",
3357 "singular only": "singular-only",
3358 "absolute superlative": "absolute superlative",
3359 "present subjunctive": "present subjunctive",
3360 "my": "possessive singular first-person",
3361 "your": "possessive singular plural second-person",
3362 "her/his/its": "possessive singular third-person",
3363 "our": "possessive plural first-person",
3364 "their": "possessive plural third-person",
3365 "nominal": "noun", # XXX or noun-from-something?
3366 "circumstantial": "circumstantial",
3367 "jussive": "jussive",
3368 "Singulative": "singulative",
3369 "singulative": "singulative",
3370 "Collective": "collective",
3371 "Paucal": "paucal",
3372 "stem": "stem",
3373 "resultative participle": "resultative participle",
3374 "subject participle": "subjective participle",
3375 "connegative converb": "connegative converb",
3376 "subjunctive singular": "subjunctive singular",
3377 "imperative singular": "imperative singular",
3378 "imperative sing.": "imperative singular",
3379 "imperative plural": "imperative plural",
3380 "imperative plur.": "imperative plural",
3381 "participle of necessity": "participle necessitative",
3382 "special": "special",
3383 "half-participle": "half-participle",
3384 "manner of action": "adverbial-manner",
3385 "mixed declension": "mixed",
3386 "Habitual Aspect": "habitual",
3387 "Perfective Aspect": "perfective",
3388 "Progressive Aspect": "progressive",
3389 "1ˢᵗ": "first-person",
3390 "2ⁿᵈ": "second-person",
3391 "3ʳᵈ": "third-person",
3392 "Negative Infinitive": "negative infinitive",
3393 "2nd person singular": "second-person singular",
3394 "present active participle": "present active participle",
3395 "past active aorist participle": "past active aorist participle",
3396 "past active imperfect participle": "past active imperfect participle",
3397 "past passive participle": "past passive participle",
3398 "adverbial participle": "adverbial participle",
3399 "adjectival participle": "adjectival participle",
3400 "perfect participle": "perfect participle",
3401 "definite subject form": "definite subjective",
3402 "definite object form": "definite objective",
3403 "durative sentence": "durative",
3404 "negated with": "negated-with",
3405 "non-durative sentence": "non-durative",
3406 "main clause": "main-clause",
3407 "subordinate clause": "subordinate-clause",
3408 "conjunctive": "conjunctive",
3409 "future conjunctive": "future conjunctive",
3410 "egressive": "egressive",
3411 "first singular yo": "first-person singular",
3412 "second singular tu": "second-person singular",
3413 "third singular él/elli": "third-person singular",
3414 "first plural nosotros/nós": "first-person plural",
3415 "second plural vosotros/vós": "second-person plural",
3416 "third plural ellos": "third-person plural",
3417 "First person": "first-person",
3418 "Second person": "second-person",
3419 "Third person": "third-person",
3420 "Very faml. & Inferior": "familiar impolite",
3421 "Familiar": "familiar",
3422 "Honorific": "honorific",
3423 "Non honorific": "",
3424 "Continuous": "continuative",
3425 "Others": "",
3426 "Other forms": "dummy-reset-headers", # Reset (είμαι/Greek/Verb)
3427 "Oblique": "oblique",
3428 "Demonstrative oblique": "demonstrative oblique",
3429 "♀": "feminine",
3430 "Class 1 weak": "class-1 weak",
3431 "Benefactive": "benefactive",
3432 "1sg": "first-person singular",
3433 "1pl": "first-person plural",
3434 "2sg": "second-person singular",
3435 "2pl": "second-person plural",
3436 "Irrealis": "irrealis",
3437 "Realis": "realis",
3438 "Contrasting conjunction": "contrastive",
3439 "Causal conjunction": "causative",
3440 "Conditional conjunction": "conditional",
3441 "Perfect tense": "perfect",
3442 "Perfect-continuative tense": "perfect continuative",
3443 "present indicative/future": "present future indicative",
3444 "imperfect (indicative/subjunctive)/ conditional": [
3445 "imperfect indicative subjunctive",
3446 "conditional",
3447 ],
3448 "verbal adjectives": "participle",
3449 "relative (incl. nominal / emphatic) forms": "relative",
3450 "Passive perfect particple": "passive perfect participle",
3451 "caritive": "caritive",
3452 "Caritive": "caritive",
3453 "Gerund & Past participle": ["gerund", "past participle"],
3454 "Pronoun": "",
3455 "nominative genitive instrumental": "nominative genitive instrumental",
3456 "dative adverbial": "dative adverbial",
3457 "♂": "masculine",
3458 "2nd singular ты": "second-person singular",
3459 "3rd singular ён / яна́ / яно́": "third-person singular",
3460 "1st plural мы": "first-person plural",
3461 "2nd plural вы": "second-person plural",
3462 "3rd plural яны́": "third-person plural",
3463 "plural мы / вы / яны́": "plural",
3464 "masculine я / ты / ён": "masculine",
3465 "feminine я / ты / яна́": "feminine",
3466 "neuter яно́": "neuter",
3467 "Imperfect indicative": "imperfect indicative",
3468 "Verbal of necessity": "necessitative",
3469 "without article": "without-article",
3470 "participle (a26)": "participle",
3471 "participle (a6)": "participle",
3472 "participle (a5)": "participle",
3473 "participle (a39)": "participle",
3474 "Definite feminine and masculine gender": "definite feminine masculine",
3475 "Neuter s-stem": "neuter",
3476 "2nd sg informal": "second-person singular informal",
3477 "2nd person plural (2p) Giinawaa": "second-person plural",
3478 "3rd person sg": "third-person singular",
3479 "Causative / Applicative": "causative applicative",
3480 "Lengadocian (Standard Occitan)": "Lengadocian",
3481 "Auvernhàs": "Auvernhàs", # Dialect of Occitan
3482 "Gascon": "Gascon", # Occitan
3483 "Lemosin": "Lemosin", # Occitan
3484 "Provençau": "Provençau", # Occitan
3485 "Old Saxon personal pronouns": "personal pronoun",
3486 "nominative / accusative": "nominative accusative",
3487 "situative": "situative",
3488 "oppositive": "oppositive",
3489 "multiplicative": "multiplicative",
3490 "temporal": "temporal",
3491 "Aorist": "aorist",
3492 "Illative": "illative",
3493 "superlative": "superlative",
3494 "aspect / mood": "",
3495 "impersonal participle": "impersonal participle",
3496 "action noun": "noun-from-verb",
3497 "Future passive participle": "future passive participle",
3498 "essive-instructive": "essive-instructive",
3499 "accusative-ablative": "accusative ablative",
3500 "plurale tantum": "plural-only",
3501 "Emphatic": "emphatic",
3502 "non-past": "non-past",
3503 "2nd person m": "second-person masculine",
3504 "2nd person pl formal": "second-person plural formal",
3505 "3rd singular m": "third-person singular masculine",
3506 "3rd dual": "third-person dual",
3507 "First-person": "first-person",
3508 "Second-person": "second-person", # sibi/Latin
3509 "Simple present / conditional": "present conditional",
3510 "Future progressive, presumptive": "future progressive presumptive",
3511 "Prolative I": "prolative",
3512 "infinitive I": "infinitive infinitive-i",
3513 "general accusative": "accusative",
3514 "nonpast": "non-past",
3515 "masculine/neuter": "masculine neuter",
3516 "Past Stem": "past stem",
3517 "Genitive-Dative": "genitive dative",
3518 "Present / future": "present future",
3519 "indefinite singular": "indefinite singular",
3520 "indirect": "indirect",
3521 "locative-qualitative": "locative-qualitative",
3522 "separative": "separative",
3523 "paucal": "paucal",
3524 "Tense": "",
3525 "Voice": "",
3526 "Plain infinitive": "infinitive",
3527 "Weak inflection": "weak",
3528 "common gender": {
3529 "if": "possessive",
3530 "lang": POSSESSIVE_POSSESSED_LANGS,
3531 "then": "possessed-common",
3532 "else": "common-gender",
3533 },
3534 "Common gender": {
3535 "if": "possessive",
3536 "lang": POSSESSIVE_POSSESSED_LANGS,
3537 "then": "possessed-common",
3538 "else": "common-gender",
3539 },
3540 "common": {
3541 "if": "possessive",
3542 "lang": POSSESSIVE_POSSESSED_LANGS,
3543 "then": "possessed-common",
3544 "else": "common-gender",
3545 },
3546 "archaic": "archaic",
3547 "either gender": "masculine feminine",
3548 "present stem": "present",
3549 "inclusive": "inclusive",
3550 "NORI (dative)": "dative",
3551 "DURATIVE": "durative",
3552 "nom./acc.": "nominative accusative",
3553 "acc.": "accusative",
3554 "FUTURE TENSE": "future",
3555 "OPTATIVE": "optative",
3556 "possessive m": "possessive masculine",
3557 "past progressive": "past progressive",
3558 "long infinitive": "infinitive infinitive-i-long",
3559 "l-participles": "l-participle",
3560 "L-participle": "l-participle",
3561 "l-participle": "l-participle",
3562 "Informal negative": "informal negative",
3563 "infinitival forms": "infinitive",
3564 "subjunctive sing.": "subjunctive singular",
3565 "subjunctive plur.": "subjunctive plural",
3566 "Type": "",
3567 "type": "",
3568 "gender-neutral": "gender-neutral",
3569 "gender-neutral (person)": "gender-neutral",
3570 "sing. conneg.": "singular connegative",
3571 "plur. conneg.": "plural connegative",
3572 "Definite attributive": "definite attributive",
3573 "present conditional": "present conditional",
3574 "past conditional": "past conditional",
3575 "connegative": "connegative",
3576 "present active": "present active",
3577 "past active": "past active",
3578 "past passive": "past passive",
3579 "→○": "", # e.g. sikkaralla/Finnish
3580 "○": "", # e.g. sikkaralla/Finnish
3581 "○→": "", # e.g. sikkaralla/Finnish
3582 "with positive imperatives": "with-positive-imperative",
3583 "no possessor": "no-possessor",
3584 # "+ object concord": XXX,
3585 # "state": XXX,
3586 # "free state": XXX,
3587 # "Free state": XXX,
3588 # "Full form": XXX,
3589 # "Noun": XXX,
3590 # "stative stem": XXX,
3591 # "unmutated": XXX,
3592 # "unmodified": XXX,
3593 # "Genitive infin.": XXX,
3594 # "ilz, elles": XXX,
3595 # "el / ela": XXX,
3596 # "il/elli": XXX,
3597 # "el / ela / Vde": XXX,
3598 # "benim (my)": XXX,
3599 # "Declarative": XXX,
3600 # "substantive genitive": XXX,
3601 # "preposition": XXX,
3602 # "specific": XXX,
3603 # "adverb": XXX,
3604 # "adverbial participles": XXX,
3605 # "In genitive": XXX,
3606 # "Low": XXX,
3607 # "Low/Mid": XXX,
3608 # "Tense particles (See particles)": XXX,
3609 # "past stem": XXX,
3610 # "transitory past": XXX,
3611 # "determiners": XXX,
3612 # "determiners and pronouns": XXX,
3613 # "past particle": XXX,
3614 # "class I": XXX,
3615 # "adelative": XXX,
3616 # "oblique I": XXX,
3617 # "NORK (ergative)": "", # XXX see irakatsi/Basque
3618 # "NOR (absolutive)": "", # XXX see irakatsi/Basque
3619 # These are headers for columns that contain titles even if not header style
3620 "noun case": {
3621 "lang": "Finnish",
3622 "then": "*", # e.g., kolme/Finnish
3623 "else": "",
3624 },
3625 "adverbial form": {
3626 "lang": "Finnish",
3627 "then": "*", # e.g., kolme/Finnish
3628 "else": "adverbial",
3629 },
3630 "m verbs conjugated according to 3rd person sg. er": {
3631 "lang": "German",
3632 "if": "polite", # du/German
3633 "then": "masculine third-person second-person-semantically",
3634 },
3635 # This didn't work to replace "second-person": -KJ
3636 # ~ "2nd person": {
3637 # ~ "lang": "German",
3638 # ~ "if": "second-person-semantically", # du/German
3639 # ~ "then": ""
3640 # ~ },
3641 "(without article)": {
3642 "lang": "German", # jeglicher/German
3643 "then": "without-article",
3644 },
3645 "(with indefinite article)": {
3646 "lang": "German", # jeglicher/German
3647 "then": "indefinite with-article",
3648 },
3649 "Strong plural": {
3650 "lang": "German", # mehrere/German
3651 "then": "strong plural",
3652 },
3653 "Weak and mixed plural": {
3654 "lang": "German",
3655 "then": "weak mixed plural", # mehrere/German
3656 },
3657 "Second-person formal": { # Ihr/German
3658 "lang": "German",
3659 "then": "second-person formal",
3660 },
3661 "Singular (neuter, pronoun only)": {
3662 "lang": "German",
3663 "then": "singular neuter pronoun",
3664 },
3665 "Plural, strong forms": {
3666 "lang": "German",
3667 "then": "plural strong",
3668 },
3669 "Plural, weak and mixed forms (e.g. with definite article)": {
3670 "lang": "German",
3671 "then": "plural weak mixed with-article",
3672 },
3673 "strong (without article)": { # selber/German
3674 "lang": "German",
3675 "then": "strong without-article",
3676 },
3677 "weak (with definite article)": { # selber/German
3678 "lang": "German",
3679 "then": "weak definite with-article",
3680 },
3681 "m./n. plural": { # оба/Russian
3682 "lang": "Russian",
3683 "then": "masculine neuter plural",
3684 },
3685 "f. plural": { # оба/Russian
3686 "lang": "Russian",
3687 "then": "feminine plural",
3688 },
3689 "sigmatic future": "sigmatic future", # adiuvo/Latin
3690 "sigmatic aorist": "sigmatic aorist", # adiuvo/Latin
3691 "Key constructions": {
3692 "lang": "Japanese",
3693 "then": "dummy-reset-headers", # Break column inheritance, 伶俐/Japanese
3694 },
3695 "Informal past": { # 伶俐/Japanese
3696 "lang": "Japanese",
3697 "then": "informal past",
3698 },
3699 "Informal negative past": { # 伶俐/Japanese
3700 "lang": "Japanese",
3701 "then": "informal negative past",
3702 },
3703 "Formal negative": { # 伶俐/Japanese
3704 "lang": "Japanese",
3705 "then": "formal negative",
3706 },
3707 "Formal past": { # 伶俐/Japanese
3708 "lang": "Japanese",
3709 "then": "formal past",
3710 },
3711 "Formal negative past": { # 伶俐/Japanese
3712 "lang": "Japanese",
3713 "then": "formal negative past",
3714 },
3715 "Provisional": { # 伶俐/Japanese
3716 "lang": "Japanese",
3717 "then": "past conditional",
3718 },
3719 "Degree": { # 伶俐/Japanese
3720 "lang": "Japanese",
3721 "then": "noun-from-adj", # equivalent to English -ness, needs more
3722 },
3723 # in חתול/Hebrew:
3724 "With possessive pronouns": "possessed-form",
3725 "Person": {
3726 "default": "person",
3727 "lang": [
3728 "Hebrew",
3729 "Scottish Gaelic",
3730 "Old Irish",
3731 ],
3732 # umpa/Scottish Gaelic, la/Old Irish
3733 "then": "*",
3734 },
3735 "masculine singular": {
3736 "lang": "Hebrew",
3737 "if": "possessed-form",
3738 "then": "possessed-masculine possessed-single", # doesn't work
3739 "else": "masculine singular",
3740 },
3741 # could there be a third control character besides "*" and "dummy-reset-headers"
3742 # that lets you override bleeding rules for a column so that it
3743 # takes over the whole row, like here?
3744 "masculine plural": {
3745 "lang": "Hebrew",
3746 "if": "possessed-form",
3747 "then": "possessed-masculine possessed-many",
3748 "else": "masculine plural",
3749 },
3750 "feminine singular": {
3751 "lang": "Hebrew",
3752 "if": "possessed-form",
3753 "then": "possessed-feminine possessed-single",
3754 "else": "feminine singular",
3755 },
3756 "feminine plural": {
3757 "lang": "Hebrew",
3758 "if": "possessed-form",
3759 "then": "possessed-feminine possessed-many",
3760 "else": "feminine plural",
3761 },
3762 "masculine and neuter": "masculine neuter", # hannars/Westrobothnian
3763 "singular masculine": "masculine singular",
3764 "plural masculine": "masculine plural",
3765 "singular feminine": "feminine singular",
3766 "plural feminine": "feminine plural",
3767 "singular neuter": "neuter singular",
3768 "plural neuter": "neuter plural",
3769 "quantitative": { # vienas/Lithuanian
3770 "lang": "Lithuanian",
3771 "pos": "num",
3772 "then": "cardinal",
3773 },
3774 "ordinal": {
3775 "lang": "Lithuanian",
3776 "pos": "num",
3777 "then": "ordinal",
3778 },
3779 "plain": {
3780 "lang": "Lithuanian",
3781 "then": "",
3782 },
3783 "prefixed with be-": {
3784 "lang": "Lithuanian",
3785 "then": "be-prefix",
3786 },
3787 "special adverbial participle": {
3788 "lang": "Lithuanian",
3789 "then": "adverbial participle",
3790 },
3791 "present adverbial": {
3792 "lang": "Lithuanian",
3793 "then": "present adverbial",
3794 },
3795 "past adverbial": {
3796 "lang": "Lithuanian",
3797 "then": "past adverbial",
3798 },
3799 "past frequentative adverbial": {
3800 "lang": "Lithuanian",
3801 "then": "past frequentative adverbial",
3802 },
3803 "future adverbial": {
3804 "lang": "Lithuanian",
3805 "then": "future adverbial",
3806 },
3807 "1st person (pirmasis asmuo)": { # -uoti/Lithuanian
3808 "lang": "Lithuanian",
3809 "then": "first-person",
3810 },
3811 "2nd person(antrasis asmuo)": {
3812 "lang": "Lithuanian",
3813 "then": "second-person",
3814 },
3815 "3rd person(trečiasis asmuo)": {
3816 "lang": "Lithuanian",
3817 "then": "third-person",
3818 },
3819 "present dependent": { # abair/Irish, table for archaic verb paradigm
3820 "lang": "Irish",
3821 "then": "present dependent",
3822 },
3823 "past habitual dependent": { # abair/Irish, table for archaic verb paradigm
3824 "lang": "Irish",
3825 "then": "past habitual dependent",
3826 },
3827 "future dependent": { # abair/Irish, table for archaic verb paradigm
3828 "lang": "Irish",
3829 "then": "future dependent",
3830 },
3831 "conditional dependent": { # abair/Irish, table for archaic verb paradigm
3832 "lang": "Irish",
3833 "then": "conditional dependent",
3834 },
3835 "conditional independent": { # abair/Irish, table for archaic verb paradigm
3836 "lang": "Irish",
3837 "then": "conditional independent",
3838 },
3839 "future independent": { # faigh/Irish, table for archaic verb paradigm
3840 "lang": "Irish",
3841 "then": "future independent",
3842 },
3843 "past independent": { # faigh/Irish, table for archaic verb paradigm
3844 "lang": "Irish",
3845 "then": "past independent",
3846 },
3847 "past dependent": { # faigh/Irish, table for archaic verb paradigm
3848 "lang": "Irish",
3849 "then": "past dependent",
3850 },
3851 "present independent": { # faigh/Irish, table for archaic verb paradigm
3852 "lang": "Irish",
3853 "then": "present independent",
3854 },
3855 "past habitual independent": { # faigh/Irish, table for archaic verb paradigm
3856 "lang": "Irish",
3857 "then": "past habitual independent",
3858 },
3859 "definite singular": "definite singular",
3860 "indefinite plural": "indefinite plural",
3861 "definite plural": "definite plural",
3862 "masc.": "masculine", # ща/Bulgarian
3863 "fem.": "feminine",
3864 "neut.": "neuter",
3865 "genitive form": "genitive", # глава/Bulgarian
3866 "feminine/ neuter": "feminine neuter", # два/Bulgarian
3867 "future indicative": "future indicative", # mdlić/Polish
3868 "dummy-ignored-text-cell": "dummy-ignored-text-cell", # Kludge
3869 "s": {
3870 "lang": "Finnish", # erata/Finnish
3871 "then": "singular",
3872 },
3873 "pl": {
3874 "lang": "Finnish", # erata/Finnish
3875 "then": "plural",
3876 },
3877 "pos": "positive", # erata/Finnish
3878 "neg": "negative", # erata/Finnish
3879 "evidential participle": "evidential participle", # տալ/Armenian
3880 "future converb 1": "future converb converb-i", # տալ/Armenian
3881 "future converb 2": "future converb converb-ii", # տալ/Armenian
3882 "past imperfect": "past imperfect", # տալ/Armenian
3883 "դուն": { # տալ/Armenian
3884 "lang": "Armenian",
3885 "then": "second-person singular",
3886 },
3887 "ան": { # տալ/Armenian
3888 "lang": "Armenian",
3889 "then": "third-person singular",
3890 },
3891 "անանք": { # տալ/Armenian
3892 "lang": "Armenian",
3893 "then": "third-person plural",
3894 },
3895 "(դուն)": { # տալ/Armenian
3896 "lang": "Armenian",
3897 "then": "second-person singular",
3898 },
3899 "1 sg.": "first-person singular", # féin/Old Irish
3900 "2 sg.": "second-person singular", # féin/Old Irish
3901 "3 sg.": "third-person singular", # féin/Old Irish
3902 "1 pl.": "first-person plural", # féin/Old Irish
3903 "2 pl.": "second-person plural", # féin/Old Irish
3904 "3 pl.": "third-person plural", # féin/Old Irish
3905 "m./n.": "masculine neuter", # féin/Old Irish
3906 "Stressed": "stressed", # suide/Old irish
3907 "Unstressed": "unstressed", # suide/Old Irish
3908 "Masculine": { # suide/Old Irish
3909 "default": "masculine",
3910 "lang": "Old Irish",
3911 "then": "dummy-reset-headers masculine",
3912 },
3913 "Feminine/neuter": {
3914 "default": "feminine neuter",
3915 "lang": "Old Irish",
3916 "then": "dummy-reset-headers feminine neuter",
3917 },
3918 "2d sing.": "second-person singular", # attá/Old Irish
3919 "3d sing.": "third-person singular", # attá/Old Irish
3920 "3d sg. masc.": "third-person singular masculine", # attá/Old Irish
3921 "3d sg. fem.": "third-person singular feminine", # attá/Old Irish
3922 "2d sg.": "second-person singular", # attá/Old Irish BOTH OF THESE in the same template!
3923 "3d sg.": "third-person singular", # attá/Old Irish
3924 "2d pl.": "second-person plural", # attá/Old Irish
3925 "3d pl.": "third-person plural", # attá/Old Irish
3926 "Pres.indic.prog.": "present indicative progressive", # attá/Old Irish
3927 "Pres.indic.hab.": "present indicative habitual", # attá/Old Irish
3928 # ~ "Pres.ind.": "present indicative", # attá/Old Irish
3929 # Original data has a zero-width space, causing problems
3930 "Pres.subj.": "present subjunctive", # attá/Old Irish
3931 "Active present participle ➤": { # στρατοπεδεύω/Greek (modern)
3932 "lang": "Greek",
3933 "then": "active present participle indeclinable",
3934 },
3935 "Active perfect participle ➤": {
3936 "lang": "Greek",
3937 "then": "active perfect participle indeclinable",
3938 },
3939 "Passive perfect participle ➤": {
3940 "lang": "Greek",
3941 "then": "passive perfect participle indeclinable",
3942 },
3943 "Perfect participle ➤": { # χαίρομαι/Greek
3944 "lang": "Greek",
3945 "then": "perfect participle indeclinable",
3946 },
3947 # https://en.wikipedia.org/wiki/Nonfinite_verb#Modern_Greek
3948 "Nonfinite form ➤": {
3949 "lang": "Greek",
3950 "then": "infinitive-aorist",
3951 },
3952 "m·s": "masculine singular", # καθείς/Greek
3953 "f·s": "feminine singular",
3954 "n·s": "neuter singular",
3955 "m·p": "masculine plural", # αυτός/Greek
3956 "f·p": "feminine plural",
3957 "n·p": "neuter plural",
3958 "Masc./Fem./Neut.": "masculine feminine neuter", # mille/Latin
3959 "Reflexive third": "third-person reflexive", # se/Latin
3960 "masculine dual": "masculine dual", # a סוס/Hebrew
3961 "his": "third-person singular masculine possessive", # moj/Serbo-Croatian
3962 "her": "third-person singular feminine possessive", # moj/Serbo-Croatian
3963 "1st singular (я (ja))": "first-person singular", # быць/Serbo-Croatian
3964 "2nd singular (ты (ty))": "second-person singular",
3965 "3rd singular (ён (jon)/яна́ (janá)/яно́ (janó))": "third-person singular",
3966 "1st plural (мы (my))": "first-person plural",
3967 "2nd plural (вы (vy))": "second-person plural",
3968 "3rd plural (яны́ (janý))": "third-person plural",
3969 "plural (мы (my), вы (vy), яны́ (janý))": "plural",
3970 "masculine (я (ja), ты (ty), ён (jon))": "masculine",
3971 "feminine (я (ja), ты (ty), яна́ (janá))": "feminine",
3972 "neuter (яно́ (janó))": "neuter",
3973 "adjectival partc.": "adjectival participle", # доврне/Macedonian
3974 "adverbial partc.": "adverbial participle",
3975 # ~ "non-finite forms": { # доврне/Macedonian didn't work out
3976 # ~ "lang": "Macedonian",
3977 # ~ "then": "",
3978 # ~ },
3979 # ~ "l-participle": "l-participle",
3980 # ~ "Compound tenses": {
3981 # ~ "lang": "Macedonian",
3982 # ~ "pos": "verb",
3983 # ~ "then": "dummy-reset-headers",
3984 # ~ },
3985 "collective": { # ремен/Macedonian
3986 "lang": [
3987 "Lithuanian",
3988 "Macedonian",
3989 "Proto-Indo-European",
3990 ],
3991 "pos": ["num", "noun"],
3992 "then": "collective",
3993 },
3994 "Nominative/Accusative (Unarticulated)": "nominative accusative indefinite", # acid caboxilic/Romanian
3995 "Nominative/Accusative (Definite articulation)": "nominative accusative definite",
3996 "Genitive/Dative (Definite articulation)": "genitive dative definite",
3997 "present infinitive": "present infinitive", # фи/Romanian
3998 "past infinitive": "past infinitive",
3999 # ~ This doesn't want to work - why?
4000 # ~ "rare but acceptable": "standard", # soler/Spanish
4001 "genitive (gjinore) (i/e/të/së)": "genitive", # mjez/Albanian
4002 "participle — present": "present participle", # afrohet/Albanian
4003 "participle — perfect": "perfect participle",
4004 "gerund — present": "present gerund",
4005 "gerund — perfect": "perfect gerund",
4006 "infinitive — present": "present infinitive",
4007 "infinitive — perfect": "perfect infinitive",
4008 "privative": "privative",
4009 "absolutive — perfect": "perfect absolutive",
4010 "continuous present": "present progressive",
4011 "continuous imperfect": "imperfect progressive",
4012 "2nd future": "future future-ii",
4013 "2nd future perfect": "future future-ii perfect",
4014 "imperative — negatory": "negative imperative",
4015 "genitive/dative/ablative": "genitive dative ablative", # tij/Albanian
4016 "male forms": "masculine", # Dit/Albanian
4017 "female forms": "feminine",
4018 "Base form": {
4019 "lang": [
4020 "Arabic",
4021 "Moroccan Arabic",
4022 "Maltese",
4023 "Gulf Arabic",
4024 "Assyrian Neo-Aramaic",
4025 ],
4026 # "pos": ["noun", "verb", "particle", "prep"],
4027 "then": "stem",
4028 },
4029 "Base Form": {
4030 "lang": ["Assyrian Neo-Aramaic",],
4031 "then": "stem",
4032 },
4033 "base form": {
4034 "lang": ["Assyrian Neo-Aramaic",],
4035 "then": "stem",
4036 },
4037 "Personal-pronoun- including forms": {
4038 "lang": [
4039 "Arabic",
4040 "Moroccan Arabic",
4041 "Maltese",
4042 "Gulf Arabic",
4043 ],
4044 # "pos": ["noun", "verb", "particle", "prep"],
4045 "then": "dummy-reset-headers",
4046 },
4047 # ~ "singular": {
4048 # ~ "lang": ["Arabic", "Moroccan Arabic",],
4049 # ~ "pos": "prep",
4050 # ~ "if": "stem",
4051 # ~ "then": "dummy-reset-headers",
4052 # ~ },
4053 "common, neuter": { # kaj/Serbo-Croatian
4054 "lang": "Serbo-Croatian",
4055 "then": "common-gender neuter",
4056 },
4057 "pres.indep.aff.": "present independent affirmative", # bí/Irish
4058 "pres.dep.": "present dependent",
4059 "pres.neg.‡": "present negative", # after ‡ starts working as a footnote
4060 # character, remove it from here.
4061 "pres.hab.": "present habitual",
4062 "past hab.": "past habitual",
4063 "past ind.": "past independent",
4064 "past dep.": "past dependent",
4065 "accusative form": "accusative", # отец/Bulgarian
4066 "basic suffix": "suffix",
4067 "direct object suffix": "direct-object suffix",
4068 "indirect object suffix": "indirect-object suffix",
4069 "Xemxin": "xemxin-assimilation", # lil/Maltese
4070 "Qamrin": "qamrin-unassimilation",
4071 "State": {
4072 "lang": [
4073 "Aramaic",
4074 "Hebrew",
4075 "Assyrian Neo-Aramaic",
4076 ],
4077 "pos": "noun",
4078 "then": "*",
4079 "else": "",
4080 },
4081 "state": {
4082 "lang": "Assyrian Neo-Aramaic",
4083 "pos": "noun",
4084 "then": "*",
4085 "else": "",
4086 },
4087 "Absolute": { # x חקלא/Aramaic
4088 "lang": "Aramaic",
4089 "pos": "noun",
4090 "then": "absolute",
4091 },
4092 "Determined": {
4093 "lang": "Aramaic",
4094 "pos": "noun",
4095 "then": "emphatic",
4096 },
4097 "emphatic": "emphatic", # v דלתא/Aramaic
4098 "3rd f": "third-person feminine", # umpa/Scottish Gaelic
4099 "Number": {
4100 "default": "",
4101 # umpa/Scottish Gaelic
4102 "lang": [
4103 "Hebrew",
4104 "Scottish Gaelic",
4105 ],
4106 "then": "*",
4107 },
4108 "Third person f": "third-person feminine", # an/Scottish Gaelic
4109 "First sg": "first-person singular", # an/Scottish Gaelic
4110 "Second sg": "second-person singular",
4111 "Third sg m": "third-person singular masculine",
4112 "Third sg f": "third-person singular feminine",
4113 "First pl": "first-person plural",
4114 "Second pl": "second-person plural",
4115 "Third pl": "third-person plural",
4116 "Independent": "independent",
4117 "independent": "independent", # immee/Manx
4118 "Affirmative Interrogative": "affirmative interrogative",
4119 "Negative Interrogative": "negative interrogative",
4120 "Affirmative interrogative": "affirmative interrogative", # thathar/Scottish Gaelic
4121 "Relative future": [
4122 "with-pronoun future",
4123 "with-conjunction future",
4124 ],
4125 "agent1, 3": "agent participle", # puhkaa/Finnish
4126 "Unabbreviated form": "unabbreviation alt-of", # jku/Finnish
4127 "Abbreviation": "abbreviation",
4128 "nãs/nãsu, nãsã/nãsa, el/elu, ea": {
4129 "lang": "Aromanian",
4130 "if": "third-person singular",
4131 "then": "third-person singular",
4132 },
4133 "Masculine,Feminine, Neuter": "masculine feminine neuter",
4134 # tři/Czech, copy-pasted manual table without template...
4135 "Present Sg": "present singular", # skrýt/Czech
4136 "Present Pl": "present plural",
4137 "Future Sg": "future singular",
4138 "Future Pl": "future plural",
4139 "Past Sg": "past singular",
4140 "Past Pl": "past plural",
4141 "neuter singular": "neuter singular", # ony/Czech
4142 # dar éisi/Old Irish, la/Old Irish
4143 "3d sing. masc./neut., accusative": "third-person singular masculine neuter accusative",
4144 "3d sing. masc./neut., dative": "third-person singular masculine neuter dative",
4145 "3d sing. fem., accusative": "third-person singular feminine accusative",
4146 "3d sing. fem., dative": "third-person singular feminine dative",
4147 "3d person pl., dative": "third-person plural dative",
4148 "3d person pl., accusative": "third-person plural accusative",
4149 "nominative-accusative": "nominative accusative", # stand/Nynorsk
4150 "compound-genitive": "in-compounds genitive",
4151 "Common": {
4152 "lang": "Arabic",
4153 "then": "common-gender",
4154 },
4155 "Affix": "affix",
4156 # podnikat/Czech
4157 "you (singular)": "second-person singular",
4158 "you (polite)": "second-person singular formal",
4159 "he/she/it": "third-person singular",
4160 "we": {
4161 "lang": "Czech",
4162 "then": "first-person plural",
4163 },
4164 "you (plural)": "second-person plural",
4165 "they": {
4166 "lang": "Czech",
4167 "then": "third-person plural",
4168 },
4169 "Active (Perfect)": "active participle",
4170 "Masculine, feminine, neuter": "masculine feminine neuter", # čtyři/Czech
4171 "participle (a7)": "participle", # hylja/Faroese
4172 "participle (a8)": "participle", # lagt/Faroese
4173 "participle (a34)": "participle", # falla/Faroese
4174 "participle (a27)": "participle", # kvøða/Faroese
4175 "participle (a18/a6)": "participle", # skreiða/Faroese
4176 "participle (a18)": "participle", # ýa/Faroese
4177 "participle (a5 (a39))": "participle", # skráseta/Faroese
4178 # síggjast/Faroese
4179 "eg": {
4180 "lang": "Faroese",
4181 "then": "first-person singular",
4182 },
4183 "hann/hon/tað": "third-person singular",
4184 "vit, tit, teir/tær/tey": "plural",
4185 "mediopassive": "mediopassive",
4186 "imperfect (indicative/subjunctive)/conditional": { # de-glicio/Welsh
4187 "lang": "Welsh",
4188 "then": ["imperfect indicative", "conditional"],
4189 },
4190 "imperfect indicative/conditional": { # gwneud/Welsh
4191 "lang": "Welsh",
4192 "then": ["imperfect indicative", "conditional"],
4193 },
4194 "present/future": { # darganfod/Welsh
4195 "lang": "Welsh",
4196 "then": ["present indicative", "future indicative"],
4197 },
4198 "imperfect/conditional": { # darganfod/Welsh
4199 "lang": "Welsh",
4200 "then": ["imperfect indicative", "conditional"],
4201 },
4202 "future/present habitual": { # adnabod/Welsh
4203 "lang": "Welsh",
4204 "then": ["future habitual", "present habitual"],
4205 },
4206 # ϧⲉⲣϧⲉⲣ/Coptic
4207 # Bohairic
4208 "ⲁⲛⲟⲕ": "first-person singular",
4209 # Removed duplicates
4210 "ⲁⲛⲟⲛ": "first-person plural",
4211 "-": {
4212 "default": "",
4213 "lang": "Coptic",
4214 "then": "nominal",
4215 "else": {
4216 "lang": "Assamese",
4217 "pos": "verb",
4218 "then": "negative",
4219 "else": {"lang": "Old Saxon", "pos": "pron", "then": ""},
4220 },
4221 },
4222 "focalising, precursive": "focalising",
4223 # ⲃⲱⲗ/Coptic, different pronouns in different dialects
4224 # Sahidic
4225 # Removed duplicates
4226 # Akhmimic
4227 "ⲁⲛⲁⲕ": "first-person singular",
4228 "ⲛ̄ⲧⲁⲕ": "second-person singular masculine",
4229 "ⲛ̄ⲧⲁϥ": "third-person singular masculine",
4230 "ⲛ̄ⲧⲁⲥ": "third-person singular feminine",
4231 "ⲁⲛⲁⲛ": "first-person plural",
4232 "ⲛ̄ⲧⲱⲧⲛⲉ": "second-person plural",
4233 "ⲛ̄ⲧⲁⲩ": "third-person plural",
4234 # Lycopolitan has a mixture of different forms
4235 # Fayyumic
4236 "ⲛⲧⲁⲕ": "second-person singular masculine",
4237 "ⲛⲧⲁ": "second-person singular feminine",
4238 "ⲛⲧⲁϥ": "third-person singular masculine",
4239 "ⲛⲧⲁⲥ": "third-person singular feminine",
4240 "ⲛⲧⲁⲧⲉⲛ": "second-person plural",
4241 "ⲛⲧⲁⲩ": "third-person plural",
4242 "circumstantial, focalising": "focalising",
4243 # ignore Tagalog Affix column affixes
4244 # manghalik/Tagalog
4245 "Actor-secondary": "actor-secondary",
4246 "mang-": {
4247 "lang": "Tagalog",
4248 "then": "",
4249 },
4250 "-an": {
4251 "lang": "Tagalog",
4252 "then": "",
4253 },
4254 "pang- -an": {
4255 "lang": "Tagalog",
4256 "then": "",
4257 },
4258 "ikapang-": {
4259 "lang": "Tagalog",
4260 "then": "",
4261 },
4262 "magpa-": {
4263 "lang": "Tagalog",
4264 "then": "",
4265 },
4266 "papang- -in": {
4267 "lang": "Tagalog",
4268 "then": "",
4269 },
4270 " pa- -an": {
4271 "lang": "Tagalog",
4272 "then": "",
4273 },
4274 "ipagpa-": {
4275 "lang": "Tagalog",
4276 "then": "",
4277 },
4278 "ipapang-": {
4279 "lang": "Tagalog",
4280 "then": "",
4281 },
4282 "ikapagpapang-": {
4283 "lang": "Tagalog",
4284 "then": "",
4285 },
4286 "papang- -an": {
4287 "lang": "Tagalog",
4288 "then": "",
4289 },
4290 "makapang-": {
4291 "lang": "Tagalog",
4292 "then": "",
4293 },
4294 "ma -an": {
4295 "lang": "Tagalog",
4296 "then": "",
4297 },
4298 "maipang-": {
4299 "lang": "Tagalog",
4300 "then": "",
4301 },
4302 "maikapang-": {
4303 "lang": "Tagalog",
4304 "then": "",
4305 },
4306 "mapang- -an": {
4307 "lang": "Tagalog",
4308 "then": "",
4309 },
4310 "makapagpa-": {
4311 "lang": "Tagalog",
4312 "then": "",
4313 },
4314 "mapapang-": {
4315 "lang": "Tagalog",
4316 "then": "",
4317 },
4318 "maipagpa-": {
4319 "lang": "Tagalog",
4320 "then": "",
4321 },
4322 "maipapang-": {
4323 "lang": "Tagalog",
4324 "then": "",
4325 },
4326 "maikapagpapang-": {
4327 "lang": "Tagalog",
4328 "then": "",
4329 },
4330 "mapapang- -an": {
4331 "lang": "Tagalog",
4332 "then": "",
4333 },
4334 "makipang-": {
4335 "lang": "Tagalog",
4336 "then": "",
4337 },
4338 "makipagpa-": {
4339 "lang": "Tagalog",
4340 "then": "",
4341 },
4342 # ipalinis/Tagalog
4343 "mag-": {
4344 "lang": "Tagalog",
4345 "then": "",
4346 },
4347 "-in": {
4348 "lang": "Tagalog",
4349 "then": "",
4350 },
4351 "\u2060pag- -an": {
4352 "lang": "Tagalog",
4353 "then": "",
4354 },
4355 "ipag-": {
4356 "lang": "Tagalog",
4357 "then": "",
4358 },
4359 "ipang-": {
4360 "lang": "Tagalog",
4361 "then": "",
4362 },
4363 "ikapag-": {
4364 "lang": "Tagalog",
4365 "then": "",
4366 },
4367 "pag- -an": {
4368 "lang": "Tagalog",
4369 "then": "",
4370 },
4371 "papag- -in": {
4372 "lang": "Tagalog",
4373 "then": "",
4374 },
4375 "ipa-": {
4376 "lang": "Tagalog",
4377 "then": "",
4378 },
4379 "ikapagpa-": {
4380 "lang": "Tagalog",
4381 "then": "",
4382 },
4383 "\u2060pagpa- -an": {
4384 "lang": "Tagalog",
4385 "then": "",
4386 },
4387 "\u2060papag- -an": {
4388 "lang": "Tagalog",
4389 "then": "",
4390 },
4391 "makapag-": {
4392 "lang": "Tagalog",
4393 "then": "",
4394 },
4395 "ma-": {
4396 "lang": "Tagalog",
4397 "then": "",
4398 },
4399 "maipag-": {
4400 "lang": "Tagalog",
4401 "then": "",
4402 },
4403 "maikapag-": {
4404 "lang": "Tagalog",
4405 "then": "",
4406 },
4407 "mapapag-": {
4408 "lang": "Tagalog",
4409 "then": "",
4410 },
4411 "maipa-": {
4412 "lang": "Tagalog",
4413 "then": "",
4414 },
4415 "maikapagpa-": {
4416 "lang": "Tagalog",
4417 "then": "",
4418 },
4419 "mapagpa- -an": {
4420 "lang": "Tagalog",
4421 "then": "",
4422 },
4423 "mapapag- -an": {
4424 "lang": "Tagalog",
4425 "then": "",
4426 },
4427 "makipag-": {
4428 "lang": "Tagalog",
4429 "then": "",
4430 },
4431 "maki-": {
4432 "lang": "Tagalog",
4433 "then": "",
4434 },
4435 # batikusin/Tagalog
4436 "-um-": {
4437 "lang": "Tagalog",
4438 "then": "",
4439 },
4440 "i-": {
4441 "lang": "Tagalog",
4442 "then": "",
4443 },
4444 "ika-": {
4445 "lang": "Tagalog",
4446 "then": "",
4447 },
4448 "pa- -in": {
4449 "lang": "Tagalog",
4450 "then": "",
4451 },
4452 # umagnas/Tagalog
4453 "um-": {
4454 "lang": "Tagalog",
4455 "then": "",
4456 },
4457 # baybayin/Tagalog
4458 "Directional": "directional",
4459 # madali/Tagalog
4460 "root": "root",
4461 "superiority": {
4462 "lang": "Tagalog",
4463 "then": "superior",
4464 },
4465 "inferiority": {
4466 "lang": "Tagalog",
4467 "then": "inferior",
4468 },
4469 "equality": {
4470 "lang": "Tagalog",
4471 "then": "equal",
4472 },
4473 # sumisid/Tagalog
4474 "maka-": {
4475 "lang": "Tagalog",
4476 "then": "",
4477 },
4478 "mapa-": {
4479 "lang": "Tagalog",
4480 "then": "",
4481 },
4482 "mai-": {
4483 "lang": "Tagalog",
4484 "then": "",
4485 },
4486 "maika-": {
4487 "lang": "Tagalog",
4488 "then": "",
4489 },
4490 "mapag- -an": {
4491 "lang": "Tagalog",
4492 "then": "",
4493 },
4494 # ipasagot/Tagalog
4495 "ma- -an": {
4496 "lang": "Tagalog",
4497 "then": "",
4498 },
4499 # ayusin/Tagalog
4500 "mapag-": {
4501 "lang": "Tagalog",
4502 "then": "",
4503 },
4504 "resultative": "resultative", # sloniti/Proto-Slavic
4505 "imperfective aorist": "aorist imperfective", # byti/Proto-Slavic
4506 "Masculine and feminine": "masculine feminine", # hwa/Old English
4507 # ufuy/Afar
4508 "Postpositioned forms": {
4509 "lang": "Afar",
4510 "then": "with-postposition",
4511 },
4512 "l-case": "l-case",
4513 "k-case": "k-case",
4514 "t-case": "t-case",
4515 "h-case": "h-case",
4516 # icfide/Afar
4517 "present progressive": "present progressive",
4518 "future progressive": "future progressive",
4519 "immediate future": "immediate-future",
4520 "imperfect potential I": "imperfect potential potential-i",
4521 "imperfect potential II": "imperfect potential potential-ii",
4522 "perfect potential": "perfect potential",
4523 "present conditional II": "present conditional conditional-ii",
4524 "present conditional I": "present conditional conditional-i",
4525 "irrealis": "irrealis",
4526 "perfect conditional": "perfect conditional",
4527 "V-affirmative": "v-affirmative",
4528 "N-affirmative": "n-affirmative",
4529 "conjunctive I": "conjunctive conjunctive-i",
4530 "conjunctive II": "conjunctive conjunctive-ii",
4531 "consultative": "consultative",
4532 "-h converb": "h-converb converb",
4533 "-i form": "i-form converb",
4534 "-k converb": "k-converb converb",
4535 "-in(n)uh converb": "innuh-converb converb",
4536 "-innuk converb": "innuk-converb converb",
4537 "V-focus": "v-focus participle indefinite",
4538 "N-focus": "n-focus participle indefinite",
4539 "indefinite participle": "indefinite participle",
4540 # qunxa/Afar
4541 "present indicative I": "present indicative indicative-i",
4542 "present indicative II": "present indicative indicative-ii",
4543 "past indicative I": "past indicative indicative-i",
4544 "past indicative II": "past indicative indicative-ii",
4545 "present potential": "present potential",
4546 "dist. plural": "distributive plural", # nástro/Navajo
4547 "duoplural": "duoplural",
4548 # this separate duoplural number can't simply be broken into dual and plural
4549 # because of tag-merging issues, like here: if Navajo has the default numbers
4550 # ["singular", "plural"], then singular + duoplural has "dual" left over,
4551 # if it has ["singular", "plural", "dual",] then all of them are merged BUT
4552 # that implies that the non-duoplural "plural" could also be part of the merge.
4553 "Unspecified": {
4554 "lang": "Navajo",
4555 "then": "indefinite-person",
4556 },
4557 "Unspecified person": {
4558 "lang": "Navajo",
4559 "then": "indefinite-person",
4560 },
4561 "Passive A": {
4562 "lang": "Navajo",
4563 "then": "passive",
4564 },
4565 "Passive B": {
4566 "lang": "Navajo",
4567 "then": "passive agentive",
4568 },
4569 "Spatial": {
4570 "lang": "Navajo",
4571 "then": "spatial-person",
4572 },
4573 "Spatial person": {
4574 "lang": "Navajo",
4575 "then": "spatial-person",
4576 },
4577 "ITERATIVE": "iterative", # náhádleeh/Navajo
4578 "early": "archaic", # soule/Middle English
4579 "nominative, accusative": "nominative accusative", # dale/Middle English
4580 "subjunctive plural": "subjunctive plural", # been/Middle English
4581 "Middle Voice": "middle-voice", # शृणोति/Sanskrit
4582 "Middle": {
4583 "lang": [
4584 "Hittite",
4585 "Sanskrit",
4586 "Pali",
4587 ],
4588 "then": "middle-voice", # अवति/Sanskrit
4589 },
4590 "Active Voice": "active",
4591 "Passive Voice": "passive",
4592 "Potential mood / Optative mood": "potential",
4593 # ვენეციური/Georgian
4594 "nominative, genitive, instrumental": "nominative genitive instrumental",
4595 "dative, adverbial": "dative adverbial",
4596 "negative imperative": "negative imperative", # აბეზღებს/Georgian
4597 # მათ/Georgian
4598 "third-person": "third-person",
4599 "personal pronouns": {
4600 "lang": "Georgian",
4601 "then": "",
4602 },
4603 "relative pronouns": {
4604 "lang": "Georgian",
4605 "then": "",
4606 },
4607 "this": "proximal pronoun singular",
4608 "that": "distal pronoun singular",
4609 "these": "proximal pronoun plural",
4610 "those": "distal pronoun plural",
4611 # დაწერს/Georgian
4612 "masdar": "noun-from-verb", # also in Arabic
4613 "transitive screeves": "transitive",
4614 "intransitive screeves": "intransitive",
4615 "privative participle": "privative participle",
4616 "მე": {
4617 "lang": "Georgian",
4618 "then": "first-person singular",
4619 },
4620 "შენ": {
4621 "lang": "Georgian",
4622 "then": "second-person singular",
4623 },
4624 "ის": {
4625 "lang": "Georgian",
4626 "then": "third-person singular",
4627 },
4628 "ჩვენ": {
4629 "lang": "Georgian",
4630 "then": "first-person plural",
4631 },
4632 "თქვენ": {
4633 "lang": "Georgian",
4634 "then": "second-person plural",
4635 },
4636 "ისინი": {
4637 "lang": "Georgian",
4638 "then": "third-person plural",
4639 },
4640 "მან": {
4641 "lang": "Georgian",
4642 "then": "third-person singular",
4643 },
4644 "მათ": {
4645 "lang": "Georgian",
4646 "then": "third-person plural",
4647 },
4648 "მას": {
4649 "lang": "Georgian",
4650 "then": "third-person singular",
4651 },
4652 # ~ "": {
4653 # ~ "lang": "Georgian",
4654 # ~ "then": "",
4655 # ~ },
4656 "inversion": "inversion",
4657 # maanaadad/Ojibwe
4658 "singular (0s)": "singular inanimate",
4659 "obviative singular (0's)": "obviative inanimate singular",
4660 "plural (0p)": "plural inanimate",
4661 "obviative plural (0'p)": "obviative plural inanimate",
4662 "singular or plural (0)": "singular plural inanimate",
4663 "obviative singular or plural (0')": "obviative singular plural inanimate",
4664 # a ܒܢܓܐ/Classical_Syriac
4665 "1st c. sg. (my)": "first-person singular common-gender possessive",
4666 "2nd m. sg. (your)": "second-person singular masculine possessive",
4667 "2nd f. sg. (your)": "second-person singular feminine possessive",
4668 "3rd m. sg. (his)": "third-person singular masculine possessive",
4669 "3rd f. sg. (her)": "third-person singular feminine possessive",
4670 "1st c. pl. (our)": "first-person common-gender plural possessive",
4671 "2nd m. pl. (your)": "second-person plural masculine possessive",
4672 "2nd f. pl. (your)": "second-person plural feminine possessive",
4673 "3rd m. pl. (their)": "third-person plural masculine possessive",
4674 "3rd f. pl. (their)": "third-person plural feminine possessive",
4675 # vágyhat/Hungarian
4676 "3rd person sg, 2nd person sg formal": [
4677 "third-person singular",
4678 "second-person singular formal",
4679 ],
4680 "3rd person pl, 2nd person pl formal": [
4681 "third-person plural",
4682 "second-person plural formal",
4683 ],
4684 # ichwane/Zulu
4685 "Possessive forms": "possessive",
4686 "Full form": "full-form",
4687 "Simple form": "basic-form",
4688 "Substantive": {
4689 "lang": "Zulu",
4690 "if": "possessive",
4691 "then": "possessive-substantive",
4692 },
4693 "Modifier": {
4694 "lang": [
4695 "Zulu",
4696 "Swazi",
4697 ],
4698 # ~ "if": "possessive",
4699 "then": "",
4700 "else": {
4701 "lang": "Xhosa", # magqagala
4702 "then": "attributive",
4703 },
4704 },
4705 "Copulative": "copulative",
4706 "present negative": "present negative", # hoteti/Slovene
4707 "Construct state": "construct", # ziqqurratum/Akkadian
4708 # marāṣum/Akkadian
4709 "Adjective": "adjective",
4710 "1.sg": "first-person singular",
4711 "2.sg": "second-person singular",
4712 "3.sg": "third-person singular",
4713 "1.pl": "first-person plural",
4714 "2.pl": "second-person plural",
4715 "3.pl": "third-person plural",
4716 # pats/Latvian
4717 "Masculine Singular": "masculine singular",
4718 "Feminine Singular": "feminine singular",
4719 "Masculine Plural": "masculine plural",
4720 "Feminine Plural": "feminine plural",
4721 " ka- -an": {
4722 "lang": "Tagalog",
4723 "then": "",
4724 }, # maligaw/Tagalog
4725 # AFAICT the following is just the idiosyncracy of a singular editor.
4726 # No real idea of what "analytical" means in this context. It's not
4727 # standard terminology for specific forms, but I guess it could
4728 # stand for some kind of free-standing form...
4729 "analytical": { # immee/Manx
4730 "lang": "Manx",
4731 "then": "analytic",
4732 },
4733 # alcun/Old French
4734 "Subject": "subjective",
4735 # styri/Lower Sorbian
4736 "Masculine inanimate/ feminine/neuter": [
4737 "masculine inanimate",
4738 "feminine neuter",
4739 ],
4740 "Masculine animate": "masculine animate",
4741 # glab/Breton
4742 "unmutated": "unmutated",
4743 "hard": {
4744 "lang": "Breton",
4745 "then": "mutation-hard",
4746 },
4747 "0": { # gwildronañ/Breton
4748 "lang": "Breton",
4749 "pos": "verb",
4750 "then": "impersonal",
4751 },
4752 "Impersonal forms": {
4753 "lang": "Breton",
4754 "pos": "verb",
4755 "then": "*",
4756 },
4757 "Mutated forms": {
4758 "lang": "Breton",
4759 "pos": "verb",
4760 "then": "dummy-reset-headers",
4761 },
4762 # дөрвөл/Mongolian
4763 "substantive genitive": "possessive-substantive genitive",
4764 "attributive locative": "attributive locative",
4765 # сэрээх/Mongolian
4766 "Future participle": "future participle",
4767 "Confirmative": "confirmative",
4768 "Resultative": "resultative",
4769 "Imperfective converb": "imperfective converb",
4770 "possessive particle": "possessive particle", # чи/Mongolian
4771 # কোবোৱা/Assamese
4772 "Gerund, Past participle, Agentive": [
4773 "gerund",
4774 "past participle",
4775 "agentive",
4776 ],
4777 "Progressive participle": "progressive participle",
4778 "t": {
4779 "lang": "Assamese",
4780 "pos": "verb",
4781 "then": "",
4782 },
4783 "মই moi": {
4784 "lang": "Assamese",
4785 "pos": "verb",
4786 "then": "first-person",
4787 },
4788 "তই toi": {
4789 "lang": "Assamese",
4790 "pos": "verb",
4791 "then": "familiar impolite second-person",
4792 },
4793 "তুমি tumi": {
4794 "lang": "Assamese",
4795 "pos": "verb",
4796 "then": "familiar second-person",
4797 },
4798 "আপুনি apuni": {
4799 "lang": "Assamese",
4800 "pos": "verb",
4801 "then": "honorific second-person",
4802 },
4803 "তেওঁ etc teü͂": {
4804 "lang": "Assamese",
4805 "pos": "verb",
4806 "then": "honorific third-person",
4807 },
4808 "সি ♂, তাই ♀ etc xi ♂, tai ♀": {
4809 "lang": "Assamese",
4810 "pos": "verb",
4811 "then": "third-person",
4812 },
4813 "আমি ami": {
4814 "lang": "Assamese",
4815 "pos": "verb",
4816 "then": "first-person",
4817 },
4818 "তহঁত tohõt": {
4819 "lang": "Assamese",
4820 "pos": "verb",
4821 "then": "familiar impolite second-person",
4822 },
4823 "তোমালোক tümalük": {
4824 "lang": "Assamese",
4825 "pos": "verb",
4826 "then": "familiar second-person",
4827 },
4828 "আপোনালোক apünalük": {
4829 "lang": "Assamese",
4830 "pos": "verb",
4831 "then": "honorific second-person",
4832 },
4833 "তেওঁলোক teü͂lük": {
4834 "lang": "Assamese",
4835 "pos": "verb",
4836 "then": "honorific third-person",
4837 },
4838 "সিহঁত etc xihõt": {
4839 "lang": "Assamese",
4840 "pos": "verb",
4841 "then": "third-person",
4842 },
4843 "তহঁতে tohõte": {
4844 "lang": "Assamese",
4845 "pos": "verb",
4846 "then": "familiar impolite second-person",
4847 },
4848 "তোমালোকে tümalüke": {
4849 "lang": "Assamese",
4850 "pos": "verb",
4851 "then": "familiar second-person",
4852 },
4853 "আপোনালোকে apünalüke": {
4854 "lang": "Assamese",
4855 "pos": "verb",
4856 "then": "honorific second-person",
4857 },
4858 "তেওঁলোকে teü͂lüke": {
4859 "lang": "Assamese",
4860 "pos": "verb",
4861 "then": "honorific third-person",
4862 },
4863 "সিহঁতে etc xihõte": {
4864 "lang": "Assamese",
4865 "pos": "verb",
4866 "then": "third-person",
4867 },
4868 # gözde/Turkish predicative adjective table
4869 "ben (I am)": "first-person singular",
4870 "sen (you are)": "second-person singular",
4871 "o (he/she/it is)": "third-person singular",
4872 "biz (we are)": "first-person plural",
4873 "siz (you are)": "second-person plural",
4874 "onlar (they are)": "third-person plural",
4875 "ben (I was)": "first-person singular",
4876 "sen (you were)": "second-person singular",
4877 "o (he/she/it was)": "third-person singular",
4878 "biz (we were)": "first-person plural",
4879 "siz (you were)": "second-person plural",
4880 "onlar (they were)": "third-person plural",
4881 "ben (if I)": "first-person singular",
4882 "sen (if you)": "second-person singular",
4883 "o (if he/she/it)": "third-person singular",
4884 "biz (if we)": "first-person plural",
4885 "siz (if you)": "second-person plural",
4886 "onlar (if they)": "third-person plural",
4887 "positive, declarative": "",
4888 "positive, interrogative": "interrogative",
4889 "negative, declarative": "negative",
4890 "negative, interrogative": "negative interrogative",
4891 # a راتلل/Pashto
4892 "زۀ": "first-person singular",
4893 "تۀ": {
4894 "if": "second-person singular masculine",
4895 "then": "second-person singular masculine",
4896 "else": {
4897 "if": "second-person singular feminine",
4898 "then": "second-person singular feminine",
4899 "else": "second-person singular",
4900 },
4901 },
4902 "دی / هغه": "third-person singular masculine",
4903 "دا / هغه": "third-person singular feminine",
4904 "موږ": "first-person plural",
4905 "تاسې": "second-person plural",
4906 "دوی / هغوی": "third-person plural",
4907 "present imperfective": "present imperfective",
4908 "present perfective": "present perfective",
4909 "تاسو": "second-person plural",
4910 # This specific form seems like the addition of someone later in a
4911 # new part of the table, it's a Northern Pashto variant, so someone
4912 # might change it later, unless تاسو is part of the "command"
4913 # paradigm in general.
4914 # a ہاوُن/Kashmiri
4915 "Feminine plural": "feminine plural",
4916 "Completed": "completive",
4917 "بہٕ": "first-person singular",
4918 "ژٕ": "second-person singular",
4919 "سُہ, سۄ": "third-person singular",
4920 "أسؠ": "first-person plural",
4921 "تۄہؠ, تۆہؠ": "second-person plural",
4922 "تِم, تِمہٕ": "third-person plural",
4923 "Nominative subject": "with-nominative",
4924 "Ergative subject": "with-ergative",
4925 "Simple present": "present",
4926 "Past continuous": "past continuative",
4927 "Future continuous": "future continuative",
4928 "m or f": "masculine feminine",
4929 "Simple future": "future",
4930 # Ergatives
4931 "مےٚ": "first-person singular",
4932 "ژےٚ": "second-person singular",
4933 "تٔمؠ, تَمہِ": "third-person singular",
4934 "اَسہِ": "first-person plural",
4935 "تۄہہِ": "second-person plural",
4936 "تِمَو": "third-person plural",
4937 "m sg": "masculine singular",
4938 "m pl": "masculine plural",
4939 "f sg": "feminine singular",
4940 "f pl": "feminine plural",
4941 "Obligatory": "obligative",
4942 "Simple Conditional": "conditional",
4943 "Conditional past continuous": "past continuative conditional",
4944 "Conditional past perfect": "past perfect conditional",
4945 # XXX return to Kashmiri after next wiktionary dump
4946 # дрьзнѫти/Old Church Slavonic
4947 "азъ (azŭ)": "first-person singular",
4948 "тꙑ (ty)": "second-person singular",
4949 "тъ (tŭ)": "third-person singular",
4950 "вѣ (vě)": "first-person dual",
4951 "ва (va)": "second-person dual",
4952 "та (ta)": "third-person dual",
4953 "мꙑ (my)": "first-person plural",
4954 "вꙑ (vy)": "second-person plural",
4955 "ти (ti)": "third-person plural",
4956 # əhli-həsəd/Azerbaijani
4957 "broken plural": "broken-form plural",
4958 # bədən/Azerbaijani
4959 "broken": {
4960 "lang": "Azerbaijani",
4961 # ~ "if": "plural", # doesn't work
4962 "then": "broken-form plural",
4963 },
4964 "sound": {
4965 "lang": "Azerbaijani",
4966 "then": "",
4967 },
4968 # 𒉿𒀠𒄴𒍣/Hittite
4969 "Noun": {
4970 "lang": "Hittite",
4971 "pos": "verb",
4972 "then": "noun-from-verb",
4973 },
4974 # ampesar/Ladino
4975 "io / yo": {
4976 "lang": "Ladino",
4977 "then": "first-person singular",
4978 },
4979 "él / ella": {
4980 "lang": "Ladino",
4981 "then": "third-person singular",
4982 },
4983 "mosotros mosós": {
4984 "lang": "Ladino",
4985 "then": "first-person plural",
4986 },
4987 "vosotros vosós / vós": {
4988 "lang": "Ladino",
4989 "then": "second-person plural",
4990 },
4991 "ellos / ellas": {
4992 "lang": "Ladino",
4993 "then": "third-person plural",
4994 },
4995 # চাওয়া/Bengali
4996 "progressive participle": "progressive participle",
4997 "habitual participle": "habitual participle",
4998 "conditional participle": "conditional participle",
4999 "আমি (ami)": "first-person",
5000 "আমরা (amra)": "first-person",
5001 "তুই (tui)": "second-person impolite",
5002 "তোরা (tora)": "second-person impolite",
5003 "তুমি (tumi)": "second-person",
5004 "তোমরা (tomra)": "second-person",
5005 "এ (e), ও (o), সে (she)": "third-person",
5006 "এরা (era), ওরা (ora), তারা (tara)": "third-person",
5007 "আপনি (apni)": "second-person formal",
5008 "আপনারা (apnara)": "second-person formal",
5009 "ইনি (ini), উনি (uni), তিনি (tini)": "third-person formal",
5010 "এঁরা (ẽra), ওঁরা (õra), তাঁরা (tãra)": "third-person formal",
5011 # schlaa/Alemannic German
5012 "1ˢᵗ person ich, i": "first-person singular",
5013 "3ʳᵈ person er/si/es": "third-person singular",
5014 "2ⁿᵈ person ir": "second-person plural",
5015 # remove duplicates
5016 # natüürlic/Alemannic German
5017 "Strong inflection": "strong",
5018 # d/Alemannic German
5019 "Nominative/Accusative": "nominative accusative",
5020 # ik/German Low German
5021 "(Genitive)": "genitive rare",
5022 "m f": "masculine feminine", # etwer/German
5023 # фи/Romanian
5024 "еу": {
5025 "lang": "Romanian",
5026 "pos": "verb",
5027 "then": "first-person singular",
5028 },
5029 "ту": {
5030 "lang": [
5031 "Tajik",
5032 "Romanian",
5033 ],
5034 "pos": "verb",
5035 "then": "second-person singular",
5036 },
5037 "ел/я": {
5038 "lang": "Romanian",
5039 "pos": "verb",
5040 "then": "third-person singular",
5041 },
5042 "нои": {
5043 "lang": "Romanian",
5044 "pos": "verb",
5045 "then": "first-person plural",
5046 },
5047 "вои": {
5048 "lang": "Romanian",
5049 "pos": "verb",
5050 "then": "second-person plural",
5051 },
5052 "еи/еле": {
5053 "lang": "Romanian",
5054 "pos": "verb",
5055 "then": "third-person plural",
5056 },
5057 "compound perfect": { # has mostly replaced the simple perfect
5058 "lang": "Romanian",
5059 "then": "perfect",
5060 },
5061 # idealistesch/Luxembourgish
5062 "attributive and/or after determiner": "attributive with-determiner",
5063 "independent without determiner": "without-determiner",
5064 "after any declined word": "with-head",
5065 # hunn/Luxembourgish
5066 "1ˢᵗ person ech": "first-person singular",
5067 "2ⁿᵈ person du": "second-person singular",
5068 "3ʳᵈ person hien/si/hatt": "third-person singular",
5069 "1ˢᵗ person mir": "first-person plural",
5070 "2ⁿᵈ person dir": "second-person plural",
5071 "3ʳᵈ person si": "third-person plural",
5072 "present simple": "present",
5073 "future simple": "future",
5074 # чӧсмасьны/Komi-Zyrian
5075 "Direct past tense": "direct past",
5076 "Reported past tense": "reported past",
5077 "Imperfect participle": "imperfect participle",
5078 "Caritive participle": "caritive participle",
5079 # ~ "^(*)) The impersonal reported past is"\
5080 # ~ "expressed using the third singular form."\
5081 # ~ " ^(**)) The first person imperative is"\
5082 # ~ " expressed using the first person future"\
5083 # ~ " form. ^(***)) Any form ending in -ӧй"\
5084 # ~ " has an alternative form ending in -ӧ."\
5085 # ~ " ^(****)) The imperfect and perfect"\
5086 # ~ " participles have alternative forms"\
5087 # ~ " with a paragogic -а.":
5088 "^(*)) The impersonal reported past is expressed using the third singular form. ^(**)) The first person imperative is expressed using the first person future form. ^(***)) Any form ending in -ӧй has an alternative form ending in -ӧ. ^(****)) The imperfect and perfect participles have alternative forms with a paragogic -а.": "", # <th> with footnotes that don't refer to anything?
5089 # ми/Komi-Zyrian
5090 "long dative": "dative",
5091 "short dative": "dative",
5092 # сы/Komi-zyrian
5093 "short nominative": "nominative",
5094 # ehun/Basque
5095 "anim.": "animate",
5096 "inanim.": "inanimate",
5097 # erakutsi/Basque
5098 "NORK": {
5099 "lang": "Basque",
5100 "then": "ergative",
5101 },
5102 "NOR": {
5103 "lang": "Basque",
5104 "then": "absolutive",
5105 },
5106 "NORI": {
5107 "lang": "Basque",
5108 "then": "dative",
5109 },
5110 "nik": {
5111 "lang": "Basque",
5112 "then": "first-person singular",
5113 },
5114 "hik": {
5115 "lang": "Basque",
5116 "then": "second-person singular informal",
5117 },
5118 "hark": {
5119 "lang": "Basque",
5120 "then": "third-person singular",
5121 },
5122 "guk": {
5123 "lang": "Basque",
5124 "then": "first-person plural",
5125 },
5126 "zuk": {
5127 "lang": "Basque",
5128 "then": "second-person singular",
5129 },
5130 "zuek": {
5131 "lang": "Basque",
5132 "then": "second-person plural",
5133 },
5134 "haiek": {
5135 "lang": "Basque",
5136 "then": "third-person plural",
5137 },
5138 "hura": {
5139 "lang": "Basque",
5140 "then": "third-person singular",
5141 },
5142 "niri": {
5143 "lang": "Basque",
5144 "then": "first-person singular",
5145 },
5146 "hiri": {
5147 "lang": "Basque",
5148 "then": "second-person singular informal",
5149 },
5150 "hari": {
5151 "lang": "Basque",
5152 "then": "third-person singular",
5153 },
5154 "guri": {
5155 "lang": "Basque",
5156 "then": "first-person plural",
5157 },
5158 "zuri": {
5159 "lang": "Basque",
5160 "then": "second-person singular",
5161 },
5162 "zuei": {
5163 "lang": "Basque",
5164 "then": "second-person plural",
5165 },
5166 "haiei": {
5167 "lang": "Basque",
5168 "then": "third-person plural",
5169 },
5170 "future cons.": "future consequential",
5171 "past cons.": "past consequential",
5172 "2nd sg inf": "second-person singular informal",
5173 # ISP/Norwegian
5174 "Bokmål m": {
5175 "lang": "Norwegian Bokmål",
5176 "then": "masculine",
5177 "else": "masculine Bokmål",
5178 },
5179 "Bokmål f": {
5180 "lang": "Norwegian Bokmål",
5181 "then": "feminine",
5182 "else": "feminine Bokmål",
5183 },
5184 "Bokmål c": {
5185 "lang": "Norwegian Bokmål",
5186 "then": "common-gender",
5187 "else": "common-gender Bokmål",
5188 },
5189 "Bokmål n": {
5190 "lang": "Norwegian Bokmål",
5191 "then": "neuter",
5192 "else": "neuter Bokmål",
5193 },
5194 "Bokmål": {
5195 "lang": "Norwegian Bokmål",
5196 "then": "",
5197 "else": "Bokmål",
5198 },
5199 "Nynorsk f": {
5200 "lang": "Norwegian Nynorsk",
5201 "then": "feminine",
5202 "else": "feminine Nynorsk",
5203 },
5204 "Nynorsk m": {
5205 "lang": "Norwegian Nynorsk",
5206 "then": "masculine",
5207 "else": "masculine Nynorsk",
5208 },
5209 "Nynorsk n": {
5210 "lang": "Norwegian Nynorsk",
5211 "then": "neuter",
5212 "else": "neuter Nynorsk",
5213 },
5214 "Nynorsk c": {
5215 "lang": "Norwegian Nynorsk",
5216 "then": "common-gender",
5217 "else": "common-gender Nynorsk",
5218 },
5219 "Nynorsk": {
5220 "lang": "Norwegian Nynorsk",
5221 "then": "",
5222 "else": "Nynorsk",
5223 },
5224 # του/Greek
5225 "weak": "weak",
5226 "strong": "strong",
5227 "infinitive — present)": "present infinitive", # eh/Albanian
5228 "infinitive — perfect)": "perfect infinitive",
5229 "past perfect I": "past past-i perfect",
5230 "past perfect II": "past past-ii perfect",
5231 "future I": "future future-i",
5232 "future II": "future future-ii",
5233 "future perfect I": "future future-i perfect",
5234 "future perfect II": "future future-ii perfect",
5235 "ato (3rd person feminine plural)": "third-person feminine plural", # ato/Albanian
5236 "ai (3rd person masculine singular)": "third-person masculine singular", # ai
5237 "ti (2nd person singular)": "second-person singular", # ti
5238 "ata (3rd person masculine plural)": "third-person masculine plural", # ata
5239 "ajo (3rd person feminine singular)": " third-person feminine singular", # ajo
5240 # Tagalog small verb tables, like magwahil/Tagalog
5241 # need something to tag a td-cell with stuff like
5242 # "actor" or "object" in it, or else it'll cause
5243 # NO-TAGS. Unfortunately, only "actor" is tagged
5244 # because "object" and others are parsed as headers.
5245 # At least this way, there is no error message, but
5246 # it is inconsistently applied.
5247 # Using "focus": "detail", in valid_tags seems to
5248 # do the trick and stop 'focus' from bleeding as it
5249 # doesn't with "misc".
5250 "Trigger": {
5251 "lang": "Tagalog",
5252 "then": "focus",
5253 },
5254 # Arabic number paradigm markers decomposed after changes in the parser:
5255 # a ـًى (-an) => ar-infl-an-maksura
5256 # a ـًا (-an) => ar-infl-an-alef
5257 "basic broken plural diptote": "broken-form plural diptote",
5258 "basic broken plural triptote": "broken-form plural triptote", # a حجرة/Arabic
5259 "basic collective triptote": "collective triptote",
5260 "basic singular diptote": "singular diptote",
5261 "basic singular triptote": "singular triptote",
5262 "broken plural diptote in ـٍ (-in)": "broken-form plural diptote ar-infl-in", # a سحلية/Arabic
5263 "broken plural in ـًى (-an)": "broken-form plural ar-infl-an-maksura", # a بلوة/Arabic
5264 "broken plural invariable": "broken-form plural invariable", # a ضحية/Arabic
5265 "broken plural triptote in ـَة (-a)": "broken-form plural triptote ar-infl-a", # a رصيد/Arabic
5266 "collective invariable": "collective invariable",
5267 "diptote triptote": [
5268 "diptote",
5269 "triptote",
5270 ],
5271 "singular diptote in ـٍ (-in)": "singular diptote ar-infl-in",
5272 "singular diptote in ـَاة (-āh)": "singular diptote ar-infl-ah", # a حماة/Arabic
5273 "singular diptote in ـَة (-a)": "singular diptote ar-infl-a", # a أرمية/Arabic
5274 "singular in ـًا (-an)": "singular ar-infl-an-alef",
5275 "singular in ـًى (-an)": "singular ar-infl-an-maksura", # a مدى/Arabic
5276 "singular invariable": "singular invariable",
5277 "singular long construct": "singular long-construct", # a ذو الحجة/Arabic
5278 "singular of irregular noun": "singular irregular",
5279 "singular triptote in ـٍ (-in)": "singular triptote ar-infl-in",
5280 "singular triptote in ـَاة (-āh)": "singular triptote ar-infl-ah", # a قناة السويس/Arabic
5281 "singular triptote in ـَة (-a)": "singular triptote ar-infl-a", # a حاجة/Arabic
5282 "singulative triptote in ـَة (-a)": "singulative triptote ar-infl-a", # a جثجاث/Arabic
5283 "sound feminine paucal": "sound-form feminine paucal",
5284 "sound feminine plural": "sound-form feminine plural",
5285 "sound masculine plural": "sound-form masculine plural",
5286 "sound masculine paucal": "sound-form masculine paucal",
5287 "basic broken paucal triptote": "broken-form paucal triptote",
5288 "sound plural in ـَوْنَ (-awna)": "sound-form plural ar-infl-awna",
5289 "broken plural triptote in ـَاة (-āh)": "broken-form plural triptote ar-infl-ah",
5290 "basic collective diptote": "collective diptote",
5291 "basic singulative triptote": "singulative triptote",
5292 "basic singulative diptote": "singulative diptote",
5293 "singulative triptote in ـَاة (-āh)": "singulative triptote ar-infl-ah",
5294 "collective triptote in ـَة (-a)": "collective triptote ar-infl-a",
5295 "collective in ـًا (-an)": "collective ar-infl-an-alef",
5296 "broken plural triptote in ـٍ (-in)": "broken-form plural triptote ar-infl-in",
5297 "broken plural in ـًا (-an)": "broken-form plural ar-infl-an-alef",
5298 "broken plural in ـًى (-an)": "broken-form plural ar-infl-an-maksura",
5299 "plural of irregular noun": "plural irregular",
5300 "collective in ـًى (-an)": "collective ar-infl-an-maksura",
5301 "broken paucal triptote in ـَة (-a)": "broken-form paucal triptote ar-infl-a",
5302 "singular of irregular pronoun": "singular irregular pronoun",
5303 "basic broken paucal diptote": "broken-form paucal diptote",
5304 # teie/Estonian
5305 "Partitive": "partitive",
5306 "Inessive": "inessive",
5307 "Elative": "elative",
5308 "Allative": "allative",
5309 "Adessive": "adessive",
5310 "Translative": "translative",
5311 "Essive": "essive",
5312 "Abessive": "abessive",
5313 "Comitative": "comitative",
5314 # ащема/Moksha
5315 "one possession": "possessive possessed-single",
5316 "one or multiple possessions": "possessive possessed-single possessed-many",
5317 # XXX the big headers don't express
5318 "Participles➤": "participle", # άρχω/Greek
5319 "Active Present ➤": "present",
5320 "Passive Present ➤": "passive present",
5321 # 알리다/Korean
5322 "Formal non-polite": "formal",
5323 "Informal non-polite": "informal",
5324 "Informal polite": "informal polite",
5325 "Formal polite": "formal polite",
5326 "Middle/Passive": "middle-voice passive", # पिबति/Sanskrit
5327 "Singular base form": "singular base-form", # a ܒܪܘܢܐ/Assyrian Neo-Aramaic
5328 "Plural base form": "plural base-form",
5329 "substantive": {
5330 "lang": [
5331 "Chechen",
5332 "Ingush",
5333 ],
5334 "pos": "noun",
5335 "then": "substantive-case",
5336 },
5337 "similitude": "similitude", # a ئانا/Uyghur
5338 "equivalence": "equal",
5339 "Declension of locative-qualitative form": "locative-qualitative",
5340 "representative": "representative",
5341 "Declension of representative form": "representative",
5342 # When copy-pasting headers from Wiktionary with a browser,
5343 # remember to replace the "downgraded"-superscripts into
5344 # unicode superscript characters here, if the copy-pasted
5345 # content doesn't have super-scripts. Things with <sup></sup>
5346 # get automatically translated into those in clean.py, and
5347 # these entries have to match them. If copy-pasting from
5348 # error messages in the shell, you get the 'correct' characters.
5349 "2ⁿᵈperson singular ordinary": {
5350 "lang": "Uyghur",
5351 "pos": "noun",
5352 "then": "second-person singular possessive",
5353 },
5354 "2ⁿᵈperson plural ordinary": {
5355 "lang": "Uyghur",
5356 "pos": "noun",
5357 "then": "second-person plural possessive",
5358 },
5359 "2ⁿᵈperson singular refined": {
5360 "lang": "Uyghur",
5361 "pos": "noun",
5362 "then": "second-person singular formal possessive",
5363 },
5364 "2ⁿᵈperson plural refined": {
5365 "lang": "Uyghur",
5366 "pos": "noun",
5367 "then": "second-person plural formal possessive",
5368 },
5369 "2ⁿᵈperson singular & plural respectful (your)": {
5370 "lang": "Uyghur",
5371 "pos": "noun",
5372 "then": "second-person polite possessive",
5373 },
5374 "1ˢᵗ person plural": {
5375 "lang": "Uyghur",
5376 "pos": "noun",
5377 "then": "first-person plural possessive",
5378 "else": "first-person plural",
5379 },
5380 "3ʳᵈ person (his, her, its, their)": {
5381 "lang": "Uyghur",
5382 "pos": "noun",
5383 "then": "third-person singular possessive",
5384 },
5385 "1ˢᵗ person singular": {
5386 "lang": "Uyghur",
5387 "pos": "noun",
5388 "then": "first-person singular possessive",
5389 "else": "first-person singular",
5390 },
5391 # -raihu/Kikuyu
5392 # Class [singular class], Class [plural class]
5393 "Class 1, Class 2": {
5394 "lang": "Kikuyu",
5395 "if": "singular",
5396 "then": "class-1",
5397 "else": "class-2",
5398 },
5399 "Class 3, Class 4": {
5400 "lang": "Kikuyu",
5401 "if": "singular",
5402 "then": "class-3",
5403 "else": "class-4",
5404 },
5405 "Class 5, Class 6": {
5406 "lang": "Kikuyu",
5407 "if": "singular",
5408 "then": "class-5",
5409 "else": "class-6",
5410 },
5411 "Class 7, Class 8": {
5412 "lang": "Kikuyu",
5413 "if": "singular",
5414 "then": "class-7",
5415 "else": "class-8",
5416 },
5417 "Class 9, Class 10": {
5418 "lang": "Kikuyu",
5419 "if": "singular",
5420 "then": "class-9",
5421 "else": "class-10",
5422 },
5423 "Class 11, Class 10": {
5424 "lang": "Kikuyu",
5425 "if": "singular",
5426 "then": "class-11",
5427 "else": "class-10",
5428 },
5429 "Class 12, Class 13": {
5430 "lang": "Kikuyu",
5431 "if": "singular",
5432 "then": "class-12",
5433 "else": "class-13",
5434 },
5435 "Class 14, Class 6": {
5436 "lang": "Kikuyu",
5437 "if": "singular",
5438 "then": "class-14",
5439 "else": "class-6",
5440 },
5441 "Class 15, Class 6": {
5442 "lang": "Kikuyu",
5443 "if": "singular",
5444 "then": "class-15",
5445 "else": "class-6",
5446 },
5447 "2nd person f": "second-person feminine",
5448 "ја": { # THIS IS CYRILLIC!! Not Latin! подразумевати/Serbo-Croatian
5449 "lang": "Serbo-Croatian",
5450 "then": "first-person singular",
5451 },
5452 "он / она / оно": {
5453 "lang": "Serbo-Croatian",
5454 "then": "third-person singular",
5455 },
5456 "ми": {
5457 "lang": "Serbo-Croatian",
5458 "then": "first-person plural",
5459 },
5460 "ви": {
5461 "lang": "Serbo-Croatian",
5462 "then": "second-person plural",
5463 },
5464 "они / оне / она": {
5465 "lang": "Serbo-Croatian",
5466 "then": "third-person plural",
5467 },
5468 "conditional¹^, (kushtore)": { # kushtoj/Albanian
5469 "lang": "Albanian",
5470 "then": "conditional",
5471 },
5472 "personal non-finite": { # prosternarse/Spanish
5473 "lang": "Spanish",
5474 "then": "",
5475 },
5476 "1ˢᵗ person singular (“my”)": "first-person singular possessive", # a احساس/Persian
5477 "3ʳᵈ person singular (“his, her, its”)": "third-person singular possessive",
5478 "1ˢᵗ plural (“our”)": "first-person plural possessive",
5479 "2ⁿᵈ plural (“your”)": "second-person plural possessive",
5480 "3ʳᵈ plural (“their”)": "third-person plural possessive",
5481 "with possessive pronouns": "possessed-form", # a ܡܘܙܐ/Assyrian Neo-Aramaic
5482 # Talat/Turkish, possessive tables for names
5483 "benim (my)": "first-person singular",
5484 "senin (your)": "second-person singular",
5485 "onun (his/her/its)": "third-person singular",
5486 "bizim (our)": "first-person plural",
5487 "sizin (your)": "second-person plural",
5488 "onların (their)": "third-person plural",
5489 # Alpler/Turkish
5490 "singular, uncountable (tekil, sayılamaz)": "singular uncountable",
5491 # अकड़ना/Hindi
5492 "1ˢᵗ मैं": "first-person singular",
5493 "2ⁿᵈ तू": "second-person singular",
5494 "3ʳᵈ यह/वह, ये/वो": "third-person singular",
5495 "2ⁿᵈ तुम": "second-person plural",
5496 "1ˢᵗ हम": "first-person plural",
5497 "3ʳᵈ, 2ⁿᵈ ये/वो/वे, आप": ["third-person plural", "second-person formal"],
5498 # -ra/Basque
5499 "proximal plural": "proximal plural",
5500 # a שלאָפֿן/Yiddish
5501 # These tables are unparseable due to lack of headers, really
5502 # ~ "Composed forms": "",
5503 # kalium/Limburgish
5504 "Root singular": "singular",
5505 "Root plural": "plural",
5506 "Diminutive singular": "diminutive singular",
5507 "Diminutive plural": "diminutive plural",
5508 # tèlle/Limburgish
5509 "adverb": "adverb",
5510 "number & tense": "*",
5511 "verb-second order": "v2",
5512 "verb-first order": "v1",
5513 "first person plural": "first-person plural",
5514 "second person plural": "second-person plural",
5515 "third person plural": "third-person plural",
5516 "other forms": "",
5517 "imperative singular impolite": "imperative singular impolite",
5518 "imperative singular polite": "imperative singular polite",
5519 "imperative dual": "imperative dual",
5520 # beer/Limburgish
5521 "Diminutive": "diminutive",
5522 "Mutation": "mutation",
5523 "Diminutive Mutation": "diminutive mutation",
5524 # сядоце/Moksha
5525 "мон (mon)": "first-person singular",
5526 "минь (minʹ)": "first-person plural",
5527 "тон (ton)": "second-person singular",
5528 "тинь (tinʹ)": "second-person plural",
5529 "сон (son)": "third-person singular",
5530 "синь (sinʹ)": "third-person plural",
5531 # улемс/Moksha
5532 "1ˢᵗ singular — мон (mon)": "first-person singular",
5533 "2ⁿᵈ singular — тон (ton)": "second-person singular",
5534 "3ʳᵈ singular — сон (son)": "third-person singular",
5535 "1ˢᵗ plural — минь (minʹ)": "first-person plural",
5536 "2ⁿᵈ plural — тинь (tinʹ)": "second-person plural",
5537 "3ʳᵈ plural — синь (sinʹ)": "third-person plural",
5538 "Past I": "past-i past",
5539 "Compound future": "multiword-construction future",
5540 "agentive / pres. act. part.": "present active participle agentive",
5541 "present passive participle": "present passive participle",
5542 # содамс/Moksha
5543 "Past II / subjunctive": "past-ii past subjunctive",
5544 "Subjunctive of conditional": "subjunctive conditional",
5545 "ma-infinitive / verbal noun": "noun-from-verb infinitive infinitive-ma",
5546 "mda-infinitive": "infinitive infinitive-mda",
5547 "gerund negative": "negative gerund",
5548 "1ˢᵗ person singular object — монь (monʹ)": "object-first-person object-singular",
5549 "2ⁿᵈ person singular object — тонь (tonʹ)": "object-second-person object-singular",
5550 "3ʳᵈ person singular object — сонь (sonʹ)": "object-third-person object-singular",
5551 "1ˢᵗ person plural object — минь (minʹ)": "object-first-person object-plural",
5552 "2ⁿᵈ person plural object — тинь (tinʹ)": "object-second-person object-plural",
5553 "3ʳᵈ person plural object — синь (sinʹ)": "object-third-person object-plural",
5554 # ਪਾਉਣਾ/(Punjabi
5555 "Singular/Plural": "singular plural",
5556 "Plural/Formal": "",
5557 "1ˢᵗ ਮੈਂ": "first-person singular",
5558 "2ⁿᵈ intimate ਤੂੰ": "second-person singular intimate",
5559 "3ʳᵈ ਇਹ/ਉਹ": "third-person singular",
5560 "2ⁿᵈ familiar ਤੁਸੀਂ": "second-person familiar",
5561 "1ˢᵗ ਅਸੀਂ": "third-person plural",
5562 "2ⁿᵈ formal, 3ʳᵈ ਇਹ/ਉਹ/ਆਪ": [
5563 "second-person formal",
5564 "third-person plural",
5565 ],
5566 "REG": "",
5567 "POL": "polite",
5568 # оз/Komi-Zyrian
5569 "Non-Past tense": "non-past",
5570 # hāi7Namuyi
5571 "Habitual/Future": "habitual future",
5572 "Prospective": "prospective",
5573 "Ingressive": "ingressive",
5574 "Experiential": "experiential",
5575 "Premeditated": "premeditated",
5576 # nyanyi/Warlpiri
5577 "andative": "andative",
5578 "nomic": "nomic",
5579 # être/Lorrain
5580 "je (j')": {
5581 "lang": "Lorrain",
5582 "then": "first-person singular",
5583 },
5584 "el, elle": {
5585 "lang": "Lorrain",
5586 "then": "third-person singular",
5587 },
5588 "el, elles": {
5589 "lang": "Lorrain",
5590 "then": "third-person plural",
5591 },
5592 "distant imperfect (from Latin er-)": "imperfect distant-imperfect-er",
5593 "distant imperfect (from Latin stab-)": "imperfect distant-imperfect-stab",
5594 "near imperfect": "imperfect near-imperfect",
5595 "que je / qu'i": "first-person singular",
5596 "qu'â (al), qu'ale": "third-person singular",
5597 "qu'âs, qu'ales": "third-person plural",
5598 "ham": {
5599 "lang": "Fiji Hindi",
5600 "then": "first-person singular",
5601 },
5602 "ham log": {
5603 "lang": "Fiji Hindi",
5604 "then": "first-person plural",
5605 },
5606 "tum": {
5607 "lang": "Fiji Hindi",
5608 "then": "second-person singular",
5609 },
5610 "tum log": {
5611 "lang": "Fiji Hindi",
5612 "then": "second-person plural",
5613 },
5614 "uu": {
5615 "lang": "Fiji Hindi",
5616 "then": "third-person singular",
5617 },
5618 "uu log": {
5619 "lang": "Fiji Hindi",
5620 "then": "third-person plural",
5621 },
5622 # ndu/South Slavey
5623 "areal": {
5624 "lang": "South Slavey",
5625 "then": "locative",
5626 },
5627 # ave/Tolai
5628 "1st person exclusive": "first-person exclusive",
5629 "1st person inclusive": "first-person inclusive",
5630 # mahkwa/Fox
5631 "Singular Noun": "singular",
5632 "Plural Noun": "plural",
5633 "Proximate": "proximative",
5634 "Obviative": "obviative",
5635 "Local": "locative",
5636 "Singular Possessive": "possessed-single",
5637 "Plural Possessive": "possessed-many",
5638 "First and second person": "first-person second-person",
5639 "perlative": "perlative", # arnaq/Yup'ik
5640 # tōku/Maori
5641 "singular object": {
5642 "lang": "Maori",
5643 "then": "possessed-single",
5644 },
5645 "dual/plural object": {
5646 "lang": "Maori",
5647 "then": "possessed-many",
5648 },
5649 "A category": {
5650 "lang": "Maori",
5651 "then": "alienable",
5652 },
5653 "O category": {
5654 "lang": "Maori",
5655 "then": "inalienable",
5656 },
5657 "Neutral": {
5658 "lang": "Maori",
5659 "then": "",
5660 },
5661 "dual subject": "dual",
5662 "1st person, inclusive": "first-person inclusive",
5663 "1st person, exclusive": "first-person exclusive",
5664 "comitative-instrumental": "comitative instrumental", # тан/Mansi
5665 # пыг/Mansi
5666 "double possession": "possessed-two",
5667 "multiple possession": "possessed-many",
5668 "3d person dual": "third-person dual",
5669 "3d person plural": "third-person plural",
5670 # Tibetan romanizations
5671 "Wylie": "romanization",
5672 "Basic": {
5673 "lang": "Udmurt",
5674 "then": "",
5675 },
5676 "Temporal": {
5677 "lang": "Udmurt",
5678 "then": "gerund-temporal gerund",
5679 },
5680 "Fourth": {
5681 "lang": "Udmurt",
5682 "then": "gerund-iv gerund",
5683 },
5684 "Deverbal": {
5685 "lang": "Udmurt",
5686 "then": "noun-from-verb",
5687 },
5688 # тос/Mariupol Greek
5689 "3rd n": "third-person neuter",
5690 "clitic": "clitic",
5691 # likkõ/Livonian
5692 "sa": {
5693 "lang": "Livonian",
5694 "then": "second-person singular",
5695 },
5696 "ta": "third-person singular",
5697 "mēg": "first-person plural",
5698 "tēg": "second-person plural",
5699 "indicative negative": "negative indicative",
5700 "(sa)": "second-person singular",
5701 "(mēg)": "first-person plural",
5702 "(tēg)": "second-person plural",
5703 "imperative negative": "negative imperative",
5704 "conditional negative": "negative conditional",
5705 "jussive negative": "negative jussive",
5706 "debitive": "debitive",
5707 "minnõn": "first-person singular",
5708 "sinnõn": "second-person singular",
5709 "tämmõn": "third-person singular",
5710 "mäddõn": "first-person plural",
5711 "täddõn": "second-person plural",
5712 "näntõn": "third-person plural",
5713 "supine abessive": "supine abessive",
5714 # நத்தை/Tamil
5715 "Genitive 1": "genitive-i genitive",
5716 "Genitive 2": "genitive-ii genitive",
5717 "Locative 1": "locative-i locative",
5718 "Locative 2": "locative-ii locative",
5719 "Sociative 1": "sociative-i sociative",
5720 "Sociative 2": "sociative-ii sociative",
5721 # பிடி/Tamil
5722 "singular affective": "affective singular",
5723 "third masculine": "third-person masculine",
5724 "third feminine": "third-person feminine",
5725 "third honorific": "third-person honorific",
5726 "third neuter": "third-person neuter",
5727 "நான்": "first-person singular",
5728 "நீ": "second-person singular",
5729 "அவன்": "third-person singular masculine",
5730 "அவள்": "third-person singular feminine",
5731 "அவர்": "third-person singular honorific",
5732 "அது": "third-person singular neuter",
5733 "future negative": "negative future",
5734 "plural affective": "affective plural",
5735 "third epicene": "third-person epicene",
5736 "நாம் (inclusive) நாங்கள் (exclusive)": [
5737 "first-person plural inclusive",
5738 "first-person plural exclusive",
5739 ],
5740 "நீங்கள்": "second-person plural",
5741 "அவர்கள்": "third-person plural epicene",
5742 "அவை": "third-person plural neuter",
5743 "effective": "effective",
5744 "casual conditional": "conditional informal",
5745 "honorific": "honorific",
5746 "epicene": "epicene",
5747 "Form I": {
5748 "lang": "Tamil",
5749 "then": "gerund-i gerund",
5750 },
5751 "Form II": {
5752 "lang": "Tamil",
5753 "then": "gerund-ii gerund",
5754 },
5755 "Form III": {
5756 "lang": "Tamil",
5757 "then": "gerund-iii gerund",
5758 },
5759 # bolmak/Turkmen
5760 "men": "first-person singular",
5761 "ol": "third-person singular",
5762 "olar": "third-person plural",
5763 "proximal": "proximal",
5764 "distal": "distal",
5765 "unwitnessed": "unwitnessed",
5766 "obligatory": "obligative",
5767 # kanákta/Mohawk
5768 "Sing.": "singular",
5769 "Plur.": "plural",
5770 # እግር/Amharic
5771 "Definite subject": "definite nominative",
5772 "Definite object": "definite accusative",
5773 "General object": "accusative",
5774 # sugu/Veps
5775 "approximative I": "approximative-i approximative",
5776 "approximative II": "approximative-ii approximative",
5777 "terminative I": "terminative-i terminative",
5778 "terminative II": "terminative-ii terminative",
5779 "terminative III": "terminative-iii terminative",
5780 "additive I": "additive-i additive",
5781 "additive II": "additive-ii additive",
5782 # duhtadit/Northern Sami
5783 "action inessive": "noun-from-verb inessive",
5784 "action elative": "noun-from-verb elative",
5785 "agent participle": "agent participle",
5786 "action comitative": "noun-from-verb comitative",
5787 "conditional 1": "conditional-i conditional",
5788 "conditional 2": "conditional-ii conditional",
5789 # 능숙하다/Korean
5790 "Plain": {
5791 "lang": "Korean",
5792 "then": "",
5793 },
5794 # stupid Interlingua hand-crafted minimal tables, deber/Interlingua
5795 "Present:": "present",
5796 "Past:": "past",
5797 "Future:": "future",
5798 "Conditional:": "conditional",
5799 "Present participle:": "present participle",
5800 "Past participle:": "past participle",
5801 "Imperative:": "imperative",
5802 # уө/Southern Yukaghir
5803 "short plural": "plural short-form",
5804 "long plural": "plural long-form",
5805 # aganchaka/Garo
5806 "Declarative": "",
5807 '"not yet"': "not-yet-form",
5808 '"probably"': "potential",
5809 "Intentional": "intentive",
5810 "Change of state": "perfect",
5811 "Formal imperative": "imperative formal",
5812 # ಹುಟ್ಟು/Kannada
5813 "adverbial participles": "adverbial participle",
5814 "adjectival participles": "adjectival participle",
5815 "other nonfinite forms": "",
5816 "volitive forms": "volitive",
5817 "present adverbial participle": "present adverbial participle",
5818 "nonpast adjectival participle": "non-past adjectival participle",
5819 "suihortative form": "suihortative",
5820 "past adverbial participle": "past adverbial participle",
5821 "past adjectival participle": "past adjectival participle",
5822 "dative infinitive": "infinitive dative",
5823 "cohortative form I": "cohortative-i cohortative",
5824 "negative adverbial participle": "negative adverbial participle",
5825 "negative adjectival participle": "negative adjectival participle",
5826 "conditional form": "conditional",
5827 "cohortative form II": "cohortative-ii cohortative",
5828 "tense/modality": "",
5829 "ನಾನು": "first-person singular",
5830 "ನೀನು": "second-person singular",
5831 "ಅವನು": "third-person masculine singular",
5832 "ಅವಳು": "third-person feminine singular",
5833 "ಅದು": "third-person neuter singular",
5834 "ನಾವು": "first-person plural",
5835 "ನೀವು": "second-person plural",
5836 "ಅವರು": "third-person epicene plural",
5837 "ಅವು": "third-person neuter plural",
5838 # ಅದು/Kannada
5839 '"Objective Singular"': "singular objective",
5840 "Epicene Plural": "epicene plural",
5841 # цӏехуьл/Lezgi
5842 "adelative": "adelative",
5843 "addirective": "addirective",
5844 "postessive": "postessive",
5845 "postelative": "postelative",
5846 "postdirective": "postdirective",
5847 "subessive": "subessive",
5848 "subelative": "subelative",
5849 "subdirective": "subdirective",
5850 "inelative": "inelative",
5851 "superelative": "superelative",
5852 "superdirective": "superdirective",
5853 # देर/Konkani
5854 "accusative/dative": "accusative dative",
5855 # भेड्डो/Konkani
5856 "masc. singular": "masculine singular",
5857 "fem. singular": "feminine singular",
5858 "masc. plural": "masculine plural",
5859 "fem. plural": "feminine plural",
5860 # zeuen burua/Basque
5861 "elkar": "reciprocal",
5862 "noren burua": "reflexive",
5863 # ezer/Basque
5864 "nor": "interrogative pronoun personal",
5865 "zer": "interrogative pronoun",
5866 "zein": "interrogative pronoun",
5867 "zenbat": "interrogative quantitative",
5868 # batzuk/Basque
5869 "bat": "pronoun",
5870 "bakoitz": "pronoun",
5871 # veda/Scanian
5872 "jağ": "first-person singular",
5873 "dú": "second-person singular",
5874 "hanð": "third-person singular",
5875 "ví": "first-person plural",
5876 "í": "second-person plural",
5877 "dé": "third-person plural",
5878 "present imperative": "present imperative",
5879 # a ګړندی/Pashto
5880 "oblique I": "oblique oblique-i",
5881 "oblique II (dialectal)": "oblique oblique-ii dialectal",
5882 # a پخول/Pashto
5883 "Present Imperfective Subject Agreement": "present imperfective",
5884 "Past Imperfective Object Agreement": "past imperfective object-concord dummy-object-concord",
5885 "OBJECT": "",
5886 "Past Perfective": {
5887 "default": "past perfective",
5888 "lang": "Pashto",
5889 "then": "past perfective object-concord dummy-object-concord",
5890 },
5891 # ní/Old Irish
5892 "Animate": "animate",
5893 # just in case
5894 "Inanimate": "inanimate",
5895 # τα/Greek
5896 "1-s": "first-person singular",
5897 "2-s": "second-person singular",
5898 "3-ms": "third-person masculine singular",
5899 "3-fs": "third-person feminine singular",
5900 "3-ns": "third-person neuter singular",
5901 "1-p": "first-person plural",
5902 "2-p": "second-person plural",
5903 "3-mp": "third-person masculine plural",
5904 "3-fp": "third-person feminine plural",
5905 "3-np": "third-person neuter plural",
5906 # angu/Swahili
5907 "Noun class": {
5908 "lang": "Swahili",
5909 "then": "",
5910 },
5911 "M-wa class": {
5912 "lang": "Swahili",
5913 "then": "class-1 class-2",
5914 },
5915 "M-mi class": {
5916 "lang": "Swahili",
5917 "then": "class-3 class-4",
5918 },
5919 "Ma class": {
5920 "lang": "Swahili",
5921 "then": "class-5 class-6",
5922 },
5923 "Ki-vi class": {
5924 "lang": "Swahili",
5925 "then": "class-7 class-8",
5926 },
5927 "N class": {
5928 "lang": "Swahili",
5929 "then": "class-9 class-10",
5930 },
5931 "U class": {
5932 "lang": "Swahili",
5933 "then": "class-11 class-12",
5934 },
5935 "Pa class": {
5936 "lang": "Swahili",
5937 "then": "class-16",
5938 },
5939 "Ku class": {
5940 "lang": "Swahili",
5941 "then": "class-15",
5942 },
5943 "Mu class": {
5944 "lang": "Swahili",
5945 "then": "class-18",
5946 },
5947 "m-wa": {
5948 "lang": "Swahili",
5949 "then": "class-1 class-2",
5950 },
5951 "m-mi": {
5952 "lang": "Swahili",
5953 "then": "class-3 class-4",
5954 },
5955 "ma": {
5956 "lang": "Swahili",
5957 "then": "class-5 class-6",
5958 "else": {
5959 "lang": "Livonian",
5960 "then": "first-person singular",
5961 },
5962 },
5963 "ki-vi": {
5964 "lang": "Swahili",
5965 "then": "class-7 class-8",
5966 },
5967 "n": {
5968 "default": "neuter",
5969 "lang": "Swahili",
5970 "then": "class-9 class-10",
5971 },
5972 "u": {
5973 "lang": "Swahili",
5974 "then": "class-11 class-12",
5975 },
5976 "pa": {
5977 "lang": "Swahili",
5978 "then": "class-16",
5979 },
5980 "ku": {
5981 "lang": "Swahili",
5982 "then": "class-15",
5983 },
5984 "mu": {
5985 "lang": "Swahili",
5986 "then": "class-18",
5987 },
5988 "other classes": "",
5989 "Consecutive subjunctive": "consecutive subjunctive",
5990 # taka/Swahili sw-conj
5991 "Polarity": "",
5992 "Persons": "",
5993 "Persons / Classes": "",
5994 "Classes": "",
5995 "3rd / M-wa": {
5996 "lang": "Swahili",
5997 "then": "third-person",
5998 },
5999 "M-mi": "",
6000 "Ma": "",
6001 "Ki-vi": "",
6002 "N": "",
6003 "U": "",
6004 "Ku": "",
6005 "Pa": "",
6006 "Mu": "",
6007 "Sg.": {
6008 "default": "singular",
6009 "lang": "Swahili",
6010 "then": "singular",
6011 },
6012 "Pl.": {
6013 "default": "plural",
6014 "lang": "Swahili",
6015 "then": "plural",
6016 },
6017 "Sg. / 1": {
6018 "default": "singular class-1",
6019 "lang": "Swahili",
6020 "then": "singular class-1",
6021 },
6022 "Pl. / 2": {
6023 "default": "plural class-2",
6024 "lang": "Swahili",
6025 "then": "plural class-2",
6026 },
6027 "3": {
6028 "default": "third-person",
6029 "lang": "Swahili",
6030 "then": "class-3",
6031 "else": {
6032 "lang": head_final_numeric_langs,
6033 "then": "class-3",
6034 },
6035 },
6036 "4": {
6037 "default": "class-4",
6038 "lang": "Swahili",
6039 "then": "class-4",
6040 },
6041 "5": {
6042 "default": "class-5",
6043 "lang": "Swahili",
6044 "then": "class-5",
6045 },
6046 "6": {
6047 "default": "class-6",
6048 "lang": "Swahili",
6049 "then": "class-6",
6050 },
6051 "7": {
6052 "default": "class-7",
6053 "lang": "Swahili",
6054 "then": "class-7",
6055 },
6056 "8": {
6057 "default": "class-8",
6058 "lang": "Swahili",
6059 "then": "class-8",
6060 },
6061 "9": {
6062 "default": "class-9",
6063 "lang": "Swahili",
6064 "then": "class-9",
6065 },
6066 "10": {
6067 "default": "class-10",
6068 "lang": "Swahili",
6069 "then": "class-10",
6070 },
6071 "11 / 14": {
6072 "default": "class-11 class-14",
6073 "lang": "Swahili",
6074 "then": "class-11 class-14",
6075 },
6076 "15 / 17": {
6077 "default": "class-15 class-17",
6078 "lang": "Swahili",
6079 "then": "class-15 class-17",
6080 },
6081 "16": {
6082 "default": "class-16",
6083 "lang": "Swahili",
6084 "then": "class-16",
6085 },
6086 "18": {
6087 "default": "class-18",
6088 "lang": "Swahili",
6089 "then": "class-18",
6090 },
6091 "1s": {
6092 "default": "first-person singular",
6093 "if": "object-concord",
6094 "then": "object-first-person object-singular",
6095 "else": {
6096 "lang": "Swahili",
6097 "then": [
6098 "dummy-use-as-coltags first-person singular",
6099 "dummy-use-as-rowtags object-first-person object-singular",
6100 ],
6101 },
6102 },
6103 "2s": {
6104 "default": "second-person singular",
6105 "if": "object-concord",
6106 "then": "object-second-person object-singular",
6107 "else": {
6108 "lang": "Swahili",
6109 "then": [
6110 "dummy-use-as-coltags second-person singular",
6111 "dummy-use-as-rowtags object-second-person object-singular",
6112 ],
6113 },
6114 },
6115 "3s": {
6116 "default": "third-person singular",
6117 "if": "object-concord",
6118 "then": "object-third-person object-singular",
6119 "else": {
6120 "lang": "Swahili",
6121 "then": [
6122 "dummy-use-as-coltags third-person singular",
6123 "dummy-use-as-rowtags object-third-person object-singular",
6124 ],
6125 },
6126 },
6127 "1p": {
6128 "default": "first-person plural",
6129 "if": "object-concord",
6130 "then": "object-first-person object-plural",
6131 "else": {
6132 "lang": "Swahili",
6133 "then": [
6134 "dummy-use-as-coltags first-person plural",
6135 "dummy-use-as-rowtags object-first-person object-plural",
6136 ],
6137 },
6138 },
6139 "2p": {
6140 "default": "second-person plural",
6141 "if": "object-concord",
6142 "then": "object-second-person object-plural",
6143 "else": {
6144 "lang": "Swahili",
6145 "then": [
6146 "dummy-use-as-coltags second-person plural",
6147 "dummy-use-as-rowtags object-second-person object-plural",
6148 ],
6149 },
6150 },
6151 "3p": {
6152 "default": "third-person plural",
6153 "if": "object-concord",
6154 "then": "object-third-person object-plural",
6155 "else": {
6156 "lang": "Swahili",
6157 "then": [
6158 "dummy-use-as-coltags third-person plural",
6159 "dummy-use-as-rowtags object-third-person object-plural",
6160 ],
6161 },
6162 },
6163 "c1": {
6164 "default": "class-1",
6165 "if": "object-concord",
6166 "then": "object-class-1",
6167 "else": {
6168 "lang": "Swahili",
6169 "then": [
6170 "dummy-use-as-coltags class-1",
6171 "dummy-use-as-rowtags object-class-1",
6172 ],
6173 },
6174 },
6175 "c2": {
6176 "default": "class-2",
6177 "if": "object-concord",
6178 "then": "object-class-2",
6179 "else": {
6180 "lang": "Swahili",
6181 "then": [
6182 "dummy-use-as-coltags class-2",
6183 "dummy-use-as-rowtags object-class-2",
6184 ],
6185 },
6186 },
6187 "c3": {
6188 "default": "class-3",
6189 "if": "object-concord",
6190 "then": "object-class-3",
6191 "else": {
6192 "lang": "Swahili",
6193 "then": [
6194 "dummy-use-as-coltags class-3",
6195 "dummy-use-as-rowtags object-class-3",
6196 ],
6197 },
6198 },
6199 "c4": {
6200 "default": "class-4",
6201 "if": "object-concord",
6202 "then": "object-class-4",
6203 "else": {
6204 "lang": "Swahili",
6205 "then": [
6206 "dummy-use-as-coltags class-4",
6207 "dummy-use-as-rowtags object-class-4",
6208 ],
6209 },
6210 },
6211 "c5": {
6212 "default": "class-5",
6213 "if": "object-concord",
6214 "then": "object-class-5",
6215 "else": {
6216 "lang": "Swahili",
6217 "then": [
6218 "dummy-use-as-coltags class-5",
6219 "dummy-use-as-rowtags object-class-5",
6220 ],
6221 },
6222 },
6223 "c6": {
6224 "default": "class-6",
6225 "if": "object-concord",
6226 "then": "object-class-6",
6227 "else": {
6228 "lang": "Swahili",
6229 "then": [
6230 "dummy-use-as-coltags class-6",
6231 "dummy-use-as-rowtags object-class-6",
6232 ],
6233 },
6234 },
6235 "c7": {
6236 "default": "class-7",
6237 "if": "object-concord",
6238 "then": "object-class-7",
6239 "else": {
6240 "lang": "Swahili",
6241 "then": [
6242 "dummy-use-as-coltags class-7",
6243 "dummy-use-as-rowtags object-class-7",
6244 ],
6245 },
6246 },
6247 "c8": {
6248 "default": "class-8",
6249 "if": "object-concord",
6250 "then": "object-class-8",
6251 "else": {
6252 "lang": "Swahili",
6253 "then": [
6254 "dummy-use-as-coltags class-8",
6255 "dummy-use-as-rowtags object-class-8",
6256 ],
6257 },
6258 },
6259 "c9": {
6260 "default": "class-9",
6261 "if": "object-concord",
6262 "then": "object-class-9",
6263 "else": {
6264 "lang": "Swahili",
6265 "then": [
6266 "dummy-use-as-coltags class-9",
6267 "dummy-use-as-rowtags object-class-9",
6268 ],
6269 },
6270 },
6271 "c10": {
6272 "default": "class-10",
6273 "if": "object-concord",
6274 "then": "object-class-10",
6275 "else": {
6276 "lang": "Swahili",
6277 "then": [
6278 "dummy-use-as-coltags class-10",
6279 "dummy-use-as-rowtags object-class-10",
6280 ],
6281 },
6282 },
6283 "c11": {
6284 "default": "class-11",
6285 "if": "object-concord",
6286 "then": "object-class-11",
6287 "else": {
6288 "lang": "Swahili",
6289 "then": [
6290 "dummy-use-as-coltags class-11",
6291 "dummy-use-as-rowtags object-class-11",
6292 ],
6293 },
6294 },
6295 "c12": {
6296 "default": "class-12",
6297 "if": "object-concord",
6298 "then": "object-class-12",
6299 "else": {
6300 "lang": "Swahili",
6301 "then": [
6302 "dummy-use-as-coltags class-12",
6303 "dummy-use-as-rowtags object-class-12",
6304 ],
6305 },
6306 },
6307 "c13": {
6308 "default": "class-13",
6309 "if": "object-concord",
6310 "then": "object-class-13",
6311 "else": {
6312 "lang": "Swahili",
6313 "then": [
6314 "dummy-use-as-coltags class-13",
6315 "dummy-use-as-rowtags object-class-13",
6316 ],
6317 },
6318 },
6319 "c14": {
6320 "default": "class-14",
6321 "if": "object-concord",
6322 "then": "object-class-14",
6323 "else": {
6324 "lang": "Swahili",
6325 "then": [
6326 "dummy-use-as-coltags class-14",
6327 "dummy-use-as-rowtags object-class-14",
6328 ],
6329 },
6330 },
6331 "c15": {
6332 "default": "class-15",
6333 "if": "object-concord",
6334 "then": "object-class-15",
6335 "else": {
6336 "lang": "Swahili",
6337 "then": [
6338 "dummy-use-as-coltags class-15",
6339 "dummy-use-as-rowtags object-class-15",
6340 ],
6341 },
6342 },
6343 "c16": {
6344 "default": "class-16",
6345 "if": "object-concord",
6346 "then": "object-class-16",
6347 "else": {
6348 "lang": "Swahili",
6349 "then": [
6350 "dummy-use-as-coltags class-16",
6351 "dummy-use-as-rowtags object-class-16",
6352 ],
6353 },
6354 },
6355 "c17": {
6356 "default": "class-17",
6357 "if": "object-concord",
6358 "then": "object-class-17",
6359 "else": {
6360 "lang": "Swahili",
6361 "then": [
6362 "dummy-use-as-coltags class-17",
6363 "dummy-use-as-rowtags object-class-17",
6364 ],
6365 },
6366 },
6367 "c18": {
6368 "default": "class-18",
6369 "if": "object-concord",
6370 "then": "object-class-18",
6371 "else": {
6372 "lang": "Swahili",
6373 "then": [
6374 "dummy-use-as-coltags class-18",
6375 "dummy-use-as-rowtags object-class-18",
6376 ],
6377 },
6378 },
6379 "1s/2s/3s/c1": [
6380 "object-first-person object-second-person "
6381 "object-third-person object-singular",
6382 "object-class-1",
6383 ],
6384 "*p/2/3/11/14": [
6385 "object-plural object-first-person "
6386 "object-second-person object-third-person",
6387 "object-class-2 object-class-3 object-class-11 " "object-class-14",
6388 ],
6389 "c4/c6/c9": "object-class-4 object-class-6 object-class-9",
6390 "2s/2p/15/17": [
6391 "object-second-person object-singular object-plural",
6392 "object-class-15 object-class-17",
6393 ],
6394 "2p/3p/c2": [
6395 "object-second-person object-third-person object-plural",
6396 "object-class-2",
6397 ],
6398 "c3/c11/c14": "object-class-3 object-class-11 object-class-14",
6399 "c4/c9": "object-class-4 object-class-9",
6400 "Forms with object concords": "object-concord",
6401 "Past": {
6402 "default": "past",
6403 "lang": "Swahili",
6404 "then": "past",
6405 },
6406 "Present": {
6407 "default": "present",
6408 "lang": "Swahili",
6409 "then": "present",
6410 },
6411 "Future": {"default": "future", "lang": "Swahili", "then": "future"},
6412 "Subjunctive": {
6413 "default": "subjunctive",
6414 "lang": "Swahili",
6415 "then": "subjunctive",
6416 },
6417 "Present conditional": {
6418 "default": "present irrealis",
6419 "lang": "Swahili",
6420 "then": "present irrealis",
6421 },
6422 "Past conditional": {
6423 "default": "past irrealis",
6424 "lang": "Swahili",
6425 "then": "past irrealis",
6426 },
6427 "Conditional contrary to fact": {
6428 "default": "conditional counterfactual",
6429 "lang": "Swahili",
6430 "then": "conditional counterfactual",
6431 },
6432 "Gnomic": {
6433 "default": "gnomic",
6434 "lang": "Swahili",
6435 "nested-table-depth": [1, 2],
6436 "then": "gnomic",
6437 },
6438 "Perfect": {
6439 "default": "perfect",
6440 "lang": "Swahili",
6441 "nested-table-depth": [1, 2],
6442 "then": "perfect",
6443 },
6444 '"Already"': {
6445 "default": "already-form",
6446 "lang": "Swahili",
6447 "nested-table-depth": [1, 2],
6448 "then": "already-form",
6449 },
6450 '"Not yet"': {
6451 "default": "not-yet-form",
6452 "lang": "Swahili",
6453 "nested-table-depth": [1, 2],
6454 "then": "not-yet-form",
6455 },
6456 '"If/When"': {
6457 "default": "if-when-form",
6458 "lang": "Swahili",
6459 "nested-table-depth": [1, 2],
6460 "then": "if-when-form",
6461 },
6462 '"If not"': {
6463 "default": "if-not-form",
6464 "lang": "Swahili",
6465 "nested-table-depth": [1, 2],
6466 "then": "if-not-form",
6467 },
6468 "Consecutive": {
6469 "default": "consecutive",
6470 "lang": "Swahili",
6471 "nested-table-depth": [1, 2],
6472 "then": "consecutive",
6473 },
6474 "General positive": {
6475 "default": "general-mood positive",
6476 "lang": "Swahili",
6477 "nested-table-depth": [1, 2],
6478 "then": "general-mood positive",
6479 },
6480 "General negative": {
6481 "default": "general-mood negative",
6482 "lang": "Swahili",
6483 "nested-table-depth": [1, 2],
6484 "then": "general-mood negative",
6485 },
6486 "Positive past": {
6487 "default": "positive past",
6488 "lang": "Swahili",
6489 "nested-table-depth": [1, 2],
6490 "then": "positive past",
6491 },
6492 "Negative past": {
6493 "default": "negative past",
6494 "lang": "Swahili",
6495 "nested-table-depth": [1, 2],
6496 "then": "negative past",
6497 },
6498 "Positive present": {
6499 "default": "positive present",
6500 "lang": "Swahili",
6501 "nested-table-depth": [1, 2],
6502 "then": "positive present",
6503 },
6504 "Negative present": {
6505 "default": "negative present",
6506 "lang": "Swahili",
6507 "nested-table-depth": [1, 2],
6508 "then": "negative present",
6509 },
6510 "Positive future": {
6511 "default": "positive future",
6512 "lang": "Swahili",
6513 "nested-table-depth": [1, 2],
6514 "then": "positive future",
6515 },
6516 "Negative future": {
6517 "default": "negative future",
6518 "lang": "Swahili",
6519 "nested-table-depth": [1, 2],
6520 "then": "negative future",
6521 },
6522 "Positive subjunctive": {
6523 "default": "positive subjunctive",
6524 "lang": "Swahili",
6525 "nested-table-depth": [1, 2],
6526 "then": "positive subjunctive",
6527 },
6528 "Negative subjunctive": {
6529 "default": "negative subjunctive",
6530 "lang": "Swahili",
6531 "nested-table-depth": [1, 2],
6532 "then": "negative subjunctive",
6533 },
6534 "Positive present conditional": {
6535 "default": "positive present irrealis",
6536 "lang": "Swahili",
6537 "nested-table-depth": [1, 2],
6538 "then": "positive present irrealis",
6539 },
6540 "Negative present conditional": {
6541 "default": "negative present irrealis",
6542 "lang": "Swahili",
6543 "nested-table-depth": [1, 2],
6544 "then": "negative present irrealis",
6545 },
6546 "Positive past conditional": {
6547 "default": "positive past irrealis",
6548 "lang": "Swahili",
6549 "nested-table-depth": [1, 2],
6550 "then": "positive past irrealis",
6551 },
6552 "Negative past conditional": {
6553 "default": "negative past irrealis",
6554 "lang": "Swahili",
6555 "nested-table-depth": [1, 2],
6556 "then": "negative past irrealis",
6557 },
6558 "transgressive": "transgressive", # darovať/Slovak
6559 # conocer/Asturian
6560 "gerundive": "gerund",
6561 r"case \ number": "", # δίκυκλο/Greek
6562 r"number case \ gender": "", # απύρωτος/Greek
6563 "conditional 2nd form": "conditional conditional-ii", # costosir/Occitan
6564 # konyugön/Volapük
6565 "2nd person polite singular": "second-person singular polite",
6566 "3rd person male singular": "third-person masculine singular",
6567 "3rd person female singular": "third-person singular feminine",
6568 "reflexive singular": "reflexive singular",
6569 "reciprocative singular": "reciprocal singular",
6570 "2nd person polite plural": "second-person polite plural",
6571 "3rd person male plural": "third-person masculine plural",
6572 "3rd person female plural": "third-person feminine plural",
6573 "reflexive plural": "reflexive plural",
6574 "reciprocative plural": "reciprocal plural",
6575 "future in the past perfect": "past perfect future",
6576 # райҳон/Tajik
6577 "bare": "",
6578 "definite object": "definite direct-object",
6579 # brestan/Proto-West Germanic
6580 "Genitive infin.": "genitive infinitive",
6581 "Dative infin.": "dative infinitive",
6582 "Instrum. infin.": "instrumental infinitive",
6583 # sberegar/Venetian
6584 "eło / eła": "third-person singular",
6585 "noialtri / noialtre": "first-person plural",
6586 "voialtri / voialtre": "second-person plural",
6587 "łuri / łore": "third-person plural",
6588 "che mi": "first-person singular subjunctive",
6589 "che eło / eła": "third-person singular subjunctive",
6590 "che noialtri / noialtre": "first-person plural subjunctive",
6591 "che voialtri / voialtre": "second-person plural subjunctive",
6592 "che łuri / łore": "third-person plural subjunctive",
6593 # qolmoq/Uzbek
6594 "1": {
6595 "default": "first-person",
6596 },
6597 "2": {
6598 "default": "second-person",
6599 },
6600 "cont A": "continuative",
6601 "cont B": "continuative formal imperfective",
6602 "cont C": "continuative habitual",
6603 # taanduma/Estonian
6604 "voice": "",
6605 "singular / indefinite": "singular indefinite", # Өгэдэй/Mongolian/668
6606 # Proto-Finnic/munidak
6607 "passive connegative": "passive connegative",
6608 "infinitives/nouns": "",
6609 "infinitive 1": "infinitive infinitive-i",
6610 "infinitive 2": "infinitive infinitive-ii",
6611 "gerund/supine": "gerund supine",
6612 # glæþia/Old Swedish
6613 "þū": {
6614 "lang": "Old Swedish",
6615 "then": "second-person singular",
6616 },
6617 "vīr": {
6618 "lang": "Old Swedish",
6619 "then": "first-person plural",
6620 },
6621 "īr": {
6622 "lang": "Old Swedish",
6623 "then": "second-person plural",
6624 },
6625 "iæk": {
6626 "lang": "Old Swedish",
6627 "then": "first-person singular",
6628 },
6629 "han": {
6630 "lang": "Old Swedish",
6631 "then": "third-person singular",
6632 },
6633 "þēr": {
6634 "lang": "Old Swedish",
6635 "then": "third-person plural",
6636 },
6637 "Absolute superlative": "absolute superlative", # τρανός/Greek
6638 # kolfino/Ternate
6639 "Inclusive": "inclusive plural",
6640 "Exclusive": "exclusive plural",
6641 "Human m": "human-person masculine",
6642 "Human f": "human-person feminine",
6643 "Non-human": "non-human",
6644 # ntw/Eqyptian
6645 "suffix pronouns": "suffix pronoun",
6646 "stative (‘pseudoparticiple’) endings": "stative",
6647 "enclitic (‘dependent’) pronouns": "enclitic pronoun",
6648 "stressed (‘independent’) pronouns": "stressed pronoun",
6649 "proclitic (‘subject form’) pronouns": "proclitic pronoun",
6650 # райҳон/Tajik
6651 "indefinite, definite relative": "indefinite definite relative",
6652 "mixed after th": "after-th mutation-mixed", # wenyn/Cornish
6653 "feminine gender": "feminine", # heiße Zitrone/German
6654 "masculine gender": "masculine", # alter Drache/German
6655 "specific": "specific", # পূঁজ/Assamese
6656 "not specific": "unspecified", # পূঁজ/Assamese/163
6657 # навохтан/Tajik
6658 "ман": "first-person singular",
6659 "ӯ": "third-person singular",
6660 "мо": "first-person plural",
6661 "шумо": ["second-person plural", "second-person singular polite"],
6662 "онҳо": "third-person plural",
6663 "минем (“my”)": "first-person singular possessive", # сез/Tatar
6664 "синең (“your”)": "second-person singular possessive",
6665 "аның (“his/her/it”)": "third-person singular possessive",
6666 "безнең (“our”)": "first-person plural possessive",
6667 "сезнең (“your”)": "second-person plural possessive",
6668 "аларның (“their”)": "third-person plural possessive",
6669 "Realis mood": "realis", # weyetun/Mapudungun
6670 "singular or plural": [
6671 "singular",
6672 "plural",
6673 ], # aبڑھنا/Urdu
6674 "iek": { # ongelje/Saterland Frisian
6675 "lang": "Saterland Frisian",
6676 "then": "first-person singular",
6677 },
6678 # wenschen/Middle Dutch
6679 "In genitive": {
6680 "lang": "Middle Dutch",
6681 "then": "infinitive genitive",
6682 },
6683 "In dative": {
6684 "lang": "Middle Dutch",
6685 "then": "infinitive dative",
6686 },
6687 # ongelje/Saterland Frisian
6688 "hie/ju/dät": "third-person singular",
6689 "wie": {
6690 "lang": "Saterland Frisian",
6691 "then": "first-person plural",
6692 },
6693 "du": {
6694 "lang": "Saterland Frisian",
6695 "then": "second-person singular",
6696 },
6697 # यहाँका/Nepali
6698 "Low": {
6699 "lang": "Nepali",
6700 "then": "impolite",
6701 },
6702 "Mid": {
6703 "lang": "Nepali",
6704 "then": "polite",
6705 },
6706 "Low/Mid": {
6707 "lang": "Nepali",
6708 "then": "impolite polite",
6709 },
6710 "High": {
6711 "lang": "Nepali",
6712 "then": "deferential",
6713 },
6714 "izofa": "ezafe", # райҳон/Tajik
6715 "ezâfe": "ezafe", # a دریچه/Persian
6716 "adverbs": "adverb", # tꜣj/Egyptian
6717 "Equative": "equative", # erk/Proto-Turkic
6718 "Pres. subjunctive": "present subjunctive", # adkʷiseti/Proto-Celtic
6719 "Inclusive Tri-Plural": "inclusive tri-plural", # aaombiniili'/Chickasaw
6720 "1st-person dual": "first-person dual", # ferkuupe/North Frisian
6721 "2nd-person dual": "second-person dual", # ferkuupe/North Frisian
6722 # coymaq/Crimean Tatar
6723 "repeated gerund": "gerund repeated",
6724 "temporal gerund": "temporal gerund",
6725 "non-future participle": "present past participle",
6726 # tussenin/Dutch
6727 "postpositional adv.": "adverb postpositional",
6728 # védde/Ligurian
6729 "lê o/a": "third-person singular",
6730 "noî, niâtri": "first-person plural",
6731 "voî, viâtri": "second-person plural",
6732 "lô, liâtri": "third-person plural",
6733 "che ti": "second-person singular subjunctive",
6734 "che lê o/a": "third-person singular subjunctive",
6735 "che noî, che niâtri": "first-person plural subjunctive",
6736 "che voî, che viâtri": "second-person plural subjunctive",
6737 "che lô, che liâtri": "second-person plural subjunctive",
6738 "હું": "first-person singular", # અવતરવું/Gujarati/92
6739 "અમે, આપણે": "first-person plural", # અવતરવું/Gujarati/184
6740 "તું": "second-person singular", # અવતરવું/Gujarati/184
6741 "તમે": "second-person plural", # અવતરવું/Gujarati/184
6742 "તું, આ, આઓ, તે, તેઓ": "third-person", # અવતરવું/Gujarati/92
6743 "marked indefinite or relative definite": [ # a دریچه/Persian
6744 "stressed indefinite",
6745 "relative definite",
6746 ],
6747 # delegher/Ladin
6748 "el / ela": "third-person singular",
6749 "ei / eles": "third-person plural",
6750 "che ie": "first-person singular subjunctive",
6751 "che el / ela": "third-person singular subjunctive",
6752 "che nos": "first-person plural subjunctive",
6753 "che vos": "second-person plural subjunctive",
6754 "che ei / eles": "third-person plural subjunctive",
6755 "preposition": "prepositional", # daarmede/Dutch
6756 "Prolative II": "prolative prolative-ii", # килең/Tuvan
6757 # pawjō/Proto-Italic
6758 "Perfect indicative": "perfect indicative",
6759 "Present imperative": "present imperative",
6760 "Future imperative": "future imperative",
6761 "tu-derivative": "tu-derivative",
6762 "s-derivative": "s-derivative",
6763 # weyetun/Mapudungun
6764 "Tense particles (See particles)": "particle",
6765 "iñce": "first-person singular",
6766 "eymi": "second-person singular",
6767 "fey": "third-person singular",
6768 "iñciw": "first-person dual",
6769 "eymu": "second-person dual",
6770 "feygu": "third-person dual",
6771 "iñciñ": "first-person plural",
6772 "eymvn": "second-person plural",
6773 "feygvn": "third-person plural",
6774 "attributive": "attributive", # Өгэдэй/Mongolian/167
6775 "Active indicative": "indicative active", # konyugön/Volapük/166
6776 "Active subjunctive": "subjunctive active", # konyugön/Volapük/166
6777 "Active optative": "optative active", # konyugön/Volapük/166
6778 "Active interrogative": "interrogative active", # konyugön/Volapük/166
6779 "Active jussive": "jussive active", # konyugön/Volapük/166
6780 "definitive direct object": "direct-object definite", # دریچه/Persian/154
6781 "preceding noun": "before-noun", # jenöfik/Volapük/151
6782 "separated": "without-noun", # jenöfik/Volapük/151
6783 "temp. dist.": "temporal distributive", # sisässä/Finnish/145
6784 "oblique/vocative/instrumental": "oblique vocative instrumental", # કેટલું/Gujarati
6785 "I-stem (Passive)": "passive", # सोहोर्नु/Nepali/144
6786 "Passive indicative": "passive indicative", # konyugön/Volapük
6787 "Passive subjunctive": "passive subjunctive",
6788 "Passive optative": "passive optative",
6789 "Passive interrogative": "passive interrogative",
6790 "Passive jussive": "passive jussive",
6791 "unmodified": "without-modifier", # birciqqo/Sidamo
6792 "modified": "with-modifier", # birciqqo/Sidamo
6793 "Past/present inchoative": "past present inchoative", # ganansiya/Cebuano
6794 "Future/habitual inchoative": "future habitual inchoative",
6795 "el / ela / Vde": "third-person singular", # aterecer/Galician
6796 "eles / elas / Vdes": "third-person plural", # aterecer/Galician
6797 "busatros busatras": "second-person plural", # foratar/Aragonese
6798 "agentive / prospective": "agentive prospective", # a بڑھنا/Urdu
6799 "мен": "first-person singular", # чылгаар/Tuvan
6800 "бис": "first-person plural",
6801 "силер": "second-person plural",
6802 "ол": "third-person singular",
6803 "олар": "third-person plural",
6804 "-лар": "third-person plural",
6805 "Past II": "past past-ii",
6806 "Evidential": "evidential",
6807 "-тар": "third-person plural",
6808 "-нар": "third-person plural",
6809 "-лер": "third-person plural", # дээр/Tuvan
6810 "-тер": "third-person plural",
6811 "-нер": "third-person plural",
6812 "Grúundfoarme": "", # ongelje/Saterland Frisian
6813 # oh-/Choctaw/124
6814 "+V": {
6815 "lang": "Choctaw",
6816 "then": "before-vowel",
6817 },
6818 "+C": {
6819 "lang": "Choctaw",
6820 "then": "before-consonant",
6821 },
6822 "+s": {
6823 "lang": "Choctaw",
6824 "then": "before-s",
6825 },
6826 "+C/i": {
6827 "lang": "Choctaw",
6828 "then": "before-consonant before-front-vowel",
6829 },
6830 "+a/o": {
6831 "lang": "Choctaw",
6832 "then": "before-back-vowel",
6833 },
6834 # +s +C +V +C/i +a/o +C +V +C +V +C +V
6835 "past subjunctive": "past subjunctive", # شباهت داشتن/Persian/120
6836 "vus": "second-person plural", # cumprar/Romansch/117
6837 "nus": "first-person plural",
6838 "jeu": "first-person singular",
6839 "el/ella": "third-person singular",
6840 "els/ellas": "third-person plural",
6841 "che nus": "first-person plural subjunctive",
6842 "che vus": "second-person plural subjunctive",
6843 "ch'els/ch'ellas": "third-person plural subjunctive",
6844 "che jeu": "first-person singular subjunctive",
6845 "ch'el/ch'ella": "third-person singular subjunctive",
6846 "direct future": "direct future",
6847 "indirect future": "indirect future",
6848 "unmarked": "", # tꜣj/Egyptian/114
6849 "Conditional mood": "conditional", # weyetun/Mapudungun/112
6850 "Volitive mood": "volitive", # weyetun/Mapudungun/112
6851 "distant": "distal", # тұту/Kazakh/110
6852 "affirmative commands": "imperative", # ፈተለ/Tigrinya/110
6853 "negative commands": "negative imperative",
6854 '1st-person ("my, our")': "first-person possessive", # aaombiniili'/Chickasaw/106
6855 '2nd-person ("thy, your")': "second-person possessive",
6856 '3rd-person ("his, her, its, their")': "third-person possessive",
6857 "je (nos)": "first-person", # cogier/Norman/104
6858 "Agentive": "agentive", # হাঁঠ/Assamese/102
6859 "Middle voice": "middle-voice", # ḱléwseti/Proto-Indo-European/100
6860 "1st-person (I, we)": "first-person", # chaaha̱ taloowa/Chickasaw/99
6861 "2nd-person (you, you all)": "second-person",
6862 "3rd-person (he, she, it, they)": "third-person",
6863 "ils": "third-person plural", # ovrar/Franco-Provençal/98
6864 "que je (j')": "first-person singular subjunctive",
6865 "que te (t')": "second-person singular subjunctive",
6866 "qu'il/el": "third-person singular subjunctive",
6867 "qu'ils/els": "third-person plural subjunctive",
6868 "il/elli": "third-person singular",
6869 "Nasal": "mutation-nasal", # arglwyt/Middle Welsh/98
6870 "Present progressive": "present progressive", # અવતરવું/Gujarati/92
6871 "Negative conditional": "negative conditional",
6872 "pronoun": "pronoun", # küm-/Maquiritari/88
6873 "noun possessor/ series II verb argument": [
6874 "possessive",
6875 "series-ii-verb-argument",
6876 ],
6877 "series I verb argument": "series-ii-verb-argument",
6878 "postposition object": "direct-object postpositional",
6879 "transitive patient": "transitive patient",
6880 "intransitive patient-like": "intransitive patient-like",
6881 "intransitive agent-like": "intransitive agent-like",
6882 "transitive agent": "transitive agent",
6883 "first person dual inclusive": "first-person dual inclusive",
6884 "first person dual exclusive": "first-person dual exclusive",
6885 "distant past third person": "distant-past past",
6886 "coreferential/reflexive": "reflexive",
6887 "series I verb argument: transitive agent and transitive patient": "transitive agent patient",
6888 "first person > second person": "first-person object-second-person",
6889 "first person dual exclusive > second person": "first-person dual exclusive object-second-person",
6890 "second person > first person": "second-person object-first-person",
6891 "second person > first person dual exclusive": "second-person object-first-person object-dual object-exclusive",
6892 "third person > any person X …or… any person X > third person": [
6893 "third-person",
6894 "object-third-person",
6895 ],
6896 "2nd Person Singular": "second-person singular", # spigen/Middle Low German
6897 "él": "third-person singular", # foratar/Aragonese
6898 "nusatros nusatras": "first-person plural",
6899 "ellos/els ellas": "third-person plural",
6900 "Conjectural": "", # 노타/Middle Korean/85
6901 "transgressive present": "present transgressive", # naposlouchat/Czech
6902 "transgressive past": "past transgressive",
6903 "Verbal adjective": "adjective-from-verb",
6904 "je (j’) / i": "first-person singular", # gizai/Bourguignon/81
6905 "je (j') / i": "first-person singular", # antreprarre/Bourguignon/79
6906 "que je (j') / qu'i": "first-person singular subjunctive",
6907 "que je (j’) / qu'i": "first-person singular subjunctive",
6908 "ai (el), ale": "third-person singular", # gizai/Bourguignon/58
6909 "ai (el), ales": "third-person plural",
6910 "qu'ai (el), qu'ale": "third-person singular subjunctive",
6911 "qu'ai (el), qu'ales": "third-person plural subjunctive",
6912 "determiners and pronouns": "determiner pronoun", # tꜣj/Egyptian/76
6913 "anaphoric": "anaphoric",
6914 "regular": "", # এৱা গাখীৰ/Assamese/74
6915 "very formal": "deferential",
6916 "infinitive II": "infinitive-ii infinitive", # ferkuupe/North Frisian
6917 "PROGRESSIVE": "progressive", # yitih/Navajo
6918 "past stem": "stem past", # a شباهت داشتن/Persian
6919 "nominative, genitive and instrumental": "nominative genitive instrumental", # ხმოვანი/Georgian
6920 "ej (j')": "first-person singular", # vouloér/Picard
6921 "tu (t')": "second-person singular",
6922 "i (il)/ale": "third-person singular", # vouloér/Picard
6923 "i (il)/a (al)": "third-person singular", # ète/Picard/1
6924 "(n)os": "first-person plural", # vouloér/Picard/60
6925 "os": "second-person plural", # vouloér/Picard
6926 "is": "third-person plural", # vouloér/Picard/31
6927 "qu'ej (j')": "first-person singular subjunctive", # vouloér/Picard/31
6928 "qu'tu (t')": "second-person singular subjunctive",
6929 "eq tu (t')": "second-person singular subjunctive", # ète/Picard/1
6930 "qu'i (il)/ale": "third-person singular subjunctive", # connoéte/Picard/29
6931 "qu'i (il)/a (al)": "third-person singular subjunctive", # vouloér/Picard/2
6932 "qu'(n)os": "first-person plural subjunctive", # connoéte/Picard/29
6933 "qu'os": "first-person second-person plural subjunctive", # vouloér/Picard/33
6934 "qu'is": "third-person plural subjunctive", # vouloér/Picard/31
6935 "inanimate pronoun": "inanimate pronoun", # mönsemjo/Maquiritari
6936 "medial": "medial",
6937 "unmarked (later)": "", # ntw/Egyptian singular/plural/unmarked
6938 "H-prothesis": "prothesis-h", # arglwyt/Middle Welsh/61
6939 "h-prothesis": "prothesis-h", # moved here, uncommented
6940 "distant past": "distant-past past", # weyetun/Mapudungun/56
6941 # XXX Tatar has a ton of soft hyphens
6942 "Futu\xadre": "future", #!! soft hyphen! тыңларга/Tatar
6943 "Nonfinite verb forms": "",
6944 "transitory past": "past transitional-past", # тұту/Kazakh
6945 "сен": {
6946 "lang": "Kazakh",
6947 "then": "second-person singular informal",
6948 "else": {
6949 "lang": "Tuvan",
6950 "then": "second-person singular",
6951 },
6952 },
6953 "сіз": "second-person singular formal",
6954 "біз": "first-person plural",
6955 "сендер": "second-person plural informal",
6956 "сіздер": "second-person plural formal",
6957 "imperative/hortative": "imperative hortative",
6958 "gend/num": "", # vascuenciu/Asturian/54
6959 "inf": "infinitive", # হাঁঠ/Assamese/54
6960 "ca je/i'": "first-person singular subjunctive", # spantacà/Neapolitan
6961 "ca tu": "second-person singular subjunctive",
6962 "ca nuje": "first-person plural subjunctive",
6963 "il, alle, nos": "third-person singular", # cogier/Norman/52
6964 "il, alles": "third-person plural",
6965 "qu'il, qu'alle, que nos": "third-person singular subjunctive",
6966 "que je (que nos)": "first-person plural subjunctive",
6967 "qu'il, qu'alles": "third-person plural subjunctive",
6968 # Get yourself together, Sardinian
6969 "deo": "", # nochere/Sardinian/52
6970 "deo, eo": "", # tzappare/Sardinian/51
6971 "dego, deo": "", # tzappare/Sardinian/33
6972 "isse/issa": "", # nochere/Sardinian/27
6973 "chi deo, chi eo": "", # tzappare/Sardinian/17
6974 "chi deo": "", # impreare/Sardinian/12
6975 "chi dego, chi deo": "", # tzappare/Sardinian/11
6976 "che deo": "", # nochere/Sardinian/8
6977 "che tue": "", # nochere/Sardinian/8
6978 "che isse/issa": "", # nochere/Sardinian/8
6979 "che nois": "", # nochere/Sardinian/8
6980 "che bois": "", # nochere/Sardinian/8
6981 "che issos/issas": "", # nochere/Sardinian/8
6982 "issos/ issas": "", # finire/Sardinian/4
6983 "eo, deo": "", # finire/Sardinian/3
6984 "deu": "", # essi/Sardinian/3
6985 "tui": "", # essi/Sardinian/3
6986 "nosu": "", # essi/Sardinian/3
6987 "bosatrus/bosatras": "", # essi/Sardinian/3
6988 "issus/issas": "", # essi/Sardinian/3
6989 "past/ imperfect": "", # finire/Sardinian/2
6990 "+ past participle": "", # pòdere/Sardinian/2
6991 "isse/ issa": "", # finire/Sardinian/1
6992 "chi deu": "", # essi/Sardinian/1
6993 "chi tui": "", # essi/Sardinian/1
6994 "chi nosu": "", # essi/Sardinian/1
6995 "chi bosatrus/bosatras": "", # essi/Sardinian/1
6996 "chi issus/issas": "", # essi/Sardinian/1
6997 "Verbs beginning with a consonant.": "", # chaaha̱ taloowa/Chickasaw/52
6998 "te": "second-person singular", # ovrar/Franco-Provençal
6999 "nu": "first-person plural", # legro/Dalmatian
7000 "vu": "second-person plural",
7001 "Perfekta": "perfect", # sannoa/Ingrian/50
7002 "Nouns in vowel-, b-, or p-": "", # aaombiniili'/Chickasaw/50
7003 "subjunctive present": "present subjunctive", # a متشکر بودن/Persian/48
7004 "1st Person Singular": "first-person singular", # spigen/Middle Low German
7005 "3rd Person Singular": "third-person singular",
7006 "Rewş": "", # "case", kerguh/Northern Kurdish
7007 "Vde": "third-person singular", # aterecer/Galician
7008 "Vdes": "third-person plural",
7009 "IMPF": "imperfect", # डिलीट होना/Hindi
7010 "frm": "", # ??? "form"? হাঁঠ/Assamese
7011 "focus": "focus", # issito/Choctaw
7012 "singular 1ˢᵗ person": "first-person singular", # гъэкӏодын/Adyghe
7013 "singular 2ˢᵗ person": "second-person singular",
7014 "singular 3ˢᵗ person": "third-person singular",
7015 "plural 1ˢᵗ person": "first-person plural",
7016 "plural 2ˢᵗ person": "second-person plural",
7017 "plural 3ˢᵗ person": "third-person plural",
7018 "Neuter gender": "neuter", # 𒄭𒅔𒃷/Hittite
7019 "Plain Infinitive": "infinitive", # spigen/Middle Low German
7020 "Full Infinitive (Gerund)": "gerund infinitive",
7021 "Imperatives": {
7022 "default": "imperative",
7023 "lang": "Swahili",
7024 "then": "dummy-section-header imperative",
7025 },
7026 "Tensed forms": {
7027 "default": "",
7028 "lang": "Swahili",
7029 "then": "dummy-reset-section-header",
7030 },
7031 "Object concord (indicative positive)": {
7032 "default": "object-concord indicative positive",
7033 "lang": "Swahili",
7034 "then": "dummy-section-header object-concord indicative positive",
7035 },
7036 "Relative forms": {
7037 "default": "",
7038 "lang": "Swahili",
7039 "then": "dummy-section-header relative object-concord",
7040 },
7041 "2nd Person Plural": "second-person plural",
7042 "free state": "free-state", # aɣemmar/Tarifit
7043 "construct state": "construct",
7044 "dative/instr": "dative instrumental", # unseraz/Proto-Germanic/39
7045 "infinitive III": "infinitive infinitive-iii", # stärwe/North Frisian
7046 "determiners": "determiner", # nꜣyw/Egyptian/38
7047 "pronouns": "pronoun",
7048 "proximal to speaker": "proximal-to-speaker",
7049 "proximal to spoken of": "proximal-to-topic",
7050 "‘copula’": "copulative",
7051 "possessive determiners (used with suffix pronouns)": "possessive determiner",
7052 "relational pronouns (‘possessive prefixes’)": "possessive pronoun",
7053 "definite articles": "definite article",
7054 "indefinite articles": "indefinite article",
7055 "Aspirate": "mutation-aspirate", # vynet/Middle Welsh/37
7056 "dji (dj')": "first-person singular", # atchter/Walloon/37
7057 "preterit": "preterite",
7058 "dji / nos": "first-person plural",
7059 "nós nós outros nós outras": "first-person plural", # prazer/Old Portuguese
7060 "vós vós outros vós outras": "second-person plural",
7061 "contrastive": "contrastive", # issito/Choctaw/36
7062 # espurrire/Leonese
7063 "you": {
7064 "lang": "Leonese",
7065 "then": "first-person singular",
7066 },
7067 "él / eilla / eillu / vusté": "third-person singular",
7068 "nosoutros / nosoutras": "first-person plural",
7069 "vosoutros / vosoutras": "second-person plural",
7070 "eillos / eillas / vustedes": "third-person plural",
7071 "Personal-pronoun including forms": "", # ܓܘ/Assyrian Neo-Aramaic/36
7072 "Non-personal-pronoun-including form": "", # במו/Hebrew/35
7073 # pårler/Walloon
7074 "i (il) / ele": "third-person singular",
7075 "dji (dj') / nos": "first-person plural",
7076 "ki dj'": "first-person singular subjunctive",
7077 "ki t'": "second-person singular subjunctive",
7078 "k' i (il) / k' ele": "third-person singular subjunctive",
7079 "ki dj' / ki nos": "first-person plural subjunctive",
7080 "ki vos": "second-person plural subjunctive",
7081 "k' i (il)": "third-person plural subjunctive",
7082 # sannoa/Ingrian, rest of these
7083 "Imperfekta": "imperfect",
7084 "Pluskvamperfekta": "pluperfect",
7085 "Infinitivat": "infinitive",
7086 "Partisipat": "participle",
7087 # f/Slovene
7088 "nominative imenovȃlnik": "nominative",
7089 "genitive rodȋlnik": "genitive",
7090 "dative dajȃlnik": "dative",
7091 "accusative tožȋlnik": "accusative",
7092 "locative mẹ̑stnik": "locative",
7093 "instrumental orọ̑dnik": "instrumental",
7094 "(vocative) (ogȏvorni imenovȃlnik)": "vocative",
7095 # akaka/Choctaw
7096 "Possession": "possessed-form",
7097 '("my, our")': "first-person possessive",
7098 '("thy, your")': "second-person possessive",
7099 '("his, her, its, their")': "third-person possessive",
7100 # humingi/Tagalog
7101 # Why is there \u2060 in so many differen tagalog templates like these???
7102 "\u2060 ma- -an": "",
7103 "\u2060mapag- -an": "",
7104 "\u2060mapagpa- -an": "",
7105 "\u2060mapapag- -an": "",
7106 "\u2060 mapa- -an": "",
7107 # katayin/Tagalog
7108 "\u2060mapapag-": "",
7109 # -nən/Azerbaijani floating div! Got it to work!
7110 "preceding vowel": "",
7111 "A / I / O / U": "back-vowel-harmony",
7112 "E / Ə / İ / Ö / Ü": "front-vowel-harmony",
7113 "postconsonantal": "after-consonant",
7114 "postvocalic": "after-vowel",
7115 # -ül/Azerbaijani
7116 "A / I": "back-vowel-harmony unrounded-harmony",
7117 "E / Ə / İ": "front-vowel-harmony unrounded-harmony",
7118 "O / U": "back-vowel-harmony rounded-harmony",
7119 "Ö / Ü": "front-vowel-harmony rounded-harmony",
7120 "postconsonantal except after L": "after-consonant-except-l",
7121 "after L": "after-l-consonant",
7122 # kk-suffix-forms Kazakh
7123 "А / Ы / О / Ұ": "back-vowel-harmony",
7124 "Ә / Е / І / Ө / Ү": "front-vowel-harmony",
7125 # ky-suffix-forms Kyrgyz
7126 "А / Ы": "back-vowel-harmony unrounded-harmony",
7127 "Е / И": "front-vowel-harmony unrounded-harmony",
7128 "О / У": "back-vowel-harmony rounded-harmony",
7129 "Ө / Ү": "front-vowel-harmony unrounded-harmony",
7130 # tr-inf-p Turkish
7131 "E / İ": "front-vowel-harmony unrounded-harmony",
7132 # tt-suffix-forms Tatar
7133 "А / Ы / О / У": "back-vowel-harmony",
7134 "Ә/ Е / Э / Ө / Ү": "front-vowel-harmony",
7135 # wasick/Narragansett
7136 "unpossessed": {
7137 "lang": "Narragansett",
7138 "then": "",
7139 },
7140 # patika/Swahili new tables!
7141 "m-wa_((I/II))": "class-1 class-2",
7142 "m-mi_((III/IV))": "class-3 class-4",
7143 "ji-ma_((V/VI))": "class-5 class-6",
7144 "ki-vi_((VII/VIII))": "class-7 class-8",
7145 "n_((IX/X))": "class-9 class-10",
7146 "u_((XI))": "class-11",
7147 "ku_((XV/XVII))": "class-15 class-17",
7148 "pa_((XVI))": "class-16",
7149 "mu_((XVIII))": "class-18",
7150 # ծաղրել/Armenian
7151 "past future": "future past",
7152 # new Finnish verb table stuff takaisinmallintaa/Finnish
7153 "plur.": "plural",
7154 "sing.": "singular",
7155}
7158def check_tags(k: str, v: str) -> None:
7159 assert isinstance(k, str)
7160 assert isinstance(v, str)
7161 for tag in v.split():
7162 if tag not in valid_tags and tag not in ("*",): 7162 ↛ 7163line 7162 didn't jump to line 7163 because the condition on line 7162 was never true
7163 print("infl_map[{!r}] contains invalid tag {!r}".format(k, tag))
7166def check_v(
7167 k: str, v: Union[str, list[str], dict[str, InflMapNode], InflMapNodeDict]
7168) -> None:
7169 assert isinstance(k, str)
7170 if v is None: # or v in ("dummy-reset-headers",): 7170 ↛ 7171line 7170 didn't jump to line 7171 because the condition on line 7170 was never true
7171 return
7172 if isinstance(v, str):
7173 check_tags(k, v)
7174 elif isinstance(v, list):
7175 for item in v:
7176 check_v(k, item)
7177 elif isinstance(v, dict): 7177 ↛ 7219line 7177 didn't jump to line 7219 because the condition on line 7177 was always true
7178 for kk in v.keys():
7179 if kk in (
7180 "if",
7181 "then",
7182 "else",
7183 ):
7184 check_v(k, v[kk])
7185 elif kk == "default":
7186 if not isinstance(v[kk], (str, list, tuple)): 7186 ↛ 7187line 7186 didn't jump to line 7187 because the condition on line 7186 was never true
7187 print(
7188 "infl_map[{!r}] contains invalid default value "
7189 "{!r}".format(k, v[kk])
7190 )
7191 elif kk == "pos":
7192 vv = v[kk]
7193 if isinstance(vv, str):
7194 vv = [vv]
7195 for vvv in vv:
7196 if vvv not in PARTS_OF_SPEECH: 7196 ↛ 7197line 7196 didn't jump to line 7197 because the condition on line 7196 was never true
7197 print(
7198 "infl_map[{!r}] contains invalid part-of-speech "
7199 "{!r} -- {!r}".format(k, kk, v[kk])
7200 )
7201 elif kk in ("lang",):
7202 pass
7203 elif kk == "nested-table-depth": 7203 ↛ 7209line 7203 didn't jump to line 7209 because the condition on line 7203 was always true
7204 if not isinstance(v[kk], (int, list, tuple)): 7204 ↛ 7205line 7204 didn't jump to line 7205 because the condition on line 7204 was never true
7205 print(
7206 "infl_map[{!r}] contains invalid depth-value "
7207 "{!r}".format(k, v[kk])
7208 )
7209 elif kk == "inflection-template":
7210 if not isinstance(v[kk], (str, list, tuple)):
7211 print(
7212 "infl_map[{!r}] contains invalid"
7213 "inflection-template value "
7214 "{!r}".format(k, v[kk])
7215 )
7216 else:
7217 print("infl_map[{!r}] contains invalid key {!r}".format(k, kk))
7218 else:
7219 print("infl_map[{!r}] contains invalid value {!r}".format(k, v))
7222for k, v in infl_map.items():
7223 check_v(k, v)
7226# Mapping from start of header to tags for inflection tables. The start must
7227# be followed by a space (automatically added, do not enter here).
7228infl_start_map = {
7229 "with infinitive": "infinitive",
7230 "with gerund": "gerund",
7231 "with informal second-person singular imperative": "informal second-person singular imperative",
7232 "with informal second-person singular tú imperative": # cedular/Spanish
7233 "informal second-person singular imperative with-tú",
7234 "with informal second-person singular vos imperative": "informal second-person singular imperative with-vos",
7235 "with formal second-person singular imperative": "formal second-person singular imperative",
7236 "with first-person plural imperative": "first-person plural imperative",
7237 "with informal second-person plural imperative": "informal second-person plural imperative",
7238 "with formal second-person plural imperative": "formal second-person plural imperative",
7239 # kaozeal/Breton
7240 "Soft mutation after": "mutation-soft",
7241 "Mixed mutation after": "mutation-mixed",
7242 # gláedach/Old Irish
7243 "Initial mutations of a following adjective:": "dummy-skip-this",
7244}
7245for k, v in infl_start_map.items():
7246 check_v(k, v)
7248infl_start_re = re.compile(
7249 r"^({}) ".format("|".join(re.escape(x) for x in infl_start_map.keys()))
7250)