better
This commit is contained in:
parent
a0091929be
commit
490776e75a
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lingdocs/pashto-inflector",
|
"name": "@lingdocs/pashto-inflector",
|
||||||
"version": "3.0.3",
|
"version": "3.0.4",
|
||||||
"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",
|
||||||
|
|
|
@ -57,7 +57,7 @@ export function renderEnglishVPBase({ subjectPerson, object, vs }: {
|
||||||
]),
|
]),
|
||||||
subjunctiveVerb: (s: T.Person, ec: T.EnglishVerbConjugationEc, n: boolean) => ([
|
subjunctiveVerb: (s: T.Person, ec: T.EnglishVerbConjugationEc, n: boolean) => ([
|
||||||
`that $SUBJ ${n ? " won't" : " will"} ${isToBe(ec) ? "be" : ec[0]}`,
|
`that $SUBJ ${n ? " won't" : " will"} ${isToBe(ec) ? "be" : ec[0]}`,
|
||||||
`should $SUBJ ${n ? " not" : ""} ${isToBe(ec) ? "be" : ec[0]}`,
|
`$SUBJ ${n ? " not" : ""} should ${isToBe(ec) ? "be" : ec[0]}`,
|
||||||
]),
|
]),
|
||||||
imperfectiveFuture: futureEngBuilder,
|
imperfectiveFuture: futureEngBuilder,
|
||||||
perfectiveFuture: futureEngBuilder,
|
perfectiveFuture: futureEngBuilder,
|
||||||
|
@ -154,6 +154,7 @@ export function renderEnglishVPBase({ subjectPerson, object, vs }: {
|
||||||
]),
|
]),
|
||||||
subjunctiveVerb: (s: T.Person, v: T.EnglishVerbConjugationEc, n: boolean) => ([
|
subjunctiveVerb: (s: T.Person, v: T.EnglishVerbConjugationEc, n: boolean) => ([
|
||||||
`that $SUBJ will${n ? " not" : ""} be ${v[4]}`,
|
`that $SUBJ will${n ? " not" : ""} be ${v[4]}`,
|
||||||
|
`$SUBJ should ${n ? " not" : ""} be ${v[4]}`,
|
||||||
]),
|
]),
|
||||||
imperfectiveFuture: (s: T.Person, v: T.EnglishVerbConjugationEc, n: boolean) => ([
|
imperfectiveFuture: (s: T.Person, v: T.EnglishVerbConjugationEc, n: boolean) => ([
|
||||||
`$SUBJ will${n ? " not" : ""} be ${v[4]}`,
|
`$SUBJ will${n ? " not" : ""} be ${v[4]}`,
|
||||||
|
|
Loading…
Reference in New Issue