diff --git a/src/content/index.js b/src/content/index.js index 6eda809..a37d0b8 100644 --- a/src/content/index.js +++ b/src/content/index.js @@ -16,6 +16,7 @@ import * as otherEquatives from "!babel-loader!mdx-loader!./equatives/other-equa import * as nounsGender from "!babel-loader!mdx-loader!./nouns/nouns-gender.mdx"; import * as nounsPlural from "!babel-loader!mdx-loader!./nouns/nouns-plural.mdx"; import * as arabicPlurals from "!babel-loader!mdx-loader!./nouns/arabic-plurals.mdx"; +import * as bundledPlurals from "!babel-loader!mdx-loader!./nouns/bundled-plurals.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"; @@ -65,6 +66,10 @@ const contentTree = [ import: arabicPlurals, slug: "arabic-plurals", }, + { + import: bundledPlurals, + sluge: "bundled-plurals", + }, ], }, { diff --git a/src/content/nouns/bundled-plurals.mdx b/src/content/nouns/bundled-plurals.mdx new file mode 100644 index 0000000..511bc99 --- /dev/null +++ b/src/content/nouns/bundled-plurals.mdx @@ -0,0 +1,42 @@ +--- +title: Bundled Plurals +--- + +import { + Examples, + InlinePs, + defaultTextOptions as opts, +} from "@lingdocs/pashto-inflector"; +import Table from "../../components/Table"; +import penBundle from "../../images/pen-bundle.jpg"; + +export function BundledPluralTable({ children, inflection }) { + return ( + + {children} +
+ ); +} + +For many nouns ending in a consonant, we can make a special kind of **"bundled plural"** to show that the things are closely lumped together. + +
+ +
+ +To make this "bundled plural" we add a on the end of the noun. + +{[ + [ + { p: "کال", f: "kaal", e: "year" }, + { p: "کاله", f: "kaala", e: "years" }, + ], + [ + { p: "کس", f: "kas", e: "person" }, + { p: "کسه", f: "kasa", e: "people" }, + ], + [ + { p: "کرت", f: "karat", e: "time" }, + { p: "کرته", f: "karata", e: "times" }, + ] +]} diff --git a/src/content/nouns/nouns-plural.mdx b/src/content/nouns/nouns-plural.mdx index ae0682a..28e0938 100644 --- a/src/content/nouns/nouns-plural.mdx +++ b/src/content/nouns/nouns-plural.mdx @@ -113,3 +113,17 @@ Some nouns just have completely irregular plural forms. [{p:"یور", f:"yor", e:"wife of a husbands' brother"},{p:"یوڼې", f:"yooNe", e:"wives of a husband's brother"}], [{p:"نږور", f:"nGor", e:"daughter-in-law"},{p:"نږیندې", f:"nGeynde", e:"daughter-in-laws"}], ]} + +## Collective Plurals + +Some nouns are just always considered plural, often because they are made up of a bunch of individual pieces. + +{[ + { p: "خلک", f: "khalk", e: "people/populace (m. pl.)" }, + { p: "اوړه", f: "ooRú", e: "flour (m. pl.)" }, + { p: "برنج", f: "birínj", e: "rice (m. pl.)" }, + { p: "اوبه", f: "oobú", e: "water (f. pl.)" }, + { p: "جوار", f: "jawáar", e: "corn (m. pl.)" }, + { p: "زهر", f: "zahur", e: "poison (m. pl.)" }, + { p: "سامان", f: "saamáan", e: "stuff, things (m. pl.)" }, +]} \ No newline at end of file diff --git a/src/images/pen-bundle.jpg b/src/images/pen-bundle.jpg new file mode 100644 index 0000000..6c664fc Binary files /dev/null and b/src/images/pen-bundle.jpg differ