oops big mistake with future perfect

This commit is contained in:
lingdocs 2022-04-03 19:34:25 +05:00
parent 38fc0beb04
commit 786e3855e9
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@lingdocs/pashto-inflector", "name": "@lingdocs/pashto-inflector",
"version": "1.6.7", "version": "1.6.8",
"author": "lingdocs.com", "author": "lingdocs.com",
"description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations", "description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations",
"homepage": "https://verbs.lingdocs.com", "homepage": "https://verbs.lingdocs.com",

View File

@ -416,7 +416,7 @@ function makePerfectContent(info: T.NonComboVerbInfo): T.PerfectContent {
const present = addToForm([...pastPart, " "], equativeEndings.present); const present = addToForm([...pastPart, " "], equativeEndings.present);
const habitual = addToForm([...pastPart, " "], equativeEndings.habitual); const habitual = addToForm([...pastPart, " "], equativeEndings.habitual);
const subjunctive = addToForm([...pastPart, " "], equativeEndings.subjunctive); const subjunctive = addToForm([...pastPart, " "], equativeEndings.subjunctive);
const future = addToForm([baParticle, " ", ...pastPart, " "], equativeEndings.subjunctive); const future = addToForm([baParticle, " ", ...pastPart, " "], equativeEndings.habitual);
const affirmational = addToForm([baParticle, " ", ...pastPart, " "], equativeEndings.past.short); const affirmational = addToForm([baParticle, " ", ...pastPart, " "], equativeEndings.past.short);
const pastSubjunctiveHypothetical = addToForm([...pastPart, " "], equativeEndings.pastSubjunctive); const pastSubjunctiveHypothetical = addToForm([...pastPart, " "], equativeEndings.pastSubjunctive);
return { return {
@ -532,7 +532,7 @@ function makePassivePerfectContent(info: T.StativeCompoundVerbInfo): T.PerfectCo
); );
const future = addToForm( const future = addToForm(
[baParticle, " ", info.complement, " ", passiveStativeBridge, " ", pPart, " "], [baParticle, " ", info.complement, " ", passiveStativeBridge, " ", pPart, " "],
equativeEndings.subjunctive, equativeEndings.habitual,
); );
const affirmational = addToForm( const affirmational = addToForm(
[baParticle, " ", info.complement, " ", passiveStativeBridge, " ", pPart, " "], [baParticle, " ", info.complement, " ", passiveStativeBridge, " ", pPart, " "],