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