more on ablative

This commit is contained in:
adueck 2025-01-17 23:55:35 -05:00
parent 518adeb0cd
commit b7c16a5f92
2 changed files with 29 additions and 1 deletions

View File

@ -0,0 +1,24 @@
For the sandwich with just <InlinePs opts={opts} ps={{ p: "له", f: "la" }} /> on the front, mayonnaise is _required_. It is _optional_ for sandwiches with an ending part.
<Examples opts={opts}>
{[
{
p: "له ...",
f: "la ...",
e: "from / than",
sub: <strong>Required</strong>,
},
{
p: "له ... نه",
f: "la ... na",
e: "from / than",
sub: <strong>Optional</strong>,
},
{
p: "له ... څخه",
f: "la ... tsúkha",
e: "from / than",
sub: <strong>Optional</strong>,
},
]}
</Examples>

View File

@ -21,13 +21,17 @@ In the earlier chapters we learned that words inside <Link to="/sandwiches/sandw
/> />
</div> </div>
**The sandwiches meaning "from" add mayonnaise**. Sandwiches talking about separation, source, or absence get mayonnaise
<Examples opts={opts}> <Examples opts={opts}>
{[ {[
{ p: "له ...", f: "la ...", e: "from / than" }, { p: "له ...", f: "la ...", e: "from / than" },
{ p: "له ... نه", f: "la ... na", e: "from / than" }, { p: "له ... نه", f: "la ... na", e: "from / than" },
{ p: "له ... څخه", f: "la ... tsúkha", e: "from / than" }, { p: "له ... څخه", f: "la ... tsúkha", e: "from / than" },
{ p: "بې له ...", f: "be la ...", e: "without" },
{ p: "له ... پرته", f: "la ... prata", e: "without" },
{ p: "تر ...", f: "tur ...", e: "until / up to" },
{ p: "تر ... پورې", f: "tur ... pore", e: "until / up to" },
]} ]}
</Examples> </Examples>