pashto-grammar/src/content/inflection/feminine-inflection.mdx

49 lines
1.5 KiB
Plaintext
Raw Normal View History

2021-04-17 10:58:49 +00:00
---
title: Feminine Inflection Patterns
---
<!--
Copyright (c) 2021 lingdocs.com
The content of the chapters/book is licensed by a
Attribution-ShareAlike 4.0 International License (CC BY-SA 4.0)
https://creativecommons.org/licenses/by-sa/4.0/
https://creativecommons.org/licenses/by-sa/4.0/legalcode
-->
import {
defaultTextOptions as opts,
Examples,
InlinePs,
grammarUnits,
2021-09-18 04:43:00 +00:00
removeFVarients,
2021-04-17 10:58:49 +00:00
InflectionsTable,
inflectWord,
} from "@lingdocs/pashto-inflector";
import shuffle from "../../lib/shuffle-array";
import InflectionCarousel from "../../components/InflectionCarousel";
2021-10-18 01:12:47 +00:00
import { words } from "../../words/words";
2021-04-17 10:58:49 +00:00
import Link from "../../components/Link";
import Table from "../../components/Table";
import { startingWord } from "../../lib/starting-word";
2021-10-18 01:12:47 +00:00
import {
isFemNoun,
isPattern6FemNoun,
isPattern7FemNoun,
} from "../../lib/type-predicates";
export const femNouns = words.nouns.filter(w => isFemNoun(w));
2021-04-17 10:58:49 +00:00
The <Link to="/inflection/inflection-patterns/">5 basic patterns in the last chapter</Link> work with both masculine and feminine words (nouns and adjectives).
There are also a few more patterns that are only for **feminine nouns**.
## Feminine Nouns Ending in <InlinePs opts={opts} ps={{ p: "ي", f: "ee" }} />
2021-10-18 01:12:47 +00:00
<InflectionCarousel items={startingWord(femNouns.filter(isPattern6FemNoun), "آزادي")} />
2021-04-17 10:58:49 +00:00
**Note:** This only works with **inanimate nouns**. (ie. words for people like <InlinePs opts={opts} ps={{ p: "باجي", f: "baajée", e: "older sister" }} /> will not inflect like this.)