fix up masc inflection of demonstratives
This commit is contained in:
parent
73eb04d7e0
commit
0ade410698
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "pashto-inflector-website",
|
"name": "pashto-inflector-website",
|
||||||
"version": "7.7.1",
|
"version": "7.7.2",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"patch": "npm version patch --no-git-tag-version && cd src/lib && npm version patch --no-git-tag-version && cd ../components && npm version patch --no-git-tag-version",
|
"patch": "npm version patch --no-git-tag-version && cd src/lib && npm version patch --no-git-tag-version && cd ../components && npm version patch --no-git-tag-version",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lingdocs/ps-react",
|
"name": "@lingdocs/ps-react",
|
||||||
"version": "7.7.1",
|
"version": "7.7.2",
|
||||||
"description": "Pashto inflector library module with React components",
|
"description": "Pashto inflector library module with React components",
|
||||||
"main": "dist/components/library.js",
|
"main": "dist/components/library.js",
|
||||||
"module": "dist/components/library.js",
|
"module": "dist/components/library.js",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@lingdocs/inflect",
|
"name": "@lingdocs/inflect",
|
||||||
"version": "7.7.1",
|
"version": "7.7.2",
|
||||||
"description": "Pashto inflector library",
|
"description": "Pashto inflector library",
|
||||||
"main": "dist/lib/library.cjs",
|
"main": "dist/lib/library.cjs",
|
||||||
"module": "dist/lib/library.js",
|
"module": "dist/lib/library.js",
|
||||||
|
|
|
@ -8,6 +8,8 @@ import * as tp from "../type-predicates";
|
||||||
import memoize from "micro-memoize";
|
import memoize from "micro-memoize";
|
||||||
import { pashtoConsonants } from "../pashto-consonants";
|
import { pashtoConsonants } from "../pashto-consonants";
|
||||||
|
|
||||||
|
// TODO: و ارزول
|
||||||
|
|
||||||
// TODO: کول verbs!
|
// TODO: کول verbs!
|
||||||
// check that aawu stuff is working
|
// check that aawu stuff is working
|
||||||
// check oo`azmooy -
|
// check oo`azmooy -
|
||||||
|
|
|
@ -178,7 +178,7 @@ function renderDeterminer({
|
||||||
? number === "plural"
|
? number === "plural"
|
||||||
? { p: "دغو", f: "dágho" }
|
? { p: "دغو", f: "dágho" }
|
||||||
: gender === "masc"
|
: gender === "masc"
|
||||||
? { p: "دغه", f: "dághu" }
|
? { p: "دغه", f: "dágha" }
|
||||||
: { p: "دغې", f: "dághe" }
|
: { p: "دغې", f: "dághe" }
|
||||||
: { p: "دغه", f: "dágha" };
|
: { p: "دغه", f: "dágha" };
|
||||||
return {
|
return {
|
||||||
|
@ -196,7 +196,7 @@ function renderDeterminer({
|
||||||
? number === "plural"
|
? number === "plural"
|
||||||
? { p: "هغو", f: "hágho" }
|
? { p: "هغو", f: "hágho" }
|
||||||
: gender === "masc"
|
: gender === "masc"
|
||||||
? { p: "هغه", f: "hághu" }
|
? { p: "هغه", f: "hágha" }
|
||||||
: { p: "هغې", f: "hághe" }
|
: { p: "هغې", f: "hághe" }
|
||||||
: { p: "هغه", f: "hágha" };
|
: { p: "هغه", f: "hágha" };
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Reference in New Issue