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

57 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-01-19 11:25 +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": 

180 "predicative possessive possessed-single", # XXX hűtő/Hungarian/Noun 

181 "non-attributive possessive - plural": 

182 "predicative possessive possessed-single", 

183 "infinitive": "infinitive", 

184 "prepositional": "prepositional", 

185 "masculine": { 

186 "if": "possessive", 

187 "lang": POSSESSIVE_POSSESSED_LANGS, 

188 "then": "possessed-masculine", 

189 "else": "masculine", 

190 }, 

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

192 "passive": "passive", 

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

194 "participles": "participle", 

195 "Participles": "participle", 

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

197 "Present forms": "present", 

198 "Transgressives": "transgressive", 

199 "past tense": "past", 

200 "Positive participial": "positive participle", 

201 "Negative participial": "negative participle", 

202 "present tense": "present", 

203 "future tense": "future", 

204 "Neuter": "neuter", 

205 # "Masculine": "masculine", 

206 "Feminine": "feminine", 

207 "adverbial": "adverbial", 

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

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

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

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

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

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

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

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

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

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

218 "feminine + neuter singular": "feminine neuter singular", 

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

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

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

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

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

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

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

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

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

228 "second-person singular archaic " "formal majestic", 

229 "second-person singular colloquial Flanders", 

230 ], 

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

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

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

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

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

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

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

238 "First": "first-person", 

239 "Second": "second-person", 

240 "Third": "third-person", 

241 "Case / Gender": "", 

242 "masculine inanimate": "masculine inanimate", 

243 "Infinitive": "infinitive", 

244 "Past indicative": "past indicative", 

245 "Past participle": "past participle", 

246 "Past participles": "past participle", 

247 "past participle plural": "past participle plural", 

248 "Passive participles": "passive participle", 

249 "Present participle": "present participle", 

250 "present participle/gerund": "present participle", 

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

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

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

254 "third-person singular", 

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

256 ], 

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

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

259 "third-person plural", 

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

261 ], 

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

263 "Pre­sent": "present", 

264 "Indef.": { 

265 "lang": "Hungarian", 

266 "then": "object-indefinite", 

267 "else": "indefinite", 

268 }, 

269 "Def.": { 

270 "lang": "Hungarian", 

271 "then": "object-definite", 

272 "else": "definite", 

273 }, 

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

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

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

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

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

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

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

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

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

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

284 "Other nonfinite verb forms": { 

285 "lang": "Hungarian", 

286 "then": "", 

287 "else": "dummy-mood", 

288 }, 

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

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

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

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

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

294 "Potential": "potential", 

295 "potential": "potential", 

296 "present": "present", 

297 "virile": "virile", 

298 "nonvirile": "nonvirile", 

299 "case": "", 

300 "nominative, vocative": "nominative vocative", 

301 "indefinite": "indefinite", 

302 "masculine personal/animate": { 

303 "lang": "Polish", 

304 "then": "masculine animate", 

305 "else": "masculine personal animate", 

306 }, 

307 "perfective aspect": "perfective", 

308 "definite": "definite", 

309 "animate": "animate", 

310 "inanimate": "inanimate", 

311 "Dual": "dual", 

312 "indicative": "indicative", 

313 "subjunctive": "subjunctive", 

314 "person": { 

315 "default": "person", 

316 "lang": "Polish", 

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

318 }, 

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

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

321 "indefinite articulation": "indefinite", 

322 "definite articulation": "definite", 

323 "nominative/accusative": "nominative accusative", 

324 "genitive/dative": "genitive dative", 

325 "imperfective aspect": "imperfective", 

326 "future": "future", 

327 "Immediate future": "future future-near", 

328 "Remote future": "future future-remote", 

329 "Comparative": "comparative", 

330 "Superlative": "superlative", 

331 "perfect": "perfect", 

332 "gerund": "gerund", 

333 "first": "first-person", 

334 "second": "second-person", 

335 "third": "third-person", 

336 "imperfect": "imperfect", 

337 "infinitives": "infinitive", 

338 "conditional": "conditional", 

339 "pluperfect": "pluperfect", 

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

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

342 "Bare forms": "indefinite", 

343 "Bare forms:": "", 

344 "past": "past", 

345 "1st": { 

346 "default": "first-person", 

347 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

348 "if": "infinitive", 

349 "then": "infinitive-i", 

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

351 }, 

352 "2nd": { 

353 "default": "second-person", 

354 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

355 "if": "infinitive", 

356 "then": "infinitive-ii", 

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

358 }, 

359 "3rd": { 

360 "default": "third-person", 

361 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

362 "if": "infinitive", 

363 "then": "infinitive-iii", 

364 }, 

365 "4th": { 

366 "default": "fourth-person", 

367 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

368 "if": "infinitive", 

369 "then": "infinitive-iv", 

370 }, 

371 "5th": { 

372 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

373 "if": "infinitive", 

374 "then": "infinitive-v", 

375 }, 

376 "Case / #": "", 

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

378 "accusative animate inanimate": "accusative animate inanimate", 

379 "negative": "negative", 

380 "past participle": "past participle", 

381 "indicative mood": "indicative", 

382 "nominative/ accusative": "nominative accusative", 

383 "genitive/ dative": "genitive dative", 

384 "Positive": "positive", 

385 "short form": "short-form", 

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

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

388 "positive": "positive", 

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

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

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

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

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

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

395 "conditional mood": "conditional", 

396 "imperative mood": "imperative", 

397 "potential mood": "potential", 

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

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

400 "I": { 

401 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

402 "if": "infinitive", 

403 "then": "infinitive-i", 

404 "else": { 

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

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

407 "else": { 

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

409 "if": "accusative", 

410 "then": "accusative-i", 

411 "else": { 

412 "lang": "Komi-Zyrian", 

413 "if": "prolative", 

414 "then": "prolative-i", 

415 "else": { 

416 "lang": "Avar", 

417 "if": "locative", 

418 "then": "locative-i", 

419 "else": { 

420 "lang": "Avar", 

421 "if": "allative", 

422 "then": "allative-i", 

423 "else": { 

424 "lang": "Avar", 

425 "if": "ablative", 

426 "then": "ablative-i", 

427 "else": { 

428 "lang": "Avar", 

429 "if": "translative", 

430 "then": "translative-i", 

431 }, 

432 }, 

433 }, 

434 }, 

435 }, 

436 }, 

437 }, 

438 }, 

439 "long I": { 

440 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

441 "if": "infinitive", 

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

443 }, 

444 "II": { 

445 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

446 "if": "infinitive", 

447 "then": "infinitive-ii", 

448 "else": { 

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

450 "if": "accusative", 

451 "then": "accusative-ii", 

452 "else": { 

453 "lang": "Komi-Zyrian", 

454 "if": "prolative", 

455 "then": "prolative-ii", 

456 "else": { 

457 "lang": "Avar", 

458 "if": "locative", 

459 "then": "locative-ii", 

460 "else": { 

461 "lang": "Avar", 

462 "if": "allative", 

463 "then": "allative-ii", 

464 "else": { 

465 "lang": "Avar", 

466 "if": "ablative", 

467 "then": "ablative-ii", 

468 "else": { 

469 "lang": "Avar", 

470 "if": "translative", 

471 "then": "translative-ii", 

472 }, 

473 }, 

474 }, 

475 }, 

476 }, 

477 }, 

478 }, 

479 "III": { 

480 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

481 "if": "infinitive", 

482 "then": "infinitive-iii", 

483 "else": { 

484 "lang": "Avar", 

485 "if": "locative", 

486 "then": "locative-iii", 

487 "else": { 

488 "lang": "Avar", 

489 "if": "allative", 

490 "then": "allative-iii", 

491 "else": { 

492 "lang": "Avar", 

493 "if": "ablative", 

494 "then": "ablative-iii", 

495 "else": { 

496 "lang": "Avar", 

497 "if": "translative", 

498 "then": "translative-iii", 

499 }, 

500 }, 

501 }, 

502 }, 

503 }, 

504 "IV": { 

505 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

506 "if": "infinitive", 

507 "then": "infinitive-iv", 

508 "else": { 

509 "lang": "Avar", 

510 "if": "locative", 

511 "then": "locative-iv", 

512 "else": { 

513 "lang": "Avar", 

514 "if": "allative", 

515 "then": "allative-iv", 

516 "else": { 

517 "lang": "Avar", 

518 "if": "ablative", 

519 "then": "ablative-iv", 

520 "else": { 

521 "lang": "Avar", 

522 "if": "translative", 

523 "then": "translative-iv", 

524 }, 

525 }, 

526 }, 

527 }, 

528 }, 

529 "V": { 

530 "lang": LANGS_WITH_NUMBERED_INFINITIVES, 

531 "if": "infinitive", 

532 "then": "infinitive-v", 

533 "else": { 

534 "lang": "Avar", 

535 "if": "locative", 

536 "then": "locative-v", 

537 "else": { 

538 "lang": "Avar", 

539 "if": "allative", 

540 "then": "allative-v", 

541 "else": { 

542 "lang": "Avar", 

543 "if": "ablative", 

544 "then": "ablative-v", 

545 "else": { 

546 "lang": "Avar", 

547 "if": "translative", 

548 "then": "translative-v", 

549 }, 

550 }, 

551 }, 

552 }, 

553 }, 

554 "agent": "agent", 

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

556 "(strong noun)": "strong", 

557 "(weak noun)": "weak", 

558 "Weak conjugation": "weak", 

559 "Strong conjugation": "strong", 

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

561 "present participle": "present participle", 

562 "number case / gender": "", 

563 "Case/Gender": "", 

564 "Adverb": "adverbial", 

565 "augmentative": "augmentative", 

566 "diminutive": "diminutive", 

567 "singular (vienaskaita)": "singular", 

568 "plural (daugiskaita)": "plural", 

569 "nominative (vardininkas)": "nominative", 

570 "genitive (kilmininkas)": "genitive", 

571 "dative (naudininkas)": "dative", 

572 "accusative (galininkas)": "accusative", 

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

574 "locative (vietininkas)": "locative", 

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

576 "ie": { 

577 "lang": "Dutch", 

578 "pos": "verb", 

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

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

581 "else": { 

582 "lang": [ 

583 "Middle French", 

584 "Old Occitan", 

585 "Ladin", 

586 ], 

587 "pos": "verb", 

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

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

590 }, 

591 }, 

592 "io": { 

593 "lang": [ 

594 "Aromanian", 

595 "Interlingua", 

596 "Istro-Romanian", 

597 "Italian", 

598 "Neapolitan", 

599 ], 

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

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

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

603 }, 

604 "tu": { 

605 "lang": [ 

606 "Aromanian", 

607 "Asturian", 

608 "Catalan", 

609 "French", 

610 "Friulian", 

611 "Gallurese", 

612 "Gaulish", 

613 "Ido", 

614 "Interlingua", 

615 "Italian", 

616 "Kalasha", 

617 "Kalo Finnish Romani", 

618 "Ladino", 

619 "Latgalian", 

620 "Latin", 

621 "Latvian", 

622 "Lithuanian", 

623 "Middle French", 

624 "Mirandese", 

625 "Neapolitan", 

626 "Northern Kurdish", 

627 "Old French", 

628 "Occitan", 

629 "Old Irish", 

630 "Old Portuguese", 

631 "Phalura", 

632 "Portuguese", 

633 "Romani", 

634 "Romanian", 

635 "Sassarese", 

636 "Savi", 

637 "Scottish Gaelic", 

638 "Sicilian", 

639 "Sinte Romani", 

640 "Sudovian", 

641 "Tarantino", 

642 "Tocharian A", 

643 "Welsh Romani", 

644 ], 

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

646 "then": "second-person", 

647 "else": { 

648 "lang": "Ladin", 

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

650 }, 

651 }, 

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

653 "lang": "Italian", 

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

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

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

657 }, 

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

659 "lang": "Italian", 

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

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

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

663 }, 

664 "noi": { 

665 "lang": [ 

666 "Aromanian", 

667 "Corsican", 

668 "Gallurese", 

669 "Italian", 

670 "Piedmontese", 

671 "Romanian", 

672 "Sassarese", 

673 ], 

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

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

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

677 }, 

678 "voi": { 

679 "lang": [ 

680 "Aromanian", 

681 "Corsican", 

682 "Gallurese", 

683 "Italian", 

684 "Piedmontese", 

685 "Romanian", 

686 "Sassarese", 

687 ], 

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

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

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

691 }, 

692 "loro, essi/esse": { 

693 "lang": "Italian", 

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

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

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

697 }, 

698 "loro": { # calere/Italian 

699 "lang": "Italian", 

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

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

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

703 }, 

704 "che io": { 

705 "lang": "Italian", 

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

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

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

709 }, 

710 "che tu": { 

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

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

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

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

715 }, 

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

717 "lang": "Italian", 

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

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

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

721 }, 

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

723 "lang": "Italian", 

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

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

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

727 }, 

728 "che noi": { 

729 "lang": "Italian", 

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

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

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

733 }, 

734 "che voi": { 

735 "lang": "Italian", 

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

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

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

739 }, 

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

741 "lang": "Italian", 

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

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

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

745 }, 

746 "che loro": { # calere/Italian 

747 "lang": "Italian", 

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

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

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

751 }, 

752 "io/mini/mine": { 

753 "lang": "Aromanian", 

754 "pos": "verb", 

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

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

757 }, 

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

759 "lang": "Aromanian", 

760 "pos": "verb", 

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

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

763 }, 

764 "tu/tini/tine": { 

765 "lang": "Aromanian", 

766 "pos": "verb", 

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

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

769 }, 

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

771 "lang": "Aromanian", 

772 "pos": "verb", 

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

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

775 }, 

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

777 "lang": "Aromanian", 

778 "pos": "verb", 

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

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

781 }, 

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

783 "lang": "Aromanian", 

784 "pos": "verb", 

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

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

787 }, 

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

789 "lang": "Aromanian", 

790 "pos": "verb", 

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

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

793 }, 

794 "eiu": { 

795 "lang": "Corsican", 

796 "pos": "verb", 

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

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

799 }, 

800 "tù": { 

801 "lang": "Corsican", 

802 "pos": "verb", 

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

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

805 }, 

806 "ellu/ella": { 

807 "lang": "Corsican", 

808 "pos": "verb", 

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

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

811 }, 

812 "elli/elle": { 

813 "lang": "Corsican", 

814 "pos": "verb", 

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

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

817 }, 

818 "eu": { 

819 "lang": [ 

820 "Galician", 

821 "Gallurese", 

822 "Old Occitan", 

823 "Old Portuguese", 

824 "Portuguese", 

825 "Romanian", 

826 "Romansch", 

827 ], 

828 "pos": "verb", 

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

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

831 }, 

832 "el/ea": { 

833 "lang": "Romanian", 

834 "pos": "verb", 

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

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

837 }, 

838 "ei/ele": { 

839 "lang": "Romanian", 

840 "pos": "verb", 

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

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

843 }, 

844 "aš": { 

845 "lang": "Lithuanian", 

846 "pos": "verb", 

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

848 "then": "first-person", 

849 }, 

850 "jis/ji": { 

851 "lang": "Lithuanian", 

852 "pos": "verb", 

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

854 "then": "third-person", 

855 }, 

856 "mes": { 

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

858 "pos": "verb", 

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

860 "then": "first-person", 

861 }, 

862 "mēs": { 

863 "lang": "Latvian", 

864 "pos": "verb", 

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

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

867 }, 

868 "es": { 

869 "lang": [ 

870 "Alemannic German", 

871 "Cimbrian", 

872 "German", 

873 "Hunsrik", 

874 "Pennsylvania German", 

875 "Sudovian", 

876 ], 

877 "pos": "verb", 

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

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

880 "else": { 

881 "lang": ["Bavarian"], 

882 "pos": "verb", 

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

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

885 "else": { 

886 "lang": "Kabuverdianu", 

887 "pos": "verb", 

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

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

890 "else": { 

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

892 "pos": "verb", 

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

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

895 }, 

896 }, 

897 }, 

898 }, 

899 "jūs": { 

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

901 "pos": "verb", 

902 "if": "singular", 

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

904 "else": { 

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

906 "pos": "verb", 

907 "if": "plural", 

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

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

910 }, 

911 }, 

912 "jie/jos": { 

913 "lang": "Lithuanian", 

914 "pos": "verb", 

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

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

917 }, 

918 "jie": { 

919 "lang": "Saterland Frisian", 

920 "pos": "verb", 

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

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

923 "else": { 

924 "lang": "Saterland Frisian", 

925 "pos": "verb", 

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

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

928 }, 

929 }, 

930 "ije": { 

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

932 "pos": "verb", 

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

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

935 }, 

936 "jidde / jèdde": { 

937 "lang": "Tarantino", 

938 "pos": "verb", 

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

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

941 }, 

942 "nuje": { 

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

944 "pos": "verb", 

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

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

947 }, 

948 "vuje": { 

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

950 "pos": "verb", 

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

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

953 }, 

954 "lóre": { 

955 "lang": "Tarantino", 

956 "pos": "verb", 

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

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

959 }, 

960 "lloro": { 

961 "lang": "Neapolitan", 

962 "pos": "verb", 

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

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

965 }, 

966 "isso/essa": { 

967 "lang": "Neapolitan", 

968 "pos": "verb", 

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

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

971 }, 

972 "cu ije": { 

973 "lang": "Tarantino", 

974 "pos": "verb", 

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

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

977 }, 

978 "cu tu": { 

979 "lang": [ 

980 "Neapolitan", 

981 "Tarantino", 

982 ], 

983 "pos": "verb", 

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

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

986 }, 

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

988 "lang": "Tarantino", 

989 "pos": "verb", 

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

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

992 }, 

993 "cu nuje": { 

994 "lang": [ 

995 "Neapolitan", 

996 "Tarantino", 

997 ], 

998 "pos": "verb", 

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

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

1001 }, 

1002 "cu vuje": { 

1003 "lang": "Tarantino", 

1004 "pos": "verb", 

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

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

1007 }, 

1008 "cu lóre": { 

1009 "lang": "Tarantino", 

1010 "pos": "verb", 

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

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

1013 }, 

1014 "ca io": { 

1015 "lang": "Neapolitan", 

1016 "pos": "verb", 

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

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

1019 }, 

1020 "ca isso/ca essa": { 

1021 "lang": "Neapolitan", 

1022 "pos": "verb", 

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

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

1025 }, 

1026 "ca vuje": { 

1027 "lang": "Neapolitan", 

1028 "pos": "verb", 

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

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

1031 }, 

1032 "ca lloro": { 

1033 "lang": "Neapolitan", 

1034 "pos": "verb", 

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

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

1037 }, 

1038 "ja": { 

1039 "lang": [ 

1040 "Assan", 

1041 "Guerrero Amuzgo", 

1042 "Gutnish", 

1043 "Lower Sorbian", 

1044 "Polish", 

1045 "Serbo-Croatian", 

1046 "Slovak", 

1047 "Upper Sorbian", 

1048 ], 

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

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

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

1052 "else": { 

1053 "lang": "North Frisian", 

1054 "pos": "verb", 

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

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

1057 }, 

1058 }, 

1059 "ti": { 

1060 "lang": [ 

1061 "Albanian", 

1062 "Galician", 

1063 "Istriot", 

1064 "Ligurian", 

1065 "Piedmontese", 

1066 "Romansch", 

1067 "Serbo-Croatian", 

1068 "Slovene", 

1069 "Welsh", 

1070 "Cumprar", 

1071 ], 

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

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

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

1075 "else": { 

1076 "lang": "Czech", 

1077 "pos": "verb", 

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

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

1080 "else": { 

1081 "lang": "Hungarian", 

1082 "pos": "verb", 

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

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

1085 }, 

1086 }, 

1087 }, 

1088 "on / ona / ono": { 

1089 "lang": [ 

1090 "Czech", 

1091 "Old Czech", 

1092 "Polish", 

1093 "Serbo-Croatian", 

1094 "Slovak", 

1095 "Slovene", 

1096 ], 

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

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

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

1100 }, 

1101 "mi": { 

1102 "lang": [ 

1103 "Bislama", 

1104 "Esperanto", 

1105 "Fula", 

1106 "Ga", 

1107 "Gaulish", 

1108 "Guinea-Bissau Creole", 

1109 "Jamaican Creole", 

1110 "Kabuverdianu", 

1111 "Ligurian", 

1112 "Nigerian Pidgin", 

1113 "Nzadi", 

1114 "Önge", 

1115 "Papiamentu", 

1116 "Piedmontese", 

1117 "Pijin", 

1118 "Scottish Gaelic", 

1119 "Sranan Tongo", 

1120 "Tok Pisin", 

1121 "Welsh", 

1122 ], 

1123 "pos": "verb", 

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

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

1126 "else": { 

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

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

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

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

1131 "else": { 

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

1133 "pos": "verb", 

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

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

1136 "else": { 

1137 "lang": "Jarawa", 

1138 "pos": "verb", 

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

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

1141 "else": { 

1142 "lang": "Jarawa", 

1143 "pos": "verb", 

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

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

1146 }, 

1147 }, 

1148 }, 

1149 }, 

1150 }, 

1151 "vi": { 

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

1153 "pos": "verb", 

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

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

1156 "else": { 

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

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

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

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

1161 "else": { 

1162 "lang": "Slovene", 

1163 "pos": "verb", 

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

1165 "then": "second-person", 

1166 }, 

1167 }, 

1168 }, 

1169 "oni / one / ona": { 

1170 "lang": [ 

1171 "Czech", 

1172 "Old Czech", 

1173 "Polish", 

1174 "Serbo-Croatian", 

1175 "Slovak", 

1176 "Slovene", 

1177 ], 

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

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

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

1181 }, 

1182 "ono": { 

1183 "lang": "Hadza", 

1184 "pos": "verb", 

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

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

1187 }, 

1188 "me": { 

1189 "lang": "Romani", 

1190 "pos": "verb", 

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

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

1193 }, 

1194 "amen": { 

1195 "lang": "Romani", 

1196 "pos": "verb", 

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

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

1199 }, 

1200 "tumen": { 

1201 "lang": "Romani", 

1202 "pos": "verb", 

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

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

1205 }, 

1206 "on": { 

1207 "lang": "Romani", 

1208 "pos": "verb", 

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

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

1211 }, 

1212 "Lei": { 

1213 "lang": "Italian", 

1214 "if": "third-person", 

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

1216 }, 

1217 "Loro": { 

1218 "lang": "Italian", 

1219 "if": "third-person", 

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

1221 }, 

1222 "yo": { 

1223 "lang": [ 

1224 "Afar", 

1225 "Aragonese", 

1226 "Asturian", 

1227 "Chavacano", 

1228 "Kristang", 

1229 "Ladino", 

1230 "Spanish", 

1231 ], 

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

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

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

1235 "else": { 

1236 "lang": "Haitian Creole", 

1237 "pos": "verb", 

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

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

1240 }, 

1241 }, 

1242 "vos": { 

1243 "lang": [ 

1244 "Interlingua", 

1245 "Ladino", 

1246 "Latin", 

1247 "Old French", 

1248 "Old Occitan", 

1249 "Sardinian", 

1250 "Lorrain", 

1251 ], 

1252 "pos": "verb", 

1253 "then": "second-person", 

1254 "else": { 

1255 "lang": [ 

1256 "Ladin", 

1257 "Walloon", 

1258 ], 

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

1260 }, 

1261 }, 

1262 "tú": { 

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

1264 "pos": "verb", 

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

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

1267 }, 

1268 "jo": { 

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

1270 "pos": "verb", 

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

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

1273 "else": { 

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

1275 "pos": "verb", 

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

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

1278 }, 

1279 }, 

1280 "ell/ella vostè": { 

1281 "lang": "Catalan", 

1282 "pos": "verb", 

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

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

1285 }, 

1286 "nosaltres nós": { 

1287 "lang": "Catalan", 

1288 "pos": "verb", 

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

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

1291 }, 

1292 "vosaltres vós": { 

1293 "lang": "Catalan", 

1294 "pos": "verb", 

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

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

1297 }, 

1298 "ells/elles vostès": { 

1299 "lang": "Catalan", 

1300 "pos": "verb", 

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

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

1303 }, 

1304 "vostè": { 

1305 "lang": "Catalan", 

1306 "pos": "verb", 

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

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

1309 }, 

1310 "nosaltres": { 

1311 "lang": "Catalan", 

1312 "pos": "verb", 

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

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

1315 }, 

1316 "vostès": { 

1317 "lang": "Catalan", 

1318 "pos": "verb", 

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

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

1321 }, 

1322 "tú vos": { 

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

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

1325 }, 

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

1327 "lang": "Spanish", 

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

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

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

1331 }, 

1332 "nosotros nosotras": { 

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

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

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

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

1337 }, 

1338 "vosotros vosotras": { 

1339 "lang": ["Spanish"], 

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

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

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

1343 }, 

1344 "ellos/ellas ustedes": { 

1345 "lang": "Spanish", 

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

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

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

1349 }, 

1350 "usted": { 

1351 "lang": "Spanish", 

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

1353 "if": "imperative", 

1354 "then": [ 

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

1356 "third-person singular", 

1357 ], 

1358 }, 

1359 "ustedes": { 

1360 "lang": "Spanish", 

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

1362 "if": "imperative", 

1363 "then": [ 

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

1365 "third-person plural", 

1366 ], 

1367 }, 

1368 "je (j’)": { 

1369 "lang": "French", 

1370 "pos": [ 

1371 "verb", 

1372 "suffix", 

1373 ], 

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

1375 }, 

1376 "il, elle, on": { 

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

1378 "pos": [ 

1379 "verb", 

1380 "suffix", 

1381 ], 

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

1383 }, 

1384 "il, elle": { 

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

1386 "pos": [ 

1387 "verb", 

1388 "suffix", 

1389 ], 

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

1391 }, 

1392 "nous": { 

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

1394 "pos": [ 

1395 "verb", 

1396 "suffix", 

1397 ], 

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

1399 }, 

1400 "vous": { 

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

1402 "pos": [ 

1403 "verb", 

1404 "suffix", 

1405 ], 

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

1407 }, 

1408 "ils, elles": { 

1409 "lang": "French", 

1410 "pos": [ 

1411 "verb", 

1412 "suffix", 

1413 ], 

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

1415 }, 

1416 "que je (j’)": { 

1417 "lang": "French", 

1418 "pos": [ 

1419 "verb", 

1420 "suffix", 

1421 ], 

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

1423 }, 

1424 "que tu": { 

1425 "lang": [ 

1426 "French", 

1427 "Middle French", 

1428 "Old French", 

1429 "Lorrain", 

1430 ], 

1431 "pos": [ 

1432 "verb", 

1433 "suffix", 

1434 ], 

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

1436 }, 

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

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

1439 "pos": [ 

1440 "verb", 

1441 "suffix", 

1442 ], 

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

1444 }, 

1445 "que nous": { 

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

1447 "pos": [ 

1448 "verb", 

1449 "suffix", 

1450 ], 

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

1452 }, 

1453 "que vous": { 

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

1455 "pos": [ 

1456 "verb", 

1457 "suffix", 

1458 ], 

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

1460 }, 

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

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

1463 "pos": [ 

1464 "verb", 

1465 "suffix", 

1466 ], 

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

1468 }, 

1469 "ie (i’)": { 

1470 "lang": "Middle French", 

1471 "pos": "verb", 

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

1473 }, 

1474 "ilz, elles": { 

1475 "lang": "Middle French", 

1476 "pos": "verb", 

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

1478 }, 

1479 "que ie (i’)": { 

1480 "lang": "Middle French", 

1481 "pos": "verb", 

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

1483 }, 

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

1485 "lang": "Middle French", 

1486 "pos": "verb", 

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

1488 }, 

1489 "il": { 

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

1491 "pos": "verb", 

1492 "then": "third-person", 

1493 }, 

1494 "nos": { 

1495 "lang": [ 

1496 "Lorrain", 

1497 "Old French", 

1498 "Ladin", 

1499 ], 

1500 "pos": "verb", 

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

1502 }, 

1503 "que jo": { 

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

1505 "pos": "verb", 

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

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

1508 }, 

1509 "qu’il": { 

1510 "lang": "Old French", 

1511 "pos": "verb", 

1512 "if": "third-person", 

1513 "then": "third-person", 

1514 }, 

1515 "que nos": { 

1516 "lang": "Old French", 

1517 "pos": "verb", 

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

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

1520 }, 

1521 "que vos": { 

1522 "lang": [ 

1523 "Old French", 

1524 "Lorrain", 

1525 ], 

1526 "pos": "verb", 

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

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

1529 }, 

1530 "lui/jê": { 

1531 "lang": "Friulian", 

1532 "pos": "verb", 

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

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

1535 }, 

1536 "nô": { 

1537 "lang": "Friulian", 

1538 "pos": "verb", 

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

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

1541 }, 

1542 "vô": { 

1543 "lang": "Friulian", 

1544 "pos": "verb", 

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

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

1547 }, 

1548 "lôr": { 

1549 "lang": "Friulian", 

1550 "pos": "verb", 

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

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

1553 }, 

1554 "ես": { 

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

1556 "pos": "verb", 

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

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

1559 }, 

1560 "դու": { 

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

1562 "pos": "verb", 

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

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

1565 }, 

1566 "նա": { 

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

1568 "pos": "verb", 

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

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

1571 }, 

1572 "դուք": { 

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

1574 "pos": "verb", 

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

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

1577 }, 

1578 "(դու)": { 

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

1580 "pos": "verb", 

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

1582 "then": "rare", 

1583 }, 

1584 "(դուք)": { 

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

1586 "pos": "verb", 

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

1588 "then": "rare", 

1589 }, 

1590 "nós": { 

1591 "lang": [ 

1592 "Asturian", 

1593 "Galician", 

1594 "Indo-Portuguese", 

1595 "Mirandese", 

1596 "Portuguese", 

1597 ], 

1598 "pos": "verb", 

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

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

1601 }, 

1602 "el/ela/Vde.": { 

1603 "lang": "Galician", 

1604 "pos": "verb", 

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

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

1607 }, 

1608 "eles/elas/Vdes.": { 

1609 "lang": "Galician", 

1610 "pos": "verb", 

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

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

1613 }, 

1614 "mì": { 

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

1616 "pos": "verb", 

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

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

1619 }, 

1620 "tì te": { 

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

1622 "pos": "verb", 

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

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

1625 }, 

1626 "lù el / lee la": { 

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

1628 "pos": "verb", 

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

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

1631 }, 

1632 "nun": { 

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

1634 "pos": "verb", 

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

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

1637 }, 

1638 "violter / vialter": { 

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

1640 "pos": "verb", 

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

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

1643 }, 

1644 "lor": { 

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

1646 "pos": "verb", 

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

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

1649 }, 

1650 "iu": { 

1651 "lang": "Sicilian", 

1652 "pos": "verb", 

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

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

1655 }, 

1656 "iddu/idda": { 

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

1658 "pos": "verb", 

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

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

1661 }, 

1662 "éiu, eu": { 

1663 "lang": "Sassarese", 

1664 "pos": "verb", 

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

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

1667 }, 

1668 "eddu/edda": { 

1669 "lang": "Sassarese", 

1670 "pos": "verb", 

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

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

1673 }, 

1674 "eddi": { 

1675 "lang": "Sassarese", 

1676 "pos": "verb", 

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

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

1679 }, 

1680 "che éiu, chi eu": { 

1681 "lang": "Sassarese", 

1682 "pos": "verb", 

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

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

1685 }, 

1686 "chi eddu/edda": { 

1687 "lang": "Sassarese", 

1688 "pos": "verb", 

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

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

1691 }, 

1692 "chi noi": { 

1693 "lang": "Sassarese", 

1694 "pos": "verb", 

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

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

1697 }, 

1698 "chi voi": { 

1699 "lang": "Sassarese", 

1700 "pos": "verb", 

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

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

1703 }, 

1704 "chi eddi": { 

1705 "lang": "Sassarese", 

1706 "pos": "verb", 

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

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

1709 }, 

1710 "nuàutri": { 

1711 "lang": "Sicilian", 

1712 "pos": "verb", 

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

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

1715 }, 

1716 "vuàutri": { 

1717 "lang": "Sicilian", 

1718 "pos": "verb", 

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

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

1721 }, 

1722 "iddi": { 

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

1724 "pos": "verb", 

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

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

1727 }, 

1728 "(che) mì": { 

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

1730 "pos": "verb", 

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

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

1733 }, 

1734 "(che) tì te": { 

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

1736 "pos": "verb", 

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

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

1739 }, 

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

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

1742 "pos": "verb", 

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

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

1745 }, 

1746 "(che) nun": { 

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

1748 "pos": "verb", 

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

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

1751 }, 

1752 "(che) violter / vialter": { 

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

1754 "pos": "verb", 

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

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

1757 }, 

1758 "(che) lor": { 

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

1760 "pos": "verb", 

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

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

1763 }, 

1764 "tì": { 

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

1766 "pos": "verb", 

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

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

1769 }, 

1770 "lù / lee che el": { 

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

1772 "pos": "verb", 

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

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

1775 }, 

1776 "lor che el": { 

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

1778 "pos": "verb", 

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

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

1781 }, 

1782 "mé": { 

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

1784 "pos": "verb", 

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

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

1787 }, 

1788 "té": { 

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

1790 "pos": "verb", 

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

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

1793 }, 

1794 "lü / le": { 

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

1796 "pos": "verb", 

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

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

1799 }, 

1800 "lü / lé": { 

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

1802 "pos": "verb", 

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

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

1805 }, 

1806 "nóter": { 

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

1808 "pos": "verb", 

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

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

1811 }, 

1812 "vóter": { 

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

1814 "pos": "verb", 

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

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

1817 }, 

1818 "lur / lùre": { 

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

1820 "pos": "verb", 

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

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

1823 }, 

1824 "lur / lúre": { 

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

1826 "pos": "verb", 

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

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

1829 }, 

1830 "(che) mé": { 

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

1832 "pos": "verb", 

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

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

1835 }, 

1836 "(che) té": { 

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

1838 "pos": "verb", 

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

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

1841 }, 

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

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

1844 "pos": "verb", 

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

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

1847 }, 

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

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

1850 "pos": "verb", 

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

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

1853 }, 

1854 "(che) nóter": { 

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

1856 "pos": "verb", 

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

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

1859 }, 

1860 "(che) vóter": { 

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

1862 "pos": "verb", 

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

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

1865 }, 

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

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

1868 "pos": "verb", 

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

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

1871 }, 

1872 "non-finite forms": { 

1873 "lang": "Latin", 

1874 "pos": "verb", 

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

1876 "else": "", 

1877 }, 

1878 "ben": { 

1879 "lang": "Turkish", 

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

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

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

1883 }, 

1884 "sen": { 

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

1886 "pos": "verb", 

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

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

1889 }, 

1890 "o": { 

1891 "lang": [ 

1892 "Azerbaijani", 

1893 "Crimean Tatar", 

1894 "Fula", 

1895 "Igbo", 

1896 "Turkish", 

1897 "Welsh", 

1898 "Zazaki", 

1899 ], 

1900 "pos": "verb", 

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

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

1903 "else": { 

1904 "lang": "Kikuyu", 

1905 "pos": "verb", 

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

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

1908 "else": { 

1909 "lang": "Pnar", 

1910 "pos": "verb", 

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

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

1913 "else": { 

1914 "lang": "Yoruba", 

1915 "pos": "verb", 

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

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

1918 }, 

1919 }, 

1920 }, 

1921 }, 

1922 "biz": { 

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

1924 "pos": "verb", 

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

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

1927 }, 

1928 "siz": { 

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

1930 "pos": "verb", 

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

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

1933 }, 

1934 "onlar": { 

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

1936 "pos": "verb", 

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

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

1939 }, 

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

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

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

1943 "issu/issa/isse": { 

1944 "lang": "Sardinian", 

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

1946 "then": "", 

1947 }, 

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

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

1950 "issos/issas": { 

1951 "lang": "Sardinian", 

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

1953 "then": "", 

1954 }, 

1955 "chi deo chi eo": { 

1956 "lang": "Sardinian", 

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

1958 "then": "", 

1959 }, 

1960 "chi tue": { 

1961 "lang": "Sardinian", 

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

1963 "then": "", 

1964 }, 

1965 "chi issu/issa/isse": { 

1966 "lang": "Sardinian", 

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

1968 "then": "", 

1969 }, 

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

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

1972 "chi issos/issas": { 

1973 "lang": "Sardinian", 

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

1975 "then": "", 

1976 }, 

1977 "dego deo": { 

1978 "lang": "Sardinian", 

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

1980 "then": "", 

1981 }, 

1982 "issu/issa": { 

1983 "lang": "Sardinian", 

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

1985 "then": "", 

1986 }, 

1987 "chi dego chi deo": { 

1988 "lang": "Sardinian", 

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

1990 "then": "", 

1991 }, 

1992 "chi issu/issa": { 

1993 "lang": "Sardinian", 

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

1995 "then": "", 

1996 }, 

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

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

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

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

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

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

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

2004 "que nosautres": { 

2005 "lang": "Occitan", 

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

2007 "then": "", 

2008 }, 

2009 "que vosautres": { 

2010 "lang": "Occitan", 

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

2012 "then": "", 

2013 }, 

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

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

2016 "ти": { 

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

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

2019 "then": "", 

2020 }, 

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

2022 "lang": "Bulgarian", 

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

2024 "then": "", 

2025 }, 

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

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

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

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

2030 "lang": "Latvian", 

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

2032 "then": "", 

2033 }, 

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

2035 "el / ela / Vde.": { 

2036 "lang": "Galician", 

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

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

2039 }, 

2040 "vós": { 

2041 "lang": "Galician", 

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

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

2044 }, 

2045 "eles / elas / Vdes.": { 

2046 "lang": "Galician", 

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

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

2049 }, 

2050 "Vde.": { 

2051 "lang": "Galician", 

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

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

2054 }, 

2055 "Vdes.": { 

2056 "lang": "Galician", 

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

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

2059 }, 

2060 "ⲛ̄ⲧⲟⲕ": { 

2061 "lang": "Coptic", 

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

2063 "then": "", 

2064 }, 

2065 "ⲛ̄ⲧⲟ": { 

2066 "lang": "Coptic", 

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

2068 "then": "", 

2069 }, 

2070 "ⲛ̄ⲧⲟϥ": { 

2071 "lang": "Coptic", 

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

2073 "then": "", 

2074 }, 

2075 "ⲛ̄ⲧⲟⲥ": { 

2076 "lang": "Coptic", 

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

2078 "then": "", 

2079 }, 

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

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

2082 "ⲛ̀ⲑⲟⲕ": { 

2083 "lang": "Coptic", 

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

2085 "then": "", 

2086 }, 

2087 "ⲛ̀ⲑⲟ": { 

2088 "lang": "Coptic", 

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

2090 "then": "", 

2091 }, 

2092 "ⲛ̀ⲑⲟϥ": { 

2093 "lang": "Coptic", 

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

2095 "then": "", 

2096 }, 

2097 "ⲛ̀ⲑⲟⲥ": { 

2098 "lang": "Coptic", 

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

2100 "then": "", 

2101 }, 

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

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

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

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

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

2107 "ñuqanchik": { 

2108 "lang": "Quechua", 

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

2110 "then": "", 

2111 }, 

2112 "ñuqayku": { 

2113 "lang": "Quechua", 

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

2115 "then": "", 

2116 }, 

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

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

2119 "unë": { 

2120 "lang": "Albanian", 

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

2122 }, 

2123 "ai/ajo": { 

2124 "lang": "Albanian", 

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

2126 }, 

2127 "ne": { 

2128 "lang": "Albanian", 

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

2130 "else": { 

2131 "lang": "Livonian", 

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

2133 }, 

2134 }, 

2135 "ju": { 

2136 "lang": "Albanian", 

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

2138 }, 

2139 "ata/ato": { 

2140 "lang": "Albanian", 

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

2142 }, 

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

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

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

2146 "supine": "supine", 

2147 "past historic": "past historic", 

2148 "passato remoto": "past historic", 

2149 "future perfect": "future perfect", 

2150 "impersonal": "impersonal", 

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

2152 "auxiliary verb": "auxiliary", 

2153 "active adjectival participle": "active adjectival participle", 

2154 "contemporary adverbial participle": "contemporary adjectival participle", 

2155 "passive adjectival participle": "passive adjectival participle", 

2156 "Instrumental": "instrumental", 

2157 "exessive": "exessive", 

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

2159 "def.": "definite", 

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

2161 "absolutive": "absolutive", 

2162 "definite accusative": "definite accusative", 

2163 "definite genitive": "definite genitive", 

2164 "possessive": "possessive", 

2165 "Possessive": "possessive", 

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

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

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

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

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

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

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

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

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

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

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

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

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

2179 "predicative": "predicative", 

2180 "subjective": "subjective", 

2181 "preterite": "preterite", 

2182 "strong/subject": "strong subjective", 

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

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

2185 "proclitic": "proclitic", 

2186 "Proclitic": "proclitic", 

2187 "enclitic": "enclitic", 

2188 "Enclitic": "enclitic", 

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

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

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

2192 "ablative/genitive": "ablative genitive", 

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

2194 "Imperative": "imperative", 

2195 "imperfect (ra)": "imperfect", 

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

2197 "affirmative": { 

2198 "if": "imperative", 

2199 "then": "positive", 

2200 "else": "affirmative", 

2201 }, 

2202 "Affirmative": { 

2203 "if": "imperative", 

2204 "then": "positive", 

2205 "else": "affirmative", 

2206 }, 

2207 "Affirmative (+)": { 

2208 "if": "imperative", 

2209 "then": "positive", 

2210 "else": "affirmative", 

2211 }, 

2212 "participle": "participle", 

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

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

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

2216 "Conditional": "conditional", 

2217 "Inflection": "", 

2218 "Definite accusative": "definite accusative", 

2219 "present perfect": "present perfect", 

2220 "optative": "optative", 

2221 "positive degree": "positive", 

2222 "comparative degree": "comparative", 

2223 "superlative degree": "superlative", 

2224 "prolative": "prolative", 

2225 "comparative": { 

2226 "lang": [ 

2227 "Chechen", 

2228 "Mari", 

2229 "Nivkh", 

2230 ], 

2231 "pos": "noun", 

2232 "then": "comparative-case", 

2233 "else": "comparative", 

2234 }, 

2235 "causative": "causative", 

2236 "Indicative": "indicative", 

2237 "Class": "", 

2238 "11": "class-11", 

2239 "14": "class-14", 

2240 "15": "class-15", 

2241 "–": { 

2242 "lang": "Nepalese", 

2243 "then": "negative", 

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

2245 }, 

2246 "m": "masculine", 

2247 "f": "feminine", 

2248 "compound": "multiword-construction", 

2249 "reflexive": "reflexive", 

2250 "Reflexive": "reflexive", 

2251 "unstr.": "unstressed", 

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

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

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

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

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

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

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

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

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

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

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

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

2264 "Impersonal": "impersonal", 

2265 "Personal": "personal", 

2266 "Gerund": "gerund", 

2267 "Preterite": "preterite", 

2268 "Pluperfect": "pluperfect", 

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

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

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

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

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

2274 "number": "", 

2275 "dual": "dual", 

2276 "middle/ passive": "middle passive", 

2277 "Active": "active", 

2278 "Passive": "passive", 

2279 "first person": "first-person", 

2280 "second person": "second-person", 

2281 "third person": "third-person", 

2282 "first person singular": "first-person singular", 

2283 "second person singular": "second-person singular", 

2284 "third person singular": "third-person singular", 

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

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

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

2288 "middle/passive": "middle passive", 

2289 "present participle or gerund": "present participle gerund", 

2290 "(simple tenses)": "", 

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

2292 "past anterior": "past anterior", 

2293 "conditional perfect": "conditional perfect", 

2294 "middle": "middle", 

2295 "Indefinite": "indefinite", 

2296 "Definite": "definite", 

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

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

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

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

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

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

2303 "derivations": "", 

2304 "subject": "subjective", 

2305 "object": "objective", 

2306 "full": "stressed", 

2307 "pred.": "predicative", 

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

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

2310 r"Tense \ Voice": "", 

2311 "Strong declension": "strong", 

2312 "gender": "", 

2313 "Weak declension": "weak", 

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

2315 "Positive declarative": "", 

2316 "imperfective participle": "imperfective participle", 

2317 "personal": "personal", 

2318 "future participle": "future participle", 

2319 "personal participle": "personal participle", 

2320 "way of doing": "adverbial", 

2321 "aorist": "aorist", 

2322 "imperfective": "imperfective", 

2323 "perfective": "perfective", 

2324 "inferential": "inferential", 

2325 "progressive": "progressive", 

2326 "necessitative": "necessitative", 

2327 "Positive interrogative": "interrogative", 

2328 "Negative declarative": "negative", 

2329 "Negative interrogative": "negative interrogative", 

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

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

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

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

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

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

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

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

2338 "dative (dhanore)": "dative", 

2339 "ablative (rrjedhore)": "ablative", 

2340 "notes": "", 

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

2342 "masculine animate": "masculine animate", 

2343 "Masculine singular": "masculine singular", 

2344 "Neuter singular": "neuter singular", 

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

2346 "singular (vienskaitlis)": "singular", 

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

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

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

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

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

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

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

2354 "past perfect": "past perfect", 

2355 "plural only": "plural-only", 

2356 "m pers": "masculine personal", 

2357 "other": "", 

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

2359 "Supine": "supine", 

2360 "Imper. plural": "imperative plural", 

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

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

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

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

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

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

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

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

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

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

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

2372 "Present active subjunctive": "present active subjunctive", 

2373 "Present passive indicative": "present passive indicative", 

2374 "Present passive subjunctive": "present passive subjunctive", 

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

2376 "anterior adverbial participle": "anterior adverbial participle", 

2377 "Plural only": "plural-only", 

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

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

2380 "m. plural": "masculine plural", 

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

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

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

2384 "hortative": "hortative", 

2385 "reciprocal": "reciprocal", 

2386 "Reciprocal": "reciprocal", 

2387 "Preesens": "present", 

2388 "coactive": "coactive", 

2389 "objective": "objective", 

2390 "subsuntive": "subsuntive", 

2391 "relative": "relative", 

2392 "autonomous": "autonomous", 

2393 "past habitual": "past habitual", 

2394 "Habituals": "habitual", 

2395 "n gender": "neuter", 

2396 "Feminine singular": "feminine singular", 

2397 "Root word": "root", 

2398 "Aspect": "", 

2399 "Complete": "completive", 

2400 "Progressive": "progressive", 

2401 "Contemplative": "contemplative", 

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

2403 "ergative": "ergative", 

2404 "Ergative": "ergative", 

2405 "prosecutive": "prosecutive", 

2406 "equative": "equative", 

2407 "Verbal forms": "", 

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

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

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

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

2412 "Active past participle": "active past participle", 

2413 "Objective": "objective", 

2414 "Objective Genitive": "objective genitive", 

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

2416 "Common singular": "common-gender singular", 

2417 "common(noun)": "common-gender", 

2418 "neuter(noun)": "neuter", 

2419 "masculine (person)": "masculine person", 

2420 "feminine (person)": "feminine person", 

2421 "Masculine plural": "masculine plural", 

2422 "modern": "", 

2423 "archaic / formal": "archaic formal", 

2424 "All": "", 

2425 "str.": "stressed", 

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

2427 "2nd person singular (informal)": "second-person singular informal", 

2428 "2nd person singular (familiar)": "second-person singular familiar", 

2429 "2nd person singular (polite)": "second-person singular polite", 

2430 "2nd person singular (formal)": "second-person singular formal", 

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

2432 "3rd person singular (m.)": "third-person singular masculine", 

2433 "3rd person singular (f.)": "third-person singular feminine", 

2434 "3rd person singular (n.)": "third-person singular neuter", 

2435 "Present verbal adverb": "present adverbial", 

2436 "Past verbal adverb": "past adverbial", 

2437 "disused": "", 

2438 "all genders": "", 

2439 "number & gender": "", 

2440 "strong declension (without article)": "strong without-article", 

2441 "weak declension (with definite article)": "weak definite includes-article", 

2442 "mixed declension (with indefinite article)": "mixed indefinite includes-article", 

2443 "inanimate animate": "animate inanimate", 

2444 "Informal": "informal", 

2445 "modern / informal": "informal", 

2446 "i": { 

2447 "lang": [ 

2448 "German", 

2449 "Cimbrian", 

2450 ], 

2451 "then": "subjunctive subjunctive-i", 

2452 "else": { 

2453 "if": "subjunctive", 

2454 "then": "subjunctive-i", 

2455 "else": { 

2456 "lang": ["Tagalog", "Assamese"], 

2457 "then": "", 

2458 }, 

2459 }, 

2460 }, 

2461 "ii": { 

2462 "lang": [ 

2463 "German", 

2464 "Cimbrian", 

2465 ], 

2466 "then": "subjunctive subjunctive-ii", 

2467 "else": { 

2468 "if": "subjunctive", 

2469 "then": "subjunctive-ii", 

2470 }, 

2471 }, 

2472 "definite forms": "definite", 

2473 "1ˢᵗ person possessive forms (my)": "possessive first-person", 

2474 "2ⁿᵈ person possessive forms (your)": "possessive second-person", 

2475 "oblique": "oblique", 

2476 "direct": "direct", 

2477 "Construct": "construct", 

2478 "Negative": "negative", 

2479 "auxiliary": "auxiliary", 

2480 "Conjunctive": "conjunctive", 

2481 "Perfective": "perfective", 

2482 "Stem forms": "stem", 

2483 "Continuative": "continuative", 

2484 "Mizenkei (\"imperfective\")": "imperfective", 

2485 "Ren’yōkei (\"continuative\")": "continuative", 

2486 "Shūshikei (\"terminal\")": "terminative", 

2487 "Rentaikei (\"attributive\")": "attributive", 

2488 "Kateikei (\"hypothetical\")": "hypothetical", 

2489 "Meireikei (\"imperative\")": "imperative", 

2490 "Continuative (連用形)": "continuative", 

2491 "Terminal (終止形)": "terminative", 

2492 "Attributive (連体形)": "attributive", 

2493 "Imperative (命令形)": "imperative", 

2494 "Imperfective (未然形)": "imperfective", 

2495 "Hypothetical (仮定形)": "hypothetical", 

2496 "Terminal": "terminative", 

2497 "Attributive": "attributive", 

2498 "Volitional": "volitional", 

2499 "Imperfective": "imperfective", 

2500 "Hypothetical": "hypothetical", 

2501 "Negative continuative": "negative continuative", 

2502 "Formal": "formal", 

2503 "Hypothetical conditional": "hypothetical conditional", 

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

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

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

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

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

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

2510 "benefactive": "benefactive", 

2511 "future in the past": "past-future", 

2512 "Passive past participle": "passive past participle", 

2513 "associative": "associative", 

2514 "distributive": "distributive", 

2515 "exclusive": "exclusive", 

2516 "future i": "future future-i", 

2517 "subjunctive i": "subjunctive subjunctive-i", 

2518 "subjunctive ii": "subjunctive subjunctive-ii", 

2519 "future ii": "future future-ii", 

2520 "л-participles": "participle", 

2521 "verbal adjective m.sg.": "masculine singular adjectival", 

2522 "verbal adverb": "adverbial", 

2523 "Compound tenses": "multiword-construction", 

2524 "има-perfect": "има perfect", 

2525 "има-pluperfect": "има pluperfect", 

2526 "има-perfect reported": "има perfect reported", 

2527 "има-future": "има future", 

2528 "има-future in the past": "има future past", 

2529 "future reported": "future reported", 

2530 "има-future reported": "има future reported", 

2531 "има-conditional": "има conditional", 

2532 "uninflected": "uninflected", 

2533 "inflected": "inflected", 

2534 # XXX pending removal; the participle marking is in sense 

2535 # "predicative/adverbial": { 

2536 # "lang": "Dutch", 

2537 # "pos": "verb", 

2538 # "then": ["participle predicative", "participle adverbial"], 

2539 # "else": "predicative adverbial", 

2540 # }, 

2541 "predicative/adverbial": "predicative adverbial", 

2542 "m./f. sing.": "masculine feminine singular", 

2543 "n. sing.": "neuter singular", 

2544 "masculine (vīriešu dzimte)": "masculine", 

2545 "feminine (sieviešu dzimte)": "feminine", 

2546 "plural (daudzskaitlis)": "plural", 

2547 "archaic plural": "archaic plural", 

2548 "Non-past": "non-past", 

2549 "Interrogative": "interrogative", 

2550 "Assertive": "assertive", 

2551 "Cause/Reason": "causative", 

2552 "Contrast": "contrastive", 

2553 "Conjunction": "conjunctive", 

2554 "Condition": "conditional", 

2555 "Verbal nouns": "noun-from-verb", 

2556 "Past-tense verbal nouns": "past noun-from-verb", 

2557 "Determiners": "determiner", 

2558 "simple perfect": "perfect", 

2559 "Notes": { 

2560 "lang": "Assamese", 

2561 "then": "dummy-remove-this-cell", 

2562 "else": "dummy-skip-this", 

2563 }, 

2564 # ~ "Notes": "dummy-ignore-skipped", 

2565 "postpositions taking a dative case": "postpositional with-dative", 

2566 "postpositions taking a genitive case": "postpositional with-genitive", 

2567 "postpositions taking an instrumental case": "postpositional with-instrumental", 

2568 "postpositions taking an adverbial case": "postpositional with-adverb", 

2569 "Motive": "motive-form", 

2570 "zu-infinitive": "infinitive infinitive-zu", 

2571 "active participle": "active participle", 

2572 "active voice": "active", 

2573 "Active voice ➤ — Imperfective aspect": "active imperfective", 

2574 "Active voice ➤ — Imperfective aspect ➤": "active imperfective", 

2575 "Active voice ➤": "active", 

2576 "Passive voice ➤": "passive", 

2577 "Active voice": "active", 

2578 "Passive voice": "passive", 

2579 "Imperfective aspect ➤": "imperfective", 

2580 "Perfective aspect ➤": "perfective", 

2581 "Imperfective aspect": "imperfective", 

2582 "Perfective aspect": "perfective", 

2583 "Perfect aspect ➤": "perfective", 

2584 "Perfect aspect": "perfective", 

2585 "Present perfect ➤": { 

2586 "lang": "Greek", 

2587 "then": "dummy-skip-this", # e.g περπατάω/Greek 

2588 }, 

2589 "Past perfect ➤": { 

2590 "lang": "Greek", 

2591 "then": "dummy-skip-this", # e.g περπατάω/Greek 

2592 }, 

2593 "Future perfect ➤": { 

2594 "lang": "Greek", 

2595 "then": "dummy-skip-this", # e.g περπατάω/Greek 

2596 }, 

2597 "Indicative mood ➤": "indicative", 

2598 "Past tenses ➤": { 

2599 "lang": "Greek", 

2600 "then": "", # tense column follows 

2601 }, 

2602 "Non-past tenses ➤": "", 

2603 "Dependent ➤": "dependent", 

2604 "Dependent": "dependent", 

2605 "dependent": "dependent", # immee/Manx 

2606 "Present participle➤": "present participle", 

2607 "Perfect participle➤": "past participle", 

2608 "Nonfinite form➤": { 

2609 "lang": "Greek", 

2610 "then": "infinitive-aorist", 

2611 }, 

2612 "Subjunctive mood ➤": { 

2613 "lang": "Greek", 

2614 "then": { 

2615 "inflection-template": "el-conjug-1st", 

2616 "then": "dummy-skip-this", 

2617 "else": "subjunctive dummy-tense", 

2618 }, 

2619 "else": "subjunctive", 

2620 }, 

2621 "Imperative mood ➤": { 

2622 "lang": "Greek", 

2623 "then": "imperative dummy-tense", 

2624 "else": "imperative", 

2625 }, 

2626 "Imperative mood": { 

2627 "lang": "Greek", 

2628 "then": "imperative dummy-tense", 

2629 "else": "imperative", 

2630 }, 

2631 "Subjunctive mood": { 

2632 "lang": "Greek", 

2633 "then": "subjunctive dummy-tense", 

2634 "else": "subjunctive", 

2635 }, 

2636 "Present ➤": "present", 

2637 "Imperfect ➤": "imperfect", 

2638 "Simple past ➤": "past", 

2639 "Future ➤": "future", 

2640 "Future tenses ➤": "future", 

2641 "Continuous ➤": "progressive", 

2642 "Simple ➤": "", 

2643 "Present participle ➤": "present participle", 

2644 "Simple past": "past", 

2645 "Habitual": "habitual", 

2646 "passive participle": "passive participle", 

2647 "passive voice": "passive", 

2648 "singular (жекеше)": "singular", 

2649 "plural (көпше)": "plural", 

2650 "nominative (атау септік)": "nominative", 

2651 "genitive (ілік септік)": "genitive", 

2652 "dative (барыс септік)": "dative", 

2653 "accusative (табыс септік)": "accusative", 

2654 "locative (жатыс септік)": "locative", 

2655 "ablative (шығыс септік)": "ablative", 

2656 "instrumental (көмектес септік)": "instrumental", 

2657 "compound tenses": "multiword-construction", 

2658 "Sentence-final forms": "sentence-final", 

2659 "Connective forms": "connective", 

2660 "Noun and determiner forms": "", 

2661 "Verbal Noun": "noun-from-verb", 

2662 "count form": "count-form", 

2663 "infinitive (nafnháttur)": "infinitive", 

2664 "supine (sagnbót)": "supine", 

2665 "present participle (lýsingarháttur nútíðar)": "present participle", 

2666 "indicative (framsöguháttur)": "indicative", 

2667 "subjunctive (viðtengingarháttur)": "subjunctive", 

2668 "present (nútíð)": "present", 

2669 "past (þátíð)": "past", 

2670 "imperative (boðháttur)": "past", 

2671 "Forms with appended personal pronoun": "pronoun-included", 

2672 "Sentence-final forms with honorific": "sentence-final honorific", 

2673 "Connective forms with honorific": "connective honorific", 

2674 "Noun and determiner forms with honorific": "honorific", 

2675 "Hortative": "hortative", 

2676 "singular (uncountable)": "singular uncountable", 

2677 "absolute": "absolute", 

2678 "Positive absolute": "positive absolute", 

2679 "Negative absolute": "negative absolute", 

2680 "singular (singulare tantum)": "singular singular-only", 

2681 "Nom. sg.": "nominative singular", 

2682 "Gen. sg.": "genitive singular", 

2683 "nom. sing.": "nominative singular", 

2684 "gen. sing.": "genitive singular", 

2685 "Non-finite forms": "dummy-mood", 

2686 "1st singular я": "first-person singular", 

2687 "second-person": "second-person", 

2688 "4th person": "fourth-person", 

2689 "invertive": "invertive", 

2690 "Simple finite forms": "finite-form", 

2691 "Positive form": "positive", 

2692 "Complex finite forms": "dummy-reset-headers", # Reset 

2693 "2nd singular ти": "second-person singular", 

2694 "3rd singular він / вона / воно": "third-person singular", 

2695 "1st plural ми": "first-person plural", 

2696 "2nd plural ви": "second-person plural", 

2697 "3rd plural вони": "third-person plural", 

2698 "first-person": "first-person", 

2699 "plural ми / ви / вони": "plural", 

2700 "masculine я / ти / він": "masculine", 

2701 "feminine я / ти / вона": "feminine", 

2702 "neuter воно": "neuter", 

2703 "vocative form": "vocative", 

2704 "Uncountable": "uncountable", 

2705 "definite unspecified": "definite unspecified", 

2706 "definite proximal": "definite proximal", 

2707 "definite distal": "definite distal", 

2708 "informal": "informal", 

2709 "f gender": "feminine", 

2710 "simple tenses": "", 

2711 "present indicative": "present indicative", 

2712 "ñuqap (my)": "first-person singular", 

2713 "qampa (your)": "second-person singular", 

2714 "paypa (his/her/its)": "third-person singular", 

2715 "ñuqanchikpa (our(incl))": "first-person plural inclusive", 

2716 "ñuqaykup (our(excl))": "first-person plural exclusive", 

2717 "qamkunap (your(pl))": "second-person plural", 

2718 "paykunap (their)": "third-person plural", 

2719 "tense": "", 

2720 "m.": "masculine", 

2721 "f.": "feminine", 

2722 "Stem": "stem", 

2723 "aorist stem": "stem", 

2724 "pos.": "positive", 

2725 "neg.": "negative", 

2726 "future perfect in the past": "future perfect past", 

2727 "renarrative": "renarrative", 

2728 "present and imperfect": ["present", "imperfect"], 

2729 "future and future in the past": ["future", "future past"], 

2730 "present and past perfect": ["present", "past perfect"], 

2731 "future perfect and future perfect in the past": [ 

2732 "future perfect", 

2733 "future past perfect", 

2734 ], 

2735 "dubitative": "dubitative", 

2736 "conclusive": "conclusive", 

2737 "f-s2": "", # Icelandic ['bölvun', 'létteind', 'dvöl'] 

2738 "Indicative mood": "indicative", 

2739 "2,3 sg, 1,2,3 pl": { 

2740 "lang": "Greek", 

2741 "then": "dummy-skip-this", # used in περπατάω/Greek 

2742 }, 

2743 "Present perfect": "present perfect", 

2744 "Past perfect": "past perfect", 

2745 "Future perfect": "future perfect", 

2746 "Inflected colloquial forms": "colloquial", 

2747 "adjective active participle": "adjective active participle", 

2748 "adverbial active participle": "adverbial active participle", 

2749 "nominal active participle": "noun-from-verb active participle", 

2750 "plural unknown": "plural unknown", 

2751 "Contrafactual": "counterfactual", 

2752 "finite forms": "finite-form", 

2753 "Indefinite forms": "indefinite", 

2754 "Definite forms": "definite", 

2755 "numeral": "numeral", 

2756 "non-numeral (plural)": "non-numeral plural", 

2757 "Strong (indefinite) inflection": "strong indefinite", 

2758 "Weak (definite) inflection": "weak definite", 

2759 "directive": "directive", 

2760 "destinative": "destinative", 

2761 "Regular": "", 

2762 "PERFECTIVE": "perfective", 

2763 "Present passive": "present passive", 

2764 "1st dual": "first-person dual", 

2765 "2nd dual": "second-person dual", 

2766 "Undeclined": "", 

2767 "Oblique Infinitive": "oblique infinitive", 

2768 "Prospective Agentive": "prospective agentive", 

2769 "prospective": "prospective", 

2770 "non-prospective": "non-prospective", 

2771 "Adjectival": "adjectival", 

2772 "մեք": "first-person plural", 

2773 "նոքա": "third-person plural", 

2774 "imperatives": "imperative", 

2775 "cohortative": "cohortative", 

2776 "prohibitive": "prohibitive", 

2777 "A-stem": "", 

2778 "continuous": "continuative", 

2779 "f-s1": "", # Icelandic ['blæðing', 'Sigríður', 'líkamsræktarstöð'] 

2780 "+": "positive", 

2781 "Unknown": "unknown", 

2782 "Simple": "", 

2783 "simple": { 

2784 "lang": ["English"], 

2785 "then": "dummy-mood", 

2786 "else": "", 

2787 }, 

2788 "formal": "formal", 

2789 "INDICATIVE (īstenības izteiksme)": "indicative", 

2790 "IMPERATIVE (pavēles izteiksme)": "imperative", 

2791 "Present (tagadne)": "present", 

2792 "Past (pagātne)": "past", 

2793 "Future (nākotne)": "future", 

2794 "1st pers. sg.": "first-person singular", 

2795 "2nd pers. sg.": "second-person singular", 

2796 "3rd pers. sg.": "third-person singular", 

2797 "1st pers. pl.": "first-person plural", 

2798 "2nd pers. pl.": "second-person plural", 

2799 "3rd pers. pl.": "third-person plural", 

2800 "RENARRATIVE (atstāstījuma izteiksme)": "renarrative", 

2801 "Present Active 1 (Adj.)": "participle participle-1 present active adjectival", 

2802 "Present Active 2 (Adv.)": "participle participle-2 present active adverbial", 

2803 "Present Active 3 (Adv.)": "participle participle-3 present active adverbial", 

2804 "Present Active 4 (Obj.)": "participle participle-4 present active", 

2805 "CONDITIONAL (vēlējuma izteiksme)": "conditional", 

2806 "Past Active": { 

2807 "if": "participle", 

2808 "then": "participle past active", # saprast/Latvian/Verb 

2809 "else": "past active", 

2810 }, 

2811 "Present Passive": { 

2812 "if": "participle", 

2813 "then": "participle present passive", # saprast/Latvian/Verb 

2814 "else": "present passive", 

2815 }, 

2816 "Past Passive": { 

2817 "if": "participle", 

2818 "then": "participle past passive", 

2819 "else": "past passive", 

2820 }, 

2821 "DEBITIVE (vajadzības izteiksme)": "debitive", 

2822 "NOMINAL FORMS": "dummy-mood", 

2823 "Infinitive (nenoteiksme)": "infinitive", 

2824 "Conjunctive 1": "conjunctive conjunctive-1", 

2825 "Conjunctive 2": "conjunctive conjunctive-2", 

2826 "Nonfinite form": "dummy-mood", 

2827 "Perfect participle": "perfect participle", 

2828 "perfect progressive": "perfect progressive", 

2829 "Recently Completive": "completive past past-recent", 

2830 "subject non-past participle": "subjective non-past participle", 

2831 "subject past participle": "subjective past participle", 

2832 "subject future definite participle": "subjective future definite participle", 

2833 "non-subject participle": "non-subject participle", 

2834 "general temporal participle": "general temporal participle", 

2835 "participle of intensification": "intensifier participle", 

2836 "specific temporal participle": "specific temporal participle", 

2837 "modal participle": "modal participle", 

2838 "perfect 1": "perfect perfect-i", 

2839 "perfect 2": "perfect perfect-ii", 

2840 "future-in-the-past": "past-future", 

2841 "obligational": "obligative", 

2842 "evidential": "evidential", 

2843 "converb": "converb", 

2844 "negative potential": "negative potential", 

2845 "adjective passive participle": "adjectival passive participle", 

2846 "adverbial passive participle": "adverbial passive participle", 

2847 "nominal passive participle": "noun-from-verb passive participle", 

2848 "IMPERFECTIVE": "imperfective", 

2849 "Non-Aspectual": "non-aspectual", 

2850 "PERF": "perfect", 

2851 "FUT": "future", 

2852 "PST": "past", 

2853 "PRS": "present", 

2854 "Presumptive": "presumptive", 

2855 "PRS PST": "present past", 

2856 "PRS PST FUT": "present past future", 

2857 "agentive": "agentive", 

2858 "FUTURE": "future", 

2859 "Jussive": "jussive", 

2860 "Root": { 

2861 "lang": "Limburgish", # beer/Limburgish 

2862 "then": "", 

2863 "else": "root", 

2864 }, 

2865 "Involuntary": "involuntary", # Verb form, e.g., khitan/Indonesian 

2866 "part participle": "past participle", 

2867 "direct present": "direct present", 

2868 "indirect present": "indirect present", 

2869 "singular/plural": "singular plural", 

2870 "personal infinitive": "personal infinitive", 

2871 "Class 1": "class-1", 

2872 "Class 2": "class-2", 

2873 "Class 3": "class-3", 

2874 "Class 4": "class-4", 

2875 "Class 5": "class-5", 

2876 "Class 6": "class-6", 

2877 "Class 7": "class-7", 

2878 "Class 8": "class-8", 

2879 "Class 9": "class-9", 

2880 "Class 10": "class-10", 

2881 "Class 11": "class-11", 

2882 "Class 12": "class-12", 

2883 "Class 13": "class-13", 

2884 "Class 14": "class-14", 

2885 "Class 15": "class-15", 

2886 "Class 16": "class-16", 

2887 "Class 17": "class-17", 

2888 "Class 18": "class-18", 

2889 "Class 2 strong": "class-2 strong", 

2890 "Class 4 strong": "class-4 strong", 

2891 "Class 6 strong": "class-6 strong", 

2892 "Class 7 strong": "class-7 strong", 

2893 "imperfect subjunctive": "imperfect subjunctive", 

2894 "dative-locative": "dative locative", 

2895 "directional": "directional", 

2896 "possessive pronoun": "possessive pronoun", 

2897 "possessive determiner": "possessive determiner", 

2898 "genderless, nonspecific (formal)": "gender-neutral formal", 

2899 "genderless": "gender-neutral", 

2900 "standard formal": "formal", 

2901 "archaic informal": "archaic informal", 

2902 "Gen/Dat": "genitive dative", 

2903 "Nom/Acc": "nominative accusative", 

2904 "uncountable": "uncountable", 

2905 "gender f": "feminine", 

2906 "Present subjunctive": "present subjunctive", 

2907 "Future progressive presumptive": "future progressive presumptive", 

2908 "Past progressive": "past progressive", 

2909 "Negative present progressive": "negative present progressive", 

2910 "1.": "first-person", 

2911 "2.": "second-person", 

2912 "3. m": "third-person masculine", 

2913 "3. f": "third-person feminine", 

2914 "3. n": "third-person neuter", 

2915 "1st person plural inclusive": "first-person plural inclusive", 

2916 "1st person plural exclusive": "first-person plural exclusive", 

2917 "3rd person plural participle": "third-person plural participle", 

2918 "Indefinite subject (passive)": "passive", 

2919 "3rd person pl": "third-person plural", 

2920 "2nd person pl": "second-person plural", 

2921 "3rd person dual": "third-person dual", 

2922 "2nd person dual": "second-person dual", 

2923 "1st person dual": "first-person dual", 

2924 "2nd person sg": "second-person singular", 

2925 "3rd-person sg": "third-person singular", 

2926 "perfective aorist": "perfective aorist", 

2927 "f-w2": "", # málfræði/Icelandic 

2928 "f-s3": "", # kvaðratrót/Icelandic 

2929 "m-s2": "", 

2930 "m-s3": "", 

2931 "3rd person plural (3p) Wiinawaa": "third-person plural", 

2932 "2nd-person plural (2p) Giinawaa": "second-person plural", 

2933 "1st person plural inclusive (21) Giinawind": "first-person plural inclusive", 

2934 "1st person plural exclusive (1p) Niinawind": "first-person plural exclusive", 

2935 "Indefinite (X)": "indefinite", 

2936 "Obviative (3')": "third-person obviative", 

2937 "1st person (1s) Niin": "first-person singular", 

2938 "2nd person (2s) Giin": "second-person singular", 

2939 "3rd person (3s) Wiin": "third-person singular", 

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

2941 "2nd sg": "second-person singular", 

2942 "3rd sg": "third-person singular", 

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

2944 "2nd pl": "second-person plural", 

2945 "3rd pl": "third-person plural", 

2946 "2nd sg neuter": "second-person singular neuter", 

2947 "2nd sg for": "second-person singular formal", 

2948 "Mood / Tense": "", 

2949 "hypothetic": "hypothetical", 

2950 "Indefinite feminine and masculine gender": "indefinite feminine masculine", 

2951 "contrafactual": "counterfactual", 

2952 "presumptive": "presumptive", 

2953 "habitual": "habitual", 

2954 "2ⁿᵈ person*": "second-person", 

2955 "мынем (“my”)": "first-person singular possessive", 

2956 "Primary stem": "stem stem-primary", 

2957 "Secondary stem": "stem stem-secondary", 

2958 "intentive": "intentive", 

2959 "serial": "habitual", 

2960 "characteristic": "adverbial", # patjaṉi/Pitjantjatjara 

2961 "imperative continuous": "imperative continuative", 

2962 "precursive": "precursive", 

2963 "limitative": "limitative", 

2964 "circumstantial focalising": "circumstantial focalising", 

2965 "focalising precursive": "focalising precursive", 

2966 "focalising": "focalising", 

2967 "expectative": "expectative", 

2968 "nominative (ప్రథమా విభక్తి)": "nominative", 

2969 "genitive": "genitive", 

2970 "locative": "locative", 

2971 "1st मैं": "first-person", 

2972 "basic": "", 

2973 "Preterite I": "preterite preterite-i", 

2974 "Preterite II": "preterite preterite-ii", 

2975 "Pluperfect I": "pluperfect pluperfect-i", 

2976 "Pluperfect II": "pluperfect pluperfect-ii", 

2977 "Durative preterite": "durative preterite", 

2978 "Frequentative preterite": "frequentative preterite", 

2979 "Auxiliary": "auxiliary", 

2980 "Nominative Accusative": "nominative accusative", 

2981 "obviative singular (0')": "obviative singular", 

2982 "singular (0')": "singular", 

2983 "Indefinite masculine gender": "indefinite masculine", 

2984 "Definite masculine gender": "definite masculine", 

2985 "SUBJECT": "subjective", 

2986 "Singular OBJECT": { 

2987 "lang": "Pashto", 

2988 "then": "object-singular object-concord", 

2989 "else": "singular objective", 

2990 }, 

2991 "Plural OBJECT": { 

2992 "lang": "Pashto", 

2993 "then": "object-plural object-concord", 

2994 "else": "plural objective", 

2995 }, 

2996 "indefinite forms": "indefinite", 

2997 "2ⁿᵈ person singular": "second-person singular", 

2998 "2ⁿᵈ person plural": "second-person plural", 

2999 "3ʳᵈ person [sing. and plural]": "third-person singular plural", 

3000 "Actor": {"lang": "Tagalog", "then": "trigger-actor"}, 

3001 "Object": {"lang": "Tagalog", "then": "trigger-object"}, 

3002 "Locative": { 

3003 "lang": "Tagalog", 

3004 "then": "trigger-locative", 

3005 "else": "locative", 

3006 }, 

3007 "Instrument": { 

3008 "lang": "Tagalog", 

3009 "then": "trigger-instrument", 

3010 "else": "instrumental", 

3011 }, 

3012 "Causative": { 

3013 "lang": "Tagalog", 

3014 "then": "trigger-causative", 

3015 "else": "causative", 

3016 }, 

3017 "Referential": {"lang": "Tagalog", "then": "trigger-referential"}, 

3018 "1ˢᵗ person m": "first-person masculine", 

3019 "1ˢᵗ person f": "first-person feminine", 

3020 "2ⁿᵈ person m": "second-person masculine", 

3021 "2ⁿᵈ person f": "second-person feminine", 

3022 "Tense/Mood": "", 

3023 "masculine object": "masculine objective", 

3024 "feminine object": "feminine objective", 

3025 "neuter object": "neuter objective", 

3026 "singular subject": "singular subjective", 

3027 "plural subject": "plural subjective", 

3028 "Allative I": "allative allative-i", 

3029 "Allative II": "allative allative-ii", 

3030 "conditional active": "conditional active", 

3031 "subjunctive active": "subjunctive active", 

3032 "Concessive": "concessive", 

3033 "Preparative": "preparative", 

3034 "Durative": "durative", 

3035 "Subordinative (Past gerund)": "past gerund", 

3036 "Coordinative (Infinitive)": "infinitive", 

3037 "Converbs": "converb", 

3038 "Optative": "optative", 

3039 "Polite": "polite", 

3040 "Strong": "emphatic", 

3041 "Normal": "", 

3042 "Present-future": "future", 

3043 "habitual/conditional past": "habitual conditional past", 

3044 "simple past": "past", 

3045 "present continuous": "present continuative", 

3046 "simple present": "present", 

3047 "polite": "polite", 

3048 "familiar": "familiar", 

3049 "very familiar": "familiar", 

3050 "PAST TENSE": "past", 

3051 "3rd person m": "third-person masculine", 

3052 "3rd person f": "third-person feminine", 

3053 "3rd m": "third-person masculine", 

3054 "3rd m.": "third-person masculine", # hug/Manx 

3055 "gender m": "masculine", 

3056 "dative form": "dative", 

3057 "continuative": "continuative", 

3058 "circumposition": "circumposition", 

3059 "singular and plural": "singular plural", 

3060 "accusative indefinite-dative": "accusative indefinite dative", 

3061 "Literary forms": "literary", 

3062 "Case \\ Number": "", 

3063 "masc./fem.": "masculine feminine", 

3064 "gender n": "neuter", 

3065 "m or n": "masculine neuter", 

3066 "actor I": "actor-i", 

3067 "Sociative": "sociative", 

3068 "Present negative": "present negative", 

3069 "Possessive determiner": "possessive determiner", 

3070 "Proximal": "proximal", 

3071 "ergative-instrumental": "ergative instrumental", 

3072 "Plural/Distributive": "plural distributive", 

3073 "stressed": "stressed", 

3074 "vir pl": "virile plural", 

3075 "poss. adj.": "possessive adjective", 

3076 "Gender": "", 

3077 "All numbers": "", 

3078 "m obl, pl": "masculine oblique plural", 

3079 "m & n": "masculine neuter", 

3080 "dative-lative-locative": "dative lative locative", 

3081 "aspect": "", 

3082 "Third person m": "third-person masculine", 

3083 "Dual virile": "dual virile", 

3084 "Accusative /Genitive": "accusative genitive", 

3085 "1st c. sg. (me)": "first-person singular", 

3086 "Future tense": "future", 

3087 "👤 singular": "singular", 

3088 "👥 dual": "dual", 

3089 "👤👥👥 plural": "plural", 

3090 "Feminine i/ō-stem": "feminine stem", 

3091 "past indicative": "past indicative", 

3092 "Irregular with past tense": "irregular", 

3093 "Abs.": "absolute", 

3094 "Conj.": "conjunct", 

3095 "Rel.": "relative", 

3096 "Positive relative": "positive relative", 

3097 "Negative relative": "negative relative", 

3098 "intentional": "intentive", 

3099 "oblig": "obligative", 

3100 "indef": "indefinite", 

3101 "def": "definite", 

3102 "perf": "perfective", 

3103 "cont": "continuative", 

3104 "comp": "completive", 

3105 "simpl": "", 

3106 "nominal non-finites": "noun-from-verb dummy-mood", 

3107 "comitative": "comitative", 

3108 "abessive": "abessive", 

3109 "essive": "essive", 

3110 "terminative": "terminative", 

3111 "translative": "translative", 

3112 "inessive": "inessive", 

3113 "partitive": "partitive", 

3114 "nominative": "nominative", 

3115 "singulare tantum": "singular-only", 

3116 "Absolutive": "absolutive", 

3117 "Infinitival": "infinitive", 

3118 "negatival complement": "negative", 

3119 "complementary infinitive": "infinitive", # XXX what add gp/Egyptian 

3120 "stative stem": "stative", 

3121 "periphrastic imperfective": "imperfective", 

3122 "periphrastic prospective": "prospective", 

3123 "‘pseudoverbal’ forms": "", 

3124 "suffix conjugation": "", 

3125 "contingent": "contingent", 

3126 "obligative": "obligative", 

3127 "potentialis": "potential", 

3128 "normal": "", 

3129 "1ˢᵗ Perfect": "perfect-i", 

3130 "2ⁿᵈ Perfect": "perfect-ii", 

3131 "m. sing.": "masculine singular", 

3132 "f. sing.": "feminine singular", 

3133 "c. sing.": "common-gender singular", 

3134 "pl.": "plural", 

3135 "high-resp.": "formal deferential", 

3136 "Conjugation type": "conjugation-type", 

3137 "Injunctive": "injunctive", 

3138 "Habitual participle": "habitual participle", 

3139 "Future conditional": "future conditional", 

3140 "condizionale passato": "past conditional", # ripromettersi/Italian 

3141 "futuro anteriore": "future perfect", # ripromettersi/Italian 

3142 "passato prossimo": "perfect", # ripromettersi/Italian 

3143 "trapassato remoto": "preterite-perfect", # ripromettersi/Italian 

3144 "trapassato prossimo": "past perfect", # ripromettersi/Italian 

3145 "(♂)": "masculine", 

3146 "Contingent": "contingent", 

3147 "Reason": "reason", 

3148 "Goal": "goal", 

3149 "Agentive (emphatic)": "agentive emphatic", 

3150 "Genitive infinitive": "genitive infinitive", 

3151 "Conjugative": "conjugative", 

3152 "Gerund Past participle Agentive": "gerund past participle agentive", 

3153 "construct": "construct", 

3154 "Form": "", 

3155 "form": "", 

3156 "Isolated forms": "", 

3157 "isolated forms": "", # a ܡܘܙܐ/Assyrian Neo-Aramaic 

3158 "Possessed": "possessed-form", 

3159 "Unpossessed": "unpossessed-form", 

3160 "past imperfective": "past imperfective", 

3161 "past perfective": "past perfective", 

3162 "Conjunct": "conjunct", 

3163 "dir m s": "direct masculine singular", 

3164 "m p obl m s": ["masculine plural", "oblique masculine singular"], 

3165 "f s": "feminine singular", 

3166 "f p": "feminine plural", 

3167 "gerunds": "gerund", 

3168 "perfect subjunctive": "perfect subjunctive", 

3169 "future subjunctive": "future subjunctive", 

3170 "screeves": "", # კვეთს/Georgian 

3171 "second-person singular formal": "second-person singular formal", 

3172 "second-person singular informal": "second-person singular informal", 

3173 "first-person singular": "first-person singular", 

3174 "possessive forms": "possessive", 

3175 "Indirect": "indirect", 

3176 "Direct": "direct", 

3177 "Soft": "soft", 

3178 "Hard": "hard", 

3179 "Nasalization": "mutation-nasal", 

3180 "soft": { 

3181 "if": "mutation", 

3182 "then": "mutation-soft", 

3183 "else": { 

3184 "lang": "Breton", 

3185 "then": "mutation-soft", 

3186 "else": "soft", 

3187 }, 

3188 }, 

3189 "nasal": { 

3190 "if": "mutation", 

3191 "then": "mutation-nasal", 

3192 }, 

3193 "aspirate": { 

3194 "if": "mutation", 

3195 "then": "mutation-aspirate", 

3196 "else": { 

3197 "lang": "Breton", 

3198 "then": "mutation-aspirate", 

3199 }, 

3200 }, 

3201 "mixed": { 

3202 "if": "mutation", 

3203 "then": "mutation-mixed", 

3204 "else": "mixed", 

3205 }, 

3206 "radical": { 

3207 "if": "mutation", 

3208 "then": "mutation-radical", 

3209 }, 

3210 "Radical": { 

3211 "if": "mutation", 

3212 "then": "mutation-radical", 

3213 }, 

3214 "with h-prothesis": { 

3215 "if": "mutation", 

3216 "then": "prothesis-h", 

3217 }, 

3218 "with t-prothesis": { 

3219 "if": "mutation", 

3220 "then": "prothesis-t", 

3221 }, 

3222 "Lenition": "lenition", 

3223 "Eclipsis": "eclipsis", 

3224 "+ object concord": "object-concord", 

3225 "lative": "lative", 

3226 "post./nom.": "postpositional", # XXX what is nom. ? 

3227 "Measurement": {"lang": "Tagalog", "then": "trigger-measurement"}, 

3228 "past continuous": "past continuative", 

3229 "with definite article": "definite includes-article", 

3230 "with indefinite article": "indefinite includes-article", 

3231 "(usually without article)": "usually-without-article", 

3232 "Completive": "completive", 

3233 "dative definite": "dative definite", 

3234 "nominative definite": "nominative definite", 

3235 "long nominative": "nominative", 

3236 "Past subjunctive": "past subjunctive", 

3237 "Prot.": "prototonic", 

3238 "Deut.": "deuterotonic", 

3239 "Imperfect": "imperfect", 

3240 "Present indicative": "present indicative", 

3241 "Passive pl.": "passive plural", 

3242 "Passive sg.": "passive singular", 

3243 "1st sg.": "first-person singular", 

3244 "2nd sg.": "second-person singular", 

3245 "3rd sg.": "third-person singular", 

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

3247 "2nd pl.": "second-person plural", 

3248 "3rd pl.": "third-person plural", 

3249 "Indefinite feminine gender": "indefinite feminine", 

3250 "Definite feminine gender": "definite feminine", 

3251 "present participle¹ or gerund": "present participle gerund", 

3252 "short forms": "short-form", 

3253 "long forms": "long-form", 

3254 "Negative adjective (un-…-able)": "negative participle", 

3255 "Positive adjective (-able)": "participle", 

3256 "Infinitive (archaic)": "infinitive archaic", 

3257 "Subjunctive Mood": "subjunctive", 

3258 "Conditional Mood": "conditional", 

3259 "Indicative Mood": "indicative", 

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

3261 "third-person plural", 

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

3263 ], 

3264 "2nd person pl informal": "second-person plural informal", 

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

3266 "third-person singular", 

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

3268 ], 

3269 "Participle": "participle", 

3270 "Past tense": "past", 

3271 "Present tense": "present", 

3272 "oblique/vocative": "oblique vocative", 

3273 "3ʳᵈ person f": "third-person feminine", 

3274 "3ʳᵈ person m": "third-person masculine", 

3275 "Case/Form": "", 

3276 "Positive Infinitive": "positive infinitive", 

3277 "future converb I": "future converb converb-i", 

3278 "future converb II": "future converb converb-ii", 

3279 "perfective converb": "perfective converb", 

3280 "simultaneous converb": "simultaneous converb", 

3281 "imperfective converb": "imperfective converb", 

3282 "dative and adverbial": ["dative", "adverbial"], 

3283 "nominative genitive and instrumental": "nominative genitive instrumental", 

3284 "singular unknown": "singular", 

3285 "Plural of variety": "plural plural-of-variety", 

3286 "dir. pl.": "direct plural", 

3287 "dir. sg.": "direct singular", 

3288 "Terminative": "terminative", 

3289 "Desiderative": "desiderative", 

3290 "mediopassive voice": "mediopassive", 

3291 "past frequentative": "past frequentative", 

3292 "Infinitives": { 

3293 "default": "infinitive", 

3294 "lang": "Swahili", 

3295 "then": "dummy-section-header infinitive", 

3296 }, 

3297 "Pronon": "", 

3298 "म SING.": {"if": "first-person", "then": "singular"}, 

3299 "हामी PL.": {"if": "first-person", "then": "plural"}, 

3300 "तँ LOW-RESP. SING.": {"if": "second-person", "then": "singular impolite"}, 

3301 "तिमी MID-RESP.": {"if": "second-person", "then": "polite"}, 

3302 "ऊ LOW-RESP. SING.": {"if": "third-person", "then": "singular impolite"}, 

3303 "उनी MID-RESP.": {"if": "third-person", "then": "polite"}, 

3304 "तपाईं / ऊहाँ HIGH-RESP.": "formal deferential", 

3305 "2ⁿᵈ & 3ʳᵈ": "second-person third-person", 

3306 "plural only (plurale tantum)": "plural-only", 

3307 "approximative": "approximative", 

3308 "consecutive": "consecutive", 

3309 "post-classical": "", 

3310 "Active present participle": "active present participle", 

3311 "Active perfect participle": "active perfect participle", 

3312 "Passive perfect participle": "passive perfect participle", 

3313 "active participle اِسْم الْفَاعِل": "active participle", 

3314 "active voice الْفِعْل الْمَعْلُوم": "active", 

3315 "singular الْمُفْرَد": "singular", 

3316 "dual الْمُثَنَّى": "dual", 

3317 "plural الْجَمْع": "plural", 

3318 "1ˢᵗ person الْمُتَكَلِّم": "first-person", 

3319 "2ⁿᵈ person الْمُخَاطَب": "second-person", 

3320 "3ʳᵈ person الْغَائِب": "third-person", 

3321 "past (perfect) indicative الْمَاضِي": "past perfective indicative", 

3322 "non-past (imperfect) indicative الْمُضَارِع": # XXX remove me to check if I'm relevant 

3323 "non-past imperfective indicative", 

3324 # ^ This might have been changed in the wiktionary template: 

3325 "non-past (imperfect) indicative الْمُضَارِع الْمَرْفُوع": # x تراجع/Arabic 

3326 "non-past imperfective indicative", 

3327 "subjunctive الْمُضَارِع الْمَنْصُوب": "subjunctive", 

3328 "jussive الْمُضَارِع الْمَجْزُوم": "jussive", 

3329 "imperative الْأَمْر": "imperative", 

3330 "passive participle اِسْم الْمَفْعُول": "passive participle", 

3331 "passive voice الْفِعْل الْمَجْهُول": "passive", 

3332 "verbal noun الْمَصْدَر": "noun-from-verb", 

3333 "verbal nouns الْمَصَادِر": "noun-from-verb", 

3334 "strong declension": "strong", 

3335 "weak declension": "weak", 

3336 "Recently Complete": "completive past past-recent", 

3337 "Recent past": "past past-recent", 

3338 "Remote past": "past past-remote", 

3339 "first singular": "first-person singular", 

3340 "second singular": "second-person singular", 

3341 "third singular": "third-person singular", 

3342 "quotative": "quotative", 

3343 "ma-infinitive": "infinitive infinitive-ma", 

3344 "ma- infinitive": "infinitive infinitive-ma", 

3345 "da-infinitive": "infinitive infinitive-da", 

3346 "da- infinitive": "infinitive infinitive-da", 

3347 "da-form": "verb-form-da", 

3348 "des-form": "verb-form-des", 

3349 "m gender": "masculine", 

3350 "long": "long-form", 

3351 "short": "short-form", 

3352 "1st pers.": "first-person", 

3353 "2nd pers.": "second-person", 

3354 "3rd pers.": "third-person", 

3355 "aorist (simple past)": "aorist", 

3356 "aorist II (past perfect II)": "aorist aorist-ii", 

3357 "admirative": "admirative", 

3358 "Adverbial": "adverbial", 

3359 "adjective": "adjectival", 

3360 "neuter gender": "neuter", 

3361 "number and gender": "", 

3362 "attributive and/or after a declined word": "attributive", 

3363 "independent as first declined word": "", 

3364 "after a declined word": "attributive", 

3365 "as first declined word": "", 

3366 "singular only": "singular-only", 

3367 "absolute superlative": "absolute superlative", 

3368 "present subjunctive": "present subjunctive", 

3369 "my": "possessive singular first-person", 

3370 "your": "possessive singular plural second-person", 

3371 "her/his/its": "possessive singular third-person", 

3372 "our": "possessive plural first-person", 

3373 "their": "possessive plural third-person", 

3374 "nominal": "noun", # XXX or noun-from-something? 

3375 "circumstantial": "circumstantial", 

3376 "jussive": "jussive", 

3377 "Singulative": "singulative", 

3378 "singulative": "singulative", 

3379 "Collective": "collective", 

3380 "Paucal": "paucal", 

3381 "stem": "stem", 

3382 "resultative participle": "resultative participle", 

3383 "subject participle": "subjective participle", 

3384 "connegative converb": "connegative converb", 

3385 "subjunctive singular": "subjunctive singular", 

3386 "imperative singular": "imperative singular", 

3387 "imperative sing.": "imperative singular", 

3388 "imperative plural": "imperative plural", 

3389 "imperative plur.": "imperative plural", 

3390 "participle of necessity": "participle necessitative", 

3391 "special": "special", 

3392 "half-participle": "half-participle", 

3393 "manner of action": "adverbial-manner", 

3394 "mixed declension": "mixed", 

3395 "Habitual Aspect": "habitual", 

3396 "Perfective Aspect": "perfective", 

3397 "Progressive Aspect": "progressive", 

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

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

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

3401 "Negative Infinitive": "negative infinitive", 

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

3403 "present active participle": "present active participle", 

3404 "past active aorist participle": "past active aorist participle", 

3405 "past active imperfect participle": "past active imperfect participle", 

3406 "past passive participle": "past passive participle", 

3407 "adverbial participle": "adverbial participle", 

3408 "adjectival participle": "adjectival participle", 

3409 "perfect participle": "perfect participle", 

3410 "definite subject form": "definite subjective", 

3411 "definite object form": "definite objective", 

3412 "durative sentence": "durative", 

3413 "negated with": "negated-with", 

3414 "non-durative sentence": "non-durative", 

3415 "main clause": "main-clause", 

3416 "subordinate clause": "subordinate-clause", 

3417 "conjunctive": "conjunctive", 

3418 "future conjunctive": "future conjunctive", 

3419 "egressive": "egressive", 

3420 "first singular yo": "first-person singular", 

3421 "second singular tu": "second-person singular", 

3422 "third singular él/elli": "third-person singular", 

3423 "first plural nosotros/nós": "first-person plural", 

3424 "second plural vosotros/vós": "second-person plural", 

3425 "third plural ellos": "third-person plural", 

3426 "First person": "first-person", 

3427 "Second person": "second-person", 

3428 "Third person": "third-person", 

3429 "Very faml. & Inferior": "familiar impolite", 

3430 "Familiar": "familiar", 

3431 "Honorific": "honorific", 

3432 "Non honorific": "", 

3433 "Continuous": "continuative", 

3434 "Others": "", 

3435 "Other forms": "dummy-reset-headers", # Reset (είμαι/Greek/Verb) 

3436 "Oblique": "oblique", 

3437 "Demonstrative oblique": "demonstrative oblique", 

3438 "♀": "feminine", 

3439 "Class 1 weak": "class-1 weak", 

3440 "Benefactive": "benefactive", 

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

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

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

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

3445 "Irrealis": "irrealis", 

3446 "Realis": "realis", 

3447 "Contrasting conjunction": "contrastive", 

3448 "Causal conjunction": "causative", 

3449 "Conditional conjunction": "conditional", 

3450 "Perfect tense": "perfect", 

3451 "Perfect-continuative tense": "perfect continuative", 

3452 "present indicative/future": "present future indicative", 

3453 "imperfect (indicative/subjunctive)/ conditional": [ 

3454 "imperfect indicative subjunctive", 

3455 "conditional", 

3456 ], 

3457 "verbal adjectives": "participle", 

3458 "relative (incl. nominal / emphatic) forms": "relative", 

3459 "Passive perfect particple": "passive perfect participle", 

3460 "caritive": "caritive", 

3461 "Caritive": "caritive", 

3462 "Gerund & Past participle": ["gerund", "past participle"], 

3463 "Pronoun": "", 

3464 "nominative genitive instrumental": "nominative genitive instrumental", 

3465 "dative adverbial": "dative adverbial", 

3466 "♂": "masculine", 

3467 "2nd singular ты": "second-person singular", 

3468 "3rd singular ён / яна́ / яно́": "third-person singular", 

3469 "1st plural мы": "first-person plural", 

3470 "2nd plural вы": "second-person plural", 

3471 "3rd plural яны́": "third-person plural", 

3472 "plural мы / вы / яны́": "plural", 

3473 "masculine я / ты / ён": "masculine", 

3474 "feminine я / ты / яна́": "feminine", 

3475 "neuter яно́": "neuter", 

3476 "Imperfect indicative": "imperfect indicative", 

3477 "Verbal of necessity": "necessitative", 

3478 "without article": "without-article", 

3479 "participle (a26)": "participle", 

3480 "participle (a6)": "participle", 

3481 "participle (a5)": "participle", 

3482 "participle (a39)": "participle", 

3483 "Definite feminine and masculine gender": "definite feminine masculine", 

3484 "Neuter s-stem": "neuter", 

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

3486 "2nd person plural (2p) Giinawaa": "second-person plural", 

3487 "3rd person sg": "third-person singular", 

3488 "Causative / Applicative": "causative applicative", 

3489 "Lengadocian (Standard Occitan)": "Lengadocian", 

3490 "Auvernhàs": "Auvernhàs", # Dialect of Occitan 

3491 "Gascon": "Gascon", # Occitan 

3492 "Lemosin": "Lemosin", # Occitan 

3493 "Provençau": "Provençau", # Occitan 

3494 "Old Saxon personal pronouns": "personal pronoun", 

3495 "nominative / accusative": "nominative accusative", 

3496 "situative": "situative", 

3497 "oppositive": "oppositive", 

3498 "multiplicative": "multiplicative", 

3499 "temporal": "temporal", 

3500 "Aorist": "aorist", 

3501 "Illative": "illative", 

3502 "superlative": "superlative", 

3503 "aspect / mood": "", 

3504 "impersonal participle": "impersonal participle", 

3505 "action noun": "noun-from-verb", 

3506 "Future passive participle": "future passive participle", 

3507 "essive-instructive": "essive-instructive", 

3508 "accusative-ablative": "accusative ablative", 

3509 "plurale tantum": "plural-only", 

3510 "Emphatic": "emphatic", 

3511 "non-past": "non-past", 

3512 "2nd person m": "second-person masculine", 

3513 "2nd person pl formal": "second-person plural formal", 

3514 "3rd singular m": "third-person singular masculine", 

3515 "3rd dual": "third-person dual", 

3516 "First-person": "first-person", 

3517 "Second-person": "second-person", # sibi/Latin 

3518 "Simple present / conditional": "present conditional", 

3519 "Future progressive, presumptive": "future progressive presumptive", 

3520 "Prolative I": "prolative", 

3521 "infinitive I": "infinitive infinitive-i", 

3522 "general accusative": "accusative", 

3523 "nonpast": "non-past", 

3524 "masculine/neuter": "masculine neuter", 

3525 "Past Stem": "past stem", 

3526 "Genitive-Dative": "genitive dative", 

3527 "Present / future": "present future", 

3528 "indefinite singular": "indefinite singular", 

3529 "indirect": "indirect", 

3530 "locative-qualitative": "locative-qualitative", 

3531 "separative": "separative", 

3532 "paucal": "paucal", 

3533 "Tense": "", 

3534 "Voice": "", 

3535 "Plain infinitive": "infinitive", 

3536 "Weak inflection": "weak", 

3537 "common gender": { 

3538 "if": "possessive", 

3539 "lang": POSSESSIVE_POSSESSED_LANGS, 

3540 "then": "possessed-common", 

3541 "else": "common-gender", 

3542 }, 

3543 "Common gender": { 

3544 "if": "possessive", 

3545 "lang": POSSESSIVE_POSSESSED_LANGS, 

3546 "then": "possessed-common", 

3547 "else": "common-gender", 

3548 }, 

3549 "common": { 

3550 "if": "possessive", 

3551 "lang": POSSESSIVE_POSSESSED_LANGS, 

3552 "then": "possessed-common", 

3553 "else": "common-gender", 

3554 }, 

3555 "archaic": "archaic", 

3556 "either gender": "masculine feminine", 

3557 "present stem": "present", 

3558 "inclusive": "inclusive", 

3559 "NORI (dative)": "dative", 

3560 "DURATIVE": "durative", 

3561 "nom./acc.": "nominative accusative", 

3562 "acc.": "accusative", 

3563 "FUTURE TENSE": "future", 

3564 "OPTATIVE": "optative", 

3565 "possessive m": "possessive masculine", 

3566 "past progressive": "past progressive", 

3567 "long infinitive": "infinitive infinitive-i-long", 

3568 "l-participles": "l-participle", 

3569 "L-participle": "l-participle", 

3570 "l-participle": "l-participle", 

3571 "Informal negative": "informal negative", 

3572 "infinitival forms": "infinitive", 

3573 "subjunctive sing.": "subjunctive singular", 

3574 "subjunctive plur.": "subjunctive plural", 

3575 "Type": "", 

3576 "type": "", 

3577 "gender-neutral": "gender-neutral", 

3578 "gender-neutral (person)": "gender-neutral", 

3579 "sing. conneg.": "singular connegative", 

3580 "plur. conneg.": "plural connegative", 

3581 "Definite attributive": "definite attributive", 

3582 "present conditional": "present conditional", 

3583 "past conditional": "past conditional", 

3584 "connegative": "connegative", 

3585 "present active": "present active", 

3586 "past active": "past active", 

3587 "past passive": "past passive", 

3588 "→○": "", # e.g. sikkaralla/Finnish 

3589 "○": "", # e.g. sikkaralla/Finnish 

3590 "○→": "", # e.g. sikkaralla/Finnish 

3591 "with positive imperatives": "with-positive-imperative", 

3592 "no possessor": "no-possessor", 

3593 # "+ object concord": XXX, 

3594 # "state": XXX, 

3595 # "free state": XXX, 

3596 # "Free state": XXX, 

3597 # "Full form": XXX, 

3598 # "Noun": XXX, 

3599 # "stative stem": XXX, 

3600 # "unmutated": XXX, 

3601 # "unmodified": XXX, 

3602 # "Genitive infin.": XXX, 

3603 # "ilz, elles": XXX, 

3604 # "el / ela": XXX, 

3605 # "il/elli": XXX, 

3606 # "el / ela / Vde": XXX, 

3607 # "benim (my)": XXX, 

3608 # "Declarative": XXX, 

3609 # "substantive genitive": XXX, 

3610 # "preposition": XXX, 

3611 # "specific": XXX, 

3612 # "adverb": XXX, 

3613 # "adverbial participles": XXX, 

3614 # "In genitive": XXX, 

3615 # "Low": XXX, 

3616 # "Low/Mid": XXX, 

3617 # "Tense particles (See particles)": XXX, 

3618 # "past stem": XXX, 

3619 # "transitory past": XXX, 

3620 # "determiners": XXX, 

3621 # "determiners and pronouns": XXX, 

3622 # "past particle": XXX, 

3623 # "class I": XXX, 

3624 # "adelative": XXX, 

3625 # "oblique I": XXX, 

3626 # "NORK (ergative)": "", # XXX see irakatsi/Basque 

3627 # "NOR (absolutive)": "", # XXX see irakatsi/Basque 

3628 # These are headers for columns that contain titles even if not header style 

3629 "noun case": { 

3630 "lang": "Finnish", 

3631 "then": "*", # e.g., kolme/Finnish 

3632 "else": "", 

3633 }, 

3634 "adverbial form": { 

3635 "lang": "Finnish", 

3636 "then": "*", # e.g., kolme/Finnish 

3637 "else": "adverbial", 

3638 }, 

3639 "m verbs conjugated according to 3rd person sg. er": { 

3640 "lang": "German", 

3641 "if": "polite", # du/German 

3642 "then": "masculine third-person second-person-semantically", 

3643 }, 

3644 # This didn't work to replace "second-person": -KJ 

3645 # ~ "2nd person": { 

3646 # ~ "lang": "German", 

3647 # ~ "if": "second-person-semantically", # du/German 

3648 # ~ "then": "" 

3649 # ~ }, 

3650 "(without article)": { 

3651 "lang": "German", # jeglicher/German 

3652 "then": "without-article", 

3653 }, 

3654 "(with indefinite article)": { 

3655 "lang": "German", # jeglicher/German 

3656 "then": "indefinite with-article", 

3657 }, 

3658 "Strong plural": { 

3659 "lang": "German", # mehrere/German 

3660 "then": "strong plural", 

3661 }, 

3662 "Weak and mixed plural": { 

3663 "lang": "German", 

3664 "then": "weak mixed plural", # mehrere/German 

3665 }, 

3666 "Second-person formal": { # Ihr/German 

3667 "lang": "German", 

3668 "then": "second-person formal", 

3669 }, 

3670 "Singular (neuter, pronoun only)": { 

3671 "lang": "German", 

3672 "then": "singular neuter pronoun", 

3673 }, 

3674 "Plural, strong forms": { 

3675 "lang": "German", 

3676 "then": "plural strong", 

3677 }, 

3678 "Plural, weak and mixed forms (e.g. with definite article)": { 

3679 "lang": "German", 

3680 "then": "plural weak mixed with-article", 

3681 }, 

3682 "strong (without article)": { # selber/German 

3683 "lang": "German", 

3684 "then": "strong without-article", 

3685 }, 

3686 "weak (with definite article)": { # selber/German 

3687 "lang": "German", 

3688 "then": "weak definite with-article", 

3689 }, 

3690 "m./n. plural": { # оба/Russian 

3691 "lang": "Russian", 

3692 "then": "masculine neuter plural", 

3693 }, 

3694 "f. plural": { # оба/Russian 

3695 "lang": "Russian", 

3696 "then": "feminine plural", 

3697 }, 

3698 "sigmatic future": "sigmatic future", # adiuvo/Latin 

3699 "sigmatic aorist": "sigmatic aorist", # adiuvo/Latin 

3700 "Key constructions": { 

3701 "lang": "Japanese", 

3702 "then": "dummy-reset-headers", # Break column inheritance, 伶俐/Japanese 

3703 }, 

3704 "Informal past": { # 伶俐/Japanese 

3705 "lang": "Japanese", 

3706 "then": "informal past", 

3707 }, 

3708 "Informal negative past": { # 伶俐/Japanese 

3709 "lang": "Japanese", 

3710 "then": "informal negative past", 

3711 }, 

3712 "Formal negative": { # 伶俐/Japanese 

3713 "lang": "Japanese", 

3714 "then": "formal negative", 

3715 }, 

3716 "Formal past": { # 伶俐/Japanese 

3717 "lang": "Japanese", 

3718 "then": "formal past", 

3719 }, 

3720 "Formal negative past": { # 伶俐/Japanese 

3721 "lang": "Japanese", 

3722 "then": "formal negative past", 

3723 }, 

3724 "Provisional": { # 伶俐/Japanese 

3725 "lang": "Japanese", 

3726 "then": "past conditional", 

3727 }, 

3728 "Degree": { # 伶俐/Japanese 

3729 "lang": "Japanese", 

3730 "then": "noun-from-adj", # equivalent to English -ness, needs more 

3731 }, 

3732 # in חתול/Hebrew: 

3733 "With possessive pronouns": "possessed-form", 

3734 "Person": { 

3735 "default": "person", 

3736 "lang": [ 

3737 "Hebrew", 

3738 "Scottish Gaelic", 

3739 "Old Irish", 

3740 ], 

3741 # umpa/Scottish Gaelic, la/Old Irish 

3742 "then": "*", 

3743 }, 

3744 "masculine singular": { 

3745 "lang": "Hebrew", 

3746 "if": "possessed-form", 

3747 "then": "possessed-masculine possessed-single", # doesn't work 

3748 "else": "masculine singular", 

3749 }, 

3750 # could there be a third control character besides "*" and "dummy-reset-headers" 

3751 # that lets you override bleeding rules for a column so that it 

3752 # takes over the whole row, like here? 

3753 "masculine plural": { 

3754 "lang": "Hebrew", 

3755 "if": "possessed-form", 

3756 "then": "possessed-masculine possessed-many", 

3757 "else": "masculine plural", 

3758 }, 

3759 "feminine singular": { 

3760 "lang": "Hebrew", 

3761 "if": "possessed-form", 

3762 "then": "possessed-feminine possessed-single", 

3763 "else": "feminine singular", 

3764 }, 

3765 "feminine plural": { 

3766 "lang": "Hebrew", 

3767 "if": "possessed-form", 

3768 "then": "possessed-feminine possessed-many", 

3769 "else": "feminine plural", 

3770 }, 

3771 "masculine and neuter": "masculine neuter", # hannars/Westrobothnian 

3772 "singular masculine": "masculine singular", 

3773 "plural masculine": "masculine plural", 

3774 "singular feminine": "feminine singular", 

3775 "plural feminine": "feminine plural", 

3776 "singular neuter": "neuter singular", 

3777 "plural neuter": "neuter plural", 

3778 "quantitative": { # vienas/Lithuanian 

3779 "lang": "Lithuanian", 

3780 "pos": "num", 

3781 "then": "cardinal", 

3782 }, 

3783 "ordinal": { 

3784 "lang": "Lithuanian", 

3785 "pos": "num", 

3786 "then": "ordinal", 

3787 }, 

3788 "plain": { 

3789 "lang": "Lithuanian", 

3790 "then": "", 

3791 }, 

3792 "prefixed with be-": { 

3793 "lang": "Lithuanian", 

3794 "then": "be-prefix", 

3795 }, 

3796 "special adverbial participle": { 

3797 "lang": "Lithuanian", 

3798 "then": "adverbial participle", 

3799 }, 

3800 "present adverbial": { 

3801 "lang": "Lithuanian", 

3802 "then": "present adverbial", 

3803 }, 

3804 "past adverbial": { 

3805 "lang": "Lithuanian", 

3806 "then": "past adverbial", 

3807 }, 

3808 "past frequentative adverbial": { 

3809 "lang": "Lithuanian", 

3810 "then": "past frequentative adverbial", 

3811 }, 

3812 "future adverbial": { 

3813 "lang": "Lithuanian", 

3814 "then": "future adverbial", 

3815 }, 

3816 "1st person (pirmasis asmuo)": { # -uoti/Lithuanian 

3817 "lang": "Lithuanian", 

3818 "then": "first-person", 

3819 }, 

3820 "2nd person(antrasis asmuo)": { 

3821 "lang": "Lithuanian", 

3822 "then": "second-person", 

3823 }, 

3824 "3rd person(trečiasis asmuo)": { 

3825 "lang": "Lithuanian", 

3826 "then": "third-person", 

3827 }, 

3828 "present dependent": { # abair/Irish, table for archaic verb paradigm 

3829 "lang": "Irish", 

3830 "then": "present dependent", 

3831 }, 

3832 "past habitual dependent": { # abair/Irish, table for archaic verb paradigm 

3833 "lang": "Irish", 

3834 "then": "past habitual dependent", 

3835 }, 

3836 "future dependent": { # abair/Irish, table for archaic verb paradigm 

3837 "lang": "Irish", 

3838 "then": "future dependent", 

3839 }, 

3840 "conditional dependent": { # abair/Irish, table for archaic verb paradigm 

3841 "lang": "Irish", 

3842 "then": "conditional dependent", 

3843 }, 

3844 "conditional independent": { # abair/Irish, table for archaic verb paradigm 

3845 "lang": "Irish", 

3846 "then": "conditional independent", 

3847 }, 

3848 "future independent": { # faigh/Irish, table for archaic verb paradigm 

3849 "lang": "Irish", 

3850 "then": "future independent", 

3851 }, 

3852 "past independent": { # faigh/Irish, table for archaic verb paradigm 

3853 "lang": "Irish", 

3854 "then": "past independent", 

3855 }, 

3856 "past dependent": { # faigh/Irish, table for archaic verb paradigm 

3857 "lang": "Irish", 

3858 "then": "past dependent", 

3859 }, 

3860 "present independent": { # faigh/Irish, table for archaic verb paradigm 

3861 "lang": "Irish", 

3862 "then": "present independent", 

3863 }, 

3864 "past habitual independent": { # faigh/Irish, table for archaic verb paradigm 

3865 "lang": "Irish", 

3866 "then": "past habitual independent", 

3867 }, 

3868 "definite singular": "definite singular", 

3869 "indefinite plural": "indefinite plural", 

3870 "definite plural": "definite plural", 

3871 "masc.": "masculine", # ща/Bulgarian 

3872 "fem.": "feminine", 

3873 "neut.": "neuter", 

3874 "genitive form": "genitive", # глава/Bulgarian 

3875 "feminine/ neuter": "feminine neuter", # два/Bulgarian 

3876 "future indicative": "future indicative", # mdlić/Polish 

3877 "dummy-ignored-text-cell": "dummy-ignored-text-cell", # Kludge 

3878 "s": { 

3879 "lang": "Finnish", # erata/Finnish 

3880 "then": "singular", 

3881 }, 

3882 "pl": { 

3883 "lang": "Finnish", # erata/Finnish 

3884 "then": "plural", 

3885 }, 

3886 "pos": "positive", # erata/Finnish 

3887 "neg": "negative", # erata/Finnish 

3888 "evidential participle": "evidential participle", # տալ/Armenian 

3889 "future converb 1": "future converb converb-i", # տալ/Armenian 

3890 "future converb 2": "future converb converb-ii", # տալ/Armenian 

3891 "past imperfect": "past imperfect", # տալ/Armenian 

3892 "դուն": { # տալ/Armenian 

3893 "lang": "Armenian", 

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

3895 }, 

3896 "ան": { # տալ/Armenian 

3897 "lang": "Armenian", 

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

3899 }, 

3900 "անանք": { # տալ/Armenian 

3901 "lang": "Armenian", 

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

3903 }, 

3904 "(դուն)": { # տալ/Armenian 

3905 "lang": "Armenian", 

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

3907 }, 

3908 "1 sg.": "first-person singular", # féin/Old Irish 

3909 "2 sg.": "second-person singular", # féin/Old Irish 

3910 "3 sg.": "third-person singular", # féin/Old Irish 

3911 "1 pl.": "first-person plural", # féin/Old Irish 

3912 "2 pl.": "second-person plural", # féin/Old Irish 

3913 "3 pl.": "third-person plural", # féin/Old Irish 

3914 "m./n.": "masculine neuter", # féin/Old Irish 

3915 "Stressed": "stressed", # suide/Old irish 

3916 "Unstressed": "unstressed", # suide/Old Irish 

3917 "Masculine": { # suide/Old Irish 

3918 "default": "masculine", 

3919 "lang": "Old Irish", 

3920 "then": "dummy-reset-headers masculine", 

3921 }, 

3922 "Feminine/neuter": { 

3923 "default": "feminine neuter", 

3924 "lang": "Old Irish", 

3925 "then": "dummy-reset-headers feminine neuter", 

3926 }, 

3927 "2d sing.": "second-person singular", # attá/Old Irish 

3928 "3d sing.": "third-person singular", # attá/Old Irish 

3929 "3d sg. masc.": "third-person singular masculine", # attá/Old Irish 

3930 "3d sg. fem.": "third-person singular feminine", # attá/Old Irish 

3931 "2d sg.": "second-person singular", # attá/Old Irish BOTH OF THESE in the same template! 

3932 "3d sg.": "third-person singular", # attá/Old Irish 

3933 "2d pl.": "second-person plural", # attá/Old Irish 

3934 "3d pl.": "third-person plural", # attá/Old Irish 

3935 "Pres.​indic.​prog.": "present indicative progressive", # attá/Old Irish 

3936 "Pres.​indic.​hab.": "present indicative habitual", # attá/Old Irish 

3937 # ~ "Pres.ind.": "present indicative", # attá/Old Irish 

3938 # Original data has a zero-width space, causing problems 

3939 "Pres.​subj.": "present subjunctive", # attá/Old Irish 

3940 "Active present participle ➤": { # στρατοπεδεύω/Greek (modern) 

3941 "lang": "Greek", 

3942 "then": "active present participle indeclinable", 

3943 }, 

3944 "Active perfect participle ➤": { 

3945 "lang": "Greek", 

3946 "then": "active perfect participle indeclinable", 

3947 }, 

3948 "Passive perfect participle ➤": { 

3949 "lang": "Greek", 

3950 "then": "passive perfect participle indeclinable", 

3951 }, 

3952 "Perfect participle ➤": { # χαίρομαι/Greek 

3953 "lang": "Greek", 

3954 "then": "perfect participle indeclinable", 

3955 }, 

3956 # https://en.wikipedia.org/wiki/Nonfinite_verb#Modern_Greek 

3957 "Nonfinite form ➤": { 

3958 "lang": "Greek", 

3959 "then": "infinitive-aorist", 

3960 }, 

3961 "m·s": "masculine singular", # καθείς/Greek 

3962 "f·s": "feminine singular", 

3963 "n·s": "neuter singular", 

3964 "m·p": "masculine plural", # αυτός/Greek 

3965 "f·p": "feminine plural", 

3966 "n·p": "neuter plural", 

3967 "Masc./Fem./Neut.": "masculine feminine neuter", # mille/Latin 

3968 "masc./fem./neut.": "masculine feminine neuter", # sūi/Latin 

3969 "Reflexive third": "third-person reflexive", # se/Latin 

3970 "masculine dual": "masculine dual", # a סוס/Hebrew 

3971 "his": "third-person singular masculine possessive", # moj/Serbo-Croatian 

3972 "her": "third-person singular feminine possessive", # moj/Serbo-Croatian 

3973 "1st singular (я (ja))": "first-person singular", # быць/Serbo-Croatian 

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

3975 "3rd singular (ён (jon)/яна́ (janá)/яно́ (janó))": "third-person singular", 

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

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

3978 "3rd plural (яны́ (janý))": "third-person plural", 

3979 "plural (мы (my), вы (vy), яны́ (janý))": "plural", 

3980 "masculine (я (ja), ты (ty), ён (jon))": "masculine", 

3981 "feminine (я (ja), ты (ty), яна́ (janá))": "feminine", 

3982 "neuter (яно́ (janó))": "neuter", 

3983 "adjectival partc.": "adjectival participle", # доврне/Macedonian 

3984 "adverbial partc.": "adverbial participle", 

3985 # ~ "non-finite forms": { # доврне/Macedonian didn't work out 

3986 # ~ "lang": "Macedonian", 

3987 # ~ "then": "", 

3988 # ~ }, 

3989 # ~ "l-participle": "l-participle", 

3990 # ~ "Compound tenses": { 

3991 # ~ "lang": "Macedonian", 

3992 # ~ "pos": "verb", 

3993 # ~ "then": "dummy-reset-headers", 

3994 # ~ }, 

3995 "collective": { # ремен/Macedonian 

3996 "lang": [ 

3997 "Lithuanian", 

3998 "Macedonian", 

3999 "Proto-Indo-European", 

4000 ], 

4001 "pos": ["num", "noun"], 

4002 "then": "collective", 

4003 }, 

4004 "Nominative/Accusative (Unarticulated)": "nominative accusative indefinite", # acid caboxilic/Romanian 

4005 "Nominative/Accusative (Definite articulation)": "nominative accusative definite", 

4006 "Genitive/Dative (Definite articulation)": "genitive dative definite", 

4007 "present infinitive": "present infinitive", # фи/Romanian 

4008 "past infinitive": "past infinitive", 

4009 # ~ This doesn't want to work - why? 

4010 # ~ "rare but acceptable": "standard", # soler/Spanish 

4011 "genitive (gjinore) (i/e/të/së)": "genitive", # mjez/Albanian 

4012 "participle — present": "present participle", # afrohet/Albanian 

4013 "participle — perfect": "perfect participle", 

4014 "gerund — present": "present gerund", 

4015 "gerund — perfect": "perfect gerund", 

4016 "infinitive — present": "present infinitive", 

4017 "infinitive — perfect": "perfect infinitive", 

4018 "privative": "privative", 

4019 "absolutive — perfect": "perfect absolutive", 

4020 "continuous present": "present progressive", 

4021 "continuous imperfect": "imperfect progressive", 

4022 "2nd future": "future future-ii", 

4023 "2nd future perfect": "future future-ii perfect", 

4024 "imperative — negatory": "negative imperative", 

4025 "genitive/dative/ablative": "genitive dative ablative", # tij/Albanian 

4026 "male forms": "masculine", # Dit/Albanian 

4027 "female forms": "feminine", 

4028 "Base form": { 

4029 "lang": [ 

4030 "Arabic", 

4031 "Moroccan Arabic", 

4032 "Maltese", 

4033 "Gulf Arabic", 

4034 "Assyrian Neo-Aramaic", 

4035 ], 

4036 # "pos": ["noun", "verb", "particle", "prep"], 

4037 "then": "stem", 

4038 }, 

4039 "Base Form": { 

4040 "lang": ["Assyrian Neo-Aramaic",], 

4041 "then": "stem", 

4042 }, 

4043 "base form": { 

4044 "lang": ["Assyrian Neo-Aramaic",], 

4045 "then": "stem", 

4046 }, 

4047 "Personal-pronoun- including forms": { 

4048 "lang": [ 

4049 "Arabic", 

4050 "Moroccan Arabic", 

4051 "Maltese", 

4052 "Gulf Arabic", 

4053 ], 

4054 # "pos": ["noun", "verb", "particle", "prep"], 

4055 "then": "dummy-reset-headers", 

4056 }, 

4057 # ~ "singular": { 

4058 # ~ "lang": ["Arabic", "Moroccan Arabic",], 

4059 # ~ "pos": "prep", 

4060 # ~ "if": "stem", 

4061 # ~ "then": "dummy-reset-headers", 

4062 # ~ }, 

4063 "common, neuter": { # kaj/Serbo-Croatian 

4064 "lang": "Serbo-Croatian", 

4065 "then": "common-gender neuter", 

4066 }, 

4067 "pres.​indep.​aff.": "present independent affirmative", # bí/Irish 

4068 "pres.​dep.": "present dependent", 

4069 "pres.​neg.‡": "present negative", # after ‡ starts working as a footnote 

4070 # character, remove it from here. 

4071 "pres.​hab.": "present habitual", 

4072 "past hab.": "past habitual", 

4073 "past ind.": "past independent", 

4074 "past dep.": "past dependent", 

4075 "accusative form": "accusative", # отец/Bulgarian 

4076 "basic suffix": "suffix", 

4077 "direct object suffix": "direct-object suffix", 

4078 "indirect object suffix": "indirect-object suffix", 

4079 "Xemxin": "xemxin-assimilation", # lil/Maltese 

4080 "Qamrin": "qamrin-unassimilation", 

4081 "State": { 

4082 "lang": [ 

4083 "Aramaic", 

4084 "Hebrew", 

4085 "Assyrian Neo-Aramaic", 

4086 ], 

4087 "pos": "noun", 

4088 "then": "*", 

4089 "else": "", 

4090 }, 

4091 "state": { 

4092 "lang": "Assyrian Neo-Aramaic", 

4093 "pos": "noun", 

4094 "then": "*", 

4095 "else": "", 

4096 }, 

4097 "Absolute": { # x חקלא/Aramaic 

4098 "lang": "Aramaic", 

4099 "pos": "noun", 

4100 "then": "absolute", 

4101 }, 

4102 "Determined": { 

4103 "lang": "Aramaic", 

4104 "pos": "noun", 

4105 "then": "emphatic", 

4106 }, 

4107 "emphatic": "emphatic", # v דלתא/Aramaic 

4108 "3rd f": "third-person feminine", # umpa/Scottish Gaelic 

4109 "Number": { 

4110 "default": "", 

4111 # umpa/Scottish Gaelic 

4112 "lang": [ 

4113 "Hebrew", 

4114 "Scottish Gaelic", 

4115 ], 

4116 "then": "*", 

4117 }, 

4118 "Third person f": "third-person feminine", # an/Scottish Gaelic 

4119 "First sg": "first-person singular", # an/Scottish Gaelic 

4120 "Second sg": "second-person singular", 

4121 "Third sg m": "third-person singular masculine", 

4122 "Third sg f": "third-person singular feminine", 

4123 "First pl": "first-person plural", 

4124 "Second pl": "second-person plural", 

4125 "Third pl": "third-person plural", 

4126 "Independent": "independent", 

4127 "independent": "independent", # immee/Manx 

4128 "Affirmative Interrogative": "affirmative interrogative", 

4129 "Negative Interrogative": "negative interrogative", 

4130 "Affirmative interrogative": "affirmative interrogative", # thathar/Scottish Gaelic 

4131 "Relative future": [ 

4132 "with-pronoun future", 

4133 "with-conjunction future", 

4134 ], 

4135 "agent1, 3": "agent participle", # puhkaa/Finnish 

4136 "Unabbreviated form": "unabbreviation alt-of", # jku/Finnish 

4137 "Abbreviation": "abbreviation", 

4138 "nãs/nãsu, nãsã/nãsa, el/elu, ea": { 

4139 "lang": "Aromanian", 

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

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

4142 }, 

4143 "Masculine,Feminine, Neuter": "masculine feminine neuter", 

4144 # tři/Czech, copy-pasted manual table without template... 

4145 "Present Sg": "present singular", # skrýt/Czech 

4146 "Present Pl": "present plural", 

4147 "Future Sg": "future singular", 

4148 "Future Pl": "future plural", 

4149 "Past Sg": "past singular", 

4150 "Past Pl": "past plural", 

4151 "neuter singular": "neuter singular", # ony/Czech 

4152 # dar éisi/Old Irish, la/Old Irish 

4153 "3d sing. masc./neut., accusative": "third-person singular masculine neuter accusative", 

4154 "3d sing. masc./neut., dative": "third-person singular masculine neuter dative", 

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

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

4157 "3d person pl., dative": "third-person plural dative", 

4158 "3d person pl., accusative": "third-person plural accusative", 

4159 "nominative-accusative": "nominative accusative", # stand/Nynorsk 

4160 "compound-genitive": "in-compounds genitive", 

4161 "Common": { 

4162 "lang": "Arabic", 

4163 "then": "common-gender", 

4164 }, 

4165 "Affix": "affix", 

4166 # podnikat/Czech 

4167 "you (singular)": "second-person singular", 

4168 "you (polite)": "second-person singular formal", 

4169 "he/she/it": "third-person singular", 

4170 "we": { 

4171 "lang": "Czech", 

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

4173 }, 

4174 "you (plural)": "second-person plural", 

4175 "they": { 

4176 "lang": "Czech", 

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

4178 }, 

4179 "Active (Perfect)": "active participle", 

4180 "Masculine, feminine, neuter": "masculine feminine neuter", # čtyři/Czech 

4181 "participle (a7)": "participle", # hylja/Faroese 

4182 "participle (a8)": "participle", # lagt/Faroese 

4183 "participle (a34)": "participle", # falla/Faroese 

4184 "participle (a27)": "participle", # kvøða/Faroese 

4185 "participle (a18/a6)": "participle", # skreiða/Faroese 

4186 "participle (a18)": "participle", # ýa/Faroese 

4187 "participle (a5 (a39))": "participle", # skráseta/Faroese 

4188 # síggjast/Faroese 

4189 "eg": { 

4190 "lang": "Faroese", 

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

4192 }, 

4193 "hann/hon/tað": "third-person singular", 

4194 "vit, tit, teir/tær/tey": "plural", 

4195 "mediopassive": "mediopassive", 

4196 "imperfect (indicative/subjunctive)/conditional": { # de-glicio/Welsh 

4197 "lang": "Welsh", 

4198 "then": ["imperfect indicative", "conditional"], 

4199 }, 

4200 "imperfect indicative/conditional": { # gwneud/Welsh 

4201 "lang": "Welsh", 

4202 "then": ["imperfect indicative", "conditional"], 

4203 }, 

4204 "present/future": { # darganfod/Welsh 

4205 "lang": "Welsh", 

4206 "then": ["present indicative", "future indicative"], 

4207 }, 

4208 "imperfect/conditional": { # darganfod/Welsh 

4209 "lang": "Welsh", 

4210 "then": ["imperfect indicative", "conditional"], 

4211 }, 

4212 "future/present habitual": { # adnabod/Welsh 

4213 "lang": "Welsh", 

4214 "then": ["future habitual", "present habitual"], 

4215 }, 

4216 # ϧⲉⲣϧⲉⲣ/Coptic 

4217 # Bohairic 

4218 "ⲁⲛⲟⲕ": "first-person singular", 

4219 # Removed duplicates 

4220 "ⲁⲛⲟⲛ": "first-person plural", 

4221 "-": { 

4222 "default": "", 

4223 "lang": "Coptic", 

4224 "then": "nominal", 

4225 "else": { 

4226 "lang": "Assamese", 

4227 "pos": "verb", 

4228 "then": "negative", 

4229 "else": {"lang": "Old Saxon", "pos": "pron", "then": ""}, 

4230 }, 

4231 }, 

4232 "focalising, precursive": "focalising", 

4233 # ⲃⲱⲗ/Coptic, different pronouns in different dialects 

4234 # Sahidic 

4235 # Removed duplicates 

4236 # Akhmimic 

4237 "ⲁⲛⲁⲕ": "first-person singular", 

4238 "ⲛ̄ⲧⲁⲕ": "second-person singular masculine", 

4239 "ⲛ̄ⲧⲁϥ": "third-person singular masculine", 

4240 "ⲛ̄ⲧⲁⲥ": "third-person singular feminine", 

4241 "ⲁⲛⲁⲛ": "first-person plural", 

4242 "ⲛ̄ⲧⲱⲧⲛⲉ": "second-person plural", 

4243 "ⲛ̄ⲧⲁⲩ": "third-person plural", 

4244 # Lycopolitan has a mixture of different forms 

4245 # Fayyumic 

4246 "ⲛⲧⲁⲕ": "second-person singular masculine", 

4247 "ⲛⲧⲁ": "second-person singular feminine", 

4248 "ⲛⲧⲁϥ": "third-person singular masculine", 

4249 "ⲛⲧⲁⲥ": "third-person singular feminine", 

4250 "ⲛⲧⲁⲧⲉⲛ": "second-person plural", 

4251 "ⲛⲧⲁⲩ": "third-person plural", 

4252 "circumstantial, focalising": "focalising", 

4253 # ignore Tagalog Affix column affixes 

4254 # manghalik/Tagalog 

4255 "Actor-secondary": "actor-secondary", 

4256 "mang-": { 

4257 "lang": "Tagalog", 

4258 "then": "", 

4259 }, 

4260 "-an": { 

4261 "lang": "Tagalog", 

4262 "then": "", 

4263 }, 

4264 "pang- -an": { 

4265 "lang": "Tagalog", 

4266 "then": "", 

4267 }, 

4268 "ikapang-": { 

4269 "lang": "Tagalog", 

4270 "then": "", 

4271 }, 

4272 "magpa-": { 

4273 "lang": "Tagalog", 

4274 "then": "", 

4275 }, 

4276 "papang- -in": { 

4277 "lang": "Tagalog", 

4278 "then": "", 

4279 }, 

4280 "⁠ pa- -an": { 

4281 "lang": "Tagalog", 

4282 "then": "", 

4283 }, 

4284 "ipagpa-": { 

4285 "lang": "Tagalog", 

4286 "then": "", 

4287 }, 

4288 "ipapang-": { 

4289 "lang": "Tagalog", 

4290 "then": "", 

4291 }, 

4292 "ikapagpapang-": { 

4293 "lang": "Tagalog", 

4294 "then": "", 

4295 }, 

4296 "papang- -an": { 

4297 "lang": "Tagalog", 

4298 "then": "", 

4299 }, 

4300 "makapang-": { 

4301 "lang": "Tagalog", 

4302 "then": "", 

4303 }, 

4304 "ma -an": { 

4305 "lang": "Tagalog", 

4306 "then": "", 

4307 }, 

4308 "maipang-": { 

4309 "lang": "Tagalog", 

4310 "then": "", 

4311 }, 

4312 "maikapang-": { 

4313 "lang": "Tagalog", 

4314 "then": "", 

4315 }, 

4316 "mapang- -an": { 

4317 "lang": "Tagalog", 

4318 "then": "", 

4319 }, 

4320 "makapagpa-": { 

4321 "lang": "Tagalog", 

4322 "then": "", 

4323 }, 

4324 "mapapang-": { 

4325 "lang": "Tagalog", 

4326 "then": "", 

4327 }, 

4328 "maipagpa-": { 

4329 "lang": "Tagalog", 

4330 "then": "", 

4331 }, 

4332 "maipapang-": { 

4333 "lang": "Tagalog", 

4334 "then": "", 

4335 }, 

4336 "maikapagpapang-": { 

4337 "lang": "Tagalog", 

4338 "then": "", 

4339 }, 

4340 "mapapang- -an": { 

4341 "lang": "Tagalog", 

4342 "then": "", 

4343 }, 

4344 "makipang-": { 

4345 "lang": "Tagalog", 

4346 "then": "", 

4347 }, 

4348 "makipagpa-": { 

4349 "lang": "Tagalog", 

4350 "then": "", 

4351 }, 

4352 # ipalinis/Tagalog 

4353 "mag-": { 

4354 "lang": "Tagalog", 

4355 "then": "", 

4356 }, 

4357 "-in": { 

4358 "lang": "Tagalog", 

4359 "then": "", 

4360 }, 

4361 "\u2060pag- -an": { 

4362 "lang": "Tagalog", 

4363 "then": "", 

4364 }, 

4365 "ipag-": { 

4366 "lang": "Tagalog", 

4367 "then": "", 

4368 }, 

4369 "ipang-": { 

4370 "lang": "Tagalog", 

4371 "then": "", 

4372 }, 

4373 "ikapag-": { 

4374 "lang": "Tagalog", 

4375 "then": "", 

4376 }, 

4377 "pag- -an": { 

4378 "lang": "Tagalog", 

4379 "then": "", 

4380 }, 

4381 "papag- -in": { 

4382 "lang": "Tagalog", 

4383 "then": "", 

4384 }, 

4385 "ipa-": { 

4386 "lang": "Tagalog", 

4387 "then": "", 

4388 }, 

4389 "ikapagpa-": { 

4390 "lang": "Tagalog", 

4391 "then": "", 

4392 }, 

4393 "\u2060pagpa- -an": { 

4394 "lang": "Tagalog", 

4395 "then": "", 

4396 }, 

4397 "\u2060papag- -an": { 

4398 "lang": "Tagalog", 

4399 "then": "", 

4400 }, 

4401 "makapag-": { 

4402 "lang": "Tagalog", 

4403 "then": "", 

4404 }, 

4405 "ma-": { 

4406 "lang": "Tagalog", 

4407 "then": "", 

4408 }, 

4409 "maipag-": { 

4410 "lang": "Tagalog", 

4411 "then": "", 

4412 }, 

4413 "maikapag-": { 

4414 "lang": "Tagalog", 

4415 "then": "", 

4416 }, 

4417 "mapapag-": { 

4418 "lang": "Tagalog", 

4419 "then": "", 

4420 }, 

4421 "maipa-": { 

4422 "lang": "Tagalog", 

4423 "then": "", 

4424 }, 

4425 "maikapagpa-": { 

4426 "lang": "Tagalog", 

4427 "then": "", 

4428 }, 

4429 "mapagpa- -an": { 

4430 "lang": "Tagalog", 

4431 "then": "", 

4432 }, 

4433 "mapapag- -an": { 

4434 "lang": "Tagalog", 

4435 "then": "", 

4436 }, 

4437 "makipag-": { 

4438 "lang": "Tagalog", 

4439 "then": "", 

4440 }, 

4441 "maki-": { 

4442 "lang": "Tagalog", 

4443 "then": "", 

4444 }, 

4445 # batikusin/Tagalog 

4446 "-um-": { 

4447 "lang": "Tagalog", 

4448 "then": "", 

4449 }, 

4450 "i-": { 

4451 "lang": "Tagalog", 

4452 "then": "", 

4453 }, 

4454 "ika-": { 

4455 "lang": "Tagalog", 

4456 "then": "", 

4457 }, 

4458 "pa- -in": { 

4459 "lang": "Tagalog", 

4460 "then": "", 

4461 }, 

4462 # umagnas/Tagalog 

4463 "um-": { 

4464 "lang": "Tagalog", 

4465 "then": "", 

4466 }, 

4467 # baybayin/Tagalog 

4468 "Directional": "directional", 

4469 # madali/Tagalog 

4470 "root": "root", 

4471 "superiority": { 

4472 "lang": "Tagalog", 

4473 "then": "superior", 

4474 }, 

4475 "inferiority": { 

4476 "lang": "Tagalog", 

4477 "then": "inferior", 

4478 }, 

4479 "equality": { 

4480 "lang": "Tagalog", 

4481 "then": "equal", 

4482 }, 

4483 # sumisid/Tagalog 

4484 "maka-": { 

4485 "lang": "Tagalog", 

4486 "then": "", 

4487 }, 

4488 "mapa-": { 

4489 "lang": "Tagalog", 

4490 "then": "", 

4491 }, 

4492 "mai-": { 

4493 "lang": "Tagalog", 

4494 "then": "", 

4495 }, 

4496 "maika-": { 

4497 "lang": "Tagalog", 

4498 "then": "", 

4499 }, 

4500 "mapag- -an": { 

4501 "lang": "Tagalog", 

4502 "then": "", 

4503 }, 

4504 # ipasagot/Tagalog 

4505 "ma- -an": { 

4506 "lang": "Tagalog", 

4507 "then": "", 

4508 }, 

4509 # ayusin/Tagalog 

4510 "mapag-": { 

4511 "lang": "Tagalog", 

4512 "then": "", 

4513 }, 

4514 "resultative": "resultative", # sloniti/Proto-Slavic 

4515 "imperfective aorist": "aorist imperfective", # byti/Proto-Slavic 

4516 "Masculine and feminine": "masculine feminine", # hwa/Old English 

4517 # ufuy/Afar 

4518 "Postpositioned forms": { 

4519 "lang": "Afar", 

4520 "then": "with-postposition", 

4521 }, 

4522 "l-case": "l-case", 

4523 "k-case": "k-case", 

4524 "t-case": "t-case", 

4525 "h-case": "h-case", 

4526 # icfide/Afar 

4527 "present progressive": "present progressive", 

4528 "future progressive": "future progressive", 

4529 "immediate future": "immediate-future", 

4530 "imperfect potential I": "imperfect potential potential-i", 

4531 "imperfect potential II": "imperfect potential potential-ii", 

4532 "perfect potential": "perfect potential", 

4533 "present conditional II": "present conditional conditional-ii", 

4534 "present conditional I": "present conditional conditional-i", 

4535 "irrealis": "irrealis", 

4536 "perfect conditional": "perfect conditional", 

4537 "V-affirmative": "v-affirmative", 

4538 "N-affirmative": "n-affirmative", 

4539 "conjunctive I": "conjunctive conjunctive-i", 

4540 "conjunctive II": "conjunctive conjunctive-ii", 

4541 "consultative": "consultative", 

4542 "-h converb": "h-converb converb", 

4543 "-i form": "i-form converb", 

4544 "-k converb": "k-converb converb", 

4545 "-in(n)uh converb": "innuh-converb converb", 

4546 "-innuk converb": "innuk-converb converb", 

4547 "V-focus": "v-focus participle indefinite", 

4548 "N-focus": "n-focus participle indefinite", 

4549 "indefinite participle": "indefinite participle", 

4550 # qunxa/Afar 

4551 "present indicative I": "present indicative indicative-i", 

4552 "present indicative II": "present indicative indicative-ii", 

4553 "past indicative I": "past indicative indicative-i", 

4554 "past indicative II": "past indicative indicative-ii", 

4555 "present potential": "present potential", 

4556 "dist. plural": "distributive plural", # nástro/Navajo 

4557 "duoplural": "duoplural", 

4558 # this separate duoplural number can't simply be broken into dual and plural 

4559 # because of tag-merging issues, like here: if Navajo has the default numbers 

4560 # ["singular", "plural"], then singular + duoplural has "dual" left over, 

4561 # if it has ["singular", "plural", "dual",] then all of them are merged BUT 

4562 # that implies that the non-duoplural "plural" could also be part of the merge. 

4563 "Unspecified": { 

4564 "lang": "Navajo", 

4565 "then": "indefinite-person", 

4566 }, 

4567 "Unspecified person": { 

4568 "lang": "Navajo", 

4569 "then": "indefinite-person", 

4570 }, 

4571 "Passive A": { 

4572 "lang": "Navajo", 

4573 "then": "passive", 

4574 }, 

4575 "Passive B": { 

4576 "lang": "Navajo", 

4577 "then": "passive agentive", 

4578 }, 

4579 "Spatial": { 

4580 "lang": "Navajo", 

4581 "then": "spatial-person", 

4582 }, 

4583 "Spatial person": { 

4584 "lang": "Navajo", 

4585 "then": "spatial-person", 

4586 }, 

4587 "ITERATIVE": "iterative", # náhádleeh/Navajo 

4588 "early": "archaic", # soule/Middle English 

4589 "nominative, accusative": "nominative accusative", # dale/Middle English 

4590 "subjunctive plural": "subjunctive plural", # been/Middle English 

4591 "Middle Voice": "middle-voice", # शृणोति/Sanskrit 

4592 "Middle": { 

4593 "lang": [ 

4594 "Hittite", 

4595 "Sanskrit", 

4596 "Pali", 

4597 ], 

4598 "then": "middle-voice", # अवति/Sanskrit 

4599 }, 

4600 "Active Voice": "active", 

4601 "Passive Voice": "passive", 

4602 "Potential mood / Optative mood": "potential", 

4603 # ვენეციური/Georgian 

4604 "nominative, genitive, instrumental": "nominative genitive instrumental", 

4605 "dative, adverbial": "dative adverbial", 

4606 "negative imperative": "negative imperative", # აბეზღებს/Georgian 

4607 # მათ/Georgian 

4608 "third-person": "third-person", 

4609 "personal pronouns": { 

4610 "lang": "Georgian", 

4611 "then": "", 

4612 }, 

4613 "relative pronouns": { 

4614 "lang": "Georgian", 

4615 "then": "", 

4616 }, 

4617 "this": "proximal pronoun singular", 

4618 "that": "distal pronoun singular", 

4619 "these": "proximal pronoun plural", 

4620 "those": "distal pronoun plural", 

4621 # დაწერს/Georgian 

4622 "masdar": "noun-from-verb", # also in Arabic 

4623 "transitive screeves": "transitive", 

4624 "intransitive screeves": "intransitive", 

4625 "privative participle": "privative participle", 

4626 "მე": { 

4627 "lang": "Georgian", 

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

4629 }, 

4630 "შენ": { 

4631 "lang": "Georgian", 

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

4633 }, 

4634 "ის": { 

4635 "lang": "Georgian", 

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

4637 }, 

4638 "ჩვენ": { 

4639 "lang": "Georgian", 

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

4641 }, 

4642 "თქვენ": { 

4643 "lang": "Georgian", 

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

4645 }, 

4646 "ისინი": { 

4647 "lang": "Georgian", 

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

4649 }, 

4650 "მან": { 

4651 "lang": "Georgian", 

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

4653 }, 

4654 "მათ": { 

4655 "lang": "Georgian", 

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

4657 }, 

4658 "მას": { 

4659 "lang": "Georgian", 

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

4661 }, 

4662 # ~ "": { 

4663 # ~ "lang": "Georgian", 

4664 # ~ "then": "", 

4665 # ~ }, 

4666 "inversion": "inversion", 

4667 # maanaadad/Ojibwe 

4668 "singular (0s)": "singular inanimate", 

4669 "obviative singular (0's)": "obviative inanimate singular", 

4670 "plural (0p)": "plural inanimate", 

4671 "obviative plural (0'p)": "obviative plural inanimate", 

4672 "singular or plural (0)": "singular plural inanimate", 

4673 "obviative singular or plural (0')": "obviative singular plural inanimate", 

4674 # a ܒܢܓܐ/Classical_Syriac 

4675 "1st c. sg. (my)": "first-person singular common-gender possessive", 

4676 "2nd m. sg. (your)": "second-person singular masculine possessive", 

4677 "2nd f. sg. (your)": "second-person singular feminine possessive", 

4678 "3rd m. sg. (his)": "third-person singular masculine possessive", 

4679 "3rd f. sg. (her)": "third-person singular feminine possessive", 

4680 "1st c. pl. (our)": "first-person common-gender plural possessive", 

4681 "2nd m. pl. (your)": "second-person plural masculine possessive", 

4682 "2nd f. pl. (your)": "second-person plural feminine possessive", 

4683 "3rd m. pl. (their)": "third-person plural masculine possessive", 

4684 "3rd f. pl. (their)": "third-person plural feminine possessive", 

4685 # vágyhat/Hungarian 

4686 "3rd person sg, 2nd person sg formal": [ 

4687 "third-person singular", 

4688 "second-person singular formal", 

4689 ], 

4690 "3rd person pl, 2nd person pl formal": [ 

4691 "third-person plural", 

4692 "second-person plural formal", 

4693 ], 

4694 # ichwane/Zulu 

4695 "Possessive forms": "possessive", 

4696 "Full form": "full-form", 

4697 "Simple form": "basic-form", 

4698 "Substantive": { 

4699 "lang": "Zulu", 

4700 "if": "possessive", 

4701 "then": "possessive-substantive", 

4702 }, 

4703 "Modifier": { 

4704 "lang": [ 

4705 "Zulu", 

4706 "Swazi", 

4707 ], 

4708 # ~ "if": "possessive", 

4709 "then": "", 

4710 "else": { 

4711 "lang": "Xhosa", # magqagala 

4712 "then": "attributive", 

4713 }, 

4714 }, 

4715 "Copulative": "copulative", 

4716 "present negative": "present negative", # hoteti/Slovene 

4717 "Construct state": "construct", # ziqqurratum/Akkadian 

4718 # marāṣum/Akkadian 

4719 "Adjective": "adjective", 

4720 "1.sg": "first-person singular", 

4721 "2.sg": "second-person singular", 

4722 "3.sg": "third-person singular", 

4723 "1.pl": "first-person plural", 

4724 "2.pl": "second-person plural", 

4725 "3.pl": "third-person plural", 

4726 # pats/Latvian 

4727 "Masculine Singular": "masculine singular", 

4728 "Feminine Singular": "feminine singular", 

4729 "Masculine Plural": "masculine plural", 

4730 "Feminine Plural": "feminine plural", 

4731 "⁠ ka- -an": { 

4732 "lang": "Tagalog", 

4733 "then": "", 

4734 }, # maligaw/Tagalog 

4735 # AFAICT the following is just the idiosyncracy of a singular editor. 

4736 # No real idea of what "analytical" means in this context. It's not 

4737 # standard terminology for specific forms, but I guess it could 

4738 # stand for some kind of free-standing form... 

4739 "analytical": { # immee/Manx 

4740 "lang": "Manx", 

4741 "then": "analytic", 

4742 }, 

4743 # alcun/Old French 

4744 "Subject": "subjective", 

4745 # styri/Lower Sorbian 

4746 "Masculine inanimate/ feminine/neuter": [ 

4747 "masculine inanimate", 

4748 "feminine neuter", 

4749 ], 

4750 "Masculine animate": "masculine animate", 

4751 # glab/Breton 

4752 "unmutated": "unmutated", 

4753 "hard": { 

4754 "lang": "Breton", 

4755 "then": "mutation-hard", 

4756 }, 

4757 "0": { # gwildronañ/Breton 

4758 "lang": "Breton", 

4759 "pos": "verb", 

4760 "then": "impersonal", 

4761 }, 

4762 "Impersonal forms": { 

4763 "lang": "Breton", 

4764 "pos": "verb", 

4765 "then": "*", 

4766 }, 

4767 "Mutated forms": { 

4768 "lang": "Breton", 

4769 "pos": "verb", 

4770 "then": "dummy-reset-headers", 

4771 }, 

4772 # дөрвөл/Mongolian 

4773 "substantive genitive": "possessive-substantive genitive", 

4774 "attributive locative": "attributive locative", 

4775 # сэрээх/Mongolian 

4776 "Future participle": "future participle", 

4777 "Confirmative": "confirmative", 

4778 "Resultative": "resultative", 

4779 "Imperfective converb": "imperfective converb", 

4780 "possessive particle": "possessive particle", # чи/Mongolian 

4781 # কোবোৱা/Assamese 

4782 "Gerund, Past participle, Agentive": [ 

4783 "gerund", 

4784 "past participle", 

4785 "agentive", 

4786 ], 

4787 "Progressive participle": "progressive participle", 

4788 "t": { 

4789 "lang": "Assamese", 

4790 "pos": "verb", 

4791 "then": "", 

4792 }, 

4793 "মই moi": { 

4794 "lang": "Assamese", 

4795 "pos": "verb", 

4796 "then": "first-person", 

4797 }, 

4798 "তই toi": { 

4799 "lang": "Assamese", 

4800 "pos": "verb", 

4801 "then": "familiar impolite second-person", 

4802 }, 

4803 "তুমি tumi": { 

4804 "lang": "Assamese", 

4805 "pos": "verb", 

4806 "then": "familiar second-person", 

4807 }, 

4808 "আপুনি apuni": { 

4809 "lang": "Assamese", 

4810 "pos": "verb", 

4811 "then": "honorific second-person", 

4812 }, 

4813 "তেওঁ etc teü͂": { 

4814 "lang": "Assamese", 

4815 "pos": "verb", 

4816 "then": "honorific third-person", 

4817 }, 

4818 "সি ♂, তাই ♀ etc xi ♂, tai ♀": { 

4819 "lang": "Assamese", 

4820 "pos": "verb", 

4821 "then": "third-person", 

4822 }, 

4823 "আমি ami": { 

4824 "lang": "Assamese", 

4825 "pos": "verb", 

4826 "then": "first-person", 

4827 }, 

4828 "তহঁত tohõt": { 

4829 "lang": "Assamese", 

4830 "pos": "verb", 

4831 "then": "familiar impolite second-person", 

4832 }, 

4833 "তোমালোক tümalük": { 

4834 "lang": "Assamese", 

4835 "pos": "verb", 

4836 "then": "familiar second-person", 

4837 }, 

4838 "আপোনালোক apünalük": { 

4839 "lang": "Assamese", 

4840 "pos": "verb", 

4841 "then": "honorific second-person", 

4842 }, 

4843 "তেওঁলোক teü͂lük": { 

4844 "lang": "Assamese", 

4845 "pos": "verb", 

4846 "then": "honorific third-person", 

4847 }, 

4848 "সিহঁত etc xihõt": { 

4849 "lang": "Assamese", 

4850 "pos": "verb", 

4851 "then": "third-person", 

4852 }, 

4853 "তহঁতে tohõte": { 

4854 "lang": "Assamese", 

4855 "pos": "verb", 

4856 "then": "familiar impolite second-person", 

4857 }, 

4858 "তোমালোকে tümalüke": { 

4859 "lang": "Assamese", 

4860 "pos": "verb", 

4861 "then": "familiar second-person", 

4862 }, 

4863 "আপোনালোকে apünalüke": { 

4864 "lang": "Assamese", 

4865 "pos": "verb", 

4866 "then": "honorific second-person", 

4867 }, 

4868 "তেওঁলোকে teü͂lüke": { 

4869 "lang": "Assamese", 

4870 "pos": "verb", 

4871 "then": "honorific third-person", 

4872 }, 

4873 "সিহঁতে etc xihõte": { 

4874 "lang": "Assamese", 

4875 "pos": "verb", 

4876 "then": "third-person", 

4877 }, 

4878 # gözde/Turkish predicative adjective table 

4879 "ben (I am)": "first-person singular", 

4880 "sen (you are)": "second-person singular", 

4881 "o (he/she/it is)": "third-person singular", 

4882 "biz (we are)": "first-person plural", 

4883 "siz (you are)": "second-person plural", 

4884 "onlar (they are)": "third-person plural", 

4885 "ben (I was)": "first-person singular", 

4886 "sen (you were)": "second-person singular", 

4887 "o (he/she/it was)": "third-person singular", 

4888 "biz (we were)": "first-person plural", 

4889 "siz (you were)": "second-person plural", 

4890 "onlar (they were)": "third-person plural", 

4891 "ben (if I)": "first-person singular", 

4892 "sen (if you)": "second-person singular", 

4893 "o (if he/she/it)": "third-person singular", 

4894 "biz (if we)": "first-person plural", 

4895 "siz (if you)": "second-person plural", 

4896 "onlar (if they)": "third-person plural", 

4897 "positive, declarative": "", 

4898 "positive, interrogative": "interrogative", 

4899 "negative, declarative": "negative", 

4900 "negative, interrogative": "negative interrogative", 

4901 # a راتلل/Pashto 

4902 "زۀ": "first-person singular", 

4903 "تۀ": { 

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

4905 "then": "second-person singular masculine", 

4906 "else": { 

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

4908 "then": "second-person singular feminine", 

4909 "else": "second-person singular", 

4910 }, 

4911 }, 

4912 "دی / هغه": "third-person singular masculine", 

4913 "دا / هغه": "third-person singular feminine", 

4914 "موږ": "first-person plural", 

4915 "تاسې": "second-person plural", 

4916 "دوی / هغوی": "third-person plural", 

4917 "present imperfective": "present imperfective", 

4918 "present perfective": "present perfective", 

4919 "تاسو": "second-person plural", 

4920 # This specific form seems like the addition of someone later in a 

4921 # new part of the table, it's a Northern Pashto variant, so someone 

4922 # might change it later, unless تاسو is part of the "command" 

4923 # paradigm in general. 

4924 # a ہاوُن/Kashmiri 

4925 "Feminine plural": "feminine plural", 

4926 "Completed": "completive", 

4927 "بہٕ": "first-person singular", 

4928 "ژٕ": "second-person singular", 

4929 "سُہ, سۄ": "third-person singular", 

4930 "أسؠ": "first-person plural", 

4931 "تۄہؠ, تۆہؠ": "second-person plural", 

4932 "تِم, تِمہٕ": "third-person plural", 

4933 "Nominative subject": "with-nominative", 

4934 "Ergative subject": "with-ergative", 

4935 "Simple present": "present", 

4936 "Past continuous": "past continuative", 

4937 "Future continuous": "future continuative", 

4938 "m or f": "masculine feminine", 

4939 "Simple future": "future", 

4940 # Ergatives 

4941 "مےٚ": "first-person singular", 

4942 "ژےٚ": "second-person singular", 

4943 "تٔمؠ, تَمہِ": "third-person singular", 

4944 "اَسہِ": "first-person plural", 

4945 "تۄہہِ": "second-person plural", 

4946 "تِمَو": "third-person plural", 

4947 "m sg": "masculine singular", 

4948 "m pl": "masculine plural", 

4949 "f sg": "feminine singular", 

4950 "f pl": "feminine plural", 

4951 "Obligatory": "obligative", 

4952 "Simple Conditional": "conditional", 

4953 "Conditional past continuous": "past continuative conditional", 

4954 "Conditional past perfect": "past perfect conditional", 

4955 # XXX return to Kashmiri after next wiktionary dump 

4956 # дрьзнѫти/Old Church Slavonic 

4957 "азъ (azŭ)": "first-person singular", 

4958 "тꙑ (ty)": "second-person singular", 

4959 "тъ (tŭ)": "third-person singular", 

4960 "вѣ (vě)": "first-person dual", 

4961 "ва (va)": "second-person dual", 

4962 "та (ta)": "third-person dual", 

4963 "мꙑ (my)": "first-person plural", 

4964 "вꙑ (vy)": "second-person plural", 

4965 "ти (ti)": "third-person plural", 

4966 # əhli-həsəd/Azerbaijani 

4967 "broken plural": "broken-form plural", 

4968 # bədən/Azerbaijani 

4969 "broken": { 

4970 "lang": "Azerbaijani", 

4971 # ~ "if": "plural", # doesn't work 

4972 "then": "broken-form plural", 

4973 }, 

4974 "sound": { 

4975 "lang": "Azerbaijani", 

4976 "then": "", 

4977 }, 

4978 # 𒉿𒀠𒄴𒍣/Hittite 

4979 "Noun": { 

4980 "lang": "Hittite", 

4981 "pos": "verb", 

4982 "then": "noun-from-verb", 

4983 }, 

4984 # ampesar/Ladino 

4985 "io / yo": { 

4986 "lang": "Ladino", 

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

4988 }, 

4989 "él / ella": { 

4990 "lang": "Ladino", 

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

4992 }, 

4993 "mosotros mosós": { 

4994 "lang": "Ladino", 

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

4996 }, 

4997 "vosotros vosós / vós": { 

4998 "lang": "Ladino", 

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

5000 }, 

5001 "ellos / ellas": { 

5002 "lang": "Ladino", 

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

5004 }, 

5005 # চাওয়া/Bengali 

5006 "progressive participle": "progressive participle", 

5007 "habitual participle": "habitual participle", 

5008 "conditional participle": "conditional participle", 

5009 "আমি (ami)": "first-person", 

5010 "আমরা (amra)": "first-person", 

5011 "তুই (tui)": "second-person impolite", 

5012 "তোরা (tora)": "second-person impolite", 

5013 "তুমি (tumi)": "second-person", 

5014 "তোমরা (tomra)": "second-person", 

5015 "এ (e), ও (o), সে (she)": "third-person", 

5016 "এরা (era), ওরা (ora), তারা (tara)": "third-person", 

5017 "আপনি (apni)": "second-person formal", 

5018 "আপনারা (apnara)": "second-person formal", 

5019 "ইনি (ini), উনি (uni), তিনি (tini)": "third-person formal", 

5020 "এঁরা (ẽra), ওঁরা (õra), তাঁরা (tãra)": "third-person formal", 

5021 # schlaa/Alemannic German 

5022 "1ˢᵗ person ich, i": "first-person singular", 

5023 "3ʳᵈ person er/si/es": "third-person singular", 

5024 "2ⁿᵈ person ir": "second-person plural", 

5025 # remove duplicates 

5026 # natüürlic/Alemannic German 

5027 "Strong inflection": "strong", 

5028 # d/Alemannic German 

5029 "Nominative/Accusative": "nominative accusative", 

5030 # ik/German Low German 

5031 "(Genitive)": "genitive rare", 

5032 "m f": "masculine feminine", # etwer/German 

5033 # фи/Romanian 

5034 "еу": { 

5035 "lang": "Romanian", 

5036 "pos": "verb", 

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

5038 }, 

5039 "ту": { 

5040 "lang": [ 

5041 "Tajik", 

5042 "Romanian", 

5043 ], 

5044 "pos": "verb", 

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

5046 }, 

5047 "ел/я": { 

5048 "lang": "Romanian", 

5049 "pos": "verb", 

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

5051 }, 

5052 "нои": { 

5053 "lang": "Romanian", 

5054 "pos": "verb", 

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

5056 }, 

5057 "вои": { 

5058 "lang": "Romanian", 

5059 "pos": "verb", 

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

5061 }, 

5062 "еи/еле": { 

5063 "lang": "Romanian", 

5064 "pos": "verb", 

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

5066 }, 

5067 "compound perfect": { # has mostly replaced the simple perfect 

5068 "lang": "Romanian", 

5069 "then": "perfect", 

5070 }, 

5071 # idealistesch/Luxembourgish 

5072 "attributive and/or after determiner": "attributive with-determiner", 

5073 "independent without determiner": "without-determiner", 

5074 "after any declined word": "with-head", 

5075 # hunn/Luxembourgish 

5076 "1ˢᵗ person ech": "first-person singular", 

5077 "2ⁿᵈ person du": "second-person singular", 

5078 "3ʳᵈ person hien/si/hatt": "third-person singular", 

5079 "1ˢᵗ person mir": "first-person plural", 

5080 "2ⁿᵈ person dir": "second-person plural", 

5081 "3ʳᵈ person si": "third-person plural", 

5082 "present simple": "present", 

5083 "future simple": "future", 

5084 # чӧсмасьны/Komi-Zyrian 

5085 "Direct past tense": "direct past", 

5086 "Reported past tense": "reported past", 

5087 "Imperfect participle": "imperfect participle", 

5088 "Caritive participle": "caritive participle", 

5089 # ~ "^(*)) The impersonal reported past is"\ 

5090 # ~ "expressed using the third singular form."\ 

5091 # ~ " ^(**)) The first person imperative is"\ 

5092 # ~ " expressed using the first person future"\ 

5093 # ~ " form. ^(***)) Any form ending in -ӧй"\ 

5094 # ~ " has an alternative form ending in -ӧ."\ 

5095 # ~ " ^(****)) The imperfect and perfect"\ 

5096 # ~ " participles have alternative forms"\ 

5097 # ~ " with a paragogic -а.": 

5098 "^(*)) 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? 

5099 # ми/Komi-Zyrian 

5100 "long dative": "dative", 

5101 "short dative": "dative", 

5102 # сы/Komi-zyrian 

5103 "short nominative": "nominative", 

5104 # ehun/Basque 

5105 "anim.": "animate", 

5106 "inanim.": "inanimate", 

5107 # erakutsi/Basque 

5108 "NORK": { 

5109 "lang": "Basque", 

5110 "then": "ergative", 

5111 }, 

5112 "NOR": { 

5113 "lang": "Basque", 

5114 "then": "absolutive", 

5115 }, 

5116 "NORI": { 

5117 "lang": "Basque", 

5118 "then": "dative", 

5119 }, 

5120 "nik": { 

5121 "lang": "Basque", 

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

5123 }, 

5124 "hik": { 

5125 "lang": "Basque", 

5126 "then": "second-person singular informal", 

5127 }, 

5128 "hark": { 

5129 "lang": "Basque", 

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

5131 }, 

5132 "guk": { 

5133 "lang": "Basque", 

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

5135 }, 

5136 "zuk": { 

5137 "lang": "Basque", 

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

5139 }, 

5140 "zuek": { 

5141 "lang": "Basque", 

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

5143 }, 

5144 "haiek": { 

5145 "lang": "Basque", 

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

5147 }, 

5148 "hura": { 

5149 "lang": "Basque", 

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

5151 }, 

5152 "niri": { 

5153 "lang": "Basque", 

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

5155 }, 

5156 "hiri": { 

5157 "lang": "Basque", 

5158 "then": "second-person singular informal", 

5159 }, 

5160 "hari": { 

5161 "lang": "Basque", 

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

5163 }, 

5164 "guri": { 

5165 "lang": "Basque", 

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

5167 }, 

5168 "zuri": { 

5169 "lang": "Basque", 

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

5171 }, 

5172 "zuei": { 

5173 "lang": "Basque", 

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

5175 }, 

5176 "haiei": { 

5177 "lang": "Basque", 

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

5179 }, 

5180 "future cons.": "future consequential", 

5181 "past cons.": "past consequential", 

5182 "2nd sg inf": "second-person singular informal", 

5183 # ISP/Norwegian 

5184 "Bokmål m": { 

5185 "lang": "Norwegian Bokmål", 

5186 "then": "masculine", 

5187 "else": "masculine Bokmål", 

5188 }, 

5189 "Bokmål f": { 

5190 "lang": "Norwegian Bokmål", 

5191 "then": "feminine", 

5192 "else": "feminine Bokmål", 

5193 }, 

5194 "Bokmål c": { 

5195 "lang": "Norwegian Bokmål", 

5196 "then": "common-gender", 

5197 "else": "common-gender Bokmål", 

5198 }, 

5199 "Bokmål n": { 

5200 "lang": "Norwegian Bokmål", 

5201 "then": "neuter", 

5202 "else": "neuter Bokmål", 

5203 }, 

5204 "Bokmål": { 

5205 "lang": "Norwegian Bokmål", 

5206 "then": "", 

5207 "else": "Bokmål", 

5208 }, 

5209 "Nynorsk f": { 

5210 "lang": "Norwegian Nynorsk", 

5211 "then": "feminine", 

5212 "else": "feminine Nynorsk", 

5213 }, 

5214 "Nynorsk m": { 

5215 "lang": "Norwegian Nynorsk", 

5216 "then": "masculine", 

5217 "else": "masculine Nynorsk", 

5218 }, 

5219 "Nynorsk n": { 

5220 "lang": "Norwegian Nynorsk", 

5221 "then": "neuter", 

5222 "else": "neuter Nynorsk", 

5223 }, 

5224 "Nynorsk c": { 

5225 "lang": "Norwegian Nynorsk", 

5226 "then": "common-gender", 

5227 "else": "common-gender Nynorsk", 

5228 }, 

5229 "Nynorsk": { 

5230 "lang": "Norwegian Nynorsk", 

5231 "then": "", 

5232 "else": "Nynorsk", 

5233 }, 

5234 # του/Greek 

5235 "weak": "weak", 

5236 "strong": "strong", 

5237 "infinitive — present)": "present infinitive", # eh/Albanian 

5238 "infinitive — perfect)": "perfect infinitive", 

5239 "past perfect I": "past past-i perfect", 

5240 "past perfect II": "past past-ii perfect", 

5241 "future I": "future future-i", 

5242 "future II": "future future-ii", 

5243 "future perfect I": "future future-i perfect", 

5244 "future perfect II": "future future-ii perfect", 

5245 "ato (3rd person feminine plural)": "third-person feminine plural", # ato/Albanian 

5246 "ai (3rd person masculine singular)": "third-person masculine singular", # ai 

5247 "ti (2nd person singular)": "second-person singular", # ti 

5248 "ata (3rd person masculine plural)": "third-person masculine plural", # ata 

5249 "ajo (3rd person feminine singular)": " third-person feminine singular", # ajo 

5250 # Tagalog small verb tables, like magwahil/Tagalog 

5251 # need something to tag a td-cell with stuff like 

5252 # "actor" or "object" in it, or else it'll cause 

5253 # NO-TAGS. Unfortunately, only "actor" is tagged 

5254 # because "object" and others are parsed as headers. 

5255 # At least this way, there is no error message, but 

5256 # it is inconsistently applied. 

5257 # Using "focus": "detail", in valid_tags seems to 

5258 # do the trick and stop 'focus' from bleeding as it 

5259 # doesn't with "misc". 

5260 "Trigger": { 

5261 "lang": "Tagalog", 

5262 "then": "focus", 

5263 }, 

5264 # Arabic number paradigm markers decomposed after changes in the parser: 

5265 # a ـًى (-an) => ar-infl-an-maksura 

5266 # a ـًا (-an) => ar-infl-an-alef 

5267 "basic broken plural diptote": "broken-form plural diptote", 

5268 "basic broken plural triptote": "broken-form plural triptote", # a حجرة/Arabic 

5269 "basic collective triptote": "collective triptote", 

5270 "basic singular diptote": "singular diptote", 

5271 "basic singular triptote": "singular triptote", 

5272 "broken plural diptote in ـٍ (-in)": "broken-form plural diptote ar-infl-in", # a سحلية/Arabic 

5273 "broken plural in ـًى (-an)": "broken-form plural ar-infl-an-maksura", # a بلوة/Arabic 

5274 "broken plural invariable": "broken-form plural invariable", # a ضحية/Arabic 

5275 "broken plural triptote in ـَة (-a)": "broken-form plural triptote ar-infl-a", # a رصيد/Arabic 

5276 "collective invariable": "collective invariable", 

5277 "diptote triptote": [ 

5278 "diptote", 

5279 "triptote", 

5280 ], 

5281 "singular diptote in ـٍ (-in)": "singular diptote ar-infl-in", 

5282 "singular diptote in ـَاة (-āh)": "singular diptote ar-infl-ah", # a حماة/Arabic 

5283 "singular diptote in ـَة (-a)": "singular diptote ar-infl-a", # a أرمية/Arabic 

5284 "singular in ـًا (-an)": "singular ar-infl-an-alef", 

5285 "singular in ـًى (-an)": "singular ar-infl-an-maksura", # a مدى/Arabic 

5286 "singular invariable": "singular invariable", 

5287 "singular long construct": "singular long-construct", # a ذو الحجة/Arabic 

5288 "singular of irregular noun": "singular irregular", 

5289 "singular triptote in ـٍ (-in)": "singular triptote ar-infl-in", 

5290 "singular triptote in ـَاة (-āh)": "singular triptote ar-infl-ah", # a قناة السويس/Arabic 

5291 "singular triptote in ـَة (-a)": "singular triptote ar-infl-a", # a حاجة/Arabic 

5292 "singulative triptote in ـَة (-a)": "singulative triptote ar-infl-a", # a جثجاث/Arabic 

5293 "sound feminine paucal": "sound-form feminine paucal", 

5294 "sound feminine plural": "sound-form feminine plural", 

5295 "sound masculine plural": "sound-form masculine plural", 

5296 "sound masculine paucal": "sound-form masculine paucal", 

5297 "basic broken paucal triptote": "broken-form paucal triptote", 

5298 "sound plural in ـَوْنَ (-awna)": "sound-form plural ar-infl-awna", 

5299 "broken plural triptote in ـَاة (-āh)": "broken-form plural triptote ar-infl-ah", 

5300 "basic collective diptote": "collective diptote", 

5301 "basic singulative triptote": "singulative triptote", 

5302 "basic singulative diptote": "singulative diptote", 

5303 "singulative triptote in ـَاة (-āh)": "singulative triptote ar-infl-ah", 

5304 "collective triptote in ـَة (-a)": "collective triptote ar-infl-a", 

5305 "collective in ـًا (-an)": "collective ar-infl-an-alef", 

5306 "broken plural triptote in ـٍ (-in)": "broken-form plural triptote ar-infl-in", 

5307 "broken plural in ـًا (-an)": "broken-form plural ar-infl-an-alef", 

5308 "broken plural in ـًى (-an)‎": "broken-form plural ar-infl-an-maksura", 

5309 "plural of irregular noun": "plural irregular", 

5310 "collective in ـًى (-an)": "collective ar-infl-an-maksura", 

5311 "broken paucal triptote in ـَة (-a)": "broken-form paucal triptote ar-infl-a", 

5312 "singular of irregular pronoun": "singular irregular pronoun", 

5313 "basic broken paucal diptote": "broken-form paucal diptote", 

5314 # teie/Estonian 

5315 "Partitive": "partitive", 

5316 "Inessive": "inessive", 

5317 "Elative": "elative", 

5318 "Allative": "allative", 

5319 "Adessive": "adessive", 

5320 "Translative": "translative", 

5321 "Essive": "essive", 

5322 "Abessive": "abessive", 

5323 "Comitative": "comitative", 

5324 # ащема/Moksha 

5325 "one possession": "possessive possessed-single", 

5326 "one or multiple possessions": "possessive possessed-single possessed-many", 

5327 # XXX the big headers don't express 

5328 "Participles➤": "participle", # άρχω/Greek 

5329 "Active Present ➤": "present", 

5330 "Passive Present ➤": "passive present", 

5331 # 알리다/Korean 

5332 "Formal non-polite": "formal", 

5333 "Informal non-polite": "informal", 

5334 "Informal polite": "informal polite", 

5335 "Formal polite": "formal polite", 

5336 "Middle/Passive": "middle-voice passive", # पिबति/Sanskrit 

5337 "Singular base form": "singular base-form", # a ܒܪܘܢܐ/Assyrian Neo-Aramaic 

5338 "Plural base form": "plural base-form", 

5339 "substantive": { 

5340 "lang": [ 

5341 "Chechen", 

5342 "Ingush", 

5343 ], 

5344 "pos": "noun", 

5345 "then": "substantive-case", 

5346 }, 

5347 "similitude": "similitude", # a ئانا/Uyghur 

5348 "equivalence": "equal", 

5349 "Declension of locative-qualitative form": "locative-qualitative", 

5350 "representative": "representative", 

5351 "Declension of representative form": "representative", 

5352 # When copy-pasting headers from Wiktionary with a browser, 

5353 # remember to replace the "downgraded"-superscripts into 

5354 # unicode superscript characters here, if the copy-pasted 

5355 # content doesn't have super-scripts. Things with <sup></sup> 

5356 # get automatically translated into those in clean.py, and 

5357 # these entries have to match them. If copy-pasting from 

5358 # error messages in the shell, you get the 'correct' characters. 

5359 "2ⁿᵈperson singular ordinary": { 

5360 "lang": "Uyghur", 

5361 "pos": "noun", 

5362 "then": "second-person singular possessive", 

5363 }, 

5364 "2ⁿᵈperson plural ordinary": { 

5365 "lang": "Uyghur", 

5366 "pos": "noun", 

5367 "then": "second-person plural possessive", 

5368 }, 

5369 "2ⁿᵈperson singular refined": { 

5370 "lang": "Uyghur", 

5371 "pos": "noun", 

5372 "then": "second-person singular formal possessive", 

5373 }, 

5374 "2ⁿᵈperson plural refined": { 

5375 "lang": "Uyghur", 

5376 "pos": "noun", 

5377 "then": "second-person plural formal possessive", 

5378 }, 

5379 "2ⁿᵈperson singular & plural respectful (your)": { 

5380 "lang": "Uyghur", 

5381 "pos": "noun", 

5382 "then": "second-person polite possessive", 

5383 }, 

5384 "1ˢᵗ person plural": { 

5385 "lang": "Uyghur", 

5386 "pos": "noun", 

5387 "then": "first-person plural possessive", 

5388 "else": "first-person plural", 

5389 }, 

5390 "3ʳᵈ person (his, her, its, their)": { 

5391 "lang": "Uyghur", 

5392 "pos": "noun", 

5393 "then": "third-person singular possessive", 

5394 }, 

5395 "1ˢᵗ person singular": { 

5396 "lang": "Uyghur", 

5397 "pos": "noun", 

5398 "then": "first-person singular possessive", 

5399 "else": "first-person singular", 

5400 }, 

5401 # -raihu/Kikuyu 

5402 # Class [singular class], Class [plural class] 

5403 "Class 1, Class 2": { 

5404 "lang": "Kikuyu", 

5405 "if": "singular", 

5406 "then": "class-1", 

5407 "else": "class-2", 

5408 }, 

5409 "Class 3, Class 4": { 

5410 "lang": "Kikuyu", 

5411 "if": "singular", 

5412 "then": "class-3", 

5413 "else": "class-4", 

5414 }, 

5415 "Class 5, Class 6": { 

5416 "lang": "Kikuyu", 

5417 "if": "singular", 

5418 "then": "class-5", 

5419 "else": "class-6", 

5420 }, 

5421 "Class 7, Class 8": { 

5422 "lang": "Kikuyu", 

5423 "if": "singular", 

5424 "then": "class-7", 

5425 "else": "class-8", 

5426 }, 

5427 "Class 9, Class 10": { 

5428 "lang": "Kikuyu", 

5429 "if": "singular", 

5430 "then": "class-9", 

5431 "else": "class-10", 

5432 }, 

5433 "Class 11, Class 10": { 

5434 "lang": "Kikuyu", 

5435 "if": "singular", 

5436 "then": "class-11", 

5437 "else": "class-10", 

5438 }, 

5439 "Class 12, Class 13": { 

5440 "lang": "Kikuyu", 

5441 "if": "singular", 

5442 "then": "class-12", 

5443 "else": "class-13", 

5444 }, 

5445 "Class 14, Class 6": { 

5446 "lang": "Kikuyu", 

5447 "if": "singular", 

5448 "then": "class-14", 

5449 "else": "class-6", 

5450 }, 

5451 "Class 15, Class 6": { 

5452 "lang": "Kikuyu", 

5453 "if": "singular", 

5454 "then": "class-15", 

5455 "else": "class-6", 

5456 }, 

5457 "2nd person f": "second-person feminine", 

5458 "ја": { # THIS IS CYRILLIC!! Not Latin! подразумевати/Serbo-Croatian 

5459 "lang": "Serbo-Croatian", 

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

5461 }, 

5462 "он / она / оно": { 

5463 "lang": "Serbo-Croatian", 

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

5465 }, 

5466 "ми": { 

5467 "lang": "Serbo-Croatian", 

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

5469 }, 

5470 "ви": { 

5471 "lang": "Serbo-Croatian", 

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

5473 }, 

5474 "они / оне / она": { 

5475 "lang": "Serbo-Croatian", 

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

5477 }, 

5478 "conditional¹^, (kushtore)": { # kushtoj/Albanian 

5479 "lang": "Albanian", 

5480 "then": "conditional", 

5481 }, 

5482 "personal non-finite": { # prosternarse/Spanish 

5483 "lang": "Spanish", 

5484 "then": "", 

5485 }, 

5486 "1ˢᵗ person singular (“my”)": "first-person singular possessive", # a احساس/Persian 

5487 "3ʳᵈ person singular (“his, her, its”)": "third-person singular possessive", 

5488 "1ˢᵗ plural (“our”)": "first-person plural possessive", 

5489 "2ⁿᵈ plural (“your”)": "second-person plural possessive", 

5490 "3ʳᵈ plural (“their”)": "third-person plural possessive", 

5491 "with possessive pronouns": "possessed-form", # a ܡܘܙܐ/Assyrian Neo-Aramaic 

5492 # Talat/Turkish, possessive tables for names 

5493 "benim (my)": "first-person singular", 

5494 "senin (your)": "second-person singular", 

5495 "onun (his/her/its)": "third-person singular", 

5496 "bizim (our)": "first-person plural", 

5497 "sizin (your)": "second-person plural", 

5498 "onların (their)": "third-person plural", 

5499 # Alpler/Turkish 

5500 "singular, uncountable (tekil, sayılamaz)": "singular uncountable", 

5501 # अकड़ना/Hindi 

5502 "1ˢᵗ मैं": "first-person singular", 

5503 "2ⁿᵈ तू": "second-person singular", 

5504 "3ʳᵈ यह/वह, ये/वो": "third-person singular", 

5505 "2ⁿᵈ तुम": "second-person plural", 

5506 "1ˢᵗ हम": "first-person plural", 

5507 "3ʳᵈ, 2ⁿᵈ ये/वो/वे, आप": ["third-person plural", "second-person formal"], 

5508 # -ra/Basque 

5509 "proximal plural": "proximal plural", 

5510 # a שלאָפֿן/Yiddish 

5511 # These tables are unparseable due to lack of headers, really 

5512 # ~ "Composed forms": "", 

5513 # kalium/Limburgish 

5514 "Root singular": "singular", 

5515 "Root plural": "plural", 

5516 "Diminutive singular": "diminutive singular", 

5517 "Diminutive plural": "diminutive plural", 

5518 # tèlle/Limburgish 

5519 "adverb": "adverb", 

5520 "number & tense": "*", 

5521 "verb-second order": "v2", 

5522 "verb-first order": "v1", 

5523 "first person plural": "first-person plural", 

5524 "second person plural": "second-person plural", 

5525 "third person plural": "third-person plural", 

5526 "other forms": "", 

5527 "imperative singular impolite": "imperative singular impolite", 

5528 "imperative singular polite": "imperative singular polite", 

5529 "imperative dual": "imperative dual", 

5530 # beer/Limburgish 

5531 "Diminutive": "diminutive", 

5532 "Mutation": "mutation", 

5533 "Diminutive Mutation": "diminutive mutation", 

5534 # сядоце/Moksha 

5535 "мон (mon)": "first-person singular", 

5536 "минь (minʹ)": "first-person plural", 

5537 "тон (ton)": "second-person singular", 

5538 "тинь (tinʹ)": "second-person plural", 

5539 "сон (son)": "third-person singular", 

5540 "синь (sinʹ)": "third-person plural", 

5541 # улемс/Moksha 

5542 "1ˢᵗ singular — мон (mon)": "first-person singular", 

5543 "2ⁿᵈ singular — тон (ton)": "second-person singular", 

5544 "3ʳᵈ singular — сон (son)": "third-person singular", 

5545 "1ˢᵗ plural — минь (minʹ)": "first-person plural", 

5546 "2ⁿᵈ plural — тинь (tinʹ)": "second-person plural", 

5547 "3ʳᵈ plural — синь (sinʹ)": "third-person plural", 

5548 "Past I": "past-i past", 

5549 "Compound future": "multiword-construction future", 

5550 "agentive / pres. act. part.": "present active participle agentive", 

5551 "present passive participle": "present passive participle", 

5552 # содамс/Moksha 

5553 "Past II / subjunctive": "past-ii past subjunctive", 

5554 "Subjunctive of conditional": "subjunctive conditional", 

5555 "ma-infinitive / verbal noun": "noun-from-verb infinitive infinitive-ma", 

5556 "mda-infinitive": "infinitive infinitive-mda", 

5557 "gerund negative": "negative gerund", 

5558 "1ˢᵗ person singular object — монь (monʹ)": "object-first-person object-singular", 

5559 "2ⁿᵈ person singular object — тонь (tonʹ)": "object-second-person object-singular", 

5560 "3ʳᵈ person singular object — сонь (sonʹ)": "object-third-person object-singular", 

5561 "1ˢᵗ person plural object — минь (minʹ)": "object-first-person object-plural", 

5562 "2ⁿᵈ person plural object — тинь (tinʹ)": "object-second-person object-plural", 

5563 "3ʳᵈ person plural object — синь (sinʹ)": "object-third-person object-plural", 

5564 # ਪਾਉਣਾ/(Punjabi 

5565 "Singular/Plural": "singular plural", 

5566 "Plural/Formal": "", 

5567 "1ˢᵗ ਮੈਂ": "first-person singular", 

5568 "2ⁿᵈ intimate ਤੂੰ": "second-person singular intimate", 

5569 "3ʳᵈ ਇਹ/ਉਹ": "third-person singular", 

5570 "2ⁿᵈ familiar ਤੁਸੀਂ": "second-person familiar", 

5571 "1ˢᵗ ਅਸੀਂ": "third-person plural", 

5572 "2ⁿᵈ formal, 3ʳᵈ ਇਹ/ਉਹ/ਆਪ": [ 

5573 "second-person formal", 

5574 "third-person plural", 

5575 ], 

5576 "REG": "", 

5577 "POL": "polite", 

5578 # оз/Komi-Zyrian 

5579 "Non-Past tense": "non-past", 

5580 # hāi7Namuyi 

5581 "Habitual/Future": "habitual future", 

5582 "Prospective": "prospective", 

5583 "Ingressive": "ingressive", 

5584 "Experiential": "experiential", 

5585 "Premeditated": "premeditated", 

5586 # nyanyi/Warlpiri 

5587 "andative": "andative", 

5588 "nomic": "nomic", 

5589 # être/Lorrain 

5590 "je (j')": { 

5591 "lang": "Lorrain", 

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

5593 }, 

5594 "el, elle": { 

5595 "lang": "Lorrain", 

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

5597 }, 

5598 "el, elles": { 

5599 "lang": "Lorrain", 

5600 "then": "third-person plural", 

5601 }, 

5602 "distant imperfect (from Latin er-)": "imperfect distant-imperfect-er", 

5603 "distant imperfect (from Latin stab-)": "imperfect distant-imperfect-stab", 

5604 "near imperfect": "imperfect near-imperfect", 

5605 "que je / qu'i": "first-person singular", 

5606 "qu'â (al), qu'ale": "third-person singular", 

5607 "qu'âs, qu'ales": "third-person plural", 

5608 "ham": { 

5609 "lang": "Fiji Hindi", 

5610 "then": "first-person singular", 

5611 }, 

5612 "ham log": { 

5613 "lang": "Fiji Hindi", 

5614 "then": "first-person plural", 

5615 }, 

5616 "tum": { 

5617 "lang": "Fiji Hindi", 

5618 "then": "second-person singular", 

5619 }, 

5620 "tum log": { 

5621 "lang": "Fiji Hindi", 

5622 "then": "second-person plural", 

5623 }, 

5624 "uu": { 

5625 "lang": "Fiji Hindi", 

5626 "then": "third-person singular", 

5627 }, 

5628 "uu log": { 

5629 "lang": "Fiji Hindi", 

5630 "then": "third-person plural", 

5631 }, 

5632 # ndu/South Slavey 

5633 "areal": { 

5634 "lang": "South Slavey", 

5635 "then": "locative", 

5636 }, 

5637 # ave/Tolai 

5638 "1st person exclusive": "first-person exclusive", 

5639 "1st person inclusive": "first-person inclusive", 

5640 # mahkwa/Fox 

5641 "Singular Noun": "singular", 

5642 "Plural Noun": "plural", 

5643 "Proximate": "proximative", 

5644 "Obviative": "obviative", 

5645 "Local": "locative", 

5646 "Singular Possessive": "possessed-single", 

5647 "Plural Possessive": "possessed-many", 

5648 "First and second person": "first-person second-person", 

5649 "perlative": "perlative", # arnaq/Yup'ik 

5650 # tōku/Maori 

5651 "singular object": { 

5652 "lang": "Maori", 

5653 "then": "possessed-single", 

5654 }, 

5655 "dual/plural object": { 

5656 "lang": "Maori", 

5657 "then": "possessed-many", 

5658 }, 

5659 "A category": { 

5660 "lang": "Maori", 

5661 "then": "alienable", 

5662 }, 

5663 "O category": { 

5664 "lang": "Maori", 

5665 "then": "inalienable", 

5666 }, 

5667 "Neutral": { 

5668 "lang": "Maori", 

5669 "then": "", 

5670 }, 

5671 "dual subject": "dual", 

5672 "1st person, inclusive": "first-person inclusive", 

5673 "1st person, exclusive": "first-person exclusive", 

5674 "comitative-instrumental": "comitative instrumental", # тан/Mansi 

5675 # пыг/Mansi 

5676 "double possession": "possessed-two", 

5677 "multiple possession": "possessed-many", 

5678 "3d person dual": "third-person dual", 

5679 "3d person plural": "third-person plural", 

5680 # Tibetan romanizations 

5681 "Wylie": "romanization", 

5682 "Basic": { 

5683 "lang": "Udmurt", 

5684 "then": "", 

5685 }, 

5686 "Temporal": { 

5687 "lang": "Udmurt", 

5688 "then": "gerund-temporal gerund", 

5689 }, 

5690 "Fourth": { 

5691 "lang": "Udmurt", 

5692 "then": "gerund-iv gerund", 

5693 }, 

5694 "Deverbal": { 

5695 "lang": "Udmurt", 

5696 "then": "noun-from-verb", 

5697 }, 

5698 # тос/Mariupol Greek 

5699 "3rd n": "third-person neuter", 

5700 "clitic": "clitic", 

5701 # likkõ/Livonian 

5702 "sa": { 

5703 "lang": "Livonian", 

5704 "then": "second-person singular", 

5705 }, 

5706 "ta": "third-person singular", 

5707 "mēg": "first-person plural", 

5708 "tēg": "second-person plural", 

5709 "indicative negative": "negative indicative", 

5710 "(sa)": "second-person singular", 

5711 "(mēg)": "first-person plural", 

5712 "(tēg)": "second-person plural", 

5713 "imperative negative": "negative imperative", 

5714 "conditional negative": "negative conditional", 

5715 "jussive negative": "negative jussive", 

5716 "debitive": "debitive", 

5717 "minnõn": "first-person singular", 

5718 "sinnõn": "second-person singular", 

5719 "tämmõn": "third-person singular", 

5720 "mäddõn": "first-person plural", 

5721 "täddõn": "second-person plural", 

5722 "näntõn": "third-person plural", 

5723 "supine abessive": "supine abessive", 

5724 # நத்தை/Tamil 

5725 "Genitive 1": "genitive-i genitive", 

5726 "Genitive 2": "genitive-ii genitive", 

5727 "Locative 1": "locative-i locative", 

5728 "Locative 2": "locative-ii locative", 

5729 "Sociative 1": "sociative-i sociative", 

5730 "Sociative 2": "sociative-ii sociative", 

5731 # பிடி/Tamil 

5732 "singular affective": "affective singular", 

5733 "third masculine": "third-person masculine", 

5734 "third feminine": "third-person feminine", 

5735 "third honorific": "third-person honorific", 

5736 "third neuter": "third-person neuter", 

5737 "நான்": "first-person singular", 

5738 "நீ": "second-person singular", 

5739 "அவன்": "third-person singular masculine", 

5740 "அவள்": "third-person singular feminine", 

5741 "அவர்": "third-person singular honorific", 

5742 "அது": "third-person singular neuter", 

5743 "future negative": "negative future", 

5744 "plural affective": "affective plural", 

5745 "third epicene": "third-person epicene", 

5746 "நாம் (inclusive) நாங்கள் (exclusive)": [ 

5747 "first-person plural inclusive", 

5748 "first-person plural exclusive", 

5749 ], 

5750 "நீங்கள்": "second-person plural", 

5751 "அவர்கள்": "third-person plural epicene", 

5752 "அவை": "third-person plural neuter", 

5753 "effective": "effective", 

5754 "casual conditional": "conditional informal", 

5755 "honorific": "honorific", 

5756 "epicene": "epicene", 

5757 "Form I": { 

5758 "lang": "Tamil", 

5759 "then": "gerund-i gerund", 

5760 }, 

5761 "Form II": { 

5762 "lang": "Tamil", 

5763 "then": "gerund-ii gerund", 

5764 }, 

5765 "Form III": { 

5766 "lang": "Tamil", 

5767 "then": "gerund-iii gerund", 

5768 }, 

5769 # bolmak/Turkmen 

5770 "men": "first-person singular", 

5771 "ol": "third-person singular", 

5772 "olar": "third-person plural", 

5773 "proximal": "proximal", 

5774 "distal": "distal", 

5775 "unwitnessed": "unwitnessed", 

5776 "obligatory": "obligative", 

5777 # kanákta/Mohawk 

5778 "Sing.": "singular", 

5779 "Plur.": "plural", 

5780 # እግር/Amharic 

5781 "Definite subject": "definite nominative", 

5782 "Definite object": "definite accusative", 

5783 "General object": "accusative", 

5784 # sugu/Veps 

5785 "approximative I": "approximative-i approximative", 

5786 "approximative II": "approximative-ii approximative", 

5787 "terminative I": "terminative-i terminative", 

5788 "terminative II": "terminative-ii terminative", 

5789 "terminative III": "terminative-iii terminative", 

5790 "additive I": "additive-i additive", 

5791 "additive II": "additive-ii additive", 

5792 # duhtadit/Northern Sami 

5793 "action inessive": "noun-from-verb inessive", 

5794 "action elative": "noun-from-verb elative", 

5795 "agent participle": "agent participle", 

5796 "action comitative": "noun-from-verb comitative", 

5797 "conditional 1": "conditional-i conditional", 

5798 "conditional 2": "conditional-ii conditional", 

5799 # 능숙하다/Korean 

5800 "Plain": { 

5801 "lang": "Korean", 

5802 "then": "", 

5803 }, 

5804 # stupid Interlingua hand-crafted minimal tables, deber/Interlingua 

5805 "Present:": "present", 

5806 "Past:": "past", 

5807 "Future:": "future", 

5808 "Conditional:": "conditional", 

5809 "Present participle:": "present participle", 

5810 "Past participle:": "past participle", 

5811 "Imperative:": "imperative", 

5812 # уө/Southern Yukaghir 

5813 "short plural": "plural short-form", 

5814 "long plural": "plural long-form", 

5815 # aganchaka/Garo 

5816 "Declarative": "", 

5817 '"not yet"': "not-yet-form", 

5818 '"probably"': "potential", 

5819 "Intentional": "intentive", 

5820 "Change of state": "perfect", 

5821 "Formal imperative": "imperative formal", 

5822 # ಹುಟ್ಟು/Kannada 

5823 "adverbial participles": "adverbial participle", 

5824 "adjectival participles": "adjectival participle", 

5825 "other nonfinite forms": "", 

5826 "volitive forms": "volitive", 

5827 "present adverbial participle": "present adverbial participle", 

5828 "nonpast adjectival participle": "non-past adjectival participle", 

5829 "suihortative form": "suihortative", 

5830 "past adverbial participle": "past adverbial participle", 

5831 "past adjectival participle": "past adjectival participle", 

5832 "dative infinitive": "infinitive dative", 

5833 "cohortative form I": "cohortative-i cohortative", 

5834 "negative adverbial participle": "negative adverbial participle", 

5835 "negative adjectival participle": "negative adjectival participle", 

5836 "conditional form": "conditional", 

5837 "cohortative form II": "cohortative-ii cohortative", 

5838 "tense/modality": "", 

5839 "ನಾನು": "first-person singular", 

5840 "ನೀನು": "second-person singular", 

5841 "ಅವನು": "third-person masculine singular", 

5842 "ಅವಳು": "third-person feminine singular", 

5843 "ಅದು": "third-person neuter singular", 

5844 "ನಾವು": "first-person plural", 

5845 "ನೀವು": "second-person plural", 

5846 "ಅವರು": "third-person epicene plural", 

5847 "ಅವು": "third-person neuter plural", 

5848 # ಅದು/Kannada 

5849 '"Objective Singular"': "singular objective", 

5850 "Epicene Plural": "epicene plural", 

5851 # цӏехуьл/Lezgi 

5852 "adelative": "adelative", 

5853 "addirective": "addirective", 

5854 "postessive": "postessive", 

5855 "postelative": "postelative", 

5856 "postdirective": "postdirective", 

5857 "subessive": "subessive", 

5858 "subelative": "subelative", 

5859 "subdirective": "subdirective", 

5860 "inelative": "inelative", 

5861 "superelative": "superelative", 

5862 "superdirective": "superdirective", 

5863 # देर/Konkani 

5864 "accusative/dative": "accusative dative", 

5865 # भेड्डो/Konkani 

5866 "masc. singular": "masculine singular", 

5867 "fem. singular": "feminine singular", 

5868 "masc. plural": "masculine plural", 

5869 "fem. plural": "feminine plural", 

5870 # zeuen burua/Basque 

5871 "elkar": "reciprocal", 

5872 "noren burua": "reflexive", 

5873 # ezer/Basque 

5874 "nor": "interrogative pronoun personal", 

5875 "zer": "interrogative pronoun", 

5876 "zein": "interrogative pronoun", 

5877 "zenbat": "interrogative quantitative", 

5878 # batzuk/Basque 

5879 "bat": "pronoun", 

5880 "bakoitz": "pronoun", 

5881 # veda/Scanian 

5882 "jağ": "first-person singular", 

5883 "dú": "second-person singular", 

5884 "hanð": "third-person singular", 

5885 "ví": "first-person plural", 

5886 "í": "second-person plural", 

5887 "dé": "third-person plural", 

5888 "present imperative": "present imperative", 

5889 # a ګړندی/Pashto 

5890 "oblique I": "oblique oblique-i", 

5891 "oblique II (dialectal)": "oblique oblique-ii dialectal", 

5892 # a پخول/Pashto 

5893 "Present Imperfective Subject Agreement": "present imperfective", 

5894 "Past Imperfective Object Agreement": "past imperfective object-concord dummy-object-concord", 

5895 "OBJECT": "", 

5896 "Past Perfective": { 

5897 "default": "past perfective", 

5898 "lang": "Pashto", 

5899 "then": "past perfective object-concord dummy-object-concord", 

5900 }, 

5901 # ní/Old Irish 

5902 "Animate": "animate", 

5903 # just in case 

5904 "Inanimate": "inanimate", 

5905 # τα/Greek 

5906 "1-s": "first-person singular", 

5907 "2-s": "second-person singular", 

5908 "3-ms": "third-person masculine singular", 

5909 "3-fs": "third-person feminine singular", 

5910 "3-ns": "third-person neuter singular", 

5911 "1-p": "first-person plural", 

5912 "2-p": "second-person plural", 

5913 "3-mp": "third-person masculine plural", 

5914 "3-fp": "third-person feminine plural", 

5915 "3-np": "third-person neuter plural", 

5916 # angu/Swahili 

5917 "Noun class": { 

5918 "lang": "Swahili", 

5919 "then": "", 

5920 }, 

5921 "M-wa class": { 

5922 "lang": "Swahili", 

5923 "then": "class-1 class-2", 

5924 }, 

5925 "M-mi class": { 

5926 "lang": "Swahili", 

5927 "then": "class-3 class-4", 

5928 }, 

5929 "Ma class": { 

5930 "lang": "Swahili", 

5931 "then": "class-5 class-6", 

5932 }, 

5933 "Ki-vi class": { 

5934 "lang": "Swahili", 

5935 "then": "class-7 class-8", 

5936 }, 

5937 "N class": { 

5938 "lang": "Swahili", 

5939 "then": "class-9 class-10", 

5940 }, 

5941 "U class": { 

5942 "lang": "Swahili", 

5943 "then": "class-11 class-12", 

5944 }, 

5945 "Pa class": { 

5946 "lang": "Swahili", 

5947 "then": "class-16", 

5948 }, 

5949 "Ku class": { 

5950 "lang": "Swahili", 

5951 "then": "class-15", 

5952 }, 

5953 "Mu class": { 

5954 "lang": "Swahili", 

5955 "then": "class-18", 

5956 }, 

5957 "m-wa": { 

5958 "lang": "Swahili", 

5959 "then": "class-1 class-2", 

5960 }, 

5961 "m-mi": { 

5962 "lang": "Swahili", 

5963 "then": "class-3 class-4", 

5964 }, 

5965 "ma": { 

5966 "lang": "Swahili", 

5967 "then": "class-5 class-6", 

5968 "else": { 

5969 "lang": "Livonian", 

5970 "then": "first-person singular", 

5971 }, 

5972 }, 

5973 "ki-vi": { 

5974 "lang": "Swahili", 

5975 "then": "class-7 class-8", 

5976 }, 

5977 "n": { 

5978 "default": "neuter", 

5979 "lang": "Swahili", 

5980 "then": "class-9 class-10", 

5981 }, 

5982 "u": { 

5983 "lang": "Swahili", 

5984 "then": "class-11 class-12", 

5985 }, 

5986 "pa": { 

5987 "lang": "Swahili", 

5988 "then": "class-16", 

5989 }, 

5990 "ku": { 

5991 "lang": "Swahili", 

5992 "then": "class-15", 

5993 }, 

5994 "mu": { 

5995 "lang": "Swahili", 

5996 "then": "class-18", 

5997 }, 

5998 "other classes": "", 

5999 "Consecutive subjunctive": "consecutive subjunctive", 

6000 # taka/Swahili sw-conj 

6001 "Polarity": "", 

6002 "Persons": "", 

6003 "Persons / Classes": "", 

6004 "Classes": "", 

6005 "3rd / M-wa": { 

6006 "lang": "Swahili", 

6007 "then": "third-person", 

6008 }, 

6009 "M-mi": "", 

6010 "Ma": "", 

6011 "Ki-vi": "", 

6012 "N": "", 

6013 "U": "", 

6014 "Ku": "", 

6015 "Pa": "", 

6016 "Mu": "", 

6017 "Sg.": { 

6018 "default": "singular", 

6019 "lang": "Swahili", 

6020 "then": "singular", 

6021 }, 

6022 "Pl.": { 

6023 "default": "plural", 

6024 "lang": "Swahili", 

6025 "then": "plural", 

6026 }, 

6027 "Sg. / 1": { 

6028 "default": "singular class-1", 

6029 "lang": "Swahili", 

6030 "then": "singular class-1", 

6031 }, 

6032 "Pl. / 2": { 

6033 "default": "plural class-2", 

6034 "lang": "Swahili", 

6035 "then": "plural class-2", 

6036 }, 

6037 "3": { 

6038 "default": "third-person", 

6039 "lang": "Swahili", 

6040 "then": "class-3", 

6041 "else": { 

6042 "lang": head_final_numeric_langs, 

6043 "then": "class-3", 

6044 }, 

6045 }, 

6046 "4": { 

6047 "default": "class-4", 

6048 "lang": "Swahili", 

6049 "then": "class-4", 

6050 }, 

6051 "5": { 

6052 "default": "class-5", 

6053 "lang": "Swahili", 

6054 "then": "class-5", 

6055 }, 

6056 "6": { 

6057 "default": "class-6", 

6058 "lang": "Swahili", 

6059 "then": "class-6", 

6060 }, 

6061 "7": { 

6062 "default": "class-7", 

6063 "lang": "Swahili", 

6064 "then": "class-7", 

6065 }, 

6066 "8": { 

6067 "default": "class-8", 

6068 "lang": "Swahili", 

6069 "then": "class-8", 

6070 }, 

6071 "9": { 

6072 "default": "class-9", 

6073 "lang": "Swahili", 

6074 "then": "class-9", 

6075 }, 

6076 "10": { 

6077 "default": "class-10", 

6078 "lang": "Swahili", 

6079 "then": "class-10", 

6080 }, 

6081 "11 / 14": { 

6082 "default": "class-11 class-14", 

6083 "lang": "Swahili", 

6084 "then": "class-11 class-14", 

6085 }, 

6086 "15 / 17": { 

6087 "default": "class-15 class-17", 

6088 "lang": "Swahili", 

6089 "then": "class-15 class-17", 

6090 }, 

6091 "16": { 

6092 "default": "class-16", 

6093 "lang": "Swahili", 

6094 "then": "class-16", 

6095 }, 

6096 "18": { 

6097 "default": "class-18", 

6098 "lang": "Swahili", 

6099 "then": "class-18", 

6100 }, 

6101 "1s": { 

6102 "default": "first-person singular", 

6103 "if": "object-concord", 

6104 "then": "object-first-person object-singular", 

6105 "else": { 

6106 "lang": "Swahili", 

6107 "then": [ 

6108 "dummy-use-as-coltags first-person singular", 

6109 "dummy-use-as-rowtags object-first-person object-singular", 

6110 ], 

6111 }, 

6112 }, 

6113 "2s": { 

6114 "default": "second-person singular", 

6115 "if": "object-concord", 

6116 "then": "object-second-person object-singular", 

6117 "else": { 

6118 "lang": "Swahili", 

6119 "then": [ 

6120 "dummy-use-as-coltags second-person singular", 

6121 "dummy-use-as-rowtags object-second-person object-singular", 

6122 ], 

6123 }, 

6124 }, 

6125 "3s": { 

6126 "default": "third-person singular", 

6127 "if": "object-concord", 

6128 "then": "object-third-person object-singular", 

6129 "else": { 

6130 "lang": "Swahili", 

6131 "then": [ 

6132 "dummy-use-as-coltags third-person singular", 

6133 "dummy-use-as-rowtags object-third-person object-singular", 

6134 ], 

6135 }, 

6136 }, 

6137 "1p": { 

6138 "default": "first-person plural", 

6139 "if": "object-concord", 

6140 "then": "object-first-person object-plural", 

6141 "else": { 

6142 "lang": "Swahili", 

6143 "then": [ 

6144 "dummy-use-as-coltags first-person plural", 

6145 "dummy-use-as-rowtags object-first-person object-plural", 

6146 ], 

6147 }, 

6148 }, 

6149 "2p": { 

6150 "default": "second-person plural", 

6151 "if": "object-concord", 

6152 "then": "object-second-person object-plural", 

6153 "else": { 

6154 "lang": "Swahili", 

6155 "then": [ 

6156 "dummy-use-as-coltags second-person plural", 

6157 "dummy-use-as-rowtags object-second-person object-plural", 

6158 ], 

6159 }, 

6160 }, 

6161 "3p": { 

6162 "default": "third-person plural", 

6163 "if": "object-concord", 

6164 "then": "object-third-person object-plural", 

6165 "else": { 

6166 "lang": "Swahili", 

6167 "then": [ 

6168 "dummy-use-as-coltags third-person plural", 

6169 "dummy-use-as-rowtags object-third-person object-plural", 

6170 ], 

6171 }, 

6172 }, 

6173 "c1": { 

6174 "default": "class-1", 

6175 "if": "object-concord", 

6176 "then": "object-class-1", 

6177 "else": { 

6178 "lang": "Swahili", 

6179 "then": [ 

6180 "dummy-use-as-coltags class-1", 

6181 "dummy-use-as-rowtags object-class-1", 

6182 ], 

6183 }, 

6184 }, 

6185 "c2": { 

6186 "default": "class-2", 

6187 "if": "object-concord", 

6188 "then": "object-class-2", 

6189 "else": { 

6190 "lang": "Swahili", 

6191 "then": [ 

6192 "dummy-use-as-coltags class-2", 

6193 "dummy-use-as-rowtags object-class-2", 

6194 ], 

6195 }, 

6196 }, 

6197 "c3": { 

6198 "default": "class-3", 

6199 "if": "object-concord", 

6200 "then": "object-class-3", 

6201 "else": { 

6202 "lang": "Swahili", 

6203 "then": [ 

6204 "dummy-use-as-coltags class-3", 

6205 "dummy-use-as-rowtags object-class-3", 

6206 ], 

6207 }, 

6208 }, 

6209 "c4": { 

6210 "default": "class-4", 

6211 "if": "object-concord", 

6212 "then": "object-class-4", 

6213 "else": { 

6214 "lang": "Swahili", 

6215 "then": [ 

6216 "dummy-use-as-coltags class-4", 

6217 "dummy-use-as-rowtags object-class-4", 

6218 ], 

6219 }, 

6220 }, 

6221 "c5": { 

6222 "default": "class-5", 

6223 "if": "object-concord", 

6224 "then": "object-class-5", 

6225 "else": { 

6226 "lang": "Swahili", 

6227 "then": [ 

6228 "dummy-use-as-coltags class-5", 

6229 "dummy-use-as-rowtags object-class-5", 

6230 ], 

6231 }, 

6232 }, 

6233 "c6": { 

6234 "default": "class-6", 

6235 "if": "object-concord", 

6236 "then": "object-class-6", 

6237 "else": { 

6238 "lang": "Swahili", 

6239 "then": [ 

6240 "dummy-use-as-coltags class-6", 

6241 "dummy-use-as-rowtags object-class-6", 

6242 ], 

6243 }, 

6244 }, 

6245 "c7": { 

6246 "default": "class-7", 

6247 "if": "object-concord", 

6248 "then": "object-class-7", 

6249 "else": { 

6250 "lang": "Swahili", 

6251 "then": [ 

6252 "dummy-use-as-coltags class-7", 

6253 "dummy-use-as-rowtags object-class-7", 

6254 ], 

6255 }, 

6256 }, 

6257 "c8": { 

6258 "default": "class-8", 

6259 "if": "object-concord", 

6260 "then": "object-class-8", 

6261 "else": { 

6262 "lang": "Swahili", 

6263 "then": [ 

6264 "dummy-use-as-coltags class-8", 

6265 "dummy-use-as-rowtags object-class-8", 

6266 ], 

6267 }, 

6268 }, 

6269 "c9": { 

6270 "default": "class-9", 

6271 "if": "object-concord", 

6272 "then": "object-class-9", 

6273 "else": { 

6274 "lang": "Swahili", 

6275 "then": [ 

6276 "dummy-use-as-coltags class-9", 

6277 "dummy-use-as-rowtags object-class-9", 

6278 ], 

6279 }, 

6280 }, 

6281 "c10": { 

6282 "default": "class-10", 

6283 "if": "object-concord", 

6284 "then": "object-class-10", 

6285 "else": { 

6286 "lang": "Swahili", 

6287 "then": [ 

6288 "dummy-use-as-coltags class-10", 

6289 "dummy-use-as-rowtags object-class-10", 

6290 ], 

6291 }, 

6292 }, 

6293 "c11": { 

6294 "default": "class-11", 

6295 "if": "object-concord", 

6296 "then": "object-class-11", 

6297 "else": { 

6298 "lang": "Swahili", 

6299 "then": [ 

6300 "dummy-use-as-coltags class-11", 

6301 "dummy-use-as-rowtags object-class-11", 

6302 ], 

6303 }, 

6304 }, 

6305 "c12": { 

6306 "default": "class-12", 

6307 "if": "object-concord", 

6308 "then": "object-class-12", 

6309 "else": { 

6310 "lang": "Swahili", 

6311 "then": [ 

6312 "dummy-use-as-coltags class-12", 

6313 "dummy-use-as-rowtags object-class-12", 

6314 ], 

6315 }, 

6316 }, 

6317 "c13": { 

6318 "default": "class-13", 

6319 "if": "object-concord", 

6320 "then": "object-class-13", 

6321 "else": { 

6322 "lang": "Swahili", 

6323 "then": [ 

6324 "dummy-use-as-coltags class-13", 

6325 "dummy-use-as-rowtags object-class-13", 

6326 ], 

6327 }, 

6328 }, 

6329 "c14": { 

6330 "default": "class-14", 

6331 "if": "object-concord", 

6332 "then": "object-class-14", 

6333 "else": { 

6334 "lang": "Swahili", 

6335 "then": [ 

6336 "dummy-use-as-coltags class-14", 

6337 "dummy-use-as-rowtags object-class-14", 

6338 ], 

6339 }, 

6340 }, 

6341 "c15": { 

6342 "default": "class-15", 

6343 "if": "object-concord", 

6344 "then": "object-class-15", 

6345 "else": { 

6346 "lang": "Swahili", 

6347 "then": [ 

6348 "dummy-use-as-coltags class-15", 

6349 "dummy-use-as-rowtags object-class-15", 

6350 ], 

6351 }, 

6352 }, 

6353 "c16": { 

6354 "default": "class-16", 

6355 "if": "object-concord", 

6356 "then": "object-class-16", 

6357 "else": { 

6358 "lang": "Swahili", 

6359 "then": [ 

6360 "dummy-use-as-coltags class-16", 

6361 "dummy-use-as-rowtags object-class-16", 

6362 ], 

6363 }, 

6364 }, 

6365 "c17": { 

6366 "default": "class-17", 

6367 "if": "object-concord", 

6368 "then": "object-class-17", 

6369 "else": { 

6370 "lang": "Swahili", 

6371 "then": [ 

6372 "dummy-use-as-coltags class-17", 

6373 "dummy-use-as-rowtags object-class-17", 

6374 ], 

6375 }, 

6376 }, 

6377 "c18": { 

6378 "default": "class-18", 

6379 "if": "object-concord", 

6380 "then": "object-class-18", 

6381 "else": { 

6382 "lang": "Swahili", 

6383 "then": [ 

6384 "dummy-use-as-coltags class-18", 

6385 "dummy-use-as-rowtags object-class-18", 

6386 ], 

6387 }, 

6388 }, 

6389 "1s/2s/3s/c1": [ 

6390 "object-first-person object-second-person " 

6391 "object-third-person object-singular", 

6392 "object-class-1", 

6393 ], 

6394 "*p/2/3/11/14": [ 

6395 "object-plural object-first-person " 

6396 "object-second-person object-third-person", 

6397 "object-class-2 object-class-3 object-class-11 " "object-class-14", 

6398 ], 

6399 "c4/c6/c9": "object-class-4 object-class-6 object-class-9", 

6400 "2s/2p/15/17": [ 

6401 "object-second-person object-singular object-plural", 

6402 "object-class-15 object-class-17", 

6403 ], 

6404 "2p/3p/c2": [ 

6405 "object-second-person object-third-person object-plural", 

6406 "object-class-2", 

6407 ], 

6408 "c3/c11/c14": "object-class-3 object-class-11 object-class-14", 

6409 "c4/c9": "object-class-4 object-class-9", 

6410 "Forms with object concords": "object-concord", 

6411 "Past": { 

6412 "default": "past", 

6413 "lang": "Swahili", 

6414 "then": "past", 

6415 }, 

6416 "Present": { 

6417 "default": "present", 

6418 "lang": "Swahili", 

6419 "then": "present", 

6420 }, 

6421 "Future": {"default": "future", "lang": "Swahili", "then": "future"}, 

6422 "Subjunctive": { 

6423 "default": "subjunctive", 

6424 "lang": "Swahili", 

6425 "then": "subjunctive", 

6426 }, 

6427 "Present conditional": { 

6428 "default": "present irrealis", 

6429 "lang": "Swahili", 

6430 "then": "present irrealis", 

6431 }, 

6432 "Past conditional": { 

6433 "default": "past irrealis", 

6434 "lang": "Swahili", 

6435 "then": "past irrealis", 

6436 }, 

6437 "Conditional contrary to fact": { 

6438 "default": "conditional counterfactual", 

6439 "lang": "Swahili", 

6440 "then": "conditional counterfactual", 

6441 }, 

6442 "Gnomic": { 

6443 "default": "gnomic", 

6444 "lang": "Swahili", 

6445 "nested-table-depth": [1, 2], 

6446 "then": "gnomic", 

6447 }, 

6448 "Perfect": { 

6449 "default": "perfect", 

6450 "lang": "Swahili", 

6451 "nested-table-depth": [1, 2], 

6452 "then": "perfect", 

6453 }, 

6454 '"Already"': { 

6455 "default": "already-form", 

6456 "lang": "Swahili", 

6457 "nested-table-depth": [1, 2], 

6458 "then": "already-form", 

6459 }, 

6460 '"Not yet"': { 

6461 "default": "not-yet-form", 

6462 "lang": "Swahili", 

6463 "nested-table-depth": [1, 2], 

6464 "then": "not-yet-form", 

6465 }, 

6466 '"If/When"': { 

6467 "default": "if-when-form", 

6468 "lang": "Swahili", 

6469 "nested-table-depth": [1, 2], 

6470 "then": "if-when-form", 

6471 }, 

6472 '"If not"': { 

6473 "default": "if-not-form", 

6474 "lang": "Swahili", 

6475 "nested-table-depth": [1, 2], 

6476 "then": "if-not-form", 

6477 }, 

6478 "Consecutive": { 

6479 "default": "consecutive", 

6480 "lang": "Swahili", 

6481 "nested-table-depth": [1, 2], 

6482 "then": "consecutive", 

6483 }, 

6484 "General positive": { 

6485 "default": "general-mood positive", 

6486 "lang": "Swahili", 

6487 "nested-table-depth": [1, 2], 

6488 "then": "general-mood positive", 

6489 }, 

6490 "General negative": { 

6491 "default": "general-mood negative", 

6492 "lang": "Swahili", 

6493 "nested-table-depth": [1, 2], 

6494 "then": "general-mood negative", 

6495 }, 

6496 "Positive past": { 

6497 "default": "positive past", 

6498 "lang": "Swahili", 

6499 "nested-table-depth": [1, 2], 

6500 "then": "positive past", 

6501 }, 

6502 "Negative past": { 

6503 "default": "negative past", 

6504 "lang": "Swahili", 

6505 "nested-table-depth": [1, 2], 

6506 "then": "negative past", 

6507 }, 

6508 "Positive present": { 

6509 "default": "positive present", 

6510 "lang": "Swahili", 

6511 "nested-table-depth": [1, 2], 

6512 "then": "positive present", 

6513 }, 

6514 "Negative present": { 

6515 "default": "negative present", 

6516 "lang": "Swahili", 

6517 "nested-table-depth": [1, 2], 

6518 "then": "negative present", 

6519 }, 

6520 "Positive future": { 

6521 "default": "positive future", 

6522 "lang": "Swahili", 

6523 "nested-table-depth": [1, 2], 

6524 "then": "positive future", 

6525 }, 

6526 "Negative future": { 

6527 "default": "negative future", 

6528 "lang": "Swahili", 

6529 "nested-table-depth": [1, 2], 

6530 "then": "negative future", 

6531 }, 

6532 "Positive subjunctive": { 

6533 "default": "positive subjunctive", 

6534 "lang": "Swahili", 

6535 "nested-table-depth": [1, 2], 

6536 "then": "positive subjunctive", 

6537 }, 

6538 "Negative subjunctive": { 

6539 "default": "negative subjunctive", 

6540 "lang": "Swahili", 

6541 "nested-table-depth": [1, 2], 

6542 "then": "negative subjunctive", 

6543 }, 

6544 "Positive present conditional": { 

6545 "default": "positive present irrealis", 

6546 "lang": "Swahili", 

6547 "nested-table-depth": [1, 2], 

6548 "then": "positive present irrealis", 

6549 }, 

6550 "Negative present conditional": { 

6551 "default": "negative present irrealis", 

6552 "lang": "Swahili", 

6553 "nested-table-depth": [1, 2], 

6554 "then": "negative present irrealis", 

6555 }, 

6556 "Positive past conditional": { 

6557 "default": "positive past irrealis", 

6558 "lang": "Swahili", 

6559 "nested-table-depth": [1, 2], 

6560 "then": "positive past irrealis", 

6561 }, 

6562 "Negative past conditional": { 

6563 "default": "negative past irrealis", 

6564 "lang": "Swahili", 

6565 "nested-table-depth": [1, 2], 

6566 "then": "negative past irrealis", 

6567 }, 

6568 "transgressive": "transgressive", # darovať/Slovak 

6569 # conocer/Asturian 

6570 "gerundive": "gerund", 

6571 r"case \ number": "", # δίκυκλο/Greek 

6572 r"number case \ gender": "", # απύρωτος/Greek 

6573 "conditional 2nd form": "conditional conditional-ii", # costosir/Occitan 

6574 # konyugön/Volapük 

6575 "2nd person polite singular": "second-person singular polite", 

6576 "3rd person male singular": "third-person masculine singular", 

6577 "3rd person female singular": "third-person singular feminine", 

6578 "reflexive singular": "reflexive singular", 

6579 "reciprocative singular": "reciprocal singular", 

6580 "2nd person polite plural": "second-person polite plural", 

6581 "3rd person male plural": "third-person masculine plural", 

6582 "3rd person female plural": "third-person feminine plural", 

6583 "reflexive plural": "reflexive plural", 

6584 "reciprocative plural": "reciprocal plural", 

6585 "future in the past perfect": "past perfect future", 

6586 # райҳон/Tajik 

6587 "bare": "", 

6588 "definite object": "definite direct-object", 

6589 # brestan/Proto-West Germanic 

6590 "Genitive infin.": "genitive infinitive", 

6591 "Dative infin.": "dative infinitive", 

6592 "Instrum. infin.": "instrumental infinitive", 

6593 # sberegar/Venetian 

6594 "eło / eła": "third-person singular", 

6595 "noialtri / noialtre": "first-person plural", 

6596 "voialtri / voialtre": "second-person plural", 

6597 "łuri / łore": "third-person plural", 

6598 "che mi": "first-person singular subjunctive", 

6599 "che eło / eła": "third-person singular subjunctive", 

6600 "che noialtri / noialtre": "first-person plural subjunctive", 

6601 "che voialtri / voialtre": "second-person plural subjunctive", 

6602 "che łuri / łore": "third-person plural subjunctive", 

6603 # qolmoq/Uzbek 

6604 "1": { 

6605 "default": "first-person", 

6606 }, 

6607 "2": { 

6608 "default": "second-person", 

6609 }, 

6610 "cont A": "continuative", 

6611 "cont B": "continuative formal imperfective", 

6612 "cont C": "continuative habitual", 

6613 # taanduma/Estonian 

6614 "voice": "", 

6615 "singular / indefinite": "singular indefinite", # Өгэдэй/Mongolian/668 

6616 # Proto-Finnic/munidak 

6617 "passive connegative": "passive connegative", 

6618 "infinitives/nouns": "", 

6619 "infinitive 1": "infinitive infinitive-i", 

6620 "infinitive 2": "infinitive infinitive-ii", 

6621 "gerund/supine": "gerund supine", 

6622 # glæþia/Old Swedish 

6623 "þū": { 

6624 "lang": "Old Swedish", 

6625 "then": "second-person singular", 

6626 }, 

6627 "vīr": { 

6628 "lang": "Old Swedish", 

6629 "then": "first-person plural", 

6630 }, 

6631 "īr": { 

6632 "lang": "Old Swedish", 

6633 "then": "second-person plural", 

6634 }, 

6635 "iæk": { 

6636 "lang": "Old Swedish", 

6637 "then": "first-person singular", 

6638 }, 

6639 "han": { 

6640 "lang": "Old Swedish", 

6641 "then": "third-person singular", 

6642 }, 

6643 "þēr": { 

6644 "lang": "Old Swedish", 

6645 "then": "third-person plural", 

6646 }, 

6647 "Absolute superlative": "absolute superlative", # τρανός/Greek 

6648 # kolfino/Ternate 

6649 "Inclusive": "inclusive plural", 

6650 "Exclusive": "exclusive plural", 

6651 "Human m": "human-person masculine", 

6652 "Human f": "human-person feminine", 

6653 "Non-human": "non-human", 

6654 # ntw/Eqyptian 

6655 "suffix pronouns": "suffix pronoun", 

6656 "stative (‘pseudoparticiple’) endings": "stative", 

6657 "enclitic (‘dependent’) pronouns": "enclitic pronoun", 

6658 "stressed (‘independent’) pronouns": "stressed pronoun", 

6659 "proclitic (‘subject form’) pronouns": "proclitic pronoun", 

6660 # райҳон/Tajik 

6661 "indefinite, definite relative": "indefinite definite relative", 

6662 "mixed after th": "after-th mutation-mixed", # wenyn/Cornish 

6663 "feminine gender": "feminine", # heiße Zitrone/German 

6664 "masculine gender": "masculine", # alter Drache/German 

6665 "specific": "specific", # পূঁজ/Assamese 

6666 "not specific": "unspecified", # পূঁজ/Assamese/163 

6667 # навохтан/Tajik 

6668 "ман": "first-person singular", 

6669 "ӯ": "third-person singular", 

6670 "мо": "first-person plural", 

6671 "шумо": ["second-person plural", "second-person singular polite"], 

6672 "онҳо": "third-person plural", 

6673 "минем (“my”)": "first-person singular possessive", # сез/Tatar 

6674 "синең (“your”)": "second-person singular possessive", 

6675 "аның (“his/her/it”)": "third-person singular possessive", 

6676 "безнең (“our”)": "first-person plural possessive", 

6677 "сезнең (“your”)": "second-person plural possessive", 

6678 "аларның (“their”)": "third-person plural possessive", 

6679 "Realis mood": "realis", # weyetun/Mapudungun 

6680 "singular or plural": [ 

6681 "singular", 

6682 "plural", 

6683 ], # aبڑھنا/Urdu 

6684 "iek": { # ongelje/Saterland Frisian 

6685 "lang": "Saterland Frisian", 

6686 "then": "first-person singular", 

6687 }, 

6688 # wenschen/Middle Dutch 

6689 "In genitive": { 

6690 "lang": "Middle Dutch", 

6691 "then": "infinitive genitive", 

6692 }, 

6693 "In dative": { 

6694 "lang": "Middle Dutch", 

6695 "then": "infinitive dative", 

6696 }, 

6697 # ongelje/Saterland Frisian 

6698 "hie/ju/dät": "third-person singular", 

6699 "wie": { 

6700 "lang": "Saterland Frisian", 

6701 "then": "first-person plural", 

6702 }, 

6703 "du": { 

6704 "lang": "Saterland Frisian", 

6705 "then": "second-person singular", 

6706 }, 

6707 # यहाँका/Nepali 

6708 "Low": { 

6709 "lang": "Nepali", 

6710 "then": "impolite", 

6711 }, 

6712 "Mid": { 

6713 "lang": "Nepali", 

6714 "then": "polite", 

6715 }, 

6716 "Low/Mid": { 

6717 "lang": "Nepali", 

6718 "then": "impolite polite", 

6719 }, 

6720 "High": { 

6721 "lang": "Nepali", 

6722 "then": "deferential", 

6723 }, 

6724 "izofa": "ezafe", # райҳон/Tajik 

6725 "ezâfe": "ezafe", # a دریچه/Persian 

6726 "adverbs": "adverb", # tꜣj/Egyptian 

6727 "Equative": "equative", # erk/Proto-Turkic 

6728 "Pres. subjunctive": "present subjunctive", # adkʷiseti/Proto-Celtic 

6729 "Inclusive Tri-Plural": "inclusive tri-plural", # aaombiniili'/Chickasaw 

6730 "1st-person dual": "first-person dual", # ferkuupe/North Frisian 

6731 "2nd-person dual": "second-person dual", # ferkuupe/North Frisian 

6732 # coymaq/Crimean Tatar 

6733 "repeated gerund": "gerund repeated", 

6734 "temporal gerund": "temporal gerund", 

6735 "non-future participle": "present past participle", 

6736 # tussenin/Dutch 

6737 "postpositional adv.": "adverb postpositional", 

6738 # védde/Ligurian 

6739 "lê o/a": "third-person singular", 

6740 "noî, niâtri": "first-person plural", 

6741 "voî, viâtri": "second-person plural", 

6742 "lô, liâtri": "third-person plural", 

6743 "che ti": "second-person singular subjunctive", 

6744 "che lê o/a": "third-person singular subjunctive", 

6745 "che noî, che niâtri": "first-person plural subjunctive", 

6746 "che voî, che viâtri": "second-person plural subjunctive", 

6747 "che lô, che liâtri": "second-person plural subjunctive", 

6748 "હું": "first-person singular", # અવતરવું/Gujarati/92 

6749 "અમે, આપણે": "first-person plural", # અવતરવું/Gujarati/184 

6750 "તું": "second-person singular", # અવતરવું/Gujarati/184 

6751 "તમે": "second-person plural", # અવતરવું/Gujarati/184 

6752 "તું, આ, આઓ, તે, તેઓ": "third-person", # અવતરવું/Gujarati/92 

6753 "marked indefinite or relative definite": [ # a دریچه/Persian 

6754 "stressed indefinite", 

6755 "relative definite", 

6756 ], 

6757 # delegher/Ladin 

6758 "el / ela": "third-person singular", 

6759 "ei / eles": "third-person plural", 

6760 "che ie": "first-person singular subjunctive", 

6761 "che el / ela": "third-person singular subjunctive", 

6762 "che nos": "first-person plural subjunctive", 

6763 "che vos": "second-person plural subjunctive", 

6764 "che ei / eles": "third-person plural subjunctive", 

6765 "preposition": "prepositional", # daarmede/Dutch 

6766 "Prolative II": "prolative prolative-ii", # килең/Tuvan 

6767 # pawjō/Proto-Italic 

6768 "Perfect indicative": "perfect indicative", 

6769 "Present imperative": "present imperative", 

6770 "Future imperative": "future imperative", 

6771 "tu-derivative": "tu-derivative", 

6772 "s-derivative": "s-derivative", 

6773 # weyetun/Mapudungun 

6774 "Tense particles (See particles)": "particle", 

6775 "iñce": "first-person singular", 

6776 "eymi": "second-person singular", 

6777 "fey": "third-person singular", 

6778 "iñciw": "first-person dual", 

6779 "eymu": "second-person dual", 

6780 "feygu": "third-person dual", 

6781 "iñciñ": "first-person plural", 

6782 "eymvn": "second-person plural", 

6783 "feygvn": "third-person plural", 

6784 "attributive": "attributive", # Өгэдэй/Mongolian/167 

6785 "Active indicative": "indicative active", # konyugön/Volapük/166 

6786 "Active subjunctive": "subjunctive active", # konyugön/Volapük/166 

6787 "Active optative": "optative active", # konyugön/Volapük/166 

6788 "Active interrogative": "interrogative active", # konyugön/Volapük/166 

6789 "Active jussive": "jussive active", # konyugön/Volapük/166 

6790 "definitive direct object": "direct-object definite", # دریچه/Persian/154 

6791 "preceding noun": "before-noun", # jenöfik/Volapük/151 

6792 "separated": "without-noun", # jenöfik/Volapük/151 

6793 "temp. dist.": "temporal distributive", # sisässä/Finnish/145 

6794 "oblique/vocative/instrumental": "oblique vocative instrumental", # કેટલું/Gujarati 

6795 "I-stem (Passive)": "passive", # सोहोर्नु/Nepali/144 

6796 "Passive indicative": "passive indicative", # konyugön/Volapük 

6797 "Passive subjunctive": "passive subjunctive", 

6798 "Passive optative": "passive optative", 

6799 "Passive interrogative": "passive interrogative", 

6800 "Passive jussive": "passive jussive", 

6801 "unmodified": "without-modifier", # birciqqo/Sidamo 

6802 "modified": "with-modifier", # birciqqo/Sidamo 

6803 "Past/present inchoative": "past present inchoative", # ganansiya/Cebuano 

6804 "Future/habitual inchoative": "future habitual inchoative", 

6805 "el / ela / Vde": "third-person singular", # aterecer/Galician 

6806 "eles / elas / Vdes": "third-person plural", # aterecer/Galician 

6807 "busatros busatras": "second-person plural", # foratar/Aragonese 

6808 "agentive / prospective": "agentive prospective", # a بڑھنا/Urdu 

6809 "мен": "first-person singular", # чылгаар/Tuvan 

6810 "бис": "first-person plural", 

6811 "силер": "second-person plural", 

6812 "ол": "third-person singular", 

6813 "олар": "third-person plural", 

6814 "-лар": "third-person plural", 

6815 "Past II": "past past-ii", 

6816 "Evidential": "evidential", 

6817 "-тар": "third-person plural", 

6818 "-нар": "third-person plural", 

6819 "-лер": "third-person plural", # дээр/Tuvan 

6820 "-тер": "third-person plural", 

6821 "-нер": "third-person plural", 

6822 "Grúundfoarme": "", # ongelje/Saterland Frisian 

6823 # oh-/Choctaw/124 

6824 "+V": { 

6825 "lang": "Choctaw", 

6826 "then": "before-vowel", 

6827 }, 

6828 "+C": { 

6829 "lang": "Choctaw", 

6830 "then": "before-consonant", 

6831 }, 

6832 "+s": { 

6833 "lang": "Choctaw", 

6834 "then": "before-s", 

6835 }, 

6836 "+C/i": { 

6837 "lang": "Choctaw", 

6838 "then": "before-consonant before-front-vowel", 

6839 }, 

6840 "+a/o": { 

6841 "lang": "Choctaw", 

6842 "then": "before-back-vowel", 

6843 }, 

6844 # +s +C +V +C/i +a/o +C +V +C +V +C +V 

6845 "past subjunctive": "past subjunctive", # شباهت داشتن/Persian/120 

6846 "vus": "second-person plural", # cumprar/Romansch/117 

6847 "nus": "first-person plural", 

6848 "jeu": "first-person singular", 

6849 "el/ella": "third-person singular", 

6850 "els/ellas": "third-person plural", 

6851 "che nus": "first-person plural subjunctive", 

6852 "che vus": "second-person plural subjunctive", 

6853 "ch'els/ch'ellas": "third-person plural subjunctive", 

6854 "che jeu": "first-person singular subjunctive", 

6855 "ch'el/ch'ella": "third-person singular subjunctive", 

6856 "direct future": "direct future", 

6857 "indirect future": "indirect future", 

6858 "unmarked": "", # tꜣj/Egyptian/114 

6859 "Conditional mood": "conditional", # weyetun/Mapudungun/112 

6860 "Volitive mood": "volitive", # weyetun/Mapudungun/112 

6861 "distant": "distal", # тұту/Kazakh/110 

6862 "affirmative commands": "imperative", # ፈተለ/Tigrinya/110 

6863 "negative commands": "negative imperative", 

6864 '1st-person ("my, our")': "first-person possessive", # aaombiniili'/Chickasaw/106 

6865 '2nd-person ("thy, your")': "second-person possessive", 

6866 '3rd-person ("his, her, its, their")': "third-person possessive", 

6867 "je (nos)": "first-person", # cogier/Norman/104 

6868 "Agentive": "agentive", # হাঁঠ/Assamese/102 

6869 "Middle voice": "middle-voice", # ḱléwseti/Proto-Indo-European/100 

6870 "1st-person (I, we)": "first-person", # chaaha̱ taloowa/Chickasaw/99 

6871 "2nd-person (you, you all)": "second-person", 

6872 "3rd-person (he, she, it, they)": "third-person", 

6873 "ils": "third-person plural", # ovrar/Franco-Provençal/98 

6874 "que je (j')": "first-person singular subjunctive", 

6875 "que te (t')": "second-person singular subjunctive", 

6876 "qu'il/el": "third-person singular subjunctive", 

6877 "qu'ils/els": "third-person plural subjunctive", 

6878 "il/elli": "third-person singular", 

6879 "Nasal": "mutation-nasal", # arglwyt/Middle Welsh/98 

6880 "Present progressive": "present progressive", # અવતરવું/Gujarati/92 

6881 "Negative conditional": "negative conditional", 

6882 "pronoun": "pronoun", # küm-/Maquiritari/88 

6883 "noun possessor/ series II verb argument": [ 

6884 "possessive", 

6885 "series-ii-verb-argument", 

6886 ], 

6887 "series I verb argument": "series-ii-verb-argument", 

6888 "postposition object": "direct-object postpositional", 

6889 "transitive patient": "transitive patient", 

6890 "intransitive patient-like": "intransitive patient-like", 

6891 "intransitive agent-like": "intransitive agent-like", 

6892 "transitive agent": "transitive agent", 

6893 "first person dual inclusive": "first-person dual inclusive", 

6894 "first person dual exclusive": "first-person dual exclusive", 

6895 "distant past third person": "distant-past past", 

6896 "coreferential/reflexive": "reflexive", 

6897 "series I verb argument: transitive agent and transitive patient": "transitive agent patient", 

6898 "first person > second person": "first-person object-second-person", 

6899 "first person dual exclusive > second person": "first-person dual exclusive object-second-person", 

6900 "second person > first person": "second-person object-first-person", 

6901 "second person > first person dual exclusive": "second-person object-first-person object-dual object-exclusive", 

6902 "third person > any person X …or… any person X > third person": [ 

6903 "third-person", 

6904 "object-third-person", 

6905 ], 

6906 "2nd Person Singular": "second-person singular", # spigen/Middle Low German 

6907 "él": "third-person singular", # foratar/Aragonese 

6908 "nusatros nusatras": "first-person plural", 

6909 "ellos/els ellas": "third-person plural", 

6910 "Conjectural": "", # 노타/Middle Korean/85 

6911 "transgressive present": "present transgressive", # naposlouchat/Czech 

6912 "transgressive past": "past transgressive", 

6913 "Verbal adjective": "adjective-from-verb", 

6914 "je (j’) / i": "first-person singular", # gizai/Bourguignon/81 

6915 "je (j') / i": "first-person singular", # antreprarre/Bourguignon/79 

6916 "que je (j') / qu'i": "first-person singular subjunctive", 

6917 "que je (j’) / qu'i": "first-person singular subjunctive", 

6918 "ai (el), ale": "third-person singular", # gizai/Bourguignon/58 

6919 "ai (el), ales": "third-person plural", 

6920 "qu'ai (el), qu'ale": "third-person singular subjunctive", 

6921 "qu'ai (el), qu'ales": "third-person plural subjunctive", 

6922 "determiners and pronouns": "determiner pronoun", # tꜣj/Egyptian/76 

6923 "anaphoric": "anaphoric", 

6924 "regular": "", # এৱা গাখীৰ/Assamese/74 

6925 "very formal": "deferential", 

6926 "infinitive II": "infinitive-ii infinitive", # ferkuupe/North Frisian 

6927 "PROGRESSIVE": "progressive", # yitih/Navajo 

6928 "past stem": "stem past", # a شباهت داشتن/Persian 

6929 "nominative, genitive and instrumental": "nominative genitive instrumental", # ხმოვანი/Georgian 

6930 "ej (j')": "first-person singular", # vouloér/Picard 

6931 "tu (t')": "second-person singular", 

6932 "i (il)/ale": "third-person singular", # vouloér/Picard 

6933 "i (il)/a (al)": "third-person singular", # ète/Picard/1 

6934 "(n)os": "first-person plural", # vouloér/Picard/60 

6935 "os": "second-person plural", # vouloér/Picard 

6936 "is": "third-person plural", # vouloér/Picard/31 

6937 "qu'ej (j')": "first-person singular subjunctive", # vouloér/Picard/31 

6938 "qu'tu (t')": "second-person singular subjunctive", 

6939 "eq tu (t')": "second-person singular subjunctive", # ète/Picard/1 

6940 "qu'i (il)/ale": "third-person singular subjunctive", # connoéte/Picard/29 

6941 "qu'i (il)/a (al)": "third-person singular subjunctive", # vouloér/Picard/2 

6942 "qu'(n)os": "first-person plural subjunctive", # connoéte/Picard/29 

6943 "qu'os": "first-person second-person plural subjunctive", # vouloér/Picard/33 

6944 "qu'is": "third-person plural subjunctive", # vouloér/Picard/31 

6945 "inanimate pronoun": "inanimate pronoun", # mönsemjo/Maquiritari 

6946 "medial": "medial", 

6947 "unmarked (later)": "", # ntw/Egyptian singular/plural/unmarked 

6948 "H-prothesis": "prothesis-h", # arglwyt/Middle Welsh/61 

6949 "h-prothesis": "prothesis-h", # moved here, uncommented 

6950 "distant past": "distant-past past", # weyetun/Mapudungun/56 

6951 # XXX Tatar has a ton of soft hyphens 

6952 "Futu\xadre": "future", #!! soft hyphen! тыңларга/Tatar 

6953 "Nonfinite verb forms": "", 

6954 "transitory past": "past transitional-past", # тұту/Kazakh 

6955 "сен": { 

6956 "lang": "Kazakh", 

6957 "then": "second-person singular informal", 

6958 "else": { 

6959 "lang": "Tuvan", 

6960 "then": "second-person singular", 

6961 }, 

6962 }, 

6963 "сіз": "second-person singular formal", 

6964 "біз": "first-person plural", 

6965 "сендер": "second-person plural informal", 

6966 "сіздер": "second-person plural formal", 

6967 "imperative/hortative": "imperative hortative", 

6968 "gend/num": "", # vascuenciu/Asturian/54 

6969 "inf": "infinitive", # হাঁঠ/Assamese/54 

6970 "ca je/i'": "first-person singular subjunctive", # spantacà/Neapolitan 

6971 "ca tu": "second-person singular subjunctive", 

6972 "ca nuje": "first-person plural subjunctive", 

6973 "il, alle, nos": "third-person singular", # cogier/Norman/52 

6974 "il, alles": "third-person plural", 

6975 "qu'il, qu'alle, que nos": "third-person singular subjunctive", 

6976 "que je (que nos)": "first-person plural subjunctive", 

6977 "qu'il, qu'alles": "third-person plural subjunctive", 

6978 # Get yourself together, Sardinian 

6979 "deo": "", # nochere/Sardinian/52 

6980 "deo, eo": "", # tzappare/Sardinian/51 

6981 "dego, deo": "", # tzappare/Sardinian/33 

6982 "isse/issa": "", # nochere/Sardinian/27 

6983 "chi deo, chi eo": "", # tzappare/Sardinian/17 

6984 "chi deo": "", # impreare/Sardinian/12 

6985 "chi dego, chi deo": "", # tzappare/Sardinian/11 

6986 "che deo": "", # nochere/Sardinian/8 

6987 "che tue": "", # nochere/Sardinian/8 

6988 "che isse/issa": "", # nochere/Sardinian/8 

6989 "che nois": "", # nochere/Sardinian/8 

6990 "che bois": "", # nochere/Sardinian/8 

6991 "che issos/issas": "", # nochere/Sardinian/8 

6992 "issos/ issas": "", # finire/Sardinian/4 

6993 "eo, deo": "", # finire/Sardinian/3 

6994 "deu": "", # essi/Sardinian/3 

6995 "tui": "", # essi/Sardinian/3 

6996 "nosu": "", # essi/Sardinian/3 

6997 "bosatrus/bosatras": "", # essi/Sardinian/3 

6998 "issus/issas": "", # essi/Sardinian/3 

6999 "past/ imperfect": "", # finire/Sardinian/2 

7000 "+ past participle": "", # pòdere/Sardinian/2 

7001 "isse/ issa": "", # finire/Sardinian/1 

7002 "chi deu": "", # essi/Sardinian/1 

7003 "chi tui": "", # essi/Sardinian/1 

7004 "chi nosu": "", # essi/Sardinian/1 

7005 "chi bosatrus/bosatras": "", # essi/Sardinian/1 

7006 "chi issus/issas": "", # essi/Sardinian/1 

7007 "Verbs beginning with a consonant.": "", # chaaha̱ taloowa/Chickasaw/52 

7008 "te": "second-person singular", # ovrar/Franco-Provençal 

7009 "nu": "first-person plural", # legro/Dalmatian 

7010 "vu": "second-person plural", 

7011 "Perfekta": "perfect", # sannoa/Ingrian/50 

7012 "Nouns in vowel-, b-, or p-": "", # aaombiniili'/Chickasaw/50 

7013 "subjunctive present": "present subjunctive", # a متشکر بودن/Persian/48 

7014 "1st Person Singular": "first-person singular", # spigen/Middle Low German 

7015 "3rd Person Singular": "third-person singular", 

7016 "Rewş": "", # "case", kerguh/Northern Kurdish 

7017 "Vde": "third-person singular", # aterecer/Galician 

7018 "Vdes": "third-person plural", 

7019 "IMPF": "imperfect", # डिलीट होना/Hindi 

7020 "frm": "", # ??? "form"? হাঁঠ/Assamese 

7021 "focus": "focus", # issito/Choctaw 

7022 "singular 1ˢᵗ person": "first-person singular", # гъэкӏодын/Adyghe 

7023 "singular 2ˢᵗ person": "second-person singular", 

7024 "singular 3ˢᵗ person": "third-person singular", 

7025 "plural 1ˢᵗ person": "first-person plural", 

7026 "plural 2ˢᵗ person": "second-person plural", 

7027 "plural 3ˢᵗ person": "third-person plural", 

7028 "Neuter gender": "neuter", # 𒄭𒅔𒃷/Hittite 

7029 "Plain Infinitive": "infinitive", # spigen/Middle Low German 

7030 "Full Infinitive (Gerund)": "gerund infinitive", 

7031 "Imperatives": { 

7032 "default": "imperative", 

7033 "lang": "Swahili", 

7034 "then": "dummy-section-header imperative", 

7035 }, 

7036 "Tensed forms": { 

7037 "default": "", 

7038 "lang": "Swahili", 

7039 "then": "dummy-reset-section-header", 

7040 }, 

7041 "Object concord (indicative positive)": { 

7042 "default": "object-concord indicative positive", 

7043 "lang": "Swahili", 

7044 "then": "dummy-section-header object-concord indicative positive", 

7045 }, 

7046 "Relative forms": { 

7047 "default": "", 

7048 "lang": "Swahili", 

7049 "then": "dummy-section-header relative object-concord", 

7050 }, 

7051 "2nd Person Plural": "second-person plural", 

7052 "free state": "free-state", # aɣemmar/Tarifit 

7053 "construct state": "construct", 

7054 "dative/instr": "dative instrumental", # unseraz/Proto-Germanic/39 

7055 "infinitive III": "infinitive infinitive-iii", # stärwe/North Frisian 

7056 "determiners": "determiner", # nꜣyw/Egyptian/38 

7057 "pronouns": "pronoun", 

7058 "proximal to speaker": "proximal-to-speaker", 

7059 "proximal to spoken of": "proximal-to-topic", 

7060 "‘copula’": "copulative", 

7061 "possessive determiners (used with suffix pronouns)": "possessive determiner", 

7062 "relational pronouns (‘possessive prefixes’)": "possessive pronoun", 

7063 "definite articles": "definite article", 

7064 "indefinite articles": "indefinite article", 

7065 "Aspirate": "mutation-aspirate", # vynet/Middle Welsh/37 

7066 "dji (dj')": "first-person singular", # atchter/Walloon/37 

7067 "preterit": "preterite", 

7068 "dji / nos": "first-person plural", 

7069 "nós nós outros nós outras": "first-person plural", # prazer/Old Portuguese 

7070 "vós vós outros vós outras": "second-person plural", 

7071 "contrastive": "contrastive", # issito/Choctaw/36 

7072 # espurrire/Leonese 

7073 "you": { 

7074 "lang": "Leonese", 

7075 "then": "first-person singular", 

7076 }, 

7077 "él / eilla / eillu / vusté": "third-person singular", 

7078 "nosoutros / nosoutras": "first-person plural", 

7079 "vosoutros / vosoutras": "second-person plural", 

7080 "eillos / eillas / vustedes": "third-person plural", 

7081 "Personal-pronoun including forms": "", # ܓܘ/Assyrian Neo-Aramaic/36 

7082 "Non-personal-pronoun-including form": "", # במו/Hebrew/35 

7083 # pårler/Walloon 

7084 "i (il) / ele": "third-person singular", 

7085 "dji (dj') / nos": "first-person plural", 

7086 "ki dj'": "first-person singular subjunctive", 

7087 "ki t'": "second-person singular subjunctive", 

7088 "k' i (il) / k' ele": "third-person singular subjunctive", 

7089 "ki dj' / ki nos": "first-person plural subjunctive", 

7090 "ki vos": "second-person plural subjunctive", 

7091 "k' i (il)": "third-person plural subjunctive", 

7092 # sannoa/Ingrian, rest of these 

7093 "Imperfekta": "imperfect", 

7094 "Pluskvamperfekta": "pluperfect", 

7095 "Infinitivat": "infinitive", 

7096 "Partisipat": "participle", 

7097 # f/Slovene 

7098 "nominative imenovȃlnik": "nominative", 

7099 "genitive rodȋlnik": "genitive", 

7100 "dative dajȃlnik": "dative", 

7101 "accusative tožȋlnik": "accusative", 

7102 "locative mẹ̑stnik": "locative", 

7103 "instrumental orọ̑dnik": "instrumental", 

7104 "(vocative) (ogȏvorni imenovȃlnik)": "vocative", 

7105 # akaka/Choctaw 

7106 "Possession": "possessed-form", 

7107 '("my, our")': "first-person possessive", 

7108 '("thy, your")': "second-person possessive", 

7109 '("his, her, its, their")': "third-person possessive", 

7110 # humingi/Tagalog 

7111 # Why is there \u2060 in so many differen tagalog templates like these??? 

7112 "\u2060 ma- -an": "", 

7113 "\u2060mapag- -an": "", 

7114 "\u2060mapagpa- -an": "", 

7115 "\u2060mapapag- -an": "", 

7116 "\u2060 mapa- -an": "", 

7117 # katayin/Tagalog 

7118 "\u2060mapapag-": "", 

7119 # -nən/Azerbaijani floating div! Got it to work! 

7120 "preceding vowel": "", 

7121 "A / I / O / U": "back-vowel-harmony", 

7122 "E / Ə / İ / Ö / Ü": "front-vowel-harmony", 

7123 "postconsonantal": "after-consonant", 

7124 "postvocalic": "after-vowel", 

7125 # -ül/Azerbaijani 

7126 "A / I": "back-vowel-harmony unrounded-harmony", 

7127 "E / Ə / İ": "front-vowel-harmony unrounded-harmony", 

7128 "O / U": "back-vowel-harmony rounded-harmony", 

7129 "Ö / Ü": "front-vowel-harmony rounded-harmony", 

7130 "postconsonantal except after L": "after-consonant-except-l", 

7131 "after L": "after-l-consonant", 

7132 # kk-suffix-forms Kazakh 

7133 "А / Ы / О / Ұ": "back-vowel-harmony", 

7134 "Ә / Е / І / Ө / Ү": "front-vowel-harmony", 

7135 # ky-suffix-forms Kyrgyz 

7136 "А / Ы": "back-vowel-harmony unrounded-harmony", 

7137 "Е / И": "front-vowel-harmony unrounded-harmony", 

7138 "О / У": "back-vowel-harmony rounded-harmony", 

7139 "Ө / Ү": "front-vowel-harmony unrounded-harmony", 

7140 # tr-inf-p Turkish 

7141 "E / İ": "front-vowel-harmony unrounded-harmony", 

7142 # tt-suffix-forms Tatar 

7143 "А / Ы / О / У": "back-vowel-harmony", 

7144 "Ә/ Е / Э / Ө / Ү": "front-vowel-harmony", 

7145 # wasick/Narragansett 

7146 "unpossessed": { 

7147 "lang": "Narragansett", 

7148 "then": "", 

7149 }, 

7150 # patika/Swahili new tables! 

7151 "m-wa_((I/II))": "class-1 class-2", 

7152 "m-mi_((III/IV))": "class-3 class-4", 

7153 "ji-ma_((V/VI))": "class-5 class-6", 

7154 "ki-vi_((VII/VIII))": "class-7 class-8", 

7155 "n_((IX/X))": "class-9 class-10", 

7156 "u_((XI))": "class-11", 

7157 "ku_((XV/XVII))": "class-15 class-17", 

7158 "pa_((XVI))": "class-16", 

7159 "mu_((XVIII))": "class-18", 

7160 # ծաղրել/Armenian 

7161 "past future": "future past", 

7162 # new Finnish verb table stuff takaisinmallintaa/Finnish 

7163 "plur.": "plural", 

7164 "sing.": "singular", 

7165 # https://en.wiktionary.org/wiki/Template:ka-decl-noun 

7166 # Georgian postpositional forms 

7167 "dative-case postpositions": "", 

7168 "-ზე (-ze, “on”)": "on-position dative", 

7169 "-თან (-tan, “near”)": "near-position dative", 

7170 "-ში (-ši, “in”)": "in-position dative", 

7171 "-ვით (-vit, “like”)": "like-position dative", 

7172 "genitive-case postpositions": "", 

7173 "-თვის (-tvis, “for”)": "for-position genitive", 

7174 "-ებრ (-ebr, “like”)": "like-position genitive", 

7175 "-კენ (-ḳen, “towards”)": "towards-position genitive", 

7176 "-გან (-gan, “from/of”)": "from-position genitive", 

7177 "-ადმი (-admi, “in relation to”)": "in-relation-to-position genitive", 

7178 "instrumental-case postpositions": "", 

7179 "-დან (-dan, “from/since”)": "since-position instrumental", 

7180 "-ურთ (-urt, “together with”)": "together-with-position instrumental", 

7181 "adverbial-case postpositions": "", 

7182 "-მდე (-mde, “up to”)": "up-to-position adverbial", 

7183 # femeie/Romanian 

7184 "genitive-dative": "genitive dative", 

7185 "active": { 

7186 "default": "active", 

7187 "inflection-template": "grc-conj", 

7188 "column-index": 2, 

7189 "then": "dummy-reset-headers active", 

7190 }, 

7191 "Derived forms": { 

7192 "default": "", 

7193 "lang": "grc", 

7194 "then": "dummy-reset-headers", 

7195 }, 

7196} 

7197 

7198 

7199def check_tags(k: str, v: str) -> None: 

7200 assert isinstance(k, str) 

7201 assert isinstance(v, str) 

7202 for tag in v.split(): 

7203 if tag not in valid_tags and tag not in ("*",): 7203 ↛ 7204line 7203 didn't jump to line 7204 because the condition on line 7203 was never true

7204 print("infl_map[{!r}] contains invalid tag {!r}".format(k, tag)) 

7205 

7206 

7207def check_v( 

7208 k: str, v: Union[str, list[str], dict[str, InflMapNode], InflMapNodeDict] 

7209) -> None: 

7210 assert isinstance(k, str) 

7211 if v is None: # or v in ("dummy-reset-headers",): 7211 ↛ 7212line 7211 didn't jump to line 7212 because the condition on line 7211 was never true

7212 return 

7213 if isinstance(v, str): 

7214 check_tags(k, v) 

7215 elif isinstance(v, list): 

7216 for item in v: 

7217 check_v(k, item) 

7218 elif isinstance(v, dict): 7218 ↛ 7267line 7218 didn't jump to line 7267 because the condition on line 7218 was always true

7219 for kk in v.keys(): 

7220 if kk in ( 

7221 "if", 

7222 "then", 

7223 "else", 

7224 ): 

7225 check_v(k, v[kk]) 

7226 elif kk == "default": 

7227 if not isinstance(v[kk], (str, list, tuple)): 7227 ↛ 7228line 7227 didn't jump to line 7228 because the condition on line 7227 was never true

7228 print( 

7229 "infl_map[{!r}] contains invalid default value " 

7230 "{!r}".format(k, v[kk]) 

7231 ) 

7232 elif kk == "pos": 

7233 vv = v[kk] 

7234 if isinstance(vv, str): 

7235 vv = [vv] 

7236 for vvv in vv: 

7237 if vvv not in PARTS_OF_SPEECH: 7237 ↛ 7238line 7237 didn't jump to line 7238 because the condition on line 7237 was never true

7238 print( 

7239 "infl_map[{!r}] contains invalid part-of-speech " 

7240 "{!r} -- {!r}".format(k, kk, v[kk]) 

7241 ) 

7242 elif kk in ("lang",): 

7243 pass 

7244 elif kk == "nested-table-depth": 

7245 if not isinstance(v[kk], (int, list, tuple)): 7245 ↛ 7246line 7245 didn't jump to line 7246 because the condition on line 7245 was never true

7246 print( 

7247 "infl_map[{!r}] contains invalid depth-value " 

7248 "{!r}".format(k, v[kk]) 

7249 ) 

7250 elif kk == "inflection-template": 

7251 if not isinstance(v[kk], (str, list, tuple)): 7251 ↛ 7252line 7251 didn't jump to line 7252 because the condition on line 7251 was never true

7252 print( 

7253 "infl_map[{!r}] contains invalid" 

7254 "inflection-template value " 

7255 "{!r}".format(k, v[kk]) 

7256 ) 

7257 elif kk == "column-index": 7257 ↛ 7265line 7257 didn't jump to line 7265 because the condition on line 7257 was always true

7258 if not isinstance(v[kk], (int, list, tuple)): 7258 ↛ 7259line 7258 didn't jump to line 7259 because the condition on line 7258 was never true

7259 print( 

7260 "infl_map[{!r}] contains invalid" 

7261 "column-index value " 

7262 "{!r}".format(k, v[kk]) 

7263 ) 

7264 else: 

7265 print("infl_map[{!r}] contains invalid key {!r}".format(k, kk)) 

7266 else: 

7267 print("infl_map[{!r}] contains invalid value {!r}".format(k, v)) 

7268 

7269 

7270for k, v in infl_map.items(): 

7271 check_v(k, v) 

7272 

7273 

7274# Mapping from start of header to tags for inflection tables. The start must 

7275# be followed by a space (automatically added, do not enter here). 

7276infl_start_map = { 

7277 "with infinitive": "infinitive", 

7278 "with gerund": "gerund", 

7279 "with informal second-person singular imperative": "informal second-person singular imperative", 

7280 # Template:es-conj Module:es-verb 

7281 "with informal second-person singular tuteo imperative": # cedular/Spanish 

7282 "informal second-person singular imperative with-tú", 

7283 "with informal second-person singular voseo imperative": "informal second-person singular imperative with-vos", 

7284 "with formal second-person singular imperative": "formal second-person singular imperative", 

7285 "with first-person plural imperative": "first-person plural imperative", 

7286 "with informal second-person plural imperative": "informal second-person plural imperative", 

7287 "with formal second-person plural imperative": "formal second-person plural imperative", 

7288 # kaozeal/Breton 

7289 "Soft mutation after": "mutation-soft", 

7290 "Mixed mutation after": "mutation-mixed", 

7291 # gláedach/Old Irish 

7292 "Initial mutations of a following adjective:": "dummy-skip-this", 

7293} 

7294for k, v in infl_start_map.items(): 

7295 check_v(k, v) 

7296 

7297infl_start_re = re.compile( 

7298 r"^({}) ".format("|".join(re.escape(x) for x in infl_start_map.keys())) 

7299)