diff --git a/src/content/index.ts b/src/content/index.ts index 908fac8..b5d28a1 100644 --- a/src/content/index.ts +++ b/src/content/index.ts @@ -27,6 +27,8 @@ import * as nounsPlural from "./nouns/nouns-plural.mdx"; import * as specialPlurals from "./nouns/special-plurals.mdx"; // @ts-ignore import * as bundledPlurals from "./nouns/bundled-plurals.mdx"; +// @ts-ignore +import * as determiners from "./nouns/determiners.mdx"; // @ts-ignore import * as BlocksAndKids from "./phrase-structure/blocks-and-kids.mdx"; @@ -219,6 +221,10 @@ export const contentTree: (ChapterSection | ChaptersSection)[] = { "import": bundledPlurals, "slug": "bundled-plurals" + }, + { + "import": determiners, + "slug": "determiners" } ] }, diff --git a/src/content/nouns/determiners.mdx b/src/content/nouns/determiners.mdx new file mode 100644 index 0000000..d3b0c69 --- /dev/null +++ b/src/content/nouns/determiners.mdx @@ -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 in front of nouns to mean "which" or "some." + +## With questions + +When used with questions, the word means "which" or "what." + + + {[ + { + 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?')", + }, + ]} + + +## With Statements + +With statements, the word means "some." + + + {[ + { + 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", + }, + ]} + + +## Determiners inflect too! + +The word inflects just like any other pattern #1 word. 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)