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

54 statements  

« prev     ^ index     » next       coverage.py v7.6.4, created at 2024-10-25 10:11 +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 "default": str, 

76 "if": str, 

77 "then": InflMapNode, 

78 "else": InflMapNode, 

79 }, 

80 total=False, 

81) 

82 

83infl_map: dict[str, InflMapNode] = { 

84 "plural": { 

85 "default": "plural", 

86 "if": "possessive", 

87 "lang": POSSESSIVE_POSSESSED_LANGS, 

88 "then": "possessed-many", 

89 "else": { 

90 "if": "combined-form", 

91 "then": "object-plural", 

92 }, 

93 }, 

94 "singular": { 

95 "default": "singular", 

96 "if": "possessive", 

97 "lang": POSSESSIVE_POSSESSED_LANGS, 

98 "then": "possessed-single", 

99 "else": { 

100 "if": "combined-form", 

101 "then": "object-singular", 

102 "else": "singular", 

103 }, 

104 }, 

105 "accusative": "accusative", 

106 "dative": "dative", 

107 "instrumental": "instrumental", 

108 "ablative": "ablative", 

109 "illative": "illative", 

110 "elative": "elative", 

111 "adessive": "adessive", 

112 "allative": "allative", 

113 "possessor": "possessive", 

114 "vocative": "vocative", 

115 "Singular": "singular", 

116 "instructive": "instructive", 

117 "Plural": "plural", 

118 "1st person": { 

119 "if": "combined-form", 

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

121 "else": "first-person", 

122 }, 

123 "2nd person": { 

124 "if": "combined-form", 

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

126 "else": "second-person", 

127 }, 

128 "3rd person": { 

129 "if": "combined-form", 

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

131 "else": "third-person", 

132 }, 

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

151 "nom.": "nominative", 

152 "gen.": "genitive", 

153 "Nominative": "nominative", 

154 "Genitive": "genitive", 

155 "Dative": "dative", 

156 "Vocative": "vocative", 

157 "Accusative": "accusative", 

158 "feminine": { 

159 "if": "possessive", 

160 "lang": POSSESSIVE_POSSESSED_LANGS, 

161 "then": "possessed-feminine", 

162 "else": "feminine", 

163 }, 

164 "neuter": { 

165 "if": "possessive", 

166 "lang": POSSESSIVE_POSSESSED_LANGS, 

167 "then": "possessed-neuter", 

168 "else": "neuter", 

169 }, 

170 "Ablative": "ablative", 

171 "imperative": "imperative", 

172 "causal-final": "causal-final", 

173 "essive-formal": "essive-formal", 

174 "essive-modal": "essive-modal", 

175 "superessive": "superessive", 

176 "sublative": "sublative", 

177 "delative": "delative", 

178 "non-attributive possessive - singular": 

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

180 "non-attributive possessive - plural": 

181 "predicative possessive possessed-single", 

182 "infinitive": "infinitive", 

183 "prepositional": "prepositional", 

184 "masculine": { 

185 "if": "possessive", 

186 "lang": POSSESSIVE_POSSESSED_LANGS, 

187 "then": "possessed-masculine", 

188 "else": "masculine", 

189 }, 

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

191 "active": "active", 

192 "passive": "passive", 

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

194 "participles": "participle", 

195 "Participles": "participle", 

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

197 "Present forms": "present", 

198 "Transgressives": "transgressive", 

199 "past tense": "past", 

200 "Positive participial": "positive participle", 

201 "Negative participial": "negative participle", 

202 "present tense": "present", 

203 "future tense": "future", 

204 "Neuter": "neuter", 

205 # "Masculine": "masculine", 

206 "Feminine": "feminine", 

207 "adverbial": "adverbial", 

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

229 "second-person singular colloquial Flanders", 

230 ], 

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

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

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

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

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

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

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

238 "First": "first-person", 

239 "Second": "second-person", 

240 "Third": "third-person", 

241 "Case / Gender": "", 

242 "masculine inanimate": "masculine inanimate", 

243 "Infinitive": "infinitive", 

244 "Past indicative": "past indicative", 

245 "Past participle": "past participle", 

246 "Past participles": "past participle", 

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

248 "Passive participles": "passive participle", 

249 "Present participle": "present participle", 

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

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

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

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

254 "third-person singular", 

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

256 ], 

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

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

259 "third-person plural", 

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

261 ], 

262 "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 "Derived forms": "", 

565 "Adverb": "adverbial", 

566 "augmentative": "augmentative", 

567 "diminutive": "diminutive", 

568 "singular (vienaskaita)": "singular", 

569 "plural (daugiskaita)": "plural", 

570 "nominative (vardininkas)": "nominative", 

571 "genitive (kilmininkas)": "genitive", 

572 "dative (naudininkas)": "dative", 

573 "accusative (galininkas)": "accusative", 

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

575 "locative (vietininkas)": "locative", 

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

577 "ie": { 

578 "lang": "Dutch", 

579 "pos": "verb", 

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

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

582 "else": { 

583 "lang": [ 

584 "Middle French", 

585 "Old Occitan", 

586 "Ladin", 

587 ], 

588 "pos": "verb", 

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

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

591 }, 

592 }, 

593 "io": { 

594 "lang": [ 

595 "Aromanian", 

596 "Interlingua", 

597 "Istro-Romanian", 

598 "Italian", 

599 "Neapolitan", 

600 ], 

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

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

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

604 }, 

605 "tu": { 

606 "lang": [ 

607 "Aromanian", 

608 "Asturian", 

609 "Catalan", 

610 "French", 

611 "Friulian", 

612 "Gallurese", 

613 "Gaulish", 

614 "Ido", 

615 "Interlingua", 

616 "Italian", 

617 "Kalasha", 

618 "Kalo Finnish Romani", 

619 "Ladino", 

620 "Latgalian", 

621 "Latin", 

622 "Latvian", 

623 "Lithuanian", 

624 "Middle French", 

625 "Mirandese", 

626 "Neapolitan", 

627 "Northern Kurdish", 

628 "Old French", 

629 "Occitan", 

630 "Old Irish", 

631 "Old Portuguese", 

632 "Phalura", 

633 "Portuguese", 

634 "Romani", 

635 "Romanian", 

636 "Sassarese", 

637 "Savi", 

638 "Scottish Gaelic", 

639 "Sicilian", 

640 "Sinte Romani", 

641 "Sudovian", 

642 "Tarantino", 

643 "Tocharian A", 

644 "Welsh Romani", 

645 ], 

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

647 "then": "second-person", 

648 "else": { 

649 "lang": "Ladin", 

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

651 }, 

652 }, 

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

654 "lang": "Italian", 

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

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

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

658 }, 

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

660 "lang": "Italian", 

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

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

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

664 }, 

665 "noi": { 

666 "lang": [ 

667 "Aromanian", 

668 "Corsican", 

669 "Gallurese", 

670 "Italian", 

671 "Piedmontese", 

672 "Romanian", 

673 "Sassarese", 

674 ], 

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

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

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

678 }, 

679 "voi": { 

680 "lang": [ 

681 "Aromanian", 

682 "Corsican", 

683 "Gallurese", 

684 "Italian", 

685 "Piedmontese", 

686 "Romanian", 

687 "Sassarese", 

688 ], 

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

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

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

692 }, 

693 "loro, essi/esse": { 

694 "lang": "Italian", 

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

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

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

698 }, 

699 "loro": { # calere/Italian 

700 "lang": "Italian", 

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

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

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

704 }, 

705 "che io": { 

706 "lang": "Italian", 

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

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

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

710 }, 

711 "che tu": { 

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

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

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

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

716 }, 

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

718 "lang": "Italian", 

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

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

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

722 }, 

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

724 "lang": "Italian", 

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

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

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

728 }, 

729 "che noi": { 

730 "lang": "Italian", 

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

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

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

734 }, 

735 "che voi": { 

736 "lang": "Italian", 

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

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

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

740 }, 

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

742 "lang": "Italian", 

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

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

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

746 }, 

747 "che loro": { # calere/Italian 

748 "lang": "Italian", 

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

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

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

752 }, 

753 "io/mini/mine": { 

754 "lang": "Aromanian", 

755 "pos": "verb", 

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

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

758 }, 

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

760 "lang": "Aromanian", 

761 "pos": "verb", 

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

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

764 }, 

765 "tu/tini/tine": { 

766 "lang": "Aromanian", 

767 "pos": "verb", 

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

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

770 }, 

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

772 "lang": "Aromanian", 

773 "pos": "verb", 

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

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

776 }, 

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

778 "lang": "Aromanian", 

779 "pos": "verb", 

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

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

782 }, 

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

784 "lang": "Aromanian", 

785 "pos": "verb", 

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

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

788 }, 

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

790 "lang": "Aromanian", 

791 "pos": "verb", 

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

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

794 }, 

795 "eiu": { 

796 "lang": "Corsican", 

797 "pos": "verb", 

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

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

800 }, 

801 "tù": { 

802 "lang": "Corsican", 

803 "pos": "verb", 

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

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

806 }, 

807 "ellu/ella": { 

808 "lang": "Corsican", 

809 "pos": "verb", 

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

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

812 }, 

813 "elli/elle": { 

814 "lang": "Corsican", 

815 "pos": "verb", 

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

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

818 }, 

819 "eu": { 

820 "lang": [ 

821 "Galician", 

822 "Gallurese", 

823 "Old Occitan", 

824 "Old Portuguese", 

825 "Portuguese", 

826 "Romanian", 

827 "Romansch", 

828 ], 

829 "pos": "verb", 

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

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

832 }, 

833 "el/ea": { 

834 "lang": "Romanian", 

835 "pos": "verb", 

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

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

838 }, 

839 "ei/ele": { 

840 "lang": "Romanian", 

841 "pos": "verb", 

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

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

844 }, 

845 "aš": { 

846 "lang": "Lithuanian", 

847 "pos": "verb", 

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

849 "then": "first-person", 

850 }, 

851 "jis/ji": { 

852 "lang": "Lithuanian", 

853 "pos": "verb", 

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

855 "then": "third-person", 

856 }, 

857 "mes": { 

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

859 "pos": "verb", 

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

861 "then": "first-person", 

862 }, 

863 "mēs": { 

864 "lang": "Latvian", 

865 "pos": "verb", 

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

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

868 }, 

869 "es": { 

870 "lang": [ 

871 "Alemannic German", 

872 "Cimbrian", 

873 "German", 

874 "Hunsrik", 

875 "Pennsylvania German", 

876 "Sudovian", 

877 ], 

878 "pos": "verb", 

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

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

881 "else": { 

882 "lang": ["Bavarian"], 

883 "pos": "verb", 

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

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

886 "else": { 

887 "lang": "Kabuverdianu", 

888 "pos": "verb", 

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

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

891 "else": { 

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

893 "pos": "verb", 

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

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

896 }, 

897 }, 

898 }, 

899 }, 

900 "jūs": { 

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

902 "pos": "verb", 

903 "if": "singular", 

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

905 "else": { 

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

907 "pos": "verb", 

908 "if": "plural", 

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

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

911 }, 

912 }, 

913 "jie/jos": { 

914 "lang": "Lithuanian", 

915 "pos": "verb", 

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

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

918 }, 

919 "jie": { 

920 "lang": "Saterland Frisian", 

921 "pos": "verb", 

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

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

924 "else": { 

925 "lang": "Saterland Frisian", 

926 "pos": "verb", 

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

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

929 }, 

930 }, 

931 "ije": { 

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

933 "pos": "verb", 

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

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

936 }, 

937 "jidde / jèdde": { 

938 "lang": "Tarantino", 

939 "pos": "verb", 

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

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

942 }, 

943 "nuje": { 

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

945 "pos": "verb", 

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

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

948 }, 

949 "vuje": { 

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

951 "pos": "verb", 

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

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

954 }, 

955 "lóre": { 

956 "lang": "Tarantino", 

957 "pos": "verb", 

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

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

960 }, 

961 "lloro": { 

962 "lang": "Neapolitan", 

963 "pos": "verb", 

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

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

966 }, 

967 "isso/essa": { 

968 "lang": "Neapolitan", 

969 "pos": "verb", 

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

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

972 }, 

973 "cu ije": { 

974 "lang": "Tarantino", 

975 "pos": "verb", 

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

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

978 }, 

979 "cu tu": { 

980 "lang": [ 

981 "Neapolitan", 

982 "Tarantino", 

983 ], 

984 "pos": "verb", 

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

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

987 }, 

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

989 "lang": "Tarantino", 

990 "pos": "verb", 

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

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

993 }, 

994 "cu nuje": { 

995 "lang": [ 

996 "Neapolitan", 

997 "Tarantino", 

998 ], 

999 "pos": "verb", 

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

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

1002 }, 

1003 "cu vuje": { 

1004 "lang": "Tarantino", 

1005 "pos": "verb", 

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

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

1008 }, 

1009 "cu lóre": { 

1010 "lang": "Tarantino", 

1011 "pos": "verb", 

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

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

1014 }, 

1015 "ca io": { 

1016 "lang": "Neapolitan", 

1017 "pos": "verb", 

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

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

1020 }, 

1021 "ca isso/ca essa": { 

1022 "lang": "Neapolitan", 

1023 "pos": "verb", 

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

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

1026 }, 

1027 "ca vuje": { 

1028 "lang": "Neapolitan", 

1029 "pos": "verb", 

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

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

1032 }, 

1033 "ca lloro": { 

1034 "lang": "Neapolitan", 

1035 "pos": "verb", 

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

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

1038 }, 

1039 "ja": { 

1040 "lang": [ 

1041 "Assan", 

1042 "Guerrero Amuzgo", 

1043 "Gutnish", 

1044 "Lower Sorbian", 

1045 "Polish", 

1046 "Serbo-Croatian", 

1047 "Slovak", 

1048 "Upper Sorbian", 

1049 ], 

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

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

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

1053 "else": { 

1054 "lang": "North Frisian", 

1055 "pos": "verb", 

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

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

1058 }, 

1059 }, 

1060 "ti": { 

1061 "lang": [ 

1062 "Albanian", 

1063 "Galician", 

1064 "Istriot", 

1065 "Ligurian", 

1066 "Piedmontese", 

1067 "Romansch", 

1068 "Serbo-Croatian", 

1069 "Slovene", 

1070 "Welsh", 

1071 "Cumprar", 

1072 ], 

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

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

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

1076 "else": { 

1077 "lang": "Czech", 

1078 "pos": "verb", 

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

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

1081 "else": { 

1082 "lang": "Hungarian", 

1083 "pos": "verb", 

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

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

1086 }, 

1087 }, 

1088 }, 

1089 "on / ona / ono": { 

1090 "lang": [ 

1091 "Czech", 

1092 "Old Czech", 

1093 "Polish", 

1094 "Serbo-Croatian", 

1095 "Slovak", 

1096 "Slovene", 

1097 ], 

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

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

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

1101 }, 

1102 "mi": { 

1103 "lang": [ 

1104 "Bislama", 

1105 "Esperanto", 

1106 "Fula", 

1107 "Ga", 

1108 "Gaulish", 

1109 "Guinea-Bissau Creole", 

1110 "Jamaican Creole", 

1111 "Kabuverdianu", 

1112 "Ligurian", 

1113 "Nigerian Pidgin", 

1114 "Nzadi", 

1115 "Önge", 

1116 "Papiamentu", 

1117 "Piedmontese", 

1118 "Pijin", 

1119 "Scottish Gaelic", 

1120 "Sranan Tongo", 

1121 "Tok Pisin", 

1122 "Welsh", 

1123 ], 

1124 "pos": "verb", 

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

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

1127 "else": { 

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

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

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

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

1132 "else": { 

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

1134 "pos": "verb", 

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

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

1137 "else": { 

1138 "lang": "Jarawa", 

1139 "pos": "verb", 

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

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

1142 "else": { 

1143 "lang": "Jarawa", 

1144 "pos": "verb", 

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

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

1147 }, 

1148 }, 

1149 }, 

1150 }, 

1151 }, 

1152 "vi": { 

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

1154 "pos": "verb", 

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

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

1157 "else": { 

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

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

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

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

1162 "else": { 

1163 "lang": "Slovene", 

1164 "pos": "verb", 

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

1166 "then": "second-person", 

1167 }, 

1168 }, 

1169 }, 

1170 "oni / one / ona": { 

1171 "lang": [ 

1172 "Czech", 

1173 "Old Czech", 

1174 "Polish", 

1175 "Serbo-Croatian", 

1176 "Slovak", 

1177 "Slovene", 

1178 ], 

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

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

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

1182 }, 

1183 "ono": { 

1184 "lang": "Hadza", 

1185 "pos": "verb", 

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

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

1188 }, 

1189 "me": { 

1190 "lang": "Romani", 

1191 "pos": "verb", 

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

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

1194 }, 

1195 "amen": { 

1196 "lang": "Romani", 

1197 "pos": "verb", 

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

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

1200 }, 

1201 "tumen": { 

1202 "lang": "Romani", 

1203 "pos": "verb", 

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

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

1206 }, 

1207 "on": { 

1208 "lang": "Romani", 

1209 "pos": "verb", 

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

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

1212 }, 

1213 "Lei": { 

1214 "lang": "Italian", 

1215 "if": "third-person", 

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

1217 }, 

1218 "Loro": { 

1219 "lang": "Italian", 

1220 "if": "third-person", 

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

1222 }, 

1223 "yo": { 

1224 "lang": [ 

1225 "Afar", 

1226 "Aragonese", 

1227 "Asturian", 

1228 "Chavacano", 

1229 "Kristang", 

1230 "Ladino", 

1231 "Spanish", 

1232 ], 

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

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

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

1236 "else": { 

1237 "lang": "Haitian Creole", 

1238 "pos": "verb", 

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

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

1241 }, 

1242 }, 

1243 "vos": { 

1244 "lang": [ 

1245 "Interlingua", 

1246 "Ladino", 

1247 "Latin", 

1248 "Old French", 

1249 "Old Occitan", 

1250 "Sardinian", 

1251 "Lorrain", 

1252 ], 

1253 "pos": "verb", 

1254 "then": "second-person", 

1255 "else": { 

1256 "lang": [ 

1257 "Ladin", 

1258 "Walloon", 

1259 ], 

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

1261 }, 

1262 }, 

1263 "tú": { 

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

1265 "pos": "verb", 

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

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

1268 }, 

1269 "jo": { 

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

1271 "pos": "verb", 

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

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

1274 "else": { 

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

1276 "pos": "verb", 

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

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

1279 }, 

1280 }, 

1281 "ell/ella vostè": { 

1282 "lang": "Catalan", 

1283 "pos": "verb", 

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

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

1286 }, 

1287 "nosaltres nós": { 

1288 "lang": "Catalan", 

1289 "pos": "verb", 

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

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

1292 }, 

1293 "vosaltres vós": { 

1294 "lang": "Catalan", 

1295 "pos": "verb", 

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

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

1298 }, 

1299 "ells/elles vostès": { 

1300 "lang": "Catalan", 

1301 "pos": "verb", 

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

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

1304 }, 

1305 "vostè": { 

1306 "lang": "Catalan", 

1307 "pos": "verb", 

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

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

1310 }, 

1311 "nosaltres": { 

1312 "lang": "Catalan", 

1313 "pos": "verb", 

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

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

1316 }, 

1317 "vostès": { 

1318 "lang": "Catalan", 

1319 "pos": "verb", 

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

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

1322 }, 

1323 "tú vos": { 

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

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

1326 }, 

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

1328 "lang": "Spanish", 

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

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

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

1332 }, 

1333 "nosotros nosotras": { 

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

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

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

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

1338 }, 

1339 "vosotros vosotras": { 

1340 "lang": ["Spanish"], 

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

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

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

1344 }, 

1345 "ellos/ellas ustedes": { 

1346 "lang": "Spanish", 

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

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

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

1350 }, 

1351 "usted": { 

1352 "lang": "Spanish", 

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

1354 "if": "imperative", 

1355 "then": [ 

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

1357 "third-person singular", 

1358 ], 

1359 }, 

1360 "ustedes": { 

1361 "lang": "Spanish", 

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

1363 "if": "imperative", 

1364 "then": [ 

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

1366 "third-person plural", 

1367 ], 

1368 }, 

1369 "je (j’)": { 

1370 "lang": "French", 

1371 "pos": [ 

1372 "verb", 

1373 "suffix", 

1374 ], 

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

1376 }, 

1377 "il, elle, on": { 

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

1379 "pos": [ 

1380 "verb", 

1381 "suffix", 

1382 ], 

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

1384 }, 

1385 "il, elle": { 

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

1387 "pos": [ 

1388 "verb", 

1389 "suffix", 

1390 ], 

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

1392 }, 

1393 "nous": { 

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

1395 "pos": [ 

1396 "verb", 

1397 "suffix", 

1398 ], 

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

1400 }, 

1401 "vous": { 

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

1403 "pos": [ 

1404 "verb", 

1405 "suffix", 

1406 ], 

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

1408 }, 

1409 "ils, elles": { 

1410 "lang": "French", 

1411 "pos": [ 

1412 "verb", 

1413 "suffix", 

1414 ], 

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

1416 }, 

1417 "que je (j’)": { 

1418 "lang": "French", 

1419 "pos": [ 

1420 "verb", 

1421 "suffix", 

1422 ], 

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

1424 }, 

1425 "que tu": { 

1426 "lang": [ 

1427 "French", 

1428 "Middle French", 

1429 "Old French", 

1430 "Lorrain", 

1431 ], 

1432 "pos": [ 

1433 "verb", 

1434 "suffix", 

1435 ], 

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

1437 }, 

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

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

1440 "pos": [ 

1441 "verb", 

1442 "suffix", 

1443 ], 

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

1445 }, 

1446 "que nous": { 

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

1448 "pos": [ 

1449 "verb", 

1450 "suffix", 

1451 ], 

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

1453 }, 

1454 "que vous": { 

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

1456 "pos": [ 

1457 "verb", 

1458 "suffix", 

1459 ], 

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

1461 }, 

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

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

1464 "pos": [ 

1465 "verb", 

1466 "suffix", 

1467 ], 

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

1469 }, 

1470 "ie (i’)": { 

1471 "lang": "Middle French", 

1472 "pos": "verb", 

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

1474 }, 

1475 "ilz, elles": { 

1476 "lang": "Middle French", 

1477 "pos": "verb", 

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

1479 }, 

1480 "que ie (i’)": { 

1481 "lang": "Middle French", 

1482 "pos": "verb", 

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

1484 }, 

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

1486 "lang": "Middle French", 

1487 "pos": "verb", 

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

1489 }, 

1490 "il": { 

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

1492 "pos": "verb", 

1493 "then": "third-person", 

1494 }, 

1495 "nos": { 

1496 "lang": [ 

1497 "Lorrain", 

1498 "Old French", 

1499 "Ladin", 

1500 ], 

1501 "pos": "verb", 

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

1503 }, 

1504 "que jo": { 

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

1506 "pos": "verb", 

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

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

1509 }, 

1510 "qu’il": { 

1511 "lang": "Old French", 

1512 "pos": "verb", 

1513 "if": "third-person", 

1514 "then": "third-person", 

1515 }, 

1516 "que nos": { 

1517 "lang": "Old French", 

1518 "pos": "verb", 

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

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

1521 }, 

1522 "que vos": { 

1523 "lang": [ 

1524 "Old French", 

1525 "Lorrain", 

1526 ], 

1527 "pos": "verb", 

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

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

1530 }, 

1531 "lui/jê": { 

1532 "lang": "Friulian", 

1533 "pos": "verb", 

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

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

1536 }, 

1537 "nô": { 

1538 "lang": "Friulian", 

1539 "pos": "verb", 

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

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

1542 }, 

1543 "vô": { 

1544 "lang": "Friulian", 

1545 "pos": "verb", 

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

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

1548 }, 

1549 "lôr": { 

1550 "lang": "Friulian", 

1551 "pos": "verb", 

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

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

1554 }, 

1555 "ես": { 

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

1557 "pos": "verb", 

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

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

1560 }, 

1561 "դու": { 

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

1563 "pos": "verb", 

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

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

1566 }, 

1567 "նա": { 

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

1569 "pos": "verb", 

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

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

1572 }, 

1573 "դուք": { 

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

1575 "pos": "verb", 

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

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

1578 }, 

1579 "(դու)": { 

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

1581 "pos": "verb", 

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

1583 "then": "rare", 

1584 }, 

1585 "(դուք)": { 

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

1587 "pos": "verb", 

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

1589 "then": "rare", 

1590 }, 

1591 "nós": { 

1592 "lang": [ 

1593 "Asturian", 

1594 "Galician", 

1595 "Indo-Portuguese", 

1596 "Mirandese", 

1597 "Portuguese", 

1598 ], 

1599 "pos": "verb", 

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

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

1602 }, 

1603 "el/ela/Vde.": { 

1604 "lang": "Galician", 

1605 "pos": "verb", 

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

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

1608 }, 

1609 "eles/elas/Vdes.": { 

1610 "lang": "Galician", 

1611 "pos": "verb", 

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

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

1614 }, 

1615 "mì": { 

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

1617 "pos": "verb", 

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

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

1620 }, 

1621 "tì te": { 

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

1623 "pos": "verb", 

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

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

1626 }, 

1627 "lù el / lee la": { 

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

1629 "pos": "verb", 

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

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

1632 }, 

1633 "nun": { 

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

1635 "pos": "verb", 

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

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

1638 }, 

1639 "violter / vialter": { 

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

1641 "pos": "verb", 

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

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

1644 }, 

1645 "lor": { 

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

1647 "pos": "verb", 

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

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

1650 }, 

1651 "iu": { 

1652 "lang": "Sicilian", 

1653 "pos": "verb", 

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

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

1656 }, 

1657 "iddu/idda": { 

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

1659 "pos": "verb", 

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

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

1662 }, 

1663 "éiu, eu": { 

1664 "lang": "Sassarese", 

1665 "pos": "verb", 

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

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

1668 }, 

1669 "eddu/edda": { 

1670 "lang": "Sassarese", 

1671 "pos": "verb", 

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

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

1674 }, 

1675 "eddi": { 

1676 "lang": "Sassarese", 

1677 "pos": "verb", 

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

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

1680 }, 

1681 "che éiu, chi eu": { 

1682 "lang": "Sassarese", 

1683 "pos": "verb", 

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

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

1686 }, 

1687 "chi eddu/edda": { 

1688 "lang": "Sassarese", 

1689 "pos": "verb", 

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

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

1692 }, 

1693 "chi noi": { 

1694 "lang": "Sassarese", 

1695 "pos": "verb", 

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

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

1698 }, 

1699 "chi voi": { 

1700 "lang": "Sassarese", 

1701 "pos": "verb", 

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

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

1704 }, 

1705 "chi eddi": { 

1706 "lang": "Sassarese", 

1707 "pos": "verb", 

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

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

1710 }, 

1711 "nuàutri": { 

1712 "lang": "Sicilian", 

1713 "pos": "verb", 

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

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

1716 }, 

1717 "vuàutri": { 

1718 "lang": "Sicilian", 

1719 "pos": "verb", 

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

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

1722 }, 

1723 "iddi": { 

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

1725 "pos": "verb", 

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

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

1728 }, 

1729 "(che) mì": { 

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

1731 "pos": "verb", 

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

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

1734 }, 

1735 "(che) tì te": { 

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

1737 "pos": "verb", 

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

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

1740 }, 

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

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

1743 "pos": "verb", 

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

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

1746 }, 

1747 "(che) nun": { 

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

1749 "pos": "verb", 

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

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

1752 }, 

1753 "(che) violter / vialter": { 

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

1755 "pos": "verb", 

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

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

1758 }, 

1759 "(che) lor": { 

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

1761 "pos": "verb", 

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

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

1764 }, 

1765 "tì": { 

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

1767 "pos": "verb", 

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

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

1770 }, 

1771 "lù / lee che el": { 

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

1773 "pos": "verb", 

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

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

1776 }, 

1777 "lor che el": { 

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

1779 "pos": "verb", 

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

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

1782 }, 

1783 "mé": { 

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

1785 "pos": "verb", 

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

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

1788 }, 

1789 "té": { 

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

1791 "pos": "verb", 

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

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

1794 }, 

1795 "lü / le": { 

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

1797 "pos": "verb", 

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

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

1800 }, 

1801 "lü / lé": { 

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

1803 "pos": "verb", 

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

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

1806 }, 

1807 "nóter": { 

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

1809 "pos": "verb", 

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

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

1812 }, 

1813 "vóter": { 

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

1815 "pos": "verb", 

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

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

1818 }, 

1819 "lur / lùre": { 

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

1821 "pos": "verb", 

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

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

1824 }, 

1825 "lur / lúre": { 

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

1827 "pos": "verb", 

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

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

1830 }, 

1831 "(che) mé": { 

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

1833 "pos": "verb", 

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

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

1836 }, 

1837 "(che) té": { 

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

1839 "pos": "verb", 

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

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

1842 }, 

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

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

1845 "pos": "verb", 

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

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

1848 }, 

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

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

1851 "pos": "verb", 

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

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

1854 }, 

1855 "(che) nóter": { 

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

1857 "pos": "verb", 

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

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

1860 }, 

1861 "(che) vóter": { 

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

1863 "pos": "verb", 

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

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

1866 }, 

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

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

1869 "pos": "verb", 

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

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

1872 }, 

1873 "non-finite forms": { 

1874 "lang": "Latin", 

1875 "pos": "verb", 

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

1877 "else": "", 

1878 }, 

1879 "ben": { 

1880 "lang": "Turkish", 

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

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

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

1884 }, 

1885 "sen": { 

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

1887 "pos": "verb", 

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

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

1890 }, 

1891 "o": { 

1892 "lang": [ 

1893 "Azerbaijani", 

1894 "Crimean Tatar", 

1895 "Fula", 

1896 "Igbo", 

1897 "Turkish", 

1898 "Welsh", 

1899 "Zazaki", 

1900 ], 

1901 "pos": "verb", 

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

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

1904 "else": { 

1905 "lang": "Kikuyu", 

1906 "pos": "verb", 

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

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

1909 "else": { 

1910 "lang": "Pnar", 

1911 "pos": "verb", 

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

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

1914 "else": { 

1915 "lang": "Yoruba", 

1916 "pos": "verb", 

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

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

1919 }, 

1920 }, 

1921 }, 

1922 }, 

1923 "biz": { 

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

1925 "pos": "verb", 

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

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

1928 }, 

1929 "siz": { 

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

1931 "pos": "verb", 

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

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

1934 }, 

1935 "onlar": { 

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

1937 "pos": "verb", 

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

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

1940 }, 

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

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

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

1944 "issu/issa/isse": { 

1945 "lang": "Sardinian", 

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

1947 "then": "", 

1948 }, 

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

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

1951 "issos/issas": { 

1952 "lang": "Sardinian", 

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

1954 "then": "", 

1955 }, 

1956 "chi deo chi eo": { 

1957 "lang": "Sardinian", 

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

1959 "then": "", 

1960 }, 

1961 "chi tue": { 

1962 "lang": "Sardinian", 

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

1964 "then": "", 

1965 }, 

1966 "chi issu/issa/isse": { 

1967 "lang": "Sardinian", 

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

1969 "then": "", 

1970 }, 

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

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

1973 "chi issos/issas": { 

1974 "lang": "Sardinian", 

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

1976 "then": "", 

1977 }, 

1978 "dego deo": { 

1979 "lang": "Sardinian", 

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

1981 "then": "", 

1982 }, 

1983 "issu/issa": { 

1984 "lang": "Sardinian", 

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

1986 "then": "", 

1987 }, 

1988 "chi dego chi deo": { 

1989 "lang": "Sardinian", 

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

1991 "then": "", 

1992 }, 

1993 "chi issu/issa": { 

1994 "lang": "Sardinian", 

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

1996 "then": "", 

1997 }, 

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

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

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

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

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

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

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

2005 "que nosautres": { 

2006 "lang": "Occitan", 

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

2008 "then": "", 

2009 }, 

2010 "que vosautres": { 

2011 "lang": "Occitan", 

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

2013 "then": "", 

2014 }, 

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

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

2017 "ти": { 

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

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

2020 "then": "", 

2021 }, 

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

2023 "lang": "Bulgarian", 

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

2025 "then": "", 

2026 }, 

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

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

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

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

2031 "lang": "Latvian", 

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

2033 "then": "", 

2034 }, 

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

2036 "el / ela / Vde.": { 

2037 "lang": "Galician", 

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

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

2040 }, 

2041 "vós": { 

2042 "lang": "Galician", 

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

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

2045 }, 

2046 "eles / elas / Vdes.": { 

2047 "lang": "Galician", 

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

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

2050 }, 

2051 "Vde.": { 

2052 "lang": "Galician", 

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

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

2055 }, 

2056 "Vdes.": { 

2057 "lang": "Galician", 

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

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

2060 }, 

2061 "ⲛ̄ⲧⲟⲕ": { 

2062 "lang": "Coptic", 

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

2064 "then": "", 

2065 }, 

2066 "ⲛ̄ⲧⲟ": { 

2067 "lang": "Coptic", 

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

2069 "then": "", 

2070 }, 

2071 "ⲛ̄ⲧⲟϥ": { 

2072 "lang": "Coptic", 

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

2074 "then": "", 

2075 }, 

2076 "ⲛ̄ⲧⲟⲥ": { 

2077 "lang": "Coptic", 

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

2079 "then": "", 

2080 }, 

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

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

2083 "ⲛ̀ⲑⲟⲕ": { 

2084 "lang": "Coptic", 

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

2086 "then": "", 

2087 }, 

2088 "ⲛ̀ⲑⲟ": { 

2089 "lang": "Coptic", 

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

2091 "then": "", 

2092 }, 

2093 "ⲛ̀ⲑⲟϥ": { 

2094 "lang": "Coptic", 

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

2096 "then": "", 

2097 }, 

2098 "ⲛ̀ⲑⲟⲥ": { 

2099 "lang": "Coptic", 

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

2101 "then": "", 

2102 }, 

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

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

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

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

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

2108 "ñuqanchik": { 

2109 "lang": "Quechua", 

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

2111 "then": "", 

2112 }, 

2113 "ñuqayku": { 

2114 "lang": "Quechua", 

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

2116 "then": "", 

2117 }, 

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

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

2120 "unë": { 

2121 "lang": "Albanian", 

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

2123 }, 

2124 "ai/ajo": { 

2125 "lang": "Albanian", 

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

2127 }, 

2128 "ne": { 

2129 "lang": "Albanian", 

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

2131 "else": { 

2132 "lang": "Livonian", 

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

2134 }, 

2135 }, 

2136 "ju": { 

2137 "lang": "Albanian", 

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

2139 }, 

2140 "ata/ato": { 

2141 "lang": "Albanian", 

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

2143 }, 

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

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

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

2147 "supine": "supine", 

2148 "past historic": "past historic", 

2149 "passato remoto": "past historic", 

2150 "future perfect": "future perfect", 

2151 "impersonal": "impersonal", 

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

2153 "auxiliary verb": "auxiliary", 

2154 "active adjectival participle": "active adjectival participle", 

2155 "contemporary adverbial participle": "contemporary adjectival participle", 

2156 "passive adjectival participle": "passive adjectival participle", 

2157 "Instrumental": "instrumental", 

2158 "exessive": "exessive", 

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

2160 "def.": "definite", 

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

2162 "absolutive": "absolutive", 

2163 "definite accusative": "definite accusative", 

2164 "definite genitive": "definite genitive", 

2165 "possessive": "possessive", 

2166 "Possessive": "possessive", 

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

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

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

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

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

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

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

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

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

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

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

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

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

2180 "predicative": "predicative", 

2181 "subjective": "subjective", 

2182 "preterite": "preterite", 

2183 "strong/subject": "strong subjective", 

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

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

2186 "proclitic": "proclitic", 

2187 "Proclitic": "proclitic", 

2188 "enclitic": "enclitic", 

2189 "Enclitic": "enclitic", 

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

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

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

2193 "ablative/genitive": "ablative genitive", 

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

2195 "Imperative": "imperative", 

2196 "imperfect (ra)": "imperfect", 

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

2198 "affirmative": { 

2199 "if": "imperative", 

2200 "then": "positive", 

2201 "else": "affirmative", 

2202 }, 

2203 "Affirmative": { 

2204 "if": "imperative", 

2205 "then": "positive", 

2206 "else": "affirmative", 

2207 }, 

2208 "Affirmative (+)": { 

2209 "if": "imperative", 

2210 "then": "positive", 

2211 "else": "affirmative", 

2212 }, 

2213 "participle": "participle", 

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

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

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

2217 "Conditional": "conditional", 

2218 "Inflection": "", 

2219 "Definite accusative": "definite accusative", 

2220 "present perfect": "present perfect", 

2221 "optative": "optative", 

2222 "positive degree": "positive", 

2223 "comparative degree": "comparative", 

2224 "superlative degree": "superlative", 

2225 "prolative": "prolative", 

2226 "comparative": { 

2227 "lang": [ 

2228 "Chechen", 

2229 "Mari", 

2230 "Nivkh", 

2231 ], 

2232 "pos": "noun", 

2233 "then": "comparative-case", 

2234 "else": "comparative", 

2235 }, 

2236 "causative": "causative", 

2237 "Indicative": "indicative", 

2238 "Class": "", 

2239 "11": "class-11", 

2240 "14": "class-14", 

2241 "15": "class-15", 

2242 "–": { 

2243 "lang": "Nepalese", 

2244 "then": "negative", 

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

2246 }, 

2247 "m": "masculine", 

2248 "f": "feminine", 

2249 "compound": "multiword-construction", 

2250 "reflexive": "reflexive", 

2251 "Reflexive": "reflexive", 

2252 "unstr.": "unstressed", 

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

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

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

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

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

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

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

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

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

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

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

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

2265 "Impersonal": "impersonal", 

2266 "Personal": "personal", 

2267 "Gerund": "gerund", 

2268 "Preterite": "preterite", 

2269 "Pluperfect": "pluperfect", 

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

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

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

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

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

2275 "number": "", 

2276 "dual": "dual", 

2277 "middle/ passive": "middle passive", 

2278 "Active": "active", 

2279 "Passive": "passive", 

2280 "first person": "first-person", 

2281 "second person": "second-person", 

2282 "third person": "third-person", 

2283 "first person singular": "first-person singular", 

2284 "second person singular": "second-person singular", 

2285 "third person singular": "third-person singular", 

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

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

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

2289 "middle/passive": "middle passive", 

2290 "present participle or gerund": "present participle gerund", 

2291 "(simple tenses)": "", 

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

2293 "past anterior": "past anterior", 

2294 "conditional perfect": "conditional perfect", 

2295 "middle": "middle", 

2296 "Indefinite": "indefinite", 

2297 "Definite": "definite", 

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

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

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

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

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

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

2304 "derivations": "", 

2305 "subject": "subjective", 

2306 "object": "objective", 

2307 "full": "stressed", 

2308 "pred.": "predicative", 

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

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

2311 r"Tense \ Voice": "", 

2312 "Strong declension": "strong", 

2313 "gender": "", 

2314 "Weak declension": "weak", 

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

2316 "Positive declarative": "", 

2317 "imperfective participle": "imperfective participle", 

2318 "personal": "personal", 

2319 "future participle": "future participle", 

2320 "personal participle": "personal participle", 

2321 "way of doing": "adverbial", 

2322 "aorist": "aorist", 

2323 "imperfective": "imperfective", 

2324 "perfective": "perfective", 

2325 "inferential": "inferential", 

2326 "progressive": "progressive", 

2327 "necessitative": "necessitative", 

2328 "Positive interrogative": "interrogative", 

2329 "Negative declarative": "negative", 

2330 "Negative interrogative": "negative interrogative", 

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

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

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

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

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

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

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

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

2339 "dative (dhanore)": "dative", 

2340 "ablative (rrjedhore)": "ablative", 

2341 "notes": "", 

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

2343 "masculine animate": "masculine animate", 

2344 "Masculine singular": "masculine singular", 

2345 "Neuter singular": "neuter singular", 

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

2347 "singular (vienskaitlis)": "singular", 

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

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

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

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

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

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

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

2355 "past perfect": "past perfect", 

2356 "plural only": "plural-only", 

2357 "m pers": "masculine personal", 

2358 "other": "", 

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

2360 "Supine": "supine", 

2361 "Imper. plural": "imperative plural", 

2362 "Ind. plural": "indicative plural", 

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

2385 "hortative": "hortative", 

2386 "reciprocal": "reciprocal", 

2387 "Reciprocal": "reciprocal", 

2388 "Preesens": "present", 

2389 "coactive": "coactive", 

2390 "objective": "objective", 

2391 "subsuntive": "subsuntive", 

2392 "relative": "relative", 

2393 "autonomous": "autonomous", 

2394 "past habitual": "past habitual", 

2395 "Habituals": "habitual", 

2396 "n gender": "neuter", 

2397 "Feminine singular": "feminine singular", 

2398 "Root word": "root", 

2399 "Aspect": "", 

2400 "Complete": "completive", 

2401 "Progressive": "progressive", 

2402 "Contemplative": "contemplative", 

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

2404 "ergative": "ergative", 

2405 "Ergative": "ergative", 

2406 "prosecutive": "prosecutive", 

2407 "equative": "equative", 

2408 "Verbal forms": "", 

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

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

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

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

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

2414 "Objective": "objective", 

2415 "Objective Genitive": "objective genitive", 

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

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

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

2419 "neuter(noun)": "neuter", 

2420 "masculine (person)": "masculine person", 

2421 "feminine (person)": "feminine person", 

2422 "Masculine plural": "masculine plural", 

2423 "modern": "", 

2424 "archaic / formal": "archaic formal", 

2425 "All": "", 

2426 "str.": "stressed", 

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

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

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

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

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

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

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

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

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

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

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

2438 "disused": "", 

2439 "all genders": "", 

2440 "number & gender": "", 

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

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

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

2444 "inanimate animate": "animate inanimate", 

2445 "Informal": "informal", 

2446 "modern / informal": "informal", 

2447 "i": { 

2448 "lang": [ 

2449 "German", 

2450 "Cimbrian", 

2451 ], 

2452 "then": "subjunctive subjunctive-i", 

2453 "else": { 

2454 "if": "subjunctive", 

2455 "then": "subjunctive-i", 

2456 "else": { 

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

2458 "then": "", 

2459 }, 

2460 }, 

2461 }, 

2462 "ii": { 

2463 "lang": [ 

2464 "German", 

2465 "Cimbrian", 

2466 ], 

2467 "then": "subjunctive subjunctive-ii", 

2468 "else": { 

2469 "if": "subjunctive", 

2470 "then": "subjunctive-ii", 

2471 }, 

2472 }, 

2473 "definite forms": "definite", 

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

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

2476 "oblique": "oblique", 

2477 "direct": "direct", 

2478 "Construct": "construct", 

2479 "Negative": "negative", 

2480 "auxiliary": "auxiliary", 

2481 "Conjunctive": "conjunctive", 

2482 "Perfective": "perfective", 

2483 "Stem forms": "stem", 

2484 "Continuative": "continuative", 

2485 "Continuative (連用形)": "continuative", 

2486 "Terminal (終止形)": "terminative", 

2487 "Attributive (連体形)": "attributive", 

2488 "Imperative (命令形)": "imperative", 

2489 "Imperfective (未然形)": "imperfective", 

2490 "Hypothetical (仮定形)": "hypothetical", 

2491 "Terminal": "terminative", 

2492 "Attributive": "attributive", 

2493 "Volitional": "volitional", 

2494 "Imperfective": "imperfective", 

2495 "Hypothetical": "hypothetical", 

2496 "Negative continuative": "negative continuative", 

2497 "Formal": "formal", 

2498 "Hypothetical conditional": "hypothetical conditional", 

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

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

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

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

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

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

2505 "benefactive": "benefactive", 

2506 "future in the past": "past-future", 

2507 "Passive past participle": "passive past participle", 

2508 "associative": "associative", 

2509 "distributive": "distributive", 

2510 "exclusive": "exclusive", 

2511 "future i": "future future-i", 

2512 "subjunctive i": "subjunctive subjunctive-i", 

2513 "subjunctive ii": "subjunctive subjunctive-ii", 

2514 "future ii": "future future-ii", 

2515 "л-participles": "participle", 

2516 "verbal adjective m.sg.": "masculine singular adjectival", 

2517 "verbal adverb": "adverbial", 

2518 "Compound tenses": "multiword-construction", 

2519 "има-perfect": "има perfect", 

2520 "има-pluperfect": "има pluperfect", 

2521 "има-perfect reported": "има perfect reported", 

2522 "има-future": "има future", 

2523 "има-future in the past": "има future past", 

2524 "future reported": "future reported", 

2525 "има-future reported": "има future reported", 

2526 "има-conditional": "има conditional", 

2527 "uninflected": "uninflected", 

2528 "inflected": "inflected", 

2529 # XXX pending removal; the participle marking is in sense 

2530 # "predicative/adverbial": { 

2531 # "lang": "Dutch", 

2532 # "pos": "verb", 

2533 # "then": ["participle predicative", "participle adverbial"], 

2534 # "else": "predicative adverbial", 

2535 # }, 

2536 "predicative/adverbial": "predicative adverbial", 

2537 "m./f. sing.": "masculine feminine singular", 

2538 "n. sing.": "neuter singular", 

2539 "masculine (vīriešu dzimte)": "masculine", 

2540 "feminine (sieviešu dzimte)": "feminine", 

2541 "plural (daudzskaitlis)": "plural", 

2542 "archaic plural": "archaic plural", 

2543 "Non-past": "non-past", 

2544 "Interrogative": "interrogative", 

2545 "Assertive": "assertive", 

2546 "Cause/Reason": "causative", 

2547 "Contrast": "contrastive", 

2548 "Conjunction": "conjunctive", 

2549 "Condition": "conditional", 

2550 "Verbal nouns": "noun-from-verb", 

2551 "Past-tense verbal nouns": "past noun-from-verb", 

2552 "Determiners": "determiner", 

2553 "simple perfect": "perfect", 

2554 "Notes": { 

2555 "lang": "Assamese", 

2556 "then": "dummy-remove-this-cell", 

2557 "else": "dummy-skip-this", 

2558 }, 

2559 # ~ "Notes": "dummy-ignore-skipped", 

2560 "postpositions taking a dative case": "postpositional with-dative", 

2561 "postpositions taking a genitive case": "postpositional with-genitive", 

2562 "postpositions taking an instrumental case": "postpositional with-instrumental", 

2563 "postpositions taking an adverbial case": "postpositional with-adverb", 

2564 "Motive": "motive-form", 

2565 "zu-infinitive": "infinitive infinitive-zu", 

2566 "active participle": "active participle", 

2567 "active voice": "active", 

2568 "Active voice ➤ — Imperfective aspect": "active imperfective", 

2569 "Active voice ➤ — Imperfective aspect ➤": "active imperfective", 

2570 "Active voice ➤": "active", 

2571 "Passive voice ➤": "passive", 

2572 "Active voice": "active", 

2573 "Passive voice": "passive", 

2574 "Imperfective aspect ➤": "imperfective", 

2575 "Perfective aspect ➤": "perfective", 

2576 "Imperfective aspect": "imperfective", 

2577 "Perfective aspect": "perfective", 

2578 "Perfect aspect ➤": "perfective", 

2579 "Perfect aspect": "perfective", 

2580 "Present perfect ➤": { 

2581 "lang": "Greek", 

2582 "then": "dummy-skip-this", # e.g περπατάω/Greek 

2583 }, 

2584 "Past perfect ➤": { 

2585 "lang": "Greek", 

2586 "then": "dummy-skip-this", # e.g περπατάω/Greek 

2587 }, 

2588 "Future perfect ➤": { 

2589 "lang": "Greek", 

2590 "then": "dummy-skip-this", # e.g περπατάω/Greek 

2591 }, 

2592 "Indicative mood ➤": "indicative", 

2593 "Past tenses ➤": { 

2594 "lang": "Greek", 

2595 "then": "", # tense column follows 

2596 }, 

2597 "Non-past tenses ➤": "", 

2598 "Dependent ➤": "dependent", 

2599 "Dependent": "dependent", 

2600 "dependent": "dependent", # immee/Manx 

2601 "Present participle➤": "present participle", 

2602 "Perfect participle➤": "past participle", 

2603 "Nonfinite form➤": { 

2604 "lang": "Greek", 

2605 "then": "infinitive-aorist", 

2606 }, 

2607 "Subjunctive mood ➤": { 

2608 "lang": "Greek", 

2609 "then": "subjunctive dummy-tense", 

2610 "else": "subjunctive", 

2611 }, 

2612 "Imperative mood ➤": { 

2613 "lang": "Greek", 

2614 "then": "imperative dummy-tense", 

2615 "else": "imperative", 

2616 }, 

2617 "Imperative mood": { 

2618 "lang": "Greek", 

2619 "then": "imperative dummy-tense", 

2620 "else": "imperative", 

2621 }, 

2622 "Subjunctive mood": { 

2623 "lang": "Greek", 

2624 "then": "subjunctive dummy-tense", 

2625 "else": "subjunctive", 

2626 }, 

2627 "Present ➤": "present", 

2628 "Imperfect ➤": "imperfect", 

2629 "Simple past ➤": "past", 

2630 "Future ➤": "future", 

2631 "Future tenses ➤": "future", 

2632 "Continuous ➤": "progressive", 

2633 "Simple ➤": "", 

2634 "Present participle ➤": "present participle", 

2635 "Simple past": "past", 

2636 "Habitual": "habitual", 

2637 "passive participle": "passive participle", 

2638 "passive voice": "passive", 

2639 "singular (жекеше)": "singular", 

2640 "plural (көпше)": "plural", 

2641 "nominative (атау септік)": "nominative", 

2642 "genitive (ілік септік)": "genitive", 

2643 "dative (барыс септік)": "dative", 

2644 "accusative (табыс септік)": "accusative", 

2645 "locative (жатыс септік)": "locative", 

2646 "ablative (шығыс септік)": "ablative", 

2647 "instrumental (көмектес септік)": "instrumental", 

2648 "compound tenses": "multiword-construction", 

2649 "Sentence-final forms": "sentence-final", 

2650 "Connective forms": "connective", 

2651 "Noun and determiner forms": "", 

2652 "Verbal Noun": "noun-from-verb", 

2653 "count form": "count-form", 

2654 "infinitive (nafnháttur)": "infinitive", 

2655 "supine (sagnbót)": "supine", 

2656 "present participle (lýsingarháttur nútíðar)": "present participle", 

2657 "indicative (framsöguháttur)": "indicative", 

2658 "subjunctive (viðtengingarháttur)": "subjunctive", 

2659 "present (nútíð)": "present", 

2660 "past (þátíð)": "past", 

2661 "imperative (boðháttur)": "past", 

2662 "Forms with appended personal pronoun": "pronoun-included", 

2663 "Sentence-final forms with honorific": "sentence-final honorific", 

2664 "Connective forms with honorific": "connective honorific", 

2665 "Noun and determiner forms with honorific": "honorific", 

2666 "Hortative": "hortative", 

2667 "singular (uncountable)": "singular uncountable", 

2668 "absolute": "absolute", 

2669 "Positive absolute": "positive absolute", 

2670 "Negative absolute": "negative absolute", 

2671 "singular (singulare tantum)": "singular singular-only", 

2672 "Nom. sg.": "nominative singular", 

2673 "Gen. sg.": "genitive singular", 

2674 "nom. sing.": "nominative singular", 

2675 "gen. sing.": "genitive singular", 

2676 "Non-finite forms": "dummy-mood", 

2677 "1st singular я": "first-person singular", 

2678 "second-person": "second-person", 

2679 "4th person": "fourth-person", 

2680 "invertive": "invertive", 

2681 "Simple finite forms": "finite-form", 

2682 "Positive form": "positive", 

2683 "Complex finite forms": "dummy-reset-headers", # Reset 

2684 "2nd singular ти": "second-person singular", 

2685 "3rd singular він / вона / воно": "third-person singular", 

2686 "1st plural ми": "first-person plural", 

2687 "2nd plural ви": "second-person plural", 

2688 "3rd plural вони": "third-person plural", 

2689 "first-person": "first-person", 

2690 "plural ми / ви / вони": "plural", 

2691 "masculine я / ти / він": "masculine", 

2692 "feminine я / ти / вона": "feminine", 

2693 "neuter воно": "neuter", 

2694 "vocative form": "vocative", 

2695 "Uncountable": "uncountable", 

2696 "definite unspecified": "definite unspecified", 

2697 "definite proximal": "definite proximal", 

2698 "definite distal": "definite distal", 

2699 "informal": "informal", 

2700 "f gender": "feminine", 

2701 "simple tenses": "", 

2702 "present indicative": "present indicative", 

2703 "ñuqap (my)": "first-person singular", 

2704 "qampa (your)": "second-person singular", 

2705 "paypa (his/her/its)": "third-person singular", 

2706 "ñuqanchikpa (our(incl))": "first-person plural inclusive", 

2707 "ñuqaykup (our(excl))": "first-person plural exclusive", 

2708 "qamkunap (your(pl))": "second-person plural", 

2709 "paykunap (their)": "third-person plural", 

2710 "tense": "", 

2711 "m.": "masculine", 

2712 "f.": "feminine", 

2713 "Stem": "stem", 

2714 "aorist stem": "stem", 

2715 "pos.": "positive", 

2716 "neg.": "negative", 

2717 "future perfect in the past": "future perfect past", 

2718 "renarrative": "renarrative", 

2719 "present and imperfect": ["present", "imperfect"], 

2720 "future and future in the past": ["future", "future past"], 

2721 "present and past perfect": ["present", "past perfect"], 

2722 "future perfect and future perfect in the past": [ 

2723 "future perfect", 

2724 "future past perfect", 

2725 ], 

2726 "dubitative": "dubitative", 

2727 "conclusive": "conclusive", 

2728 "f-s2": "", # Icelandic ['bölvun', 'létteind', 'dvöl'] 

2729 "Indicative mood": "indicative", 

2730 "2,3 sg, 1,2,3 pl": { 

2731 "lang": "Greek", 

2732 "then": "dummy-skip-this", # used in περπατάω/Greek 

2733 }, 

2734 "Present perfect": "present perfect", 

2735 "Past perfect": "past perfect", 

2736 "Future perfect": "future perfect", 

2737 "Inflected colloquial forms": "colloquial", 

2738 "adjective active participle": "adjective active participle", 

2739 "adverbial active participle": "adverbial active participle", 

2740 "nominal active participle": "noun-from-verb active participle", 

2741 "plural unknown": "plural unknown", 

2742 "Contrafactual": "counterfactual", 

2743 "finite forms": "finite-form", 

2744 "Indefinite forms": "indefinite", 

2745 "Definite forms": "definite", 

2746 "numeral": "numeral", 

2747 "non-numeral (plural)": "non-numeral plural", 

2748 "Strong (indefinite) inflection": "strong indefinite", 

2749 "Weak (definite) inflection": "weak definite", 

2750 "directive": "directive", 

2751 "destinative": "destinative", 

2752 "Regular": "", 

2753 "PERFECTIVE": "perfective", 

2754 "Present passive": "present passive", 

2755 "1st dual": "first-person dual", 

2756 "2nd dual": "second-person dual", 

2757 "Undeclined": "", 

2758 "Oblique Infinitive": "oblique infinitive", 

2759 "Prospective Agentive": "prospective agentive", 

2760 "prospective": "prospective", 

2761 "non-prospective": "non-prospective", 

2762 "Adjectival": "adjectival", 

2763 "մեք": "first-person plural", 

2764 "նոքա": "third-person plural", 

2765 "imperatives": "imperative", 

2766 "cohortative": "cohortative", 

2767 "prohibitive": "prohibitive", 

2768 "A-stem": "", 

2769 "continuous": "continuative", 

2770 "f-s1": "", # Icelandic ['blæðing', 'Sigríður', 'líkamsræktarstöð'] 

2771 "+": "positive", 

2772 "Unknown": "unknown", 

2773 "Simple": "", 

2774 "simple": { 

2775 "lang": ["English"], 

2776 "then": "dummy-mood", 

2777 "else": "", 

2778 }, 

2779 "formal": "formal", 

2780 "INDICATIVE (īstenības izteiksme)": "indicative", 

2781 "IMPERATIVE (pavēles izteiksme)": "imperative", 

2782 "Present (tagadne)": "present", 

2783 "Past (pagātne)": "past", 

2784 "Future (nākotne)": "future", 

2785 "1st pers. sg.": "first-person singular", 

2786 "2nd pers. sg.": "second-person singular", 

2787 "3rd pers. sg.": "third-person singular", 

2788 "1st pers. pl.": "first-person plural", 

2789 "2nd pers. pl.": "second-person plural", 

2790 "3rd pers. pl.": "third-person plural", 

2791 "RENARRATIVE (atstāstījuma izteiksme)": "renarrative", 

2792 "Present Active 1 (Adj.)": "participle participle-1 present active adjectival", 

2793 "Present Active 2 (Adv.)": "participle participle-2 present active adverbial", 

2794 "Present Active 3 (Adv.)": "participle participle-3 present active adverbial", 

2795 "Present Active 4 (Obj.)": "participle participle-4 present active", 

2796 "CONDITIONAL (vēlējuma izteiksme)": "conditional", 

2797 "Past Active": { 

2798 "if": "participle", 

2799 "then": "participle past active", # saprast/Latvian/Verb 

2800 "else": "past active", 

2801 }, 

2802 "Present Passive": { 

2803 "if": "participle", 

2804 "then": "participle present passive", # saprast/Latvian/Verb 

2805 "else": "present passive", 

2806 }, 

2807 "Past Passive": { 

2808 "if": "participle", 

2809 "then": "participle past passive", 

2810 "else": "past passive", 

2811 }, 

2812 "DEBITIVE (vajadzības izteiksme)": "debitive", 

2813 "NOMINAL FORMS": "dummy-mood", 

2814 "Infinitive (nenoteiksme)": "infinitive", 

2815 "Conjunctive 1": "conjunctive conjunctive-1", 

2816 "Conjunctive 2": "conjunctive conjunctive-2", 

2817 "Nonfinite form": "dummy-mood", 

2818 "Perfect participle": "perfect participle", 

2819 "perfect progressive": "perfect progressive", 

2820 "Recently Completive": "completive past past-recent", 

2821 "subject non-past participle": "subjective non-past participle", 

2822 "subject past participle": "subjective past participle", 

2823 "subject future definite participle": "subjective future definite participle", 

2824 "non-subject participle": "non-subject participle", 

2825 "general temporal participle": "general temporal participle", 

2826 "participle of intensification": "intensifier participle", 

2827 "specific temporal participle": "specific temporal participle", 

2828 "modal participle": "modal participle", 

2829 "perfect 1": "perfect perfect-i", 

2830 "perfect 2": "perfect perfect-ii", 

2831 "future-in-the-past": "past-future", 

2832 "obligational": "obligative", 

2833 "evidential": "evidential", 

2834 "converb": "converb", 

2835 "negative potential": "negative potential", 

2836 "adjective passive participle": "adjectival passive participle", 

2837 "adverbial passive participle": "adverbial passive participle", 

2838 "nominal passive participle": "noun-from-verb passive participle", 

2839 "IMPERFECTIVE": "imperfective", 

2840 "Non-Aspectual": "non-aspectual", 

2841 "PERF": "perfect", 

2842 "FUT": "future", 

2843 "PST": "past", 

2844 "PRS": "present", 

2845 "Presumptive": "presumptive", 

2846 "PRS PST": "present past", 

2847 "PRS PST FUT": "present past future", 

2848 "agentive": "agentive", 

2849 "FUTURE": "future", 

2850 "Jussive": "jussive", 

2851 "Root": { 

2852 "lang": "Limburgish", # beer/Limburgish 

2853 "then": "", 

2854 "else": "root", 

2855 }, 

2856 "Involuntary": "involuntary", # Verb form, e.g., khitan/Indonesian 

2857 "part participle": "past participle", 

2858 "direct present": "direct present", 

2859 "indirect present": "indirect present", 

2860 "singular/plural": "singular plural", 

2861 "personal infinitive": "personal infinitive", 

2862 "Class 1": "class-1", 

2863 "Class 2": "class-2", 

2864 "Class 3": "class-3", 

2865 "Class 4": "class-4", 

2866 "Class 5": "class-5", 

2867 "Class 6": "class-6", 

2868 "Class 7": "class-7", 

2869 "Class 8": "class-8", 

2870 "Class 9": "class-9", 

2871 "Class 10": "class-10", 

2872 "Class 11": "class-11", 

2873 "Class 12": "class-12", 

2874 "Class 13": "class-13", 

2875 "Class 14": "class-14", 

2876 "Class 15": "class-15", 

2877 "Class 16": "class-16", 

2878 "Class 17": "class-17", 

2879 "Class 18": "class-18", 

2880 "Class 2 strong": "class-2 strong", 

2881 "Class 4 strong": "class-4 strong", 

2882 "Class 6 strong": "class-6 strong", 

2883 "Class 7 strong": "class-7 strong", 

2884 "imperfect subjunctive": "imperfect subjunctive", 

2885 "dative-locative": "dative locative", 

2886 "directional": "directional", 

2887 "possessive pronoun": "possessive pronoun", 

2888 "possessive determiner": "possessive determiner", 

2889 "genderless, nonspecific (formal)": "gender-neutral formal", 

2890 "genderless": "gender-neutral", 

2891 "standard formal": "formal", 

2892 "archaic informal": "archaic informal", 

2893 "Gen/Dat": "genitive dative", 

2894 "Nom/Acc": "nominative accusative", 

2895 "uncountable": "uncountable", 

2896 "gender f": "feminine", 

2897 "Present subjunctive": "present subjunctive", 

2898 "Future progressive presumptive": "future progressive presumptive", 

2899 "Past progressive": "past progressive", 

2900 "Negative present progressive": "negative present progressive", 

2901 "1.": "first-person", 

2902 "2.": "second-person", 

2903 "3. m": "third-person masculine", 

2904 "3. f": "third-person feminine", 

2905 "3. n": "third-person neuter", 

2906 "1st person plural inclusive": "first-person plural inclusive", 

2907 "1st person plural exclusive": "first-person plural exclusive", 

2908 "3rd person plural participle": "third-person plural participle", 

2909 "Indefinite subject (passive)": "passive", 

2910 "3rd person pl": "third-person plural", 

2911 "2nd person pl": "second-person plural", 

2912 "3rd person dual": "third-person dual", 

2913 "2nd person dual": "second-person dual", 

2914 "1st person dual": "first-person dual", 

2915 "2nd person sg": "second-person singular", 

2916 "3rd-person sg": "third-person singular", 

2917 "perfective aorist": "perfective aorist", 

2918 "f-w2": "", # málfræði/Icelandic 

2919 "f-s3": "", # kvaðratrót/Icelandic 

2920 "m-s2": "", 

2921 "m-s3": "", 

2922 "3rd person plural (3p) Wiinawaa": "third-person plural", 

2923 "2nd-person plural (2p) Giinawaa": "second-person plural", 

2924 "1st person plural inclusive (21) Giinawind": "first-person plural inclusive", 

2925 "1st person plural exclusive (1p) Niinawind": "first-person plural exclusive", 

2926 "Indefinite (X)": "indefinite", 

2927 "Obviative (3')": "third-person obviative", 

2928 "1st person (1s) Niin": "first-person singular", 

2929 "2nd person (2s) Giin": "second-person singular", 

2930 "3rd person (3s) Wiin": "third-person singular", 

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

2932 "2nd sg": "second-person singular", 

2933 "3rd sg": "third-person singular", 

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

2935 "2nd pl": "second-person plural", 

2936 "3rd pl": "third-person plural", 

2937 "2nd sg neuter": "second-person singular neuter", 

2938 "2nd sg for": "second-person singular formal", 

2939 "Mood / Tense": "", 

2940 "hypothetic": "hypothetical", 

2941 "Indefinite feminine and masculine gender": "indefinite feminine masculine", 

2942 "contrafactual": "counterfactual", 

2943 "presumptive": "presumptive", 

2944 "habitual": "habitual", 

2945 "2ⁿᵈ person*": "second-person", 

2946 "мынем (“my”)": "first-person singular possessive", 

2947 "Primary stem": "stem stem-primary", 

2948 "Secondary stem": "stem stem-secondary", 

2949 "intentive": "intentive", 

2950 "serial": "habitual", 

2951 "characteristic": "adverbial", # patjaṉi/Pitjantjatjara 

2952 "imperative continuous": "imperative continuative", 

2953 "precursive": "precursive", 

2954 "limitative": "limitative", 

2955 "circumstantial focalising": "circumstantial focalising", 

2956 "focalising precursive": "focalising precursive", 

2957 "focalising": "focalising", 

2958 "expectative": "expectative", 

2959 "nominative (ప్రథమా విభక్తి)": "nominative", 

2960 "genitive": "genitive", 

2961 "locative": "locative", 

2962 "1st मैं": "first-person", 

2963 "basic": "", 

2964 "Preterite I": "preterite preterite-i", 

2965 "Preterite II": "preterite preterite-ii", 

2966 "Pluperfect I": "pluperfect pluperfect-i", 

2967 "Pluperfect II": "pluperfect pluperfect-ii", 

2968 "Durative preterite": "durative preterite", 

2969 "Frequentative preterite": "frequentative preterite", 

2970 "Auxiliary": "auxiliary", 

2971 "Nominative Accusative": "nominative accusative", 

2972 "obviative singular (0')": "obviative singular", 

2973 "singular (0')": "singular", 

2974 "Indefinite masculine gender": "indefinite masculine", 

2975 "Definite masculine gender": "definite masculine", 

2976 "SUBJECT": "subjective", 

2977 "Singular OBJECT": { 

2978 "lang": "Pashto", 

2979 "then": "object-singular object-concord", 

2980 "else": "singular objective", 

2981 }, 

2982 "Plural OBJECT": { 

2983 "lang": "Pashto", 

2984 "then": "object-plural object-concord", 

2985 "else": "plural objective", 

2986 }, 

2987 "indefinite forms": "indefinite", 

2988 "2ⁿᵈ person singular": "second-person singular", 

2989 "2ⁿᵈ person plural": "second-person plural", 

2990 "3ʳᵈ person [sing. and plural]": "third-person singular plural", 

2991 "Actor": {"lang": "Tagalog", "then": "trigger-actor"}, 

2992 "Object": {"lang": "Tagalog", "then": "trigger-object"}, 

2993 "Locative": { 

2994 "lang": "Tagalog", 

2995 "then": "trigger-locative", 

2996 "else": "locative", 

2997 }, 

2998 "Instrument": { 

2999 "lang": "Tagalog", 

3000 "then": "trigger-instrument", 

3001 "else": "instrumental", 

3002 }, 

3003 "Causative": { 

3004 "lang": "Tagalog", 

3005 "then": "trigger-causative", 

3006 "else": "causative", 

3007 }, 

3008 "Referential": {"lang": "Tagalog", "then": "trigger-referential"}, 

3009 "1ˢᵗ person m": "first-person masculine", 

3010 "1ˢᵗ person f": "first-person feminine", 

3011 "2ⁿᵈ person m": "second-person masculine", 

3012 "2ⁿᵈ person f": "second-person feminine", 

3013 "Tense/Mood": "", 

3014 "masculine object": "masculine objective", 

3015 "feminine object": "feminine objective", 

3016 "neuter object": "neuter objective", 

3017 "singular subject": "singular subjective", 

3018 "plural subject": "plural subjective", 

3019 "Allative I": "allative allative-i", 

3020 "Allative II": "allative allative-ii", 

3021 "conditional active": "conditional active", 

3022 "subjunctive active": "subjunctive active", 

3023 "Concessive": "concessive", 

3024 "Preparative": "preparative", 

3025 "Durative": "durative", 

3026 "Subordinative (Past gerund)": "past gerund", 

3027 "Coordinative (Infinitive)": "infinitive", 

3028 "Converbs": "converb", 

3029 "Optative": "optative", 

3030 "Polite": "polite", 

3031 "Strong": "emphatic", 

3032 "Normal": "", 

3033 "Present-future": "future", 

3034 "habitual/conditional past": "habitual conditional past", 

3035 "simple past": "past", 

3036 "present continuous": "present continuative", 

3037 "simple present": "present", 

3038 "polite": "polite", 

3039 "familiar": "familiar", 

3040 "very familiar": "familiar", 

3041 "PAST TENSE": "past", 

3042 "3rd person m": "third-person masculine", 

3043 "3rd person f": "third-person feminine", 

3044 "3rd m": "third-person masculine", 

3045 "3rd m.": "third-person masculine", # hug/Manx 

3046 "gender m": "masculine", 

3047 "dative form": "dative", 

3048 "continuative": "continuative", 

3049 "circumposition": "circumposition", 

3050 "singular and plural": "singular plural", 

3051 "accusative indefinite-dative": "accusative indefinite dative", 

3052 "Literary forms": "literary", 

3053 "Case \\ Number": "", 

3054 "masc./fem.": "masculine feminine", 

3055 "gender n": "neuter", 

3056 "m or n": "masculine neuter", 

3057 "actor I": "actor-i", 

3058 "Sociative": "sociative", 

3059 "Present negative": "present negative", 

3060 "Possessive determiner": "possessive determiner", 

3061 "Proximal": "proximal", 

3062 "ergative-instrumental": "ergative instrumental", 

3063 "Plural/Distributive": "plural distributive", 

3064 "stressed": "stressed", 

3065 "vir pl": "virile plural", 

3066 "poss. adj.": "possessive adjective", 

3067 "Gender": "", 

3068 "All numbers": "", 

3069 "m obl, pl": "masculine oblique plural", 

3070 "m & n": "masculine neuter", 

3071 "dative-lative-locative": "dative lative locative", 

3072 "aspect": "", 

3073 "Third person m": "third-person masculine", 

3074 "Dual virile": "dual virile", 

3075 "Accusative /Genitive": "accusative genitive", 

3076 "1st c. sg. (me)": "first-person singular", 

3077 "Future tense": "future", 

3078 "👤 singular": "singular", 

3079 "👥 dual": "dual", 

3080 "👤👥👥 plural": "plural", 

3081 "Feminine i/ō-stem": "feminine stem", 

3082 "past indicative": "past indicative", 

3083 "Irregular with past tense": "irregular", 

3084 "Abs.": "absolute", 

3085 "Conj.": "conjunct", 

3086 "Rel.": "relative", 

3087 "Positive relative": "positive relative", 

3088 "Negative relative": "negative relative", 

3089 "intentional": "intentive", 

3090 "oblig": "obligative", 

3091 "indef": "indefinite", 

3092 "def": "definite", 

3093 "perf": "perfective", 

3094 "cont": "continuative", 

3095 "comp": "completive", 

3096 "simpl": "", 

3097 "nominal non-finites": "noun-from-verb dummy-mood", 

3098 "comitative": "comitative", 

3099 "abessive": "abessive", 

3100 "essive": "essive", 

3101 "terminative": "terminative", 

3102 "translative": "translative", 

3103 "inessive": "inessive", 

3104 "partitive": "partitive", 

3105 "nominative": "nominative", 

3106 "singulare tantum": "singular-only", 

3107 "Absolutive": "absolutive", 

3108 "Infinitival": "infinitive", 

3109 "negatival complement": "negative", 

3110 "complementary infinitive": "infinitive", # XXX what add gp/Egyptian 

3111 "stative stem": "stative", 

3112 "periphrastic imperfective": "imperfective", 

3113 "periphrastic prospective": "prospective", 

3114 "‘pseudoverbal’ forms": "", 

3115 "suffix conjugation": "", 

3116 "contingent": "contingent", 

3117 "obligative": "obligative", 

3118 "potentialis": "potential", 

3119 "normal": "", 

3120 "1ˢᵗ Perfect": "perfect-i", 

3121 "2ⁿᵈ Perfect": "perfect-ii", 

3122 "m. sing.": "masculine singular", 

3123 "f. sing.": "feminine singular", 

3124 "c. sing.": "common-gender singular", 

3125 "pl.": "plural", 

3126 "high-resp.": "formal deferential", 

3127 "Conjugation type": "conjugation-type", 

3128 "Injunctive": "injunctive", 

3129 "Habitual participle": "habitual participle", 

3130 "Future conditional": "future conditional", 

3131 "condizionale passato": "past conditional", # ripromettersi/Italian 

3132 "futuro anteriore": "future perfect", # ripromettersi/Italian 

3133 "passato prossimo": "perfect", # ripromettersi/Italian 

3134 "trapassato remoto": "preterite-perfect", # ripromettersi/Italian 

3135 "trapassato prossimo": "past perfect", # ripromettersi/Italian 

3136 "(♂)": "masculine", 

3137 "Contingent": "contingent", 

3138 "Reason": "reason", 

3139 "Goal": "goal", 

3140 "Agentive (emphatic)": "agentive emphatic", 

3141 "Genitive infinitive": "genitive infinitive", 

3142 "Conjugative": "conjugative", 

3143 "Gerund Past participle Agentive": "gerund past participle agentive", 

3144 "construct": "construct", 

3145 "Form": "", 

3146 "form": "", 

3147 "Isolated forms": "", 

3148 "isolated forms": "", # a ܡܘܙܐ/Assyrian Neo-Aramaic 

3149 "Possessed": "possessed-form", 

3150 "Unpossessed": "unpossessed-form", 

3151 "past imperfective": "past imperfective", 

3152 "past perfective": "past perfective", 

3153 "Conjunct": "conjunct", 

3154 "dir m s": "direct masculine singular", 

3155 "m p obl m s": ["masculine plural", "oblique masculine singular"], 

3156 "f s": "feminine singular", 

3157 "f p": "feminine plural", 

3158 "gerunds": "gerund", 

3159 "perfect subjunctive": "perfect subjunctive", 

3160 "future subjunctive": "future subjunctive", 

3161 "screeves": "", # კვეთს/Georgian 

3162 "second-person singular formal": "second-person singular formal", 

3163 "second-person singular informal": "second-person singular informal", 

3164 "first-person singular": "first-person singular", 

3165 "possessive forms": "possessive", 

3166 "Indirect": "indirect", 

3167 "Direct": "direct", 

3168 "Soft": "soft", 

3169 "Hard": "hard", 

3170 "Nasalization": "mutation-nasal", 

3171 "soft": { 

3172 "if": "mutation", 

3173 "then": "mutation-soft", 

3174 "else": { 

3175 "lang": "Breton", 

3176 "then": "mutation-soft", 

3177 "else": "soft", 

3178 }, 

3179 }, 

3180 "nasal": { 

3181 "if": "mutation", 

3182 "then": "mutation-nasal", 

3183 }, 

3184 "aspirate": { 

3185 "if": "mutation", 

3186 "then": "mutation-aspirate", 

3187 "else": { 

3188 "lang": "Breton", 

3189 "then": "mutation-aspirate", 

3190 }, 

3191 }, 

3192 "mixed": { 

3193 "if": "mutation", 

3194 "then": "mutation-mixed", 

3195 "else": "mixed", 

3196 }, 

3197 "radical": { 

3198 "if": "mutation", 

3199 "then": "mutation-radical", 

3200 }, 

3201 "Radical": { 

3202 "if": "mutation", 

3203 "then": "mutation-radical", 

3204 }, 

3205 "with h-prothesis": { 

3206 "if": "mutation", 

3207 "then": "prothesis-h", 

3208 }, 

3209 "with t-prothesis": { 

3210 "if": "mutation", 

3211 "then": "prothesis-t", 

3212 }, 

3213 "Lenition": "lenition", 

3214 "Eclipsis": "eclipsis", 

3215 "+ object concord": "object-concord", 

3216 "lative": "lative", 

3217 "post./nom.": "postpositional", # XXX what is nom. ? 

3218 "Measurement": {"lang": "Tagalog", "then": "trigger-measurement"}, 

3219 "past continuous": "past continuative", 

3220 "with definite article": "definite includes-article", 

3221 "with indefinite article": "indefinite includes-article", 

3222 "(usually without article)": "usually-without-article", 

3223 "Completive": "completive", 

3224 "dative definite": "dative definite", 

3225 "nominative definite": "nominative definite", 

3226 "long nominative": "nominative", 

3227 "Past subjunctive": "past subjunctive", 

3228 "Prot.": "prototonic", 

3229 "Deut.": "deuterotonic", 

3230 "Imperfect": "imperfect", 

3231 "Present indicative": "present indicative", 

3232 "Passive pl.": "passive plural", 

3233 "Passive sg.": "passive singular", 

3234 "1st sg.": "first-person singular", 

3235 "2nd sg.": "second-person singular", 

3236 "3rd sg.": "third-person singular", 

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

3238 "2nd pl.": "second-person plural", 

3239 "3rd pl.": "third-person plural", 

3240 "Indefinite feminine gender": "indefinite feminine", 

3241 "Definite feminine gender": "definite feminine", 

3242 "present participle¹ or gerund": "present participle gerund", 

3243 "short forms": "short-form", 

3244 "long forms": "long-form", 

3245 "Negative adjective (un-…-able)": "negative participle", 

3246 "Positive adjective (-able)": "participle", 

3247 "Infinitive (archaic)": "infinitive archaic", 

3248 "Subjunctive Mood": "subjunctive", 

3249 "Conditional Mood": "conditional", 

3250 "Indicative Mood": "indicative", 

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

3252 "third-person plural", 

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

3254 ], 

3255 "2nd person pl informal": "second-person plural informal", 

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

3257 "third-person singular", 

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

3259 ], 

3260 "Participle": "participle", 

3261 "Past tense": "past", 

3262 "Present tense": "present", 

3263 "oblique/vocative": "oblique vocative", 

3264 "3ʳᵈ person f": "third-person feminine", 

3265 "3ʳᵈ person m": "third-person masculine", 

3266 "Case/Form": "", 

3267 "Positive Infinitive": "positive infinitive", 

3268 "future converb I": "future converb converb-i", 

3269 "future converb II": "future converb converb-ii", 

3270 "perfective converb": "perfective converb", 

3271 "simultaneous converb": "simultaneous converb", 

3272 "imperfective converb": "imperfective converb", 

3273 "dative and adverbial": ["dative", "adverbial"], 

3274 "nominative genitive and instrumental": "nominative genitive instrumental", 

3275 "singular unknown": "singular", 

3276 "Plural of variety": "plural plural-of-variety", 

3277 "dir. pl.": "direct plural", 

3278 "dir. sg.": "direct singular", 

3279 "Terminative": "terminative", 

3280 "Desiderative": "desiderative", 

3281 "mediopassive voice": "mediopassive", 

3282 "past frequentative": "past frequentative", 

3283 "Infinitives": { 

3284 "default": "infinitive", 

3285 "lang": "Swahili", 

3286 "then": "dummy-section-header infinitive", 

3287 }, 

3288 "Pronon": "", 

3289 "म SING.": {"if": "first-person", "then": "singular"}, 

3290 "हामी PL.": {"if": "first-person", "then": "plural"}, 

3291 "तँ LOW-RESP. SING.": {"if": "second-person", "then": "singular impolite"}, 

3292 "तिमी MID-RESP.": {"if": "second-person", "then": "polite"}, 

3293 "ऊ LOW-RESP. SING.": {"if": "third-person", "then": "singular impolite"}, 

3294 "उनी MID-RESP.": {"if": "third-person", "then": "polite"}, 

3295 "तपाईं / ऊहाँ HIGH-RESP.": "formal deferential", 

3296 "2ⁿᵈ & 3ʳᵈ": "second-person third-person", 

3297 "plural only (plurale tantum)": "plural-only", 

3298 "approximative": "approximative", 

3299 "consecutive": "consecutive", 

3300 "post-classical": "", 

3301 "Active present participle": "active present participle", 

3302 "Active perfect participle": "active perfect participle", 

3303 "Passive perfect participle": "passive perfect participle", 

3304 "active participle اِسْم الْفَاعِل": "active participle", 

3305 "active voice الْفِعْل الْمَعْلُوم": "active", 

3306 "singular الْمُفْرَد": "singular", 

3307 "dual الْمُثَنَّى": "dual", 

3308 "plural الْجَمْع": "plural", 

3309 "1ˢᵗ person الْمُتَكَلِّم": "first-person", 

3310 "2ⁿᵈ person الْمُخَاطَب": "second-person", 

3311 "3ʳᵈ person الْغَائِب": "third-person", 

3312 "past (perfect) indicative الْمَاضِي": "past perfective indicative", 

3313 "non-past (imperfect) indicative الْمُضَارِع": # XXX remove me to check if I'm relevant 

3314 "non-past imperfective indicative", 

3315 # ^ This might have been changed in the wiktionary template: 

3316 "non-past (imperfect) indicative الْمُضَارِع الْمَرْفُوع": # x تراجع/Arabic 

3317 "non-past imperfective indicative", 

3318 "subjunctive الْمُضَارِع الْمَنْصُوب": "subjunctive", 

3319 "jussive الْمُضَارِع الْمَجْزُوم": "jussive", 

3320 "imperative الْأَمْر": "imperative", 

3321 "passive participle اِسْم الْمَفْعُول": "passive participle", 

3322 "passive voice الْفِعْل الْمَجْهُول": "passive", 

3323 "verbal noun الْمَصْدَر": "noun-from-verb", 

3324 "verbal nouns الْمَصَادِر": "noun-from-verb", 

3325 "strong declension": "strong", 

3326 "weak declension": "weak", 

3327 "Recently Complete": "completive past past-recent", 

3328 "Recent past": "past past-recent", 

3329 "Remote past": "past past-remote", 

3330 "first singular": "first-person singular", 

3331 "second singular": "second-person singular", 

3332 "third singular": "third-person singular", 

3333 "quotative": "quotative", 

3334 "ma-infinitive": "infinitive infinitive-ma", 

3335 "ma- infinitive": "infinitive infinitive-ma", 

3336 "da-infinitive": "infinitive infinitive-da", 

3337 "da- infinitive": "infinitive infinitive-da", 

3338 "da-form": "verb-form-da", 

3339 "des-form": "verb-form-des", 

3340 "m gender": "masculine", 

3341 "long": "long-form", 

3342 "short": "short-form", 

3343 "1st pers.": "first-person", 

3344 "2nd pers.": "second-person", 

3345 "3rd pers.": "third-person", 

3346 "aorist (simple past)": "aorist", 

3347 "aorist II (past perfect II)": "aorist aorist-ii", 

3348 "admirative": "admirative", 

3349 "Adverbial": "adverbial", 

3350 "adjective": "adjectival", 

3351 "neuter gender": "neuter", 

3352 "number and gender": "", 

3353 "attributive and/or after a declined word": "attributive", 

3354 "independent as first declined word": "", 

3355 "after a declined word": "attributive", 

3356 "as first declined word": "", 

3357 "singular only": "singular-only", 

3358 "absolute superlative": "absolute superlative", 

3359 "present subjunctive": "present subjunctive", 

3360 "my": "possessive singular first-person", 

3361 "your": "possessive singular plural second-person", 

3362 "her/his/its": "possessive singular third-person", 

3363 "our": "possessive plural first-person", 

3364 "their": "possessive plural third-person", 

3365 "nominal": "noun", # XXX or noun-from-something? 

3366 "circumstantial": "circumstantial", 

3367 "jussive": "jussive", 

3368 "Singulative": "singulative", 

3369 "singulative": "singulative", 

3370 "Collective": "collective", 

3371 "Paucal": "paucal", 

3372 "stem": "stem", 

3373 "resultative participle": "resultative participle", 

3374 "subject participle": "subjective participle", 

3375 "connegative converb": "connegative converb", 

3376 "subjunctive singular": "subjunctive singular", 

3377 "imperative singular": "imperative singular", 

3378 "imperative sing.": "imperative singular", 

3379 "imperative plural": "imperative plural", 

3380 "imperative plur.": "imperative plural", 

3381 "participle of necessity": "participle necessitative", 

3382 "special": "special", 

3383 "half-participle": "half-participle", 

3384 "manner of action": "adverbial-manner", 

3385 "mixed declension": "mixed", 

3386 "Habitual Aspect": "habitual", 

3387 "Perfective Aspect": "perfective", 

3388 "Progressive Aspect": "progressive", 

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

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

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

3392 "Negative Infinitive": "negative infinitive", 

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

3394 "present active participle": "present active participle", 

3395 "past active aorist participle": "past active aorist participle", 

3396 "past active imperfect participle": "past active imperfect participle", 

3397 "past passive participle": "past passive participle", 

3398 "adverbial participle": "adverbial participle", 

3399 "adjectival participle": "adjectival participle", 

3400 "perfect participle": "perfect participle", 

3401 "definite subject form": "definite subjective", 

3402 "definite object form": "definite objective", 

3403 "durative sentence": "durative", 

3404 "negated with": "negated-with", 

3405 "non-durative sentence": "non-durative", 

3406 "main clause": "main-clause", 

3407 "subordinate clause": "subordinate-clause", 

3408 "conjunctive": "conjunctive", 

3409 "future conjunctive": "future conjunctive", 

3410 "egressive": "egressive", 

3411 "first singular yo": "first-person singular", 

3412 "second singular tu": "second-person singular", 

3413 "third singular él/elli": "third-person singular", 

3414 "first plural nosotros/nós": "first-person plural", 

3415 "second plural vosotros/vós": "second-person plural", 

3416 "third plural ellos": "third-person plural", 

3417 "First person": "first-person", 

3418 "Second person": "second-person", 

3419 "Third person": "third-person", 

3420 "Very faml. & Inferior": "familiar impolite", 

3421 "Familiar": "familiar", 

3422 "Honorific": "honorific", 

3423 "Non honorific": "", 

3424 "Continuous": "continuative", 

3425 "Others": "", 

3426 "Other forms": "dummy-reset-headers", # Reset (είμαι/Greek/Verb) 

3427 "Oblique": "oblique", 

3428 "Demonstrative oblique": "demonstrative oblique", 

3429 "♀": "feminine", 

3430 "Class 1 weak": "class-1 weak", 

3431 "Benefactive": "benefactive", 

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

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

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

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

3436 "Irrealis": "irrealis", 

3437 "Realis": "realis", 

3438 "Contrasting conjunction": "contrastive", 

3439 "Causal conjunction": "causative", 

3440 "Conditional conjunction": "conditional", 

3441 "Perfect tense": "perfect", 

3442 "Perfect-continuative tense": "perfect continuative", 

3443 "present indicative/future": "present future indicative", 

3444 "imperfect (indicative/subjunctive)/ conditional": [ 

3445 "imperfect indicative subjunctive", 

3446 "conditional", 

3447 ], 

3448 "verbal adjectives": "participle", 

3449 "relative (incl. nominal / emphatic) forms": "relative", 

3450 "Passive perfect particple": "passive perfect participle", 

3451 "caritive": "caritive", 

3452 "Caritive": "caritive", 

3453 "Gerund & Past participle": ["gerund", "past participle"], 

3454 "Pronoun": "", 

3455 "nominative genitive instrumental": "nominative genitive instrumental", 

3456 "dative adverbial": "dative adverbial", 

3457 "♂": "masculine", 

3458 "2nd singular ты": "second-person singular", 

3459 "3rd singular ён / яна́ / яно́": "third-person singular", 

3460 "1st plural мы": "first-person plural", 

3461 "2nd plural вы": "second-person plural", 

3462 "3rd plural яны́": "third-person plural", 

3463 "plural мы / вы / яны́": "plural", 

3464 "masculine я / ты / ён": "masculine", 

3465 "feminine я / ты / яна́": "feminine", 

3466 "neuter яно́": "neuter", 

3467 "Imperfect indicative": "imperfect indicative", 

3468 "Verbal of necessity": "necessitative", 

3469 "without article": "without-article", 

3470 "participle (a26)": "participle", 

3471 "participle (a6)": "participle", 

3472 "participle (a5)": "participle", 

3473 "participle (a39)": "participle", 

3474 "Definite feminine and masculine gender": "definite feminine masculine", 

3475 "Neuter s-stem": "neuter", 

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

3477 "2nd person plural (2p) Giinawaa": "second-person plural", 

3478 "3rd person sg": "third-person singular", 

3479 "Causative / Applicative": "causative applicative", 

3480 "Lengadocian (Standard Occitan)": "Lengadocian", 

3481 "Auvernhàs": "Auvernhàs", # Dialect of Occitan 

3482 "Gascon": "Gascon", # Occitan 

3483 "Lemosin": "Lemosin", # Occitan 

3484 "Provençau": "Provençau", # Occitan 

3485 "Old Saxon personal pronouns": "personal pronoun", 

3486 "nominative / accusative": "nominative accusative", 

3487 "situative": "situative", 

3488 "oppositive": "oppositive", 

3489 "multiplicative": "multiplicative", 

3490 "temporal": "temporal", 

3491 "Aorist": "aorist", 

3492 "Illative": "illative", 

3493 "superlative": "superlative", 

3494 "aspect / mood": "", 

3495 "impersonal participle": "impersonal participle", 

3496 "action noun": "noun-from-verb", 

3497 "Future passive participle": "future passive participle", 

3498 "essive-instructive": "essive-instructive", 

3499 "accusative-ablative": "accusative ablative", 

3500 "plurale tantum": "plural-only", 

3501 "Emphatic": "emphatic", 

3502 "non-past": "non-past", 

3503 "2nd person m": "second-person masculine", 

3504 "2nd person pl formal": "second-person plural formal", 

3505 "3rd singular m": "third-person singular masculine", 

3506 "3rd dual": "third-person dual", 

3507 "First-person": "first-person", 

3508 "Second-person": "second-person", # sibi/Latin 

3509 "Simple present / conditional": "present conditional", 

3510 "Future progressive, presumptive": "future progressive presumptive", 

3511 "Prolative I": "prolative", 

3512 "infinitive I": "infinitive infinitive-i", 

3513 "general accusative": "accusative", 

3514 "nonpast": "non-past", 

3515 "masculine/neuter": "masculine neuter", 

3516 "Past Stem": "past stem", 

3517 "Genitive-Dative": "genitive dative", 

3518 "Present / future": "present future", 

3519 "indefinite singular": "indefinite singular", 

3520 "indirect": "indirect", 

3521 "locative-qualitative": "locative-qualitative", 

3522 "separative": "separative", 

3523 "paucal": "paucal", 

3524 "Tense": "", 

3525 "Voice": "", 

3526 "Plain infinitive": "infinitive", 

3527 "Weak inflection": "weak", 

3528 "common gender": { 

3529 "if": "possessive", 

3530 "lang": POSSESSIVE_POSSESSED_LANGS, 

3531 "then": "possessed-common", 

3532 "else": "common-gender", 

3533 }, 

3534 "Common gender": { 

3535 "if": "possessive", 

3536 "lang": POSSESSIVE_POSSESSED_LANGS, 

3537 "then": "possessed-common", 

3538 "else": "common-gender", 

3539 }, 

3540 "common": { 

3541 "if": "possessive", 

3542 "lang": POSSESSIVE_POSSESSED_LANGS, 

3543 "then": "possessed-common", 

3544 "else": "common-gender", 

3545 }, 

3546 "archaic": "archaic", 

3547 "either gender": "masculine feminine", 

3548 "present stem": "present", 

3549 "inclusive": "inclusive", 

3550 "NORI (dative)": "dative", 

3551 "DURATIVE": "durative", 

3552 "nom./acc.": "nominative accusative", 

3553 "acc.": "accusative", 

3554 "FUTURE TENSE": "future", 

3555 "OPTATIVE": "optative", 

3556 "possessive m": "possessive masculine", 

3557 "past progressive": "past progressive", 

3558 "long infinitive": "infinitive infinitive-i-long", 

3559 "l-participles": "l-participle", 

3560 "L-participle": "l-participle", 

3561 "l-participle": "l-participle", 

3562 "Informal negative": "informal negative", 

3563 "infinitival forms": "infinitive", 

3564 "subjunctive sing.": "subjunctive singular", 

3565 "subjunctive plur.": "subjunctive plural", 

3566 "Type": "", 

3567 "type": "", 

3568 "gender-neutral": "gender-neutral", 

3569 "gender-neutral (person)": "gender-neutral", 

3570 "sing. conneg.": "singular connegative", 

3571 "plur. conneg.": "plural connegative", 

3572 "Definite attributive": "definite attributive", 

3573 "present conditional": "present conditional", 

3574 "past conditional": "past conditional", 

3575 "connegative": "connegative", 

3576 "present active": "present active", 

3577 "past active": "past active", 

3578 "past passive": "past passive", 

3579 "→○": "", # e.g. sikkaralla/Finnish 

3580 "○": "", # e.g. sikkaralla/Finnish 

3581 "○→": "", # e.g. sikkaralla/Finnish 

3582 "with positive imperatives": "with-positive-imperative", 

3583 "no possessor": "no-possessor", 

3584 # "+ object concord": XXX, 

3585 # "state": XXX, 

3586 # "free state": XXX, 

3587 # "Free state": XXX, 

3588 # "Full form": XXX, 

3589 # "Noun": XXX, 

3590 # "stative stem": XXX, 

3591 # "unmutated": XXX, 

3592 # "unmodified": XXX, 

3593 # "Genitive infin.": XXX, 

3594 # "ilz, elles": XXX, 

3595 # "el / ela": XXX, 

3596 # "il/elli": XXX, 

3597 # "el / ela / Vde": XXX, 

3598 # "benim (my)": XXX, 

3599 # "Declarative": XXX, 

3600 # "substantive genitive": XXX, 

3601 # "preposition": XXX, 

3602 # "specific": XXX, 

3603 # "adverb": XXX, 

3604 # "adverbial participles": XXX, 

3605 # "In genitive": XXX, 

3606 # "Low": XXX, 

3607 # "Low/Mid": XXX, 

3608 # "Tense particles (See particles)": XXX, 

3609 # "past stem": XXX, 

3610 # "transitory past": XXX, 

3611 # "determiners": XXX, 

3612 # "determiners and pronouns": XXX, 

3613 # "past particle": XXX, 

3614 # "class I": XXX, 

3615 # "adelative": XXX, 

3616 # "oblique I": XXX, 

3617 # "NORK (ergative)": "", # XXX see irakatsi/Basque 

3618 # "NOR (absolutive)": "", # XXX see irakatsi/Basque 

3619 # These are headers for columns that contain titles even if not header style 

3620 "noun case": { 

3621 "lang": "Finnish", 

3622 "then": "*", # e.g., kolme/Finnish 

3623 "else": "", 

3624 }, 

3625 "adverbial form": { 

3626 "lang": "Finnish", 

3627 "then": "*", # e.g., kolme/Finnish 

3628 "else": "adverbial", 

3629 }, 

3630 "m verbs conjugated according to 3rd person sg. er": { 

3631 "lang": "German", 

3632 "if": "polite", # du/German 

3633 "then": "masculine third-person second-person-semantically", 

3634 }, 

3635 # This didn't work to replace "second-person": -KJ 

3636 # ~ "2nd person": { 

3637 # ~ "lang": "German", 

3638 # ~ "if": "second-person-semantically", # du/German 

3639 # ~ "then": "" 

3640 # ~ }, 

3641 "(without article)": { 

3642 "lang": "German", # jeglicher/German 

3643 "then": "without-article", 

3644 }, 

3645 "(with indefinite article)": { 

3646 "lang": "German", # jeglicher/German 

3647 "then": "indefinite with-article", 

3648 }, 

3649 "Strong plural": { 

3650 "lang": "German", # mehrere/German 

3651 "then": "strong plural", 

3652 }, 

3653 "Weak and mixed plural": { 

3654 "lang": "German", 

3655 "then": "weak mixed plural", # mehrere/German 

3656 }, 

3657 "Second-person formal": { # Ihr/German 

3658 "lang": "German", 

3659 "then": "second-person formal", 

3660 }, 

3661 "Singular (neuter, pronoun only)": { 

3662 "lang": "German", 

3663 "then": "singular neuter pronoun", 

3664 }, 

3665 "Plural, strong forms": { 

3666 "lang": "German", 

3667 "then": "plural strong", 

3668 }, 

3669 "Plural, weak and mixed forms (e.g. with definite article)": { 

3670 "lang": "German", 

3671 "then": "plural weak mixed with-article", 

3672 }, 

3673 "strong (without article)": { # selber/German 

3674 "lang": "German", 

3675 "then": "strong without-article", 

3676 }, 

3677 "weak (with definite article)": { # selber/German 

3678 "lang": "German", 

3679 "then": "weak definite with-article", 

3680 }, 

3681 "m./n. plural": { # оба/Russian 

3682 "lang": "Russian", 

3683 "then": "masculine neuter plural", 

3684 }, 

3685 "f. plural": { # оба/Russian 

3686 "lang": "Russian", 

3687 "then": "feminine plural", 

3688 }, 

3689 "sigmatic future": "sigmatic future", # adiuvo/Latin 

3690 "sigmatic aorist": "sigmatic aorist", # adiuvo/Latin 

3691 "Key constructions": { 

3692 "lang": "Japanese", 

3693 "then": "dummy-reset-headers", # Break column inheritance, 伶俐/Japanese 

3694 }, 

3695 "Informal past": { # 伶俐/Japanese 

3696 "lang": "Japanese", 

3697 "then": "informal past", 

3698 }, 

3699 "Informal negative past": { # 伶俐/Japanese 

3700 "lang": "Japanese", 

3701 "then": "informal negative past", 

3702 }, 

3703 "Formal negative": { # 伶俐/Japanese 

3704 "lang": "Japanese", 

3705 "then": "formal negative", 

3706 }, 

3707 "Formal past": { # 伶俐/Japanese 

3708 "lang": "Japanese", 

3709 "then": "formal past", 

3710 }, 

3711 "Formal negative past": { # 伶俐/Japanese 

3712 "lang": "Japanese", 

3713 "then": "formal negative past", 

3714 }, 

3715 "Provisional": { # 伶俐/Japanese 

3716 "lang": "Japanese", 

3717 "then": "past conditional", 

3718 }, 

3719 "Degree": { # 伶俐/Japanese 

3720 "lang": "Japanese", 

3721 "then": "noun-from-adj", # equivalent to English -ness, needs more 

3722 }, 

3723 # in חתול/Hebrew: 

3724 "With possessive pronouns": "possessed-form", 

3725 "Person": { 

3726 "default": "person", 

3727 "lang": [ 

3728 "Hebrew", 

3729 "Scottish Gaelic", 

3730 "Old Irish", 

3731 ], 

3732 # umpa/Scottish Gaelic, la/Old Irish 

3733 "then": "*", 

3734 }, 

3735 "masculine singular": { 

3736 "lang": "Hebrew", 

3737 "if": "possessed-form", 

3738 "then": "possessed-masculine possessed-single", # doesn't work 

3739 "else": "masculine singular", 

3740 }, 

3741 # could there be a third control character besides "*" and "dummy-reset-headers" 

3742 # that lets you override bleeding rules for a column so that it 

3743 # takes over the whole row, like here? 

3744 "masculine plural": { 

3745 "lang": "Hebrew", 

3746 "if": "possessed-form", 

3747 "then": "possessed-masculine possessed-many", 

3748 "else": "masculine plural", 

3749 }, 

3750 "feminine singular": { 

3751 "lang": "Hebrew", 

3752 "if": "possessed-form", 

3753 "then": "possessed-feminine possessed-single", 

3754 "else": "feminine singular", 

3755 }, 

3756 "feminine plural": { 

3757 "lang": "Hebrew", 

3758 "if": "possessed-form", 

3759 "then": "possessed-feminine possessed-many", 

3760 "else": "feminine plural", 

3761 }, 

3762 "masculine and neuter": "masculine neuter", # hannars/Westrobothnian 

3763 "singular masculine": "masculine singular", 

3764 "plural masculine": "masculine plural", 

3765 "singular feminine": "feminine singular", 

3766 "plural feminine": "feminine plural", 

3767 "singular neuter": "neuter singular", 

3768 "plural neuter": "neuter plural", 

3769 "quantitative": { # vienas/Lithuanian 

3770 "lang": "Lithuanian", 

3771 "pos": "num", 

3772 "then": "cardinal", 

3773 }, 

3774 "ordinal": { 

3775 "lang": "Lithuanian", 

3776 "pos": "num", 

3777 "then": "ordinal", 

3778 }, 

3779 "plain": { 

3780 "lang": "Lithuanian", 

3781 "then": "", 

3782 }, 

3783 "prefixed with be-": { 

3784 "lang": "Lithuanian", 

3785 "then": "be-prefix", 

3786 }, 

3787 "special adverbial participle": { 

3788 "lang": "Lithuanian", 

3789 "then": "adverbial participle", 

3790 }, 

3791 "present adverbial": { 

3792 "lang": "Lithuanian", 

3793 "then": "present adverbial", 

3794 }, 

3795 "past adverbial": { 

3796 "lang": "Lithuanian", 

3797 "then": "past adverbial", 

3798 }, 

3799 "past frequentative adverbial": { 

3800 "lang": "Lithuanian", 

3801 "then": "past frequentative adverbial", 

3802 }, 

3803 "future adverbial": { 

3804 "lang": "Lithuanian", 

3805 "then": "future adverbial", 

3806 }, 

3807 "1st person (pirmasis asmuo)": { # -uoti/Lithuanian 

3808 "lang": "Lithuanian", 

3809 "then": "first-person", 

3810 }, 

3811 "2nd person(antrasis asmuo)": { 

3812 "lang": "Lithuanian", 

3813 "then": "second-person", 

3814 }, 

3815 "3rd person(trečiasis asmuo)": { 

3816 "lang": "Lithuanian", 

3817 "then": "third-person", 

3818 }, 

3819 "present dependent": { # abair/Irish, table for archaic verb paradigm 

3820 "lang": "Irish", 

3821 "then": "present dependent", 

3822 }, 

3823 "past habitual dependent": { # abair/Irish, table for archaic verb paradigm 

3824 "lang": "Irish", 

3825 "then": "past habitual dependent", 

3826 }, 

3827 "future dependent": { # abair/Irish, table for archaic verb paradigm 

3828 "lang": "Irish", 

3829 "then": "future dependent", 

3830 }, 

3831 "conditional dependent": { # abair/Irish, table for archaic verb paradigm 

3832 "lang": "Irish", 

3833 "then": "conditional dependent", 

3834 }, 

3835 "conditional independent": { # abair/Irish, table for archaic verb paradigm 

3836 "lang": "Irish", 

3837 "then": "conditional independent", 

3838 }, 

3839 "future independent": { # faigh/Irish, table for archaic verb paradigm 

3840 "lang": "Irish", 

3841 "then": "future independent", 

3842 }, 

3843 "past independent": { # faigh/Irish, table for archaic verb paradigm 

3844 "lang": "Irish", 

3845 "then": "past independent", 

3846 }, 

3847 "past dependent": { # faigh/Irish, table for archaic verb paradigm 

3848 "lang": "Irish", 

3849 "then": "past dependent", 

3850 }, 

3851 "present independent": { # faigh/Irish, table for archaic verb paradigm 

3852 "lang": "Irish", 

3853 "then": "present independent", 

3854 }, 

3855 "past habitual independent": { # faigh/Irish, table for archaic verb paradigm 

3856 "lang": "Irish", 

3857 "then": "past habitual independent", 

3858 }, 

3859 "definite singular": "definite singular", 

3860 "indefinite plural": "indefinite plural", 

3861 "definite plural": "definite plural", 

3862 "masc.": "masculine", # ща/Bulgarian 

3863 "fem.": "feminine", 

3864 "neut.": "neuter", 

3865 "genitive form": "genitive", # глава/Bulgarian 

3866 "feminine/ neuter": "feminine neuter", # два/Bulgarian 

3867 "future indicative": "future indicative", # mdlić/Polish 

3868 "dummy-ignored-text-cell": "dummy-ignored-text-cell", # Kludge 

3869 "s": { 

3870 "lang": "Finnish", # erata/Finnish 

3871 "then": "singular", 

3872 }, 

3873 "pl": { 

3874 "lang": "Finnish", # erata/Finnish 

3875 "then": "plural", 

3876 }, 

3877 "pos": "positive", # erata/Finnish 

3878 "neg": "negative", # erata/Finnish 

3879 "evidential participle": "evidential participle", # տալ/Armenian 

3880 "future converb 1": "future converb converb-i", # տալ/Armenian 

3881 "future converb 2": "future converb converb-ii", # տալ/Armenian 

3882 "past imperfect": "past imperfect", # տալ/Armenian 

3883 "դուն": { # տալ/Armenian 

3884 "lang": "Armenian", 

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

3886 }, 

3887 "ան": { # տալ/Armenian 

3888 "lang": "Armenian", 

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

3890 }, 

3891 "անանք": { # տալ/Armenian 

3892 "lang": "Armenian", 

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

3894 }, 

3895 "(դուն)": { # տալ/Armenian 

3896 "lang": "Armenian", 

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

3898 }, 

3899 "1 sg.": "first-person singular", # féin/Old Irish 

3900 "2 sg.": "second-person singular", # féin/Old Irish 

3901 "3 sg.": "third-person singular", # féin/Old Irish 

3902 "1 pl.": "first-person plural", # féin/Old Irish 

3903 "2 pl.": "second-person plural", # féin/Old Irish 

3904 "3 pl.": "third-person plural", # féin/Old Irish 

3905 "m./n.": "masculine neuter", # féin/Old Irish 

3906 "Stressed": "stressed", # suide/Old irish 

3907 "Unstressed": "unstressed", # suide/Old Irish 

3908 "Masculine": { # suide/Old Irish 

3909 "default": "masculine", 

3910 "lang": "Old Irish", 

3911 "then": "dummy-reset-headers masculine", 

3912 }, 

3913 "Feminine/neuter": { 

3914 "default": "feminine neuter", 

3915 "lang": "Old Irish", 

3916 "then": "dummy-reset-headers feminine neuter", 

3917 }, 

3918 "2d sing.": "second-person singular", # attá/Old Irish 

3919 "3d sing.": "third-person singular", # attá/Old Irish 

3920 "3d sg. masc.": "third-person singular masculine", # attá/Old Irish 

3921 "3d sg. fem.": "third-person singular feminine", # attá/Old Irish 

3922 "2d sg.": "second-person singular", # attá/Old Irish BOTH OF THESE in the same template! 

3923 "3d sg.": "third-person singular", # attá/Old Irish 

3924 "2d pl.": "second-person plural", # attá/Old Irish 

3925 "3d pl.": "third-person plural", # attá/Old Irish 

3926 "Pres.​indic.​prog.": "present indicative progressive", # attá/Old Irish 

3927 "Pres.​indic.​hab.": "present indicative habitual", # attá/Old Irish 

3928 # ~ "Pres.ind.": "present indicative", # attá/Old Irish 

3929 # Original data has a zero-width space, causing problems 

3930 "Pres.​subj.": "present subjunctive", # attá/Old Irish 

3931 "Active present participle ➤": { # στρατοπεδεύω/Greek (modern) 

3932 "lang": "Greek", 

3933 "then": "active present participle indeclinable", 

3934 }, 

3935 "Active perfect participle ➤": { 

3936 "lang": "Greek", 

3937 "then": "active perfect participle indeclinable", 

3938 }, 

3939 "Passive perfect participle ➤": { 

3940 "lang": "Greek", 

3941 "then": "passive perfect participle indeclinable", 

3942 }, 

3943 "Perfect participle ➤": { # χαίρομαι/Greek 

3944 "lang": "Greek", 

3945 "then": "perfect participle indeclinable", 

3946 }, 

3947 # https://en.wikipedia.org/wiki/Nonfinite_verb#Modern_Greek 

3948 "Nonfinite form ➤": { 

3949 "lang": "Greek", 

3950 "then": "infinitive-aorist", 

3951 }, 

3952 "m·s": "masculine singular", # καθείς/Greek 

3953 "f·s": "feminine singular", 

3954 "n·s": "neuter singular", 

3955 "m·p": "masculine plural", # αυτός/Greek 

3956 "f·p": "feminine plural", 

3957 "n·p": "neuter plural", 

3958 "Masc./Fem./Neut.": "masculine feminine neuter", # mille/Latin 

3959 "Reflexive third": "third-person reflexive", # se/Latin 

3960 "masculine dual": "masculine dual", # a סוס/Hebrew 

3961 "his": "third-person singular masculine possessive", # moj/Serbo-Croatian 

3962 "her": "third-person singular feminine possessive", # moj/Serbo-Croatian 

3963 "1st singular (я (ja))": "first-person singular", # быць/Serbo-Croatian 

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

3965 "3rd singular (ён (jon)/яна́ (janá)/яно́ (janó))": "third-person singular", 

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

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

3968 "3rd plural (яны́ (janý))": "third-person plural", 

3969 "plural (мы (my), вы (vy), яны́ (janý))": "plural", 

3970 "masculine (я (ja), ты (ty), ён (jon))": "masculine", 

3971 "feminine (я (ja), ты (ty), яна́ (janá))": "feminine", 

3972 "neuter (яно́ (janó))": "neuter", 

3973 "adjectival partc.": "adjectival participle", # доврне/Macedonian 

3974 "adverbial partc.": "adverbial participle", 

3975 # ~ "non-finite forms": { # доврне/Macedonian didn't work out 

3976 # ~ "lang": "Macedonian", 

3977 # ~ "then": "", 

3978 # ~ }, 

3979 # ~ "l-participle": "l-participle", 

3980 # ~ "Compound tenses": { 

3981 # ~ "lang": "Macedonian", 

3982 # ~ "pos": "verb", 

3983 # ~ "then": "dummy-reset-headers", 

3984 # ~ }, 

3985 "collective": { # ремен/Macedonian 

3986 "lang": [ 

3987 "Lithuanian", 

3988 "Macedonian", 

3989 "Proto-Indo-European", 

3990 ], 

3991 "pos": ["num", "noun"], 

3992 "then": "collective", 

3993 }, 

3994 "Nominative/Accusative (Unarticulated)": "nominative accusative indefinite", # acid caboxilic/Romanian 

3995 "Nominative/Accusative (Definite articulation)": "nominative accusative definite", 

3996 "Genitive/Dative (Definite articulation)": "genitive dative definite", 

3997 "present infinitive": "present infinitive", # фи/Romanian 

3998 "past infinitive": "past infinitive", 

3999 # ~ This doesn't want to work - why? 

4000 # ~ "rare but acceptable": "standard", # soler/Spanish 

4001 "genitive (gjinore) (i/e/të/së)": "genitive", # mjez/Albanian 

4002 "participle — present": "present participle", # afrohet/Albanian 

4003 "participle — perfect": "perfect participle", 

4004 "gerund — present": "present gerund", 

4005 "gerund — perfect": "perfect gerund", 

4006 "infinitive — present": "present infinitive", 

4007 "infinitive — perfect": "perfect infinitive", 

4008 "privative": "privative", 

4009 "absolutive — perfect": "perfect absolutive", 

4010 "continuous present": "present progressive", 

4011 "continuous imperfect": "imperfect progressive", 

4012 "2nd future": "future future-ii", 

4013 "2nd future perfect": "future future-ii perfect", 

4014 "imperative — negatory": "negative imperative", 

4015 "genitive/dative/ablative": "genitive dative ablative", # tij/Albanian 

4016 "male forms": "masculine", # Dit/Albanian 

4017 "female forms": "feminine", 

4018 "Base form": { 

4019 "lang": [ 

4020 "Arabic", 

4021 "Moroccan Arabic", 

4022 "Maltese", 

4023 "Gulf Arabic", 

4024 ], 

4025 # "pos": ["noun", "verb", "particle", "prep"], 

4026 "then": "stem", 

4027 }, 

4028 "Personal-pronoun- including forms": { 

4029 "lang": [ 

4030 "Arabic", 

4031 "Moroccan Arabic", 

4032 "Maltese", 

4033 "Gulf Arabic", 

4034 ], 

4035 # "pos": ["noun", "verb", "particle", "prep"], 

4036 "then": "dummy-reset-headers", 

4037 }, 

4038 # ~ "singular": { 

4039 # ~ "lang": ["Arabic", "Moroccan Arabic",], 

4040 # ~ "pos": "prep", 

4041 # ~ "if": "stem", 

4042 # ~ "then": "dummy-reset-headers", 

4043 # ~ }, 

4044 "common, neuter": { # kaj/Serbo-Croatian 

4045 "lang": "Serbo-Croatian", 

4046 "then": "common-gender neuter", 

4047 }, 

4048 "pres.​indep.​aff.": "present independent affirmative", # bí/Irish 

4049 "pres.​dep.": "present dependent", 

4050 "pres.​neg.‡": "present negative", # after ‡ starts working as a footnote 

4051 # character, remove it from here. 

4052 "pres.​hab.": "present habitual", 

4053 "past hab.": "past habitual", 

4054 "past ind.": "past independent", 

4055 "past dep.": "past dependent", 

4056 "accusative form": "accusative", # отец/Bulgarian 

4057 "basic suffix": "suffix", 

4058 "direct object suffix": "direct-object suffix", 

4059 "indirect object suffix": "indirect-object suffix", 

4060 "Xemxin": "xemxin-assimilation", # lil/Maltese 

4061 "Qamrin": "qamrin-unassimilation", 

4062 "State": { 

4063 "lang": [ 

4064 "Aramaic", 

4065 "Hebrew", 

4066 "Assyrian Neo-Aramaic", 

4067 ], 

4068 "pos": "noun", 

4069 "then": "*", 

4070 "else": "", 

4071 }, 

4072 "state": { 

4073 "lang": "Assyrian Neo-Aramaic", 

4074 "pos": "noun", 

4075 "then": "*", 

4076 "else": "", 

4077 }, 

4078 "Absolute": { # x חקלא/Aramaic 

4079 "lang": "Aramaic", 

4080 "pos": "noun", 

4081 "then": "absolute", 

4082 }, 

4083 "Determined": { 

4084 "lang": "Aramaic", 

4085 "pos": "noun", 

4086 "then": "emphatic", 

4087 }, 

4088 "emphatic": "emphatic", # v דלתא/Aramaic 

4089 "3rd f": "third-person feminine", # umpa/Scottish Gaelic 

4090 "Number": { 

4091 "default": "", 

4092 # umpa/Scottish Gaelic 

4093 "lang": [ 

4094 "Hebrew", 

4095 "Scottish Gaelic", 

4096 ], 

4097 "then": "*", 

4098 }, 

4099 "Third person f": "third-person feminine", # an/Scottish Gaelic 

4100 "First sg": "first-person singular", # an/Scottish Gaelic 

4101 "Second sg": "second-person singular", 

4102 "Third sg m": "third-person singular masculine", 

4103 "Third sg f": "third-person singular feminine", 

4104 "First pl": "first-person plural", 

4105 "Second pl": "second-person plural", 

4106 "Third pl": "third-person plural", 

4107 "Independent": "independent", 

4108 "independent": "independent", # immee/Manx 

4109 "Affirmative Interrogative": "affirmative interrogative", 

4110 "Negative Interrogative": "negative interrogative", 

4111 "Affirmative interrogative": "affirmative interrogative", # thathar/Scottish Gaelic 

4112 "Relative future": [ 

4113 "with-pronoun future", 

4114 "with-conjunction future", 

4115 ], 

4116 "agent1, 3": "agent participle", # puhkaa/Finnish 

4117 "Unabbreviated form": "unabbreviation alt-of", # jku/Finnish 

4118 "Abbreviation": "abbreviation", 

4119 "nãs/nãsu, nãsã/nãsa, el/elu, ea": { 

4120 "lang": "Aromanian", 

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

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

4123 }, 

4124 "Masculine,Feminine, Neuter": "masculine feminine neuter", 

4125 # tři/Czech, copy-pasted manual table without template... 

4126 "Present Sg": "present singular", # skrýt/Czech 

4127 "Present Pl": "present plural", 

4128 "Future Sg": "future singular", 

4129 "Future Pl": "future plural", 

4130 "Past Sg": "past singular", 

4131 "Past Pl": "past plural", 

4132 "neuter singular": "neuter singular", # ony/Czech 

4133 # dar éisi/Old Irish, la/Old Irish 

4134 "3d sing. masc./neut., accusative": "third-person singular masculine neuter accusative", 

4135 "3d sing. masc./neut., dative": "third-person singular masculine neuter dative", 

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

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

4138 "3d person pl., dative": "third-person plural dative", 

4139 "3d person pl., accusative": "third-person plural accusative", 

4140 "nominative-accusative": "nominative accusative", # stand/Nynorsk 

4141 "compound-genitive": "in-compounds genitive", 

4142 "Common": { 

4143 "lang": "Arabic", 

4144 "then": "common-gender", 

4145 }, 

4146 "Affix": "affix", 

4147 # podnikat/Czech 

4148 "you (singular)": "second-person singular", 

4149 "you (polite)": "second-person singular formal", 

4150 "he/she/it": "third-person singular", 

4151 "we": { 

4152 "lang": "Czech", 

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

4154 }, 

4155 "you (plural)": "second-person plural", 

4156 "they": { 

4157 "lang": "Czech", 

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

4159 }, 

4160 "Active (Perfect)": "active participle", 

4161 "Masculine, feminine, neuter": "masculine feminine neuter", # čtyři/Czech 

4162 "participle (a7)": "participle", # hylja/Faroese 

4163 "participle (a8)": "participle", # lagt/Faroese 

4164 "participle (a34)": "participle", # falla/Faroese 

4165 "participle (a27)": "participle", # kvøða/Faroese 

4166 "participle (a18/a6)": "participle", # skreiða/Faroese 

4167 "participle (a18)": "participle", # ýa/Faroese 

4168 "participle (a5 (a39))": "participle", # skráseta/Faroese 

4169 # síggjast/Faroese 

4170 "eg": { 

4171 "lang": "Faroese", 

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

4173 }, 

4174 "hann/hon/tað": "third-person singular", 

4175 "vit, tit, teir/tær/tey": "plural", 

4176 "mediopassive": "mediopassive", 

4177 "imperfect (indicative/subjunctive)/conditional": { # de-glicio/Welsh 

4178 "lang": "Welsh", 

4179 "then": ["imperfect indicative", "conditional"], 

4180 }, 

4181 "imperfect indicative/conditional": { # gwneud/Welsh 

4182 "lang": "Welsh", 

4183 "then": ["imperfect indicative", "conditional"], 

4184 }, 

4185 "present/future": { # darganfod/Welsh 

4186 "lang": "Welsh", 

4187 "then": ["present indicative", "future indicative"], 

4188 }, 

4189 "imperfect/conditional": { # darganfod/Welsh 

4190 "lang": "Welsh", 

4191 "then": ["imperfect indicative", "conditional"], 

4192 }, 

4193 "future/present habitual": { # adnabod/Welsh 

4194 "lang": "Welsh", 

4195 "then": ["future habitual", "present habitual"], 

4196 }, 

4197 # ϧⲉⲣϧⲉⲣ/Coptic 

4198 # Bohairic 

4199 "ⲁⲛⲟⲕ": "first-person singular", 

4200 # Removed duplicates 

4201 "ⲁⲛⲟⲛ": "first-person plural", 

4202 "-": { 

4203 "default": "", 

4204 "lang": "Coptic", 

4205 "then": "nominal", 

4206 "else": { 

4207 "lang": "Assamese", 

4208 "pos": "verb", 

4209 "then": "negative", 

4210 "else": {"lang": "Old Saxon", "pos": "pron", "then": ""}, 

4211 }, 

4212 }, 

4213 "focalising, precursive": "focalising", 

4214 # ⲃⲱⲗ/Coptic, different pronouns in different dialects 

4215 # Sahidic 

4216 # Removed duplicates 

4217 # Akhmimic 

4218 "ⲁⲛⲁⲕ": "first-person singular", 

4219 "ⲛ̄ⲧⲁⲕ": "second-person singular masculine", 

4220 "ⲛ̄ⲧⲁϥ": "third-person singular masculine", 

4221 "ⲛ̄ⲧⲁⲥ": "third-person singular feminine", 

4222 "ⲁⲛⲁⲛ": "first-person plural", 

4223 "ⲛ̄ⲧⲱⲧⲛⲉ": "second-person plural", 

4224 "ⲛ̄ⲧⲁⲩ": "third-person plural", 

4225 # Lycopolitan has a mixture of different forms 

4226 # Fayyumic 

4227 "ⲛⲧⲁⲕ": "second-person singular masculine", 

4228 "ⲛⲧⲁ": "second-person singular feminine", 

4229 "ⲛⲧⲁϥ": "third-person singular masculine", 

4230 "ⲛⲧⲁⲥ": "third-person singular feminine", 

4231 "ⲛⲧⲁⲧⲉⲛ": "second-person plural", 

4232 "ⲛⲧⲁⲩ": "third-person plural", 

4233 "circumstantial, focalising": "focalising", 

4234 # ignore Tagalog Affix column affixes 

4235 # manghalik/Tagalog 

4236 "Actor-secondary": "actor-secondary", 

4237 "mang-": { 

4238 "lang": "Tagalog", 

4239 "then": "", 

4240 }, 

4241 "-an": { 

4242 "lang": "Tagalog", 

4243 "then": "", 

4244 }, 

4245 "pang- -an": { 

4246 "lang": "Tagalog", 

4247 "then": "", 

4248 }, 

4249 "ikapang-": { 

4250 "lang": "Tagalog", 

4251 "then": "", 

4252 }, 

4253 "magpa-": { 

4254 "lang": "Tagalog", 

4255 "then": "", 

4256 }, 

4257 "papang- -in": { 

4258 "lang": "Tagalog", 

4259 "then": "", 

4260 }, 

4261 "⁠ pa- -an": { 

4262 "lang": "Tagalog", 

4263 "then": "", 

4264 }, 

4265 "ipagpa-": { 

4266 "lang": "Tagalog", 

4267 "then": "", 

4268 }, 

4269 "ipapang-": { 

4270 "lang": "Tagalog", 

4271 "then": "", 

4272 }, 

4273 "ikapagpapang-": { 

4274 "lang": "Tagalog", 

4275 "then": "", 

4276 }, 

4277 "papang- -an": { 

4278 "lang": "Tagalog", 

4279 "then": "", 

4280 }, 

4281 "makapang-": { 

4282 "lang": "Tagalog", 

4283 "then": "", 

4284 }, 

4285 "ma -an": { 

4286 "lang": "Tagalog", 

4287 "then": "", 

4288 }, 

4289 "maipang-": { 

4290 "lang": "Tagalog", 

4291 "then": "", 

4292 }, 

4293 "maikapang-": { 

4294 "lang": "Tagalog", 

4295 "then": "", 

4296 }, 

4297 "mapang- -an": { 

4298 "lang": "Tagalog", 

4299 "then": "", 

4300 }, 

4301 "makapagpa-": { 

4302 "lang": "Tagalog", 

4303 "then": "", 

4304 }, 

4305 "mapapang-": { 

4306 "lang": "Tagalog", 

4307 "then": "", 

4308 }, 

4309 "maipagpa-": { 

4310 "lang": "Tagalog", 

4311 "then": "", 

4312 }, 

4313 "maipapang-": { 

4314 "lang": "Tagalog", 

4315 "then": "", 

4316 }, 

4317 "maikapagpapang-": { 

4318 "lang": "Tagalog", 

4319 "then": "", 

4320 }, 

4321 "mapapang- -an": { 

4322 "lang": "Tagalog", 

4323 "then": "", 

4324 }, 

4325 "makipang-": { 

4326 "lang": "Tagalog", 

4327 "then": "", 

4328 }, 

4329 "makipagpa-": { 

4330 "lang": "Tagalog", 

4331 "then": "", 

4332 }, 

4333 # ipalinis/Tagalog 

4334 "mag-": { 

4335 "lang": "Tagalog", 

4336 "then": "", 

4337 }, 

4338 "-in": { 

4339 "lang": "Tagalog", 

4340 "then": "", 

4341 }, 

4342 "\u2060pag- -an": { 

4343 "lang": "Tagalog", 

4344 "then": "", 

4345 }, 

4346 "ipag-": { 

4347 "lang": "Tagalog", 

4348 "then": "", 

4349 }, 

4350 "ipang-": { 

4351 "lang": "Tagalog", 

4352 "then": "", 

4353 }, 

4354 "ikapag-": { 

4355 "lang": "Tagalog", 

4356 "then": "", 

4357 }, 

4358 "pag- -an": { 

4359 "lang": "Tagalog", 

4360 "then": "", 

4361 }, 

4362 "papag- -in": { 

4363 "lang": "Tagalog", 

4364 "then": "", 

4365 }, 

4366 "ipa-": { 

4367 "lang": "Tagalog", 

4368 "then": "", 

4369 }, 

4370 "ikapagpa-": { 

4371 "lang": "Tagalog", 

4372 "then": "", 

4373 }, 

4374 "\u2060pagpa- -an": { 

4375 "lang": "Tagalog", 

4376 "then": "", 

4377 }, 

4378 "\u2060papag- -an": { 

4379 "lang": "Tagalog", 

4380 "then": "", 

4381 }, 

4382 "makapag-": { 

4383 "lang": "Tagalog", 

4384 "then": "", 

4385 }, 

4386 "ma-": { 

4387 "lang": "Tagalog", 

4388 "then": "", 

4389 }, 

4390 "maipag-": { 

4391 "lang": "Tagalog", 

4392 "then": "", 

4393 }, 

4394 "maikapag-": { 

4395 "lang": "Tagalog", 

4396 "then": "", 

4397 }, 

4398 "mapapag-": { 

4399 "lang": "Tagalog", 

4400 "then": "", 

4401 }, 

4402 "maipa-": { 

4403 "lang": "Tagalog", 

4404 "then": "", 

4405 }, 

4406 "maikapagpa-": { 

4407 "lang": "Tagalog", 

4408 "then": "", 

4409 }, 

4410 "mapagpa- -an": { 

4411 "lang": "Tagalog", 

4412 "then": "", 

4413 }, 

4414 "mapapag- -an": { 

4415 "lang": "Tagalog", 

4416 "then": "", 

4417 }, 

4418 "makipag-": { 

4419 "lang": "Tagalog", 

4420 "then": "", 

4421 }, 

4422 "maki-": { 

4423 "lang": "Tagalog", 

4424 "then": "", 

4425 }, 

4426 # batikusin/Tagalog 

4427 "-um-": { 

4428 "lang": "Tagalog", 

4429 "then": "", 

4430 }, 

4431 "i-": { 

4432 "lang": "Tagalog", 

4433 "then": "", 

4434 }, 

4435 "ika-": { 

4436 "lang": "Tagalog", 

4437 "then": "", 

4438 }, 

4439 "pa- -in": { 

4440 "lang": "Tagalog", 

4441 "then": "", 

4442 }, 

4443 # umagnas/Tagalog 

4444 "um-": { 

4445 "lang": "Tagalog", 

4446 "then": "", 

4447 }, 

4448 # baybayin/Tagalog 

4449 "Directional": "directional", 

4450 # madali/Tagalog 

4451 "root": "root", 

4452 "superiority": { 

4453 "lang": "Tagalog", 

4454 "then": "superior", 

4455 }, 

4456 "inferiority": { 

4457 "lang": "Tagalog", 

4458 "then": "inferior", 

4459 }, 

4460 "equality": { 

4461 "lang": "Tagalog", 

4462 "then": "equal", 

4463 }, 

4464 # sumisid/Tagalog 

4465 "maka-": { 

4466 "lang": "Tagalog", 

4467 "then": "", 

4468 }, 

4469 "mapa-": { 

4470 "lang": "Tagalog", 

4471 "then": "", 

4472 }, 

4473 "mai-": { 

4474 "lang": "Tagalog", 

4475 "then": "", 

4476 }, 

4477 "maika-": { 

4478 "lang": "Tagalog", 

4479 "then": "", 

4480 }, 

4481 "mapag- -an": { 

4482 "lang": "Tagalog", 

4483 "then": "", 

4484 }, 

4485 # ipasagot/Tagalog 

4486 "ma- -an": { 

4487 "lang": "Tagalog", 

4488 "then": "", 

4489 }, 

4490 # ayusin/Tagalog 

4491 "mapag-": { 

4492 "lang": "Tagalog", 

4493 "then": "", 

4494 }, 

4495 "resultative": "resultative", # sloniti/Proto-Slavic 

4496 "imperfective aorist": "aorist imperfective", # byti/Proto-Slavic 

4497 "Masculine and feminine": "masculine feminine", # hwa/Old English 

4498 # ufuy/Afar 

4499 "Postpositioned forms": { 

4500 "lang": "Afar", 

4501 "then": "with-postposition", 

4502 }, 

4503 "l-case": "l-case", 

4504 "k-case": "k-case", 

4505 "t-case": "t-case", 

4506 "h-case": "h-case", 

4507 # icfide/Afar 

4508 "present progressive": "present progressive", 

4509 "future progressive": "future progressive", 

4510 "immediate future": "immediate-future", 

4511 "imperfect potential I": "imperfect potential potential-i", 

4512 "imperfect potential II": "imperfect potential potential-ii", 

4513 "perfect potential": "perfect potential", 

4514 "present conditional II": "present conditional conditional-ii", 

4515 "present conditional I": "present conditional conditional-i", 

4516 "irrealis": "irrealis", 

4517 "perfect conditional": "perfect conditional", 

4518 "V-affirmative": "v-affirmative", 

4519 "N-affirmative": "n-affirmative", 

4520 "conjunctive I": "conjunctive conjunctive-i", 

4521 "conjunctive II": "conjunctive conjunctive-ii", 

4522 "consultative": "consultative", 

4523 "-h converb": "h-converb converb", 

4524 "-i form": "i-form converb", 

4525 "-k converb": "k-converb converb", 

4526 "-in(n)uh converb": "innuh-converb converb", 

4527 "-innuk converb": "innuk-converb converb", 

4528 "V-focus": "v-focus participle indefinite", 

4529 "N-focus": "n-focus participle indefinite", 

4530 "indefinite participle": "indefinite participle", 

4531 # qunxa/Afar 

4532 "present indicative I": "present indicative indicative-i", 

4533 "present indicative II": "present indicative indicative-ii", 

4534 "past indicative I": "past indicative indicative-i", 

4535 "past indicative II": "past indicative indicative-ii", 

4536 "present potential": "present potential", 

4537 "dist. plural": "distributive plural", # nástro/Navajo 

4538 "duoplural": "duoplural", 

4539 # this separate duoplural number can't simply be broken into dual and plural 

4540 # because of tag-merging issues, like here: if Navajo has the default numbers 

4541 # ["singular", "plural"], then singular + duoplural has "dual" left over, 

4542 # if it has ["singular", "plural", "dual",] then all of them are merged BUT 

4543 # that implies that the non-duoplural "plural" could also be part of the merge. 

4544 "Unspecified": { 

4545 "lang": "Navajo", 

4546 "then": "indefinite-person", 

4547 }, 

4548 "Unspecified person": { 

4549 "lang": "Navajo", 

4550 "then": "indefinite-person", 

4551 }, 

4552 "Passive A": { 

4553 "lang": "Navajo", 

4554 "then": "passive", 

4555 }, 

4556 "Passive B": { 

4557 "lang": "Navajo", 

4558 "then": "passive agentive", 

4559 }, 

4560 "Spatial": { 

4561 "lang": "Navajo", 

4562 "then": "spatial-person", 

4563 }, 

4564 "Spatial person": { 

4565 "lang": "Navajo", 

4566 "then": "spatial-person", 

4567 }, 

4568 "ITERATIVE": "iterative", # náhádleeh/Navajo 

4569 "early": "archaic", # soule/Middle English 

4570 "nominative, accusative": "nominative accusative", # dale/Middle English 

4571 "subjunctive plural": "subjunctive plural", # been/Middle English 

4572 "Middle Voice": "middle-voice", # शृणोति/Sanskrit 

4573 "Middle": { 

4574 "lang": [ 

4575 "Hittite", 

4576 "Sanskrit", 

4577 "Pali", 

4578 ], 

4579 "then": "middle-voice", # अवति/Sanskrit 

4580 }, 

4581 "Active Voice": "active", 

4582 "Passive Voice": "passive", 

4583 "Potential mood / Optative mood": "potential", 

4584 # ვენეციური/Georgian 

4585 "nominative, genitive, instrumental": "nominative genitive instrumental", 

4586 "dative, adverbial": "dative adverbial", 

4587 "negative imperative": "negative imperative", # აბეზღებს/Georgian 

4588 # მათ/Georgian 

4589 "third-person": "third-person", 

4590 "personal pronouns": { 

4591 "lang": "Georgian", 

4592 "then": "", 

4593 }, 

4594 "relative pronouns": { 

4595 "lang": "Georgian", 

4596 "then": "", 

4597 }, 

4598 "this": "proximal pronoun singular", 

4599 "that": "distal pronoun singular", 

4600 "these": "proximal pronoun plural", 

4601 "those": "distal pronoun plural", 

4602 # დაწერს/Georgian 

4603 "masdar": "noun-from-verb", # also in Arabic 

4604 "transitive screeves": "transitive", 

4605 "intransitive screeves": "intransitive", 

4606 "privative participle": "privative participle", 

4607 "მე": { 

4608 "lang": "Georgian", 

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

4610 }, 

4611 "შენ": { 

4612 "lang": "Georgian", 

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

4614 }, 

4615 "ის": { 

4616 "lang": "Georgian", 

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

4618 }, 

4619 "ჩვენ": { 

4620 "lang": "Georgian", 

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

4622 }, 

4623 "თქვენ": { 

4624 "lang": "Georgian", 

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

4626 }, 

4627 "ისინი": { 

4628 "lang": "Georgian", 

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

4630 }, 

4631 "მან": { 

4632 "lang": "Georgian", 

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

4634 }, 

4635 "მათ": { 

4636 "lang": "Georgian", 

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

4638 }, 

4639 "მას": { 

4640 "lang": "Georgian", 

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

4642 }, 

4643 # ~ "": { 

4644 # ~ "lang": "Georgian", 

4645 # ~ "then": "", 

4646 # ~ }, 

4647 "inversion": "inversion", 

4648 # maanaadad/Ojibwe 

4649 "singular (0s)": "singular inanimate", 

4650 "obviative singular (0's)": "obviative inanimate singular", 

4651 "plural (0p)": "plural inanimate", 

4652 "obviative plural (0'p)": "obviative plural inanimate", 

4653 "singular or plural (0)": "singular plural inanimate", 

4654 "obviative singular or plural (0')": "obviative singular plural inanimate", 

4655 # a ܒܢܓܐ/Classical_Syriac 

4656 "1st c. sg. (my)": "first-person singular common-gender possessive", 

4657 "2nd m. sg. (your)": "second-person singular masculine possessive", 

4658 "2nd f. sg. (your)": "second-person singular feminine possessive", 

4659 "3rd m. sg. (his)": "third-person singular masculine possessive", 

4660 "3rd f. sg. (her)": "third-person singular feminine possessive", 

4661 "1st c. pl. (our)": "first-person common-gender plural possessive", 

4662 "2nd m. pl. (your)": "second-person plural masculine possessive", 

4663 "2nd f. pl. (your)": "second-person plural feminine possessive", 

4664 "3rd m. pl. (their)": "third-person plural masculine possessive", 

4665 "3rd f. pl. (their)": "third-person plural feminine possessive", 

4666 # vágyhat/Hungarian 

4667 "3rd person sg, 2nd person sg formal": [ 

4668 "third-person singular", 

4669 "second-person singular formal", 

4670 ], 

4671 "3rd person pl, 2nd person pl formal": [ 

4672 "third-person plural", 

4673 "second-person plural formal", 

4674 ], 

4675 # ichwane/Zulu 

4676 "Possessive forms": "possessive", 

4677 "Full form": "full-form", 

4678 "Simple form": "basic-form", 

4679 "Substantive": { 

4680 "lang": "Zulu", 

4681 "if": "possessive", 

4682 "then": "possessive-substantive", 

4683 }, 

4684 "Modifier": { 

4685 "lang": [ 

4686 "Zulu", 

4687 "Swazi", 

4688 ], 

4689 # ~ "if": "possessive", 

4690 "then": "", 

4691 "else": { 

4692 "lang": "Xhosa", # magqagala 

4693 "then": "attributive", 

4694 }, 

4695 }, 

4696 "Copulative": "copulative", 

4697 "present negative": "present negative", # hoteti/Slovene 

4698 "Construct state": "construct", # ziqqurratum/Akkadian 

4699 # marāṣum/Akkadian 

4700 "Adjective": "adjective", 

4701 "1.sg": "first-person singular", 

4702 "2.sg": "second-person singular", 

4703 "3.sg": "third-person singular", 

4704 "1.pl": "first-person plural", 

4705 "2.pl": "second-person plural", 

4706 "3.pl": "third-person plural", 

4707 # pats/Latvian 

4708 "Masculine Singular": "masculine singular", 

4709 "Feminine Singular": "feminine singular", 

4710 "Masculine Plural": "masculine plural", 

4711 "Feminine Plural": "feminine plural", 

4712 "⁠ ka- -an": { 

4713 "lang": "Tagalog", 

4714 "then": "", 

4715 }, # maligaw/Tagalog 

4716 # AFAICT the following is just the idiosyncracy of a singular editor. 

4717 # No real idea of what "analytical" means in this context. It's not 

4718 # standard terminology for specific forms, but I guess it could 

4719 # stand for some kind of free-standing form... 

4720 "analytical": { # immee/Manx 

4721 "lang": "Manx", 

4722 "then": "analytic", 

4723 }, 

4724 # alcun/Old French 

4725 "Subject": "subjective", 

4726 # styri/Lower Sorbian 

4727 "Masculine inanimate/ feminine/neuter": [ 

4728 "masculine inanimate", 

4729 "feminine neuter", 

4730 ], 

4731 "Masculine animate": "masculine animate", 

4732 # glab/Breton 

4733 "unmutated": "unmutated", 

4734 "hard": { 

4735 "lang": "Breton", 

4736 "then": "mutation-hard", 

4737 }, 

4738 "0": { # gwildronañ/Breton 

4739 "lang": "Breton", 

4740 "pos": "verb", 

4741 "then": "impersonal", 

4742 }, 

4743 "Impersonal forms": { 

4744 "lang": "Breton", 

4745 "pos": "verb", 

4746 "then": "*", 

4747 }, 

4748 "Mutated forms": { 

4749 "lang": "Breton", 

4750 "pos": "verb", 

4751 "then": "dummy-reset-headers", 

4752 }, 

4753 # дөрвөл/Mongolian 

4754 "substantive genitive": "possessive-substantive genitive", 

4755 "attributive locative": "attributive locative", 

4756 # сэрээх/Mongolian 

4757 "Future participle": "future participle", 

4758 "Confirmative": "confirmative", 

4759 "Resultative": "resultative", 

4760 "Imperfective converb": "imperfective converb", 

4761 "possessive particle": "possessive particle", # чи/Mongolian 

4762 # কোবোৱা/Assamese 

4763 "Gerund, Past participle, Agentive": [ 

4764 "gerund", 

4765 "past participle", 

4766 "agentive", 

4767 ], 

4768 "Progressive participle": "progressive participle", 

4769 "t": { 

4770 "lang": "Assamese", 

4771 "pos": "verb", 

4772 "then": "", 

4773 }, 

4774 "মই moi": { 

4775 "lang": "Assamese", 

4776 "pos": "verb", 

4777 "then": "first-person", 

4778 }, 

4779 "তই toi": { 

4780 "lang": "Assamese", 

4781 "pos": "verb", 

4782 "then": "familiar impolite second-person", 

4783 }, 

4784 "তুমি tumi": { 

4785 "lang": "Assamese", 

4786 "pos": "verb", 

4787 "then": "familiar second-person", 

4788 }, 

4789 "আপুনি apuni": { 

4790 "lang": "Assamese", 

4791 "pos": "verb", 

4792 "then": "honorific second-person", 

4793 }, 

4794 "তেওঁ etc teü͂": { 

4795 "lang": "Assamese", 

4796 "pos": "verb", 

4797 "then": "honorific third-person", 

4798 }, 

4799 "সি ♂, তাই ♀ etc xi ♂, tai ♀": { 

4800 "lang": "Assamese", 

4801 "pos": "verb", 

4802 "then": "third-person", 

4803 }, 

4804 "আমি ami": { 

4805 "lang": "Assamese", 

4806 "pos": "verb", 

4807 "then": "first-person", 

4808 }, 

4809 "তহঁত tohõt": { 

4810 "lang": "Assamese", 

4811 "pos": "verb", 

4812 "then": "familiar impolite second-person", 

4813 }, 

4814 "তোমালোক tümalük": { 

4815 "lang": "Assamese", 

4816 "pos": "verb", 

4817 "then": "familiar second-person", 

4818 }, 

4819 "আপোনালোক apünalük": { 

4820 "lang": "Assamese", 

4821 "pos": "verb", 

4822 "then": "honorific second-person", 

4823 }, 

4824 "তেওঁলোক teü͂lük": { 

4825 "lang": "Assamese", 

4826 "pos": "verb", 

4827 "then": "honorific third-person", 

4828 }, 

4829 "সিহঁত etc xihõt": { 

4830 "lang": "Assamese", 

4831 "pos": "verb", 

4832 "then": "third-person", 

4833 }, 

4834 "তহঁতে tohõte": { 

4835 "lang": "Assamese", 

4836 "pos": "verb", 

4837 "then": "familiar impolite second-person", 

4838 }, 

4839 "তোমালোকে tümalüke": { 

4840 "lang": "Assamese", 

4841 "pos": "verb", 

4842 "then": "familiar second-person", 

4843 }, 

4844 "আপোনালোকে apünalüke": { 

4845 "lang": "Assamese", 

4846 "pos": "verb", 

4847 "then": "honorific second-person", 

4848 }, 

4849 "তেওঁলোকে teü͂lüke": { 

4850 "lang": "Assamese", 

4851 "pos": "verb", 

4852 "then": "honorific third-person", 

4853 }, 

4854 "সিহঁতে etc xihõte": { 

4855 "lang": "Assamese", 

4856 "pos": "verb", 

4857 "then": "third-person", 

4858 }, 

4859 # gözde/Turkish predicative adjective table 

4860 "ben (I am)": "first-person singular", 

4861 "sen (you are)": "second-person singular", 

4862 "o (he/she/it is)": "third-person singular", 

4863 "biz (we are)": "first-person plural", 

4864 "siz (you are)": "second-person plural", 

4865 "onlar (they are)": "third-person plural", 

4866 "ben (I was)": "first-person singular", 

4867 "sen (you were)": "second-person singular", 

4868 "o (he/she/it was)": "third-person singular", 

4869 "biz (we were)": "first-person plural", 

4870 "siz (you were)": "second-person plural", 

4871 "onlar (they were)": "third-person plural", 

4872 "ben (if I)": "first-person singular", 

4873 "sen (if you)": "second-person singular", 

4874 "o (if he/she/it)": "third-person singular", 

4875 "biz (if we)": "first-person plural", 

4876 "siz (if you)": "second-person plural", 

4877 "onlar (if they)": "third-person plural", 

4878 "positive, declarative": "", 

4879 "positive, interrogative": "interrogative", 

4880 "negative, declarative": "negative", 

4881 "negative, interrogative": "negative interrogative", 

4882 # a راتلل/Pashto 

4883 "زۀ": "first-person singular", 

4884 "تۀ": { 

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

4886 "then": "second-person singular masculine", 

4887 "else": { 

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

4889 "then": "second-person singular feminine", 

4890 "else": "second-person singular", 

4891 }, 

4892 }, 

4893 "دی / هغه": "third-person singular masculine", 

4894 "دا / هغه": "third-person singular feminine", 

4895 "موږ": "first-person plural", 

4896 "تاسې": "second-person plural", 

4897 "دوی / هغوی": "third-person plural", 

4898 "present imperfective": "present imperfective", 

4899 "present perfective": "present perfective", 

4900 "تاسو": "second-person plural", 

4901 # This specific form seems like the addition of someone later in a 

4902 # new part of the table, it's a Northern Pashto variant, so someone 

4903 # might change it later, unless تاسو is part of the "command" 

4904 # paradigm in general. 

4905 # a ہاوُن/Kashmiri 

4906 "Feminine plural": "feminine plural", 

4907 "Completed": "completive", 

4908 "بہٕ": "first-person singular", 

4909 "ژٕ": "second-person singular", 

4910 "سُہ, سۄ": "third-person singular", 

4911 "أسؠ": "first-person plural", 

4912 "تۄہؠ, تۆہؠ": "second-person plural", 

4913 "تِم, تِمہٕ": "third-person plural", 

4914 "Nominative subject": "with-nominative", 

4915 "Ergative subject": "with-ergative", 

4916 "Simple present": "present", 

4917 "Past continuous": "past continuative", 

4918 "Future continuous": "future continuative", 

4919 "m or f": "masculine feminine", 

4920 "Simple future": "future", 

4921 # Ergatives 

4922 "مےٚ": "first-person singular", 

4923 "ژےٚ": "second-person singular", 

4924 "تٔمؠ, تَمہِ": "third-person singular", 

4925 "اَسہِ": "first-person plural", 

4926 "تۄہہِ": "second-person plural", 

4927 "تِمَو": "third-person plural", 

4928 "m sg": "masculine singular", 

4929 "m pl": "masculine plural", 

4930 "f sg": "feminine singular", 

4931 "f pl": "feminine plural", 

4932 "Obligatory": "obligative", 

4933 "Simple Conditional": "conditional", 

4934 "Conditional past continuous": "past continuative conditional", 

4935 "Conditional past perfect": "past perfect conditional", 

4936 # XXX return to Kashmiri after next wiktionary dump 

4937 # дрьзнѫти/Old Church Slavonic 

4938 "азъ (azŭ)": "first-person singular", 

4939 "тꙑ (ty)": "second-person singular", 

4940 "тъ (tŭ)": "third-person singular", 

4941 "вѣ (vě)": "first-person dual", 

4942 "ва (va)": "second-person dual", 

4943 "та (ta)": "third-person dual", 

4944 "мꙑ (my)": "first-person plural", 

4945 "вꙑ (vy)": "second-person plural", 

4946 "ти (ti)": "third-person plural", 

4947 # əhli-həsəd/Azerbaijani 

4948 "broken plural": "broken-form plural", 

4949 # bədən/Azerbaijani 

4950 "broken": { 

4951 "lang": "Azerbaijani", 

4952 # ~ "if": "plural", # doesn't work 

4953 "then": "broken-form plural", 

4954 }, 

4955 "sound": { 

4956 "lang": "Azerbaijani", 

4957 "then": "", 

4958 }, 

4959 # 𒉿𒀠𒄴𒍣/Hittite 

4960 "Noun": { 

4961 "lang": "Hittite", 

4962 "pos": "verb", 

4963 "then": "noun-from-verb", 

4964 }, 

4965 # ampesar/Ladino 

4966 "io / yo": { 

4967 "lang": "Ladino", 

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

4969 }, 

4970 "él / ella": { 

4971 "lang": "Ladino", 

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

4973 }, 

4974 "mosotros mosós": { 

4975 "lang": "Ladino", 

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

4977 }, 

4978 "vosotros vosós / vós": { 

4979 "lang": "Ladino", 

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

4981 }, 

4982 "ellos / ellas": { 

4983 "lang": "Ladino", 

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

4985 }, 

4986 # চাওয়া/Bengali 

4987 "progressive participle": "progressive participle", 

4988 "habitual participle": "habitual participle", 

4989 "conditional participle": "conditional participle", 

4990 "আমি (ami)": "first-person", 

4991 "আমরা (amra)": "first-person", 

4992 "তুই (tui)": "second-person impolite", 

4993 "তোরা (tora)": "second-person impolite", 

4994 "তুমি (tumi)": "second-person", 

4995 "তোমরা (tomra)": "second-person", 

4996 "এ (e), ও (o), সে (she)": "third-person", 

4997 "এরা (era), ওরা (ora), তারা (tara)": "third-person", 

4998 "আপনি (apni)": "second-person formal", 

4999 "আপনারা (apnara)": "second-person formal", 

5000 "ইনি (ini), উনি (uni), তিনি (tini)": "third-person formal", 

5001 "এঁরা (ẽra), ওঁরা (õra), তাঁরা (tãra)": "third-person formal", 

5002 # schlaa/Alemannic German 

5003 "1ˢᵗ person ich, i": "first-person singular", 

5004 "3ʳᵈ person er/si/es": "third-person singular", 

5005 "2ⁿᵈ person ir": "second-person plural", 

5006 # remove duplicates 

5007 # natüürlic/Alemannic German 

5008 "Strong inflection": "strong", 

5009 # d/Alemannic German 

5010 "Nominative/Accusative": "nominative accusative", 

5011 # ik/German Low German 

5012 "(Genitive)": "genitive rare", 

5013 "m f": "masculine feminine", # etwer/German 

5014 # фи/Romanian 

5015 "еу": { 

5016 "lang": "Romanian", 

5017 "pos": "verb", 

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

5019 }, 

5020 "ту": { 

5021 "lang": [ 

5022 "Tajik", 

5023 "Romanian", 

5024 ], 

5025 "pos": "verb", 

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

5027 }, 

5028 "ел/я": { 

5029 "lang": "Romanian", 

5030 "pos": "verb", 

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

5032 }, 

5033 "нои": { 

5034 "lang": "Romanian", 

5035 "pos": "verb", 

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

5037 }, 

5038 "вои": { 

5039 "lang": "Romanian", 

5040 "pos": "verb", 

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

5042 }, 

5043 "еи/еле": { 

5044 "lang": "Romanian", 

5045 "pos": "verb", 

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

5047 }, 

5048 "compound perfect": { # has mostly replaced the simple perfect 

5049 "lang": "Romanian", 

5050 "then": "perfect", 

5051 }, 

5052 # idealistesch/Luxembourgish 

5053 "attributive and/or after determiner": "attributive with-determiner", 

5054 "independent without determiner": "without-determiner", 

5055 "after any declined word": "with-head", 

5056 # hunn/Luxembourgish 

5057 "1ˢᵗ person ech": "first-person singular", 

5058 "2ⁿᵈ person du": "second-person singular", 

5059 "3ʳᵈ person hien/si/hatt": "third-person singular", 

5060 "1ˢᵗ person mir": "first-person plural", 

5061 "2ⁿᵈ person dir": "second-person plural", 

5062 "3ʳᵈ person si": "third-person plural", 

5063 "present simple": "present", 

5064 "future simple": "future", 

5065 # чӧсмасьны/Komi-Zyrian 

5066 "Direct past tense": "direct past", 

5067 "Reported past tense": "reported past", 

5068 "Imperfect participle": "imperfect participle", 

5069 "Caritive participle": "caritive participle", 

5070 # ~ "^(*)) The impersonal reported past is"\ 

5071 # ~ "expressed using the third singular form."\ 

5072 # ~ " ^(**)) The first person imperative is"\ 

5073 # ~ " expressed using the first person future"\ 

5074 # ~ " form. ^(***)) Any form ending in -ӧй"\ 

5075 # ~ " has an alternative form ending in -ӧ."\ 

5076 # ~ " ^(****)) The imperfect and perfect"\ 

5077 # ~ " participles have alternative forms"\ 

5078 # ~ " with a paragogic -а.": 

5079 "^(*)) 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? 

5080 # ми/Komi-Zyrian 

5081 "long dative": "dative", 

5082 "short dative": "dative", 

5083 # сы/Komi-zyrian 

5084 "short nominative": "nominative", 

5085 # ehun/Basque 

5086 "anim.": "animate", 

5087 "inanim.": "inanimate", 

5088 # erakutsi/Basque 

5089 "NORK": { 

5090 "lang": "Basque", 

5091 "then": "ergative", 

5092 }, 

5093 "NOR": { 

5094 "lang": "Basque", 

5095 "then": "absolutive", 

5096 }, 

5097 "NORI": { 

5098 "lang": "Basque", 

5099 "then": "dative", 

5100 }, 

5101 "nik": { 

5102 "lang": "Basque", 

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

5104 }, 

5105 "hik": { 

5106 "lang": "Basque", 

5107 "then": "second-person singular informal", 

5108 }, 

5109 "hark": { 

5110 "lang": "Basque", 

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

5112 }, 

5113 "guk": { 

5114 "lang": "Basque", 

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

5116 }, 

5117 "zuk": { 

5118 "lang": "Basque", 

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

5120 }, 

5121 "zuek": { 

5122 "lang": "Basque", 

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

5124 }, 

5125 "haiek": { 

5126 "lang": "Basque", 

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

5128 }, 

5129 "hura": { 

5130 "lang": "Basque", 

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

5132 }, 

5133 "niri": { 

5134 "lang": "Basque", 

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

5136 }, 

5137 "hiri": { 

5138 "lang": "Basque", 

5139 "then": "second-person singular informal", 

5140 }, 

5141 "hari": { 

5142 "lang": "Basque", 

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

5144 }, 

5145 "guri": { 

5146 "lang": "Basque", 

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

5148 }, 

5149 "zuri": { 

5150 "lang": "Basque", 

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

5152 }, 

5153 "zuei": { 

5154 "lang": "Basque", 

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

5156 }, 

5157 "haiei": { 

5158 "lang": "Basque", 

5159 "then": "third-person plural", 

5160 }, 

5161 "future cons.": "future consequential", 

5162 "past cons.": "past consequential", 

5163 "2nd sg inf": "second-person singular informal", 

5164 # ISP/Norwegian 

5165 "Bokmål m": { 

5166 "lang": "Norwegian Bokmål", 

5167 "then": "masculine", 

5168 "else": "masculine Bokmål", 

5169 }, 

5170 "Bokmål f": { 

5171 "lang": "Norwegian Bokmål", 

5172 "then": "feminine", 

5173 "else": "feminine Bokmål", 

5174 }, 

5175 "Bokmål c": { 

5176 "lang": "Norwegian Bokmål", 

5177 "then": "common-gender", 

5178 "else": "common-gender Bokmål", 

5179 }, 

5180 "Bokmål n": { 

5181 "lang": "Norwegian Bokmål", 

5182 "then": "neuter", 

5183 "else": "neuter Bokmål", 

5184 }, 

5185 "Bokmål": { 

5186 "lang": "Norwegian Bokmål", 

5187 "then": "", 

5188 "else": "Bokmål", 

5189 }, 

5190 "Nynorsk f": { 

5191 "lang": "Norwegian Nynorsk", 

5192 "then": "feminine", 

5193 "else": "feminine Nynorsk", 

5194 }, 

5195 "Nynorsk m": { 

5196 "lang": "Norwegian Nynorsk", 

5197 "then": "masculine", 

5198 "else": "masculine Nynorsk", 

5199 }, 

5200 "Nynorsk n": { 

5201 "lang": "Norwegian Nynorsk", 

5202 "then": "neuter", 

5203 "else": "neuter Nynorsk", 

5204 }, 

5205 "Nynorsk c": { 

5206 "lang": "Norwegian Nynorsk", 

5207 "then": "common-gender", 

5208 "else": "common-gender Nynorsk", 

5209 }, 

5210 "Nynorsk": { 

5211 "lang": "Norwegian Nynorsk", 

5212 "then": "", 

5213 "else": "Nynorsk", 

5214 }, 

5215 # του/Greek 

5216 "weak": "weak", 

5217 "strong": "strong", 

5218 "infinitive — present)": "present infinitive", # eh/Albanian 

5219 "infinitive — perfect)": "perfect infinitive", 

5220 "past perfect I": "past past-i perfect", 

5221 "past perfect II": "past past-ii perfect", 

5222 "future I": "future future-i", 

5223 "future II": "future future-ii", 

5224 "future perfect I": "future future-i perfect", 

5225 "future perfect II": "future future-ii perfect", 

5226 "ato (3rd person feminine plural)": "third-person feminine plural", # ato/Albanian 

5227 "ai (3rd person masculine singular)": "third-person masculine singular", # ai 

5228 "ti (2nd person singular)": "second-person singular", # ti 

5229 "ata (3rd person masculine plural)": "third-person masculine plural", # ata 

5230 "ajo (3rd person feminine singular)": " third-person feminine singular", # ajo 

5231 # Tagalog small verb tables, like magwahil/Tagalog 

5232 # need something to tag a td-cell with stuff like 

5233 # "actor" or "object" in it, or else it'll cause 

5234 # NO-TAGS. Unfortunately, only "actor" is tagged 

5235 # because "object" and others are parsed as headers. 

5236 # At least this way, there is no error message, but 

5237 # it is inconsistently applied. 

5238 # Using "focus": "detail", in valid_tags seems to 

5239 # do the trick and stop 'focus' from bleeding as it 

5240 # doesn't with "misc". 

5241 "Trigger": { 

5242 "lang": "Tagalog", 

5243 "then": "focus", 

5244 }, 

5245 # Arabic number paradigm markers decomposed after changes in the parser: 

5246 # a ـًى (-an) => ar-infl-an-maksura 

5247 # a ـًا (-an) => ar-infl-an-alef 

5248 "basic broken plural diptote": "broken-form plural diptote", 

5249 "basic broken plural triptote": "broken-form plural triptote", # a حجرة/Arabic 

5250 "basic collective triptote": "collective triptote", 

5251 "basic singular diptote": "singular diptote", 

5252 "basic singular triptote": "singular triptote", 

5253 "broken plural diptote in ـٍ (-in)": "broken-form plural diptote ar-infl-in", # a سحلية/Arabic 

5254 "broken plural in ـًى (-an)": "broken-form plural ar-infl-an-maksura", # a بلوة/Arabic 

5255 "broken plural invariable": "broken-form plural invariable", # a ضحية/Arabic 

5256 "broken plural triptote in ـَة (-a)": "broken-form plural triptote ar-infl-a", # a رصيد/Arabic 

5257 "collective invariable": "collective invariable", 

5258 "diptote triptote": [ 

5259 "diptote", 

5260 "triptote", 

5261 ], 

5262 "singular diptote in ـٍ (-in)": "singular diptote ar-infl-in", 

5263 "singular diptote in ـَاة (-āh)": "singular diptote ar-infl-ah", # a حماة/Arabic 

5264 "singular diptote in ـَة (-a)": "singular diptote ar-infl-a", # a أرمية/Arabic 

5265 "singular in ـًا (-an)": "singular ar-infl-an-alef", 

5266 "singular in ـًى (-an)": "singular ar-infl-an-maksura", # a مدى/Arabic 

5267 "singular invariable": "singular invariable", 

5268 "singular long construct": "singular long-construct", # a ذو الحجة/Arabic 

5269 "singular of irregular noun": "singular irregular", 

5270 "singular triptote in ـٍ (-in)": "singular triptote ar-infl-in", 

5271 "singular triptote in ـَاة (-āh)": "singular triptote ar-infl-ah", # a قناة السويس/Arabic 

5272 "singular triptote in ـَة (-a)": "singular triptote ar-infl-a", # a حاجة/Arabic 

5273 "singulative triptote in ـَة (-a)": "singulative triptote ar-infl-a", # a جثجاث/Arabic 

5274 "sound feminine paucal": "sound-form feminine paucal", 

5275 "sound feminine plural": "sound-form feminine plural", 

5276 "sound masculine plural": "sound-form masculine plural", 

5277 "sound masculine paucal": "sound-form masculine paucal", 

5278 "basic broken paucal triptote": "broken-form paucal triptote", 

5279 "sound plural in ـَوْنَ (-awna)": "sound-form plural ar-infl-awna", 

5280 "broken plural triptote in ـَاة (-āh)": "broken-form plural triptote ar-infl-ah", 

5281 "basic collective diptote": "collective diptote", 

5282 "basic singulative triptote": "singulative triptote", 

5283 "basic singulative diptote": "singulative diptote", 

5284 "singulative triptote in ـَاة (-āh)": "singulative triptote ar-infl-ah", 

5285 "collective triptote in ـَة (-a)": "collective triptote ar-infl-a", 

5286 "collective in ـًا (-an)": "collective ar-infl-an-alef", 

5287 "broken plural triptote in ـٍ (-in)": "broken-form plural triptote ar-infl-in", 

5288 "broken plural in ـًا (-an)": "broken-form plural ar-infl-an-alef", 

5289 "broken plural in ـًى (-an)‎": "broken-form plural ar-infl-an-maksura", 

5290 "plural of irregular noun": "plural irregular", 

5291 "collective in ـًى (-an)": "collective ar-infl-an-maksura", 

5292 "broken paucal triptote in ـَة (-a)": "broken-form paucal triptote ar-infl-a", 

5293 "singular of irregular pronoun": "singular irregular pronoun", 

5294 "basic broken paucal diptote": "broken-form paucal diptote", 

5295 # teie/Estonian 

5296 "Partitive": "partitive", 

5297 "Inessive": "inessive", 

5298 "Elative": "elative", 

5299 "Allative": "allative", 

5300 "Adessive": "adessive", 

5301 "Translative": "translative", 

5302 "Essive": "essive", 

5303 "Abessive": "abessive", 

5304 "Comitative": "comitative", 

5305 # ащема/Moksha 

5306 "one possession": "possessive possessed-single", 

5307 "one or multiple possessions": "possessive possessed-single possessed-many", 

5308 # XXX the big headers don't express 

5309 "Participles➤": "participle", # άρχω/Greek 

5310 "Active Present ➤": "present", 

5311 "Passive Present ➤": "passive present", 

5312 # 알리다/Korean 

5313 "Formal non-polite": "formal", 

5314 "Informal non-polite": "informal", 

5315 "Informal polite": "informal polite", 

5316 "Formal polite": "formal polite", 

5317 "Middle/Passive": "middle-voice passive", # पिबति/Sanskrit 

5318 "Singular base form": "singular base-form", # a ܒܪܘܢܐ/Assyrian Neo-Aramaic 

5319 "Plural base form": "plural base-form", 

5320 "substantive": { 

5321 "lang": [ 

5322 "Chechen", 

5323 "Ingush", 

5324 ], 

5325 "pos": "noun", 

5326 "then": "substantive-case", 

5327 }, 

5328 "similitude": "similitude", # a ئانا/Uyghur 

5329 "equivalence": "equal", 

5330 "Declension of locative-qualitative form": "locative-qualitative", 

5331 "representative": "representative", 

5332 "Declension of representative form": "representative", 

5333 # When copy-pasting headers from Wiktionary with a browser, 

5334 # remember to replace the "downgraded"-superscripts into 

5335 # unicode superscript characters here, if the copy-pasted 

5336 # content doesn't have super-scripts. Things with <sup></sup> 

5337 # get automatically translated into those in clean.py, and 

5338 # these entries have to match them. If copy-pasting from 

5339 # error messages in the shell, you get the 'correct' characters. 

5340 "2ⁿᵈperson singular ordinary": { 

5341 "lang": "Uyghur", 

5342 "pos": "noun", 

5343 "then": "second-person singular possessive", 

5344 }, 

5345 "2ⁿᵈperson plural ordinary": { 

5346 "lang": "Uyghur", 

5347 "pos": "noun", 

5348 "then": "second-person plural possessive", 

5349 }, 

5350 "2ⁿᵈperson singular refined": { 

5351 "lang": "Uyghur", 

5352 "pos": "noun", 

5353 "then": "second-person singular formal possessive", 

5354 }, 

5355 "2ⁿᵈperson plural refined": { 

5356 "lang": "Uyghur", 

5357 "pos": "noun", 

5358 "then": "second-person plural formal possessive", 

5359 }, 

5360 "2ⁿᵈperson singular & plural respectful (your)": { 

5361 "lang": "Uyghur", 

5362 "pos": "noun", 

5363 "then": "second-person polite possessive", 

5364 }, 

5365 "1ˢᵗ person plural": { 

5366 "lang": "Uyghur", 

5367 "pos": "noun", 

5368 "then": "first-person plural possessive", 

5369 "else": "first-person plural", 

5370 }, 

5371 "3ʳᵈ person (his, her, its, their)": { 

5372 "lang": "Uyghur", 

5373 "pos": "noun", 

5374 "then": "third-person singular possessive", 

5375 }, 

5376 "1ˢᵗ person singular": { 

5377 "lang": "Uyghur", 

5378 "pos": "noun", 

5379 "then": "first-person singular possessive", 

5380 "else": "first-person singular", 

5381 }, 

5382 # -raihu/Kikuyu 

5383 # Class [singular class], Class [plural class] 

5384 "Class 1, Class 2": { 

5385 "lang": "Kikuyu", 

5386 "if": "singular", 

5387 "then": "class-1", 

5388 "else": "class-2", 

5389 }, 

5390 "Class 3, Class 4": { 

5391 "lang": "Kikuyu", 

5392 "if": "singular", 

5393 "then": "class-3", 

5394 "else": "class-4", 

5395 }, 

5396 "Class 5, Class 6": { 

5397 "lang": "Kikuyu", 

5398 "if": "singular", 

5399 "then": "class-5", 

5400 "else": "class-6", 

5401 }, 

5402 "Class 7, Class 8": { 

5403 "lang": "Kikuyu", 

5404 "if": "singular", 

5405 "then": "class-7", 

5406 "else": "class-8", 

5407 }, 

5408 "Class 9, Class 10": { 

5409 "lang": "Kikuyu", 

5410 "if": "singular", 

5411 "then": "class-9", 

5412 "else": "class-10", 

5413 }, 

5414 "Class 11, Class 10": { 

5415 "lang": "Kikuyu", 

5416 "if": "singular", 

5417 "then": "class-11", 

5418 "else": "class-10", 

5419 }, 

5420 "Class 12, Class 13": { 

5421 "lang": "Kikuyu", 

5422 "if": "singular", 

5423 "then": "class-12", 

5424 "else": "class-13", 

5425 }, 

5426 "Class 14, Class 6": { 

5427 "lang": "Kikuyu", 

5428 "if": "singular", 

5429 "then": "class-14", 

5430 "else": "class-6", 

5431 }, 

5432 "Class 15, Class 6": { 

5433 "lang": "Kikuyu", 

5434 "if": "singular", 

5435 "then": "class-15", 

5436 "else": "class-6", 

5437 }, 

5438 "2nd person f": "second-person feminine", 

5439 "ја": { # THIS IS CYRILLIC!! Not Latin! подразумевати/Serbo-Croatian 

5440 "lang": "Serbo-Croatian", 

5441 "then": "first-person singular", 

5442 }, 

5443 "он / она / оно": { 

5444 "lang": "Serbo-Croatian", 

5445 "then": "third-person singular", 

5446 }, 

5447 "ми": { 

5448 "lang": "Serbo-Croatian", 

5449 "then": "first-person plural", 

5450 }, 

5451 "ви": { 

5452 "lang": "Serbo-Croatian", 

5453 "then": "second-person plural", 

5454 }, 

5455 "они / оне / она": { 

5456 "lang": "Serbo-Croatian", 

5457 "then": "third-person plural", 

5458 }, 

5459 "conditional¹^, (kushtore)": { # kushtoj/Albanian 

5460 "lang": "Albanian", 

5461 "then": "conditional", 

5462 }, 

5463 "personal non-finite": { # prosternarse/Spanish 

5464 "lang": "Spanish", 

5465 "then": "", 

5466 }, 

5467 "1ˢᵗ person singular (“my”)": "first-person singular possessive", # a احساس/Persian 

5468 "3ʳᵈ person singular (“his, her, its”)": "third-person singular possessive", 

5469 "1ˢᵗ plural (“our”)": "first-person plural possessive", 

5470 "2ⁿᵈ plural (“your”)": "second-person plural possessive", 

5471 "3ʳᵈ plural (“their”)": "third-person plural possessive", 

5472 "with possessive pronouns": "possessed-form", # a ܡܘܙܐ/Assyrian Neo-Aramaic 

5473 # Talat/Turkish, possessive tables for names 

5474 "benim (my)": "first-person singular", 

5475 "senin (your)": "second-person singular", 

5476 "onun (his/her/its)": "third-person singular", 

5477 "bizim (our)": "first-person plural", 

5478 "sizin (your)": "second-person plural", 

5479 "onların (their)": "third-person plural", 

5480 # Alpler/Turkish 

5481 "singular, uncountable (tekil, sayılamaz)": "singular uncountable", 

5482 # अकड़ना/Hindi 

5483 "1ˢᵗ मैं": "first-person singular", 

5484 "2ⁿᵈ तू": "second-person singular", 

5485 "3ʳᵈ यह/वह, ये/वो": "third-person singular", 

5486 "2ⁿᵈ तुम": "second-person plural", 

5487 "1ˢᵗ हम": "first-person plural", 

5488 "3ʳᵈ, 2ⁿᵈ ये/वो/वे, आप": ["third-person plural", "second-person formal"], 

5489 # -ra/Basque 

5490 "proximal plural": "proximal plural", 

5491 # a שלאָפֿן/Yiddish 

5492 # These tables are unparseable due to lack of headers, really 

5493 # ~ "Composed forms": "", 

5494 # kalium/Limburgish 

5495 "Root singular": "singular", 

5496 "Root plural": "plural", 

5497 "Diminutive singular": "diminutive singular", 

5498 "Diminutive plural": "diminutive plural", 

5499 # tèlle/Limburgish 

5500 "adverb": "adverb", 

5501 "number & tense": "*", 

5502 "verb-second order": "v2", 

5503 "verb-first order": "v1", 

5504 "first person plural": "first-person plural", 

5505 "second person plural": "second-person plural", 

5506 "third person plural": "third-person plural", 

5507 "other forms": "", 

5508 "imperative singular impolite": "imperative singular impolite", 

5509 "imperative singular polite": "imperative singular polite", 

5510 "imperative dual": "imperative dual", 

5511 # beer/Limburgish 

5512 "Diminutive": "diminutive", 

5513 "Mutation": "mutation", 

5514 "Diminutive Mutation": "diminutive mutation", 

5515 # сядоце/Moksha 

5516 "мон (mon)": "first-person singular", 

5517 "минь (minʹ)": "first-person plural", 

5518 "тон (ton)": "second-person singular", 

5519 "тинь (tinʹ)": "second-person plural", 

5520 "сон (son)": "third-person singular", 

5521 "синь (sinʹ)": "third-person plural", 

5522 # улемс/Moksha 

5523 "1ˢᵗ singular — мон (mon)": "first-person singular", 

5524 "2ⁿᵈ singular — тон (ton)": "second-person singular", 

5525 "3ʳᵈ singular — сон (son)": "third-person singular", 

5526 "1ˢᵗ plural — минь (minʹ)": "first-person plural", 

5527 "2ⁿᵈ plural — тинь (tinʹ)": "second-person plural", 

5528 "3ʳᵈ plural — синь (sinʹ)": "third-person plural", 

5529 "Past I": "past-i past", 

5530 "Compound future": "multiword-construction future", 

5531 "agentive / pres. act. part.": "present active participle agentive", 

5532 "present passive participle": "present passive participle", 

5533 # содамс/Moksha 

5534 "Past II / subjunctive": "past-ii past subjunctive", 

5535 "Subjunctive of conditional": "subjunctive conditional", 

5536 "ma-infinitive / verbal noun": "noun-from-verb infinitive infinitive-ma", 

5537 "mda-infinitive": "infinitive infinitive-mda", 

5538 "gerund negative": "negative gerund", 

5539 "1ˢᵗ person singular object — монь (monʹ)": "object-first-person object-singular", 

5540 "2ⁿᵈ person singular object — тонь (tonʹ)": "object-second-person object-singular", 

5541 "3ʳᵈ person singular object — сонь (sonʹ)": "object-third-person object-singular", 

5542 "1ˢᵗ person plural object — минь (minʹ)": "object-first-person object-plural", 

5543 "2ⁿᵈ person plural object — тинь (tinʹ)": "object-second-person object-plural", 

5544 "3ʳᵈ person plural object — синь (sinʹ)": "object-third-person object-plural", 

5545 # ਪਾਉਣਾ/(Punjabi 

5546 "Singular/Plural": "singular plural", 

5547 "Plural/Formal": "", 

5548 "1ˢᵗ ਮੈਂ": "first-person singular", 

5549 "2ⁿᵈ intimate ਤੂੰ": "second-person singular intimate", 

5550 "3ʳᵈ ਇਹ/ਉਹ": "third-person singular", 

5551 "2ⁿᵈ familiar ਤੁਸੀਂ": "second-person familiar", 

5552 "1ˢᵗ ਅਸੀਂ": "third-person plural", 

5553 "2ⁿᵈ formal, 3ʳᵈ ਇਹ/ਉਹ/ਆਪ": [ 

5554 "second-person formal", 

5555 "third-person plural", 

5556 ], 

5557 "REG": "", 

5558 "POL": "polite", 

5559 # оз/Komi-Zyrian 

5560 "Non-Past tense": "non-past", 

5561 # hāi7Namuyi 

5562 "Habitual/Future": "habitual future", 

5563 "Prospective": "prospective", 

5564 "Ingressive": "ingressive", 

5565 "Experiential": "experiential", 

5566 "Premeditated": "premeditated", 

5567 # nyanyi/Warlpiri 

5568 "andative": "andative", 

5569 "nomic": "nomic", 

5570 # être/Lorrain 

5571 "je (j')": { 

5572 "lang": "Lorrain", 

5573 "then": "first-person singular", 

5574 }, 

5575 "el, elle": { 

5576 "lang": "Lorrain", 

5577 "then": "third-person singular", 

5578 }, 

5579 "el, elles": { 

5580 "lang": "Lorrain", 

5581 "then": "third-person plural", 

5582 }, 

5583 "distant imperfect (from Latin er-)": "imperfect distant-imperfect-er", 

5584 "distant imperfect (from Latin stab-)": "imperfect distant-imperfect-stab", 

5585 "near imperfect": "imperfect near-imperfect", 

5586 "que je / qu'i": "first-person singular", 

5587 "qu'â (al), qu'ale": "third-person singular", 

5588 "qu'âs, qu'ales": "third-person plural", 

5589 "ham": { 

5590 "lang": "Fiji Hindi", 

5591 "then": "first-person singular", 

5592 }, 

5593 "ham log": { 

5594 "lang": "Fiji Hindi", 

5595 "then": "first-person plural", 

5596 }, 

5597 "tum": { 

5598 "lang": "Fiji Hindi", 

5599 "then": "second-person singular", 

5600 }, 

5601 "tum log": { 

5602 "lang": "Fiji Hindi", 

5603 "then": "second-person plural", 

5604 }, 

5605 "uu": { 

5606 "lang": "Fiji Hindi", 

5607 "then": "third-person singular", 

5608 }, 

5609 "uu log": { 

5610 "lang": "Fiji Hindi", 

5611 "then": "third-person plural", 

5612 }, 

5613 # ndu/South Slavey 

5614 "areal": { 

5615 "lang": "South Slavey", 

5616 "then": "locative", 

5617 }, 

5618 # ave/Tolai 

5619 "1st person exclusive": "first-person exclusive", 

5620 "1st person inclusive": "first-person inclusive", 

5621 # mahkwa/Fox 

5622 "Singular Noun": "singular", 

5623 "Plural Noun": "plural", 

5624 "Proximate": "proximative", 

5625 "Obviative": "obviative", 

5626 "Local": "locative", 

5627 "Singular Possessive": "possessed-single", 

5628 "Plural Possessive": "possessed-many", 

5629 "First and second person": "first-person second-person", 

5630 "perlative": "perlative", # arnaq/Yup'ik 

5631 # tōku/Maori 

5632 "singular object": { 

5633 "lang": "Maori", 

5634 "then": "possessed-single", 

5635 }, 

5636 "dual/plural object": { 

5637 "lang": "Maori", 

5638 "then": "possessed-many", 

5639 }, 

5640 "A category": { 

5641 "lang": "Maori", 

5642 "then": "alienable", 

5643 }, 

5644 "O category": { 

5645 "lang": "Maori", 

5646 "then": "inalienable", 

5647 }, 

5648 "Neutral": { 

5649 "lang": "Maori", 

5650 "then": "", 

5651 }, 

5652 "dual subject": "dual", 

5653 "1st person, inclusive": "first-person inclusive", 

5654 "1st person, exclusive": "first-person exclusive", 

5655 "comitative-instrumental": "comitative instrumental", # тан/Mansi 

5656 # пыг/Mansi 

5657 "double possession": "possessed-two", 

5658 "multiple possession": "possessed-many", 

5659 "3d person dual": "third-person dual", 

5660 "3d person plural": "third-person plural", 

5661 # Tibetan romanizations 

5662 "Wylie": "romanization", 

5663 "Basic": { 

5664 "lang": "Udmurt", 

5665 "then": "", 

5666 }, 

5667 "Temporal": { 

5668 "lang": "Udmurt", 

5669 "then": "gerund-temporal gerund", 

5670 }, 

5671 "Fourth": { 

5672 "lang": "Udmurt", 

5673 "then": "gerund-iv gerund", 

5674 }, 

5675 "Deverbal": { 

5676 "lang": "Udmurt", 

5677 "then": "noun-from-verb", 

5678 }, 

5679 # тос/Mariupol Greek 

5680 "3rd n": "third-person neuter", 

5681 "clitic": "clitic", 

5682 # likkõ/Livonian 

5683 "sa": { 

5684 "lang": "Livonian", 

5685 "then": "second-person singular", 

5686 }, 

5687 "ta": "third-person singular", 

5688 "mēg": "first-person plural", 

5689 "tēg": "second-person plural", 

5690 "indicative negative": "negative indicative", 

5691 "(sa)": "second-person singular", 

5692 "(mēg)": "first-person plural", 

5693 "(tēg)": "second-person plural", 

5694 "imperative negative": "negative imperative", 

5695 "conditional negative": "negative conditional", 

5696 "jussive negative": "negative jussive", 

5697 "debitive": "debitive", 

5698 "minnõn": "first-person singular", 

5699 "sinnõn": "second-person singular", 

5700 "tämmõn": "third-person singular", 

5701 "mäddõn": "first-person plural", 

5702 "täddõn": "second-person plural", 

5703 "näntõn": "third-person plural", 

5704 "supine abessive": "supine abessive", 

5705 # நத்தை/Tamil 

5706 "Genitive 1": "genitive-i genitive", 

5707 "Genitive 2": "genitive-ii genitive", 

5708 "Locative 1": "locative-i locative", 

5709 "Locative 2": "locative-ii locative", 

5710 "Sociative 1": "sociative-i sociative", 

5711 "Sociative 2": "sociative-ii sociative", 

5712 # பிடி/Tamil 

5713 "singular affective": "affective singular", 

5714 "third masculine": "third-person masculine", 

5715 "third feminine": "third-person feminine", 

5716 "third honorific": "third-person honorific", 

5717 "third neuter": "third-person neuter", 

5718 "நான்": "first-person singular", 

5719 "நீ": "second-person singular", 

5720 "அவன்": "third-person singular masculine", 

5721 "அவள்": "third-person singular feminine", 

5722 "அவர்": "third-person singular honorific", 

5723 "அது": "third-person singular neuter", 

5724 "future negative": "negative future", 

5725 "plural affective": "affective plural", 

5726 "third epicene": "third-person epicene", 

5727 "நாம் (inclusive) நாங்கள் (exclusive)": [ 

5728 "first-person plural inclusive", 

5729 "first-person plural exclusive", 

5730 ], 

5731 "நீங்கள்": "second-person plural", 

5732 "அவர்கள்": "third-person plural epicene", 

5733 "அவை": "third-person plural neuter", 

5734 "effective": "effective", 

5735 "casual conditional": "conditional informal", 

5736 "honorific": "honorific", 

5737 "epicene": "epicene", 

5738 "Form I": { 

5739 "lang": "Tamil", 

5740 "then": "gerund-i gerund", 

5741 }, 

5742 "Form II": { 

5743 "lang": "Tamil", 

5744 "then": "gerund-ii gerund", 

5745 }, 

5746 "Form III": { 

5747 "lang": "Tamil", 

5748 "then": "gerund-iii gerund", 

5749 }, 

5750 # bolmak/Turkmen 

5751 "men": "first-person singular", 

5752 "ol": "third-person singular", 

5753 "olar": "third-person plural", 

5754 "proximal": "proximal", 

5755 "distal": "distal", 

5756 "unwitnessed": "unwitnessed", 

5757 "obligatory": "obligative", 

5758 # kanákta/Mohawk 

5759 "Sing.": "singular", 

5760 "Plur.": "plural", 

5761 # እግር/Amharic 

5762 "Definite subject": "definite nominative", 

5763 "Definite object": "definite accusative", 

5764 "General object": "accusative", 

5765 # sugu/Veps 

5766 "approximative I": "approximative-i approximative", 

5767 "approximative II": "approximative-ii approximative", 

5768 "terminative I": "terminative-i terminative", 

5769 "terminative II": "terminative-ii terminative", 

5770 "terminative III": "terminative-iii terminative", 

5771 "additive I": "additive-i additive", 

5772 "additive II": "additive-ii additive", 

5773 # duhtadit/Northern Sami 

5774 "action inessive": "noun-from-verb inessive", 

5775 "action elative": "noun-from-verb elative", 

5776 "agent participle": "agent participle", 

5777 "action comitative": "noun-from-verb comitative", 

5778 "conditional 1": "conditional-i conditional", 

5779 "conditional 2": "conditional-ii conditional", 

5780 # 능숙하다/Korean 

5781 "Plain": { 

5782 "lang": "Korean", 

5783 "then": "", 

5784 }, 

5785 # stupid Interlingua hand-crafted minimal tables, deber/Interlingua 

5786 "Present:": "present", 

5787 "Past:": "past", 

5788 "Future:": "future", 

5789 "Conditional:": "conditional", 

5790 "Present participle:": "present participle", 

5791 "Past participle:": "past participle", 

5792 "Imperative:": "imperative", 

5793 # уө/Southern Yukaghir 

5794 "short plural": "plural short-form", 

5795 "long plural": "plural long-form", 

5796 # aganchaka/Garo 

5797 "Declarative": "", 

5798 '"not yet"': "not-yet-form", 

5799 '"probably"': "potential", 

5800 "Intentional": "intentive", 

5801 "Change of state": "perfect", 

5802 "Formal imperative": "imperative formal", 

5803 # ಹುಟ್ಟು/Kannada 

5804 "adverbial participles": "adverbial participle", 

5805 "adjectival participles": "adjectival participle", 

5806 "other nonfinite forms": "", 

5807 "volitive forms": "volitive", 

5808 "present adverbial participle": "present adverbial participle", 

5809 "nonpast adjectival participle": "non-past adjectival participle", 

5810 "suihortative form": "suihortative", 

5811 "past adverbial participle": "past adverbial participle", 

5812 "past adjectival participle": "past adjectival participle", 

5813 "dative infinitive": "infinitive dative", 

5814 "cohortative form I": "cohortative-i cohortative", 

5815 "negative adverbial participle": "negative adverbial participle", 

5816 "negative adjectival participle": "negative adjectival participle", 

5817 "conditional form": "conditional", 

5818 "cohortative form II": "cohortative-ii cohortative", 

5819 "tense/modality": "", 

5820 "ನಾನು": "first-person singular", 

5821 "ನೀನು": "second-person singular", 

5822 "ಅವನು": "third-person masculine singular", 

5823 "ಅವಳು": "third-person feminine singular", 

5824 "ಅದು": "third-person neuter singular", 

5825 "ನಾವು": "first-person plural", 

5826 "ನೀವು": "second-person plural", 

5827 "ಅವರು": "third-person epicene plural", 

5828 "ಅವು": "third-person neuter plural", 

5829 # ಅದು/Kannada 

5830 '"Objective Singular"': "singular objective", 

5831 "Epicene Plural": "epicene plural", 

5832 # цӏехуьл/Lezgi 

5833 "adelative": "adelative", 

5834 "addirective": "addirective", 

5835 "postessive": "postessive", 

5836 "postelative": "postelative", 

5837 "postdirective": "postdirective", 

5838 "subessive": "subessive", 

5839 "subelative": "subelative", 

5840 "subdirective": "subdirective", 

5841 "inelative": "inelative", 

5842 "superelative": "superelative", 

5843 "superdirective": "superdirective", 

5844 # देर/Konkani 

5845 "accusative/dative": "accusative dative", 

5846 # भेड्डो/Konkani 

5847 "masc. singular": "masculine singular", 

5848 "fem. singular": "feminine singular", 

5849 "masc. plural": "masculine plural", 

5850 "fem. plural": "feminine plural", 

5851 # zeuen burua/Basque 

5852 "elkar": "reciprocal", 

5853 "noren burua": "reflexive", 

5854 # ezer/Basque 

5855 "nor": "interrogative pronoun personal", 

5856 "zer": "interrogative pronoun", 

5857 "zein": "interrogative pronoun", 

5858 "zenbat": "interrogative quantitative", 

5859 # batzuk/Basque 

5860 "bat": "pronoun", 

5861 "bakoitz": "pronoun", 

5862 # veda/Scanian 

5863 "jağ": "first-person singular", 

5864 "dú": "second-person singular", 

5865 "hanð": "third-person singular", 

5866 "ví": "first-person plural", 

5867 "í": "second-person plural", 

5868 "dé": "third-person plural", 

5869 "present imperative": "present imperative", 

5870 # a ګړندی/Pashto 

5871 "oblique I": "oblique oblique-i", 

5872 "oblique II (dialectal)": "oblique oblique-ii dialectal", 

5873 # a پخول/Pashto 

5874 "Present Imperfective Subject Agreement": "present imperfective", 

5875 "Past Imperfective Object Agreement": "past imperfective object-concord dummy-object-concord", 

5876 "OBJECT": "", 

5877 "Past Perfective": { 

5878 "default": "past perfective", 

5879 "lang": "Pashto", 

5880 "then": "past perfective object-concord dummy-object-concord", 

5881 }, 

5882 # ní/Old Irish 

5883 "Animate": "animate", 

5884 # just in case 

5885 "Inanimate": "inanimate", 

5886 # τα/Greek 

5887 "1-s": "first-person singular", 

5888 "2-s": "second-person singular", 

5889 "3-ms": "third-person masculine singular", 

5890 "3-fs": "third-person feminine singular", 

5891 "3-ns": "third-person neuter singular", 

5892 "1-p": "first-person plural", 

5893 "2-p": "second-person plural", 

5894 "3-mp": "third-person masculine plural", 

5895 "3-fp": "third-person feminine plural", 

5896 "3-np": "third-person neuter plural", 

5897 # angu/Swahili 

5898 "Noun class": { 

5899 "lang": "Swahili", 

5900 "then": "", 

5901 }, 

5902 "M-wa class": { 

5903 "lang": "Swahili", 

5904 "then": "class-1 class-2", 

5905 }, 

5906 "M-mi class": { 

5907 "lang": "Swahili", 

5908 "then": "class-3 class-4", 

5909 }, 

5910 "Ma class": { 

5911 "lang": "Swahili", 

5912 "then": "class-5 class-6", 

5913 }, 

5914 "Ki-vi class": { 

5915 "lang": "Swahili", 

5916 "then": "class-7 class-8", 

5917 }, 

5918 "N class": { 

5919 "lang": "Swahili", 

5920 "then": "class-9 class-10", 

5921 }, 

5922 "U class": { 

5923 "lang": "Swahili", 

5924 "then": "class-11 class-12", 

5925 }, 

5926 "Pa class": { 

5927 "lang": "Swahili", 

5928 "then": "class-16", 

5929 }, 

5930 "Ku class": { 

5931 "lang": "Swahili", 

5932 "then": "class-15", 

5933 }, 

5934 "Mu class": { 

5935 "lang": "Swahili", 

5936 "then": "class-18", 

5937 }, 

5938 "m-wa": { 

5939 "lang": "Swahili", 

5940 "then": "class-1 class-2", 

5941 }, 

5942 "m-mi": { 

5943 "lang": "Swahili", 

5944 "then": "class-3 class-4", 

5945 }, 

5946 "ma": { 

5947 "lang": "Swahili", 

5948 "then": "class-5 class-6", 

5949 "else": { 

5950 "lang": "Livonian", 

5951 "then": "first-person singular", 

5952 }, 

5953 }, 

5954 "ki-vi": { 

5955 "lang": "Swahili", 

5956 "then": "class-7 class-8", 

5957 }, 

5958 "n": { 

5959 "default": "neuter", 

5960 "lang": "Swahili", 

5961 "then": "class-9 class-10", 

5962 }, 

5963 "u": { 

5964 "lang": "Swahili", 

5965 "then": "class-11 class-12", 

5966 }, 

5967 "pa": { 

5968 "lang": "Swahili", 

5969 "then": "class-16", 

5970 }, 

5971 "ku": { 

5972 "lang": "Swahili", 

5973 "then": "class-15", 

5974 }, 

5975 "mu": { 

5976 "lang": "Swahili", 

5977 "then": "class-18", 

5978 }, 

5979 "other classes": "", 

5980 "Consecutive subjunctive": "consecutive subjunctive", 

5981 # taka/Swahili sw-conj 

5982 "Polarity": "", 

5983 "Persons": "", 

5984 "Persons / Classes": "", 

5985 "Classes": "", 

5986 "3rd / M-wa": { 

5987 "lang": "Swahili", 

5988 "then": "third-person", 

5989 }, 

5990 "M-mi": "", 

5991 "Ma": "", 

5992 "Ki-vi": "", 

5993 "N": "", 

5994 "U": "", 

5995 "Ku": "", 

5996 "Pa": "", 

5997 "Mu": "", 

5998 "Sg.": { 

5999 "default": "singular", 

6000 "lang": "Swahili", 

6001 "then": "singular", 

6002 }, 

6003 "Pl.": { 

6004 "default": "plural", 

6005 "lang": "Swahili", 

6006 "then": "plural", 

6007 }, 

6008 "Sg. / 1": { 

6009 "default": "singular class-1", 

6010 "lang": "Swahili", 

6011 "then": "singular class-1", 

6012 }, 

6013 "Pl. / 2": { 

6014 "default": "plural class-2", 

6015 "lang": "Swahili", 

6016 "then": "plural class-2", 

6017 }, 

6018 "3": { 

6019 "default": "third-person", 

6020 "lang": "Swahili", 

6021 "then": "class-3", 

6022 "else": { 

6023 "lang": head_final_numeric_langs, 

6024 "then": "class-3", 

6025 }, 

6026 }, 

6027 "4": { 

6028 "default": "class-4", 

6029 "lang": "Swahili", 

6030 "then": "class-4", 

6031 }, 

6032 "5": { 

6033 "default": "class-5", 

6034 "lang": "Swahili", 

6035 "then": "class-5", 

6036 }, 

6037 "6": { 

6038 "default": "class-6", 

6039 "lang": "Swahili", 

6040 "then": "class-6", 

6041 }, 

6042 "7": { 

6043 "default": "class-7", 

6044 "lang": "Swahili", 

6045 "then": "class-7", 

6046 }, 

6047 "8": { 

6048 "default": "class-8", 

6049 "lang": "Swahili", 

6050 "then": "class-8", 

6051 }, 

6052 "9": { 

6053 "default": "class-9", 

6054 "lang": "Swahili", 

6055 "then": "class-9", 

6056 }, 

6057 "10": { 

6058 "default": "class-10", 

6059 "lang": "Swahili", 

6060 "then": "class-10", 

6061 }, 

6062 "11 / 14": { 

6063 "default": "class-11 class-14", 

6064 "lang": "Swahili", 

6065 "then": "class-11 class-14", 

6066 }, 

6067 "15 / 17": { 

6068 "default": "class-15 class-17", 

6069 "lang": "Swahili", 

6070 "then": "class-15 class-17", 

6071 }, 

6072 "16": { 

6073 "default": "class-16", 

6074 "lang": "Swahili", 

6075 "then": "class-16", 

6076 }, 

6077 "18": { 

6078 "default": "class-18", 

6079 "lang": "Swahili", 

6080 "then": "class-18", 

6081 }, 

6082 "1s": { 

6083 "default": "first-person singular", 

6084 "if": "object-concord", 

6085 "then": "object-first-person object-singular", 

6086 "else": { 

6087 "lang": "Swahili", 

6088 "then": [ 

6089 "dummy-use-as-coltags first-person singular", 

6090 "dummy-use-as-rowtags object-first-person object-singular", 

6091 ], 

6092 }, 

6093 }, 

6094 "2s": { 

6095 "default": "second-person singular", 

6096 "if": "object-concord", 

6097 "then": "object-second-person object-singular", 

6098 "else": { 

6099 "lang": "Swahili", 

6100 "then": [ 

6101 "dummy-use-as-coltags second-person singular", 

6102 "dummy-use-as-rowtags object-second-person object-singular", 

6103 ], 

6104 }, 

6105 }, 

6106 "3s": { 

6107 "default": "third-person singular", 

6108 "if": "object-concord", 

6109 "then": "object-third-person object-singular", 

6110 "else": { 

6111 "lang": "Swahili", 

6112 "then": [ 

6113 "dummy-use-as-coltags third-person singular", 

6114 "dummy-use-as-rowtags object-third-person object-singular", 

6115 ], 

6116 }, 

6117 }, 

6118 "1p": { 

6119 "default": "first-person plural", 

6120 "if": "object-concord", 

6121 "then": "object-first-person object-plural", 

6122 "else": { 

6123 "lang": "Swahili", 

6124 "then": [ 

6125 "dummy-use-as-coltags first-person plural", 

6126 "dummy-use-as-rowtags object-first-person object-plural", 

6127 ], 

6128 }, 

6129 }, 

6130 "2p": { 

6131 "default": "second-person plural", 

6132 "if": "object-concord", 

6133 "then": "object-second-person object-plural", 

6134 "else": { 

6135 "lang": "Swahili", 

6136 "then": [ 

6137 "dummy-use-as-coltags second-person plural", 

6138 "dummy-use-as-rowtags object-second-person object-plural", 

6139 ], 

6140 }, 

6141 }, 

6142 "3p": { 

6143 "default": "third-person plural", 

6144 "if": "object-concord", 

6145 "then": "object-third-person object-plural", 

6146 "else": { 

6147 "lang": "Swahili", 

6148 "then": [ 

6149 "dummy-use-as-coltags third-person plural", 

6150 "dummy-use-as-rowtags object-third-person object-plural", 

6151 ], 

6152 }, 

6153 }, 

6154 "c1": { 

6155 "default": "class-1", 

6156 "if": "object-concord", 

6157 "then": "object-class-1", 

6158 "else": { 

6159 "lang": "Swahili", 

6160 "then": [ 

6161 "dummy-use-as-coltags class-1", 

6162 "dummy-use-as-rowtags object-class-1", 

6163 ], 

6164 }, 

6165 }, 

6166 "c2": { 

6167 "default": "class-2", 

6168 "if": "object-concord", 

6169 "then": "object-class-2", 

6170 "else": { 

6171 "lang": "Swahili", 

6172 "then": [ 

6173 "dummy-use-as-coltags class-2", 

6174 "dummy-use-as-rowtags object-class-2", 

6175 ], 

6176 }, 

6177 }, 

6178 "c3": { 

6179 "default": "class-3", 

6180 "if": "object-concord", 

6181 "then": "object-class-3", 

6182 "else": { 

6183 "lang": "Swahili", 

6184 "then": [ 

6185 "dummy-use-as-coltags class-3", 

6186 "dummy-use-as-rowtags object-class-3", 

6187 ], 

6188 }, 

6189 }, 

6190 "c4": { 

6191 "default": "class-4", 

6192 "if": "object-concord", 

6193 "then": "object-class-4", 

6194 "else": { 

6195 "lang": "Swahili", 

6196 "then": [ 

6197 "dummy-use-as-coltags class-4", 

6198 "dummy-use-as-rowtags object-class-4", 

6199 ], 

6200 }, 

6201 }, 

6202 "c5": { 

6203 "default": "class-5", 

6204 "if": "object-concord", 

6205 "then": "object-class-5", 

6206 "else": { 

6207 "lang": "Swahili", 

6208 "then": [ 

6209 "dummy-use-as-coltags class-5", 

6210 "dummy-use-as-rowtags object-class-5", 

6211 ], 

6212 }, 

6213 }, 

6214 "c6": { 

6215 "default": "class-6", 

6216 "if": "object-concord", 

6217 "then": "object-class-6", 

6218 "else": { 

6219 "lang": "Swahili", 

6220 "then": [ 

6221 "dummy-use-as-coltags class-6", 

6222 "dummy-use-as-rowtags object-class-6", 

6223 ], 

6224 }, 

6225 }, 

6226 "c7": { 

6227 "default": "class-7", 

6228 "if": "object-concord", 

6229 "then": "object-class-7", 

6230 "else": { 

6231 "lang": "Swahili", 

6232 "then": [ 

6233 "dummy-use-as-coltags class-7", 

6234 "dummy-use-as-rowtags object-class-7", 

6235 ], 

6236 }, 

6237 }, 

6238 "c8": { 

6239 "default": "class-8", 

6240 "if": "object-concord", 

6241 "then": "object-class-8", 

6242 "else": { 

6243 "lang": "Swahili", 

6244 "then": [ 

6245 "dummy-use-as-coltags class-8", 

6246 "dummy-use-as-rowtags object-class-8", 

6247 ], 

6248 }, 

6249 }, 

6250 "c9": { 

6251 "default": "class-9", 

6252 "if": "object-concord", 

6253 "then": "object-class-9", 

6254 "else": { 

6255 "lang": "Swahili", 

6256 "then": [ 

6257 "dummy-use-as-coltags class-9", 

6258 "dummy-use-as-rowtags object-class-9", 

6259 ], 

6260 }, 

6261 }, 

6262 "c10": { 

6263 "default": "class-10", 

6264 "if": "object-concord", 

6265 "then": "object-class-10", 

6266 "else": { 

6267 "lang": "Swahili", 

6268 "then": [ 

6269 "dummy-use-as-coltags class-10", 

6270 "dummy-use-as-rowtags object-class-10", 

6271 ], 

6272 }, 

6273 }, 

6274 "c11": { 

6275 "default": "class-11", 

6276 "if": "object-concord", 

6277 "then": "object-class-11", 

6278 "else": { 

6279 "lang": "Swahili", 

6280 "then": [ 

6281 "dummy-use-as-coltags class-11", 

6282 "dummy-use-as-rowtags object-class-11", 

6283 ], 

6284 }, 

6285 }, 

6286 "c12": { 

6287 "default": "class-12", 

6288 "if": "object-concord", 

6289 "then": "object-class-12", 

6290 "else": { 

6291 "lang": "Swahili", 

6292 "then": [ 

6293 "dummy-use-as-coltags class-12", 

6294 "dummy-use-as-rowtags object-class-12", 

6295 ], 

6296 }, 

6297 }, 

6298 "c13": { 

6299 "default": "class-13", 

6300 "if": "object-concord", 

6301 "then": "object-class-13", 

6302 "else": { 

6303 "lang": "Swahili", 

6304 "then": [ 

6305 "dummy-use-as-coltags class-13", 

6306 "dummy-use-as-rowtags object-class-13", 

6307 ], 

6308 }, 

6309 }, 

6310 "c14": { 

6311 "default": "class-14", 

6312 "if": "object-concord", 

6313 "then": "object-class-14", 

6314 "else": { 

6315 "lang": "Swahili", 

6316 "then": [ 

6317 "dummy-use-as-coltags class-14", 

6318 "dummy-use-as-rowtags object-class-14", 

6319 ], 

6320 }, 

6321 }, 

6322 "c15": { 

6323 "default": "class-15", 

6324 "if": "object-concord", 

6325 "then": "object-class-15", 

6326 "else": { 

6327 "lang": "Swahili", 

6328 "then": [ 

6329 "dummy-use-as-coltags class-15", 

6330 "dummy-use-as-rowtags object-class-15", 

6331 ], 

6332 }, 

6333 }, 

6334 "c16": { 

6335 "default": "class-16", 

6336 "if": "object-concord", 

6337 "then": "object-class-16", 

6338 "else": { 

6339 "lang": "Swahili", 

6340 "then": [ 

6341 "dummy-use-as-coltags class-16", 

6342 "dummy-use-as-rowtags object-class-16", 

6343 ], 

6344 }, 

6345 }, 

6346 "c17": { 

6347 "default": "class-17", 

6348 "if": "object-concord", 

6349 "then": "object-class-17", 

6350 "else": { 

6351 "lang": "Swahili", 

6352 "then": [ 

6353 "dummy-use-as-coltags class-17", 

6354 "dummy-use-as-rowtags object-class-17", 

6355 ], 

6356 }, 

6357 }, 

6358 "c18": { 

6359 "default": "class-18", 

6360 "if": "object-concord", 

6361 "then": "object-class-18", 

6362 "else": { 

6363 "lang": "Swahili", 

6364 "then": [ 

6365 "dummy-use-as-coltags class-18", 

6366 "dummy-use-as-rowtags object-class-18", 

6367 ], 

6368 }, 

6369 }, 

6370 "1s/2s/3s/c1": [ 

6371 "object-first-person object-second-person " 

6372 "object-third-person object-singular", 

6373 "object-class-1", 

6374 ], 

6375 "*p/2/3/11/14": [ 

6376 "object-plural object-first-person " 

6377 "object-second-person object-third-person", 

6378 "object-class-2 object-class-3 object-class-11 " "object-class-14", 

6379 ], 

6380 "c4/c6/c9": "object-class-4 object-class-6 object-class-9", 

6381 "2s/2p/15/17": [ 

6382 "object-second-person object-singular object-plural", 

6383 "object-class-15 object-class-17", 

6384 ], 

6385 "2p/3p/c2": [ 

6386 "object-second-person object-third-person object-plural", 

6387 "object-class-2", 

6388 ], 

6389 "c3/c11/c14": "object-class-3 object-class-11 object-class-14", 

6390 "c4/c9": "object-class-4 object-class-9", 

6391 "Forms with object concords": "object-concord", 

6392 "Past": { 

6393 "default": "past", 

6394 "lang": "Swahili", 

6395 "then": "past", 

6396 }, 

6397 "Present": { 

6398 "default": "present", 

6399 "lang": "Swahili", 

6400 "then": "present", 

6401 }, 

6402 "Future": {"default": "future", "lang": "Swahili", "then": "future"}, 

6403 "Subjunctive": { 

6404 "default": "subjunctive", 

6405 "lang": "Swahili", 

6406 "then": "subjunctive", 

6407 }, 

6408 "Present conditional": { 

6409 "default": "present irrealis", 

6410 "lang": "Swahili", 

6411 "then": "present irrealis", 

6412 }, 

6413 "Past conditional": { 

6414 "default": "past irrealis", 

6415 "lang": "Swahili", 

6416 "then": "past irrealis", 

6417 }, 

6418 "Conditional contrary to fact": { 

6419 "default": "conditional counterfactual", 

6420 "lang": "Swahili", 

6421 "then": "conditional counterfactual", 

6422 }, 

6423 "Gnomic": { 

6424 "default": "gnomic", 

6425 "lang": "Swahili", 

6426 "nested-table-depth": [1, 2], 

6427 "then": "gnomic", 

6428 }, 

6429 "Perfect": { 

6430 "default": "perfect", 

6431 "lang": "Swahili", 

6432 "nested-table-depth": [1, 2], 

6433 "then": "perfect", 

6434 }, 

6435 '"Already"': { 

6436 "default": "already-form", 

6437 "lang": "Swahili", 

6438 "nested-table-depth": [1, 2], 

6439 "then": "already-form", 

6440 }, 

6441 '"Not yet"': { 

6442 "default": "not-yet-form", 

6443 "lang": "Swahili", 

6444 "nested-table-depth": [1, 2], 

6445 "then": "not-yet-form", 

6446 }, 

6447 '"If/When"': { 

6448 "default": "if-when-form", 

6449 "lang": "Swahili", 

6450 "nested-table-depth": [1, 2], 

6451 "then": "if-when-form", 

6452 }, 

6453 '"If not"': { 

6454 "default": "if-not-form", 

6455 "lang": "Swahili", 

6456 "nested-table-depth": [1, 2], 

6457 "then": "if-not-form", 

6458 }, 

6459 "Consecutive": { 

6460 "default": "consecutive", 

6461 "lang": "Swahili", 

6462 "nested-table-depth": [1, 2], 

6463 "then": "consecutive", 

6464 }, 

6465 "General positive": { 

6466 "default": "general-mood positive", 

6467 "lang": "Swahili", 

6468 "nested-table-depth": [1, 2], 

6469 "then": "general-mood positive", 

6470 }, 

6471 "General negative": { 

6472 "default": "general-mood negative", 

6473 "lang": "Swahili", 

6474 "nested-table-depth": [1, 2], 

6475 "then": "general-mood negative", 

6476 }, 

6477 "Positive past": { 

6478 "default": "positive past", 

6479 "lang": "Swahili", 

6480 "nested-table-depth": [1, 2], 

6481 "then": "positive past", 

6482 }, 

6483 "Negative past": { 

6484 "default": "negative past", 

6485 "lang": "Swahili", 

6486 "nested-table-depth": [1, 2], 

6487 "then": "negative past", 

6488 }, 

6489 "Positive present": { 

6490 "default": "positive present", 

6491 "lang": "Swahili", 

6492 "nested-table-depth": [1, 2], 

6493 "then": "positive present", 

6494 }, 

6495 "Negative present": { 

6496 "default": "negative present", 

6497 "lang": "Swahili", 

6498 "nested-table-depth": [1, 2], 

6499 "then": "negative present", 

6500 }, 

6501 "Positive future": { 

6502 "default": "positive future", 

6503 "lang": "Swahili", 

6504 "nested-table-depth": [1, 2], 

6505 "then": "positive future", 

6506 }, 

6507 "Negative future": { 

6508 "default": "negative future", 

6509 "lang": "Swahili", 

6510 "nested-table-depth": [1, 2], 

6511 "then": "negative future", 

6512 }, 

6513 "Positive subjunctive": { 

6514 "default": "positive subjunctive", 

6515 "lang": "Swahili", 

6516 "nested-table-depth": [1, 2], 

6517 "then": "positive subjunctive", 

6518 }, 

6519 "Negative subjunctive": { 

6520 "default": "negative subjunctive", 

6521 "lang": "Swahili", 

6522 "nested-table-depth": [1, 2], 

6523 "then": "negative subjunctive", 

6524 }, 

6525 "Positive present conditional": { 

6526 "default": "positive present irrealis", 

6527 "lang": "Swahili", 

6528 "nested-table-depth": [1, 2], 

6529 "then": "positive present irrealis", 

6530 }, 

6531 "Negative present conditional": { 

6532 "default": "negative present irrealis", 

6533 "lang": "Swahili", 

6534 "nested-table-depth": [1, 2], 

6535 "then": "negative present irrealis", 

6536 }, 

6537 "Positive past conditional": { 

6538 "default": "positive past irrealis", 

6539 "lang": "Swahili", 

6540 "nested-table-depth": [1, 2], 

6541 "then": "positive past irrealis", 

6542 }, 

6543 "Negative past conditional": { 

6544 "default": "negative past irrealis", 

6545 "lang": "Swahili", 

6546 "nested-table-depth": [1, 2], 

6547 "then": "negative past irrealis", 

6548 }, 

6549 "transgressive": "transgressive", # darovať/Slovak 

6550 # conocer/Asturian 

6551 "gerundive": "gerund", 

6552 r"case \ number": "", # δίκυκλο/Greek 

6553 r"number case \ gender": "", # απύρωτος/Greek 

6554 "conditional 2nd form": "conditional conditional-ii", # costosir/Occitan 

6555 # konyugön/Volapük 

6556 "2nd person polite singular": "second-person singular polite", 

6557 "3rd person male singular": "third-person masculine singular", 

6558 "3rd person female singular": "third-person singular feminine", 

6559 "reflexive singular": "reflexive singular", 

6560 "reciprocative singular": "reciprocal singular", 

6561 "2nd person polite plural": "second-person polite plural", 

6562 "3rd person male plural": "third-person masculine plural", 

6563 "3rd person female plural": "third-person feminine plural", 

6564 "reflexive plural": "reflexive plural", 

6565 "reciprocative plural": "reciprocal plural", 

6566 "future in the past perfect": "past perfect future", 

6567 # райҳон/Tajik 

6568 "bare": "", 

6569 "definite object": "definite direct-object", 

6570 # brestan/Proto-West Germanic 

6571 "Genitive infin.": "genitive infinitive", 

6572 "Dative infin.": "dative infinitive", 

6573 "Instrum. infin.": "instrumental infinitive", 

6574 # sberegar/Venetian 

6575 "eło / eła": "third-person singular", 

6576 "noialtri / noialtre": "first-person plural", 

6577 "voialtri / voialtre": "second-person plural", 

6578 "łuri / łore": "third-person plural", 

6579 "che mi": "first-person singular subjunctive", 

6580 "che eło / eła": "third-person singular subjunctive", 

6581 "che noialtri / noialtre": "first-person plural subjunctive", 

6582 "che voialtri / voialtre": "second-person plural subjunctive", 

6583 "che łuri / łore": "third-person plural subjunctive", 

6584 # qolmoq/Uzbek 

6585 "1": { 

6586 "default": "first-person", 

6587 }, 

6588 "2": { 

6589 "default": "second-person", 

6590 }, 

6591 "cont A": "continuative", 

6592 "cont B": "continuative formal imperfective", 

6593 "cont C": "continuative habitual", 

6594 # taanduma/Estonian 

6595 "voice": "", 

6596 "singular / indefinite": "singular indefinite", # Өгэдэй/Mongolian/668 

6597 # Proto-Finnic/munidak 

6598 "passive connegative": "passive connegative", 

6599 "infinitives/nouns": "", 

6600 "infinitive 1": "infinitive infinitive-i", 

6601 "infinitive 2": "infinitive infinitive-ii", 

6602 "gerund/supine": "gerund supine", 

6603 # glæþia/Old Swedish 

6604 "þū": { 

6605 "lang": "Old Swedish", 

6606 "then": "second-person singular", 

6607 }, 

6608 "vīr": { 

6609 "lang": "Old Swedish", 

6610 "then": "first-person plural", 

6611 }, 

6612 "īr": { 

6613 "lang": "Old Swedish", 

6614 "then": "second-person plural", 

6615 }, 

6616 "iæk": { 

6617 "lang": "Old Swedish", 

6618 "then": "first-person singular", 

6619 }, 

6620 "han": { 

6621 "lang": "Old Swedish", 

6622 "then": "third-person singular", 

6623 }, 

6624 "þēr": { 

6625 "lang": "Old Swedish", 

6626 "then": "third-person plural", 

6627 }, 

6628 "Absolute superlative": "absolute superlative", # τρανός/Greek 

6629 # kolfino/Ternate 

6630 "Inclusive": "inclusive plural", 

6631 "Exclusive": "exclusive plural", 

6632 "Human m": "human-person masculine", 

6633 "Human f": "human-person feminine", 

6634 "Non-human": "non-human", 

6635 # ntw/Eqyptian 

6636 "suffix pronouns": "suffix pronoun", 

6637 "stative (‘pseudoparticiple’) endings": "stative", 

6638 "enclitic (‘dependent’) pronouns": "enclitic pronoun", 

6639 "stressed (‘independent’) pronouns": "stressed pronoun", 

6640 "proclitic (‘subject form’) pronouns": "proclitic pronoun", 

6641 # райҳон/Tajik 

6642 "indefinite, definite relative": "indefinite definite relative", 

6643 "mixed after th": "after-th mutation-mixed", # wenyn/Cornish 

6644 "feminine gender": "feminine", # heiße Zitrone/German 

6645 "masculine gender": "masculine", # alter Drache/German 

6646 "specific": "specific", # পূঁজ/Assamese 

6647 "not specific": "unspecified", # পূঁজ/Assamese/163 

6648 # навохтан/Tajik 

6649 "ман": "first-person singular", 

6650 "ӯ": "third-person singular", 

6651 "мо": "first-person plural", 

6652 "шумо": ["second-person plural", "second-person singular polite"], 

6653 "онҳо": "third-person plural", 

6654 "минем (“my”)": "first-person singular possessive", # сез/Tatar 

6655 "синең (“your”)": "second-person singular possessive", 

6656 "аның (“his/her/it”)": "third-person singular possessive", 

6657 "безнең (“our”)": "first-person plural possessive", 

6658 "сезнең (“your”)": "second-person plural possessive", 

6659 "аларның (“their”)": "third-person plural possessive", 

6660 "Realis mood": "realis", # weyetun/Mapudungun 

6661 "singular or plural": [ 

6662 "singular", 

6663 "plural", 

6664 ], # aبڑھنا/Urdu 

6665 "iek": { # ongelje/Saterland Frisian 

6666 "lang": "Saterland Frisian", 

6667 "then": "first-person singular", 

6668 }, 

6669 # wenschen/Middle Dutch 

6670 "In genitive": { 

6671 "lang": "Middle Dutch", 

6672 "then": "infinitive genitive", 

6673 }, 

6674 "In dative": { 

6675 "lang": "Middle Dutch", 

6676 "then": "infinitive dative", 

6677 }, 

6678 # ongelje/Saterland Frisian 

6679 "hie/ju/dät": "third-person singular", 

6680 "wie": { 

6681 "lang": "Saterland Frisian", 

6682 "then": "first-person plural", 

6683 }, 

6684 "du": { 

6685 "lang": "Saterland Frisian", 

6686 "then": "second-person singular", 

6687 }, 

6688 # यहाँका/Nepali 

6689 "Low": { 

6690 "lang": "Nepali", 

6691 "then": "impolite", 

6692 }, 

6693 "Mid": { 

6694 "lang": "Nepali", 

6695 "then": "polite", 

6696 }, 

6697 "Low/Mid": { 

6698 "lang": "Nepali", 

6699 "then": "impolite polite", 

6700 }, 

6701 "High": { 

6702 "lang": "Nepali", 

6703 "then": "deferential", 

6704 }, 

6705 "izofa": "ezafe", # райҳон/Tajik 

6706 "ezâfe": "ezafe", # a دریچه/Persian 

6707 "adverbs": "adverb", # tꜣj/Egyptian 

6708 "Equative": "equative", # erk/Proto-Turkic 

6709 "Pres. subjunctive": "present subjunctive", # adkʷiseti/Proto-Celtic 

6710 "Inclusive Tri-Plural": "inclusive tri-plural", # aaombiniili'/Chickasaw 

6711 "1st-person dual": "first-person dual", # ferkuupe/North Frisian 

6712 "2nd-person dual": "second-person dual", # ferkuupe/North Frisian 

6713 # coymaq/Crimean Tatar 

6714 "repeated gerund": "gerund repeated", 

6715 "temporal gerund": "temporal gerund", 

6716 "non-future participle": "present past participle", 

6717 # tussenin/Dutch 

6718 "postpositional adv.": "adverb postpositional", 

6719 # védde/Ligurian 

6720 "lê o/a": "third-person singular", 

6721 "noî, niâtri": "first-person plural", 

6722 "voî, viâtri": "second-person plural", 

6723 "lô, liâtri": "third-person plural", 

6724 "che ti": "second-person singular subjunctive", 

6725 "che lê o/a": "third-person singular subjunctive", 

6726 "che noî, che niâtri": "first-person plural subjunctive", 

6727 "che voî, che viâtri": "second-person plural subjunctive", 

6728 "che lô, che liâtri": "second-person plural subjunctive", 

6729 "હું": "first-person singular", # અવતરવું/Gujarati/92 

6730 "અમે, આપણે": "first-person plural", # અવતરવું/Gujarati/184 

6731 "તું": "second-person singular", # અવતરવું/Gujarati/184 

6732 "તમે": "second-person plural", # અવતરવું/Gujarati/184 

6733 "તું, આ, આઓ, તે, તેઓ": "third-person", # અવતરવું/Gujarati/92 

6734 "marked indefinite or relative definite": [ # a دریچه/Persian 

6735 "stressed indefinite", 

6736 "relative definite", 

6737 ], 

6738 # delegher/Ladin 

6739 "el / ela": "third-person singular", 

6740 "ei / eles": "third-person plural", 

6741 "che ie": "first-person singular subjunctive", 

6742 "che el / ela": "third-person singular subjunctive", 

6743 "che nos": "first-person plural subjunctive", 

6744 "che vos": "second-person plural subjunctive", 

6745 "che ei / eles": "third-person plural subjunctive", 

6746 "preposition": "prepositional", # daarmede/Dutch 

6747 "Prolative II": "prolative prolative-ii", # килең/Tuvan 

6748 # pawjō/Proto-Italic 

6749 "Perfect indicative": "perfect indicative", 

6750 "Present imperative": "present imperative", 

6751 "Future imperative": "future imperative", 

6752 "tu-derivative": "tu-derivative", 

6753 "s-derivative": "s-derivative", 

6754 # weyetun/Mapudungun 

6755 "Tense particles (See particles)": "particle", 

6756 "iñce": "first-person singular", 

6757 "eymi": "second-person singular", 

6758 "fey": "third-person singular", 

6759 "iñciw": "first-person dual", 

6760 "eymu": "second-person dual", 

6761 "feygu": "third-person dual", 

6762 "iñciñ": "first-person plural", 

6763 "eymvn": "second-person plural", 

6764 "feygvn": "third-person plural", 

6765 "attributive": "attributive", # Өгэдэй/Mongolian/167 

6766 "Active indicative": "indicative active", # konyugön/Volapük/166 

6767 "Active subjunctive": "subjunctive active", # konyugön/Volapük/166 

6768 "Active optative": "optative active", # konyugön/Volapük/166 

6769 "Active interrogative": "interrogative active", # konyugön/Volapük/166 

6770 "Active jussive": "jussive active", # konyugön/Volapük/166 

6771 "definitive direct object": "direct-object definite", # دریچه/Persian/154 

6772 "preceding noun": "before-noun", # jenöfik/Volapük/151 

6773 "separated": "without-noun", # jenöfik/Volapük/151 

6774 "temp. dist.": "temporal distributive", # sisässä/Finnish/145 

6775 "oblique/vocative/instrumental": "oblique vocative instrumental", # કેટલું/Gujarati 

6776 "I-stem (Passive)": "passive", # सोहोर्नु/Nepali/144 

6777 "Passive indicative": "passive indicative", # konyugön/Volapük 

6778 "Passive subjunctive": "passive subjunctive", 

6779 "Passive optative": "passive optative", 

6780 "Passive interrogative": "passive interrogative", 

6781 "Passive jussive": "passive jussive", 

6782 "unmodified": "without-modifier", # birciqqo/Sidamo 

6783 "modified": "with-modifier", # birciqqo/Sidamo 

6784 "Past/present inchoative": "past present inchoative", # ganansiya/Cebuano 

6785 "Future/habitual inchoative": "future habitual inchoative", 

6786 "el / ela / Vde": "third-person singular", # aterecer/Galician 

6787 "eles / elas / Vdes": "third-person plural", # aterecer/Galician 

6788 "busatros busatras": "second-person plural", # foratar/Aragonese 

6789 "agentive / prospective": "agentive prospective", # a بڑھنا/Urdu 

6790 "мен": "first-person singular", # чылгаар/Tuvan 

6791 "бис": "first-person plural", 

6792 "силер": "second-person plural", 

6793 "ол": "third-person singular", 

6794 "олар": "third-person plural", 

6795 "-лар": "third-person plural", 

6796 "Past II": "past past-ii", 

6797 "Evidential": "evidential", 

6798 "-тар": "third-person plural", 

6799 "-нар": "third-person plural", 

6800 "-лер": "third-person plural", # дээр/Tuvan 

6801 "-тер": "third-person plural", 

6802 "-нер": "third-person plural", 

6803 "Grúundfoarme": "", # ongelje/Saterland Frisian 

6804 # oh-/Choctaw/124 

6805 "+V": { 

6806 "lang": "Choctaw", 

6807 "then": "before-vowel", 

6808 }, 

6809 "+C": { 

6810 "lang": "Choctaw", 

6811 "then": "before-consonant", 

6812 }, 

6813 "+s": { 

6814 "lang": "Choctaw", 

6815 "then": "before-s", 

6816 }, 

6817 "+C/i": { 

6818 "lang": "Choctaw", 

6819 "then": "before-consonant before-front-vowel", 

6820 }, 

6821 "+a/o": { 

6822 "lang": "Choctaw", 

6823 "then": "before-back-vowel", 

6824 }, 

6825 # +s +C +V +C/i +a/o +C +V +C +V +C +V 

6826 "past subjunctive": "past subjunctive", # شباهت داشتن/Persian/120 

6827 "vus": "second-person plural", # cumprar/Romansch/117 

6828 "nus": "first-person plural", 

6829 "jeu": "first-person singular", 

6830 "el/ella": "third-person singular", 

6831 "els/ellas": "third-person plural", 

6832 "che nus": "first-person plural subjunctive", 

6833 "che vus": "second-person plural subjunctive", 

6834 "ch'els/ch'ellas": "third-person plural subjunctive", 

6835 "che jeu": "first-person singular subjunctive", 

6836 "ch'el/ch'ella": "third-person singular subjunctive", 

6837 "direct future": "direct future", 

6838 "indirect future": "indirect future", 

6839 "unmarked": "", # tꜣj/Egyptian/114 

6840 "Conditional mood": "conditional", # weyetun/Mapudungun/112 

6841 "Volitive mood": "volitive", # weyetun/Mapudungun/112 

6842 "distant": "distal", # тұту/Kazakh/110 

6843 "affirmative commands": "imperative", # ፈተለ/Tigrinya/110 

6844 "negative commands": "negative imperative", 

6845 '1st-person ("my, our")': "first-person possessive", # aaombiniili'/Chickasaw/106 

6846 '2nd-person ("thy, your")': "second-person possessive", 

6847 '3rd-person ("his, her, its, their")': "third-person possessive", 

6848 "je (nos)": "first-person", # cogier/Norman/104 

6849 "Agentive": "agentive", # হাঁঠ/Assamese/102 

6850 "Middle voice": "middle-voice", # ḱléwseti/Proto-Indo-European/100 

6851 "1st-person (I, we)": "first-person", # chaaha̱ taloowa/Chickasaw/99 

6852 "2nd-person (you, you all)": "second-person", 

6853 "3rd-person (he, she, it, they)": "third-person", 

6854 "ils": "third-person plural", # ovrar/Franco-Provençal/98 

6855 "que je (j')": "first-person singular subjunctive", 

6856 "que te (t')": "second-person singular subjunctive", 

6857 "qu'il/el": "third-person singular subjunctive", 

6858 "qu'ils/els": "third-person plural subjunctive", 

6859 "il/elli": "third-person singular", 

6860 "Nasal": "mutation-nasal", # arglwyt/Middle Welsh/98 

6861 "Present progressive": "present progressive", # અવતરવું/Gujarati/92 

6862 "Negative conditional": "negative conditional", 

6863 "pronoun": "pronoun", # küm-/Maquiritari/88 

6864 "noun possessor/ series II verb argument": [ 

6865 "possessive", 

6866 "series-ii-verb-argument", 

6867 ], 

6868 "series I verb argument": "series-ii-verb-argument", 

6869 "postposition object": "direct-object postpositional", 

6870 "transitive patient": "transitive patient", 

6871 "intransitive patient-like": "intransitive patient-like", 

6872 "intransitive agent-like": "intransitive agent-like", 

6873 "transitive agent": "transitive agent", 

6874 "first person dual inclusive": "first-person dual inclusive", 

6875 "first person dual exclusive": "first-person dual exclusive", 

6876 "distant past third person": "distant-past past", 

6877 "coreferential/reflexive": "reflexive", 

6878 "series I verb argument: transitive agent and transitive patient": "transitive agent patient", 

6879 "first person > second person": "first-person object-second-person", 

6880 "first person dual exclusive > second person": "first-person dual exclusive object-second-person", 

6881 "second person > first person": "second-person object-first-person", 

6882 "second person > first person dual exclusive": "second-person object-first-person object-dual object-exclusive", 

6883 "third person > any person X …or… any person X > third person": [ 

6884 "third-person", 

6885 "object-third-person", 

6886 ], 

6887 "2nd Person Singular": "second-person singular", # spigen/Middle Low German 

6888 "él": "third-person singular", # foratar/Aragonese 

6889 "nusatros nusatras": "first-person plural", 

6890 "ellos/els ellas": "third-person plural", 

6891 "Conjectural": "", # 노타/Middle Korean/85 

6892 "transgressive present": "present transgressive", # naposlouchat/Czech 

6893 "transgressive past": "past transgressive", 

6894 "Verbal adjective": "adjective-from-verb", 

6895 "je (j’) / i": "first-person singular", # gizai/Bourguignon/81 

6896 "je (j') / i": "first-person singular", # antreprarre/Bourguignon/79 

6897 "que je (j') / qu'i": "first-person singular subjunctive", 

6898 "que je (j’) / qu'i": "first-person singular subjunctive", 

6899 "ai (el), ale": "third-person singular", # gizai/Bourguignon/58 

6900 "ai (el), ales": "third-person plural", 

6901 "qu'ai (el), qu'ale": "third-person singular subjunctive", 

6902 "qu'ai (el), qu'ales": "third-person plural subjunctive", 

6903 "determiners and pronouns": "determiner pronoun", # tꜣj/Egyptian/76 

6904 "anaphoric": "anaphoric", 

6905 "regular": "", # এৱা গাখীৰ/Assamese/74 

6906 "very formal": "deferential", 

6907 "infinitive II": "infinitive-ii infinitive", # ferkuupe/North Frisian 

6908 "PROGRESSIVE": "progressive", # yitih/Navajo 

6909 "past stem": "stem past", # a شباهت داشتن/Persian 

6910 "nominative, genitive and instrumental": "nominative genitive instrumental", # ხმოვანი/Georgian 

6911 "ej (j')": "first-person singular", # vouloér/Picard 

6912 "tu (t')": "second-person singular", 

6913 "i (il)/ale": "third-person singular", # vouloér/Picard 

6914 "i (il)/a (al)": "third-person singular", # ète/Picard/1 

6915 "(n)os": "first-person plural", # vouloér/Picard/60 

6916 "os": "second-person plural", # vouloér/Picard 

6917 "is": "third-person plural", # vouloér/Picard/31 

6918 "qu'ej (j')": "first-person singular subjunctive", # vouloér/Picard/31 

6919 "qu'tu (t')": "second-person singular subjunctive", 

6920 "eq tu (t')": "second-person singular subjunctive", # ète/Picard/1 

6921 "qu'i (il)/ale": "third-person singular subjunctive", # connoéte/Picard/29 

6922 "qu'i (il)/a (al)": "third-person singular subjunctive", # vouloér/Picard/2 

6923 "qu'(n)os": "first-person plural subjunctive", # connoéte/Picard/29 

6924 "qu'os": "first-person second-person plural subjunctive", # vouloér/Picard/33 

6925 "qu'is": "third-person plural subjunctive", # vouloér/Picard/31 

6926 "inanimate pronoun": "inanimate pronoun", # mönsemjo/Maquiritari 

6927 "medial": "medial", 

6928 "unmarked (later)": "", # ntw/Egyptian singular/plural/unmarked 

6929 "H-prothesis": "prothesis-h", # arglwyt/Middle Welsh/61 

6930 "h-prothesis": "prothesis-h", # moved here, uncommented 

6931 "distant past": "distant-past past", # weyetun/Mapudungun/56 

6932 # XXX Tatar has a ton of soft hyphens 

6933 "Futu\xadre": "future", #!! soft hyphen! тыңларга/Tatar 

6934 "Nonfinite verb forms": "", 

6935 "transitory past": "past transitional-past", # тұту/Kazakh 

6936 "сен": { 

6937 "lang": "Kazakh", 

6938 "then": "second-person singular informal", 

6939 "else": { 

6940 "lang": "Tuvan", 

6941 "then": "second-person singular", 

6942 }, 

6943 }, 

6944 "сіз": "second-person singular formal", 

6945 "біз": "first-person plural", 

6946 "сендер": "second-person plural informal", 

6947 "сіздер": "second-person plural formal", 

6948 "imperative/hortative": "imperative hortative", 

6949 "gend/num": "", # vascuenciu/Asturian/54 

6950 "inf": "infinitive", # হাঁঠ/Assamese/54 

6951 "ca je/i'": "first-person singular subjunctive", # spantacà/Neapolitan 

6952 "ca tu": "second-person singular subjunctive", 

6953 "ca nuje": "first-person plural subjunctive", 

6954 "il, alle, nos": "third-person singular", # cogier/Norman/52 

6955 "il, alles": "third-person plural", 

6956 "qu'il, qu'alle, que nos": "third-person singular subjunctive", 

6957 "que je (que nos)": "first-person plural subjunctive", 

6958 "qu'il, qu'alles": "third-person plural subjunctive", 

6959 # Get yourself together, Sardinian 

6960 "deo": "", # nochere/Sardinian/52 

6961 "deo, eo": "", # tzappare/Sardinian/51 

6962 "dego, deo": "", # tzappare/Sardinian/33 

6963 "isse/issa": "", # nochere/Sardinian/27 

6964 "chi deo, chi eo": "", # tzappare/Sardinian/17 

6965 "chi deo": "", # impreare/Sardinian/12 

6966 "chi dego, chi deo": "", # tzappare/Sardinian/11 

6967 "che deo": "", # nochere/Sardinian/8 

6968 "che tue": "", # nochere/Sardinian/8 

6969 "che isse/issa": "", # nochere/Sardinian/8 

6970 "che nois": "", # nochere/Sardinian/8 

6971 "che bois": "", # nochere/Sardinian/8 

6972 "che issos/issas": "", # nochere/Sardinian/8 

6973 "issos/ issas": "", # finire/Sardinian/4 

6974 "eo, deo": "", # finire/Sardinian/3 

6975 "deu": "", # essi/Sardinian/3 

6976 "tui": "", # essi/Sardinian/3 

6977 "nosu": "", # essi/Sardinian/3 

6978 "bosatrus/bosatras": "", # essi/Sardinian/3 

6979 "issus/issas": "", # essi/Sardinian/3 

6980 "past/ imperfect": "", # finire/Sardinian/2 

6981 "+ past participle": "", # pòdere/Sardinian/2 

6982 "isse/ issa": "", # finire/Sardinian/1 

6983 "chi deu": "", # essi/Sardinian/1 

6984 "chi tui": "", # essi/Sardinian/1 

6985 "chi nosu": "", # essi/Sardinian/1 

6986 "chi bosatrus/bosatras": "", # essi/Sardinian/1 

6987 "chi issus/issas": "", # essi/Sardinian/1 

6988 "Verbs beginning with a consonant.": "", # chaaha̱ taloowa/Chickasaw/52 

6989 "te": "second-person singular", # ovrar/Franco-Provençal 

6990 "nu": "first-person plural", # legro/Dalmatian 

6991 "vu": "second-person plural", 

6992 "Perfekta": "perfect", # sannoa/Ingrian/50 

6993 "Nouns in vowel-, b-, or p-": "", # aaombiniili'/Chickasaw/50 

6994 "subjunctive present": "present subjunctive", # a متشکر بودن/Persian/48 

6995 "1st Person Singular": "first-person singular", # spigen/Middle Low German 

6996 "3rd Person Singular": "third-person singular", 

6997 "Rewş": "", # "case", kerguh/Northern Kurdish 

6998 "Vde": "third-person singular", # aterecer/Galician 

6999 "Vdes": "third-person plural", 

7000 "IMPF": "imperfect", # डिलीट होना/Hindi 

7001 "frm": "", # ??? "form"? হাঁঠ/Assamese 

7002 "focus": "focus", # issito/Choctaw 

7003 "singular 1ˢᵗ person": "first-person singular", # гъэкӏодын/Adyghe 

7004 "singular 2ˢᵗ person": "second-person singular", 

7005 "singular 3ˢᵗ person": "third-person singular", 

7006 "plural 1ˢᵗ person": "first-person plural", 

7007 "plural 2ˢᵗ person": "second-person plural", 

7008 "plural 3ˢᵗ person": "third-person plural", 

7009 "Neuter gender": "neuter", # 𒄭𒅔𒃷/Hittite 

7010 "Plain Infinitive": "infinitive", # spigen/Middle Low German 

7011 "Full Infinitive (Gerund)": "gerund infinitive", 

7012 "Imperatives": { 

7013 "default": "imperative", 

7014 "lang": "Swahili", 

7015 "then": "dummy-section-header imperative", 

7016 }, 

7017 "Tensed forms": { 

7018 "default": "", 

7019 "lang": "Swahili", 

7020 "then": "dummy-reset-section-header", 

7021 }, 

7022 "Object concord (indicative positive)": { 

7023 "default": "object-concord indicative positive", 

7024 "lang": "Swahili", 

7025 "then": "dummy-section-header object-concord indicative positive", 

7026 }, 

7027 "Relative forms": { 

7028 "default": "", 

7029 "lang": "Swahili", 

7030 "then": "dummy-section-header relative object-concord", 

7031 }, 

7032 "2nd Person Plural": "second-person plural", 

7033 "free state": "free-state", # aɣemmar/Tarifit 

7034 "construct state": "construct", 

7035 "dative/instr": "dative instrumental", # unseraz/Proto-Germanic/39 

7036 "infinitive III": "infinitive infinitive-iii", # stärwe/North Frisian 

7037 "determiners": "determiner", # nꜣyw/Egyptian/38 

7038 "pronouns": "pronoun", 

7039 "proximal to speaker": "proximal-to-speaker", 

7040 "proximal to spoken of": "proximal-to-topic", 

7041 "‘copula’": "copulative", 

7042 "possessive determiners (used with suffix pronouns)": "possessive determiner", 

7043 "relational pronouns (‘possessive prefixes’)": "possessive pronoun", 

7044 "definite articles": "definite article", 

7045 "indefinite articles": "indefinite article", 

7046 "Aspirate": "mutation-aspirate", # vynet/Middle Welsh/37 

7047 "dji (dj')": "first-person singular", # atchter/Walloon/37 

7048 "preterit": "preterite", 

7049 "dji / nos": "first-person plural", 

7050 "nós nós outros nós outras": "first-person plural", # prazer/Old Portuguese 

7051 "vós vós outros vós outras": "second-person plural", 

7052 "contrastive": "contrastive", # issito/Choctaw/36 

7053 # espurrire/Leonese 

7054 "you": { 

7055 "lang": "Leonese", 

7056 "then": "first-person singular", 

7057 }, 

7058 "él / eilla / eillu / vusté": "third-person singular", 

7059 "nosoutros / nosoutras": "first-person plural", 

7060 "vosoutros / vosoutras": "second-person plural", 

7061 "eillos / eillas / vustedes": "third-person plural", 

7062 "Personal-pronoun including forms": "", # ܓܘ/Assyrian Neo-Aramaic/36 

7063 "Non-personal-pronoun-including form": "", # במו/Hebrew/35 

7064 # pårler/Walloon 

7065 "i (il) / ele": "third-person singular", 

7066 "dji (dj') / nos": "first-person plural", 

7067 "ki dj'": "first-person singular subjunctive", 

7068 "ki t'": "second-person singular subjunctive", 

7069 "k' i (il) / k' ele": "third-person singular subjunctive", 

7070 "ki dj' / ki nos": "first-person plural subjunctive", 

7071 "ki vos": "second-person plural subjunctive", 

7072 "k' i (il)": "third-person plural subjunctive", 

7073 # sannoa/Ingrian, rest of these 

7074 "Imperfekta": "imperfect", 

7075 "Pluskvamperfekta": "pluperfect", 

7076 "Infinitivat": "infinitive", 

7077 "Partisipat": "participle", 

7078 # f/Slovene 

7079 "nominative imenovȃlnik": "nominative", 

7080 "genitive rodȋlnik": "genitive", 

7081 "dative dajȃlnik": "dative", 

7082 "accusative tožȋlnik": "accusative", 

7083 "locative mẹ̑stnik": "locative", 

7084 "instrumental orọ̑dnik": "instrumental", 

7085 "(vocative) (ogȏvorni imenovȃlnik)": "vocative", 

7086 # akaka/Choctaw 

7087 "Possession": "possessed-form", 

7088 '("my, our")': "first-person possessive", 

7089 '("thy, your")': "second-person possessive", 

7090 '("his, her, its, their")': "third-person possessive", 

7091 # humingi/Tagalog 

7092 # Why is there \u2060 in so many differen tagalog templates like these??? 

7093 "\u2060 ma- -an": "", 

7094 "\u2060mapag- -an": "", 

7095 "\u2060mapagpa- -an": "", 

7096 "\u2060mapapag- -an": "", 

7097 "\u2060 mapa- -an": "", 

7098 # katayin/Tagalog 

7099 "\u2060mapapag-": "", 

7100 # -nən/Azerbaijani floating div! Got it to work! 

7101 "preceding vowel": "", 

7102 "A / I / O / U": "back-vowel-harmony", 

7103 "E / Ə / İ / Ö / Ü": "front-vowel-harmony", 

7104 "postconsonantal": "after-consonant", 

7105 "postvocalic": "after-vowel", 

7106 # -ül/Azerbaijani 

7107 "A / I": "back-vowel-harmony unrounded-harmony", 

7108 "E / Ə / İ": "front-vowel-harmony unrounded-harmony", 

7109 "O / U": "back-vowel-harmony rounded-harmony", 

7110 "Ö / Ü": "front-vowel-harmony rounded-harmony", 

7111 "postconsonantal except after L": "after-consonant-except-l", 

7112 "after L": "after-l-consonant", 

7113 # kk-suffix-forms Kazakh 

7114 "А / Ы / О / Ұ": "back-vowel-harmony", 

7115 "Ә / Е / І / Ө / Ү": "front-vowel-harmony", 

7116 # ky-suffix-forms Kyrgyz 

7117 "А / Ы": "back-vowel-harmony unrounded-harmony", 

7118 "Е / И": "front-vowel-harmony unrounded-harmony", 

7119 "О / У": "back-vowel-harmony rounded-harmony", 

7120 "Ө / Ү": "front-vowel-harmony unrounded-harmony", 

7121 # tr-inf-p Turkish 

7122 "E / İ": "front-vowel-harmony unrounded-harmony", 

7123 # tt-suffix-forms Tatar 

7124 "А / Ы / О / У": "back-vowel-harmony", 

7125 "Ә/ Е / Э / Ө / Ү": "front-vowel-harmony", 

7126 # wasick/Narragansett 

7127 "unpossessed": { 

7128 "lang": "Narragansett", 

7129 "then": "", 

7130 }, 

7131 # patika/Swahili new tables! 

7132 "m-wa_((I/II))": "class-1 class-2", 

7133 "m-mi_((III/IV))": "class-3 class-4", 

7134 "ji-ma_((V/VI))": "class-5 class-6", 

7135 "ki-vi_((VII/VIII))": "class-7 class-8", 

7136 "n_((IX/X))": "class-9 class-10", 

7137 "u_((XI))": "class-11", 

7138 "ku_((XV/XVII))": "class-15 class-17", 

7139 "pa_((XVI))": "class-16", 

7140 "mu_((XVIII))": "class-18", 

7141 # ծաղրել/Armenian 

7142 "past future": "future past", 

7143 # new Finnish verb table stuff takaisinmallintaa/Finnish 

7144 "plur.": "plural", 

7145 "sing.": "singular", 

7146} 

7147 

7148 

7149def check_tags(k: str, v: str) -> None: 

7150 assert isinstance(k, str) 

7151 assert isinstance(v, str) 

7152 for tag in v.split(): 

7153 if tag not in valid_tags and tag not in ("*",): 7153 ↛ 7154line 7153 didn't jump to line 7154 because the condition on line 7153 was never true

7154 print("infl_map[{!r}] contains invalid tag {!r}".format(k, tag)) 

7155 

7156 

7157def check_v( 

7158 k: str, v: Union[str, list[str], dict[str, InflMapNode], InflMapNodeDict] 

7159) -> None: 

7160 assert isinstance(k, str) 

7161 if v is None: # or v in ("dummy-reset-headers",): 7161 ↛ 7162line 7161 didn't jump to line 7162 because the condition on line 7161 was never true

7162 return 

7163 if isinstance(v, str): 

7164 check_tags(k, v) 

7165 elif isinstance(v, list): 

7166 for item in v: 

7167 check_v(k, item) 

7168 elif isinstance(v, dict): 7168 ↛ 7210line 7168 didn't jump to line 7210 because the condition on line 7168 was always true

7169 for kk in v.keys(): 

7170 if kk in ( 

7171 "if", 

7172 "then", 

7173 "else", 

7174 ): 

7175 check_v(k, v[kk]) 

7176 elif kk == "default": 

7177 if not isinstance(v[kk], (str, list, tuple)): 7177 ↛ 7178line 7177 didn't jump to line 7178 because the condition on line 7177 was never true

7178 print( 

7179 "infl_map[{!r}] contains invalid default value " 

7180 "{!r}".format(k, v[kk]) 

7181 ) 

7182 elif kk == "pos": 

7183 vv = v[kk] 

7184 if isinstance(vv, str): 

7185 vv = [vv] 

7186 for vvv in vv: 

7187 if vvv not in PARTS_OF_SPEECH: 7187 ↛ 7188line 7187 didn't jump to line 7188 because the condition on line 7187 was never true

7188 print( 

7189 "infl_map[{!r}] contains invalid part-of-speech " 

7190 "{!r} -- {!r}".format(k, kk, v[kk]) 

7191 ) 

7192 elif kk in ("lang",): 

7193 pass 

7194 elif kk == "nested-table-depth": 7194 ↛ 7200line 7194 didn't jump to line 7200 because the condition on line 7194 was always true

7195 if not isinstance(v[kk], (int, list, tuple)): 7195 ↛ 7196line 7195 didn't jump to line 7196 because the condition on line 7195 was never true

7196 print( 

7197 "infl_map[{!r}] contains invalid depth-value " 

7198 "{!r}".format(k, v[kk]) 

7199 ) 

7200 elif kk == "inflection-template": 

7201 if not isinstance(v[kk], (str, list, tuple)): 

7202 print( 

7203 "infl_map[{!r}] contains invalid" 

7204 "inflection-template value " 

7205 "{!r}".format(k, v[kk]) 

7206 ) 

7207 else: 

7208 print("infl_map[{!r}] contains invalid key {!r}".format(k, kk)) 

7209 else: 

7210 print("infl_map[{!r}] contains invalid value {!r}".format(k, v)) 

7211 

7212 

7213for k, v in infl_map.items(): 

7214 check_v(k, v) 

7215 

7216 

7217# Mapping from start of header to tags for inflection tables. The start must 

7218# be followed by a space (automatically added, do not enter here). 

7219infl_start_map = { 

7220 "with infinitive": "infinitive", 

7221 "with gerund": "gerund", 

7222 "with informal second-person singular imperative": "informal second-person singular imperative", 

7223 "with informal second-person singular tú imperative": # cedular/Spanish 

7224 "informal second-person singular imperative with-tú", 

7225 "with informal second-person singular vos imperative": "informal second-person singular imperative with-vos", 

7226 "with formal second-person singular imperative": "formal second-person singular imperative", 

7227 "with first-person plural imperative": "first-person plural imperative", 

7228 "with informal second-person plural imperative": "informal second-person plural imperative", 

7229 "with formal second-person plural imperative": "formal second-person plural imperative", 

7230 # kaozeal/Breton 

7231 "Soft mutation after": "mutation-soft", 

7232 "Mixed mutation after": "mutation-mixed", 

7233 # gláedach/Old Irish 

7234 "Initial mutations of a following adjective:": "dummy-skip-this", 

7235} 

7236for k, v in infl_start_map.items(): 

7237 check_v(k, v) 

7238 

7239infl_start_re = re.compile( 

7240 r"^({}) ".format("|".join(re.escape(x) for x in infl_start_map.keys())) 

7241)