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