add determiners chapter
This commit is contained in:
parent
288632cf8f
commit
f596b15d2a
|
@ -27,6 +27,8 @@ import * as nounsPlural from "./nouns/nouns-plural.mdx";
|
||||||
import * as specialPlurals from "./nouns/special-plurals.mdx";
|
import * as specialPlurals from "./nouns/special-plurals.mdx";
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import * as bundledPlurals from "./nouns/bundled-plurals.mdx";
|
import * as bundledPlurals from "./nouns/bundled-plurals.mdx";
|
||||||
|
// @ts-ignore
|
||||||
|
import * as determiners from "./nouns/determiners.mdx";
|
||||||
|
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import * as BlocksAndKids from "./phrase-structure/blocks-and-kids.mdx";
|
import * as BlocksAndKids from "./phrase-structure/blocks-and-kids.mdx";
|
||||||
|
@ -219,6 +221,10 @@ export const contentTree: (ChapterSection | ChaptersSection)[] =
|
||||||
{
|
{
|
||||||
"import": bundledPlurals,
|
"import": bundledPlurals,
|
||||||
"slug": "bundled-plurals"
|
"slug": "bundled-plurals"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"import": determiners,
|
||||||
|
"slug": "determiners"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
|
@ -0,0 +1,76 @@
|
||||||
|
---
|
||||||
|
title: Determiners (کوم)
|
||||||
|
---
|
||||||
|
|
||||||
|
import {
|
||||||
|
Examples,
|
||||||
|
InlinePs,
|
||||||
|
defaultTextOptions as opts,
|
||||||
|
} from "@lingdocs/ps-react";
|
||||||
|
import Link from "../../components/Link";
|
||||||
|
|
||||||
|
Pashto uses the word <InlinePs opts={opts} ps={{ p: "کوم", f: "koom" }} /> in front of nouns to mean "which" or "some."
|
||||||
|
|
||||||
|
## With questions
|
||||||
|
|
||||||
|
When used with questions, the word <InlinePs opts={opts} ps={{ p: "کوم", f: "koom" }} /> means "which" or "what."
|
||||||
|
|
||||||
|
<Examples opts={opts}>
|
||||||
|
{[
|
||||||
|
{
|
||||||
|
p: "کوم ځای ته څې",
|
||||||
|
f: "koom dzaay ta dze?",
|
||||||
|
e: "Which place are you going to?",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
p: "دا کوم کتاب دی؟",
|
||||||
|
f: "daa koom kitaab day?",
|
||||||
|
e: "Which book is this?",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
p: "ته د کوم ځای یې؟",
|
||||||
|
f: "tu du koom dzaay ye?",
|
||||||
|
e: "Where are you from?",
|
||||||
|
sub: "(lit. 'Of which place are you?')",
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
</Examples>
|
||||||
|
|
||||||
|
## With Statements
|
||||||
|
|
||||||
|
With statements, the word <InlinePs opts={opts} ps={{ p: "کوم", f: "koom" }} /> means "some."
|
||||||
|
|
||||||
|
<Examples opts={opts}>
|
||||||
|
{[
|
||||||
|
{
|
||||||
|
p: "هلته کوم سړی ناست دی",
|
||||||
|
f: "halta koom saRáy naast day.",
|
||||||
|
e: "Some guy is sitting there.",
|
||||||
|
sub: "statement",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
p: "هلته کوم سړی ناست دی؟",
|
||||||
|
f: "halta koom saRáy naast day?",
|
||||||
|
e: "Which guy is sitting there?",
|
||||||
|
sub: "question",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
p: "کوم کور ونړېد",
|
||||||
|
f: "koom kor óonaRed",
|
||||||
|
e: "Some home was destroyed",
|
||||||
|
sub: "statement",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
p: "کوم کور ونړېد؟",
|
||||||
|
f: "koom kor óonaRed?",
|
||||||
|
e: "Which home was destroyed",
|
||||||
|
sub: "question",
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
</Examples>
|
||||||
|
|
||||||
|
## Determiners inflect too!
|
||||||
|
|
||||||
|
The word <InlinePs opts={opts} ps={{ p: "کوم", f: "koom" }} /> inflects just like any other <Link to="/inflection/inflection-patterns/#1-basic">pattern #1 word</Link>. It will inflect to agree with the noun it is attached to. In this way, it works just like an adjective.
|
||||||
|
|
||||||
|
EXAMPLES COMING SOON - 👨💻 (Chapter in progress)
|
Loading…
Reference in New Issue