imperatives chapter

This commit is contained in:
lingdocs 2021-07-20 15:49:28 +03:00
parent 16d1247f7a
commit 63520c85b6
9 changed files with 1094 additions and 6 deletions

View File

@ -4,7 +4,7 @@
"private": true,
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.2",
"@lingdocs/pashto-inflector": "^0.8.1",
"@lingdocs/pashto-inflector": "^0.8.3",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",

View File

@ -6,7 +6,7 @@ function Formula(props) {
return (
<div className="text-center my-4" style={{ fontSize: "larger" }}>
<div className="mb-2">
<span role="img" aria-label="">🧪</span> Formula:
<span role="img" aria-label="">🧪</span> {props.name ? props.name : ""} Formula:
</div>
<samp>{props.children}</samp>
</div>

View File

@ -23,6 +23,7 @@ import * as verbsIntro from "!babel-loader!mdx-loader!./verbs/verbs-intro.mdx";
import * as presentVerbs from "!babel-loader!mdx-loader!./verbs/present-verbs.mdx";
import * as subjunctiveVerbs from "!babel-loader!mdx-loader!./verbs/subjunctive-verbs.mdx";
import * as futureVerbs from "!babel-loader!mdx-loader!./verbs/future-verbs.mdx";
import * as imperativeVerbs from "!babel-loader!mdx-loader!./verbs/imperative-verbs.mdx";
import * as verbEndings from "!babel-loader!mdx-loader!./verbs/verb-endings.mdx";
import * as rootsAndStems from "!babel-loader!mdx-loader!./verbs/roots-and-stems.mdx";
import * as sentenceStructure from "!babel-loader!mdx-loader!./verbs/sentence-structure.mdx";
@ -106,6 +107,10 @@ const contentTree = [
import: futureVerbs,
slug: "future-verbs",
},
{
import: imperativeVerbs,
slug: "imperative-verbs",
},
{
import: verbEndings,
slug: "verb-endings",

View File

@ -0,0 +1,213 @@
---
title: Imperative
---
import {
defaultTextOptions as opts,
Examples,
InlinePs,
removeFVariants,
ConjugationViewer,
} from "@lingdocs/pashto-inflector";
import psmd from "../../lib/psmd";
import Carousel from "../../components/Carousel";
import Link from "../../components/Link";
import Formula from "../../components/formula/Formula";
import verbs from "../../words/verbs";
import shuffleArray from "../../lib/shuffle-array";
import imperfectiveImperative from "./imperfective-imperative.svg";
import perfectiveImperative from "./perfective-imperative.svg";
The imperative form is used for **giving commands** (telling people to do things).
There are two forms of the imperative:
1. <i class="fas fa-video" /> Imperfective Imperative
2. <i class="fas fa-camera" /> Perfective Imperative
export const basicVerbs = verbs.filter((v) => !v.entry.c?.includes("gramm. trans."));
## Imperfective Imperative
<Formula name="Imperfective Imperative">
Imperfective Stem + <Link to="/verbs/verb-endings/#imperative-verb-endings">Imperative Ending</Link>
</Formula>
The <i class="fas fa-video" /> **imperfective imperative** is used when you want to tell someone to something repeatedly, in general, or if you're wanting them to get going on action that will be ongoing.
<div className="text-center">
<img src={imperfectiveImperative} alt="" className="img-fluid" />
</div>
## Perfective Imperative
<Formula name="Perfective Imperative">
Perfective Stem + <Link to="/verbs/verb-endings/#imperative-verb-endings">Imperative Ending</Link>
</Formula>
The <i class="fas fa-camera" /> **perfective imperative** is used when you want to tell someone to do something is a one time, complete action. You are not thinking of the action as a process or as something that will be repeated, you are just telling the person to *get the action done*.
<div className="text-center">
<img src={perfectiveImperative} alt="" className="img-fluid" />
</div>
<Carousel stickyTitle items={shuffleArray(basicVerbs)} render={(item) => {
return {
title: <InlinePs opts={opts} ps={{
...removeFVariants(item.entry),
e: item.def,
}} />,
body: <div className="text-left">
<ConjugationViewer
entry={item.entry}
textOptions={opts}
highlightInRootsAndStems={["imperfective stem", "perfective stem"]}
showOnly={["Perfective Imperative", "Imperfective Imperative"]}
hidePastParticiple
sentenceLevel="easy"
/>
</div>,
};
}}/>
## Using Imperatives
For Pashto learners, having a choice between the perfective and imperfective imperatives is *not* something we are accustomed to. And so, it takes a lot of time to get used to the difference, and to choose the right form while speaking.
<div className="my-3" style={{ overflowX: "auto" }}>
<table class="table">
<thead>
<tr>
<th scope="col">
<div><i class="fas fa-video" /> Imperfective</div>
<div><samp>w/ imperfective stem</samp></div>
</th>
<th scope="col">
<div><i class="fas fa-camera" /> Perfective</div>
<div><samp>w/ perfective stem</samp></div>
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<Examples opts={opts}>{psmd([
{
p: "وریژې **خوره**",
f: "wreejze **khorá**",
e: "Eat rice",
sub: "(in general, it's good for you)",
},
])}</Examples>
</td>
<td>
<Examples opts={opts}>{psmd([
{
p: "وریژې **وخوره**",
f: "wreejze **óokhora**",
e: "Eat rice",
sub: "(one time)",
},
])}</Examples>
</td>
</tr>
<tr>
<td>
<Examples opts={opts}>{psmd([
{
p: "د کلي عکسونه راته **لېږه**!",
f: "du kulee aksoona raa-ta **leGá**!",
e: "Send me pictures of the village!",
sub: "(send me pictures every once and awhile)",
},
])}</Examples>
</td>
<td>
<Examples opts={opts}>{psmd([
{
p: "د کلي عکسونه راته **ولېږه**!",
f: "du kulee aksoona raa-ta **óoleGa**!",
e: "Send me pictures of the village!",
sub: "(send me a bunch of pictures in one clump, at one time)",
},
])}</Examples>
</td>
</tr>
<tr>
<td>
<Examples opts={opts}>{psmd([
{
p: "تاسو هلته **کېنئ**",
f: "taaso halta **kenéyy**",
e: "You sit there",
sub: "(in general, whenever you come)"
},
])}</Examples>
</td>
<td>
<Examples opts={opts}>{psmd([
{
p: "تاسو هلته **کېنئ**",
f: "taaso halta **kéneyy**",
e: "You sit there",
sub: "(one time, in one instance sit)"
},
])}</Examples>
</td>
</tr>
</tbody>
</table>
</div>
Notice how the in the perfective form *the accent is always on the front* because it's based on the <Link to="/verbs/roots-and-stems/">perfective stem</Link>.
### Singular and Plural
You will notice there are only two <Link to="/verbs/verb-endings/#imperative-verb-endings">imperative endings</Link>:
- <InlinePs opts={opts} ps={{ p: "ـه", f: "-a" }} /> - used for addressing a singular 2nd person <InlinePs opts={opts} ps={{ p: "ته", f: "tu", e: "you" }} />
- <InlinePs opts={opts} ps={{ p: "ـئ", f: "-eyy" }} /> - used for addressing a plural 2nd person <InlinePs opts={opts} ps={{ p: "تاسو", f: "taaso", e: "you" }} />, either because you're talking to a group of people, or you're being extra respectful with one person.
<div className="my-3" style={{ overflowX: "auto" }}>
<table class="table">
<thead>
<tr>
<th scope="col">Singular</th>
<th scope="col">Plural</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<Examples opts={opts}>{psmd([
{ p: "ته راځه!", f: "tu raadzá!", e: "You come!" }
])}</Examples>
</td>
<td>
<Examples opts={opts}>{psmd([
{ p: "تاسو راځئ!", f: "taaso radzéyy!", e: "You (pl.) come!" },
])}</Examples>
</td>
</tr>
</tbody>
</table>
</div>
## Negative Imperatives
**In the negative form of commands** (ie. *"Don't ____"*), **the aspect choice dissapears**. There is no imperfective/perfective option with negative imperatives, there's only one form.
<Formula name="Negative Imperative">
<InlinePs opts={opts} ps={{ p: "مه", f: "má" }} /> + Imperfective Stem + <Link to="/verbs/verb-endings/#imperative-verb-endings">Imperative Ending</Link>
</Formula>
With this form, you can't specify whether you're talking about about the action in a <i class="fas fa-camera" /> perfective or <i class="fas fa-video" /> imperfective way. You're just saying "don't do it!", either one time or in general.
<Examples opts={opts}>{[
{ p: "مه راځه!", f: "má raadza", e: "Don't come!" },
{ p: "وریژې مه خوره!", f: "wreejze má khora!", e: "Don't eat rice!" },
{ p: "عکسونه راته مه لېږه!", f: "aksoona raa-ta má leGa!", e: "Don't send me pictures!" },
{ p: "تاسو هلته مه کېنئ!", f: "taaso halta má keneyy!", e: "Don't sit there!" },
]}</Examples>
Just like with the negative particle <InlinePs opts={opts} ps={{ p: "نه", f: "nú" }} /> that we used with other verb forms, the negative <InlinePs opts={opts} ps={{ p: "مه", f: "má" }} /> marker also takes over the accent of the verb.

View File

@ -0,0 +1,447 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
sodipodi:docname="imperfective-imperative.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg8"
version="1.1"
viewBox="0 0 140.69031 58.074296"
height="219.49339"
width="531.7431">
<defs
id="defs2">
<rect
id="rect328"
height="15.090237"
width="13.023082"
y="53.347046"
x="9.3936357" />
<rect
id="rect6050"
height="18.811117"
width="56.433346"
y="7.8961401"
x="121.9088" />
<rect
id="rect5964"
height="15.296953"
width="41.756546"
y="38.37397"
x="107.62167" />
<marker
inkscape:isstock="true"
style="overflow:visible"
id="Arrow1Mend"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Mend">
<path
transform="matrix(-0.4,0,0,-0.4,-4,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1352" />
</marker>
<rect
id="rect5876"
height="14.883522"
width="52.299042"
y="5.0927606"
x="37.338371" />
<marker
inkscape:isstock="true"
style="overflow:visible"
id="Arrow1Mstart"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Mstart">
<path
transform="matrix(0.4,0,0,0.4,4,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1349" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="Arrow1Lend"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1346" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker1631"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart">
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1629" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker1615"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart">
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1613" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="Arrow1Lstart"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart">
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1343" />
</marker>
<rect
id="rect1054"
height="16.33053"
width="66.975845"
y="47.882885"
x="62.350956" />
<rect
x="78.980247"
y="-7.9594593"
width="109.33515"
height="26.602938"
id="rect1910" />
<rect
x="38.637333"
y="2.4186096"
width="71.915634"
height="12.862959"
id="rect1904" />
<rect
x="49.46875"
y="33.489403"
width="43.65625"
height="22.867559"
id="rect1742" />
<rect
id="rect837"
height="14.552084"
width="34.962795"
y="26.647322"
x="26.647322" />
<rect
x="26.647322"
y="26.647322"
width="34.962795"
height="14.552084"
id="rect837-8" />
<rect
x="26.647322"
y="26.647322"
width="34.962795"
height="14.552084"
id="rect852" />
<rect
id="rect1742-2"
height="22.867559"
width="43.65625"
y="33.489403"
x="49.46875" />
<rect
id="rect1755"
height="22.867559"
width="43.65625"
y="33.489403"
x="49.46875" />
<rect
id="rect1742-5"
height="22.867559"
width="43.65625"
y="33.489403"
x="49.46875" />
<rect
id="rect1784"
height="22.867559"
width="43.65625"
y="33.489403"
x="49.46875" />
<rect
x="49.46875"
y="33.489403"
width="43.65625"
height="22.867559"
id="rect1742-2-1" />
<rect
x="49.46875"
y="33.489403"
width="43.65625"
height="22.867559"
id="rect1787" />
<rect
id="rect1910-4"
height="23.679539"
width="116.05897"
y="-7.9594593"
x="78.980247" />
<rect
id="rect1927"
height="26.602938"
width="109.33515"
y="-7.9594593"
x="78.980247" />
<rect
x="78.980247"
y="-7.9594593"
width="47.651417"
height="15.49402"
id="rect1910-4-1" />
<rect
x="78.980247"
y="-7.9594593"
width="116.05897"
height="23.679539"
id="rect1956" />
<rect
x="62.350956"
y="47.882885"
width="66.975845"
height="16.33053"
id="rect1054-5" />
<rect
x="62.350956"
y="47.882885"
width="66.975845"
height="16.33053"
id="rect1067" />
<rect
x="37.338371"
y="5.0927606"
width="16.123816"
height="13.849944"
id="rect5876-9" />
<rect
x="37.338371"
y="5.0927606"
width="52.299042"
height="14.883522"
id="rect5977" />
<rect
id="rect5876-9-4"
height="14.263375"
width="29.973761"
y="5.0927606"
x="37.338371" />
<rect
id="rect6006"
height="13.849944"
width="16.123816"
y="5.0927606"
x="37.338371" />
<rect
id="rect5876-9-8"
height="13.436513"
width="31.8342"
y="5.0927606"
x="37.338371" />
<rect
id="rect6006-1"
height="13.849944"
width="16.123816"
y="5.0927606"
x="37.338371" />
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend-3"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1352-7"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#666666;fill-opacity:1;fill-rule:evenodd;stroke:#666666;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<rect
x="9.3936357"
y="53.347046"
width="13.023082"
height="15.090237"
id="rect328-5" />
<rect
x="9.3936357"
y="53.347046"
width="13.023082"
height="15.090237"
id="rect341" />
</defs>
<sodipodi:namedview
inkscape:snap-to-guides="true"
inkscape:snap-global="true"
inkscape:window-maximized="1"
inkscape:window-y="-9"
inkscape:window-x="-9"
inkscape:window-height="1001"
inkscape:window-width="1920"
units="px"
fit-margin-bottom="10"
fit-margin-right="10"
fit-margin-left="10"
fit-margin-top="10"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="mm"
inkscape:cy="255.20401"
inkscape:cx="272.14963"
inkscape:zoom="1.279939"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(-46.189009,19.12165)"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<text
xml:space="preserve"
id="text1902"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect1904);fill:#000000;fill-opacity:1;stroke:none;"
transform="translate(0.37797619,0.37797619)" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="64.887398"
y="10.543595"
id="text1916"><tspan
sodipodi:role="line"
id="tspan1914"
x="64.887398"
y="10.543595"
style="stroke-width:0.264583" /></text>
<g
id="g2100"
transform="translate(0,0.18449876)">
<g
aria-label="...was eating supper."
transform="translate(-20.320974,53.966148)"
id="text1908-0-1"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect1910-4);fill:#000000;fill-opacity:1;stroke:none" />
</g>
<g
id="g190"
transform="translate(0.7472605,5.5813207)">
<path
style="fill:none;stroke:#000000;stroke-width:0.765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 48.087582,22.870299 H 183.48628"
id="path5870" />
<path
style="fill:none;stroke:#000000;stroke-width:0.765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 115.78693,15.015107 V 30.725491"
id="path5872" />
</g>
<text
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect5964);fill:#000000;fill-opacity:1;stroke:none;"
id="text5962"
xml:space="preserve" />
<rect
y="12.848404"
x="126.47161"
height="8.8811474"
width="11.752648"
id="rect123-9"
style="fill:#ffffff;stroke:#000000;stroke-width:0.864259" />
<g
id="g194"
transform="translate(0.6201485,-60.822466)">
<path
id="path5870-2"
d="M 48.214696,61.208853 H 183.61339"
style="fill:none;stroke:#000000;stroke-width:0.765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path5872-7"
d="M 115.91404,53.353661 V 69.064044"
style="fill:none;stroke:#000000;stroke-width:0.765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<rect
style="fill:#ffffff;stroke:#000000;stroke-width:0.864258"
id="rect123"
width="35.111511"
height="8.8811474"
x="129.76363"
y="-16.043688" />
<rect
style="fill:#ffffff;stroke:#000000;stroke-width:0.864259"
id="rect123-9-39"
width="11.752649"
height="8.8811474"
x="144.37325"
y="12.848404" />
<rect
style="fill:#ffffff;stroke:#000000;stroke-width:0.864259"
id="rect123-9-10"
width="11.752649"
height="8.8811474"
x="162.27487"
y="12.848404" />
<g
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect328);fill:#000000;fill-opacity:1;stroke:none"
id="text326"
transform="translate(167.85305,-41.756547)"
aria-label="!">
<path
id="path361"
d="m 10.991328,61.398819 h 1.049028 v 1.312577 h -1.049028 z m 0,-6.40269 h 1.049028 v 3.384796 l -0.103352,1.844842 h -0.837156 l -0.10852,-1.844842 z" />
</g>
<g
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect328-5);fill:#000000;fill-opacity:1;stroke:none"
id="text326-1"
transform="translate(157.87565,-70.828841)"
aria-label="!">
<path
id="path364"
d="m 10.991328,61.398819 h 1.049028 v 1.312577 h -1.049028 z m 0,-6.40269 h 1.049028 v 3.384796 l -0.103352,1.844842 h -0.837156 l -0.10852,-1.844842 z" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -0,0 +1,423 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="531.7431"
height="100.14388"
viewBox="0 0 140.69031 26.496402"
version="1.1"
id="svg8"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="perfective-imperative.svg">
<defs
id="defs2">
<rect
x="146.44608"
y="-14.548825"
width="16.950678"
height="12.402935"
id="rect409" />
<rect
x="138.79759"
y="-19.303284"
width="23.772291"
height="14.470091"
id="rect371" />
<rect
x="9.3936357"
y="53.347046"
width="13.023082"
height="15.090237"
id="rect328" />
<rect
x="121.9088"
y="7.8961401"
width="56.433346"
height="18.811117"
id="rect6050" />
<rect
x="107.62167"
y="38.37397"
width="41.756546"
height="15.296953"
id="rect5964" />
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mend"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1352"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
</marker>
<rect
x="37.338371"
y="5.0927606"
width="52.299042"
height="14.883522"
id="rect5876" />
<marker
inkscape:stockid="Arrow1Mstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Mstart"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1349"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
transform="matrix(0.4,0,0,0.4,4,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lend"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1346"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
transform="matrix(-0.8,0,0,-0.8,-10,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="marker1631"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1629"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="marker1615"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1613"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1343"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<rect
x="62.350956"
y="47.882885"
width="66.975845"
height="16.33053"
id="rect1054" />
<rect
id="rect1910"
height="26.602938"
width="109.33515"
y="-7.9594593"
x="78.980247" />
<rect
id="rect1904"
height="12.862959"
width="71.915634"
y="2.4186096"
x="38.637333" />
<rect
id="rect1742"
height="22.867559"
width="43.65625"
y="33.489403"
x="49.46875" />
<rect
x="26.647322"
y="26.647322"
width="34.962795"
height="14.552084"
id="rect837" />
<rect
id="rect837-8"
height="14.552084"
width="34.962795"
y="26.647322"
x="26.647322" />
<rect
id="rect852"
height="14.552084"
width="34.962795"
y="26.647322"
x="26.647322" />
<rect
x="49.46875"
y="33.489403"
width="43.65625"
height="22.867559"
id="rect1742-2" />
<rect
x="49.46875"
y="33.489403"
width="43.65625"
height="22.867559"
id="rect1755" />
<rect
x="49.46875"
y="33.489403"
width="43.65625"
height="22.867559"
id="rect1742-5" />
<rect
x="49.46875"
y="33.489403"
width="43.65625"
height="22.867559"
id="rect1784" />
<rect
id="rect1742-2-1"
height="22.867559"
width="43.65625"
y="33.489403"
x="49.46875" />
<rect
id="rect1787"
height="22.867559"
width="43.65625"
y="33.489403"
x="49.46875" />
<rect
x="78.980247"
y="-7.9594593"
width="116.05897"
height="23.679539"
id="rect1910-4" />
<rect
x="78.980247"
y="-7.9594593"
width="109.33515"
height="26.602938"
id="rect1927" />
<rect
id="rect1910-4-1"
height="15.49402"
width="47.651417"
y="-7.9594593"
x="78.980247" />
<rect
id="rect1956"
height="23.679539"
width="116.05897"
y="-7.9594593"
x="78.980247" />
<rect
id="rect1054-5"
height="16.33053"
width="66.975845"
y="47.882885"
x="62.350956" />
<rect
id="rect1067"
height="16.33053"
width="66.975845"
y="47.882885"
x="62.350956" />
<rect
id="rect5876-9"
height="13.849944"
width="16.123816"
y="5.0927606"
x="37.338371" />
<rect
id="rect5977"
height="14.883522"
width="52.299042"
y="5.0927606"
x="37.338371" />
<rect
x="37.338371"
y="5.0927606"
width="29.973761"
height="14.263375"
id="rect5876-9-4" />
<rect
x="37.338371"
y="5.0927606"
width="16.123816"
height="13.849944"
id="rect6006" />
<rect
x="37.338371"
y="5.0927606"
width="31.8342"
height="13.436513"
id="rect5876-9-8" />
<rect
x="37.338371"
y="5.0927606"
width="16.123816"
height="13.849944"
id="rect6006-1" />
<marker
inkscape:isstock="true"
style="overflow:visible"
id="Arrow1Mend-3"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Mend">
<path
transform="matrix(-0.4,0,0,-0.4,-4,0)"
style="fill:#666666;fill-opacity:1;fill-rule:evenodd;stroke:#666666;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path1352-7" />
</marker>
<rect
id="rect328-5"
height="15.090237"
width="13.023082"
y="53.347046"
x="9.3936357" />
<rect
id="rect341"
height="15.090237"
width="13.023082"
y="53.347046"
x="9.3936357" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.279939"
inkscape:cx="272.15815"
inkscape:cy="241.94811"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
fit-margin-top="10"
fit-margin-left="10"
fit-margin-right="10"
fit-margin-bottom="10"
units="px"
inkscape:window-width="1920"
inkscape:window-height="1001"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:snap-global="false"
inkscape:snap-to-guides="true" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-46.189011,15.608992)">
<text
transform="translate(0.37797619,0.37797619)"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect1904);fill:#000000;fill-opacity:1;stroke:none;"
id="text1902"
xml:space="preserve" />
<text
id="text1916"
y="10.543595"
x="64.887398"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
xml:space="preserve"><tspan
style="stroke-width:0.264583"
y="10.543595"
x="64.887398"
id="tspan1914"
sodipodi:role="line" /></text>
<g
transform="translate(0,0.18449876)"
id="g2100">
<g
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect1910-4);fill:#000000;fill-opacity:1;stroke:none"
id="text1908-0-1"
transform="translate(-20.320974,53.966148)"
aria-label="...was eating supper." />
</g>
<text
xml:space="preserve"
id="text5962"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect5964);fill:#000000;fill-opacity:1;stroke:none;" />
<g
transform="translate(0.6201485,-60.822466)"
id="g194">
<path
style="fill:none;stroke:#000000;stroke-width:0.765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 48.214696,61.208853 H 183.61339"
id="path5870-2" />
<path
style="fill:none;stroke:#000000;stroke-width:0.765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 115.91404,53.353661 V 69.064044"
id="path5872-7" />
</g>
<path
style="fill:#333333;stroke:#333333;stroke-width:0.865"
id="path367"
sodipodi:type="arc"
sodipodi:cx="130.63231"
sodipodi:cy="-8.5023861"
sodipodi:rx="4.0309539"
sodipodi:ry="4.0309539"
sodipodi:start="0.80404003"
sodipodi:end="0.79007041"
sodipodi:open="true"
sodipodi:arc-type="arc"
d="m 133.429,-5.5994344 a 4.0309539,4.0309539 0 0 1 -5.68986,-0.096143 4.0309539,4.0309539 0 0 1 0.0763,-5.6901556 4.0309539,4.0309539 0 0 1 5.69039,0.0564 4.0309539,4.0309539 0 0 1 -0.0365,5.6905489" />
<g
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;white-space:pre;shape-inside:url(#rect328-5);fill:#000000;fill-opacity:1;stroke:none"
id="text326-1"
transform="translate(126.45489,-67.728107)"
aria-label="!">
<path
id="path364"
d="m 10.991328,61.398819 h 1.049028 v 1.312577 h -1.049028 z m 0,-6.40269 h 1.049028 v 3.384796 l -0.103352,1.844842 h -0.837156 l -0.10852,-1.844842 z" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -1554,10 +1554,10 @@
"@types/yargs" "^15.0.0"
chalk "^4.0.0"
"@lingdocs/pashto-inflector@^0.8.1":
version "0.8.1"
resolved "https://npm.lingdocs.com/@lingdocs%2fpashto-inflector/-/pashto-inflector-0.8.1.tgz#5d8e4beca36f979b95fd323f879fffbdd6ffe32e"
integrity sha512-9jbWKrZbPil9xllprLGNjo9L7DOXGYf7ds/zr84xgleSGgsu3ih0mUw/+4ou0tS8ZcdM4RPxq0NkWphjbdBoGA==
"@lingdocs/pashto-inflector@^0.8.3":
version "0.8.3"
resolved "https://npm.lingdocs.com/@lingdocs%2fpashto-inflector/-/pashto-inflector-0.8.3.tgz#427cf38a2c8ae81a65dc8bd0d65445d317e8ad36"
integrity sha512-+8S5fEiJo3fC2/gp+IP09j3NZNBc5NuCV5FOWAGINEmg8NBKDVMa1gXnmuca6nVQsV2G4ZTk3UJyLwizq1RzDg==
dependencies:
classnames "^2.2.6"
pbf "^3.2.1"