Coverage for src/wiktextract/extractor/en/inflectiondata.py: 83%

57 statements  

« prev     ^ index     » next       coverage.py v7.14.1, created at 2026-05-29 08:54 +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 

6 

7# mypy: disable-error-code = literal-required 

8 

9import re 

10from typing import TypedDict, Union 

11 

12from ...tags import head_final_numeric_langs, valid_tags 

13from .parts_of_speech import PARTS_OF_SPEECH 

14 

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) 

32 

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) 

47 

48 

49# Inflection map for parsing headers in tables. 

50 

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. 

64 

65 

66InflMapNode = Union[str, list[str], "InflMapNodeDict"] 

67 

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) 

83 

84infl_map: dict[str, InflMapNode] = { 

85 "plural": { 

86 "default": "plural", 

87 "if": "possessive", 

88 "lang": POSSESSIVE_POSSESSED_LANGS, 

89 "then": "possessed-many", 

90 "else": { 

91 "if": "combined-form", 

92 "then": "object-plural", 

93 }, 

94 }, 

95 "singular": { 

96 "default": "singular", 

97 "if": "possessive", 

98 "lang": POSSESSIVE_POSSESSED_LANGS, 

99 "then": "possessed-single", 

100 "else": { 

101 "if": "combined-form", 

102 "then": "object-singular", 

103 "else": "singular", 

104 }, 

105 }, 

106 "accusative": "accusative", 

107 "dative": "dative", 

108 "instrumental": "instrumental", 

109 "ablative": "ablative", 

110 "illative": "illative", 

111 "elative": "elative", 

112 "adessive": "adessive", 

113 "allative": "allative", 

114 "possessor": "possessive", 

115 "vocative": "vocative", 

116 "Singular": "singular", 

117 "instructive": "instructive", 

118 "Plural": "plural", 

119 "1st person": { 

120 "if": "combined-form", 

121 "then": "object-first-person", 

122 "else": "first-person", 

123 }, 

124 "2nd person": { 

125 "if": "combined-form", 

126 "then": "object-second-person", 

127 "else": "second-person", 

128 }, 

129 "3rd person": { 

130 "if": "combined-form", 

131 "then": "object-third-person", 

132 "else": "third-person", 

133 }, 

134 "1st - Singular": "first-person singular", 

135 "2nd - Singular": "second-person singular", 

136 "3rd - Singular Masculine": "third-person singular masculine", 

137 "3rd - Singular Feminine": "third-person singular feminine", 

138 "3rd - Singular Neuter": "third-person singular neuter", 

139 "1st - Plural": "first-person plural", 

140 "2nd - Plural": "second-person plural", 

141 "3rd - Plural": "third-person plural", 

142 "2nd - Polite": "second-person polite", 

143 "1st infinitive": "infinitive infinitive-i", 

144 "2nd infinitive": "infinitive infinitive-ii", 

145 "3rd infinitive": "infinitive infinitive-iii", 

146 "1 sg": "first-person singular", 

147 "2 sg": "second-person singular", 

148 "3 sg": "third-person singular", 

149 "1 pl": "first-person plural", 

150 "2 pl": "second-person plural", 

151 "3 pl": "third-person plural", 

152 "nom.": "nominative", 

153 "gen.": "genitive", 

154 "Nominative": "nominative", 

155 "Genitive": "genitive", 

156 "Dative": "dative", 

157 "Vocative": "vocative", 

158 "Accusative": "accusative", 

159 "feminine": { 

160 "if": "possessive", 

161 "lang": POSSESSIVE_POSSESSED_LANGS, 

162 "then": "possessed-feminine", 

163 "else": "feminine", 

164 }, 

165 "neuter": { 

166 "if": "possessive", 

167 "lang": POSSESSIVE_POSSESSED_LANGS, 

168 "then": "possessed-neuter", 

169 "else": "neuter", 

170 }, 

171 "Ablative": "ablative", 

172 "imperative": "imperative", 

173 "causal-final": "causal-final", 

174 "essive-formal": "essive-formal", 

175 "essive-modal": "essive-modal", 

176 "superessive": "superessive", 

177 "sublative": "sublative", 

178 "delative": "delative", 

179 "non-attributive possessive - singular": "predicative possessive possessed-single", # XXX hűtő/Hungarian/Noun 

180 "non-attributive possessive - plural": "predicative possessive possessed-single", 

181 "infinitive": "infinitive", 

182 "prepositional": "prepositional", 

183 "masculine": { 

184 "if": "possessive", 

185 "lang": POSSESSIVE_POSSESSED_LANGS, 

186 "then": "possessed-masculine", 

187 "else": "masculine", 

188 }, 

189 "error-unrecognized-form": "error-unrecognized-form", # internal use 

190 "passive": "passive", 

191 "Case": "*", # Interpret the column as headers (e.g., anglais/Irish) 

192 "participles": "participle", 

193 "Participles": "participle", 

194 "PARTICIPLES (divdabji)": "participle", 

195 "Present forms": "present", 

196 "Transgressives": "transgressive", 

197 "past tense": "past", 

198 "Positive participial": "positive participle", 

199 "Negative participial": "negative participle", 

200 "present tense": "present", 

201 "future tense": "future", 

202 "Neuter": "neuter", 

203 # "Masculine": "masculine", 

204 "Feminine": "feminine", 

205 "adverbial": "adverbial", 

206 "1st singular (я)": "first-person singular", 

207 "2nd singular (ты)": "second-person singular", 

208 "3rd singular (он/она́/оно́)": "third-person singular", 

209 "1st plural (мы)": "first-person plural", 

210 "2nd plural (вы)": "second-person plural", 

211 "3rd plural (они́)": "third-person plural", 

212 "plural (мы/вы/они́)": "plural", 

213 "masculine (я/ты/он)": "masculine", 

214 "feminine (я/ты/она́)": "feminine", 

215 "neuter (оно́)": "neuter", 

216 "feminine + neuter singular": "feminine neuter singular", 

217 "1st person plural": "first-person plural", 

218 "2nd person plural": "second-person plural", 

219 "3rd person plural": "third-person plural", 

220 "single possession": "possessive possessed-single", 

221 "multiple possessions": "possessive possessed-many", 

222 "1st person sing.": "first-person singular", 

223 "2nd person sing.": "second-person singular", 

224 "2nd person sing. (u)": "second-person singular formal", 

225 "2nd person sing. (gij)": [ 

226 "second-person singular archaic formal majestic", 

227 "second-person singular colloquial Flanders", 

228 ], 

229 "3rd person sing.": "third-person singular", 

230 "2d person sing.": "second-person singular", 

231 "3d sing. masc.": "third-person singular masculine", 

232 "3d sing. fem.": "third-person singular feminine", 

233 "1st person pl.": "first-person plural", 

234 "2d person pl.": "second-person plural", 

235 "3d person pl.": "third-person plural", 

236 "First": "first-person", 

237 "Second": "second-person", 

238 "Third": "third-person", 

239 "Case / Gender": "", 

240 "masculine inanimate": "masculine inanimate", 

241 "Infinitive": "infinitive", 

242 "Past indicative": "past indicative", 

243 "Past participle": "past participle", 

244 "Past participles": "past participle", 

245 "past participle plural": "past participle plural", 

246 "Passive participles": "passive participle", 

247 "Present participle": "present participle", 

248 "present participle/gerund": "present participle", 

249 "1st person sg": "first-person singular", 

250 "2nd person sg informal": "second-person singular informal", 

251 "3rd person sg 2nd p. sg formal": [ 

252 "third-person singular", 

253 "third-person singular formal second-person-semantically", 

254 ], 

255 "1st person pl": "first-person plural", 

256 "3rd person pl 2nd p. pl formal": [ 

257 "third-person plural", 

258 "third-person plural formal second-person-semantically", 

259 ], 

260 "Indica­tive mood": "indicative", 

261 "Pre­sent": "present", 

262 "Indef.": { 

263 "lang": "Hungarian", 

264 "then": "object-indefinite", 

265 "else": "indefinite", 

266 }, 

267 "Def.": { 

268 "lang": "Hungarian", 

269 "then": "object-definite", 

270 "else": "definite", 

271 }, 

272 "2nd-p. o.": "object-second-person", 

273 "m verbs conjugated according to third person sg. er": "third-person singular", 

274 "m verbs conjugated according to 3nd person sg. er": "third-person singular", 

275 "verbs conjugated according to 2nd person pl. ihr": "second-person plural", 

276 "verbs conjugated according to 3rd person pl. sie": "second-person plural", 

277 "2nd person plural (familiar)": "second-person plural familiar", 

278 "2nd person sg. or pl. (polite)": "second-person singular plural polite", 

279 "2nd person sg. or pl. (elevated²)": "second-person singular plural polite archaic", 

280 "Condi­tional mood": "conditional", 

281 "Sub­junc­tive mood": "subjunctive", 

282 "Other nonfinite verb forms": { 

283 "lang": "Hungarian", 

284 "then": "", 

285 "else": "dummy-mood", 

286 }, 

287 "Verbal noun": "noun-from-verb", 

288 "Future part.": "future participle", 

289 "Future I": "future future-i", 

290 "Future II": "future future-ii", 

291 "Adverbial part.": "adverbial participle", 

292 "Potential": "potential", 

293 "potential": "potential", 

294 "present": "present", 

295 "virile": "virile", 

296 "nonvirile": "nonvirile", 

297 "case": "", 

298 "nominative, vocative": "nominative vocative", 

299 "indefinite": "indefinite", 

300 "masculine personal/animate": { 

301 "lang": "Polish", 

302 "then": "masculine animate", 

303 "else": "masculine personal animate", 

304 }, 

305 "perfective aspect": "perfective", 

306 "definite": "definite", 

307 "animate": "animate", 

308 "inanimate": "inanimate", 

309 "Dual": "dual", 

310 "indicative": "indicative", 

311 "subjunctive": "subjunctive", 

312 "person": { 

313 "default": "person", 

314 "lang": "Polish", 

315 "then": "", # Needs to be empty for mówić/Polish 

316 }, 

317 "Forms with the definite article": "definite", 

318 "Forms with the definite article:": "definite", 

319 "indefinite articulation": "indefinite", 

320 "definite articulation": "definite", 

321 "nominative/accusative": "nominative accusative", 

322 "genitive/dative": "genitive dative", 

323 "imperfective aspect": "imperfective", 

324 "future": "future", 

325 "Immediate future": "future future-near", 

326 "Remote future": "future future-remote", 

327 "Comparative": "comparative", 

328 "Superlative": "superlative", 

329 "perfect": "perfect", 

330 "gerund": "gerund", 

331 "first": "first-person", 

332 "second": "second-person", 

333 "third": "third-person", 

334 "imperfect": "imperfect", 

335 "infinitives": "infinitive", 

336 "conditional": "conditional", 

337 "pluperfect": "pluperfect", 

338 # XXX These need to be better structured, but I don't know where these 

339 # are from (see e.g. cois/Irish) 

340 "Bare forms": "indefinite", 

341 "Bare forms:": "", 

342 "past": "past", 

343 "1st": { 

344 "default": "first-person", 

345 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

346 "if": "infinitive", 

347 "then": "infinitive-i", 

348 "else": {"lang": "Swahili", "then": "first-person"}, 

349 }, 

350 "2nd": { 

351 "default": "second-person", 

352 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

353 "if": "infinitive", 

354 "then": "infinitive-ii", 

355 "else": {"lang": "Swahili", "then": "second-person"}, 

356 }, 

357 "3rd": { 

358 "default": "third-person", 

359 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

360 "if": "infinitive", 

361 "then": "infinitive-iii", 

362 }, 

363 "4th": { 

364 "default": "fourth-person", 

365 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

366 "if": "infinitive", 

367 "then": "infinitive-iv", 

368 }, 

369 "5th": { 

370 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

371 "if": "infinitive", 

372 "then": "infinitive-v", 

373 }, 

374 "Case / #": "", 

375 # XXX needs special handling ['-льник', '-овка', '-ник'] 

376 "accusative animate inanimate": "accusative animate inanimate", 

377 "negative": "negative", 

378 "past participle": "past participle", 

379 "indicative mood": "indicative", 

380 "nominative/ accusative": "nominative accusative", 

381 "genitive/ dative": "genitive dative", 

382 "Positive": "positive", 

383 "short form": "short-form", 

384 "Short past participle": "past participle short-form", 

385 "Long past participle": "past participle long-form", 

386 "positive": "positive", 

387 "1st sing.": "first-person singular", 

388 "2nd sing.": "second-person singular", 

389 "3rd sing.": "third-person singular", 

390 "1st plur.": "first-person plural", 

391 "2nd plur.": "second-person plural", 

392 "3rd plur.": "third-person plural", 

393 "conditional mood": "conditional", 

394 "imperative mood": "imperative", 

395 "potential mood": "potential", 

396 "Nominal forms": "dummy-reset-headers", # Reset column inheritance 

397 "long 1st": "infinitive-i-long", 

398 "I": { 

399 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

400 "if": "infinitive", 

401 "then": "infinitive-i", 

402 "else": { 

403 "lang": "Czech", # podnikat/Czech 

404 "then": "first-person singular", 

405 "else": { 

406 "lang": "Komi-Zyrian", # ань/Komi-Zyrian 

407 "if": "accusative", 

408 "then": "accusative-i", 

409 "else": { 

410 "lang": "Komi-Zyrian", 

411 "if": "prolative", 

412 "then": "prolative-i", 

413 "else": { 

414 "lang": "Avar", 

415 "if": "locative", 

416 "then": "locative-i", 

417 "else": { 

418 "lang": "Avar", 

419 "if": "allative", 

420 "then": "allative-i", 

421 "else": { 

422 "lang": "Avar", 

423 "if": "ablative", 

424 "then": "ablative-i", 

425 "else": { 

426 "lang": "Avar", 

427 "if": "translative", 

428 "then": "translative-i", 

429 }, 

430 }, 

431 }, 

432 }, 

433 }, 

434 }, 

435 }, 

436 }, 

437 "long I": { 

438 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

439 "if": "infinitive", 

440 "then": "infinitive-i-long", 

441 }, 

442 "II": { 

443 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

444 "if": "infinitive", 

445 "then": "infinitive-ii", 

446 "else": { 

447 "lang": "Komi-Zyrian", # ань/Komi-Zyrian 

448 "if": "accusative", 

449 "then": "accusative-ii", 

450 "else": { 

451 "lang": "Komi-Zyrian", 

452 "if": "prolative", 

453 "then": "prolative-ii", 

454 "else": { 

455 "lang": "Avar", 

456 "if": "locative", 

457 "then": "locative-ii", 

458 "else": { 

459 "lang": "Avar", 

460 "if": "allative", 

461 "then": "allative-ii", 

462 "else": { 

463 "lang": "Avar", 

464 "if": "ablative", 

465 "then": "ablative-ii", 

466 "else": { 

467 "lang": "Avar", 

468 "if": "translative", 

469 "then": "translative-ii", 

470 }, 

471 }, 

472 }, 

473 }, 

474 }, 

475 }, 

476 }, 

477 "III": { 

478 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

479 "if": "infinitive", 

480 "then": "infinitive-iii", 

481 "else": { 

482 "lang": "Avar", 

483 "if": "locative", 

484 "then": "locative-iii", 

485 "else": { 

486 "lang": "Avar", 

487 "if": "allative", 

488 "then": "allative-iii", 

489 "else": { 

490 "lang": "Avar", 

491 "if": "ablative", 

492 "then": "ablative-iii", 

493 "else": { 

494 "lang": "Avar", 

495 "if": "translative", 

496 "then": "translative-iii", 

497 }, 

498 }, 

499 }, 

500 }, 

501 }, 

502 "IV": { 

503 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

504 "if": "infinitive", 

505 "then": "infinitive-iv", 

506 "else": { 

507 "lang": "Avar", 

508 "if": "locative", 

509 "then": "locative-iv", 

510 "else": { 

511 "lang": "Avar", 

512 "if": "allative", 

513 "then": "allative-iv", 

514 "else": { 

515 "lang": "Avar", 

516 "if": "ablative", 

517 "then": "ablative-iv", 

518 "else": { 

519 "lang": "Avar", 

520 "if": "translative", 

521 "then": "translative-iv", 

522 }, 

523 }, 

524 }, 

525 }, 

526 }, 

527 "V": { 

528 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

529 "if": "infinitive", 

530 "then": "infinitive-v", 

531 "else": { 

532 "lang": "Avar", 

533 "if": "locative", 

534 "then": "locative-v", 

535 "else": { 

536 "lang": "Avar", 

537 "if": "allative", 

538 "then": "allative-v", 

539 "else": { 

540 "lang": "Avar", 

541 "if": "ablative", 

542 "then": "ablative-v", 

543 "else": { 

544 "lang": "Avar", 

545 "if": "translative", 

546 "then": "translative-v", 

547 }, 

548 }, 

549 }, 

550 }, 

551 }, 

552 "agent": "agent", 

553 "Plural (m/f)": "plural masculine feminine", 

554 "(strong noun)": "strong", 

555 "(weak noun)": "weak", 

556 "Weak conjugation": "weak", 

557 "Strong conjugation": "strong", 

558 "Masc./Fem.": "masculine feminine", 

559 "present participle": "present participle", 

560 "number case / gender": "", 

561 "Case/Gender": "", 

562 "Adverb": "adverbial", 

563 "augmentative": "augmentative", 

564 "diminutive": "diminutive", 

565 "singular (vienaskaita)": "singular", 

566 "plural (daugiskaita)": "plural", 

567 "nominative (vardininkas)": "nominative", 

568 "genitive (kilmininkas)": "genitive", 

569 "dative (naudininkas)": "dative", 

570 "accusative (galininkas)": "accusative", 

571 "instrumental (įnagininkas)": "instrumental", 

572 "locative (vietininkas)": "locative", 

573 "vocative (šauksmininkas)": "vocative", 

574 "ie": { 

575 "lang": "Dutch", 

576 "pos": "verb", 

577 "if": "third-person singular", 

578 "then": "third-person singular", 

579 "else": { 

580 "lang": [ 

581 "Middle French", 

582 "Old Occitan", 

583 "Ladin", 

584 ], 

585 "pos": "verb", 

586 "if": "first-person singular", 

587 "then": "first-person singular", 

588 }, 

589 }, 

590 "io": { 

591 "lang": [ 

592 "Aromanian", 

593 "Interlingua", 

594 "Istro-Romanian", 

595 "Italian", 

596 "Neapolitan", 

597 ], 

598 "pos": ["verb", "suffix"], # -urre/Italian; Added Italian entries 

599 "if": "first-person singular", 

600 "then": "first-person singular", 

601 }, 

602 "tu": { 

603 "lang": [ 

604 "Aromanian", 

605 "Asturian", 

606 "Catalan", 

607 "French", 

608 "Friulian", 

609 "Gallurese", 

610 "Gaulish", 

611 "Ido", 

612 "Interlingua", 

613 "Italian", 

614 "Kalasha", 

615 "Kalo Finnish Romani", 

616 "Ladino", 

617 "Latgalian", 

618 "Latin", 

619 "Latvian", 

620 "Lithuanian", 

621 "Middle French", 

622 "Mirandese", 

623 "Neapolitan", 

624 "Northern Kurdish", 

625 "Old French", 

626 "Occitan", 

627 "Old Irish", 

628 "Old Portuguese", 

629 "Phalura", 

630 "Portuguese", 

631 "Romani", 

632 "Romanian", 

633 "Sassarese", 

634 "Savi", 

635 "Scottish Gaelic", 

636 "Sicilian", 

637 "Sinte Romani", 

638 "Sudovian", 

639 "Tarantino", 

640 "Tocharian A", 

641 "Welsh Romani", 

642 ], 

643 "pos": ["verb", "suffix"], 

644 "then": "second-person", 

645 "else": { 

646 "lang": "Ladin", 

647 "then": "second-person singular", 

648 }, 

649 }, 

650 "lui/lei, esso/essa": { 

651 "lang": "Italian", 

652 "pos": ["verb", "suffix"], 

653 "if": "third-person singular", 

654 "then": "third-person singular", 

655 }, 

656 "lui/lei": { # calere/Italian 

657 "lang": "Italian", 

658 "pos": ["verb", "suffix"], 

659 "if": "third-person singular", 

660 "then": "third-person singular", 

661 }, 

662 "noi": { 

663 "lang": [ 

664 "Aromanian", 

665 "Corsican", 

666 "Gallurese", 

667 "Italian", 

668 "Piedmontese", 

669 "Romanian", 

670 "Sassarese", 

671 ], 

672 "pos": ["verb", "suffix"], 

673 "if": "first-person plural", 

674 "then": "first-person plural", 

675 }, 

676 "voi": { 

677 "lang": [ 

678 "Aromanian", 

679 "Corsican", 

680 "Gallurese", 

681 "Italian", 

682 "Piedmontese", 

683 "Romanian", 

684 "Sassarese", 

685 ], 

686 "pos": ["verb", "suffix"], 

687 "if": "second-person plural", 

688 "then": "second-person plural", 

689 }, 

690 "loro, essi/esse": { 

691 "lang": "Italian", 

692 "pos": ["verb", "suffix"], 

693 "if": "third-person plural", 

694 "then": "third-person plural", 

695 }, 

696 "loro": { # calere/Italian 

697 "lang": "Italian", 

698 "pos": ["verb", "suffix"], 

699 "if": "third-person plural", 

700 "then": "third-person plural", 

701 }, 

702 "che io": { 

703 "lang": "Italian", 

704 "pos": ["verb", "suffix"], 

705 "if": "first-person singular", 

706 "then": "first-person singular", 

707 }, 

708 "che tu": { 

709 "lang": ["Italian", "Ladin"], 

710 "pos": ["verb", "suffix"], 

711 "if": "second-person singular", 

712 "then": "second-person singular", 

713 }, 

714 "che lui/che lei, che esso/che essa": { 

715 "lang": "Italian", 

716 "pos": ["verb", "suffix"], 

717 "if": "third-person singular", 

718 "then": "third-person singular", 

719 }, 

720 "che lui/che lei": { # calere/Italian 

721 "lang": "Italian", 

722 "pos": ["verb", "suffix"], 

723 "if": "third-person singular", 

724 "then": "third-person singular", 

725 }, 

726 "che noi": { 

727 "lang": "Italian", 

728 "pos": ["verb", "suffix"], 

729 "if": "first-person plural", 

730 "then": "first-person plural", 

731 }, 

732 "che voi": { 

733 "lang": "Italian", 

734 "pos": ["verb", "suffix"], 

735 "if": "second-person plural", 

736 "then": "second-person plural", 

737 }, 

738 "che loro, che essi/che esse": { 

739 "lang": "Italian", 

740 "pos": ["verb", "suffix"], 

741 "if": "third-person plural", 

742 "then": "third-person plural", 

743 }, 

744 "che loro": { # calere/Italian 

745 "lang": "Italian", 

746 "pos": ["verb", "suffix"], 

747 "if": "third-person plural", 

748 "then": "third-person plural", 

749 }, 

750 "io/mini/mine": { 

751 "lang": "Aromanian", 

752 "pos": "verb", 

753 "if": "first-person singular", 

754 "then": "first-person singular", 

755 }, 

756 "mini / mine": { # escu/Aromanian 

757 "lang": "Aromanian", 

758 "pos": "verb", 

759 "if": "first-person singular", 

760 "then": "first-person singular", 

761 }, 

762 "tu/tini/tine": { 

763 "lang": "Aromanian", 

764 "pos": "verb", 

765 "if": "second-person singular", 

766 "then": "second-person singular", 

767 }, 

768 "tini / tine": { # escu/Aromanian 

769 "lang": "Aromanian", 

770 "pos": "verb", 

771 "if": "second-person singular", 

772 "then": "second-person singular", 

773 }, 

774 "nãsh/nãshi, nãsi/nãse, elj, eali/eale": { 

775 "lang": "Aromanian", 

776 "pos": "verb", 

777 "if": "third-person plural", 

778 "then": "third-person plural", 

779 }, 

780 "nãsh, nãse / nãsi, elj, eali": { 

781 "lang": "Aromanian", 

782 "pos": "verb", 

783 "if": "third-person plural", 

784 "then": "third-person plural", 

785 }, 

786 "nãs, nãsã / nãsa, el, ea": { 

787 "lang": "Aromanian", 

788 "pos": "verb", 

789 "if": "third-person singular", 

790 "then": "third-person singular", 

791 }, 

792 "eiu": { 

793 "lang": "Corsican", 

794 "pos": "verb", 

795 "if": "first-person singular", 

796 "then": "first-person singular", 

797 }, 

798 "tù": { 

799 "lang": "Corsican", 

800 "pos": "verb", 

801 "if": "second-person singular", 

802 "then": "second-person singular", 

803 }, 

804 "ellu/ella": { 

805 "lang": "Corsican", 

806 "pos": "verb", 

807 "if": "third-person singular", 

808 "then": "third-person singular", 

809 }, 

810 "elli/elle": { 

811 "lang": "Corsican", 

812 "pos": "verb", 

813 "if": "third-person plural", 

814 "then": "third-person plural", 

815 }, 

816 "eu": { 

817 "lang": [ 

818 "Galician", 

819 "Gallurese", 

820 "Old Occitan", 

821 "Old Portuguese", 

822 "Portuguese", 

823 "Romanian", 

824 "Romansch", 

825 ], 

826 "pos": "verb", 

827 # ~ "if": "first-person singular", 

828 "then": "first-person singular", 

829 }, 

830 "el/ea": { 

831 "lang": "Romanian", 

832 "pos": "verb", 

833 "if": "third-person singular", 

834 "then": "third-person singular", 

835 }, 

836 "ei/ele": { 

837 "lang": "Romanian", 

838 "pos": "verb", 

839 "if": "third-person plural", 

840 "then": "third-person plural", 

841 }, 

842 "aš": { 

843 "lang": "Lithuanian", 

844 "pos": "verb", 

845 "if": "first-person singular", 

846 "then": "first-person", 

847 }, 

848 "jis/ji": { 

849 "lang": "Lithuanian", 

850 "pos": "verb", 

851 "if": "third-person singular", 

852 "then": "third-person", 

853 }, 

854 "mes": { 

855 "lang": ["Latgalian", "Latvian", "Lithuanian", "Old Prussian"], 

856 "pos": "verb", 

857 "if": "first-person plural", 

858 "then": "first-person", 

859 }, 

860 "mēs": { 

861 "lang": "Latvian", 

862 "pos": "verb", 

863 "if": "first-person plural", 

864 "then": "first-person plural", 

865 }, 

866 "es": { 

867 "lang": [ 

868 "Alemannic German", 

869 "Cimbrian", 

870 "German", 

871 "Hunsrik", 

872 "Pennsylvania German", 

873 "Sudovian", 

874 ], 

875 "pos": "verb", 

876 "if": "third-person singular", 

877 "then": "third-person singular", 

878 "else": { 

879 "lang": ["Bavarian"], 

880 "pos": "verb", 

881 "if": "second-person plural familiar", 

882 "then": "second-person plural familiar", 

883 "else": { 

884 "lang": "Kabuverdianu", 

885 "pos": "verb", 

886 "if": "third-person plural", 

887 "then": "third-person plural", 

888 "else": { 

889 "lang": ["Latgalian", "Latvian"], 

890 "pos": "verb", 

891 "if": "first-person singular", 

892 "then": "first-person singular", 

893 }, 

894 }, 

895 }, 

896 }, 

897 "jūs": { 

898 "lang": ["Latvian", "Lithuanian", "Old Prussian"], 

899 "pos": "verb", 

900 "if": "singular", 

901 "then": "second-person singular", 

902 "else": { 

903 "lang": ["Latvian", "Lithuanian", "Old Prussian"], 

904 "pos": "verb", 

905 "if": "plural", 

906 "then": "second-person plural", 

907 "else": "second-person plural", 

908 }, 

909 }, 

910 "jie/jos": { 

911 "lang": "Lithuanian", 

912 "pos": "verb", 

913 "if": "third-person plural", 

914 "then": "third-person plural", 

915 }, 

916 "jie": { 

917 "lang": "Saterland Frisian", 

918 "pos": "verb", 

919 "if": "second-person singular", 

920 "then": "second-person singular", 

921 "else": { 

922 "lang": "Saterland Frisian", 

923 "pos": "verb", 

924 "if": "second-person plural", 

925 "then": "second-person plural", 

926 }, 

927 }, 

928 "ije": { 

929 "lang": ["Neapolitan", "Tarantino"], 

930 "pos": "verb", 

931 "if": "first-person singular", 

932 "then": "first-person singular", 

933 }, 

934 "jidde / jèdde": { 

935 "lang": "Tarantino", 

936 "pos": "verb", 

937 "if": "third-person singular", 

938 "then": "third-person singular", 

939 }, 

940 "nuje": { 

941 "lang": ["Neapolitan", "Tarantino"], 

942 "pos": "verb", 

943 "if": "first-person plural", 

944 "then": "first-person plural", 

945 }, 

946 "vuje": { 

947 "lang": ["Neapolitan", "Tarantino"], 

948 "pos": "verb", 

949 "if": "second-person plural", 

950 "then": "second-person plural", 

951 }, 

952 "lóre": { 

953 "lang": "Tarantino", 

954 "pos": "verb", 

955 "if": "third-person plural", 

956 "then": "third-person plural", 

957 }, 

958 "lloro": { 

959 "lang": "Neapolitan", 

960 "pos": "verb", 

961 "if": "third-person plural", 

962 "then": "third-person plural", 

963 }, 

964 "isso/essa": { 

965 "lang": "Neapolitan", 

966 "pos": "verb", 

967 "if": "third-person singular", 

968 "then": "third-person singular", 

969 }, 

970 "cu ije": { 

971 "lang": "Tarantino", 

972 "pos": "verb", 

973 "if": "first-person singular", 

974 "then": "first-person singular", 

975 }, 

976 "cu tu": { 

977 "lang": [ 

978 "Neapolitan", 

979 "Tarantino", 

980 ], 

981 "pos": "verb", 

982 "if": "second-person singular", 

983 "then": "second-person singular", 

984 }, 

985 "cu jidde / cu jèdde": { 

986 "lang": "Tarantino", 

987 "pos": "verb", 

988 "if": "third-person singular", 

989 "then": "third-person singular", 

990 }, 

991 "cu nuje": { 

992 "lang": [ 

993 "Neapolitan", 

994 "Tarantino", 

995 ], 

996 "pos": "verb", 

997 "if": "first-person plural", 

998 "then": "first-person plural", 

999 }, 

1000 "cu vuje": { 

1001 "lang": "Tarantino", 

1002 "pos": "verb", 

1003 "if": "second-person plural", 

1004 "then": "second-person plural", 

1005 }, 

1006 "cu lóre": { 

1007 "lang": "Tarantino", 

1008 "pos": "verb", 

1009 "if": "third-person plural", 

1010 "then": "third-person plural", 

1011 }, 

1012 "ca io": { 

1013 "lang": "Neapolitan", 

1014 "pos": "verb", 

1015 "if": "first-person singular", 

1016 "then": "first-person singular", 

1017 }, 

1018 "ca isso/ca essa": { 

1019 "lang": "Neapolitan", 

1020 "pos": "verb", 

1021 "if": "third-person singular", 

1022 "then": "third-person singular", 

1023 }, 

1024 "ca vuje": { 

1025 "lang": "Neapolitan", 

1026 "pos": "verb", 

1027 "if": "second-person plural", 

1028 "then": "second-person plural", 

1029 }, 

1030 "ca lloro": { 

1031 "lang": "Neapolitan", 

1032 "pos": "verb", 

1033 "if": "third-person plural", 

1034 "then": "third-person plural", 

1035 }, 

1036 "ja": { 

1037 "lang": [ 

1038 "Assan", 

1039 "Guerrero Amuzgo", 

1040 "Gutnish", 

1041 "Lower Sorbian", 

1042 "Polish", 

1043 "Serbo-Croatian", 

1044 "Slovak", 

1045 "Upper Sorbian", 

1046 ], 

1047 "pos": ["verb", "suffix"], 

1048 "if": "first-person singular", 

1049 "then": "first-person singular", 

1050 "else": { 

1051 "lang": "North Frisian", 

1052 "pos": "verb", 

1053 "if": "third-person plural", 

1054 "then": "third-person plural", 

1055 }, 

1056 }, 

1057 "ti": { 

1058 "lang": [ 

1059 "Albanian", 

1060 "Galician", 

1061 "Istriot", 

1062 "Ligurian", 

1063 "Piedmontese", 

1064 "Romansch", 

1065 "Serbo-Croatian", 

1066 "Slovene", 

1067 "Welsh", 

1068 "Cumprar", 

1069 ], 

1070 "pos": ["verb", "suffix"], 

1071 # ~ "if": "second-person singular", 

1072 "then": "second-person singular", 

1073 "else": { 

1074 "lang": "Czech", 

1075 "pos": "verb", 

1076 # ~ "if": "third-person plural", 

1077 "then": "third-person plural", 

1078 "else": { 

1079 "lang": "Hungarian", 

1080 "pos": "verb", 

1081 # ~ "if": "second-person plural", 

1082 "then": "second-person plural", 

1083 }, 

1084 }, 

1085 }, 

1086 "on / ona / ono": { 

1087 "lang": [ 

1088 "Czech", 

1089 "Old Czech", 

1090 "Polish", 

1091 "Serbo-Croatian", 

1092 "Slovak", 

1093 "Slovene", 

1094 ], 

1095 "pos": ["verb", "suffix"], 

1096 "if": "third-person singular", 

1097 "then": "third-person singular", 

1098 }, 

1099 "mi": { 

1100 "lang": [ 

1101 "Bislama", 

1102 "Esperanto", 

1103 "Fula", 

1104 "Ga", 

1105 "Gaulish", 

1106 "Guinea-Bissau Creole", 

1107 "Jamaican Creole", 

1108 "Kabuverdianu", 

1109 "Ligurian", 

1110 "Nigerian Pidgin", 

1111 "Nzadi", 

1112 "Önge", 

1113 "Papiamentu", 

1114 "Piedmontese", 

1115 "Pijin", 

1116 "Scottish Gaelic", 

1117 "Sranan Tongo", 

1118 "Tok Pisin", 

1119 "Welsh", 

1120 ], 

1121 "pos": "verb", 

1122 "if": "first-person singular", 

1123 "then": "first-person singular", 

1124 "else": { 

1125 "lang": ["Hungarian", "Serbo-Croatian", "Slovene"], 

1126 "pos": ["verb", "suffix"], 

1127 "if": "first-person plural", 

1128 "then": "first-person plural", 

1129 "else": { 

1130 "lang": ["Ewe", "Laboya"], 

1131 "pos": "verb", 

1132 "if": "second-person plural", 

1133 "then": "second-person plural", 

1134 "else": { 

1135 "lang": "Jarawa", 

1136 "pos": "verb", 

1137 "if": "first-person singular", # both plural and singular 

1138 "then": "first-person singular", 

1139 "else": { 

1140 "lang": "Jarawa", 

1141 "pos": "verb", 

1142 "if": "first-person plural", 

1143 "then": "first-person plural", 

1144 }, 

1145 }, 

1146 }, 

1147 }, 

1148 }, 

1149 "vi": { 

1150 "lang": ["Danish", "Norwegian Bokmål", "Norwegian Nynorsk", "Swedish"], 

1151 "pos": "verb", 

1152 "if": "first-person plural", 

1153 "then": "first-person plural", 

1154 "else": { 

1155 "lang": ["Esperanto", "Ido", "Serbo-Croatian"], 

1156 "pos": ["verb", "suffix"], 

1157 "if": "second-person plural", 

1158 "then": "second-person plural", 

1159 "else": { 

1160 "lang": "Slovene", 

1161 "pos": "verb", 

1162 "if": "second-person", # plural or (formal) singular 

1163 "then": "second-person", 

1164 }, 

1165 }, 

1166 }, 

1167 "oni / one / ona": { 

1168 "lang": [ 

1169 "Czech", 

1170 "Old Czech", 

1171 "Polish", 

1172 "Serbo-Croatian", 

1173 "Slovak", 

1174 "Slovene", 

1175 ], 

1176 "pos": ["verb", "suffix"], 

1177 "if": "third-person plural", 

1178 "then": "third-person plural", 

1179 }, 

1180 "ono": { 

1181 "lang": "Hadza", 

1182 "pos": "verb", 

1183 "if": "first-person singular", 

1184 "then": "first-person singular", 

1185 }, 

1186 "me": { 

1187 "lang": "Romani", 

1188 "pos": "verb", 

1189 "if": "first-person singular", 

1190 "then": "first-person singular", 

1191 }, 

1192 "amen": { 

1193 "lang": "Romani", 

1194 "pos": "verb", 

1195 "if": "first-person plural", 

1196 "then": "first-person plural", 

1197 }, 

1198 "tumen": { 

1199 "lang": "Romani", 

1200 "pos": "verb", 

1201 "if": "second-person plural", 

1202 "then": "second-person plural", 

1203 }, 

1204 "on": { 

1205 "lang": "Romani", 

1206 "pos": "verb", 

1207 "if": "third-person plural", 

1208 "then": "third-person plural", 

1209 }, 

1210 "Lei": { 

1211 "lang": "Italian", 

1212 "if": "third-person", 

1213 "then": "third-person singular formal second-person-semantically", 

1214 }, 

1215 "Loro": { 

1216 "lang": "Italian", 

1217 "if": "third-person", 

1218 "then": "third-person plural formal second-person-semantically", 

1219 }, 

1220 "yo": { 

1221 "lang": [ 

1222 "Afar", 

1223 "Aragonese", 

1224 "Asturian", 

1225 "Chavacano", 

1226 "Kristang", 

1227 "Ladino", 

1228 "Spanish", 

1229 ], 

1230 "pos": ["verb", "suffix"], 

1231 "if": "first-person singular", 

1232 "then": "first-person singular", 

1233 "else": { 

1234 "lang": "Haitian Creole", 

1235 "pos": "verb", 

1236 "if": "third-person plural", 

1237 "then": "third-person plural", 

1238 }, 

1239 }, 

1240 "vos": { 

1241 "lang": [ 

1242 "Interlingua", 

1243 "Ladino", 

1244 "Latin", 

1245 "Old French", 

1246 "Old Occitan", 

1247 "Sardinian", 

1248 "Lorrain", 

1249 ], 

1250 "pos": "verb", 

1251 "then": "second-person", 

1252 "else": { 

1253 "lang": [ 

1254 "Ladin", 

1255 "Walloon", 

1256 ], 

1257 "then": "second-person plural", 

1258 }, 

1259 }, 

1260 "tú": { 

1261 "lang": ["Aragonese", "Faroese", "Irish", "Ladino", "Old Irish"], 

1262 "pos": "verb", 

1263 "if": "second-person singular", 

1264 "then": "second-person singular", 

1265 }, 

1266 "jo": { 

1267 "lang": ["Catalan", "Friulian", "Occitan", "Old French", "Silesian"], 

1268 "pos": "verb", 

1269 "if": "first-person singular", 

1270 "then": "first-person singular", 

1271 "else": { 

1272 "lang": ["North Frisian", "Saterland Frisian"], 

1273 "pos": "verb", 

1274 "if": "third-person singular", 

1275 "then": "third-person singular", 

1276 }, 

1277 }, 

1278 "ell/ella vostè": { 

1279 "lang": "Catalan", 

1280 "pos": "verb", 

1281 "if": "third-person singular", 

1282 "then": "third-person singular", 

1283 }, 

1284 "nosaltres nós": { 

1285 "lang": "Catalan", 

1286 "pos": "verb", 

1287 "if": "first-person plural", 

1288 "then": "first-person plural", 

1289 }, 

1290 "vosaltres vós": { 

1291 "lang": "Catalan", 

1292 "pos": "verb", 

1293 "if": "second-person plural", 

1294 "then": "second-person plural", 

1295 }, 

1296 "ells/elles vostès": { 

1297 "lang": "Catalan", 

1298 "pos": "verb", 

1299 "if": "third-person plural", 

1300 "then": "third-person plural", 

1301 }, 

1302 "vostè": { 

1303 "lang": "Catalan", 

1304 "pos": "verb", 

1305 "if": "third-person singular", 

1306 "then": "formal second-person-semantically", 

1307 }, 

1308 "nosaltres": { 

1309 "lang": "Catalan", 

1310 "pos": "verb", 

1311 "if": "first-person plural", 

1312 "then": "first-person plural", 

1313 }, 

1314 "vostès": { 

1315 "lang": "Catalan", 

1316 "pos": "verb", 

1317 "if": "third-person plural", 

1318 "then": "formal second-person-semantically", 

1319 }, 

1320 "tú vos": { 

1321 "if": "second-person singular", 

1322 "then": "second-person singular", 

1323 }, 

1324 "él/ella/ello usted": { 

1325 "lang": "Spanish", 

1326 "pos": ["verb", "suffix"], 

1327 "if": "third-person singular", 

1328 "then": "third-person singular", 

1329 }, 

1330 "nosotros nosotras": { 

1331 "lang": ["Asturian", "Spanish"], 

1332 "pos": ["verb", "suffix"], 

1333 "if": "first-person plural", 

1334 "then": "first-person plural", 

1335 }, 

1336 "vosotros vosotras": { 

1337 "lang": ["Spanish"], 

1338 "pos": ["verb", "suffix"], 

1339 "if": "second-person plural", 

1340 "then": "second-person plural", 

1341 }, 

1342 "ellos/ellas ustedes": { 

1343 "lang": "Spanish", 

1344 "pos": ["verb", "suffix"], 

1345 "if": "third-person plural", 

1346 "then": "third-person plural", 

1347 }, 

1348 "usted": { 

1349 "lang": "Spanish", 

1350 "pos": ["verb", "suffix"], 

1351 "if": "imperative", 

1352 "then": [ 

1353 "third-person singular formal second-person-semantically", 

1354 "third-person singular", 

1355 ], 

1356 }, 

1357 "ustedes": { 

1358 "lang": "Spanish", 

1359 "pos": ["verb", "suffix"], 

1360 "if": "imperative", 

1361 "then": [ 

1362 "third-person plural formal second-person-semantically", 

1363 "third-person plural", 

1364 ], 

1365 }, 

1366 "je (j’)": { 

1367 "lang": "French", 

1368 "pos": [ 

1369 "verb", 

1370 "suffix", 

1371 ], 

1372 "then": "first-person singular", 

1373 }, 

1374 "il, elle, on": { 

1375 "lang": ["French", "Middle French"], 

1376 "pos": [ 

1377 "verb", 

1378 "suffix", 

1379 ], 

1380 "then": "third-person singular", 

1381 }, 

1382 "il, elle": { 

1383 "lang": ["French", "Middle French"], 

1384 "pos": [ 

1385 "verb", 

1386 "suffix", 

1387 ], 

1388 "then": "third-person singular", 

1389 }, 

1390 "nous": { 

1391 "lang": ["French", "Middle French"], 

1392 "pos": [ 

1393 "verb", 

1394 "suffix", 

1395 ], 

1396 "then": "first-person plural", 

1397 }, 

1398 "vous": { 

1399 "lang": ["French", "Middle French"], 

1400 "pos": [ 

1401 "verb", 

1402 "suffix", 

1403 ], 

1404 "then": "second-person plural", 

1405 }, 

1406 "ils, elles": { 

1407 "lang": "French", 

1408 "pos": [ 

1409 "verb", 

1410 "suffix", 

1411 ], 

1412 "then": "third-person plural", 

1413 }, 

1414 "que je (j’)": { 

1415 "lang": "French", 

1416 "pos": [ 

1417 "verb", 

1418 "suffix", 

1419 ], 

1420 "then": "first-person singular", 

1421 }, 

1422 "que tu": { 

1423 "lang": [ 

1424 "French", 

1425 "Middle French", 

1426 "Old French", 

1427 "Lorrain", 

1428 ], 

1429 "pos": [ 

1430 "verb", 

1431 "suffix", 

1432 ], 

1433 "then": "second-person singular", 

1434 }, 

1435 "qu’il, qu’elle": { 

1436 "lang": ["French", "Middle French"], 

1437 "pos": [ 

1438 "verb", 

1439 "suffix", 

1440 ], 

1441 "then": "third-person singular", 

1442 }, 

1443 "que nous": { 

1444 "lang": ["French", "Middle French"], 

1445 "pos": [ 

1446 "verb", 

1447 "suffix", 

1448 ], 

1449 "then": "first-person plural", 

1450 }, 

1451 "que vous": { 

1452 "lang": ["French", "Middle French"], 

1453 "pos": [ 

1454 "verb", 

1455 "suffix", 

1456 ], 

1457 "then": "second-person plural", 

1458 }, 

1459 "qu’ils, qu’elles": { 

1460 "lang": ["French", "Middle French"], 

1461 "pos": [ 

1462 "verb", 

1463 "suffix", 

1464 ], 

1465 "then": "third-person plural", 

1466 }, 

1467 "ie (i’)": { 

1468 "lang": "Middle French", 

1469 "pos": "verb", 

1470 "then": "first-person singular", 

1471 }, 

1472 "ilz, elles": { 

1473 "lang": "Middle French", 

1474 "pos": "verb", 

1475 "then": "third-person plural", 

1476 }, 

1477 "que ie (i’)": { 

1478 "lang": "Middle French", 

1479 "pos": "verb", 

1480 "then": "first-person singular", 

1481 }, 

1482 "qu’ilz, qu’elles": { 

1483 "lang": "Middle French", 

1484 "pos": "verb", 

1485 "then": "third-person plural", 

1486 }, 

1487 "il": { 

1488 "lang": ["Old French"], 

1489 "pos": "verb", 

1490 "then": "third-person", 

1491 }, 

1492 "nos": { 

1493 "lang": [ 

1494 "Lorrain", 

1495 "Old French", 

1496 "Ladin", 

1497 ], 

1498 "pos": "verb", 

1499 "then": "first-person plural", 

1500 }, 

1501 "que jo": { 

1502 "lang": ["Old French"], 

1503 "pos": "verb", 

1504 "if": "first-person singular", 

1505 "then": "first-person singular", 

1506 }, 

1507 "qu’il": { 

1508 "lang": "Old French", 

1509 "pos": "verb", 

1510 "if": "third-person", 

1511 "then": "third-person", 

1512 }, 

1513 "que nos": { 

1514 "lang": "Old French", 

1515 "pos": "verb", 

1516 "if": "first-person plural", 

1517 "then": "first-person plural", 

1518 }, 

1519 "que vos": { 

1520 "lang": [ 

1521 "Old French", 

1522 "Lorrain", 

1523 ], 

1524 "pos": "verb", 

1525 "if": "second-person plural", 

1526 "then": "second-person plural", 

1527 }, 

1528 "lui/jê": { 

1529 "lang": "Friulian", 

1530 "pos": "verb", 

1531 "if": "third-person singular", 

1532 "then": "third-person singular", 

1533 }, 

1534 "nô": { 

1535 "lang": "Friulian", 

1536 "pos": "verb", 

1537 "if": "first-person plural", 

1538 "then": "first-person plural", 

1539 }, 

1540 "vô": { 

1541 "lang": "Friulian", 

1542 "pos": "verb", 

1543 "if": "second-person plural", 

1544 "then": "second-person plural", 

1545 }, 

1546 "lôr": { 

1547 "lang": "Friulian", 

1548 "pos": "verb", 

1549 "if": "third-person plural", 

1550 "then": "third-person plural", 

1551 }, 

1552 "ես": { 

1553 "lang": ["Armenian", "Old Armenian"], 

1554 "pos": "verb", 

1555 "if": "first-person singular", 

1556 "then": "first-person singular", 

1557 }, 

1558 "դու": { 

1559 "lang": ["Armenian", "Old Armenian"], 

1560 "pos": "verb", 

1561 "if": "second-person singular", 

1562 "then": "second-person singular", 

1563 }, 

1564 "նա": { 

1565 "lang": ["Armenian", "Old Armenian"], 

1566 "pos": "verb", 

1567 "if": "third-person singular", 

1568 "then": "third-person singular", 

1569 }, 

1570 "դուք": { 

1571 "lang": ["Armenian", "Old Armenian"], 

1572 "pos": "verb", 

1573 "if": "second-person plural", 

1574 "then": "second-person plural", 

1575 }, 

1576 "(դու)": { 

1577 "lang": ["Armenian", "Old Armenian"], 

1578 "pos": "verb", 

1579 "if": "second-person singular", 

1580 "then": "rare", 

1581 }, 

1582 "(դուք)": { 

1583 "lang": ["Armenian", "Old Armenian"], 

1584 "pos": "verb", 

1585 "if": "second-person plural", 

1586 "then": "rare", 

1587 }, 

1588 "nós": { 

1589 "lang": [ 

1590 "Asturian", 

1591 "Galician", 

1592 "Indo-Portuguese", 

1593 "Mirandese", 

1594 "Portuguese", 

1595 ], 

1596 "pos": "verb", 

1597 # ~ "if": "first-person plural", 

1598 "then": "first-person plural", 

1599 }, 

1600 "el/ela/Vde.": { 

1601 "lang": "Galician", 

1602 "pos": "verb", 

1603 # ~ "if": "third-person singular", 

1604 "then": "third-person singular", 

1605 }, 

1606 "eles/elas/Vdes.": { 

1607 "lang": "Galician", 

1608 "pos": "verb", 

1609 # ~ "if": "third-person plural", 

1610 "then": "third-person plural", 

1611 }, 

1612 "mì": { 

1613 "lang": ["Lombard", "Western Lombard"], 

1614 "pos": "verb", 

1615 "if": "first-person singular", 

1616 "then": "first-person singular", 

1617 }, 

1618 "tì te": { 

1619 "lang": ["Lombard", "Western Lombard"], 

1620 "pos": "verb", 

1621 "if": "second-person singular", 

1622 "then": "second-person singular", 

1623 }, 

1624 "lù el / lee la": { 

1625 "lang": ["Lombard", "Western Lombard"], 

1626 "pos": "verb", 

1627 "if": "third-person singular", 

1628 "then": "third-person singular", 

1629 }, 

1630 "nun": { 

1631 "lang": ["Lombard", "Western Lombard", "Wolof"], 

1632 "pos": "verb", 

1633 "if": "first-person plural", 

1634 "then": "first-person plural", 

1635 }, 

1636 "violter / vialter": { 

1637 "lang": ["Lombard", "Western Lombard"], 

1638 "pos": "verb", 

1639 "if": "second-person plural", 

1640 "then": "second-person plural", 

1641 }, 

1642 "lor": { 

1643 "lang": ["Lombard", "Western Lombard"], 

1644 "pos": "verb", 

1645 "if": "third-person plural", 

1646 "then": "third-person plural", 

1647 }, 

1648 "iu": { 

1649 "lang": "Sicilian", 

1650 "pos": "verb", 

1651 "if": "first-person singular", 

1652 "then": "first-person singular", 

1653 }, 

1654 "iddu/idda": { 

1655 "lang": ["Gallurese", "Sicilian"], 

1656 "pos": "verb", 

1657 "if": "third-person singular", 

1658 "then": "third-person singular", 

1659 }, 

1660 "éiu, eu": { 

1661 "lang": "Sassarese", 

1662 "pos": "verb", 

1663 "if": "first-person singular", 

1664 "then": "first-person singular", 

1665 }, 

1666 "eddu/edda": { 

1667 "lang": "Sassarese", 

1668 "pos": "verb", 

1669 "if": "third-person singular", 

1670 "then": "third-person singular", 

1671 }, 

1672 "eddi": { 

1673 "lang": "Sassarese", 

1674 "pos": "verb", 

1675 "if": "third-person plural", 

1676 "then": "third-person plural", 

1677 }, 

1678 "che éiu, chi eu": { 

1679 "lang": "Sassarese", 

1680 "pos": "verb", 

1681 "if": "first-person singular", 

1682 "then": "first-person singular", 

1683 }, 

1684 "chi eddu/edda": { 

1685 "lang": "Sassarese", 

1686 "pos": "verb", 

1687 "if": "third-person singular", 

1688 "then": "third-person singular", 

1689 }, 

1690 "chi noi": { 

1691 "lang": "Sassarese", 

1692 "pos": "verb", 

1693 "if": "first-person plural", 

1694 "then": "first-person plural", 

1695 }, 

1696 "chi voi": { 

1697 "lang": "Sassarese", 

1698 "pos": "verb", 

1699 "if": "second-person plural", 

1700 "then": "second-person plural", 

1701 }, 

1702 "chi eddi": { 

1703 "lang": "Sassarese", 

1704 "pos": "verb", 

1705 "if": "third-person plural", 

1706 "then": "third-person plural", 

1707 }, 

1708 "nuàutri": { 

1709 "lang": "Sicilian", 

1710 "pos": "verb", 

1711 "if": "first-person plural", 

1712 "then": "first-person plural", 

1713 }, 

1714 "vuàutri": { 

1715 "lang": "Sicilian", 

1716 "pos": "verb", 

1717 "if": "second-person plural", 

1718 "then": "second-person plural", 

1719 }, 

1720 "iddi": { 

1721 "lang": ["Gallurese", "Sicilian"], 

1722 "pos": "verb", 

1723 "if": "third-person plural", 

1724 "then": "third-person plural", 

1725 }, 

1726 "(che) mì": { 

1727 "lang": ["Lombard", "Western Lombard"], 

1728 "pos": "verb", 

1729 "if": "first-person singular", 

1730 "then": "first-person singular", 

1731 }, 

1732 "(che) tì te": { 

1733 "lang": ["Lombard", "Western Lombard"], 

1734 "pos": "verb", 

1735 "if": "second-person singular", 

1736 "then": "second-person singular", 

1737 }, 

1738 "(che) lù el / lee la": { 

1739 "lang": ["Lombard", "Western Lombard"], 

1740 "pos": "verb", 

1741 "if": "third-person singular", 

1742 "then": "third-person singular", 

1743 }, 

1744 "(che) nun": { 

1745 "lang": ["Lombard", "Western Lombard"], 

1746 "pos": "verb", 

1747 "if": "first-person plural", 

1748 "then": "first-person plural", 

1749 }, 

1750 "(che) violter / vialter": { 

1751 "lang": ["Lombard", "Western Lombard"], 

1752 "pos": "verb", 

1753 "if": "second-person plural", 

1754 "then": "second-person plural", 

1755 }, 

1756 "(che) lor": { 

1757 "lang": ["Lombard", "Western Lombard"], 

1758 "pos": "verb", 

1759 "if": "third-person plural", 

1760 "then": "third-person plural", 

1761 }, 

1762 "tì": { 

1763 "lang": ["Lombard", "Western Lombard"], 

1764 "pos": "verb", 

1765 "if": "second-person singular", 

1766 "then": "second-person singular", 

1767 }, 

1768 "lù / lee che el": { 

1769 "lang": ["Lombard", "Western Lombard"], 

1770 "pos": "verb", 

1771 "if": "third-person singular", 

1772 "then": "third-person singular", 

1773 }, 

1774 "lor che el": { 

1775 "lang": ["Lombard", "Western Lombard"], 

1776 "pos": "verb", 

1777 "if": "third-person plural", 

1778 "then": "third-person plural", 

1779 }, 

1780 "mé": { 

1781 "lang": ["Eastern Lombard", "Irish", "Lombard", "Old Irish"], 

1782 "pos": "verb", 

1783 "if": "first-person singular", 

1784 "then": "first-person singular", 

1785 }, 

1786 "té": { 

1787 "lang": ["Eastern Lombard", "Lombard"], 

1788 "pos": "verb", 

1789 "if": "second-person singular", 

1790 "then": "second-person singular", 

1791 }, 

1792 "lü / le": { 

1793 "lang": ["Eastern Lombard", "Lombard"], 

1794 "pos": "verb", 

1795 "if": "third-person singular", 

1796 "then": "third-person singular", 

1797 }, 

1798 "lü / lé": { 

1799 "lang": ["Eastern Lombard", "Lombard"], 

1800 "pos": "verb", 

1801 "if": "third-person singular", 

1802 "then": "third-person singular", 

1803 }, 

1804 "nóter": { 

1805 "lang": ["Eastern Lombard", "Lombard"], 

1806 "pos": "verb", 

1807 "if": "first-person plural", 

1808 "then": "first-person plural", 

1809 }, 

1810 "vóter": { 

1811 "lang": ["Eastern Lombard", "Lombard"], 

1812 "pos": "verb", 

1813 "if": "second-person plural", 

1814 "then": "second-person plural", 

1815 }, 

1816 "lur / lùre": { 

1817 "lang": ["Eastern Lombard", "Lombard"], 

1818 "pos": "verb", 

1819 "if": "third-person plural", 

1820 "then": "third-person plural", 

1821 }, 

1822 "lur / lúre": { 

1823 "lang": ["Eastern Lombard", "Lombard"], 

1824 "pos": "verb", 

1825 "if": "third-person plural", 

1826 "then": "third-person plural", 

1827 }, 

1828 "(che) mé": { 

1829 "lang": ["Eastern Lombard", "Lombard"], 

1830 "pos": "verb", 

1831 "if": "first-person singular", 

1832 "then": "first-person singular", 

1833 }, 

1834 "(che) té": { 

1835 "lang": ["Eastern Lombard", "Lombard"], 

1836 "pos": "verb", 

1837 "if": "second-person singular", 

1838 "then": "second-person singular", 

1839 }, 

1840 "(che) lü / le": { 

1841 "lang": ["Eastern Lombard", "Lombard"], 

1842 "pos": "verb", 

1843 "if": "third-person singular", 

1844 "then": "third-person singular", 

1845 }, 

1846 "(che) lü / lé": { 

1847 "lang": ["Eastern Lombard", "Lombard"], 

1848 "pos": "verb", 

1849 "if": "third-person singular", 

1850 "then": "third-person singular", 

1851 }, 

1852 "(che) nóter": { 

1853 "lang": ["Eastern Lombard", "Lombard"], 

1854 "pos": "verb", 

1855 "if": "first-person plural", 

1856 "then": "first-person plural", 

1857 }, 

1858 "(che) vóter": { 

1859 "lang": ["Eastern Lombard", "Lombard"], 

1860 "pos": "verb", 

1861 "if": "second-person plural", 

1862 "then": "second-person plural", 

1863 }, 

1864 "(che) lur / lùre": { 

1865 "lang": ["Eastern Lombard", "Lombard"], 

1866 "pos": "verb", 

1867 "if": "third-person plural", 

1868 "then": "third-person plural", 

1869 }, 

1870 "non-finite forms": { 

1871 "lang": "Latin", 

1872 "pos": "verb", 

1873 "then": "dummy-reset-headers", # Reset column inheritance 

1874 "else": "", 

1875 }, 

1876 "ben": { 

1877 "lang": "Turkish", 

1878 "pos": ["verb", "adj"], 

1879 "if": "first-person singular", 

1880 "then": "first-person singular", 

1881 }, 

1882 "sen": { 

1883 "lang": ["Crimean Tatar", "Turkish", "Turkmen"], 

1884 "pos": "verb", 

1885 # ~ "if": "second-person singular", 

1886 "then": "second-person singular", 

1887 }, 

1888 "o": { 

1889 "lang": [ 

1890 "Azerbaijani", 

1891 "Crimean Tatar", 

1892 "Fula", 

1893 "Igbo", 

1894 "Turkish", 

1895 "Welsh", 

1896 "Zazaki", 

1897 ], 

1898 "pos": "verb", 

1899 "if": "third-person singular", 

1900 "then": "third-person singular", 

1901 "else": { 

1902 "lang": "Kikuyu", 

1903 "pos": "verb", 

1904 "if": "third-person plural", 

1905 "then": "third-person plural", 

1906 "else": { 

1907 "lang": "Pnar", 

1908 "pos": "verb", 

1909 "if": "first-person singular", 

1910 "then": "first-person singular", 

1911 "else": { 

1912 "lang": "Yoruba", 

1913 "pos": "verb", 

1914 "if": "second-person third-person singular", 

1915 "then": "second-person third-person singular", 

1916 }, 

1917 }, 

1918 }, 

1919 }, 

1920 "biz": { 

1921 "lang": ["Azerbaijani", "Crimean Tatar", "Turkish", "Turkmen"], 

1922 "pos": "verb", 

1923 "if": "first-person plural", 

1924 "then": "first-person plural", 

1925 }, 

1926 "siz": { 

1927 "lang": ["Azerbaijani", "Crimean Tatar", "Turkish", "Turkmen"], 

1928 "pos": "verb", 

1929 "if": "second-person plural", 

1930 "then": "second-person plural", 

1931 }, 

1932 "onlar": { 

1933 "lang": ["Azerbaijani", "Turkish"], 

1934 "pos": "verb", 

1935 "if": "third-person plural", 

1936 "then": "third-person plural", 

1937 }, 

1938 "vossìa": {"lang": "Sicilian", "if": "third-person singular", "then": ""}, 

1939 "deo eo": {"lang": "Sardinian", "if": "first-person singular", "then": ""}, 

1940 "tue": {"lang": "Sardinian", "if": "second-person singular", "then": ""}, 

1941 "issu/issa/isse": { 

1942 "lang": "Sardinian", 

1943 "if": "third-person singular", 

1944 "then": "", 

1945 }, 

1946 "nois": {"lang": "Sardinian", "if": "first-person plural", "then": ""}, 

1947 "bois": {"lang": "Sardinian", "if": "second-person plural", "then": ""}, 

1948 "issos/issas": { 

1949 "lang": "Sardinian", 

1950 "if": "third-person plural", 

1951 "then": "", 

1952 }, 

1953 "chi deo chi eo": { 

1954 "lang": "Sardinian", 

1955 "if": "first-person singular", 

1956 "then": "", 

1957 }, 

1958 "chi tue": { 

1959 "lang": "Sardinian", 

1960 "if": "second-person singular", 

1961 "then": "", 

1962 }, 

1963 "chi issu/issa/isse": { 

1964 "lang": "Sardinian", 

1965 "if": "third-person singular", 

1966 "then": "", 

1967 }, 

1968 "chi nois": {"lang": "Sardinian", "if": "first-person plural", "then": ""}, 

1969 "chi bois": {"lang": "Sardinian", "if": "second-person plural", "then": ""}, 

1970 "chi issos/issas": { 

1971 "lang": "Sardinian", 

1972 "if": "third-person plural", 

1973 "then": "", 

1974 }, 

1975 "dego deo": { 

1976 "lang": "Sardinian", 

1977 "if": "first-person singular", 

1978 "then": "", 

1979 }, 

1980 "issu/issa": { 

1981 "lang": "Sardinian", 

1982 "if": "third-person singular", 

1983 "then": "", 

1984 }, 

1985 "chi dego chi deo": { 

1986 "lang": "Sardinian", 

1987 "if": "first-person singular", 

1988 "then": "", 

1989 }, 

1990 "chi issu/issa": { 

1991 "lang": "Sardinian", 

1992 "if": "third-person singular", 

1993 "then": "", 

1994 }, 

1995 "ieu": {"lang": "Occitan", "if": "first-person singular", "then": ""}, 

1996 "el": {"lang": "Occitan", "if": "third-person singular", "then": ""}, 

1997 "nosautres": {"lang": "Occitan", "if": "first-person plural", "then": ""}, 

1998 "vosautres": {"lang": "Occitan", "if": "second-person plural", "then": ""}, 

1999 "eles": {"lang": "Occitan", "if": "third-person plural", "then": ""}, 

2000 "que ieu": {"lang": "Occitan", "if": "first-person singular", "then": ""}, 

2001 "que el": {"lang": "Occitan", "if": "third-person singular", "then": ""}, 

2002 "que nosautres": { 

2003 "lang": "Occitan", 

2004 "if": "first-person plural", 

2005 "then": "", 

2006 }, 

2007 "que vosautres": { 

2008 "lang": "Occitan", 

2009 "if": "second-person plural", 

2010 "then": "", 

2011 }, 

2012 "que eles": {"lang": "Occitan", "if": "third-person plural", "then": ""}, 

2013 "аз": {"lang": "Bulgarian", "if": "first-person singular", "then": ""}, 

2014 "ти": { 

2015 "lang": ["Bulgarian", "Serbo-Croatian"], 

2016 "if": "second-person singular", 

2017 "then": "", 

2018 }, 

2019 "той/тя/то": { 

2020 "lang": "Bulgarian", 

2021 "if": "third-person singular", 

2022 "then": "", 

2023 }, 

2024 "ние": {"lang": "Bulgarian", "if": "first-person plural", "then": ""}, 

2025 "вие": {"lang": "Bulgarian", "if": "second-person plural", "then": ""}, 

2026 "те": {"lang": "Bulgarian", "if": "third-person plural", "then": ""}, 

2027 "viņš, viņa": { 

2028 "lang": "Latvian", 

2029 "if": "third-person singular", 

2030 "then": "", 

2031 }, 

2032 "viņi, viņas": {"lang": "Latvian", "if": "third-person plural", "then": ""}, 

2033 "el / ela / Vde.": { 

2034 "lang": "Galician", 

2035 # ~ "if": "singular third-person", 

2036 "then": "third-person singular", 

2037 }, 

2038 "vós": { 

2039 "lang": "Galician", 

2040 # ~ "if": "plural second-person", 

2041 "then": "second-person plural", 

2042 }, 

2043 "eles / elas / Vdes.": { 

2044 "lang": "Galician", 

2045 # ~ "if": "plural third-person", 

2046 "then": "third-person plural", 

2047 }, 

2048 "Vde.": { 

2049 "lang": "Galician", 

2050 # ~ "if": "singular third-person", 

2051 "then": "third-person singular formal", 

2052 }, 

2053 "Vdes.": { 

2054 "lang": "Galician", 

2055 # ~ "if": "plural third-person", 

2056 "then": "third-person plural formal", 

2057 }, 

2058 "ⲛ̄ⲧⲟⲕ": { 

2059 "lang": "Coptic", 

2060 "if": "second-person singular masculine", 

2061 "then": "", 

2062 }, 

2063 "ⲛ̄ⲧⲟ": { 

2064 "lang": "Coptic", 

2065 "if": "second-person singular feminine", 

2066 "then": "", 

2067 }, 

2068 "ⲛ̄ⲧⲟϥ": { 

2069 "lang": "Coptic", 

2070 "if": "third-person singular masculine", 

2071 "then": "", 

2072 }, 

2073 "ⲛ̄ⲧⲟⲥ": { 

2074 "lang": "Coptic", 

2075 "if": "third-person singular feminine", 

2076 "then": "", 

2077 }, 

2078 "ⲛ̄ⲧⲱⲧⲛ̄": {"lang": "Coptic", "if": "second-person plural", "then": ""}, 

2079 "ⲛ̄ⲧⲟⲟⲩ": {"lang": "Coptic", "if": "third-person plural", "then": ""}, 

2080 "ⲛ̀ⲑⲟⲕ": { 

2081 "lang": "Coptic", 

2082 "if": "second-person singular masculine", 

2083 "then": "", 

2084 }, 

2085 "ⲛ̀ⲑⲟ": { 

2086 "lang": "Coptic", 

2087 "if": "second-person singular feminine", 

2088 "then": "", 

2089 }, 

2090 "ⲛ̀ⲑⲟϥ": { 

2091 "lang": "Coptic", 

2092 "if": "third-person singular masculine", 

2093 "then": "", 

2094 }, 

2095 "ⲛ̀ⲑⲟⲥ": { 

2096 "lang": "Coptic", 

2097 "if": "third-person singular feminine", 

2098 "then": "", 

2099 }, 

2100 "ⲛ̀ⲑⲱⲧⲉⲛ": {"lang": "Coptic", "if": "second-person plural", "then": ""}, 

2101 "ⲛ̀ⲑⲱⲟⲩ": {"lang": "Coptic", "if": "third-person plural", "then": ""}, 

2102 "ñuqa": {"lang": "Quechua", "if": "first-person singular", "then": ""}, 

2103 "qam": {"lang": "Quechua", "if": "second-person singular", "then": ""}, 

2104 "pay": {"lang": "Quechua", "if": "third-person singular", "then": ""}, 

2105 "ñuqanchik": { 

2106 "lang": "Quechua", 

2107 "if": "first-person plural inclusive", 

2108 "then": "", 

2109 }, 

2110 "ñuqayku": { 

2111 "lang": "Quechua", 

2112 "if": "first-person plural exclusive", 

2113 "then": "", 

2114 }, 

2115 "qamkuna": {"lang": "Quechua", "if": "second-person plural", "then": ""}, 

2116 "paykuna": {"lang": "Quechua", "if": "third-person plural", "then": ""}, 

2117 "unë": { 

2118 "lang": "Albanian", 

2119 "then": "first-person singular", 

2120 }, 

2121 "ai/ajo": { 

2122 "lang": "Albanian", 

2123 "then": "third-person singular", 

2124 }, 

2125 "ne": { 

2126 "lang": "Albanian", 

2127 "then": "first-person plural", 

2128 "else": { 

2129 "lang": "Livonian", 

2130 "then": "third-person plural", 

2131 }, 

2132 }, 

2133 "ju": { 

2134 "lang": "Albanian", 

2135 "then": "second-person plural", 

2136 }, 

2137 "ata/ato": { 

2138 "lang": "Albanian", 

2139 "then": "third-person plural", 

2140 }, 

2141 "մենք": {"lang": "Armenian", "if": "first-person plural", "then": ""}, 

2142 "նրանք": {"lang": "Armenian", "if": "third-person plural", "then": ""}, 

2143 "անոնք": {"lang": "Armenian", "if": "third-person plural", "then": ""}, 

2144 "verbal nouns": "noun-from-verb", 

2145 "supine": "supine", 

2146 "past historic": "past historic", 

2147 "passato remoto": "past historic", 

2148 "future perfect": "future perfect", 

2149 "impersonal": "impersonal", 

2150 "verbal noun": "noun-from-verb", 

2151 "auxiliary verb": "auxiliary", 

2152 "active adjectival participle": "active adjectival participle", 

2153 "contemporary adverbial participle": "contemporary adjectival participle", 

2154 "passive adjectival participle": "passive adjectival participle", 

2155 "Instrumental": "instrumental", 

2156 "exessive": "exessive", 

2157 "indef.": "indefinite", # XXX see -heit, may need special handling 

2158 "def.": "definite", 

2159 "noun": "noun", # XXX see ['-heit', '-schaft', '-tum'] 

2160 "absolutive": "absolutive", 

2161 "definite accusative": "definite accusative", 

2162 "definite genitive": "definite genitive", 

2163 "possessive": "possessive", 

2164 "Possessive": "possessive", 

2165 "2nd person formal": "second-person formal", 

2166 "3rd person masculine": "third-person masculine", 

2167 "3rd person feminine": "third-person feminine", 

2168 "3rd person neuter": "third-person neuter", 

2169 "mənim (“my”)": "first-person singular possessive", 

2170 "sənin (“your”)": "second-person singular possessive", 

2171 "onun (“his/her/its”)": "third-person singular possessive", 

2172 "bizim (“our”)": "first-person plural possessive", 

2173 "sizin (“your”)": "second-person plural possessive", 

2174 "onların (“their”)": "third-person plural possessive", 

2175 "mən (“I am”)": "first-person predicative", 

2176 "sən (“you are”)": "second-person predicative", 

2177 "o (“he/she is”)": "third-person predicative", 

2178 "predicative": "predicative", 

2179 "subjective": "subjective", 

2180 "preterite": "preterite", 

2181 "strong/subject": "strong subjective", 

2182 "weak (direct object)": "weak objective direct-object", 

2183 "weak (indirect object)": "weak objective indirect-object", 

2184 "proclitic": "proclitic", 

2185 "Proclitic": "proclitic", 

2186 "enclitic": "enclitic", 

2187 "Enclitic": "enclitic", 

2188 "1st person majestic": "first-person majestic formal", 

2189 "2nd person very formal": "second-person formal", 

2190 "3rd person reflexive": "third-person reflexive", 

2191 "ablative/genitive": "ablative genitive", 

2192 "Masculine / Feminine": "masculine feminine", 

2193 "Imperative": "imperative", 

2194 "imperfect (ra)": "imperfect", 

2195 "imperfect (se)": "imperfect imperfect-se", 

2196 "affirmative": { 

2197 "if": "imperative", 

2198 "then": "positive", 

2199 "else": "affirmative", 

2200 }, 

2201 "Affirmative": { 

2202 "if": "imperative", 

2203 "then": "positive", 

2204 "else": "affirmative", 

2205 }, 

2206 "Affirmative (+)": { 

2207 "if": "imperative", 

2208 "then": "positive", 

2209 "else": "affirmative", 

2210 }, 

2211 "participle": "participle", 

2212 "Bare forms (no plural for this noun):": "no-plural", 

2213 "old dative": "dative archaic", # XXX archaic or dated? 

2214 "Bare forms (no plural of this noun)": "no-plural", 

2215 "Conditional": "conditional", 

2216 "Inflection": "", 

2217 "Definite accusative": "definite accusative", 

2218 "present perfect": "present perfect", 

2219 "optative": "optative", 

2220 "positive degree": "positive", 

2221 "comparative degree": "comparative", 

2222 "superlative degree": "superlative", 

2223 "prolative": "prolative", 

2224 "comparative": { 

2225 "lang": [ 

2226 "Chechen", 

2227 "Mari", 

2228 "Nivkh", 

2229 ], 

2230 "pos": "noun", 

2231 "then": "comparative-case", 

2232 "else": "comparative", 

2233 }, 

2234 "causative": "causative", 

2235 "Indicative": "indicative", 

2236 "Class": "", 

2237 "11": "class-11", 

2238 "14": "class-14", 

2239 "15": "class-15", 

2240 "–": { 

2241 "lang": "Nepalese", 

2242 "then": "negative", 

2243 "else": "dummy-ignore-skipped", 

2244 }, 

2245 "m": "masculine", 

2246 "f": "feminine", 

2247 "compound": "multiword-construction", 

2248 "reflexive": "reflexive", 

2249 "Reflexive": "reflexive", 

2250 "unstr.": "unstressed", 

2251 "First-person singular": "first-person singular", 

2252 "Second-person singular": "second-person singular", 

2253 "Third-person singular": "third-person singular", 

2254 "First-person plural": "first-person plural", 

2255 "Second-person plural": "second-person plural", 

2256 "Third-person plural": "third-person plural", 

2257 "First-person (eu)": "first-person singular", 

2258 "Second-person (tu)": "second-person singular", 

2259 "Third-person (ele / ela / você)": "third-person singular", 

2260 "First-person (nós)": "first-person plural", 

2261 "Second-person (vós)": "second-person plural", 

2262 "Third-person (eles / elas / vocês)": "third-person plural", 

2263 "Impersonal": "impersonal", 

2264 "Personal": "personal", 

2265 "Gerund": "gerund", 

2266 "Preterite": "preterite", 

2267 "Pluperfect": "pluperfect", 

2268 "Negative (-)": "negative", 

2269 "Negative (não)": "negative", 

2270 "definite (subject form)": "definite subjective", 

2271 "definite (object form)": "definite objective", 

2272 "extended (vocative form)": "extended vocative", 

2273 "number": "", 

2274 "dual": "dual", 

2275 "middle/ passive": "middle passive", 

2276 "Active": "active", 

2277 "Passive": "passive", 

2278 "first person": "first-person", 

2279 "second person": "second-person", 

2280 "third person": "third-person", 

2281 "first person singular": "first-person singular", 

2282 "second person singular": "second-person singular", 

2283 "third person singular": "third-person singular", 

2284 "1ˢᵗ person": "first-person", 

2285 "2ⁿᵈ person": "second-person", 

2286 "3ʳᵈ person": "third-person", 

2287 "middle/passive": "middle passive", 

2288 "present participle or gerund": "present participle gerund", 

2289 "(simple tenses)": "", 

2290 "(compound tenses)": "multiword-construction", 

2291 "past anterior": "past anterior", 

2292 "conditional perfect": "conditional perfect", 

2293 "middle": "middle", 

2294 "Indefinite": "indefinite", 

2295 "Definite": "definite", 

2296 "1st-person singular": "first-person singular", 

2297 "2nd-person singular": "second-person singular", 

2298 "3rd-person singular": "third-person singular", 

2299 "1st-person plural": "first-person plural", 

2300 "2nd-person plural": "second-person plural", 

2301 "3rd-person plural": "third-person plural", 

2302 "derivations": "", 

2303 "subject": "subjective", 

2304 "object": "objective", 

2305 "full": "stressed", 

2306 "pred.": "predicative", 

2307 "2nd person archaic or regiolectal": "second-person archaic dialectal", 

2308 "m-s1": "", # Icelandic ['-lingur', '-hlaðningur'] 

2309 r"Tense \ Voice": "", 

2310 "Strong declension": "strong", 

2311 "gender": "", 

2312 "Weak declension": "weak", 

2313 "Bare forms (no plural form of this noun)": "indefinite no-plural", 

2314 "Positive declarative": "", 

2315 "imperfective participle": "imperfective participle", 

2316 "personal": "personal", 

2317 "future participle": "future participle", 

2318 "personal participle": "personal participle", 

2319 "way of doing": "adverbial", 

2320 "aorist": "aorist", 

2321 "imperfective": "imperfective", 

2322 "perfective": "perfective", 

2323 "inferential": "inferential", 

2324 "progressive": "progressive", 

2325 "necessitative": "necessitative", 

2326 "Positive interrogative": "interrogative", 

2327 "Negative declarative": "negative", 

2328 "Negative interrogative": "negative interrogative", 

2329 "m6": "", # Faroese ['-gustur', '-lingur'] 

2330 "indefinite forms, (trajta të pashquara)": "indefinite", 

2331 "definite forms, (trajta të shquara)": "definite", 

2332 "singular (numri njëjës)": "singular", 

2333 "plural (numri shumës)": "plural", 

2334 "nominative (emërore)": "nominative", 

2335 "accusative (kallëzore)": "accusative", 

2336 "genitive (gjinore), (i/e/të/së)": "genitive", 

2337 "dative (dhanore)": "dative", 

2338 "ablative (rrjedhore)": "ablative", 

2339 "notes": "", 

2340 "m-w1": "", # Icelandic ['-isti', '-ismi'] 

2341 "masculine animate": "masculine animate", 

2342 "Masculine singular": "masculine singular", 

2343 "Neuter singular": "neuter singular", 

2344 "n-s": "", # Icelandic ['-leysi'] 

2345 "singular (vienskaitlis)": "singular", 

2346 "nominative (nominatīvs)": "nominative", 

2347 "accusative (akuzatīvs)": "accusative", 

2348 "genitive (ģenitīvs)": "genitive", 

2349 "dative (datīvs)": "dative", 

2350 "instrumental (instrumentālis)": "instrumental", 

2351 "locative (lokatīvs)": "locative", 

2352 "vocative (vokatīvs)": "vocative", 

2353 "past perfect": "past perfect", 

2354 "plural only": "plural-only", 

2355 "m pers": "masculine personal", 

2356 "other": "", 

2357 "f-w1": "", # Icelandic ['-ína'] 

2358 "Supine": "supine", 

2359 "Imper. plural": "imperative plural", 

2360 "imper. plural": "imperative plural", 

2361 "Ind. plural": "indicative plural", 

2362 "ind. plural": "indicative plural", 

2363 "-skur a24": "", # Faroese ['-skur'] 

2364 "Singular (eintal)": "singular", 

2365 "Nominative (hvørfall)": "nominative", 

2366 "Accusative (hvønnfall)": "accusative", 

2367 "Dative (hvørjumfall)": "dative", 

2368 "Genitive (hvørsfall)": "genitive", 

2369 "Plural (fleirtal)": "plural", 

2370 "Original form": "", # XXX Latin ['-bo'] 

2371 "Derived form": "", # XXX Latin ['-bo'] 

2372 "Present active indicative (third conjugation)": "present active indicative conjugation-3", 

2373 "Present active subjunctive": "present active subjunctive", 

2374 "Present passive indicative": "present passive indicative", 

2375 "Present passive subjunctive": "present passive subjunctive", 

2376 "f1": "", # Faroese ['-isma'] 

2377 "anterior adverbial participle": "anterior adverbial participle", 

2378 "Plural only": "plural-only", 

2379 "m1": "", # Faroese ['-ari'] 

2380 "f2": "", # Faroese ['-d'] 

2381 "m. plural": "masculine plural", 

2382 "n./f. plural": "neuter feminine plural", 

2383 "1ˢᵗ person inclusive": "first-person inclusive", 

2384 "1ˢᵗ person exclusive": "first-person exclusive", 

2385 "hortative": "hortative", 

2386 "reciprocal": "reciprocal", 

2387 "Reciprocal": "reciprocal", 

2388 "Preesens": "present", 

2389 "coactive": "coactive", 

2390 "objective": "objective", 

2391 "subsuntive": "subsuntive", 

2392 "relative": "relative", 

2393 "autonomous": "autonomous", 

2394 "past habitual": "past habitual", 

2395 "Habituals": "habitual", 

2396 "n gender": "neuter", 

2397 "Feminine singular": "feminine singular", 

2398 "Root word": "root", 

2399 "Aspect": "", 

2400 "Complete": "completive", 

2401 "Progressive": "progressive", 

2402 "Contemplative": "contemplative", 

2403 "Masculine o-stem": "masculine stem", 

2404 "ergative": "ergative", 

2405 "Ergative": "ergative", 

2406 "prosecutive": "prosecutive", 

2407 "equative": "equative", 

2408 "Verbal forms": "", 

2409 "Conditional I": "conditional conditional-i", 

2410 "conditional I": "conditional conditional-i", 

2411 "Conditional II": "conditional conditional-ii", 

2412 "conditional II": "conditional conditional-ii", 

2413 "Active past participle": "active past participle", 

2414 "Objective": "objective", 

2415 "Objective Genitive": "objective genitive", 

2416 "often only in the singular": "often singular-only", 

2417 "Common singular": "common-gender singular", 

2418 "common(noun)": "common-gender", 

2419 "neuter(noun)": "neuter", 

2420 "masculine (person)": "masculine person", 

2421 "feminine (person)": "feminine person", 

2422 "Masculine plural": "masculine plural", 

2423 "modern": "", 

2424 "archaic / formal": "archaic formal", 

2425 "All": "", 

2426 "str.": "stressed", 

2427 "1st person singular": "first-person singular", 

2428 "2nd person singular (informal)": "second-person singular informal", 

2429 "2nd person singular (familiar)": "second-person singular familiar", 

2430 "2nd person singular (polite)": "second-person singular polite", 

2431 "2nd person singular (formal)": "second-person singular formal", 

2432 "3rd person singular": "third-person singular", 

2433 "3rd person singular (m.)": "third-person singular masculine", 

2434 "3rd person singular (f.)": "third-person singular feminine", 

2435 "3rd person singular (n.)": "third-person singular neuter", 

2436 "Present verbal adverb": "present adverbial", 

2437 "Past verbal adverb": "past adverbial", 

2438 "disused": "", 

2439 "all genders": "", 

2440 "number & gender": "", 

2441 "strong declension (without article)": "strong without-article", 

2442 "weak declension (with definite article)": "weak definite includes-article", 

2443 "mixed declension (with indefinite article)": "mixed indefinite includes-article", 

2444 "inanimate animate": "animate inanimate", 

2445 "Informal": "informal", 

2446 "modern / informal": "informal", 

2447 "i": { 

2448 "lang": [ 

2449 "German", 

2450 "Cimbrian", 

2451 ], 

2452 "then": "subjunctive subjunctive-i", 

2453 "else": { 

2454 "if": "subjunctive", 

2455 "then": "subjunctive-i", 

2456 "else": { 

2457 "lang": ["Tagalog", "Assamese"], 

2458 "then": "", 

2459 }, 

2460 }, 

2461 }, 

2462 "ii": { 

2463 "lang": [ 

2464 "German", 

2465 "Cimbrian", 

2466 ], 

2467 "then": "subjunctive subjunctive-ii", 

2468 "else": { 

2469 "if": "subjunctive", 

2470 "then": "subjunctive-ii", 

2471 }, 

2472 }, 

2473 "definite forms": "definite", 

2474 "1ˢᵗ person possessive forms (my)": "possessive first-person", 

2475 "2ⁿᵈ person possessive forms (your)": "possessive second-person", 

2476 "oblique": "oblique", 

2477 "direct": "direct", 

2478 "Construct": "construct", 

2479 "Negative": "negative", 

2480 "auxiliary": "auxiliary", 

2481 "Conjunctive": "conjunctive", 

2482 "Perfective": "perfective", 

2483 "Stem forms": "stem", 

2484 "Continuative": "continuative", 

2485 'Mizenkei ("imperfective")': "imperfective", 

2486 'Ren’yōkei ("continuative")': "continuative", 

2487 'Shūshikei ("terminal")': "terminative", 

2488 'Rentaikei ("attributive")': "attributive", 

2489 'Kateikei ("hypothetical")': "hypothetical", 

2490 'Meireikei ("imperative")': "imperative", 

2491 "Continuative (連用形)": "continuative", 

2492 "Terminal (終止形)": "terminative", 

2493 "Attributive (連体形)": "attributive", 

2494 "Imperative (命令形)": "imperative", 

2495 "Imperfective (未然形)": "imperfective", 

2496 "Hypothetical (仮定形)": "hypothetical", 

2497 "Terminal": "terminative", 

2498 "Attributive": "attributive", 

2499 "Volitional": "volitional", 

2500 "Imperfective": "imperfective", 

2501 "Hypothetical": "hypothetical", 

2502 "Negative continuative": "negative continuative", 

2503 "Formal": "formal", 

2504 "Hypothetical conditional": "hypothetical conditional", 

2505 "1st singular": "first-person singular", 

2506 "2nd singular": "second-person singular", 

2507 "3rd singular": "third-person singular", 

2508 "1st plural": "first-person plural", 

2509 "2nd plural": "second-person plural", 

2510 "3rd plural": "third-person plural", 

2511 "benefactive": "benefactive", 

2512 "future in the past": "past-future", 

2513 "Passive past participle": "passive past participle", 

2514 "associative": "associative", 

2515 "distributive": "distributive", 

2516 "exclusive": "exclusive", 

2517 "future i": "future future-i", 

2518 "subjunctive i": "subjunctive subjunctive-i", 

2519 "subjunctive ii": "subjunctive subjunctive-ii", 

2520 "future ii": "future future-ii", 

2521 "л-participles": "participle", 

2522 "verbal adjective m.sg.": "masculine singular adjectival", 

2523 "verbal adverb": "adverbial", 

2524 "Compound tenses": "multiword-construction", 

2525 "има-perfect": "има perfect", 

2526 "има-pluperfect": "има pluperfect", 

2527 "има-perfect reported": "има perfect reported", 

2528 "има-future": "има future", 

2529 "има-future in the past": "има future past", 

2530 "future reported": "future reported", 

2531 "има-future reported": "има future reported", 

2532 "има-conditional": "има conditional", 

2533 "uninflected": "uninflected", 

2534 "inflected": "inflected", 

2535 # XXX pending removal; the participle marking is in sense 

2536 # "predicative/adverbial": { 

2537 # "lang": "Dutch", 

2538 # "pos": "verb", 

2539 # "then": ["participle predicative", "participle adverbial"], 

2540 # "else": "predicative adverbial", 

2541 # }, 

2542 "predicative/adverbial": "predicative adverbial", 

2543 "m./f. sing.": "masculine feminine singular", 

2544 "n. sing.": "neuter singular", 

2545 "masculine (vīriešu dzimte)": "masculine", 

2546 "feminine (sieviešu dzimte)": "feminine", 

2547 "plural (daudzskaitlis)": "plural", 

2548 "archaic plural": "archaic plural", 

2549 "Non-past": "non-past", 

2550 "Interrogative": "interrogative", 

2551 "Assertive": "assertive", 

2552 "Cause/Reason": "causative", 

2553 "Contrast": "contrastive", 

2554 "Conjunction": "conjunctive", 

2555 "Condition": "conditional", 

2556 "Verbal nouns": "noun-from-verb", 

2557 "Past-tense verbal nouns": "past noun-from-verb", 

2558 "Determiners": "determiner", 

2559 "simple perfect": "perfect", 

2560 "Notes": { 

2561 "lang": "Assamese", 

2562 "then": "dummy-remove-this-cell", 

2563 "else": "dummy-skip-this", 

2564 }, 

2565 # ~ "Notes": "dummy-ignore-skipped", 

2566 "postpositions taking a dative case": "postpositional with-dative", 

2567 "postpositions taking a genitive case": "postpositional with-genitive", 

2568 "postpositions taking an instrumental case": "postpositional with-instrumental", 

2569 "postpositions taking an adverbial case": "postpositional with-adverb", 

2570 "Motive": "motive-form", 

2571 "zu-infinitive": "infinitive infinitive-zu", 

2572 "active participle": "active participle", 

2573 "active voice": "active", 

2574 "Active voice ➤ — Imperfective aspect": "active imperfective", 

2575 "Active voice ➤ — Imperfective aspect ➤": "active imperfective", 

2576 "Active voice ➤": "active", 

2577 "Passive voice ➤": "passive", 

2578 "Active voice": "active", 

2579 "Passive voice": "passive", 

2580 "Imperfective aspect ➤": "imperfective", 

2581 "Perfective aspect ➤": "perfective", 

2582 "Imperfective aspect": "imperfective", 

2583 "Perfective aspect": "perfective", 

2584 "Perfect aspect ➤": "perfective", 

2585 "Perfect aspect": "perfective", 

2586 "Present perfect ➤": { 

2587 "lang": "Greek", 

2588 "then": "dummy-skip-this", # e.g περπατάω/Greek 

2589 }, 

2590 "Past perfect ➤": { 

2591 "lang": "Greek", 

2592 "then": "dummy-skip-this", # e.g περπατάω/Greek 

2593 }, 

2594 "Future perfect ➤": { 

2595 "lang": "Greek", 

2596 "then": "dummy-skip-this", # e.g περπατάω/Greek 

2597 }, 

2598 "Indicative mood ➤": "indicative", 

2599 "Past tenses ➤": { 

2600 "lang": "Greek", 

2601 "then": "", # tense column follows 

2602 }, 

2603 "Non-past tenses ➤": "", 

2604 "Dependent ➤": "dependent", 

2605 "Dependent": "dependent", 

2606 "dependent": "dependent", # immee/Manx 

2607 "Present participle➤": "present participle", 

2608 "Perfect participle➤": "past participle", 

2609 "Nonfinite form➤": { 

2610 "lang": "Greek", 

2611 "then": "infinitive-aorist", 

2612 }, 

2613 "Subjunctive mood ➤": { 

2614 "lang": "Greek", 

2615 "then": { 

2616 "inflection-template": "el-conjug-1st", 

2617 "then": "dummy-skip-this", 

2618 "else": "subjunctive dummy-tense", 

2619 }, 

2620 "else": "subjunctive", 

2621 }, 

2622 "Imperative mood ➤": { 

2623 "lang": "Greek", 

2624 "then": "imperative dummy-tense", 

2625 "else": "imperative", 

2626 }, 

2627 "Imperative mood": { 

2628 "lang": "Greek", 

2629 "then": "imperative dummy-tense", 

2630 "else": "imperative", 

2631 }, 

2632 "Subjunctive mood": { 

2633 "lang": "Greek", 

2634 "then": "subjunctive dummy-tense", 

2635 "else": "subjunctive", 

2636 }, 

2637 "Present ➤": "present", 

2638 "Imperfect ➤": "imperfect", 

2639 "Simple past ➤": "past", 

2640 "Future ➤": "future", 

2641 "Future tenses ➤": "future", 

2642 "Continuous ➤": "progressive", 

2643 "Simple ➤": "", 

2644 "Present participle ➤": "present participle", 

2645 "Simple past": "past", 

2646 "Habitual": "habitual", 

2647 "passive participle": "passive participle", 

2648 "passive voice": "passive", 

2649 "singular (жекеше)": "singular", 

2650 "plural (көпше)": "plural", 

2651 "nominative (атау септік)": "nominative", 

2652 "genitive (ілік септік)": "genitive", 

2653 "dative (барыс септік)": "dative", 

2654 "accusative (табыс септік)": "accusative", 

2655 "locative (жатыс септік)": "locative", 

2656 "ablative (шығыс септік)": "ablative", 

2657 "instrumental (көмектес септік)": "instrumental", 

2658 "compound tenses": "multiword-construction", 

2659 "Sentence-final forms": "sentence-final", 

2660 "Connective forms": "connective", 

2661 "Noun and determiner forms": "", 

2662 "Verbal Noun": "noun-from-verb", 

2663 "count form": "count-form", 

2664 "infinitive (nafnháttur)": "infinitive", 

2665 "supine (sagnbót)": "supine", 

2666 "present participle (lýsingarháttur nútíðar)": "present participle", 

2667 "indicative (framsöguháttur)": "indicative", 

2668 "subjunctive (viðtengingarháttur)": "subjunctive", 

2669 "present (nútíð)": "present", 

2670 "past (þátíð)": "past", 

2671 "imperative (boðháttur)": "past", 

2672 "Forms with appended personal pronoun": "pronoun-included", 

2673 "Sentence-final forms with honorific": "sentence-final honorific", 

2674 "Connective forms with honorific": "connective honorific", 

2675 "Noun and determiner forms with honorific": "honorific", 

2676 "Hortative": "hortative", 

2677 "singular (uncountable)": "singular uncountable", 

2678 "absolute": "absolute", 

2679 "Positive absolute": "positive absolute", 

2680 "Negative absolute": "negative absolute", 

2681 "singular (singulare tantum)": "singular singular-only", 

2682 "Nom. sg.": "nominative singular", 

2683 "Gen. sg.": "genitive singular", 

2684 "nom. sing.": "nominative singular", 

2685 "gen. sing.": "genitive singular", 

2686 "Non-finite forms": "dummy-mood", 

2687 "1st singular я": "first-person singular", 

2688 "second-person": "second-person", 

2689 "4th person": "fourth-person", 

2690 "invertive": "invertive", 

2691 "Simple finite forms": "finite-form", 

2692 "Positive form": "positive", 

2693 "Complex finite forms": "dummy-reset-headers", # Reset 

2694 "2nd singular ти": "second-person singular", 

2695 "3rd singular він / вона / воно": "third-person singular", 

2696 "1st plural ми": "first-person plural", 

2697 "2nd plural ви": "second-person plural", 

2698 "3rd plural вони": "third-person plural", 

2699 "first-person": "first-person", 

2700 "plural ми / ви / вони": "plural", 

2701 "masculine я / ти / він": "masculine", 

2702 "feminine я / ти / вона": "feminine", 

2703 "neuter воно": "neuter", 

2704 "vocative form": "vocative", 

2705 "Uncountable": "uncountable", 

2706 "definite unspecified": "definite unspecified", 

2707 "definite proximal": "definite proximal", 

2708 "definite distal": "definite distal", 

2709 "informal": "informal", 

2710 "f gender": "feminine", 

2711 "simple tenses": "", 

2712 "present indicative": "present indicative", 

2713 "ñuqap (my)": "first-person singular", 

2714 "qampa (your)": "second-person singular", 

2715 "paypa (his/her/its)": "third-person singular", 

2716 "ñuqanchikpa (our(incl))": "first-person plural inclusive", 

2717 "ñuqaykup (our(excl))": "first-person plural exclusive", 

2718 "qamkunap (your(pl))": "second-person plural", 

2719 "paykunap (their)": "third-person plural", 

2720 "tense": "", 

2721 "m.": "masculine", 

2722 "f.": "feminine", 

2723 "Stem": "stem", 

2724 "aorist stem": {"lang": "Armenian", "then": "aorist stem", "else": "stem"}, 

2725 "pos.": "positive", 

2726 "neg.": "negative", 

2727 "future perfect in the past": "future perfect past", 

2728 "renarrative": "renarrative", 

2729 "present and imperfect": ["present", "imperfect"], 

2730 "future and future in the past": ["future", "future past"], 

2731 "present and past perfect": ["present", "past perfect"], 

2732 "future perfect and future perfect in the past": [ 

2733 "future perfect", 

2734 "future past perfect", 

2735 ], 

2736 "dubitative": "dubitative", 

2737 "conclusive": "conclusive", 

2738 "f-s2": "", # Icelandic ['bölvun', 'létteind', 'dvöl'] 

2739 "Indicative mood": "indicative", 

2740 "2,3 sg, 1,2,3 pl": { 

2741 "lang": "Greek", 

2742 "then": "dummy-skip-this", # used in περπατάω/Greek 

2743 }, 

2744 "Present perfect": "present perfect", 

2745 "Past perfect": "past perfect", 

2746 "Future perfect": "future perfect", 

2747 "Inflected colloquial forms": "colloquial", 

2748 "adjective active participle": "adjective active participle", 

2749 "adverbial active participle": "adverbial active participle", 

2750 "nominal active participle": "noun-from-verb active participle", 

2751 "plural unknown": "plural unknown", 

2752 "Contrafactual": "counterfactual", 

2753 "finite forms": "finite-form", 

2754 "Indefinite forms": "indefinite", 

2755 "Definite forms": "definite", 

2756 "numeral": "numeral", 

2757 "non-numeral (plural)": "non-numeral plural", 

2758 "Strong (indefinite) inflection": "strong indefinite", 

2759 "Weak (definite) inflection": "weak definite", 

2760 "directive": "directive", 

2761 "destinative": "destinative", 

2762 "Regular": "", 

2763 "PERFECTIVE": "perfective", 

2764 "Present passive": "present passive", 

2765 "1st dual": "first-person dual", 

2766 "2nd dual": "second-person dual", 

2767 "Undeclined": "", 

2768 "Oblique Infinitive": "oblique infinitive", 

2769 "Prospective Agentive": "prospective agentive", 

2770 "prospective": "prospective", 

2771 "non-prospective": "non-prospective", 

2772 "Adjectival": "adjectival", 

2773 "մեք": "first-person plural", 

2774 "նոքա": "third-person plural", 

2775 "imperatives": "imperative", 

2776 "cohortative": "cohortative", 

2777 "prohibitive": "prohibitive", 

2778 "A-stem": "", 

2779 "continuous": "continuative", 

2780 "f-s1": "", # Icelandic ['blæðing', 'Sigríður', 'líkamsræktarstöð'] 

2781 "+": "positive", 

2782 "Unknown": "unknown", 

2783 "Simple": "", 

2784 "simple": { 

2785 "lang": ["English"], 

2786 "then": "dummy-mood", 

2787 "else": "", 

2788 }, 

2789 "formal": "formal", 

2790 "INDICATIVE (īstenības izteiksme)": "indicative", 

2791 "IMPERATIVE (pavēles izteiksme)": "imperative", 

2792 "Present (tagadne)": "present", 

2793 "Past (pagātne)": "past", 

2794 "Future (nākotne)": "future", 

2795 "1st pers. sg.": "first-person singular", 

2796 "2nd pers. sg.": "second-person singular", 

2797 "3rd pers. sg.": "third-person singular", 

2798 "1st pers. pl.": "first-person plural", 

2799 "2nd pers. pl.": "second-person plural", 

2800 "3rd pers. pl.": "third-person plural", 

2801 "RENARRATIVE (atstāstījuma izteiksme)": "renarrative", 

2802 "Present Active 1 (Adj.)": "participle participle-1 present active adjectival", 

2803 "Present Active 2 (Adv.)": "participle participle-2 present active adverbial", 

2804 "Present Active 3 (Adv.)": "participle participle-3 present active adverbial", 

2805 "Present Active 4 (Obj.)": "participle participle-4 present active", 

2806 "CONDITIONAL (vēlējuma izteiksme)": "conditional", 

2807 "Past Active": { 

2808 "if": "participle", 

2809 "then": "participle past active", # saprast/Latvian/Verb 

2810 "else": "past active", 

2811 }, 

2812 "Present Passive": { 

2813 "if": "participle", 

2814 "then": "participle present passive", # saprast/Latvian/Verb 

2815 "else": "present passive", 

2816 }, 

2817 "Past Passive": { 

2818 "if": "participle", 

2819 "then": "participle past passive", 

2820 "else": "past passive", 

2821 }, 

2822 "DEBITIVE (vajadzības izteiksme)": "debitive", 

2823 "NOMINAL FORMS": "dummy-mood", 

2824 "Infinitive (nenoteiksme)": "infinitive", 

2825 "Conjunctive 1": "conjunctive conjunctive-1", 

2826 "Conjunctive 2": "conjunctive conjunctive-2", 

2827 "Nonfinite form": "dummy-mood", 

2828 "Perfect participle": "perfect participle", 

2829 "perfect progressive": "perfect progressive", 

2830 "Recently Completive": "completive past past-recent", 

2831 "subject non-past participle": "subjective non-past participle", 

2832 "subject past participle": "subjective past participle", 

2833 "subject future definite participle": "subjective future definite participle", 

2834 "non-subject participle": "non-subject participle", 

2835 "general temporal participle": "general temporal participle", 

2836 "participle of intensification": "intensifier participle", 

2837 "specific temporal participle": "specific temporal participle", 

2838 "modal participle": "modal participle", 

2839 "perfect 1": "perfect perfect-i", 

2840 "perfect 2": "perfect perfect-ii", 

2841 "future-in-the-past": "past-future", 

2842 "obligational": "obligative", 

2843 "evidential": "evidential", 

2844 "converb": "converb", 

2845 "negative potential": "negative potential", 

2846 "adjective passive participle": "adjectival passive participle", 

2847 "adverbial passive participle": "adverbial passive participle", 

2848 "nominal passive participle": "noun-from-verb passive participle", 

2849 "IMPERFECTIVE": "imperfective", 

2850 "Non-Aspectual": "non-aspectual", 

2851 "PERF": "perfect", 

2852 "FUT": "future", 

2853 "PST": "past", 

2854 "PRS": "present", 

2855 "Presumptive": "presumptive", 

2856 "PRS PST": "present past", 

2857 "PRS PST FUT": "present past future", 

2858 "agentive": "agentive", 

2859 "FUTURE": "future", 

2860 "Jussive": "jussive", 

2861 "Root": { 

2862 "lang": "Limburgish", # beer/Limburgish 

2863 "then": "", 

2864 "else": "root", 

2865 }, 

2866 "Involuntary": "involuntary", # Verb form, e.g., khitan/Indonesian 

2867 "part participle": "past participle", 

2868 "direct present": "direct present", 

2869 "indirect present": "indirect present", 

2870 "singular/plural": "singular plural", 

2871 "personal infinitive": "personal infinitive", 

2872 "Class 1": "class-1", 

2873 "Class 2": "class-2", 

2874 "Class 3": "class-3", 

2875 "Class 4": "class-4", 

2876 "Class 5": "class-5", 

2877 "Class 6": "class-6", 

2878 "Class 7": "class-7", 

2879 "Class 8": "class-8", 

2880 "Class 9": "class-9", 

2881 "Class 10": "class-10", 

2882 "Class 11": "class-11", 

2883 "Class 12": "class-12", 

2884 "Class 13": "class-13", 

2885 "Class 14": "class-14", 

2886 "Class 15": "class-15", 

2887 "Class 16": "class-16", 

2888 "Class 17": "class-17", 

2889 "Class 18": "class-18", 

2890 "Class 2 strong": "class-2 strong", 

2891 "Class 4 strong": "class-4 strong", 

2892 "Class 6 strong": "class-6 strong", 

2893 "Class 7 strong": "class-7 strong", 

2894 "imperfect subjunctive": "imperfect subjunctive", 

2895 "dative-locative": "dative locative", 

2896 "directional": "directional", 

2897 "possessive pronoun": "possessive pronoun", 

2898 "possessive determiner": "possessive determiner", 

2899 "genderless, nonspecific (formal)": "gender-neutral formal", 

2900 "genderless": "gender-neutral", 

2901 "standard formal": "formal", 

2902 "archaic informal": "archaic informal", 

2903 "Gen/Dat": "genitive dative", 

2904 "Nom/Acc": "nominative accusative", 

2905 "uncountable": "uncountable", 

2906 "gender f": "feminine", 

2907 "Present subjunctive": "present subjunctive", 

2908 "Future progressive presumptive": "future progressive presumptive", 

2909 "Past progressive": "past progressive", 

2910 "Negative present progressive": "negative present progressive", 

2911 "1.": "first-person", 

2912 "2.": "second-person", 

2913 "3. m": "third-person masculine", 

2914 "3. f": "third-person feminine", 

2915 "3. n": "third-person neuter", 

2916 "1st person plural inclusive": "first-person plural inclusive", 

2917 "1st person plural exclusive": "first-person plural exclusive", 

2918 "3rd person plural participle": "third-person plural participle", 

2919 "Indefinite subject (passive)": "passive", 

2920 "3rd person pl": "third-person plural", 

2921 "2nd person pl": "second-person plural", 

2922 "3rd person dual": "third-person dual", 

2923 "2nd person dual": "second-person dual", 

2924 "1st person dual": "first-person dual", 

2925 "2nd person sg": "second-person singular", 

2926 "3rd-person sg": "third-person singular", 

2927 "perfective aorist": "perfective aorist", 

2928 "f-w2": "", # málfræði/Icelandic 

2929 "f-s3": "", # kvaðratrót/Icelandic 

2930 "m-s2": "", 

2931 "m-s3": "", 

2932 "3rd person plural (3p) Wiinawaa": "third-person plural", 

2933 "2nd-person plural (2p) Giinawaa": "second-person plural", 

2934 "1st person plural inclusive (21) Giinawind": "first-person plural inclusive", 

2935 "1st person plural exclusive (1p) Niinawind": "first-person plural exclusive", 

2936 "Indefinite (X)": "indefinite", 

2937 "Obviative (3')": "third-person obviative", 

2938 "1st person (1s) Niin": "first-person singular", 

2939 "2nd person (2s) Giin": "second-person singular", 

2940 "3rd person (3s) Wiin": "third-person singular", 

2941 "1st sg": "first-person singular", 

2942 "2nd sg": "second-person singular", 

2943 "3rd sg": "third-person singular", 

2944 "1st pl": "first-person plural", 

2945 "2nd pl": "second-person plural", 

2946 "3rd pl": "third-person plural", 

2947 "2nd sg neuter": "second-person singular neuter", 

2948 "2nd sg for": "second-person singular formal", 

2949 "Mood / Tense": "", 

2950 "hypothetic": "hypothetical", 

2951 "Indefinite feminine and masculine gender": "indefinite feminine masculine", 

2952 "contrafactual": "counterfactual", 

2953 "presumptive": "presumptive", 

2954 "habitual": "habitual", 

2955 "2ⁿᵈ person*": "second-person", 

2956 "мынем (“my”)": "first-person singular possessive", 

2957 "Primary stem": "stem stem-primary", 

2958 "Secondary stem": "stem stem-secondary", 

2959 "intentive": "intentive", 

2960 "serial": "habitual", 

2961 "characteristic": "adverbial", # patjaṉi/Pitjantjatjara 

2962 "imperative continuous": "imperative continuative", 

2963 "precursive": "precursive", 

2964 "limitative": "limitative", 

2965 "circumstantial focalising": "circumstantial focalising", 

2966 "focalising precursive": "focalising precursive", 

2967 "focalising": "focalising", 

2968 "expectative": "expectative", 

2969 "nominative (ప్రథమా విభక్తి)": "nominative", 

2970 "genitive": "genitive", 

2971 "locative": "locative", 

2972 "1st मैं": "first-person", 

2973 "basic": "", 

2974 "Preterite I": "preterite preterite-i", 

2975 "Preterite II": "preterite preterite-ii", 

2976 "Pluperfect I": "pluperfect pluperfect-i", 

2977 "Pluperfect II": "pluperfect pluperfect-ii", 

2978 "Durative preterite": "durative preterite", 

2979 "Frequentative preterite": "frequentative preterite", 

2980 "Auxiliary": "auxiliary", 

2981 "Nominative Accusative": "nominative accusative", 

2982 "obviative singular (0')": "obviative singular", 

2983 "singular (0')": "singular", 

2984 "Indefinite masculine gender": "indefinite masculine", 

2985 "Definite masculine gender": "definite masculine", 

2986 "SUBJECT": "subjective", 

2987 "Singular OBJECT": { 

2988 "lang": "Pashto", 

2989 "then": "object-singular object-concord", 

2990 "else": "singular objective", 

2991 }, 

2992 "Plural OBJECT": { 

2993 "lang": "Pashto", 

2994 "then": "object-plural object-concord", 

2995 "else": "plural objective", 

2996 }, 

2997 "indefinite forms": "indefinite", 

2998 "2ⁿᵈ person singular": "second-person singular", 

2999 "2ⁿᵈ person plural": "second-person plural", 

3000 "3ʳᵈ person [sing. and plural]": "third-person singular plural", 

3001 "Actor": {"lang": "Tagalog", "then": "trigger-actor"}, 

3002 "Object": {"lang": "Tagalog", "then": "trigger-object"}, 

3003 "Locative": { 

3004 "lang": "Tagalog", 

3005 "then": "trigger-locative", 

3006 "else": "locative", 

3007 }, 

3008 "Instrument": { 

3009 "lang": "Tagalog", 

3010 "then": "trigger-instrument", 

3011 "else": "instrumental", 

3012 }, 

3013 "Causative": { 

3014 "lang": "Tagalog", 

3015 "then": "trigger-causative", 

3016 "else": "causative", 

3017 }, 

3018 "Referential": {"lang": "Tagalog", "then": "trigger-referential"}, 

3019 "1ˢᵗ person m": "first-person masculine", 

3020 "1ˢᵗ person f": "first-person feminine", 

3021 "2ⁿᵈ person m": "second-person masculine", 

3022 "2ⁿᵈ person f": "second-person feminine", 

3023 "Tense/Mood": "", 

3024 "masculine object": "masculine objective", 

3025 "feminine object": "feminine objective", 

3026 "neuter object": "neuter objective", 

3027 "singular subject": "singular subjective", 

3028 "plural subject": "plural subjective", 

3029 "Allative I": "allative allative-i", 

3030 "Allative II": "allative allative-ii", 

3031 "conditional active": "conditional active", 

3032 "subjunctive active": "subjunctive active", 

3033 "Concessive": "concessive", 

3034 "Preparative": "preparative", 

3035 "Durative": "durative", 

3036 "Subordinative (Past gerund)": "past gerund", 

3037 "Coordinative (Infinitive)": "infinitive", 

3038 "Converbs": "converb", 

3039 "Optative": "optative", 

3040 "Polite": "polite", 

3041 "Strong": "emphatic", 

3042 "Normal": "", 

3043 "Present-future": "future", 

3044 "habitual/conditional past": "habitual conditional past", 

3045 "simple past": "past", 

3046 "present continuous": "present continuative", 

3047 "simple present": "present", 

3048 "polite": "polite", 

3049 "familiar": "familiar", 

3050 "very familiar": "familiar", 

3051 "PAST TENSE": "past", 

3052 "3rd person m": "third-person masculine", 

3053 "3rd person f": "third-person feminine", 

3054 "3rd m": "third-person masculine", 

3055 "3rd m.": "third-person masculine", # hug/Manx 

3056 "gender m": "masculine", 

3057 "dative form": "dative", 

3058 "continuative": "continuative", 

3059 "circumposition": "circumposition", 

3060 "singular and plural": "singular plural", 

3061 "accusative indefinite-dative": "accusative indefinite dative", 

3062 "Literary forms": "literary", 

3063 "Case \\ Number": "", 

3064 "masc./fem.": "masculine feminine", 

3065 "gender n": "neuter", 

3066 "m or n": "masculine neuter", 

3067 "actor I": "actor-i", 

3068 "Sociative": "sociative", 

3069 "Present negative": "present negative", 

3070 "Possessive determiner": "possessive determiner", 

3071 "Proximal": "proximal", 

3072 "ergative-instrumental": "ergative instrumental", 

3073 "Plural/Distributive": "plural distributive", 

3074 "stressed": "stressed", 

3075 "vir pl": "virile plural", 

3076 "poss. adj.": "possessive adjective", 

3077 "Gender": "", 

3078 "All numbers": "", 

3079 "m obl, pl": "masculine oblique plural", 

3080 "m & n": "masculine neuter", 

3081 "dative-lative-locative": "dative lative locative", 

3082 "aspect": "", 

3083 "Third person m": "third-person masculine", 

3084 "Dual virile": "dual virile", 

3085 "Accusative /Genitive": "accusative genitive", 

3086 "1st c. sg. (me)": "first-person singular", 

3087 "Future tense": "future", 

3088 "👤 singular": "singular", 

3089 "👥 dual": "dual", 

3090 "👤👥👥 plural": "plural", 

3091 "Feminine i/ō-stem": "feminine stem", 

3092 "past indicative": "past indicative", 

3093 "Irregular with past tense": "irregular", 

3094 "Abs.": "absolute", 

3095 "Conj.": "conjunct", 

3096 "Rel.": "relative", 

3097 "Positive relative": "positive relative", 

3098 "Negative relative": "negative relative", 

3099 "intentional": "intentive", 

3100 "oblig": "obligative", 

3101 "indef": "indefinite", 

3102 "def": "definite", 

3103 "perf": "perfective", 

3104 "cont": "continuative", 

3105 "comp": "completive", 

3106 "simpl": "", 

3107 "nominal non-finites": "noun-from-verb dummy-mood", 

3108 "comitative": "comitative", 

3109 "abessive": "abessive", 

3110 "essive": "essive", 

3111 "terminative": "terminative", 

3112 "translative": "translative", 

3113 "inessive": "inessive", 

3114 "partitive": "partitive", 

3115 "nominative": "nominative", 

3116 "singulare tantum": "singular-only", 

3117 "Absolutive": "absolutive", 

3118 "Infinitival": "infinitive", 

3119 "negatival complement": "negative", 

3120 "complementary infinitive": "infinitive", # XXX what add gp/Egyptian 

3121 "stative stem": "stative", 

3122 "periphrastic imperfective": "imperfective", 

3123 "periphrastic prospective": "prospective", 

3124 "‘pseudoverbal’ forms": "", 

3125 "suffix conjugation": "", 

3126 "contingent": "contingent", 

3127 "obligative": "obligative", 

3128 "potentialis": "potential", 

3129 "normal": "", 

3130 "1ˢᵗ Perfect": "perfect-i", 

3131 "2ⁿᵈ Perfect": "perfect-ii", 

3132 "m. sing.": "masculine singular", 

3133 "f. sing.": "feminine singular", 

3134 "c. sing.": "common-gender singular", 

3135 "pl.": "plural", 

3136 "high-resp.": "formal deferential", 

3137 "Conjugation type": "conjugation-type", 

3138 "Injunctive": "injunctive", 

3139 "Habitual participle": "habitual participle", 

3140 "Future conditional": "future conditional", 

3141 "condizionale passato": "past conditional", # ripromettersi/Italian 

3142 "futuro anteriore": "future perfect", # ripromettersi/Italian 

3143 "passato prossimo": "perfect", # ripromettersi/Italian 

3144 "trapassato remoto": "preterite-perfect", # ripromettersi/Italian 

3145 "trapassato prossimo": "past perfect", # ripromettersi/Italian 

3146 "(♂)": "masculine", 

3147 "Contingent": "contingent", 

3148 "Reason": "reason", 

3149 "Goal": "goal", 

3150 "Agentive (emphatic)": "agentive emphatic", 

3151 "Genitive infinitive": "genitive infinitive", 

3152 "Conjugative": "conjugative", 

3153 "Gerund Past participle Agentive": "gerund past participle agentive", 

3154 "construct": "construct", 

3155 "Form": "", 

3156 "form": "", 

3157 "Isolated forms": "", 

3158 "isolated forms": "", # a ܡܘܙܐ/Assyrian Neo-Aramaic 

3159 "Possessed": "possessed-form", 

3160 "Unpossessed": "unpossessed-form", 

3161 "past imperfective": "past imperfective", 

3162 "past perfective": "past perfective", 

3163 "Conjunct": "conjunct", 

3164 "dir m s": "direct masculine singular", 

3165 "m p obl m s": ["masculine plural", "oblique masculine singular"], 

3166 "f s": "feminine singular", 

3167 "f p": "feminine plural", 

3168 "gerunds": "gerund", 

3169 "perfect subjunctive": "perfect subjunctive", 

3170 "future subjunctive": "future subjunctive", 

3171 "screeves": "", # კვეთს/Georgian 

3172 "second-person singular formal": "second-person singular formal", 

3173 "second-person singular informal": "second-person singular informal", 

3174 "first-person singular": "first-person singular", 

3175 "possessive forms": "possessive", 

3176 "Indirect": "indirect", 

3177 "Direct": "direct", 

3178 "Soft": "soft", 

3179 "Hard": "hard", 

3180 "Nasalization": "mutation-nasal", 

3181 "soft": { 

3182 "if": "mutation", 

3183 "then": "mutation-soft", 

3184 "else": { 

3185 "lang": "Breton", 

3186 "then": "mutation-soft", 

3187 "else": "soft", 

3188 }, 

3189 }, 

3190 "nasal": { 

3191 "if": "mutation", 

3192 "then": "mutation-nasal", 

3193 }, 

3194 "aspirate": { 

3195 "if": "mutation", 

3196 "then": "mutation-aspirate", 

3197 "else": { 

3198 "lang": "Breton", 

3199 "then": "mutation-aspirate", 

3200 }, 

3201 }, 

3202 "mixed": { 

3203 "if": "mutation", 

3204 "then": "mutation-mixed", 

3205 "else": "mixed", 

3206 }, 

3207 "radical": { 

3208 "if": "mutation", 

3209 "then": "mutation-radical", 

3210 }, 

3211 "Radical": { 

3212 "if": "mutation", 

3213 "then": "mutation-radical", 

3214 }, 

3215 "with h-prothesis": { 

3216 "if": "mutation", 

3217 "then": "prothesis-h", 

3218 }, 

3219 "with t-prothesis": { 

3220 "if": "mutation", 

3221 "then": "prothesis-t", 

3222 }, 

3223 "Lenition": "lenition", 

3224 "Eclipsis": "eclipsis", 

3225 "lenition": "lenition", 

3226 "eclipsis": "eclipsis", 

3227 "+ object concord": "object-concord", 

3228 "lative": "lative", 

3229 "post./nom.": "postpositional", # XXX what is nom. ? 

3230 "Measurement": {"lang": "Tagalog", "then": "trigger-measurement"}, 

3231 "past continuous": "past continuative", 

3232 "with definite article": "definite includes-article", 

3233 "with indefinite article": "indefinite includes-article", 

3234 "(usually without article)": "usually-without-article", 

3235 "Completive": "completive", 

3236 "dative definite": "dative definite", 

3237 "nominative definite": "nominative definite", 

3238 "long nominative": "nominative", 

3239 "Past subjunctive": "past subjunctive", 

3240 "Prot.": "prototonic", 

3241 "Deut.": "deuterotonic", 

3242 "Imperfect": "imperfect", 

3243 "Present indicative": "present indicative", 

3244 "Passive pl.": "passive plural", 

3245 "Passive sg.": "passive singular", 

3246 "1st sg.": "first-person singular", 

3247 "2nd sg.": "second-person singular", 

3248 "3rd sg.": "third-person singular", 

3249 "1st pl.": "first-person plural", 

3250 "2nd pl.": "second-person plural", 

3251 "3rd pl.": "third-person plural", 

3252 "Indefinite feminine gender": "indefinite feminine", 

3253 "Definite feminine gender": "definite feminine", 

3254 "present participle¹ or gerund": "present participle gerund", 

3255 "short forms": "short-form", 

3256 "long forms": "long-form", 

3257 "Negative adjective (un-…-able)": "negative participle", 

3258 "Positive adjective (-able)": "participle", 

3259 "Infinitive (archaic)": "infinitive archaic", 

3260 "Subjunctive Mood": "subjunctive", 

3261 "Conditional Mood": "conditional", 

3262 "Indicative Mood": "indicative", 

3263 "3rd person pl, 2nd p. pl formal": [ 

3264 "third-person plural", 

3265 "third-person plural formal second-person-semantically", 

3266 ], 

3267 "2nd person pl informal": "second-person plural informal", 

3268 "3rd person sg, 2nd p. sg formal": [ 

3269 "third-person singular", 

3270 "third-person singular formal second-person-semantically", 

3271 ], 

3272 "Participle": "participle", 

3273 "Past tense": "past", 

3274 "Present tense": "present", 

3275 "oblique/vocative": "oblique vocative", 

3276 "3ʳᵈ person f": "third-person feminine", 

3277 "3ʳᵈ person m": "third-person masculine", 

3278 "Case/Form": "", 

3279 "Positive Infinitive": "positive infinitive", 

3280 "future converb I": "future converb converb-i", 

3281 "future converb II": "future converb converb-ii", 

3282 "perfective converb": "perfective converb", 

3283 "simultaneous converb": "simultaneous converb", 

3284 "imperfective converb": "imperfective converb", 

3285 "dative and adverbial": ["dative", "adverbial"], 

3286 "nominative genitive and instrumental": "nominative genitive instrumental", 

3287 "singular unknown": "singular", 

3288 "Plural of variety": "plural plural-of-variety", 

3289 "dir. pl.": "direct plural", 

3290 "dir. sg.": "direct singular", 

3291 "Terminative": "terminative", 

3292 "Desiderative": "desiderative", 

3293 "mediopassive voice": "mediopassive", 

3294 "past frequentative": "past frequentative", 

3295 "Infinitives": { 

3296 "default": "infinitive", 

3297 "lang": "Swahili", 

3298 "then": "dummy-section-header infinitive", 

3299 }, 

3300 "Pronon": "", 

3301 "म SING.": {"if": "first-person", "then": "singular"}, 

3302 "हामी PL.": {"if": "first-person", "then": "plural"}, 

3303 "तँ LOW-RESP. SING.": {"if": "second-person", "then": "singular impolite"}, 

3304 "तिमी MID-RESP.": {"if": "second-person", "then": "polite"}, 

3305 "ऊ LOW-RESP. SING.": {"if": "third-person", "then": "singular impolite"}, 

3306 "उनी MID-RESP.": {"if": "third-person", "then": "polite"}, 

3307 "तपाईं / ऊहाँ HIGH-RESP.": "formal deferential", 

3308 "2ⁿᵈ & 3ʳᵈ": "second-person third-person", 

3309 "plural only (plurale tantum)": "plural-only", 

3310 "approximative": "approximative", 

3311 "consecutive": "consecutive", 

3312 "post-classical": "", 

3313 "Active present participle": "active present participle", 

3314 "Active perfect participle": "active perfect participle", 

3315 "Passive perfect participle": "passive perfect participle", 

3316 "active participle اِسْم الْفَاعِل": "active participle", 

3317 "active voice الْفِعْل الْمَعْلُوم": "active", 

3318 "singular الْمُفْرَد": "singular", 

3319 "dual الْمُثَنَّى": "dual", 

3320 "plural الْجَمْع": "plural", 

3321 "1ˢᵗ person الْمُتَكَلِّم": "first-person", 

3322 "2ⁿᵈ person الْمُخَاطَب": "second-person", 

3323 "3ʳᵈ person الْغَائِب": "third-person", 

3324 "past (perfect) indicative الْمَاضِي": "past perfective indicative", 

3325 "non-past (imperfect) indicative الْمُضَارِع": # XXX remove me to check if I'm relevant 

3326 "non-past imperfective indicative", 

3327 # ^ This might have been changed in the wiktionary template: 

3328 "non-past (imperfect) indicative الْمُضَارِع الْمَرْفُوع": # x تراجع/Arabic 

3329 "non-past imperfective indicative", 

3330 "subjunctive الْمُضَارِع الْمَنْصُوب": "subjunctive", 

3331 "jussive الْمُضَارِع الْمَجْزُوم": "jussive", 

3332 "imperative الْأَمْر": "imperative", 

3333 "passive participle اِسْم الْمَفْعُول": "passive participle", 

3334 "passive voice الْفِعْل الْمَجْهُول": "passive", 

3335 "verbal noun الْمَصْدَر": "noun-from-verb", 

3336 "verbal nouns الْمَصَادِر": "noun-from-verb", 

3337 "strong declension": "strong", 

3338 "weak declension": "weak", 

3339 "Recently Complete": "completive past past-recent", 

3340 "Recent past": "past past-recent", 

3341 "Remote past": "past past-remote", 

3342 "first singular": "first-person singular", 

3343 "second singular": "second-person singular", 

3344 "third singular": "third-person singular", 

3345 "quotative": "quotative", 

3346 "ma-infinitive": "infinitive infinitive-ma", 

3347 "ma- infinitive": "infinitive infinitive-ma", 

3348 "da-infinitive": "infinitive infinitive-da", 

3349 "da- infinitive": "infinitive infinitive-da", 

3350 "da-form": "verb-form-da", 

3351 "des-form": "verb-form-des", 

3352 "m gender": "masculine", 

3353 "long": "long-form", 

3354 "short": "short-form", 

3355 "1st pers.": "first-person", 

3356 "2nd pers.": "second-person", 

3357 "3rd pers.": "third-person", 

3358 "aorist (simple past)": "aorist", 

3359 "aorist II (past perfect II)": "aorist aorist-ii", 

3360 "admirative": "admirative", 

3361 "Adverbial": "adverbial", 

3362 "adjective": "adjectival", 

3363 "neuter gender": "neuter", 

3364 "number and gender": "", 

3365 "attributive and/or after a declined word": "attributive", 

3366 "independent as first declined word": "", 

3367 "after a declined word": "attributive", 

3368 "as first declined word": "", 

3369 "singular only": "singular-only", 

3370 "absolute superlative": "absolute superlative", 

3371 "present subjunctive": "present subjunctive", 

3372 "my": "possessive singular first-person", 

3373 "your": "possessive singular plural second-person", 

3374 "her/his/its": "possessive singular third-person", 

3375 "our": "possessive plural first-person", 

3376 "their": "possessive plural third-person", 

3377 "nominal": "noun", # XXX or noun-from-something? 

3378 "circumstantial": "circumstantial", 

3379 "jussive": "jussive", 

3380 "Singulative": "singulative", 

3381 "singulative": "singulative", 

3382 "Collective": "collective", 

3383 "Paucal": "paucal", 

3384 "stem": "stem", 

3385 "resultative participle": "resultative participle", 

3386 "subject participle": "subjective participle", 

3387 "connegative converb": "connegative converb", 

3388 "subjunctive singular": "subjunctive singular", 

3389 "imperative singular": "imperative singular", 

3390 "imperative sing.": "imperative singular", 

3391 "imperative plural": "imperative plural", 

3392 "imperative plur.": "imperative plural", 

3393 "participle of necessity": "participle necessitative", 

3394 "special": "special", 

3395 "half-participle": "half-participle", 

3396 "manner of action": "adverbial-manner", 

3397 "mixed declension": "mixed", 

3398 "Habitual Aspect": "habitual", 

3399 "Perfective Aspect": "perfective", 

3400 "Progressive Aspect": "progressive", 

3401 "1ˢᵗ": "first-person", 

3402 "2ⁿᵈ": "second-person", 

3403 "3ʳᵈ": "third-person", 

3404 "Negative Infinitive": "negative infinitive", 

3405 "2nd person singular": "second-person singular", 

3406 "present active participle": "present active participle", 

3407 "past active aorist participle": "past active aorist participle", 

3408 "past active imperfect participle": "past active imperfect participle", 

3409 "past passive participle": "past passive participle", 

3410 "adverbial participle": "adverbial participle", 

3411 "adjectival participle": "adjectival participle", 

3412 "perfect participle": "perfect participle", 

3413 "definite subject form": "definite subjective", 

3414 "definite object form": "definite objective", 

3415 "durative sentence": "durative", 

3416 "negated with": "negated-with", 

3417 "non-durative sentence": "non-durative", 

3418 "main clause": "main-clause", 

3419 "subordinate clause": "subordinate-clause", 

3420 "conjunctive": "conjunctive", 

3421 "future conjunctive": "future conjunctive", 

3422 "egressive": "egressive", 

3423 "first singular yo": "first-person singular", 

3424 "second singular tu": "second-person singular", 

3425 "third singular él/elli": "third-person singular", 

3426 "first plural nosotros/nós": "first-person plural", 

3427 "second plural vosotros/vós": "second-person plural", 

3428 "third plural ellos": "third-person plural", 

3429 "First person": "first-person", 

3430 "Second person": "second-person", 

3431 "Third person": "third-person", 

3432 "Very faml. & Inferior": "familiar impolite", 

3433 "Familiar": "familiar", 

3434 "Honorific": "honorific", 

3435 "Non honorific": "", 

3436 "Continuous": "continuative", 

3437 "Others": "", 

3438 "Other forms": "dummy-reset-headers", # Reset (είμαι/Greek/Verb) 

3439 "Oblique": "oblique", 

3440 "Demonstrative oblique": "demonstrative oblique", 

3441 "♀": "feminine", 

3442 "Class 1 weak": "class-1 weak", 

3443 "Benefactive": "benefactive", 

3444 "1sg": "first-person singular", 

3445 "1pl": "first-person plural", 

3446 "2sg": "second-person singular", 

3447 "2pl": "second-person plural", 

3448 "Irrealis": "irrealis", 

3449 "Realis": "realis", 

3450 "Contrasting conjunction": "contrastive", 

3451 "Causal conjunction": "causative", 

3452 "Conditional conjunction": "conditional", 

3453 "Perfect tense": "perfect", 

3454 "Perfect-continuative tense": "perfect continuative", 

3455 "present indicative/future": "present future indicative", 

3456 "imperfect (indicative/subjunctive)/ conditional": [ 

3457 "imperfect indicative subjunctive", 

3458 "conditional", 

3459 ], 

3460 "verbal adjectives": "participle", 

3461 "relative (incl. nominal / emphatic) forms": "relative", 

3462 "Passive perfect particple": "passive perfect participle", 

3463 "caritive": "caritive", 

3464 "Caritive": "caritive", 

3465 "Gerund & Past participle": ["gerund", "past participle"], 

3466 "Pronoun": "", 

3467 "nominative genitive instrumental": "nominative genitive instrumental", 

3468 "dative adverbial": "dative adverbial", 

3469 "♂": "masculine", 

3470 "2nd singular ты": "second-person singular", 

3471 "3rd singular ён / яна́ / яно́": "third-person singular", 

3472 "1st plural мы": "first-person plural", 

3473 "2nd plural вы": "second-person plural", 

3474 "3rd plural яны́": "third-person plural", 

3475 "plural мы / вы / яны́": "plural", 

3476 "masculine я / ты / ён": "masculine", 

3477 "feminine я / ты / яна́": "feminine", 

3478 "neuter яно́": "neuter", 

3479 "Imperfect indicative": "imperfect indicative", 

3480 "Verbal of necessity": "necessitative", 

3481 "without article": "without-article", 

3482 "participle (a26)": "participle", 

3483 "participle (a6)": "participle", 

3484 "participle (a5)": "participle", 

3485 "participle (a39)": "participle", 

3486 "Definite feminine and masculine gender": "definite feminine masculine", 

3487 "Neuter s-stem": "neuter", 

3488 "2nd sg informal": "second-person singular informal", 

3489 "2nd person plural (2p) Giinawaa": "second-person plural", 

3490 "3rd person sg": "third-person singular", 

3491 "Causative / Applicative": "causative applicative", 

3492 "Lengadocian (Standard Occitan)": "Lengadocian", 

3493 "Auvernhàs": "Auvernhàs", # Dialect of Occitan 

3494 "Gascon": "Gascon", # Occitan 

3495 "Lemosin": "Lemosin", # Occitan 

3496 "Provençau": "Provençau", # Occitan 

3497 "Old Saxon personal pronouns": "personal pronoun", 

3498 "nominative / accusative": "nominative accusative", 

3499 "situative": "situative", 

3500 "oppositive": "oppositive", 

3501 "multiplicative": "multiplicative", 

3502 "temporal": "temporal", 

3503 "Aorist": "aorist", 

3504 "Illative": "illative", 

3505 "superlative": "superlative", 

3506 "aspect / mood": "", 

3507 "impersonal participle": "impersonal participle", 

3508 "action noun": "noun-from-verb", 

3509 "Future passive participle": "future passive participle", 

3510 "essive-instructive": "essive-instructive", 

3511 "accusative-ablative": "accusative ablative", 

3512 "plurale tantum": "plural-only", 

3513 "Emphatic": "emphatic", 

3514 "non-past": "non-past", 

3515 "2nd person m": "second-person masculine", 

3516 "2nd person pl formal": "second-person plural formal", 

3517 "3rd singular m": "third-person singular masculine", 

3518 "3rd dual": "third-person dual", 

3519 "First-person": "first-person", 

3520 "Second-person": "second-person", # sibi/Latin 

3521 "Simple present / conditional": "present conditional", 

3522 "Future progressive, presumptive": "future progressive presumptive", 

3523 "Prolative I": "prolative", 

3524 "infinitive I": "infinitive infinitive-i", 

3525 "general accusative": "accusative", 

3526 "nonpast": "non-past", 

3527 "masculine/neuter": "masculine neuter", 

3528 "Past Stem": "past stem", 

3529 "Genitive-Dative": "genitive dative", 

3530 "Present / future": "present future", 

3531 "indefinite singular": "indefinite singular", 

3532 "indirect": "indirect", 

3533 "locative-qualitative": "locative-qualitative", 

3534 "separative": "separative", 

3535 "paucal": "paucal", 

3536 "Tense": "", 

3537 "Voice": "", 

3538 "Plain infinitive": "infinitive", 

3539 "Weak inflection": "weak", 

3540 "common gender": { 

3541 "if": "possessive", 

3542 "lang": POSSESSIVE_POSSESSED_LANGS, 

3543 "then": "possessed-common", 

3544 "else": "common-gender", 

3545 }, 

3546 "Common gender": { 

3547 "if": "possessive", 

3548 "lang": POSSESSIVE_POSSESSED_LANGS, 

3549 "then": "possessed-common", 

3550 "else": "common-gender", 

3551 }, 

3552 "common": { 

3553 "if": "possessive", 

3554 "lang": POSSESSIVE_POSSESSED_LANGS, 

3555 "then": "possessed-common", 

3556 "else": "common-gender", 

3557 }, 

3558 "archaic": "archaic", 

3559 "either gender": "masculine feminine", 

3560 "present stem": "present", 

3561 "inclusive": "inclusive", 

3562 "NORI (dative)": "dative", 

3563 "DURATIVE": "durative", 

3564 "nom./acc.": "nominative accusative", 

3565 "acc.": "accusative", 

3566 "FUTURE TENSE": "future", 

3567 "OPTATIVE": "optative", 

3568 "possessive m": "possessive masculine", 

3569 "past progressive": "past progressive", 

3570 "long infinitive": "infinitive infinitive-i-long", 

3571 "l-participles": "l-participle", 

3572 "L-participle": "l-participle", 

3573 "l-participle": "l-participle", 

3574 "Informal negative": "informal negative", 

3575 "infinitival forms": "infinitive", 

3576 "subjunctive sing.": "subjunctive singular", 

3577 "subjunctive plur.": "subjunctive plural", 

3578 "Type": "", 

3579 "type": "", 

3580 "gender-neutral": "gender-neutral", 

3581 "gender-neutral (person)": "gender-neutral", 

3582 "sing. conneg.": "singular connegative", 

3583 "plur. conneg.": "plural connegative", 

3584 "Definite attributive": "definite attributive", 

3585 "present conditional": "present conditional", 

3586 "past conditional": "past conditional", 

3587 "connegative": "connegative", 

3588 "present active": "present active", 

3589 "past active": "past active", 

3590 "past passive": "past passive", 

3591 "→○": "", # e.g. sikkaralla/Finnish 

3592 "○": "", # e.g. sikkaralla/Finnish 

3593 "○→": "", # e.g. sikkaralla/Finnish 

3594 "with positive imperatives": "with-positive-imperative", 

3595 "no possessor": "no-possessor", 

3596 # "+ object concord": XXX, 

3597 # "state": XXX, 

3598 # "free state": XXX, 

3599 # "Free state": XXX, 

3600 # "Full form": XXX, 

3601 # "Noun": XXX, 

3602 # "stative stem": XXX, 

3603 # "unmutated": XXX, 

3604 # "unmodified": XXX, 

3605 # "Genitive infin.": XXX, 

3606 # "ilz, elles": XXX, 

3607 # "el / ela": XXX, 

3608 # "il/elli": XXX, 

3609 # "el / ela / Vde": XXX, 

3610 # "benim (my)": XXX, 

3611 # "Declarative": XXX, 

3612 # "substantive genitive": XXX, 

3613 # "preposition": XXX, 

3614 # "specific": XXX, 

3615 # "adverb": XXX, 

3616 # "adverbial participles": XXX, 

3617 # "In genitive": XXX, 

3618 # "Low": XXX, 

3619 # "Low/Mid": XXX, 

3620 # "Tense particles (See particles)": XXX, 

3621 # "past stem": XXX, 

3622 # "transitory past": XXX, 

3623 # "determiners": XXX, 

3624 # "determiners and pronouns": XXX, 

3625 # "past particle": XXX, 

3626 # "class I": XXX, 

3627 # "adelative": XXX, 

3628 # "oblique I": XXX, 

3629 # "NORK (ergative)": "", # XXX see irakatsi/Basque 

3630 # "NOR (absolutive)": "", # XXX see irakatsi/Basque 

3631 # These are headers for columns that contain titles even if not header style 

3632 "noun case": { 

3633 "lang": "Finnish", 

3634 "then": "*", # e.g., kolme/Finnish 

3635 "else": "", 

3636 }, 

3637 "adverbial form": { 

3638 "lang": "Finnish", 

3639 "then": "*", # e.g., kolme/Finnish 

3640 "else": "adverbial", 

3641 }, 

3642 "m verbs conjugated according to 3rd person sg. er": { 

3643 "lang": "German", 

3644 "if": "polite", # du/German 

3645 "then": "masculine third-person second-person-semantically", 

3646 }, 

3647 # This didn't work to replace "second-person": -KJ 

3648 # ~ "2nd person": { 

3649 # ~ "lang": "German", 

3650 # ~ "if": "second-person-semantically", # du/German 

3651 # ~ "then": "" 

3652 # ~ }, 

3653 "(without article)": { 

3654 "lang": "German", # jeglicher/German 

3655 "then": "without-article", 

3656 }, 

3657 "(with indefinite article)": { 

3658 "lang": "German", # jeglicher/German 

3659 "then": "indefinite with-article", 

3660 }, 

3661 "Strong plural": { 

3662 "lang": "German", # mehrere/German 

3663 "then": "strong plural", 

3664 }, 

3665 "Weak and mixed plural": { 

3666 "lang": "German", 

3667 "then": "weak mixed plural", # mehrere/German 

3668 }, 

3669 "Second-person formal": { # Ihr/German 

3670 "lang": "German", 

3671 "then": "second-person formal", 

3672 }, 

3673 "Singular (neuter, pronoun only)": { 

3674 "lang": "German", 

3675 "then": "singular neuter pronoun", 

3676 }, 

3677 "Plural, strong forms": { 

3678 "lang": "German", 

3679 "then": "plural strong", 

3680 }, 

3681 "Plural, weak and mixed forms (e.g. with definite article)": { 

3682 "lang": "German", 

3683 "then": "plural weak mixed with-article", 

3684 }, 

3685 "strong (without article)": { # selber/German 

3686 "lang": "German", 

3687 "then": "strong without-article", 

3688 }, 

3689 "weak (with definite article)": { # selber/German 

3690 "lang": "German", 

3691 "then": "weak definite with-article", 

3692 }, 

3693 "m./n. plural": { # оба/Russian 

3694 "lang": "Russian", 

3695 "then": "masculine neuter plural", 

3696 }, 

3697 "f. plural": { # оба/Russian 

3698 "lang": "Russian", 

3699 "then": "feminine plural", 

3700 }, 

3701 "sigmatic future": "sigmatic future", # adiuvo/Latin 

3702 "sigmatic aorist": "sigmatic aorist", # adiuvo/Latin 

3703 "Key constructions": { 

3704 "lang": "Japanese", 

3705 "then": "dummy-reset-headers", # Break column inheritance, 伶俐/Japanese 

3706 }, 

3707 "Informal past": { # 伶俐/Japanese 

3708 "lang": "Japanese", 

3709 "then": "informal past", 

3710 }, 

3711 "Informal negative past": { # 伶俐/Japanese 

3712 "lang": "Japanese", 

3713 "then": "informal negative past", 

3714 }, 

3715 "Formal negative": { # 伶俐/Japanese 

3716 "lang": "Japanese", 

3717 "then": "formal negative", 

3718 }, 

3719 "Formal past": { # 伶俐/Japanese 

3720 "lang": "Japanese", 

3721 "then": "formal past", 

3722 }, 

3723 "Formal negative past": { # 伶俐/Japanese 

3724 "lang": "Japanese", 

3725 "then": "formal negative past", 

3726 }, 

3727 "Provisional": { # 伶俐/Japanese 

3728 "lang": "Japanese", 

3729 "then": "past conditional", 

3730 }, 

3731 "Degree": { # 伶俐/Japanese 

3732 "lang": "Japanese", 

3733 "then": "noun-from-adj", # equivalent to English -ness, needs more 

3734 }, 

3735 # in חתול/Hebrew: 

3736 "With possessive pronouns": "possessed-form", 

3737 "Person": { 

3738 "default": "person", 

3739 "lang": [ 

3740 "Hebrew", 

3741 "Scottish Gaelic", 

3742 "Old Irish", 

3743 ], 

3744 # umpa/Scottish Gaelic, la/Old Irish 

3745 "then": "*", 

3746 }, 

3747 "masculine singular": { 

3748 "lang": "Hebrew", 

3749 "if": "possessed-form", 

3750 "then": "possessed-masculine possessed-single", # doesn't work 

3751 "else": "masculine singular", 

3752 }, 

3753 # could there be a third control character besides "*" and "dummy-reset-headers" 

3754 # that lets you override bleeding rules for a column so that it 

3755 # takes over the whole row, like here? 

3756 "masculine plural": { 

3757 "lang": "Hebrew", 

3758 "if": "possessed-form", 

3759 "then": "possessed-masculine possessed-many", 

3760 "else": "masculine plural", 

3761 }, 

3762 "feminine singular": { 

3763 "lang": "Hebrew", 

3764 "if": "possessed-form", 

3765 "then": "possessed-feminine possessed-single", 

3766 "else": "feminine singular", 

3767 }, 

3768 "feminine plural": { 

3769 "lang": "Hebrew", 

3770 "if": "possessed-form", 

3771 "then": "possessed-feminine possessed-many", 

3772 "else": "feminine plural", 

3773 }, 

3774 "masculine and neuter": "masculine neuter", # hannars/Westrobothnian 

3775 "singular masculine": "masculine singular", 

3776 "plural masculine": "masculine plural", 

3777 "singular feminine": "feminine singular", 

3778 "plural feminine": "feminine plural", 

3779 "singular neuter": "neuter singular", 

3780 "plural neuter": "neuter plural", 

3781 "quantitative": { # vienas/Lithuanian 

3782 "lang": "Lithuanian", 

3783 "pos": "num", 

3784 "then": "cardinal", 

3785 }, 

3786 "ordinal": { 

3787 "lang": "Lithuanian", 

3788 "pos": "num", 

3789 "then": "ordinal", 

3790 }, 

3791 "plain": { 

3792 "lang": "Lithuanian", 

3793 "then": "", 

3794 }, 

3795 "prefixed with be-": { 

3796 "lang": "Lithuanian", 

3797 "then": "be-prefix", 

3798 }, 

3799 "special adverbial participle": { 

3800 "lang": "Lithuanian", 

3801 "then": "adverbial participle", 

3802 }, 

3803 "present adverbial": { 

3804 "lang": "Lithuanian", 

3805 "then": "present adverbial", 

3806 }, 

3807 "past adverbial": { 

3808 "lang": "Lithuanian", 

3809 "then": "past adverbial", 

3810 }, 

3811 "past frequentative adverbial": { 

3812 "lang": "Lithuanian", 

3813 "then": "past frequentative adverbial", 

3814 }, 

3815 "future adverbial": { 

3816 "lang": "Lithuanian", 

3817 "then": "future adverbial", 

3818 }, 

3819 "1st person (pirmasis asmuo)": { # -uoti/Lithuanian 

3820 "lang": "Lithuanian", 

3821 "then": "first-person", 

3822 }, 

3823 "2nd person(antrasis asmuo)": { 

3824 "lang": "Lithuanian", 

3825 "then": "second-person", 

3826 }, 

3827 "3rd person(trečiasis asmuo)": { 

3828 "lang": "Lithuanian", 

3829 "then": "third-person", 

3830 }, 

3831 "present dependent": { # abair/Irish, table for archaic verb paradigm 

3832 "lang": "Irish", 

3833 "then": "present dependent", 

3834 }, 

3835 "past habitual dependent": { # abair/Irish, table for archaic verb paradigm 

3836 "lang": "Irish", 

3837 "then": "past habitual dependent", 

3838 }, 

3839 "future dependent": { # abair/Irish, table for archaic verb paradigm 

3840 "lang": "Irish", 

3841 "then": "future dependent", 

3842 }, 

3843 "conditional dependent": { # abair/Irish, table for archaic verb paradigm 

3844 "lang": "Irish", 

3845 "then": "conditional dependent", 

3846 }, 

3847 "conditional independent": { # abair/Irish, table for archaic verb paradigm 

3848 "lang": "Irish", 

3849 "then": "conditional independent", 

3850 }, 

3851 "future independent": { # faigh/Irish, table for archaic verb paradigm 

3852 "lang": "Irish", 

3853 "then": "future independent", 

3854 }, 

3855 "past independent": { # faigh/Irish, table for archaic verb paradigm 

3856 "lang": "Irish", 

3857 "then": "past independent", 

3858 }, 

3859 "past dependent": { # faigh/Irish, table for archaic verb paradigm 

3860 "lang": "Irish", 

3861 "then": "past dependent", 

3862 }, 

3863 "present independent": { # faigh/Irish, table for archaic verb paradigm 

3864 "lang": "Irish", 

3865 "then": "present independent", 

3866 }, 

3867 "past habitual independent": { # faigh/Irish, table for archaic verb paradigm 

3868 "lang": "Irish", 

3869 "then": "past habitual independent", 

3870 }, 

3871 "definite singular": "definite singular", 

3872 "indefinite plural": "indefinite plural", 

3873 "definite plural": "definite plural", 

3874 "masc.": "masculine", # ща/Bulgarian 

3875 "fem.": "feminine", 

3876 "neut.": "neuter", 

3877 "genitive form": "genitive", # глава/Bulgarian 

3878 "feminine/ neuter": "feminine neuter", # два/Bulgarian 

3879 "future indicative": "future indicative", # mdlić/Polish 

3880 "dummy-ignored-text-cell": "dummy-ignored-text-cell", # Kludge 

3881 "s": { 

3882 "lang": "Finnish", # erata/Finnish 

3883 "then": "singular", 

3884 }, 

3885 "pl": { 

3886 "lang": "Finnish", # erata/Finnish 

3887 "then": "plural", 

3888 }, 

3889 "pos": "positive", # erata/Finnish 

3890 "neg": "negative", # erata/Finnish 

3891 "evidential participle": "evidential participle", # տալ/Armenian 

3892 "future converb 1": "future converb converb-i", # տալ/Armenian 

3893 "future converb 2": "future converb converb-ii", # տալ/Armenian 

3894 "past imperfect": "past imperfect", # տալ/Armenian 

3895 "դուն": { # տալ/Armenian 

3896 "lang": "Armenian", 

3897 "then": "second-person singular", 

3898 }, 

3899 "ան": { # տալ/Armenian 

3900 "lang": "Armenian", 

3901 "then": "third-person singular", 

3902 }, 

3903 "անանք": { # տալ/Armenian 

3904 "lang": "Armenian", 

3905 "then": "third-person plural", 

3906 }, 

3907 "(դուն)": { # տալ/Armenian 

3908 "lang": "Armenian", 

3909 "then": "second-person singular", 

3910 }, 

3911 "1 sg.": "first-person singular", # féin/Old Irish 

3912 "2 sg.": "second-person singular", # féin/Old Irish 

3913 "3 sg.": "third-person singular", # féin/Old Irish 

3914 "1 pl.": "first-person plural", # féin/Old Irish 

3915 "2 pl.": "second-person plural", # féin/Old Irish 

3916 "3 pl.": "third-person plural", # féin/Old Irish 

3917 "m./n.": "masculine neuter", # féin/Old Irish 

3918 "Stressed": "stressed", # suide/Old irish 

3919 "Unstressed": "unstressed", # suide/Old Irish 

3920 "Masculine": { # suide/Old Irish 

3921 "default": "masculine", 

3922 "lang": "Old Irish", 

3923 "then": "dummy-reset-headers masculine", 

3924 }, 

3925 "Feminine/neuter": { 

3926 "default": "feminine neuter", 

3927 "lang": "Old Irish", 

3928 "then": "dummy-reset-headers feminine neuter", 

3929 }, 

3930 "2d sing.": "second-person singular", # attá/Old Irish 

3931 "3d sing.": "third-person singular", # attá/Old Irish 

3932 "3d sg. masc.": "third-person singular masculine", # attá/Old Irish 

3933 "3d sg. fem.": "third-person singular feminine", # attá/Old Irish 

3934 "2d sg.": "second-person singular", # attá/Old Irish BOTH OF THESE in the same template! 

3935 "3d sg.": "third-person singular", # attá/Old Irish 

3936 "2d pl.": "second-person plural", # attá/Old Irish 

3937 "3d pl.": "third-person plural", # attá/Old Irish 

3938 "Pres.​indic.​prog.": "present indicative progressive", # attá/Old Irish 

3939 "Pres.​indic.​hab.": "present indicative habitual", # attá/Old Irish 

3940 # ~ "Pres.ind.": "present indicative", # attá/Old Irish 

3941 # Original data has a zero-width space, causing problems 

3942 "Pres.​subj.": "present subjunctive", # attá/Old Irish 

3943 "Active present participle ➤": { # στρατοπεδεύω/Greek (modern) 

3944 "lang": "Greek", 

3945 "then": "active present participle indeclinable", 

3946 }, 

3947 "Active perfect participle ➤": { 

3948 "lang": "Greek", 

3949 "then": "active perfect participle indeclinable", 

3950 }, 

3951 "Passive perfect participle ➤": { 

3952 "lang": "Greek", 

3953 "then": "passive perfect participle indeclinable", 

3954 }, 

3955 "Perfect participle ➤": { # χαίρομαι/Greek 

3956 "lang": "Greek", 

3957 "then": "perfect participle indeclinable", 

3958 }, 

3959 # https://en.wikipedia.org/wiki/Nonfinite_verb#Modern_Greek 

3960 "Nonfinite form ➤": { 

3961 "lang": "Greek", 

3962 "then": "infinitive-aorist", 

3963 }, 

3964 "m·s": "masculine singular", # καθείς/Greek 

3965 "f·s": "feminine singular", 

3966 "n·s": "neuter singular", 

3967 "m·p": "masculine plural", # αυτός/Greek 

3968 "f·p": "feminine plural", 

3969 "n·p": "neuter plural", 

3970 "Masc./Fem./Neut.": "masculine feminine neuter", # mille/Latin 

3971 "masc./fem./neut.": "masculine feminine neuter", # sūi/Latin 

3972 "Reflexive third": "third-person reflexive", # se/Latin 

3973 "masculine dual": "masculine dual", # a סוס/Hebrew 

3974 "his": "third-person singular masculine possessive", # moj/Serbo-Croatian 

3975 "her": "third-person singular feminine possessive", # moj/Serbo-Croatian 

3976 "1st singular (я (ja))": "first-person singular", # быць/Serbo-Croatian 

3977 "2nd singular (ты (ty))": "second-person singular", 

3978 "3rd singular (ён (jon)/яна́ (janá)/яно́ (janó))": "third-person singular", 

3979 "1st plural (мы (my))": "first-person plural", 

3980 "2nd plural (вы (vy))": "second-person plural", 

3981 "3rd plural (яны́ (janý))": "third-person plural", 

3982 "plural (мы (my), вы (vy), яны́ (janý))": "plural", 

3983 "masculine (я (ja), ты (ty), ён (jon))": "masculine", 

3984 "feminine (я (ja), ты (ty), яна́ (janá))": "feminine", 

3985 "neuter (яно́ (janó))": "neuter", 

3986 "adjectival partc.": "adjectival participle", # доврне/Macedonian 

3987 "adverbial partc.": "adverbial participle", 

3988 # ~ "non-finite forms": { # доврне/Macedonian didn't work out 

3989 # ~ "lang": "Macedonian", 

3990 # ~ "then": "", 

3991 # ~ }, 

3992 # ~ "l-participle": "l-participle", 

3993 # ~ "Compound tenses": { 

3994 # ~ "lang": "Macedonian", 

3995 # ~ "pos": "verb", 

3996 # ~ "then": "dummy-reset-headers", 

3997 # ~ }, 

3998 "collective": { # ремен/Macedonian 

3999 "lang": [ 

4000 "Lithuanian", 

4001 "Macedonian", 

4002 "Proto-Indo-European", 

4003 ], 

4004 "pos": ["num", "noun"], 

4005 "then": "collective", 

4006 }, 

4007 "Nominative/Accusative (Unarticulated)": "nominative accusative indefinite", # acid caboxilic/Romanian 

4008 "Nominative/Accusative (Definite articulation)": "nominative accusative definite", 

4009 "Genitive/Dative (Definite articulation)": "genitive dative definite", 

4010 "present infinitive": "present infinitive", # фи/Romanian 

4011 "past infinitive": "past infinitive", 

4012 # ~ This doesn't want to work - why? 

4013 # ~ "rare but acceptable": "standard", # soler/Spanish 

4014 "genitive (gjinore) (i/e/të/së)": "genitive", # mjez/Albanian 

4015 "participle — present": "present participle", # afrohet/Albanian 

4016 "participle — perfect": "perfect participle", 

4017 "gerund — present": "present gerund", 

4018 "gerund — perfect": "perfect gerund", 

4019 "infinitive — present": "present infinitive", 

4020 "infinitive — perfect": "perfect infinitive", 

4021 "privative": "privative", 

4022 "absolutive — perfect": "perfect absolutive", 

4023 "continuous present": "present progressive", 

4024 "continuous imperfect": "imperfect progressive", 

4025 "2nd future": "future future-ii", 

4026 "2nd future perfect": "future future-ii perfect", 

4027 "imperative — negatory": "negative imperative", 

4028 "genitive/dative/ablative": "genitive dative ablative", # tij/Albanian 

4029 "male forms": "masculine", # Dit/Albanian 

4030 "female forms": "feminine", 

4031 "Base form": { 

4032 "lang": [ 

4033 "Arabic", 

4034 "Moroccan Arabic", 

4035 "Maltese", 

4036 "Gulf Arabic", 

4037 "Assyrian Neo-Aramaic", 

4038 ], 

4039 # "pos": ["noun", "verb", "particle", "prep"], 

4040 "then": "stem", 

4041 }, 

4042 "Base Form": { 

4043 "lang": [ 

4044 "Assyrian Neo-Aramaic", 

4045 ], 

4046 "then": "stem", 

4047 }, 

4048 "base form": { 

4049 "lang": [ 

4050 "Assyrian Neo-Aramaic", 

4051 ], 

4052 "then": "stem", 

4053 }, 

4054 "Personal-pronoun- including forms": { 

4055 "lang": [ 

4056 "Arabic", 

4057 "Moroccan Arabic", 

4058 "Maltese", 

4059 "Gulf Arabic", 

4060 ], 

4061 # "pos": ["noun", "verb", "particle", "prep"], 

4062 "then": "dummy-reset-headers", 

4063 }, 

4064 # ~ "singular": { 

4065 # ~ "lang": ["Arabic", "Moroccan Arabic",], 

4066 # ~ "pos": "prep", 

4067 # ~ "if": "stem", 

4068 # ~ "then": "dummy-reset-headers", 

4069 # ~ }, 

4070 "common, neuter": { # kaj/Serbo-Croatian 

4071 "lang": "Serbo-Croatian", 

4072 "then": "common-gender neuter", 

4073 }, 

4074 "pres.​indep.​aff.": "present independent affirmative", # bí/Irish 

4075 "pres.​dep.": "present dependent", 

4076 "pres.​neg.‡": "present negative", # after ‡ starts working as a footnote 

4077 # character, remove it from here. 

4078 "pres.​hab.": "present habitual", 

4079 "past hab.": "past habitual", 

4080 "past ind.": "past independent", 

4081 "past dep.": "past dependent", 

4082 "accusative form": "accusative", # отец/Bulgarian 

4083 "basic suffix": "suffix", 

4084 "direct object suffix": "direct-object suffix", 

4085 "indirect object suffix": "indirect-object suffix", 

4086 "Xemxin": "xemxin-assimilation", # lil/Maltese 

4087 "Qamrin": "qamrin-unassimilation", 

4088 "State": { 

4089 "lang": [ 

4090 "Aramaic", 

4091 "Hebrew", 

4092 "Assyrian Neo-Aramaic", 

4093 ], 

4094 "pos": "noun", 

4095 "then": "*", 

4096 "else": "", 

4097 }, 

4098 "state": { 

4099 "lang": "Assyrian Neo-Aramaic", 

4100 "pos": "noun", 

4101 "then": "*", 

4102 "else": "", 

4103 }, 

4104 "Absolute": { # x חקלא/Aramaic 

4105 "lang": "Aramaic", 

4106 "pos": "noun", 

4107 "then": "absolute", 

4108 }, 

4109 "Determined": { 

4110 "lang": "Aramaic", 

4111 "pos": "noun", 

4112 "then": "emphatic", 

4113 }, 

4114 "emphatic": "emphatic", # v דלתא/Aramaic 

4115 "3rd f": "third-person feminine", # umpa/Scottish Gaelic 

4116 "Number": { 

4117 "default": "", 

4118 # umpa/Scottish Gaelic 

4119 "lang": [ 

4120 "Hebrew", 

4121 "Scottish Gaelic", 

4122 ], 

4123 "then": "*", 

4124 }, 

4125 "Third person f": "third-person feminine", # an/Scottish Gaelic 

4126 "First sg": "first-person singular", # an/Scottish Gaelic 

4127 "Second sg": "second-person singular", 

4128 "Third sg m": "third-person singular masculine", 

4129 "Third sg f": "third-person singular feminine", 

4130 "First pl": "first-person plural", 

4131 "Second pl": "second-person plural", 

4132 "Third pl": "third-person plural", 

4133 "Independent": "independent", 

4134 "independent": "independent", # immee/Manx 

4135 "Affirmative Interrogative": "affirmative interrogative", 

4136 "Negative Interrogative": "negative interrogative", 

4137 "Affirmative interrogative": "affirmative interrogative", # thathar/Scottish Gaelic 

4138 "Relative future": [ 

4139 "with-pronoun future", 

4140 "with-conjunction future", 

4141 ], 

4142 "agent1, 3": "agent participle", # puhkaa/Finnish 

4143 "Unabbreviated form": "unabbreviation alt-of", # jku/Finnish 

4144 "Abbreviation": "abbreviation", 

4145 "nãs/nãsu, nãsã/nãsa, el/elu, ea": { 

4146 "lang": "Aromanian", 

4147 "if": "third-person singular", 

4148 "then": "third-person singular", 

4149 }, 

4150 "Masculine,Feminine, Neuter": "masculine feminine neuter", 

4151 # tři/Czech, copy-pasted manual table without template... 

4152 "Present Sg": "present singular", # skrýt/Czech 

4153 "Present Pl": "present plural", 

4154 "Future Sg": "future singular", 

4155 "Future Pl": "future plural", 

4156 "Past Sg": "past singular", 

4157 "Past Pl": "past plural", 

4158 "neuter singular": "neuter singular", # ony/Czech 

4159 # dar éisi/Old Irish, la/Old Irish 

4160 "3d sing. masc./neut., accusative": "third-person singular masculine neuter accusative", 

4161 "3d sing. masc./neut., dative": "third-person singular masculine neuter dative", 

4162 "3d sing. fem., accusative": "third-person singular feminine accusative", 

4163 "3d sing. fem., dative": "third-person singular feminine dative", 

4164 "3d person pl., dative": "third-person plural dative", 

4165 "3d person pl., accusative": "third-person plural accusative", 

4166 "nominative-accusative": "nominative accusative", # stand/Nynorsk 

4167 "compound-genitive": "in-compounds genitive", 

4168 "Common": { 

4169 "lang": "Arabic", 

4170 "then": "common-gender", 

4171 }, 

4172 "Affix": "affix", 

4173 # podnikat/Czech 

4174 "you (singular)": "second-person singular", 

4175 "you (polite)": "second-person singular formal", 

4176 "he/she/it": "third-person singular", 

4177 "we": { 

4178 "lang": "Czech", 

4179 "then": "first-person plural", 

4180 }, 

4181 "you (plural)": "second-person plural", 

4182 "they": { 

4183 "lang": "Czech", 

4184 "then": "third-person plural", 

4185 }, 

4186 "Active (Perfect)": "active participle", 

4187 "Masculine, feminine, neuter": "masculine feminine neuter", # čtyři/Czech 

4188 "participle (a7)": "participle", # hylja/Faroese 

4189 "participle (a8)": "participle", # lagt/Faroese 

4190 "participle (a34)": "participle", # falla/Faroese 

4191 "participle (a27)": "participle", # kvøða/Faroese 

4192 "participle (a18/a6)": "participle", # skreiða/Faroese 

4193 "participle (a18)": "participle", # ýa/Faroese 

4194 "participle (a5 (a39))": "participle", # skráseta/Faroese 

4195 # síggjast/Faroese 

4196 "eg": { 

4197 "lang": "Faroese", 

4198 "then": "first-person singular", 

4199 }, 

4200 "hann/hon/tað": "third-person singular", 

4201 "vit, tit, teir/tær/tey": "plural", 

4202 "mediopassive": "mediopassive", 

4203 "imperfect (indicative/subjunctive)/conditional": { # de-glicio/Welsh 

4204 "lang": "Welsh", 

4205 "then": ["imperfect indicative", "conditional"], 

4206 }, 

4207 "imperfect indicative/conditional": { # gwneud/Welsh 

4208 "lang": "Welsh", 

4209 "then": ["imperfect indicative", "conditional"], 

4210 }, 

4211 "present/future": { # darganfod/Welsh 

4212 "lang": "Welsh", 

4213 "then": ["present indicative", "future indicative"], 

4214 }, 

4215 "imperfect/conditional": { # darganfod/Welsh 

4216 "lang": "Welsh", 

4217 "then": ["imperfect indicative", "conditional"], 

4218 }, 

4219 "future/present habitual": { # adnabod/Welsh 

4220 "lang": "Welsh", 

4221 "then": ["future habitual", "present habitual"], 

4222 }, 

4223 # ϧⲉⲣϧⲉⲣ/Coptic 

4224 # Bohairic 

4225 "ⲁⲛⲟⲕ": "first-person singular", 

4226 # Removed duplicates 

4227 "ⲁⲛⲟⲛ": "first-person plural", 

4228 "-": { 

4229 "default": "", 

4230 "lang": "Coptic", 

4231 "then": "nominal", 

4232 "else": { 

4233 "lang": "Assamese", 

4234 "pos": "verb", 

4235 "then": "negative", 

4236 "else": {"lang": "Old Saxon", "pos": "pron", "then": ""}, 

4237 }, 

4238 }, 

4239 "focalising, precursive": "focalising", 

4240 # ⲃⲱⲗ/Coptic, different pronouns in different dialects 

4241 # Sahidic 

4242 # Removed duplicates 

4243 # Akhmimic 

4244 "ⲁⲛⲁⲕ": "first-person singular", 

4245 "ⲛ̄ⲧⲁⲕ": "second-person singular masculine", 

4246 "ⲛ̄ⲧⲁϥ": "third-person singular masculine", 

4247 "ⲛ̄ⲧⲁⲥ": "third-person singular feminine", 

4248 "ⲁⲛⲁⲛ": "first-person plural", 

4249 "ⲛ̄ⲧⲱⲧⲛⲉ": "second-person plural", 

4250 "ⲛ̄ⲧⲁⲩ": "third-person plural", 

4251 # Lycopolitan has a mixture of different forms 

4252 # Fayyumic 

4253 "ⲛⲧⲁⲕ": "second-person singular masculine", 

4254 "ⲛⲧⲁ": "second-person singular feminine", 

4255 "ⲛⲧⲁϥ": "third-person singular masculine", 

4256 "ⲛⲧⲁⲥ": "third-person singular feminine", 

4257 "ⲛⲧⲁⲧⲉⲛ": "second-person plural", 

4258 "ⲛⲧⲁⲩ": "third-person plural", 

4259 "circumstantial, focalising": "focalising", 

4260 # ignore Tagalog Affix column affixes 

4261 # manghalik/Tagalog 

4262 "Actor-secondary": "actor-secondary", 

4263 "mang-": { 

4264 "lang": "Tagalog", 

4265 "then": "", 

4266 }, 

4267 "-an": { 

4268 "lang": "Tagalog", 

4269 "then": "", 

4270 }, 

4271 "pang- -an": { 

4272 "lang": "Tagalog", 

4273 "then": "", 

4274 }, 

4275 "ikapang-": { 

4276 "lang": "Tagalog", 

4277 "then": "", 

4278 }, 

4279 "magpa-": { 

4280 "lang": "Tagalog", 

4281 "then": "", 

4282 }, 

4283 "papang- -in": { 

4284 "lang": "Tagalog", 

4285 "then": "", 

4286 }, 

4287 "⁠ pa- -an": { 

4288 "lang": "Tagalog", 

4289 "then": "", 

4290 }, 

4291 "ipagpa-": { 

4292 "lang": "Tagalog", 

4293 "then": "", 

4294 }, 

4295 "ipapang-": { 

4296 "lang": "Tagalog", 

4297 "then": "", 

4298 }, 

4299 "ikapagpapang-": { 

4300 "lang": "Tagalog", 

4301 "then": "", 

4302 }, 

4303 "papang- -an": { 

4304 "lang": "Tagalog", 

4305 "then": "", 

4306 }, 

4307 "makapang-": { 

4308 "lang": "Tagalog", 

4309 "then": "", 

4310 }, 

4311 "ma -an": { 

4312 "lang": "Tagalog", 

4313 "then": "", 

4314 }, 

4315 "maipang-": { 

4316 "lang": "Tagalog", 

4317 "then": "", 

4318 }, 

4319 "maikapang-": { 

4320 "lang": "Tagalog", 

4321 "then": "", 

4322 }, 

4323 "mapang- -an": { 

4324 "lang": "Tagalog", 

4325 "then": "", 

4326 }, 

4327 "makapagpa-": { 

4328 "lang": "Tagalog", 

4329 "then": "", 

4330 }, 

4331 "mapapang-": { 

4332 "lang": "Tagalog", 

4333 "then": "", 

4334 }, 

4335 "maipagpa-": { 

4336 "lang": "Tagalog", 

4337 "then": "", 

4338 }, 

4339 "maipapang-": { 

4340 "lang": "Tagalog", 

4341 "then": "", 

4342 }, 

4343 "maikapagpapang-": { 

4344 "lang": "Tagalog", 

4345 "then": "", 

4346 }, 

4347 "mapapang- -an": { 

4348 "lang": "Tagalog", 

4349 "then": "", 

4350 }, 

4351 "makipang-": { 

4352 "lang": "Tagalog", 

4353 "then": "", 

4354 }, 

4355 "makipagpa-": { 

4356 "lang": "Tagalog", 

4357 "then": "", 

4358 }, 

4359 # ipalinis/Tagalog 

4360 "mag-": { 

4361 "lang": "Tagalog", 

4362 "then": "", 

4363 }, 

4364 "-in": { 

4365 "lang": "Tagalog", 

4366 "then": "", 

4367 }, 

4368 "\u2060pag- -an": { 

4369 "lang": "Tagalog", 

4370 "then": "", 

4371 }, 

4372 "ipag-": { 

4373 "lang": "Tagalog", 

4374 "then": "", 

4375 }, 

4376 "ipang-": { 

4377 "lang": "Tagalog", 

4378 "then": "", 

4379 }, 

4380 "ikapag-": { 

4381 "lang": "Tagalog", 

4382 "then": "", 

4383 }, 

4384 "pag- -an": { 

4385 "lang": "Tagalog", 

4386 "then": "", 

4387 }, 

4388 "papag- -in": { 

4389 "lang": "Tagalog", 

4390 "then": "", 

4391 }, 

4392 "ipa-": { 

4393 "lang": "Tagalog", 

4394 "then": "", 

4395 }, 

4396 "ikapagpa-": { 

4397 "lang": "Tagalog", 

4398 "then": "", 

4399 }, 

4400 "\u2060pagpa- -an": { 

4401 "lang": "Tagalog", 

4402 "then": "", 

4403 }, 

4404 "\u2060papag- -an": { 

4405 "lang": "Tagalog", 

4406 "then": "", 

4407 }, 

4408 "makapag-": { 

4409 "lang": "Tagalog", 

4410 "then": "", 

4411 }, 

4412 "ma-": { 

4413 "lang": "Tagalog", 

4414 "then": "", 

4415 }, 

4416 "maipag-": { 

4417 "lang": "Tagalog", 

4418 "then": "", 

4419 }, 

4420 "maikapag-": { 

4421 "lang": "Tagalog", 

4422 "then": "", 

4423 }, 

4424 "mapapag-": { 

4425 "lang": "Tagalog", 

4426 "then": "", 

4427 }, 

4428 "maipa-": { 

4429 "lang": "Tagalog", 

4430 "then": "", 

4431 }, 

4432 "maikapagpa-": { 

4433 "lang": "Tagalog", 

4434 "then": "", 

4435 }, 

4436 "mapagpa- -an": { 

4437 "lang": "Tagalog", 

4438 "then": "", 

4439 }, 

4440 "mapapag- -an": { 

4441 "lang": "Tagalog", 

4442 "then": "", 

4443 }, 

4444 "makipag-": { 

4445 "lang": "Tagalog", 

4446 "then": "", 

4447 }, 

4448 "maki-": { 

4449 "lang": "Tagalog", 

4450 "then": "", 

4451 }, 

4452 # batikusin/Tagalog 

4453 "-um-": { 

4454 "lang": "Tagalog", 

4455 "then": "", 

4456 }, 

4457 "i-": { 

4458 "lang": "Tagalog", 

4459 "then": "", 

4460 }, 

4461 "ika-": { 

4462 "lang": "Tagalog", 

4463 "then": "", 

4464 }, 

4465 "pa- -in": { 

4466 "lang": "Tagalog", 

4467 "then": "", 

4468 }, 

4469 # umagnas/Tagalog 

4470 "um-": { 

4471 "lang": "Tagalog", 

4472 "then": "", 

4473 }, 

4474 # baybayin/Tagalog 

4475 "Directional": "directional", 

4476 # madali/Tagalog 

4477 "root": "root", 

4478 "superiority": { 

4479 "lang": "Tagalog", 

4480 "then": "superior", 

4481 }, 

4482 "inferiority": { 

4483 "lang": "Tagalog", 

4484 "then": "inferior", 

4485 }, 

4486 "equality": { 

4487 "lang": "Tagalog", 

4488 "then": "equal", 

4489 }, 

4490 # sumisid/Tagalog 

4491 "maka-": { 

4492 "lang": "Tagalog", 

4493 "then": "", 

4494 }, 

4495 "mapa-": { 

4496 "lang": "Tagalog", 

4497 "then": "", 

4498 }, 

4499 "mai-": { 

4500 "lang": "Tagalog", 

4501 "then": "", 

4502 }, 

4503 "maika-": { 

4504 "lang": "Tagalog", 

4505 "then": "", 

4506 }, 

4507 "mapag- -an": { 

4508 "lang": "Tagalog", 

4509 "then": "", 

4510 }, 

4511 # ipasagot/Tagalog 

4512 "ma- -an": { 

4513 "lang": "Tagalog", 

4514 "then": "", 

4515 }, 

4516 # ayusin/Tagalog 

4517 "mapag-": { 

4518 "lang": "Tagalog", 

4519 "then": "", 

4520 }, 

4521 "resultative": "resultative", # sloniti/Proto-Slavic 

4522 "imperfective aorist": "aorist imperfective", # byti/Proto-Slavic 

4523 "Masculine and feminine": "masculine feminine", # hwa/Old English 

4524 # ufuy/Afar 

4525 "Postpositioned forms": { 

4526 "lang": "Afar", 

4527 "then": "with-postposition", 

4528 }, 

4529 "l-case": "l-case", 

4530 "k-case": "k-case", 

4531 "t-case": "t-case", 

4532 "h-case": "h-case", 

4533 # icfide/Afar 

4534 "present progressive": "present progressive", 

4535 "future progressive": "future progressive", 

4536 "immediate future": "immediate-future", 

4537 "imperfect potential I": "imperfect potential potential-i", 

4538 "imperfect potential II": "imperfect potential potential-ii", 

4539 "perfect potential": "perfect potential", 

4540 "present conditional II": "present conditional conditional-ii", 

4541 "present conditional I": "present conditional conditional-i", 

4542 "irrealis": "irrealis", 

4543 "perfect conditional": "perfect conditional", 

4544 "V-affirmative": "v-affirmative", 

4545 "N-affirmative": "n-affirmative", 

4546 "conjunctive I": "conjunctive conjunctive-i", 

4547 "conjunctive II": "conjunctive conjunctive-ii", 

4548 "consultative": "consultative", 

4549 "-h converb": "h-converb converb", 

4550 "-i form": "i-form converb", 

4551 "-k converb": "k-converb converb", 

4552 "-in(n)uh converb": "innuh-converb converb", 

4553 "-innuk converb": "innuk-converb converb", 

4554 "V-focus": "v-focus participle indefinite", 

4555 "N-focus": "n-focus participle indefinite", 

4556 "indefinite participle": "indefinite participle", 

4557 # qunxa/Afar 

4558 "present indicative I": "present indicative indicative-i", 

4559 "present indicative II": "present indicative indicative-ii", 

4560 "past indicative I": "past indicative indicative-i", 

4561 "past indicative II": "past indicative indicative-ii", 

4562 "present potential": "present potential", 

4563 "dist. plural": "distributive plural", # nástro/Navajo 

4564 "duoplural": "duoplural", 

4565 # this separate duoplural number can't simply be broken into dual and plural 

4566 # because of tag-merging issues, like here: if Navajo has the default numbers 

4567 # ["singular", "plural"], then singular + duoplural has "dual" left over, 

4568 # if it has ["singular", "plural", "dual",] then all of them are merged BUT 

4569 # that implies that the non-duoplural "plural" could also be part of the merge. 

4570 "Unspecified": { 

4571 "lang": "Navajo", 

4572 "then": "indefinite-person", 

4573 }, 

4574 "Unspecified person": { 

4575 "lang": "Navajo", 

4576 "then": "indefinite-person", 

4577 }, 

4578 "Passive A": { 

4579 "lang": "Navajo", 

4580 "then": "passive", 

4581 }, 

4582 "Passive B": { 

4583 "lang": "Navajo", 

4584 "then": "passive agentive", 

4585 }, 

4586 "Spatial": { 

4587 "lang": "Navajo", 

4588 "then": "spatial-person", 

4589 }, 

4590 "Spatial person": { 

4591 "lang": "Navajo", 

4592 "then": "spatial-person", 

4593 }, 

4594 "ITERATIVE": "iterative", # náhádleeh/Navajo 

4595 "early": "archaic", # soule/Middle English 

4596 "nominative, accusative": "nominative accusative", # dale/Middle English 

4597 "subjunctive plural": "subjunctive plural", # been/Middle English 

4598 "Middle Voice": "middle-voice", # शृणोति/Sanskrit 

4599 "Middle": { 

4600 "lang": [ 

4601 "Hittite", 

4602 "Sanskrit", 

4603 "Pali", 

4604 ], 

4605 "then": "middle-voice", # अवति/Sanskrit 

4606 }, 

4607 "Active Voice": "active", 

4608 "Passive Voice": "passive", 

4609 "Potential mood / Optative mood": "potential", 

4610 # ვენეციური/Georgian 

4611 "nominative, genitive, instrumental": "nominative genitive instrumental", 

4612 "dative, adverbial": "dative adverbial", 

4613 "negative imperative": "negative imperative", # აბეზღებს/Georgian 

4614 # მათ/Georgian 

4615 "third-person": "third-person", 

4616 "personal pronouns": { 

4617 "lang": "Georgian", 

4618 "then": "", 

4619 }, 

4620 "relative pronouns": { 

4621 "lang": "Georgian", 

4622 "then": "", 

4623 }, 

4624 "this": "proximal pronoun singular", 

4625 "that": "distal pronoun singular", 

4626 "these": "proximal pronoun plural", 

4627 "those": "distal pronoun plural", 

4628 # დაწერს/Georgian 

4629 "masdar": "noun-from-verb", # also in Arabic 

4630 "transitive screeves": "transitive", 

4631 "intransitive screeves": "intransitive", 

4632 "privative participle": "privative participle", 

4633 "მე": { 

4634 "lang": "Georgian", 

4635 "then": "first-person singular", 

4636 }, 

4637 "შენ": { 

4638 "lang": "Georgian", 

4639 "then": "second-person singular", 

4640 }, 

4641 "ის": { 

4642 "lang": "Georgian", 

4643 "then": "third-person singular", 

4644 }, 

4645 "ჩვენ": { 

4646 "lang": "Georgian", 

4647 "then": "first-person plural", 

4648 }, 

4649 "თქვენ": { 

4650 "lang": "Georgian", 

4651 "then": "second-person plural", 

4652 }, 

4653 "ისინი": { 

4654 "lang": "Georgian", 

4655 "then": "third-person plural", 

4656 }, 

4657 "მან": { 

4658 "lang": "Georgian", 

4659 "then": "third-person singular", 

4660 }, 

4661 "მათ": { 

4662 "lang": "Georgian", 

4663 "then": "third-person plural", 

4664 }, 

4665 "მას": { 

4666 "lang": "Georgian", 

4667 "then": "third-person singular", 

4668 }, 

4669 # ~ "": { 

4670 # ~ "lang": "Georgian", 

4671 # ~ "then": "", 

4672 # ~ }, 

4673 "inversion": "inversion", 

4674 # maanaadad/Ojibwe 

4675 "singular (0s)": "singular inanimate", 

4676 "obviative singular (0's)": "obviative inanimate singular", 

4677 "plural (0p)": "plural inanimate", 

4678 "obviative plural (0'p)": "obviative plural inanimate", 

4679 "singular or plural (0)": "singular plural inanimate", 

4680 "obviative singular or plural (0')": "obviative singular plural inanimate", 

4681 # a ܒܢܓܐ/Classical_Syriac 

4682 "1st c. sg. (my)": "first-person singular common-gender possessive", 

4683 "2nd m. sg. (your)": "second-person singular masculine possessive", 

4684 "2nd f. sg. (your)": "second-person singular feminine possessive", 

4685 "3rd m. sg. (his)": "third-person singular masculine possessive", 

4686 "3rd f. sg. (her)": "third-person singular feminine possessive", 

4687 "1st c. pl. (our)": "first-person common-gender plural possessive", 

4688 "2nd m. pl. (your)": "second-person plural masculine possessive", 

4689 "2nd f. pl. (your)": "second-person plural feminine possessive", 

4690 "3rd m. pl. (their)": "third-person plural masculine possessive", 

4691 "3rd f. pl. (their)": "third-person plural feminine possessive", 

4692 # vágyhat/Hungarian 

4693 "3rd person sg, 2nd person sg formal": [ 

4694 "third-person singular", 

4695 "second-person singular formal", 

4696 ], 

4697 "3rd person pl, 2nd person pl formal": [ 

4698 "third-person plural", 

4699 "second-person plural formal", 

4700 ], 

4701 # ichwane/Zulu 

4702 "Possessive forms": "possessive", 

4703 "Full form": "full-form", 

4704 "Simple form": "basic-form", 

4705 "Substantive": { 

4706 "lang": "Zulu", 

4707 "if": "possessive", 

4708 "then": "possessive-substantive", 

4709 }, 

4710 "Modifier": { 

4711 "lang": [ 

4712 "Zulu", 

4713 "Swazi", 

4714 ], 

4715 # ~ "if": "possessive", 

4716 "then": "", 

4717 "else": { 

4718 "lang": "Xhosa", # magqagala 

4719 "then": "attributive", 

4720 }, 

4721 }, 

4722 "Copulative": "copulative", 

4723 "present negative": "present negative", # hoteti/Slovene 

4724 "Construct state": "construct", # ziqqurratum/Akkadian 

4725 # marāṣum/Akkadian 

4726 "Adjective": "adjective", 

4727 "1.sg": "first-person singular", 

4728 "2.sg": "second-person singular", 

4729 "3.sg": "third-person singular", 

4730 "1.pl": "first-person plural", 

4731 "2.pl": "second-person plural", 

4732 "3.pl": "third-person plural", 

4733 # pats/Latvian 

4734 "Masculine Singular": "masculine singular", 

4735 "Feminine Singular": "feminine singular", 

4736 "Masculine Plural": "masculine plural", 

4737 "Feminine Plural": "feminine plural", 

4738 "⁠ ka- -an": { 

4739 "lang": "Tagalog", 

4740 "then": "", 

4741 }, # maligaw/Tagalog 

4742 # AFAICT the following is just the idiosyncracy of a singular editor. 

4743 # No real idea of what "analytical" means in this context. It's not 

4744 # standard terminology for specific forms, but I guess it could 

4745 # stand for some kind of free-standing form... 

4746 "analytical": { # immee/Manx 

4747 "lang": "Manx", 

4748 "then": "analytic", 

4749 }, 

4750 # alcun/Old French 

4751 "Subject": "subjective", 

4752 # styri/Lower Sorbian 

4753 "Masculine inanimate/ feminine/neuter": [ 

4754 "masculine inanimate", 

4755 "feminine neuter", 

4756 ], 

4757 "Masculine animate": "masculine animate", 

4758 # glab/Breton 

4759 "unmutated": "unmutated", 

4760 "hard": { 

4761 "lang": "Breton", 

4762 "then": "mutation-hard", 

4763 }, 

4764 "0": { # gwildronañ/Breton 

4765 "lang": "Breton", 

4766 "pos": "verb", 

4767 "then": "impersonal", 

4768 }, 

4769 "Impersonal forms": { 

4770 "lang": "Breton", 

4771 "pos": "verb", 

4772 "then": "*", 

4773 }, 

4774 "Mutated forms": { 

4775 "lang": "Breton", 

4776 "pos": "verb", 

4777 "then": "dummy-reset-headers", 

4778 }, 

4779 # дөрвөл/Mongolian 

4780 "substantive genitive": "possessive-substantive genitive", 

4781 "attributive locative": "attributive locative", 

4782 # сэрээх/Mongolian 

4783 "Future participle": "future participle", 

4784 "Confirmative": "confirmative", 

4785 "Resultative": "resultative", 

4786 "Imperfective converb": "imperfective converb", 

4787 "possessive particle": "possessive particle", # чи/Mongolian 

4788 # কোবোৱা/Assamese 

4789 "Gerund, Past participle, Agentive": [ 

4790 "gerund", 

4791 "past participle", 

4792 "agentive", 

4793 ], 

4794 "Progressive participle": "progressive participle", 

4795 "t": { 

4796 "lang": "Assamese", 

4797 "pos": "verb", 

4798 "then": "", 

4799 }, 

4800 "মই moi": { 

4801 "lang": "Assamese", 

4802 "pos": "verb", 

4803 "then": "first-person", 

4804 }, 

4805 "তই toi": { 

4806 "lang": "Assamese", 

4807 "pos": "verb", 

4808 "then": "familiar impolite second-person", 

4809 }, 

4810 "তুমি tumi": { 

4811 "lang": "Assamese", 

4812 "pos": "verb", 

4813 "then": "familiar second-person", 

4814 }, 

4815 "আপুনি apuni": { 

4816 "lang": "Assamese", 

4817 "pos": "verb", 

4818 "then": "honorific second-person", 

4819 }, 

4820 "তেওঁ etc teü͂": { 

4821 "lang": "Assamese", 

4822 "pos": "verb", 

4823 "then": "honorific third-person", 

4824 }, 

4825 "সি ♂, তাই ♀ etc xi ♂, tai ♀": { 

4826 "lang": "Assamese", 

4827 "pos": "verb", 

4828 "then": "third-person", 

4829 }, 

4830 "আমি ami": { 

4831 "lang": "Assamese", 

4832 "pos": "verb", 

4833 "then": "first-person", 

4834 }, 

4835 "তহঁত tohõt": { 

4836 "lang": "Assamese", 

4837 "pos": "verb", 

4838 "then": "familiar impolite second-person", 

4839 }, 

4840 "তোমালোক tümalük": { 

4841 "lang": "Assamese", 

4842 "pos": "verb", 

4843 "then": "familiar second-person", 

4844 }, 

4845 "আপোনালোক apünalük": { 

4846 "lang": "Assamese", 

4847 "pos": "verb", 

4848 "then": "honorific second-person", 

4849 }, 

4850 "তেওঁলোক teü͂lük": { 

4851 "lang": "Assamese", 

4852 "pos": "verb", 

4853 "then": "honorific third-person", 

4854 }, 

4855 "সিহঁত etc xihõt": { 

4856 "lang": "Assamese", 

4857 "pos": "verb", 

4858 "then": "third-person", 

4859 }, 

4860 "তহঁতে tohõte": { 

4861 "lang": "Assamese", 

4862 "pos": "verb", 

4863 "then": "familiar impolite second-person", 

4864 }, 

4865 "তোমালোকে tümalüke": { 

4866 "lang": "Assamese", 

4867 "pos": "verb", 

4868 "then": "familiar second-person", 

4869 }, 

4870 "আপোনালোকে apünalüke": { 

4871 "lang": "Assamese", 

4872 "pos": "verb", 

4873 "then": "honorific second-person", 

4874 }, 

4875 "তেওঁলোকে teü͂lüke": { 

4876 "lang": "Assamese", 

4877 "pos": "verb", 

4878 "then": "honorific third-person", 

4879 }, 

4880 "সিহঁতে etc xihõte": { 

4881 "lang": "Assamese", 

4882 "pos": "verb", 

4883 "then": "third-person", 

4884 }, 

4885 # gözde/Turkish predicative adjective table 

4886 "ben (I am)": "first-person singular", 

4887 "sen (you are)": "second-person singular", 

4888 "o (he/she/it is)": "third-person singular", 

4889 "biz (we are)": "first-person plural", 

4890 "siz (you are)": "second-person plural", 

4891 "onlar (they are)": "third-person plural", 

4892 "ben (I was)": "first-person singular", 

4893 "sen (you were)": "second-person singular", 

4894 "o (he/she/it was)": "third-person singular", 

4895 "biz (we were)": "first-person plural", 

4896 "siz (you were)": "second-person plural", 

4897 "onlar (they were)": "third-person plural", 

4898 "ben (if I)": "first-person singular", 

4899 "sen (if you)": "second-person singular", 

4900 "o (if he/she/it)": "third-person singular", 

4901 "biz (if we)": "first-person plural", 

4902 "siz (if you)": "second-person plural", 

4903 "onlar (if they)": "third-person plural", 

4904 "positive, declarative": "", 

4905 "positive, interrogative": "interrogative", 

4906 "negative, declarative": "negative", 

4907 "negative, interrogative": "negative interrogative", 

4908 # a راتلل/Pashto 

4909 "زۀ": "first-person singular", 

4910 "تۀ": { 

4911 "if": "second-person singular masculine", 

4912 "then": "second-person singular masculine", 

4913 "else": { 

4914 "if": "second-person singular feminine", 

4915 "then": "second-person singular feminine", 

4916 "else": "second-person singular", 

4917 }, 

4918 }, 

4919 "دی / هغه": "third-person singular masculine", 

4920 "دا / هغه": "third-person singular feminine", 

4921 "موږ": "first-person plural", 

4922 "تاسې": "second-person plural", 

4923 "دوی / هغوی": "third-person plural", 

4924 "present imperfective": "present imperfective", 

4925 "present perfective": "present perfective", 

4926 "تاسو": "second-person plural", 

4927 # This specific form seems like the addition of someone later in a 

4928 # new part of the table, it's a Northern Pashto variant, so someone 

4929 # might change it later, unless تاسو is part of the "command" 

4930 # paradigm in general. 

4931 # a ہاوُن/Kashmiri 

4932 "Feminine plural": "feminine plural", 

4933 "Completed": "completive", 

4934 "بہٕ": "first-person singular", 

4935 "ژٕ": "second-person singular", 

4936 "سُہ, سۄ": "third-person singular", 

4937 "أسؠ": "first-person plural", 

4938 "تۄہؠ, تۆہؠ": "second-person plural", 

4939 "تِم, تِمہٕ": "third-person plural", 

4940 "Nominative subject": "with-nominative", 

4941 "Ergative subject": "with-ergative", 

4942 "Simple present": "present", 

4943 "Past continuous": "past continuative", 

4944 "Future continuous": "future continuative", 

4945 "m or f": "masculine feminine", 

4946 "Simple future": "future", 

4947 # Ergatives 

4948 "مےٚ": "first-person singular", 

4949 "ژےٚ": "second-person singular", 

4950 "تٔمؠ, تَمہِ": "third-person singular", 

4951 "اَسہِ": "first-person plural", 

4952 "تۄہہِ": "second-person plural", 

4953 "تِمَو": "third-person plural", 

4954 "m sg": "masculine singular", 

4955 "m pl": "masculine plural", 

4956 "f sg": "feminine singular", 

4957 "f pl": "feminine plural", 

4958 "Obligatory": "obligative", 

4959 "Simple Conditional": "conditional", 

4960 "Conditional past continuous": "past continuative conditional", 

4961 "Conditional past perfect": "past perfect conditional", 

4962 # XXX return to Kashmiri after next wiktionary dump 

4963 # дрьзнѫти/Old Church Slavonic 

4964 "азъ (azŭ)": "first-person singular", 

4965 "тꙑ (ty)": "second-person singular", 

4966 "тъ (tŭ)": "third-person singular", 

4967 "вѣ (vě)": "first-person dual", 

4968 "ва (va)": "second-person dual", 

4969 "та (ta)": "third-person dual", 

4970 "мꙑ (my)": "first-person plural", 

4971 "вꙑ (vy)": "second-person plural", 

4972 "ти (ti)": "third-person plural", 

4973 # əhli-həsəd/Azerbaijani 

4974 "broken plural": "broken-form plural", 

4975 # bədən/Azerbaijani 

4976 "broken": { 

4977 "lang": "Azerbaijani", 

4978 # ~ "if": "plural", # doesn't work 

4979 "then": "broken-form plural", 

4980 }, 

4981 "sound": { 

4982 "lang": "Azerbaijani", 

4983 "then": "", 

4984 }, 

4985 # 𒉿𒀠𒄴𒍣/Hittite 

4986 "Noun": { 

4987 "lang": "Hittite", 

4988 "pos": "verb", 

4989 "then": "noun-from-verb", 

4990 }, 

4991 # ampesar/Ladino 

4992 "io / yo": { 

4993 "lang": "Ladino", 

4994 "then": "first-person singular", 

4995 }, 

4996 "él / ella": { 

4997 "lang": "Ladino", 

4998 "then": "third-person singular", 

4999 }, 

5000 "mosotros mosós": { 

5001 "lang": "Ladino", 

5002 "then": "first-person plural", 

5003 }, 

5004 "vosotros vosós / vós": { 

5005 "lang": "Ladino", 

5006 "then": "second-person plural", 

5007 }, 

5008 "ellos / ellas": { 

5009 "lang": "Ladino", 

5010 "then": "third-person plural", 

5011 }, 

5012 # চাওয়া/Bengali 

5013 "progressive participle": "progressive participle", 

5014 "habitual participle": "habitual participle", 

5015 "conditional participle": "conditional participle", 

5016 "আমি (ami)": "first-person", 

5017 "আমরা (amra)": "first-person", 

5018 "তুই (tui)": "second-person impolite", 

5019 "তোরা (tora)": "second-person impolite", 

5020 "তুমি (tumi)": "second-person", 

5021 "তোমরা (tomra)": "second-person", 

5022 "এ (e), ও (o), সে (she)": "third-person", 

5023 "এরা (era), ওরা (ora), তারা (tara)": "third-person", 

5024 "আপনি (apni)": "second-person formal", 

5025 "আপনারা (apnara)": "second-person formal", 

5026 "ইনি (ini), উনি (uni), তিনি (tini)": "third-person formal", 

5027 "এঁরা (ẽra), ওঁরা (õra), তাঁরা (tãra)": "third-person formal", 

5028 # schlaa/Alemannic German 

5029 "1ˢᵗ person ich, i": "first-person singular", 

5030 "3ʳᵈ person er/si/es": "third-person singular", 

5031 "2ⁿᵈ person ir": "second-person plural", 

5032 # remove duplicates 

5033 # natüürlic/Alemannic German 

5034 "Strong inflection": "strong", 

5035 # d/Alemannic German 

5036 "Nominative/Accusative": "nominative accusative", 

5037 # ik/German Low German 

5038 "(Genitive)": "genitive rare", 

5039 "m f": "masculine feminine", # etwer/German 

5040 # фи/Romanian 

5041 "еу": { 

5042 "lang": "Romanian", 

5043 "pos": "verb", 

5044 "then": "first-person singular", 

5045 }, 

5046 "ту": { 

5047 "lang": [ 

5048 "Tajik", 

5049 "Romanian", 

5050 ], 

5051 "pos": "verb", 

5052 "then": "second-person singular", 

5053 }, 

5054 "ел/я": { 

5055 "lang": "Romanian", 

5056 "pos": "verb", 

5057 "then": "third-person singular", 

5058 }, 

5059 "нои": { 

5060 "lang": "Romanian", 

5061 "pos": "verb", 

5062 "then": "first-person plural", 

5063 }, 

5064 "вои": { 

5065 "lang": "Romanian", 

5066 "pos": "verb", 

5067 "then": "second-person plural", 

5068 }, 

5069 "еи/еле": { 

5070 "lang": "Romanian", 

5071 "pos": "verb", 

5072 "then": "third-person plural", 

5073 }, 

5074 "compound perfect": { # has mostly replaced the simple perfect 

5075 "lang": "Romanian", 

5076 "then": "perfect", 

5077 }, 

5078 # idealistesch/Luxembourgish 

5079 "attributive and/or after determiner": "attributive with-determiner", 

5080 "independent without determiner": "without-determiner", 

5081 "after any declined word": "with-head", 

5082 # hunn/Luxembourgish 

5083 "1ˢᵗ person ech": "first-person singular", 

5084 "2ⁿᵈ person du": "second-person singular", 

5085 "3ʳᵈ person hien/si/hatt": "third-person singular", 

5086 "1ˢᵗ person mir": "first-person plural", 

5087 "2ⁿᵈ person dir": "second-person plural", 

5088 "3ʳᵈ person si": "third-person plural", 

5089 "present simple": "present", 

5090 "future simple": "future", 

5091 # чӧсмасьны/Komi-Zyrian 

5092 "Direct past tense": "direct past", 

5093 "Reported past tense": "reported past", 

5094 "Imperfect participle": "imperfect participle", 

5095 "Caritive participle": "caritive participle", 

5096 # ~ "^(*)) The impersonal reported past is"\ 

5097 # ~ "expressed using the third singular form."\ 

5098 # ~ " ^(**)) The first person imperative is"\ 

5099 # ~ " expressed using the first person future"\ 

5100 # ~ " form. ^(***)) Any form ending in -ӧй"\ 

5101 # ~ " has an alternative form ending in -ӧ."\ 

5102 # ~ " ^(****)) The imperfect and perfect"\ 

5103 # ~ " participles have alternative forms"\ 

5104 # ~ " with a paragogic -а.": 

5105 "^(*)) 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? 

5106 # ми/Komi-Zyrian 

5107 "long dative": "dative", 

5108 "short dative": "dative", 

5109 # сы/Komi-zyrian 

5110 "short nominative": "nominative", 

5111 # ehun/Basque 

5112 "anim.": "animate", 

5113 "inanim.": "inanimate", 

5114 # erakutsi/Basque 

5115 "NORK": { 

5116 "lang": "Basque", 

5117 "then": "ergative", 

5118 }, 

5119 "NOR": { 

5120 "lang": "Basque", 

5121 "then": "absolutive", 

5122 }, 

5123 "NORI": { 

5124 "lang": "Basque", 

5125 "then": "dative", 

5126 }, 

5127 "nik": { 

5128 "lang": "Basque", 

5129 "then": "first-person singular", 

5130 }, 

5131 "hik": { 

5132 "lang": "Basque", 

5133 "then": "second-person singular informal", 

5134 }, 

5135 "hark": { 

5136 "lang": "Basque", 

5137 "then": "third-person singular", 

5138 }, 

5139 "guk": { 

5140 "lang": "Basque", 

5141 "then": "first-person plural", 

5142 }, 

5143 "zuk": { 

5144 "lang": "Basque", 

5145 "then": "second-person singular", 

5146 }, 

5147 "zuek": { 

5148 "lang": "Basque", 

5149 "then": "second-person plural", 

5150 }, 

5151 "haiek": { 

5152 "lang": "Basque", 

5153 "then": "third-person plural", 

5154 }, 

5155 "hura": { 

5156 "lang": "Basque", 

5157 "then": "third-person singular", 

5158 }, 

5159 "niri": { 

5160 "lang": "Basque", 

5161 "then": "first-person singular", 

5162 }, 

5163 "hiri": { 

5164 "lang": "Basque", 

5165 "then": "second-person singular informal", 

5166 }, 

5167 "hari": { 

5168 "lang": "Basque", 

5169 "then": "third-person singular", 

5170 }, 

5171 "guri": { 

5172 "lang": "Basque", 

5173 "then": "first-person plural", 

5174 }, 

5175 "zuri": { 

5176 "lang": "Basque", 

5177 "then": "second-person singular", 

5178 }, 

5179 "zuei": { 

5180 "lang": "Basque", 

5181 "then": "second-person plural", 

5182 }, 

5183 "haiei": { 

5184 "lang": "Basque", 

5185 "then": "third-person plural", 

5186 }, 

5187 "future cons.": "future consequential", 

5188 "past cons.": "past consequential", 

5189 "2nd sg inf": "second-person singular informal", 

5190 # ISP/Norwegian 

5191 "Bokmål m": { 

5192 "lang": "Norwegian Bokmål", 

5193 "then": "masculine", 

5194 "else": "masculine Bokmål", 

5195 }, 

5196 "Bokmål f": { 

5197 "lang": "Norwegian Bokmål", 

5198 "then": "feminine", 

5199 "else": "feminine Bokmål", 

5200 }, 

5201 "Bokmål c": { 

5202 "lang": "Norwegian Bokmål", 

5203 "then": "common-gender", 

5204 "else": "common-gender Bokmål", 

5205 }, 

5206 "Bokmål n": { 

5207 "lang": "Norwegian Bokmål", 

5208 "then": "neuter", 

5209 "else": "neuter Bokmål", 

5210 }, 

5211 "Bokmål": { 

5212 "lang": "Norwegian Bokmål", 

5213 "then": "", 

5214 "else": "Bokmål", 

5215 }, 

5216 "Nynorsk f": { 

5217 "lang": "Norwegian Nynorsk", 

5218 "then": "feminine", 

5219 "else": "feminine Nynorsk", 

5220 }, 

5221 "Nynorsk m": { 

5222 "lang": "Norwegian Nynorsk", 

5223 "then": "masculine", 

5224 "else": "masculine Nynorsk", 

5225 }, 

5226 "Nynorsk n": { 

5227 "lang": "Norwegian Nynorsk", 

5228 "then": "neuter", 

5229 "else": "neuter Nynorsk", 

5230 }, 

5231 "Nynorsk c": { 

5232 "lang": "Norwegian Nynorsk", 

5233 "then": "common-gender", 

5234 "else": "common-gender Nynorsk", 

5235 }, 

5236 "Nynorsk": { 

5237 "lang": "Norwegian Nynorsk", 

5238 "then": "", 

5239 "else": "Nynorsk", 

5240 }, 

5241 # του/Greek 

5242 "weak": "weak", 

5243 "strong": "strong", 

5244 "infinitive — present)": "present infinitive", # eh/Albanian 

5245 "infinitive — perfect)": "perfect infinitive", 

5246 "past perfect I": "past past-i perfect", 

5247 "past perfect II": "past past-ii perfect", 

5248 "future I": "future future-i", 

5249 "future II": "future future-ii", 

5250 "future perfect I": "future future-i perfect", 

5251 "future perfect II": "future future-ii perfect", 

5252 "ato (3rd person feminine plural)": "third-person feminine plural", # ato/Albanian 

5253 "ai (3rd person masculine singular)": "third-person masculine singular", # ai 

5254 "ti (2nd person singular)": "second-person singular", # ti 

5255 "ata (3rd person masculine plural)": "third-person masculine plural", # ata 

5256 "ajo (3rd person feminine singular)": " third-person feminine singular", # ajo 

5257 # Tagalog small verb tables, like magwahil/Tagalog 

5258 # need something to tag a td-cell with stuff like 

5259 # "actor" or "object" in it, or else it'll cause 

5260 # NO-TAGS. Unfortunately, only "actor" is tagged 

5261 # because "object" and others are parsed as headers. 

5262 # At least this way, there is no error message, but 

5263 # it is inconsistently applied. 

5264 # Using "focus": "detail", in valid_tags seems to 

5265 # do the trick and stop 'focus' from bleeding as it 

5266 # doesn't with "misc". 

5267 "Trigger": { 

5268 "lang": "Tagalog", 

5269 "then": "focus", 

5270 }, 

5271 # Arabic number paradigm markers decomposed after changes in the parser: 

5272 # a ـًى (-an) => ar-infl-an-maksura 

5273 # a ـًا (-an) => ar-infl-an-alef 

5274 "basic broken plural diptote": "broken-form plural diptote", 

5275 "basic broken plural triptote": "broken-form plural triptote", # a حجرة/Arabic 

5276 "basic collective triptote": "collective triptote", 

5277 "basic singular diptote": "singular diptote", 

5278 "basic singular triptote": "singular triptote", 

5279 "broken plural diptote in ـٍ (-in)": "broken-form plural diptote ar-infl-in", # a سحلية/Arabic 

5280 "broken plural in ـًى (-an)": "broken-form plural ar-infl-an-maksura", # a بلوة/Arabic 

5281 "broken plural invariable": "broken-form plural invariable", # a ضحية/Arabic 

5282 "broken plural triptote in ـَة (-a)": "broken-form plural triptote ar-infl-a", # a رصيد/Arabic 

5283 "collective invariable": "collective invariable", 

5284 "diptote triptote": [ 

5285 "diptote", 

5286 "triptote", 

5287 ], 

5288 "singular diptote in ـٍ (-in)": "singular diptote ar-infl-in", 

5289 "singular diptote in ـَاة (-āh)": "singular diptote ar-infl-ah", # a حماة/Arabic 

5290 "singular diptote in ـَة (-a)": "singular diptote ar-infl-a", # a أرمية/Arabic 

5291 "singular in ـًا (-an)": "singular ar-infl-an-alef", 

5292 "singular in ـًى (-an)": "singular ar-infl-an-maksura", # a مدى/Arabic 

5293 "singular invariable": "singular invariable", 

5294 "singular long construct": "singular long-construct", # a ذو الحجة/Arabic 

5295 "singular of irregular noun": "singular irregular", 

5296 "singular triptote in ـٍ (-in)": "singular triptote ar-infl-in", 

5297 "singular triptote in ـَاة (-āh)": "singular triptote ar-infl-ah", # a قناة السويس/Arabic 

5298 "singular triptote in ـَة (-a)": "singular triptote ar-infl-a", # a حاجة/Arabic 

5299 "singulative triptote in ـَة (-a)": "singulative triptote ar-infl-a", # a جثجاث/Arabic 

5300 "sound feminine paucal": "sound-form feminine paucal", 

5301 "sound feminine plural": "sound-form feminine plural", 

5302 "sound masculine plural": "sound-form masculine plural", 

5303 "sound masculine paucal": "sound-form masculine paucal", 

5304 "basic broken paucal triptote": "broken-form paucal triptote", 

5305 "sound plural in ـَوْنَ (-awna)": "sound-form plural ar-infl-awna", 

5306 "broken plural triptote in ـَاة (-āh)": "broken-form plural triptote ar-infl-ah", 

5307 "basic collective diptote": "collective diptote", 

5308 "basic singulative triptote": "singulative triptote", 

5309 "basic singulative diptote": "singulative diptote", 

5310 "singulative triptote in ـَاة (-āh)": "singulative triptote ar-infl-ah", 

5311 "collective triptote in ـَة (-a)": "collective triptote ar-infl-a", 

5312 "collective in ـًا (-an)": "collective ar-infl-an-alef", 

5313 "broken plural triptote in ـٍ (-in)": "broken-form plural triptote ar-infl-in", 

5314 "broken plural in ـًا (-an)": "broken-form plural ar-infl-an-alef", 

5315 "broken plural in ـًى (-an)‎": "broken-form plural ar-infl-an-maksura", 

5316 "plural of irregular noun": "plural irregular", 

5317 "collective in ـًى (-an)": "collective ar-infl-an-maksura", 

5318 "broken paucal triptote in ـَة (-a)": "broken-form paucal triptote ar-infl-a", 

5319 "singular of irregular pronoun": "singular irregular pronoun", 

5320 "basic broken paucal diptote": "broken-form paucal diptote", 

5321 # teie/Estonian 

5322 "Partitive": "partitive", 

5323 "Inessive": "inessive", 

5324 "Elative": "elative", 

5325 "Allative": "allative", 

5326 "Adessive": "adessive", 

5327 "Translative": "translative", 

5328 "Essive": "essive", 

5329 "Abessive": "abessive", 

5330 "Comitative": "comitative", 

5331 # ащема/Moksha 

5332 "one possession": "possessive possessed-single", 

5333 "one or multiple possessions": "possessive possessed-single possessed-many", 

5334 # XXX the big headers don't express 

5335 "Participles➤": "participle", # άρχω/Greek 

5336 "Active Present ➤": "present", 

5337 "Passive Present ➤": "passive present", 

5338 # 알리다/Korean 

5339 "Formal non-polite": "formal", 

5340 "Informal non-polite": "informal", 

5341 "Informal polite": "informal polite", 

5342 "Formal polite": "formal polite", 

5343 "Middle/Passive": "middle-voice passive", # पिबति/Sanskrit 

5344 "Singular base form": "singular base-form", # a ܒܪܘܢܐ/Assyrian Neo-Aramaic 

5345 "Plural base form": "plural base-form", 

5346 "substantive": { 

5347 "lang": [ 

5348 "Chechen", 

5349 "Ingush", 

5350 ], 

5351 "pos": "noun", 

5352 "then": "substantive-case", 

5353 }, 

5354 "similitude": "similitude", # a ئانا/Uyghur 

5355 "equivalence": "equal", 

5356 "Declension of locative-qualitative form": "locative-qualitative", 

5357 "representative": "representative", 

5358 "Declension of representative form": "representative", 

5359 # When copy-pasting headers from Wiktionary with a browser, 

5360 # remember to replace the "downgraded"-superscripts into 

5361 # unicode superscript characters here, if the copy-pasted 

5362 # content doesn't have super-scripts. Things with <sup></sup> 

5363 # get automatically translated into those in clean.py, and 

5364 # these entries have to match them. If copy-pasting from 

5365 # error messages in the shell, you get the 'correct' characters. 

5366 "2ⁿᵈperson singular ordinary": { 

5367 "lang": "Uyghur", 

5368 "pos": "noun", 

5369 "then": "second-person singular possessive", 

5370 }, 

5371 "2ⁿᵈperson plural ordinary": { 

5372 "lang": "Uyghur", 

5373 "pos": "noun", 

5374 "then": "second-person plural possessive", 

5375 }, 

5376 "2ⁿᵈperson singular refined": { 

5377 "lang": "Uyghur", 

5378 "pos": "noun", 

5379 "then": "second-person singular formal possessive", 

5380 }, 

5381 "2ⁿᵈperson plural refined": { 

5382 "lang": "Uyghur", 

5383 "pos": "noun", 

5384 "then": "second-person plural formal possessive", 

5385 }, 

5386 "2ⁿᵈperson singular & plural respectful (your)": { 

5387 "lang": "Uyghur", 

5388 "pos": "noun", 

5389 "then": "second-person polite possessive", 

5390 }, 

5391 "1ˢᵗ person plural": { 

5392 "lang": "Uyghur", 

5393 "pos": "noun", 

5394 "then": "first-person plural possessive", 

5395 "else": "first-person plural", 

5396 }, 

5397 "3ʳᵈ person (his, her, its, their)": { 

5398 "lang": "Uyghur", 

5399 "pos": "noun", 

5400 "then": "third-person singular possessive", 

5401 }, 

5402 "1ˢᵗ person singular": { 

5403 "lang": "Uyghur", 

5404 "pos": "noun", 

5405 "then": "first-person singular possessive", 

5406 "else": "first-person singular", 

5407 }, 

5408 # -raihu/Kikuyu 

5409 # Class [singular class], Class [plural class] 

5410 "Class 1, Class 2": { 

5411 "lang": "Kikuyu", 

5412 "if": "singular", 

5413 "then": "class-1", 

5414 "else": "class-2", 

5415 }, 

5416 "Class 3, Class 4": { 

5417 "lang": "Kikuyu", 

5418 "if": "singular", 

5419 "then": "class-3", 

5420 "else": "class-4", 

5421 }, 

5422 "Class 5, Class 6": { 

5423 "lang": "Kikuyu", 

5424 "if": "singular", 

5425 "then": "class-5", 

5426 "else": "class-6", 

5427 }, 

5428 "Class 7, Class 8": { 

5429 "lang": "Kikuyu", 

5430 "if": "singular", 

5431 "then": "class-7", 

5432 "else": "class-8", 

5433 }, 

5434 "Class 9, Class 10": { 

5435 "lang": "Kikuyu", 

5436 "if": "singular", 

5437 "then": "class-9", 

5438 "else": "class-10", 

5439 }, 

5440 "Class 11, Class 10": { 

5441 "lang": "Kikuyu", 

5442 "if": "singular", 

5443 "then": "class-11", 

5444 "else": "class-10", 

5445 }, 

5446 "Class 12, Class 13": { 

5447 "lang": "Kikuyu", 

5448 "if": "singular", 

5449 "then": "class-12", 

5450 "else": "class-13", 

5451 }, 

5452 "Class 14, Class 6": { 

5453 "lang": "Kikuyu", 

5454 "if": "singular", 

5455 "then": "class-14", 

5456 "else": "class-6", 

5457 }, 

5458 "Class 15, Class 6": { 

5459 "lang": "Kikuyu", 

5460 "if": "singular", 

5461 "then": "class-15", 

5462 "else": "class-6", 

5463 }, 

5464 "2nd person f": "second-person feminine", 

5465 "ја": { # THIS IS CYRILLIC!! Not Latin! подразумевати/Serbo-Croatian 

5466 "lang": "Serbo-Croatian", 

5467 "then": "first-person singular", 

5468 }, 

5469 "он / она / оно": { 

5470 "lang": "Serbo-Croatian", 

5471 "then": "third-person singular", 

5472 }, 

5473 "ми": { 

5474 "lang": "Serbo-Croatian", 

5475 "then": "first-person plural", 

5476 }, 

5477 "ви": { 

5478 "lang": "Serbo-Croatian", 

5479 "then": "second-person plural", 

5480 }, 

5481 "они / оне / она": { 

5482 "lang": "Serbo-Croatian", 

5483 "then": "third-person plural", 

5484 }, 

5485 "conditional¹^, (kushtore)": { # kushtoj/Albanian 

5486 "lang": "Albanian", 

5487 "then": "conditional", 

5488 }, 

5489 "personal non-finite": { # prosternarse/Spanish 

5490 "lang": "Spanish", 

5491 "then": "", 

5492 }, 

5493 "1ˢᵗ person singular (“my”)": "first-person singular possessive", # a احساس/Persian 

5494 "3ʳᵈ person singular (“his, her, its”)": "third-person singular possessive", 

5495 "1ˢᵗ plural (“our”)": "first-person plural possessive", 

5496 "2ⁿᵈ plural (“your”)": "second-person plural possessive", 

5497 "3ʳᵈ plural (“their”)": "third-person plural possessive", 

5498 "with possessive pronouns": "possessed-form", # a ܡܘܙܐ/Assyrian Neo-Aramaic 

5499 # Talat/Turkish, possessive tables for names 

5500 "benim (my)": "first-person singular", 

5501 "senin (your)": "second-person singular", 

5502 "onun (his/her/its)": "third-person singular", 

5503 "bizim (our)": "first-person plural", 

5504 "sizin (your)": "second-person plural", 

5505 "onların (their)": "third-person plural", 

5506 # Alpler/Turkish 

5507 "singular, uncountable (tekil, sayılamaz)": "singular uncountable", 

5508 # अकड़ना/Hindi 

5509 "1ˢᵗ मैं": "first-person singular", 

5510 "2ⁿᵈ तू": "second-person singular", 

5511 "3ʳᵈ यह/वह, ये/वो": "third-person singular", 

5512 "2ⁿᵈ तुम": "second-person plural", 

5513 "1ˢᵗ हम": "first-person plural", 

5514 "3ʳᵈ, 2ⁿᵈ ये/वो/वे, आप": ["third-person plural", "second-person formal"], 

5515 # -ra/Basque 

5516 "proximal plural": "proximal plural", 

5517 # a שלאָפֿן/Yiddish 

5518 # These tables are unparseable due to lack of headers, really 

5519 # ~ "Composed forms": "", 

5520 # kalium/Limburgish 

5521 "Root singular": "singular", 

5522 "Root plural": "plural", 

5523 "Diminutive singular": "diminutive singular", 

5524 "Diminutive plural": "diminutive plural", 

5525 # tèlle/Limburgish 

5526 "adverb": "adverb", 

5527 "number & tense": "*", 

5528 "verb-second order": "v2", 

5529 "verb-first order": "v1", 

5530 "first person plural": "first-person plural", 

5531 "second person plural": "second-person plural", 

5532 "third person plural": "third-person plural", 

5533 "other forms": "", 

5534 "imperative singular impolite": "imperative singular impolite", 

5535 "imperative singular polite": "imperative singular polite", 

5536 "imperative dual": "imperative dual", 

5537 # beer/Limburgish 

5538 "Diminutive": "diminutive", 

5539 "Mutation": "mutation", 

5540 "Diminutive Mutation": "diminutive mutation", 

5541 # сядоце/Moksha 

5542 "мон (mon)": "first-person singular", 

5543 "минь (minʹ)": "first-person plural", 

5544 "тон (ton)": "second-person singular", 

5545 "тинь (tinʹ)": "second-person plural", 

5546 "сон (son)": "third-person singular", 

5547 "синь (sinʹ)": "third-person plural", 

5548 # улемс/Moksha 

5549 "1ˢᵗ singular — мон (mon)": "first-person singular", 

5550 "2ⁿᵈ singular — тон (ton)": "second-person singular", 

5551 "3ʳᵈ singular — сон (son)": "third-person singular", 

5552 "1ˢᵗ plural — минь (minʹ)": "first-person plural", 

5553 "2ⁿᵈ plural — тинь (tinʹ)": "second-person plural", 

5554 "3ʳᵈ plural — синь (sinʹ)": "third-person plural", 

5555 "Past I": "past-i past", 

5556 "Compound future": "multiword-construction future", 

5557 "agentive / pres. act. part.": "present active participle agentive", 

5558 "present passive participle": "present passive participle", 

5559 # содамс/Moksha 

5560 "Past II / subjunctive": "past-ii past subjunctive", 

5561 "Subjunctive of conditional": "subjunctive conditional", 

5562 "ma-infinitive / verbal noun": "noun-from-verb infinitive infinitive-ma", 

5563 "mda-infinitive": "infinitive infinitive-mda", 

5564 "gerund negative": "negative gerund", 

5565 "1ˢᵗ person singular object — монь (monʹ)": "object-first-person object-singular", 

5566 "2ⁿᵈ person singular object — тонь (tonʹ)": "object-second-person object-singular", 

5567 "3ʳᵈ person singular object — сонь (sonʹ)": "object-third-person object-singular", 

5568 "1ˢᵗ person plural object — минь (minʹ)": "object-first-person object-plural", 

5569 "2ⁿᵈ person plural object — тинь (tinʹ)": "object-second-person object-plural", 

5570 "3ʳᵈ person plural object — синь (sinʹ)": "object-third-person object-plural", 

5571 # ਪਾਉਣਾ/(Punjabi 

5572 "Singular/Plural": "singular plural", 

5573 "Plural/Formal": "", 

5574 "1ˢᵗ ਮੈਂ": "first-person singular", 

5575 "2ⁿᵈ intimate ਤੂੰ": "second-person singular intimate", 

5576 "3ʳᵈ ਇਹ/ਉਹ": "third-person singular", 

5577 "2ⁿᵈ familiar ਤੁਸੀਂ": "second-person familiar", 

5578 "1ˢᵗ ਅਸੀਂ": "third-person plural", 

5579 "2ⁿᵈ formal, 3ʳᵈ ਇਹ/ਉਹ/ਆਪ": [ 

5580 "second-person formal", 

5581 "third-person plural", 

5582 ], 

5583 "REG": "", 

5584 "POL": "polite", 

5585 # оз/Komi-Zyrian 

5586 "Non-Past tense": "non-past", 

5587 # hāi7Namuyi 

5588 "Habitual/Future": "habitual future", 

5589 "Prospective": "prospective", 

5590 "Ingressive": "ingressive", 

5591 "Experiential": "experiential", 

5592 "Premeditated": "premeditated", 

5593 # nyanyi/Warlpiri 

5594 "andative": "andative", 

5595 "nomic": "nomic", 

5596 # être/Lorrain 

5597 "je (j')": { 

5598 "lang": "Lorrain", 

5599 "then": "first-person singular", 

5600 }, 

5601 "el, elle": { 

5602 "lang": "Lorrain", 

5603 "then": "third-person singular", 

5604 }, 

5605 "el, elles": { 

5606 "lang": "Lorrain", 

5607 "then": "third-person plural", 

5608 }, 

5609 "distant imperfect (from Latin er-)": "imperfect distant-imperfect-er", 

5610 "distant imperfect (from Latin stab-)": "imperfect distant-imperfect-stab", 

5611 "near imperfect": "imperfect near-imperfect", 

5612 "que je / qu'i": "first-person singular", 

5613 "qu'â (al), qu'ale": "third-person singular", 

5614 "qu'âs, qu'ales": "third-person plural", 

5615 "ham": { 

5616 "lang": "Fiji Hindi", 

5617 "then": "first-person singular", 

5618 }, 

5619 "ham log": { 

5620 "lang": "Fiji Hindi", 

5621 "then": "first-person plural", 

5622 }, 

5623 "tum": { 

5624 "lang": "Fiji Hindi", 

5625 "then": "second-person singular", 

5626 }, 

5627 "tum log": { 

5628 "lang": "Fiji Hindi", 

5629 "then": "second-person plural", 

5630 }, 

5631 "uu": { 

5632 "lang": "Fiji Hindi", 

5633 "then": "third-person singular", 

5634 }, 

5635 "uu log": { 

5636 "lang": "Fiji Hindi", 

5637 "then": "third-person plural", 

5638 }, 

5639 # ndu/South Slavey 

5640 "areal": { 

5641 "lang": "South Slavey", 

5642 "then": "locative", 

5643 }, 

5644 # ave/Tolai 

5645 "1st person exclusive": "first-person exclusive", 

5646 "1st person inclusive": "first-person inclusive", 

5647 # mahkwa/Fox 

5648 "Singular Noun": "singular", 

5649 "Plural Noun": "plural", 

5650 "Proximate": "proximative", 

5651 "Obviative": "obviative", 

5652 "Local": "locative", 

5653 "Singular Possessive": "possessed-single", 

5654 "Plural Possessive": "possessed-many", 

5655 "First and second person": "first-person second-person", 

5656 "perlative": "perlative", # arnaq/Yup'ik 

5657 # tōku/Maori 

5658 "singular object": { 

5659 "lang": "Maori", 

5660 "then": "possessed-single", 

5661 }, 

5662 "dual/plural object": { 

5663 "lang": "Maori", 

5664 "then": "possessed-many", 

5665 }, 

5666 "A category": { 

5667 "lang": "Maori", 

5668 "then": "alienable", 

5669 }, 

5670 "O category": { 

5671 "lang": "Maori", 

5672 "then": "inalienable", 

5673 }, 

5674 "Neutral": { 

5675 "lang": "Maori", 

5676 "then": "", 

5677 }, 

5678 "dual subject": "dual", 

5679 "1st person, inclusive": "first-person inclusive", 

5680 "1st person, exclusive": "first-person exclusive", 

5681 "comitative-instrumental": "comitative instrumental", # тан/Mansi 

5682 # пыг/Mansi 

5683 "double possession": "possessed-two", 

5684 "multiple possession": "possessed-many", 

5685 "3d person dual": "third-person dual", 

5686 "3d person plural": "third-person plural", 

5687 # Tibetan romanizations 

5688 "Wylie": "romanization", 

5689 "Basic": { 

5690 "lang": "Udmurt", 

5691 "then": "", 

5692 }, 

5693 "Temporal": { 

5694 "lang": "Udmurt", 

5695 "then": "gerund-temporal gerund", 

5696 }, 

5697 "Fourth": { 

5698 "lang": "Udmurt", 

5699 "then": "gerund-iv gerund", 

5700 }, 

5701 "Deverbal": { 

5702 "lang": "Udmurt", 

5703 "then": "noun-from-verb", 

5704 }, 

5705 # тос/Mariupol Greek 

5706 "3rd n": "third-person neuter", 

5707 "clitic": "clitic", 

5708 # likkõ/Livonian 

5709 "sa": { 

5710 "lang": "Livonian", 

5711 "then": "second-person singular", 

5712 }, 

5713 "ta": "third-person singular", 

5714 "mēg": "first-person plural", 

5715 "tēg": "second-person plural", 

5716 "indicative negative": "negative indicative", 

5717 "(sa)": "second-person singular", 

5718 "(mēg)": "first-person plural", 

5719 "(tēg)": "second-person plural", 

5720 "imperative negative": "negative imperative", 

5721 "conditional negative": "negative conditional", 

5722 "jussive negative": "negative jussive", 

5723 "debitive": "debitive", 

5724 "minnõn": "first-person singular", 

5725 "sinnõn": "second-person singular", 

5726 "tämmõn": "third-person singular", 

5727 "mäddõn": "first-person plural", 

5728 "täddõn": "second-person plural", 

5729 "näntõn": "third-person plural", 

5730 "supine abessive": "supine abessive", 

5731 # நத்தை/Tamil 

5732 "Genitive 1": "genitive-i genitive", 

5733 "Genitive 2": "genitive-ii genitive", 

5734 "Locative 1": "locative-i locative", 

5735 "Locative 2": "locative-ii locative", 

5736 "Sociative 1": "sociative-i sociative", 

5737 "Sociative 2": "sociative-ii sociative", 

5738 # பிடி/Tamil 

5739 "singular affective": "affective singular", 

5740 "third masculine": "third-person masculine", 

5741 "third feminine": "third-person feminine", 

5742 "third honorific": "third-person honorific", 

5743 "third neuter": "third-person neuter", 

5744 "நான்": "first-person singular", 

5745 "நீ": "second-person singular", 

5746 "அவன்": "third-person singular masculine", 

5747 "அவள்": "third-person singular feminine", 

5748 "அவர்": "third-person singular honorific", 

5749 "அது": "third-person singular neuter", 

5750 "future negative": "negative future", 

5751 "plural affective": "affective plural", 

5752 "third epicene": "third-person epicene", 

5753 "நாம் (inclusive) நாங்கள் (exclusive)": [ 

5754 "first-person plural inclusive", 

5755 "first-person plural exclusive", 

5756 ], 

5757 "நீங்கள்": "second-person plural", 

5758 "அவர்கள்": "third-person plural epicene", 

5759 "அவை": "third-person plural neuter", 

5760 "effective": "effective", 

5761 "casual conditional": "conditional informal", 

5762 "honorific": "honorific", 

5763 "epicene": "epicene", 

5764 "Form I": { 

5765 "lang": "Tamil", 

5766 "then": "gerund-i gerund", 

5767 }, 

5768 "Form II": { 

5769 "lang": "Tamil", 

5770 "then": "gerund-ii gerund", 

5771 }, 

5772 "Form III": { 

5773 "lang": "Tamil", 

5774 "then": "gerund-iii gerund", 

5775 }, 

5776 # bolmak/Turkmen 

5777 "men": "first-person singular", 

5778 "ol": "third-person singular", 

5779 "olar": "third-person plural", 

5780 "proximal": "proximal", 

5781 "distal": "distal", 

5782 "unwitnessed": "unwitnessed", 

5783 "obligatory": "obligative", 

5784 # kanákta/Mohawk 

5785 "Sing.": "singular", 

5786 "Plur.": "plural", 

5787 # እግር/Amharic 

5788 "Definite subject": "definite nominative", 

5789 "Definite object": "definite accusative", 

5790 "General object": "accusative", 

5791 # sugu/Veps 

5792 "approximative I": "approximative-i approximative", 

5793 "approximative II": "approximative-ii approximative", 

5794 "terminative I": "terminative-i terminative", 

5795 "terminative II": "terminative-ii terminative", 

5796 "terminative III": "terminative-iii terminative", 

5797 "additive I": "additive-i additive", 

5798 "additive II": "additive-ii additive", 

5799 # duhtadit/Northern Sami 

5800 "action inessive": "noun-from-verb inessive", 

5801 "action elative": "noun-from-verb elative", 

5802 "agent participle": "agent participle", 

5803 "action comitative": "noun-from-verb comitative", 

5804 "conditional 1": "conditional-i conditional", 

5805 "conditional 2": "conditional-ii conditional", 

5806 # 능숙하다/Korean 

5807 "Plain": { 

5808 "lang": "Korean", 

5809 "then": "", 

5810 }, 

5811 # stupid Interlingua hand-crafted minimal tables, deber/Interlingua 

5812 "Present:": "present", 

5813 "Past:": "past", 

5814 "Future:": "future", 

5815 "Conditional:": "conditional", 

5816 "Present participle:": "present participle", 

5817 "Past participle:": "past participle", 

5818 "Imperative:": "imperative", 

5819 # уө/Southern Yukaghir 

5820 "short plural": "plural short-form", 

5821 "long plural": "plural long-form", 

5822 # aganchaka/Garo 

5823 "Declarative": "", 

5824 '"not yet"': "not-yet-form", 

5825 '"probably"': "potential", 

5826 "Intentional": "intentive", 

5827 "Change of state": "perfect", 

5828 "Formal imperative": "imperative formal", 

5829 # ಹುಟ್ಟು/Kannada 

5830 "adverbial participles": "adverbial participle", 

5831 "adjectival participles": "adjectival participle", 

5832 "other nonfinite forms": "", 

5833 "volitive forms": "volitive", 

5834 "present adverbial participle": "present adverbial participle", 

5835 "nonpast adjectival participle": "non-past adjectival participle", 

5836 "suihortative form": "suihortative", 

5837 "past adverbial participle": "past adverbial participle", 

5838 "past adjectival participle": "past adjectival participle", 

5839 "dative infinitive": "infinitive dative", 

5840 "cohortative form I": "cohortative-i cohortative", 

5841 "negative adverbial participle": "negative adverbial participle", 

5842 "negative adjectival participle": "negative adjectival participle", 

5843 "conditional form": "conditional", 

5844 "cohortative form II": "cohortative-ii cohortative", 

5845 "tense/modality": "", 

5846 "ನಾನು": "first-person singular", 

5847 "ನೀನು": "second-person singular", 

5848 "ಅವನು": "third-person masculine singular", 

5849 "ಅವಳು": "third-person feminine singular", 

5850 "ಅದು": "third-person neuter singular", 

5851 "ನಾವು": "first-person plural", 

5852 "ನೀವು": "second-person plural", 

5853 "ಅವರು": "third-person epicene plural", 

5854 "ಅವು": "third-person neuter plural", 

5855 # ಅದು/Kannada 

5856 '"Objective Singular"': "singular objective", 

5857 "Epicene Plural": "epicene plural", 

5858 # цӏехуьл/Lezgi 

5859 "adelative": "adelative", 

5860 "addirective": "addirective", 

5861 "postessive": "postessive", 

5862 "postelative": "postelative", 

5863 "postdirective": "postdirective", 

5864 "subessive": "subessive", 

5865 "subelative": "subelative", 

5866 "subdirective": "subdirective", 

5867 "inelative": "inelative", 

5868 "superelative": "superelative", 

5869 "superdirective": "superdirective", 

5870 # देर/Konkani 

5871 "accusative/dative": "accusative dative", 

5872 # भेड्डो/Konkani 

5873 "masc. singular": "masculine singular", 

5874 "fem. singular": "feminine singular", 

5875 "masc. plural": "masculine plural", 

5876 "fem. plural": "feminine plural", 

5877 # zeuen burua/Basque 

5878 "elkar": "reciprocal", 

5879 "noren burua": "reflexive", 

5880 # ezer/Basque 

5881 "nor": "interrogative pronoun personal", 

5882 "zer": "interrogative pronoun", 

5883 "zein": "interrogative pronoun", 

5884 "zenbat": "interrogative quantitative", 

5885 # batzuk/Basque 

5886 "bat": "pronoun", 

5887 "bakoitz": "pronoun", 

5888 # veda/Scanian 

5889 "jağ": "first-person singular", 

5890 "dú": "second-person singular", 

5891 "hanð": "third-person singular", 

5892 "ví": "first-person plural", 

5893 "í": "second-person plural", 

5894 "dé": "third-person plural", 

5895 "present imperative": "present imperative", 

5896 # a ګړندی/Pashto 

5897 "oblique I": "oblique oblique-i", 

5898 "oblique II (dialectal)": "oblique oblique-ii dialectal", 

5899 # a پخول/Pashto 

5900 "Present Imperfective Subject Agreement": "present imperfective", 

5901 "Past Imperfective Object Agreement": "past imperfective object-concord dummy-object-concord", 

5902 "OBJECT": "", 

5903 "Past Perfective": { 

5904 "default": "past perfective", 

5905 "lang": "Pashto", 

5906 "then": "past perfective object-concord dummy-object-concord", 

5907 }, 

5908 # ní/Old Irish 

5909 "Animate": "animate", 

5910 # just in case 

5911 "Inanimate": "inanimate", 

5912 # τα/Greek 

5913 "1-s": "first-person singular", 

5914 "2-s": "second-person singular", 

5915 "3-ms": "third-person masculine singular", 

5916 "3-fs": "third-person feminine singular", 

5917 "3-ns": "third-person neuter singular", 

5918 "1-p": "first-person plural", 

5919 "2-p": "second-person plural", 

5920 "3-mp": "third-person masculine plural", 

5921 "3-fp": "third-person feminine plural", 

5922 "3-np": "third-person neuter plural", 

5923 # angu/Swahili 

5924 "Noun class": { 

5925 "lang": "Swahili", 

5926 "then": "", 

5927 }, 

5928 "M-wa class": { 

5929 "lang": "Swahili", 

5930 "then": "class-1 class-2", 

5931 }, 

5932 "M-mi class": { 

5933 "lang": "Swahili", 

5934 "then": "class-3 class-4", 

5935 }, 

5936 "Ma class": { 

5937 "lang": "Swahili", 

5938 "then": "class-5 class-6", 

5939 }, 

5940 "Ki-vi class": { 

5941 "lang": "Swahili", 

5942 "then": "class-7 class-8", 

5943 }, 

5944 "N class": { 

5945 "lang": "Swahili", 

5946 "then": "class-9 class-10", 

5947 }, 

5948 "U class": { 

5949 "lang": "Swahili", 

5950 "then": "class-11 class-12", 

5951 }, 

5952 "Pa class": { 

5953 "lang": "Swahili", 

5954 "then": "class-16", 

5955 }, 

5956 "Ku class": { 

5957 "lang": "Swahili", 

5958 "then": "class-15", 

5959 }, 

5960 "Mu class": { 

5961 "lang": "Swahili", 

5962 "then": "class-18", 

5963 }, 

5964 "m-wa": { 

5965 "lang": "Swahili", 

5966 "then": "class-1 class-2", 

5967 }, 

5968 "m-mi": { 

5969 "lang": "Swahili", 

5970 "then": "class-3 class-4", 

5971 }, 

5972 "ma": { 

5973 "lang": "Swahili", 

5974 "then": "class-5 class-6", 

5975 "else": { 

5976 "lang": "Livonian", 

5977 "then": "first-person singular", 

5978 }, 

5979 }, 

5980 "ki-vi": { 

5981 "lang": "Swahili", 

5982 "then": "class-7 class-8", 

5983 }, 

5984 "n": { 

5985 "default": "neuter", 

5986 "lang": "Swahili", 

5987 "then": "class-9 class-10", 

5988 }, 

5989 "u": { 

5990 "lang": "Swahili", 

5991 "then": "class-11 class-12", 

5992 }, 

5993 "pa": { 

5994 "lang": "Swahili", 

5995 "then": "class-16", 

5996 }, 

5997 "ku": { 

5998 "lang": "Swahili", 

5999 "then": "class-15", 

6000 }, 

6001 "mu": { 

6002 "lang": "Swahili", 

6003 "then": "class-18", 

6004 }, 

6005 "other classes": "", 

6006 "Consecutive subjunctive": "consecutive subjunctive", 

6007 # taka/Swahili sw-conj 

6008 "Polarity": "", 

6009 "Persons": "", 

6010 "Persons / Classes": "", 

6011 "Classes": "", 

6012 "3rd / M-wa": { 

6013 "lang": "Swahili", 

6014 "then": "third-person", 

6015 }, 

6016 "M-mi": "", 

6017 "Ma": "", 

6018 "Ki-vi": "", 

6019 "N": "", 

6020 "U": "", 

6021 "Ku": "", 

6022 "Pa": "", 

6023 "Mu": "", 

6024 "Sg.": { 

6025 "default": "singular", 

6026 "lang": "Swahili", 

6027 "then": "singular", 

6028 }, 

6029 "Pl.": { 

6030 "default": "plural", 

6031 "lang": "Swahili", 

6032 "then": "plural", 

6033 }, 

6034 "Sg. / 1": { 

6035 "default": "singular class-1", 

6036 "lang": "Swahili", 

6037 "then": "singular class-1", 

6038 }, 

6039 "Pl. / 2": { 

6040 "default": "plural class-2", 

6041 "lang": "Swahili", 

6042 "then": "plural class-2", 

6043 }, 

6044 "3": { 

6045 "default": "third-person", 

6046 "lang": "Swahili", 

6047 "then": "class-3", 

6048 "else": { 

6049 "lang": head_final_numeric_langs, 

6050 "then": "class-3", 

6051 }, 

6052 }, 

6053 "4": { 

6054 "default": "class-4", 

6055 "lang": "Swahili", 

6056 "then": "class-4", 

6057 }, 

6058 "5": { 

6059 "default": "class-5", 

6060 "lang": "Swahili", 

6061 "then": "class-5", 

6062 }, 

6063 "6": { 

6064 "default": "class-6", 

6065 "lang": "Swahili", 

6066 "then": "class-6", 

6067 }, 

6068 "7": { 

6069 "default": "class-7", 

6070 "lang": "Swahili", 

6071 "then": "class-7", 

6072 }, 

6073 "8": { 

6074 "default": "class-8", 

6075 "lang": "Swahili", 

6076 "then": "class-8", 

6077 }, 

6078 "9": { 

6079 "default": "class-9", 

6080 "lang": "Swahili", 

6081 "then": "class-9", 

6082 }, 

6083 "10": { 

6084 "default": "class-10", 

6085 "lang": "Swahili", 

6086 "then": "class-10", 

6087 }, 

6088 "11 / 14": { 

6089 "default": "class-11 class-14", 

6090 "lang": "Swahili", 

6091 "then": "class-11 class-14", 

6092 }, 

6093 "15 / 17": { 

6094 "default": "class-15 class-17", 

6095 "lang": "Swahili", 

6096 "then": "class-15 class-17", 

6097 }, 

6098 "16": { 

6099 "default": "class-16", 

6100 "lang": "Swahili", 

6101 "then": "class-16", 

6102 }, 

6103 "18": { 

6104 "default": "class-18", 

6105 "lang": "Swahili", 

6106 "then": "class-18", 

6107 }, 

6108 "1s": { 

6109 "default": "first-person singular", 

6110 "if": "object-concord", 

6111 "then": "object-first-person object-singular", 

6112 "else": { 

6113 "lang": "Swahili", 

6114 "then": [ 

6115 "dummy-use-as-coltags first-person singular", 

6116 "dummy-use-as-rowtags object-first-person object-singular", 

6117 ], 

6118 }, 

6119 }, 

6120 "2s": { 

6121 "default": "second-person singular", 

6122 "if": "object-concord", 

6123 "then": "object-second-person object-singular", 

6124 "else": { 

6125 "lang": "Swahili", 

6126 "then": [ 

6127 "dummy-use-as-coltags second-person singular", 

6128 "dummy-use-as-rowtags object-second-person object-singular", 

6129 ], 

6130 }, 

6131 }, 

6132 "3s": { 

6133 "default": "third-person singular", 

6134 "if": "object-concord", 

6135 "then": "object-third-person object-singular", 

6136 "else": { 

6137 "lang": "Swahili", 

6138 "then": [ 

6139 "dummy-use-as-coltags third-person singular", 

6140 "dummy-use-as-rowtags object-third-person object-singular", 

6141 ], 

6142 }, 

6143 }, 

6144 "1p": { 

6145 "default": "first-person plural", 

6146 "if": "object-concord", 

6147 "then": "object-first-person object-plural", 

6148 "else": { 

6149 "lang": "Swahili", 

6150 "then": [ 

6151 "dummy-use-as-coltags first-person plural", 

6152 "dummy-use-as-rowtags object-first-person object-plural", 

6153 ], 

6154 }, 

6155 }, 

6156 "2p": { 

6157 "default": "second-person plural", 

6158 "if": "object-concord", 

6159 "then": "object-second-person object-plural", 

6160 "else": { 

6161 "lang": "Swahili", 

6162 "then": [ 

6163 "dummy-use-as-coltags second-person plural", 

6164 "dummy-use-as-rowtags object-second-person object-plural", 

6165 ], 

6166 }, 

6167 }, 

6168 "3p": { 

6169 "default": "third-person plural", 

6170 "if": "object-concord", 

6171 "then": "object-third-person object-plural", 

6172 "else": { 

6173 "lang": "Swahili", 

6174 "then": [ 

6175 "dummy-use-as-coltags third-person plural", 

6176 "dummy-use-as-rowtags object-third-person object-plural", 

6177 ], 

6178 }, 

6179 }, 

6180 "c1": { 

6181 "default": "class-1", 

6182 "if": "object-concord", 

6183 "then": "object-class-1", 

6184 "else": { 

6185 "lang": "Swahili", 

6186 "then": [ 

6187 "dummy-use-as-coltags class-1", 

6188 "dummy-use-as-rowtags object-class-1", 

6189 ], 

6190 }, 

6191 }, 

6192 "c2": { 

6193 "default": "class-2", 

6194 "if": "object-concord", 

6195 "then": "object-class-2", 

6196 "else": { 

6197 "lang": "Swahili", 

6198 "then": [ 

6199 "dummy-use-as-coltags class-2", 

6200 "dummy-use-as-rowtags object-class-2", 

6201 ], 

6202 }, 

6203 }, 

6204 "c3": { 

6205 "default": "class-3", 

6206 "if": "object-concord", 

6207 "then": "object-class-3", 

6208 "else": { 

6209 "lang": "Swahili", 

6210 "then": [ 

6211 "dummy-use-as-coltags class-3", 

6212 "dummy-use-as-rowtags object-class-3", 

6213 ], 

6214 }, 

6215 }, 

6216 "c4": { 

6217 "default": "class-4", 

6218 "if": "object-concord", 

6219 "then": "object-class-4", 

6220 "else": { 

6221 "lang": "Swahili", 

6222 "then": [ 

6223 "dummy-use-as-coltags class-4", 

6224 "dummy-use-as-rowtags object-class-4", 

6225 ], 

6226 }, 

6227 }, 

6228 "c5": { 

6229 "default": "class-5", 

6230 "if": "object-concord", 

6231 "then": "object-class-5", 

6232 "else": { 

6233 "lang": "Swahili", 

6234 "then": [ 

6235 "dummy-use-as-coltags class-5", 

6236 "dummy-use-as-rowtags object-class-5", 

6237 ], 

6238 }, 

6239 }, 

6240 "c6": { 

6241 "default": "class-6", 

6242 "if": "object-concord", 

6243 "then": "object-class-6", 

6244 "else": { 

6245 "lang": "Swahili", 

6246 "then": [ 

6247 "dummy-use-as-coltags class-6", 

6248 "dummy-use-as-rowtags object-class-6", 

6249 ], 

6250 }, 

6251 }, 

6252 "c7": { 

6253 "default": "class-7", 

6254 "if": "object-concord", 

6255 "then": "object-class-7", 

6256 "else": { 

6257 "lang": "Swahili", 

6258 "then": [ 

6259 "dummy-use-as-coltags class-7", 

6260 "dummy-use-as-rowtags object-class-7", 

6261 ], 

6262 }, 

6263 }, 

6264 "c8": { 

6265 "default": "class-8", 

6266 "if": "object-concord", 

6267 "then": "object-class-8", 

6268 "else": { 

6269 "lang": "Swahili", 

6270 "then": [ 

6271 "dummy-use-as-coltags class-8", 

6272 "dummy-use-as-rowtags object-class-8", 

6273 ], 

6274 }, 

6275 }, 

6276 "c9": { 

6277 "default": "class-9", 

6278 "if": "object-concord", 

6279 "then": "object-class-9", 

6280 "else": { 

6281 "lang": "Swahili", 

6282 "then": [ 

6283 "dummy-use-as-coltags class-9", 

6284 "dummy-use-as-rowtags object-class-9", 

6285 ], 

6286 }, 

6287 }, 

6288 "c10": { 

6289 "default": "class-10", 

6290 "if": "object-concord", 

6291 "then": "object-class-10", 

6292 "else": { 

6293 "lang": "Swahili", 

6294 "then": [ 

6295 "dummy-use-as-coltags class-10", 

6296 "dummy-use-as-rowtags object-class-10", 

6297 ], 

6298 }, 

6299 }, 

6300 "c11": { 

6301 "default": "class-11", 

6302 "if": "object-concord", 

6303 "then": "object-class-11", 

6304 "else": { 

6305 "lang": "Swahili", 

6306 "then": [ 

6307 "dummy-use-as-coltags class-11", 

6308 "dummy-use-as-rowtags object-class-11", 

6309 ], 

6310 }, 

6311 }, 

6312 "c12": { 

6313 "default": "class-12", 

6314 "if": "object-concord", 

6315 "then": "object-class-12", 

6316 "else": { 

6317 "lang": "Swahili", 

6318 "then": [ 

6319 "dummy-use-as-coltags class-12", 

6320 "dummy-use-as-rowtags object-class-12", 

6321 ], 

6322 }, 

6323 }, 

6324 "c13": { 

6325 "default": "class-13", 

6326 "if": "object-concord", 

6327 "then": "object-class-13", 

6328 "else": { 

6329 "lang": "Swahili", 

6330 "then": [ 

6331 "dummy-use-as-coltags class-13", 

6332 "dummy-use-as-rowtags object-class-13", 

6333 ], 

6334 }, 

6335 }, 

6336 "c14": { 

6337 "default": "class-14", 

6338 "if": "object-concord", 

6339 "then": "object-class-14", 

6340 "else": { 

6341 "lang": "Swahili", 

6342 "then": [ 

6343 "dummy-use-as-coltags class-14", 

6344 "dummy-use-as-rowtags object-class-14", 

6345 ], 

6346 }, 

6347 }, 

6348 "c15": { 

6349 "default": "class-15", 

6350 "if": "object-concord", 

6351 "then": "object-class-15", 

6352 "else": { 

6353 "lang": "Swahili", 

6354 "then": [ 

6355 "dummy-use-as-coltags class-15", 

6356 "dummy-use-as-rowtags object-class-15", 

6357 ], 

6358 }, 

6359 }, 

6360 "c16": { 

6361 "default": "class-16", 

6362 "if": "object-concord", 

6363 "then": "object-class-16", 

6364 "else": { 

6365 "lang": "Swahili", 

6366 "then": [ 

6367 "dummy-use-as-coltags class-16", 

6368 "dummy-use-as-rowtags object-class-16", 

6369 ], 

6370 }, 

6371 }, 

6372 "c17": { 

6373 "default": "class-17", 

6374 "if": "object-concord", 

6375 "then": "object-class-17", 

6376 "else": { 

6377 "lang": "Swahili", 

6378 "then": [ 

6379 "dummy-use-as-coltags class-17", 

6380 "dummy-use-as-rowtags object-class-17", 

6381 ], 

6382 }, 

6383 }, 

6384 "c18": { 

6385 "default": "class-18", 

6386 "if": "object-concord", 

6387 "then": "object-class-18", 

6388 "else": { 

6389 "lang": "Swahili", 

6390 "then": [ 

6391 "dummy-use-as-coltags class-18", 

6392 "dummy-use-as-rowtags object-class-18", 

6393 ], 

6394 }, 

6395 }, 

6396 "1s/2s/3s/c1": [ 

6397 "object-first-person object-second-person " 

6398 "object-third-person object-singular", 

6399 "object-class-1", 

6400 ], 

6401 "*p/2/3/11/14": [ 

6402 "object-plural object-first-person " 

6403 "object-second-person object-third-person", 

6404 "object-class-2 object-class-3 object-class-11 object-class-14", 

6405 ], 

6406 "c4/c6/c9": "object-class-4 object-class-6 object-class-9", 

6407 "2s/2p/15/17": [ 

6408 "object-second-person object-singular object-plural", 

6409 "object-class-15 object-class-17", 

6410 ], 

6411 "2p/3p/c2": [ 

6412 "object-second-person object-third-person object-plural", 

6413 "object-class-2", 

6414 ], 

6415 "c3/c11/c14": "object-class-3 object-class-11 object-class-14", 

6416 "c4/c9": "object-class-4 object-class-9", 

6417 "Forms with object concords": "object-concord", 

6418 "Past": { 

6419 "default": "past", 

6420 "lang": "Swahili", 

6421 "then": "past", 

6422 }, 

6423 "Present": { 

6424 "default": "present", 

6425 "lang": "Swahili", 

6426 "then": "present", 

6427 }, 

6428 "Future": {"default": "future", "lang": "Swahili", "then": "future"}, 

6429 "Subjunctive": { 

6430 "default": "subjunctive", 

6431 "lang": "Swahili", 

6432 "then": "subjunctive", 

6433 }, 

6434 "Present conditional": { 

6435 "default": "present irrealis", 

6436 "lang": "Swahili", 

6437 "then": "present irrealis", 

6438 }, 

6439 "Past conditional": { 

6440 "default": "past irrealis", 

6441 "lang": "Swahili", 

6442 "then": "past irrealis", 

6443 }, 

6444 "Conditional contrary to fact": { 

6445 "default": "conditional counterfactual", 

6446 "lang": "Swahili", 

6447 "then": "conditional counterfactual", 

6448 }, 

6449 "Gnomic": { 

6450 "default": "gnomic", 

6451 "lang": "Swahili", 

6452 "nested-table-depth": [1, 2], 

6453 "then": "gnomic", 

6454 }, 

6455 "Perfect": { 

6456 "default": "perfect", 

6457 "lang": "Swahili", 

6458 "nested-table-depth": [1, 2], 

6459 "then": "perfect", 

6460 }, 

6461 '"Already"': { 

6462 "default": "already-form", 

6463 "lang": "Swahili", 

6464 "nested-table-depth": [1, 2], 

6465 "then": "already-form", 

6466 }, 

6467 '"Not yet"': { 

6468 "default": "not-yet-form", 

6469 "lang": "Swahili", 

6470 "nested-table-depth": [1, 2], 

6471 "then": "not-yet-form", 

6472 }, 

6473 '"If/When"': { 

6474 "default": "if-when-form", 

6475 "lang": "Swahili", 

6476 "nested-table-depth": [1, 2], 

6477 "then": "if-when-form", 

6478 }, 

6479 '"If not"': { 

6480 "default": "if-not-form", 

6481 "lang": "Swahili", 

6482 "nested-table-depth": [1, 2], 

6483 "then": "if-not-form", 

6484 }, 

6485 "Consecutive": { 

6486 "default": "consecutive", 

6487 "lang": "Swahili", 

6488 "nested-table-depth": [1, 2], 

6489 "then": "consecutive", 

6490 }, 

6491 "General positive": { 

6492 "default": "general-mood positive", 

6493 "lang": "Swahili", 

6494 "nested-table-depth": [1, 2], 

6495 "then": "general-mood positive", 

6496 }, 

6497 "General negative": { 

6498 "default": "general-mood negative", 

6499 "lang": "Swahili", 

6500 "nested-table-depth": [1, 2], 

6501 "then": "general-mood negative", 

6502 }, 

6503 "Positive past": { 

6504 "default": "positive past", 

6505 "lang": "Swahili", 

6506 "nested-table-depth": [1, 2], 

6507 "then": "positive past", 

6508 }, 

6509 "Negative past": { 

6510 "default": "negative past", 

6511 "lang": "Swahili", 

6512 "nested-table-depth": [1, 2], 

6513 "then": "negative past", 

6514 }, 

6515 "Positive present": { 

6516 "default": "positive present", 

6517 "lang": "Swahili", 

6518 "nested-table-depth": [1, 2], 

6519 "then": "positive present", 

6520 }, 

6521 "Negative present": { 

6522 "default": "negative present", 

6523 "lang": "Swahili", 

6524 "nested-table-depth": [1, 2], 

6525 "then": "negative present", 

6526 }, 

6527 "Positive future": { 

6528 "default": "positive future", 

6529 "lang": "Swahili", 

6530 "nested-table-depth": [1, 2], 

6531 "then": "positive future", 

6532 }, 

6533 "Negative future": { 

6534 "default": "negative future", 

6535 "lang": "Swahili", 

6536 "nested-table-depth": [1, 2], 

6537 "then": "negative future", 

6538 }, 

6539 "Positive subjunctive": { 

6540 "default": "positive subjunctive", 

6541 "lang": "Swahili", 

6542 "nested-table-depth": [1, 2], 

6543 "then": "positive subjunctive", 

6544 }, 

6545 "Negative subjunctive": { 

6546 "default": "negative subjunctive", 

6547 "lang": "Swahili", 

6548 "nested-table-depth": [1, 2], 

6549 "then": "negative subjunctive", 

6550 }, 

6551 "Positive present conditional": { 

6552 "default": "positive present irrealis", 

6553 "lang": "Swahili", 

6554 "nested-table-depth": [1, 2], 

6555 "then": "positive present irrealis", 

6556 }, 

6557 "Negative present conditional": { 

6558 "default": "negative present irrealis", 

6559 "lang": "Swahili", 

6560 "nested-table-depth": [1, 2], 

6561 "then": "negative present irrealis", 

6562 }, 

6563 "Positive past conditional": { 

6564 "default": "positive past irrealis", 

6565 "lang": "Swahili", 

6566 "nested-table-depth": [1, 2], 

6567 "then": "positive past irrealis", 

6568 }, 

6569 "Negative past conditional": { 

6570 "default": "negative past irrealis", 

6571 "lang": "Swahili", 

6572 "nested-table-depth": [1, 2], 

6573 "then": "negative past irrealis", 

6574 }, 

6575 "transgressive": "transgressive", # darovať/Slovak 

6576 # conocer/Asturian 

6577 "gerundive": "gerund", 

6578 r"case \ number": "", # δίκυκλο/Greek 

6579 r"number case \ gender": "", # απύρωτος/Greek 

6580 "conditional 2nd form": "conditional conditional-ii", # costosir/Occitan 

6581 # konyugön/Volapük 

6582 "2nd person polite singular": "second-person singular polite", 

6583 "3rd person male singular": "third-person masculine singular", 

6584 "3rd person female singular": "third-person singular feminine", 

6585 "reflexive singular": "reflexive singular", 

6586 "reciprocative singular": "reciprocal singular", 

6587 "2nd person polite plural": "second-person polite plural", 

6588 "3rd person male plural": "third-person masculine plural", 

6589 "3rd person female plural": "third-person feminine plural", 

6590 "reflexive plural": "reflexive plural", 

6591 "reciprocative plural": "reciprocal plural", 

6592 "future in the past perfect": "past perfect future", 

6593 # райҳон/Tajik 

6594 "bare": "", 

6595 "definite object": "definite direct-object", 

6596 # brestan/Proto-West Germanic 

6597 "Genitive infin.": "genitive infinitive", 

6598 "Dative infin.": "dative infinitive", 

6599 "Instrum. infin.": "instrumental infinitive", 

6600 # sberegar/Venetian 

6601 "eło / eła": "third-person singular", 

6602 "noialtri / noialtre": "first-person plural", 

6603 "voialtri / voialtre": "second-person plural", 

6604 "łuri / łore": "third-person plural", 

6605 "che mi": "first-person singular subjunctive", 

6606 "che eło / eła": "third-person singular subjunctive", 

6607 "che noialtri / noialtre": "first-person plural subjunctive", 

6608 "che voialtri / voialtre": "second-person plural subjunctive", 

6609 "che łuri / łore": "third-person plural subjunctive", 

6610 # qolmoq/Uzbek 

6611 "1": { 

6612 "default": "first-person", 

6613 }, 

6614 "2": { 

6615 "default": "second-person", 

6616 }, 

6617 "cont A": "continuative", 

6618 "cont B": "continuative formal imperfective", 

6619 "cont C": "continuative habitual", 

6620 # taanduma/Estonian 

6621 "voice": "", 

6622 "singular / indefinite": "singular indefinite", # Өгэдэй/Mongolian/668 

6623 # Proto-Finnic/munidak 

6624 "passive connegative": "passive connegative", 

6625 "infinitives/nouns": "", 

6626 "infinitive 1": "infinitive infinitive-i", 

6627 "infinitive 2": "infinitive infinitive-ii", 

6628 "gerund/supine": "gerund supine", 

6629 # glæþia/Old Swedish 

6630 "þū": { 

6631 "lang": "Old Swedish", 

6632 "then": "second-person singular", 

6633 }, 

6634 "vīr": { 

6635 "lang": "Old Swedish", 

6636 "then": "first-person plural", 

6637 }, 

6638 "īr": { 

6639 "lang": "Old Swedish", 

6640 "then": "second-person plural", 

6641 }, 

6642 "iæk": { 

6643 "lang": "Old Swedish", 

6644 "then": "first-person singular", 

6645 }, 

6646 "han": { 

6647 "lang": "Old Swedish", 

6648 "then": "third-person singular", 

6649 }, 

6650 "þēr": { 

6651 "lang": "Old Swedish", 

6652 "then": "third-person plural", 

6653 }, 

6654 "Absolute superlative": "absolute superlative", # τρανός/Greek 

6655 # kolfino/Ternate 

6656 "Inclusive": "inclusive plural", 

6657 "Exclusive": "exclusive plural", 

6658 "Human m": "human-person masculine", 

6659 "Human f": "human-person feminine", 

6660 "Non-human": "non-human", 

6661 # ntw/Eqyptian 

6662 "suffix pronouns": "suffix pronoun", 

6663 "stative (‘pseudoparticiple’) endings": "stative", 

6664 "enclitic (‘dependent’) pronouns": "enclitic pronoun", 

6665 "stressed (‘independent’) pronouns": "stressed pronoun", 

6666 "proclitic (‘subject form’) pronouns": "proclitic pronoun", 

6667 # райҳон/Tajik 

6668 "indefinite, definite relative": "indefinite definite relative", 

6669 "mixed after th": "after-th mutation-mixed", # wenyn/Cornish 

6670 "feminine gender": "feminine", # heiße Zitrone/German 

6671 "masculine gender": "masculine", # alter Drache/German 

6672 "specific": "specific", # পূঁজ/Assamese 

6673 "not specific": "unspecified", # পূঁজ/Assamese/163 

6674 # навохтан/Tajik 

6675 "ман": "first-person singular", 

6676 "ӯ": "third-person singular", 

6677 "мо": "first-person plural", 

6678 "шумо": ["second-person plural", "second-person singular polite"], 

6679 "онҳо": "third-person plural", 

6680 "минем (“my”)": "first-person singular possessive", # сез/Tatar 

6681 "синең (“your”)": "second-person singular possessive", 

6682 "аның (“his/her/it”)": "third-person singular possessive", 

6683 "безнең (“our”)": "first-person plural possessive", 

6684 "сезнең (“your”)": "second-person plural possessive", 

6685 "аларның (“their”)": "third-person plural possessive", 

6686 "Realis mood": "realis", # weyetun/Mapudungun 

6687 "singular or plural": [ 

6688 "singular", 

6689 "plural", 

6690 ], # aبڑھنا/Urdu 

6691 "iek": { # ongelje/Saterland Frisian 

6692 "lang": "Saterland Frisian", 

6693 "then": "first-person singular", 

6694 }, 

6695 # wenschen/Middle Dutch 

6696 "In genitive": { 

6697 "lang": "Middle Dutch", 

6698 "then": "infinitive genitive", 

6699 }, 

6700 "In dative": { 

6701 "lang": "Middle Dutch", 

6702 "then": "infinitive dative", 

6703 }, 

6704 # ongelje/Saterland Frisian 

6705 "hie/ju/dät": "third-person singular", 

6706 "wie": { 

6707 "lang": "Saterland Frisian", 

6708 "then": "first-person plural", 

6709 }, 

6710 "du": { 

6711 "lang": "Saterland Frisian", 

6712 "then": "second-person singular", 

6713 }, 

6714 # यहाँका/Nepali 

6715 "Low": { 

6716 "lang": "Nepali", 

6717 "then": "impolite", 

6718 }, 

6719 "Mid": { 

6720 "lang": "Nepali", 

6721 "then": "polite", 

6722 }, 

6723 "Low/Mid": { 

6724 "lang": "Nepali", 

6725 "then": "impolite polite", 

6726 }, 

6727 "High": { 

6728 "lang": "Nepali", 

6729 "then": "deferential", 

6730 }, 

6731 "izofa": "ezafe", # райҳон/Tajik 

6732 "ezâfe": "ezafe", # a دریچه/Persian 

6733 "adverbs": "adverb", # tꜣj/Egyptian 

6734 "Equative": "equative", # erk/Proto-Turkic 

6735 "Pres. subjunctive": "present subjunctive", # adkʷiseti/Proto-Celtic 

6736 "Inclusive Tri-Plural": "inclusive tri-plural", # aaombiniili'/Chickasaw 

6737 "1st-person dual": "first-person dual", # ferkuupe/North Frisian 

6738 "2nd-person dual": "second-person dual", # ferkuupe/North Frisian 

6739 # coymaq/Crimean Tatar 

6740 "repeated gerund": "gerund repeated", 

6741 "temporal gerund": "temporal gerund", 

6742 "non-future participle": "present past participle", 

6743 # tussenin/Dutch 

6744 "postpositional adv.": "adverb postpositional", 

6745 # védde/Ligurian 

6746 "lê o/a": "third-person singular", 

6747 "noî, niâtri": "first-person plural", 

6748 "voî, viâtri": "second-person plural", 

6749 "lô, liâtri": "third-person plural", 

6750 "che ti": "second-person singular subjunctive", 

6751 "che lê o/a": "third-person singular subjunctive", 

6752 "che noî, che niâtri": "first-person plural subjunctive", 

6753 "che voî, che viâtri": "second-person plural subjunctive", 

6754 "che lô, che liâtri": "second-person plural subjunctive", 

6755 "હું": "first-person singular", # અવતરવું/Gujarati/92 

6756 "અમે, આપણે": "first-person plural", # અવતરવું/Gujarati/184 

6757 "તું": "second-person singular", # અવતરવું/Gujarati/184 

6758 "તમે": "second-person plural", # અવતરવું/Gujarati/184 

6759 "તું, આ, આઓ, તે, તેઓ": "third-person", # અવતરવું/Gujarati/92 

6760 "marked indefinite or relative definite": [ # a دریچه/Persian 

6761 "stressed indefinite", 

6762 "relative definite", 

6763 ], 

6764 # delegher/Ladin 

6765 "el / ela": "third-person singular", 

6766 "ei / eles": "third-person plural", 

6767 "che ie": "first-person singular subjunctive", 

6768 "che el / ela": "third-person singular subjunctive", 

6769 "che nos": "first-person plural subjunctive", 

6770 "che vos": "second-person plural subjunctive", 

6771 "che ei / eles": "third-person plural subjunctive", 

6772 "preposition": "prepositional", # daarmede/Dutch 

6773 "Prolative II": "prolative prolative-ii", # килең/Tuvan 

6774 # pawjō/Proto-Italic 

6775 "Perfect indicative": "perfect indicative", 

6776 "Present imperative": "present imperative", 

6777 "Future imperative": "future imperative", 

6778 "tu-derivative": "tu-derivative", 

6779 "s-derivative": "s-derivative", 

6780 # weyetun/Mapudungun 

6781 "Tense particles (See particles)": "particle", 

6782 "iñce": "first-person singular", 

6783 "eymi": "second-person singular", 

6784 "fey": "third-person singular", 

6785 "iñciw": "first-person dual", 

6786 "eymu": "second-person dual", 

6787 "feygu": "third-person dual", 

6788 "iñciñ": "first-person plural", 

6789 "eymvn": "second-person plural", 

6790 "feygvn": "third-person plural", 

6791 "attributive": "attributive", # Өгэдэй/Mongolian/167 

6792 "Active indicative": "indicative active", # konyugön/Volapük/166 

6793 "Active subjunctive": "subjunctive active", # konyugön/Volapük/166 

6794 "Active optative": "optative active", # konyugön/Volapük/166 

6795 "Active interrogative": "interrogative active", # konyugön/Volapük/166 

6796 "Active jussive": "jussive active", # konyugön/Volapük/166 

6797 "definitive direct object": "direct-object definite", # دریچه/Persian/154 

6798 "preceding noun": "before-noun", # jenöfik/Volapük/151 

6799 "separated": "without-noun", # jenöfik/Volapük/151 

6800 "temp. dist.": "temporal distributive", # sisässä/Finnish/145 

6801 "oblique/vocative/instrumental": "oblique vocative instrumental", # કેટલું/Gujarati 

6802 "I-stem (Passive)": "passive", # सोहोर्नु/Nepali/144 

6803 "Passive indicative": "passive indicative", # konyugön/Volapük 

6804 "Passive subjunctive": "passive subjunctive", 

6805 "Passive optative": "passive optative", 

6806 "Passive interrogative": "passive interrogative", 

6807 "Passive jussive": "passive jussive", 

6808 "unmodified": "without-modifier", # birciqqo/Sidamo 

6809 "modified": "with-modifier", # birciqqo/Sidamo 

6810 "Past/present inchoative": "past present inchoative", # ganansiya/Cebuano 

6811 "Future/habitual inchoative": "future habitual inchoative", 

6812 "el / ela / Vde": "third-person singular", # aterecer/Galician 

6813 "eles / elas / Vdes": "third-person plural", # aterecer/Galician 

6814 "busatros busatras": "second-person plural", # foratar/Aragonese 

6815 "agentive / prospective": "agentive prospective", # a بڑھنا/Urdu 

6816 "мен": "first-person singular", # чылгаар/Tuvan 

6817 "бис": "first-person plural", 

6818 "силер": "second-person plural", 

6819 "ол": "third-person singular", 

6820 "олар": "third-person plural", 

6821 "-лар": "third-person plural", 

6822 "Past II": "past past-ii", 

6823 "Evidential": "evidential", 

6824 "-тар": "third-person plural", 

6825 "-нар": "third-person plural", 

6826 "-лер": "third-person plural", # дээр/Tuvan 

6827 "-тер": "third-person plural", 

6828 "-нер": "third-person plural", 

6829 "Grúundfoarme": "", # ongelje/Saterland Frisian 

6830 # oh-/Choctaw/124 

6831 "+V": { 

6832 "lang": "Choctaw", 

6833 "then": "before-vowel", 

6834 }, 

6835 "+C": { 

6836 "lang": "Choctaw", 

6837 "then": "before-consonant", 

6838 }, 

6839 "+s": { 

6840 "lang": "Choctaw", 

6841 "then": "before-s", 

6842 }, 

6843 "+C/i": { 

6844 "lang": "Choctaw", 

6845 "then": "before-consonant before-front-vowel", 

6846 }, 

6847 "+a/o": { 

6848 "lang": "Choctaw", 

6849 "then": "before-back-vowel", 

6850 }, 

6851 # +s +C +V +C/i +a/o +C +V +C +V +C +V 

6852 "past subjunctive": "past subjunctive", # شباهت داشتن/Persian/120 

6853 "vus": "second-person plural", # cumprar/Romansch/117 

6854 "nus": "first-person plural", 

6855 "jeu": "first-person singular", 

6856 "el/ella": "third-person singular", 

6857 "els/ellas": "third-person plural", 

6858 "che nus": "first-person plural subjunctive", 

6859 "che vus": "second-person plural subjunctive", 

6860 "ch'els/ch'ellas": "third-person plural subjunctive", 

6861 "che jeu": "first-person singular subjunctive", 

6862 "ch'el/ch'ella": "third-person singular subjunctive", 

6863 "direct future": "direct future", 

6864 "indirect future": "indirect future", 

6865 "unmarked": "", # tꜣj/Egyptian/114 

6866 "Conditional mood": "conditional", # weyetun/Mapudungun/112 

6867 "Volitive mood": "volitive", # weyetun/Mapudungun/112 

6868 "distant": "distal", # тұту/Kazakh/110 

6869 "affirmative commands": "imperative", # ፈተለ/Tigrinya/110 

6870 "negative commands": "negative imperative", 

6871 '1st-person ("my, our")': "first-person possessive", # aaombiniili'/Chickasaw/106 

6872 '2nd-person ("thy, your")': "second-person possessive", 

6873 '3rd-person ("his, her, its, their")': "third-person possessive", 

6874 "je (nos)": "first-person", # cogier/Norman/104 

6875 "Agentive": "agentive", # হাঁঠ/Assamese/102 

6876 "Middle voice": "middle-voice", # ḱléwseti/Proto-Indo-European/100 

6877 "1st-person (I, we)": "first-person", # chaaha̱ taloowa/Chickasaw/99 

6878 "2nd-person (you, you all)": "second-person", 

6879 "3rd-person (he, she, it, they)": "third-person", 

6880 "ils": "third-person plural", # ovrar/Franco-Provençal/98 

6881 "que je (j')": "first-person singular subjunctive", 

6882 "que te (t')": "second-person singular subjunctive", 

6883 "qu'il/el": "third-person singular subjunctive", 

6884 "qu'ils/els": "third-person plural subjunctive", 

6885 "il/elli": "third-person singular", 

6886 "Nasal": "mutation-nasal", # arglwyt/Middle Welsh/98 

6887 "Present progressive": "present progressive", # અવતરવું/Gujarati/92 

6888 "Negative conditional": "negative conditional", 

6889 "pronoun": "pronoun", # küm-/Maquiritari/88 

6890 "noun possessor/ series II verb argument": [ 

6891 "possessive", 

6892 "series-ii-verb-argument", 

6893 ], 

6894 "series I verb argument": "series-ii-verb-argument", 

6895 "postposition object": "direct-object postpositional", 

6896 "transitive patient": "transitive patient", 

6897 "intransitive patient-like": "intransitive patient-like", 

6898 "intransitive agent-like": "intransitive agent-like", 

6899 "transitive agent": "transitive agent", 

6900 "first person dual inclusive": "first-person dual inclusive", 

6901 "first person dual exclusive": "first-person dual exclusive", 

6902 "distant past third person": "distant-past past", 

6903 "coreferential/reflexive": "reflexive", 

6904 "series I verb argument: transitive agent and transitive patient": "transitive agent patient", 

6905 "first person > second person": "first-person object-second-person", 

6906 "first person dual exclusive > second person": "first-person dual exclusive object-second-person", 

6907 "second person > first person": "second-person object-first-person", 

6908 "second person > first person dual exclusive": "second-person object-first-person object-dual object-exclusive", 

6909 "third person > any person X …or… any person X > third person": [ 

6910 "third-person", 

6911 "object-third-person", 

6912 ], 

6913 "2nd Person Singular": "second-person singular", # spigen/Middle Low German 

6914 "él": "third-person singular", # foratar/Aragonese 

6915 "nusatros nusatras": "first-person plural", 

6916 "ellos/els ellas": "third-person plural", 

6917 "Conjectural": "", # 노타/Middle Korean/85 

6918 "transgressive present": "present transgressive", # naposlouchat/Czech 

6919 "transgressive past": "past transgressive", 

6920 "Verbal adjective": "adjective-from-verb", 

6921 "je (j’) / i": "first-person singular", # gizai/Bourguignon/81 

6922 "je (j') / i": "first-person singular", # antreprarre/Bourguignon/79 

6923 "que je (j') / qu'i": "first-person singular subjunctive", 

6924 "que je (j’) / qu'i": "first-person singular subjunctive", 

6925 "ai (el), ale": "third-person singular", # gizai/Bourguignon/58 

6926 "ai (el), ales": "third-person plural", 

6927 "qu'ai (el), qu'ale": "third-person singular subjunctive", 

6928 "qu'ai (el), qu'ales": "third-person plural subjunctive", 

6929 "determiners and pronouns": "determiner pronoun", # tꜣj/Egyptian/76 

6930 "anaphoric": "anaphoric", 

6931 "regular": "", # এৱা গাখীৰ/Assamese/74 

6932 "very formal": "deferential", 

6933 "infinitive II": "infinitive-ii infinitive", # ferkuupe/North Frisian 

6934 "PROGRESSIVE": "progressive", # yitih/Navajo 

6935 "past stem": "stem past", # a شباهت داشتن/Persian 

6936 "nominative, genitive and instrumental": "nominative genitive instrumental", # ხმოვანი/Georgian 

6937 "ej (j')": "first-person singular", # vouloér/Picard 

6938 "tu (t')": "second-person singular", 

6939 "i (il)/ale": "third-person singular", # vouloér/Picard 

6940 "i (il)/a (al)": "third-person singular", # ète/Picard/1 

6941 "(n)os": "first-person plural", # vouloér/Picard/60 

6942 "os": "second-person plural", # vouloér/Picard 

6943 "is": "third-person plural", # vouloér/Picard/31 

6944 "qu'ej (j')": "first-person singular subjunctive", # vouloér/Picard/31 

6945 "qu'tu (t')": "second-person singular subjunctive", 

6946 "eq tu (t')": "second-person singular subjunctive", # ète/Picard/1 

6947 "qu'i (il)/ale": "third-person singular subjunctive", # connoéte/Picard/29 

6948 "qu'i (il)/a (al)": "third-person singular subjunctive", # vouloér/Picard/2 

6949 "qu'(n)os": "first-person plural subjunctive", # connoéte/Picard/29 

6950 "qu'os": "first-person second-person plural subjunctive", # vouloér/Picard/33 

6951 "qu'is": "third-person plural subjunctive", # vouloér/Picard/31 

6952 "inanimate pronoun": "inanimate pronoun", # mönsemjo/Maquiritari 

6953 "medial": "medial", 

6954 "unmarked (later)": "", # ntw/Egyptian singular/plural/unmarked 

6955 "H-prothesis": "prothesis-h", # arglwyt/Middle Welsh/61 

6956 "h-prothesis": "prothesis-h", # moved here, uncommented 

6957 "distant past": "distant-past past", # weyetun/Mapudungun/56 

6958 # XXX Tatar has a ton of soft hyphens 

6959 "Futu\xadre": "future", #!! soft hyphen! тыңларга/Tatar 

6960 "Nonfinite verb forms": "", 

6961 "transitory past": "past transitional-past", # тұту/Kazakh 

6962 "сен": { 

6963 "lang": "Kazakh", 

6964 "then": "second-person singular informal", 

6965 "else": { 

6966 "lang": "Tuvan", 

6967 "then": "second-person singular", 

6968 }, 

6969 }, 

6970 "сіз": "second-person singular formal", 

6971 "біз": "first-person plural", 

6972 "сендер": "second-person plural informal", 

6973 "сіздер": "second-person plural formal", 

6974 "imperative/hortative": "imperative hortative", 

6975 "gend/num": "", # vascuenciu/Asturian/54 

6976 "inf": "infinitive", # হাঁঠ/Assamese/54 

6977 "ca je/i'": "first-person singular subjunctive", # spantacà/Neapolitan 

6978 "ca tu": "second-person singular subjunctive", 

6979 "ca nuje": "first-person plural subjunctive", 

6980 "il, alle, nos": "third-person singular", # cogier/Norman/52 

6981 "il, alles": "third-person plural", 

6982 "qu'il, qu'alle, que nos": "third-person singular subjunctive", 

6983 "que je (que nos)": "first-person plural subjunctive", 

6984 "qu'il, qu'alles": "third-person plural subjunctive", 

6985 # Get yourself together, Sardinian 

6986 "deo": "", # nochere/Sardinian/52 

6987 "deo, eo": "", # tzappare/Sardinian/51 

6988 "dego, deo": "", # tzappare/Sardinian/33 

6989 "isse/issa": "", # nochere/Sardinian/27 

6990 "chi deo, chi eo": "", # tzappare/Sardinian/17 

6991 "chi deo": "", # impreare/Sardinian/12 

6992 "chi dego, chi deo": "", # tzappare/Sardinian/11 

6993 "che deo": "", # nochere/Sardinian/8 

6994 "che tue": "", # nochere/Sardinian/8 

6995 "che isse/issa": "", # nochere/Sardinian/8 

6996 "che nois": "", # nochere/Sardinian/8 

6997 "che bois": "", # nochere/Sardinian/8 

6998 "che issos/issas": "", # nochere/Sardinian/8 

6999 "issos/ issas": "", # finire/Sardinian/4 

7000 "eo, deo": "", # finire/Sardinian/3 

7001 "deu": "", # essi/Sardinian/3 

7002 "tui": "", # essi/Sardinian/3 

7003 "nosu": "", # essi/Sardinian/3 

7004 "bosatrus/bosatras": "", # essi/Sardinian/3 

7005 "issus/issas": "", # essi/Sardinian/3 

7006 "past/ imperfect": "", # finire/Sardinian/2 

7007 "+ past participle": "", # pòdere/Sardinian/2 

7008 "isse/ issa": "", # finire/Sardinian/1 

7009 "chi deu": "", # essi/Sardinian/1 

7010 "chi tui": "", # essi/Sardinian/1 

7011 "chi nosu": "", # essi/Sardinian/1 

7012 "chi bosatrus/bosatras": "", # essi/Sardinian/1 

7013 "chi issus/issas": "", # essi/Sardinian/1 

7014 "Verbs beginning with a consonant.": "", # chaaha̱ taloowa/Chickasaw/52 

7015 "te": "second-person singular", # ovrar/Franco-Provençal 

7016 "nu": "first-person plural", # legro/Dalmatian 

7017 "vu": "second-person plural", 

7018 "Perfekta": "perfect", # sannoa/Ingrian/50 

7019 "Nouns in vowel-, b-, or p-": "", # aaombiniili'/Chickasaw/50 

7020 "subjunctive present": "present subjunctive", # a متشکر بودن/Persian/48 

7021 "1st Person Singular": "first-person singular", # spigen/Middle Low German 

7022 "3rd Person Singular": "third-person singular", 

7023 "Rewş": "", # "case", kerguh/Northern Kurdish 

7024 "Vde": "third-person singular", # aterecer/Galician 

7025 "Vdes": "third-person plural", 

7026 "IMPF": "imperfect", # डिलीट होना/Hindi 

7027 "frm": "", # ??? "form"? হাঁঠ/Assamese 

7028 "focus": "focus", # issito/Choctaw 

7029 "singular 1ˢᵗ person": "first-person singular", # гъэкӏодын/Adyghe 

7030 "singular 2ˢᵗ person": "second-person singular", 

7031 "singular 3ˢᵗ person": "third-person singular", 

7032 "plural 1ˢᵗ person": "first-person plural", 

7033 "plural 2ˢᵗ person": "second-person plural", 

7034 "plural 3ˢᵗ person": "third-person plural", 

7035 "Neuter gender": "neuter", # 𒄭𒅔𒃷/Hittite 

7036 "Plain Infinitive": "infinitive", # spigen/Middle Low German 

7037 "Full Infinitive (Gerund)": "gerund infinitive", 

7038 "Imperatives": { 

7039 "default": "imperative", 

7040 "lang": "Swahili", 

7041 "then": "dummy-section-header imperative", 

7042 }, 

7043 "Tensed forms": { 

7044 "default": "", 

7045 "lang": "Swahili", 

7046 "then": "dummy-reset-section-header", 

7047 }, 

7048 "Object concord (indicative positive)": { 

7049 "default": "object-concord indicative positive", 

7050 "lang": "Swahili", 

7051 "then": "dummy-section-header object-concord indicative positive", 

7052 }, 

7053 "Relative forms": { 

7054 "default": "", 

7055 "lang": "Swahili", 

7056 "then": "dummy-section-header relative object-concord", 

7057 }, 

7058 "2nd Person Plural": "second-person plural", 

7059 "free state": "free-state", # aɣemmar/Tarifit 

7060 "construct state": "construct", 

7061 "dative/instr": "dative instrumental", # unseraz/Proto-Germanic/39 

7062 "infinitive III": "infinitive infinitive-iii", # stärwe/North Frisian 

7063 "determiners": "determiner", # nꜣyw/Egyptian/38 

7064 "pronouns": "pronoun", 

7065 "proximal to speaker": "proximal-to-speaker", 

7066 "proximal to spoken of": "proximal-to-topic", 

7067 "‘copula’": "copulative", 

7068 "possessive determiners (used with suffix pronouns)": "possessive determiner", 

7069 "relational pronouns (‘possessive prefixes’)": "possessive pronoun", 

7070 "definite articles": "definite article", 

7071 "indefinite articles": "indefinite article", 

7072 "Aspirate": "mutation-aspirate", # vynet/Middle Welsh/37 

7073 "dji (dj')": "first-person singular", # atchter/Walloon/37 

7074 "preterit": "preterite", 

7075 "dji / nos": "first-person plural", 

7076 "nós nós outros nós outras": "first-person plural", # prazer/Old Portuguese 

7077 "vós vós outros vós outras": "second-person plural", 

7078 "contrastive": "contrastive", # issito/Choctaw/36 

7079 # espurrire/Leonese 

7080 "you": { 

7081 "lang": "Leonese", 

7082 "then": "first-person singular", 

7083 }, 

7084 "él / eilla / eillu / vusté": "third-person singular", 

7085 "nosoutros / nosoutras": "first-person plural", 

7086 "vosoutros / vosoutras": "second-person plural", 

7087 "eillos / eillas / vustedes": "third-person plural", 

7088 "Personal-pronoun including forms": "", # ܓܘ/Assyrian Neo-Aramaic/36 

7089 "Non-personal-pronoun-including form": "", # במו/Hebrew/35 

7090 # pårler/Walloon 

7091 "i (il) / ele": "third-person singular", 

7092 "dji (dj') / nos": "first-person plural", 

7093 "ki dj'": "first-person singular subjunctive", 

7094 "ki t'": "second-person singular subjunctive", 

7095 "k' i (il) / k' ele": "third-person singular subjunctive", 

7096 "ki dj' / ki nos": "first-person plural subjunctive", 

7097 "ki vos": "second-person plural subjunctive", 

7098 "k' i (il)": "third-person plural subjunctive", 

7099 # sannoa/Ingrian, rest of these 

7100 "Imperfekta": "imperfect", 

7101 "Pluskvamperfekta": "pluperfect", 

7102 "Infinitivat": "infinitive", 

7103 "Partisipat": "participle", 

7104 # f/Slovene 

7105 "nominative imenovȃlnik": "nominative", 

7106 "genitive rodȋlnik": "genitive", 

7107 "dative dajȃlnik": "dative", 

7108 "accusative tožȋlnik": "accusative", 

7109 "locative mẹ̑stnik": "locative", 

7110 "instrumental orọ̑dnik": "instrumental", 

7111 "(vocative) (ogȏvorni imenovȃlnik)": "vocative", 

7112 # akaka/Choctaw 

7113 "Possession": "possessed-form", 

7114 '("my, our")': "first-person possessive", 

7115 '("thy, your")': "second-person possessive", 

7116 '("his, her, its, their")': "third-person possessive", 

7117 # humingi/Tagalog 

7118 # Why is there \u2060 in so many differen tagalog templates like these??? 

7119 "\u2060 ma- -an": "", 

7120 "\u2060mapag- -an": "", 

7121 "\u2060mapagpa- -an": "", 

7122 "\u2060mapapag- -an": "", 

7123 "\u2060 mapa- -an": "", 

7124 # katayin/Tagalog 

7125 "\u2060mapapag-": "", 

7126 # -nən/Azerbaijani floating div! Got it to work! 

7127 "preceding vowel": "", 

7128 "A / I / O / U": "back-vowel-harmony", 

7129 "E / Ə / İ / Ö / Ü": "front-vowel-harmony", 

7130 "postconsonantal": "after-consonant", 

7131 "postvocalic": "after-vowel", 

7132 # -ül/Azerbaijani 

7133 "A / I": "back-vowel-harmony unrounded-harmony", 

7134 "E / Ə / İ": "front-vowel-harmony unrounded-harmony", 

7135 "O / U": "back-vowel-harmony rounded-harmony", 

7136 "Ö / Ü": "front-vowel-harmony rounded-harmony", 

7137 "postconsonantal except after L": "after-consonant-except-l", 

7138 "after L": "after-l-consonant", 

7139 # kk-suffix-forms Kazakh 

7140 "А / Ы / О / Ұ": "back-vowel-harmony", 

7141 "Ә / Е / І / Ө / Ү": "front-vowel-harmony", 

7142 # ky-suffix-forms Kyrgyz 

7143 "А / Ы": "back-vowel-harmony unrounded-harmony", 

7144 "Е / И": "front-vowel-harmony unrounded-harmony", 

7145 "О / У": "back-vowel-harmony rounded-harmony", 

7146 "Ө / Ү": "front-vowel-harmony unrounded-harmony", 

7147 # tr-inf-p Turkish 

7148 "E / İ": "front-vowel-harmony unrounded-harmony", 

7149 # tt-suffix-forms Tatar 

7150 "А / Ы / О / У": "back-vowel-harmony", 

7151 "Ә/ Е / Э / Ө / Ү": "front-vowel-harmony", 

7152 # wasick/Narragansett 

7153 "unpossessed": { 

7154 "lang": "Narragansett", 

7155 "then": "", 

7156 }, 

7157 # patika/Swahili new tables! 

7158 "m-wa_((I/II))": "class-1 class-2", 

7159 "m-mi_((III/IV))": "class-3 class-4", 

7160 "ji-ma_((V/VI))": "class-5 class-6", 

7161 "ki-vi_((VII/VIII))": "class-7 class-8", 

7162 "n_((IX/X))": "class-9 class-10", 

7163 "u_((XI))": "class-11", 

7164 "ku_((XV/XVII))": "class-15 class-17", 

7165 "pa_((XVI))": "class-16", 

7166 "mu_((XVIII))": "class-18", 

7167 # ծաղրել/Armenian 

7168 "past future": "future past", 

7169 # new Finnish verb table stuff takaisinmallintaa/Finnish 

7170 "plur.": "plural", 

7171 "sing.": "singular", 

7172 # https://en.wiktionary.org/wiki/Template:ka-decl-noun 

7173 # Georgian postpositional forms 

7174 "dative-case postpositions": "", 

7175 "-ზე (-ze, “on”)": "on-position dative", 

7176 "-თან (-tan, “near”)": "near-position dative", 

7177 "-ში (-ši, “in”)": "in-position dative", 

7178 "-ვით (-vit, “like”)": "like-position dative", 

7179 "genitive-case postpositions": "", 

7180 "-თვის (-tvis, “for”)": "for-position genitive", 

7181 "-ებრ (-ebr, “like”)": "like-position genitive", 

7182 "-კენ (-ḳen, “towards”)": "towards-position genitive", 

7183 "-გან (-gan, “from/of”)": "from-position genitive", 

7184 "-ადმი (-admi, “in relation to”)": "in-relation-to-position genitive", 

7185 "instrumental-case postpositions": "", 

7186 "-დან (-dan, “from/since”)": "since-position instrumental", 

7187 "-ურთ (-urt, “together with”)": "together-with-position instrumental", 

7188 "adverbial-case postpositions": "", 

7189 "-მდე (-mde, “up to”)": "up-to-position adverbial", 

7190 # femeie/Romanian 

7191 "genitive-dative": "genitive dative", 

7192 "active": { 

7193 "default": "active", 

7194 "inflection-template": "grc-conj", 

7195 "column-index": 2, 

7196 "then": "dummy-reset-headers active", 

7197 }, 

7198 "Derived forms": { 

7199 "default": "", 

7200 "lang": "grc", 

7201 "then": "dummy-reset-headers", 

7202 }, 

7203} 

7204 

7205 

7206def check_tags(k: str, v: str) -> None: 

7207 assert isinstance(k, str) 

7208 assert isinstance(v, str) 

7209 for tag in v.split(): 

7210 if tag not in valid_tags and tag not in ("*",): 7210 ↛ 7211line 7210 didn't jump to line 7211 because the condition on line 7210 was never true

7211 print("infl_map[{!r}] contains invalid tag {!r}".format(k, tag)) 

7212 

7213 

7214def check_v( 

7215 k: str, v: Union[str, list[str], dict[str, InflMapNode], InflMapNodeDict] 

7216) -> None: 

7217 assert isinstance(k, str) 

7218 if v is None: # or v in ("dummy-reset-headers",): 7218 ↛ 7219line 7218 didn't jump to line 7219 because the condition on line 7218 was never true

7219 return 

7220 if isinstance(v, str): 

7221 check_tags(k, v) 

7222 elif isinstance(v, list): 

7223 for item in v: 

7224 check_v(k, item) 

7225 elif isinstance(v, dict): 7225 ↛ 7274line 7225 didn't jump to line 7274 because the condition on line 7225 was always true

7226 for kk in v.keys(): 

7227 if kk in ( 

7228 "if", 

7229 "then", 

7230 "else", 

7231 ): 

7232 check_v(k, v[kk]) 

7233 elif kk == "default": 

7234 if not isinstance(v[kk], (str, list, tuple)): 7234 ↛ 7235line 7234 didn't jump to line 7235 because the condition on line 7234 was never true

7235 print( 

7236 "infl_map[{!r}] contains invalid default value " 

7237 "{!r}".format(k, v[kk]) 

7238 ) 

7239 elif kk == "pos": 

7240 vv = v[kk] 

7241 if isinstance(vv, str): 

7242 vv = [vv] 

7243 for vvv in vv: 

7244 if vvv not in PARTS_OF_SPEECH: 7244 ↛ 7245line 7244 didn't jump to line 7245 because the condition on line 7244 was never true

7245 print( 

7246 "infl_map[{!r}] contains invalid part-of-speech " 

7247 "{!r} -- {!r}".format(k, kk, v[kk]) 

7248 ) 

7249 elif kk in ("lang",): 

7250 pass 

7251 elif kk == "nested-table-depth": 

7252 if not isinstance(v[kk], (int, list, tuple)): 7252 ↛ 7253line 7252 didn't jump to line 7253 because the condition on line 7252 was never true

7253 print( 

7254 "infl_map[{!r}] contains invalid depth-value " 

7255 "{!r}".format(k, v[kk]) 

7256 ) 

7257 elif kk == "inflection-template": 

7258 if not isinstance(v[kk], (str, list, tuple)): 7258 ↛ 7259line 7258 didn't jump to line 7259 because the condition on line 7258 was never true

7259 print( 

7260 "infl_map[{!r}] contains invalid" 

7261 "inflection-template value " 

7262 "{!r}".format(k, v[kk]) 

7263 ) 

7264 elif kk == "column-index": 7264 ↛ 7272line 7264 didn't jump to line 7272 because the condition on line 7264 was always true

7265 if not isinstance(v[kk], (int, list, tuple)): 7265 ↛ 7266line 7265 didn't jump to line 7266 because the condition on line 7265 was never true

7266 print( 

7267 "infl_map[{!r}] contains invalid" 

7268 "column-index value " 

7269 "{!r}".format(k, v[kk]) 

7270 ) 

7271 else: 

7272 print("infl_map[{!r}] contains invalid key {!r}".format(k, kk)) 

7273 else: 

7274 print("infl_map[{!r}] contains invalid value {!r}".format(k, v)) 

7275 

7276 

7277for k, v in infl_map.items(): 

7278 check_v(k, v) 

7279 

7280 

7281# Mapping from start of header to tags for inflection tables. The start must 

7282# be followed by a space (automatically added, do not enter here). 

7283infl_start_map = { 

7284 "with infinitive": "infinitive", 

7285 "with gerund": "gerund", 

7286 "with informal second-person singular imperative": "informal second-person singular imperative", 

7287 # Template:es-conj Module:es-verb 

7288 "with informal second-person singular tuteo imperative": # cedular/Spanish 

7289 "informal second-person singular imperative with-tú", 

7290 "with informal second-person singular voseo imperative": "informal second-person singular imperative with-vos", 

7291 "with formal second-person singular imperative": "formal second-person singular imperative", 

7292 "with first-person plural imperative": "first-person plural imperative", 

7293 "with informal second-person plural imperative": "informal second-person plural imperative", 

7294 "with formal second-person plural imperative": "formal second-person plural imperative", 

7295 # kaozeal/Breton 

7296 "Soft mutation after": "mutation-soft", 

7297 "Mixed mutation after": "mutation-mixed", 

7298 # gláedach/Old Irish 

7299 "Initial mutations of a following adjective:": "dummy-skip-this", 

7300} 

7301for k, v in infl_start_map.items(): 

7302 check_v(k, v) 

7303 

7304infl_start_re = re.compile( 

7305 r"^({}) ".format("|".join(re.escape(x) for x in infl_start_map.keys())) 

7306)