fix bug with the negative imperative and staying imperfective
This commit is contained in:
parent
611f5defe5
commit
c6f9626039
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lingdocs/pashto-inflector",
|
"name": "@lingdocs/pashto-inflector",
|
||||||
"version": "2.1.4",
|
"version": "2.1.5",
|
||||||
"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",
|
||||||
|
|
|
@ -162,7 +162,9 @@ function getPsVerbConjugation(conj: T.VerbConjugation, vs: T.VerbSelectionComple
|
||||||
// TODO: handle the imperative form here
|
// TODO: handle the imperative form here
|
||||||
const f = getTenseVerbForm(conj, vs.tense, vs.voice, vs.negative);
|
const f = getTenseVerbForm(conj, vs.tense, vs.voice, vs.negative);
|
||||||
const block = getMatrixBlock(f, objectPerson, person);
|
const block = getMatrixBlock(f, objectPerson, person);
|
||||||
const perfective = isPerfective(vs.tense);
|
const perfective = (vs.tense === "perfectiveImperative" && vs.negative)
|
||||||
|
? false
|
||||||
|
: isPerfective(vs.tense);
|
||||||
const verbForm = getVerbFromBlock(block, person);
|
const verbForm = getVerbFromBlock(block, person);
|
||||||
const hasBa = hasBaParticle(getLong(verbForm)[0]);
|
const hasBa = hasBaParticle(getLong(verbForm)[0]);
|
||||||
if (perfective) {
|
if (perfective) {
|
||||||
|
|
|
@ -543,7 +543,7 @@ export type VPSelectionComplete = {
|
||||||
verb: VerbSelectionComplete,
|
verb: VerbSelectionComplete,
|
||||||
};
|
};
|
||||||
|
|
||||||
export type VerbSelectionComplete = Omit<VerbSelection, "object" | "verbTense" | "perfectTense" | "tenseCategory"> & {
|
export type VerbSelectionComplete = Omit<VerbSelection, "object" | "verbTense" | "perfectTense" | "imperfectiveTense" | "tenseCategory"> & {
|
||||||
object: Exclude<VerbObject, undefined>,
|
object: Exclude<VerbObject, undefined>,
|
||||||
tense: VerbTense | PerfectTense | ModalTense | ImperativeTense,
|
tense: VerbTense | PerfectTense | ModalTense | ImperativeTense,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue