TypeScript/React library for Pashto inflection, verb conjugation, phrase generation, text conversion, and more
Go to file
adueck 0a10b1e9dc ability to have tppp varients 2023-08-14 15:01:00 +04:00
.github/workflows node 18 build issue 2023-03-07 15:50:03 +05:00
.vscode mostly done plural recognition 2023-08-01 18:49:11 +04:00
public update website 2022-10-24 13:19:01 +05:00
src ability to have tppp varients 2023-08-14 15:01:00 +04:00
vocab just trying out parsing very, very basic VPs 2023-08-05 20:35:15 +04:00
.gitignore fix 2022-10-09 10:58:28 +05:00
.npmrc bump 2021-03-16 11:58:53 +04:00
.nvmrc add nvmrc 2022-10-09 11:02:14 +05:00
LICENSE switch to GPLv3 license 2022-11-05 16:29:31 +05:00
README.md starting on parser 2023-07-30 15:54:27 +04:00
full-phrase-process.svg more work on new verb renderer 2023-06-15 20:10:41 +04:00
get-words.js cleanup 2022-11-02 11:10:57 +05:00
netlify.toml cleanup -- 2022-10-09 11:11:39 +05:00
package-lock.json fix bug with charts showing object selected 2023-08-14 01:02:34 +04:00
package.json Merge remote-tracking branch 'origin/master' into parser 2023-08-14 14:50:21 +04:00
test.http cleanup 2023-07-27 17:07:59 +04:00
tsconfig.json more towards parsing vps 2023-08-09 16:04:36 +04:00
yarn.lock more towards parsing vps 2023-08-09 16:04:36 +04:00

README.md

pashto-inflector

License: GPL v3 Netlify Status build build

A pashto inflection, verb conjugation, and phrase-generation engine, as well as functions and components for modifying and displaying Pashto text.

Pashto Inflector Website/Demo

How it works

This library uses a 3-step process to generate gramattically correct Pashto phrases. This 3-step process corresponds directly to Chomsky's tripartrite structure for tranformational generative grammars.

Pashto Inflector Function Chomskian Grammar Level
1. Assemble the phrase tree Phrase Structure Rules
2. Inflect the words in tree Morphophonemic Rules
3. Arrange the inflected words in order Transformational Rules

1. Assemble the phrase tree

Phrase Structure Rules

An abstract syntax tree is created with the various parts of a phrase represented as dictionary entries of the words as well as information about gender, number, and tense, etc. These are arranged in typed structures that allow for arranging NP and APs into verbal or equative phrases.

2. Inflect all the words in the phrase tree

Morphophonemic Rules

The dictionary entries for the words are inflected and conjugated as necessary.

3. Arrange the inflected words

Transformational Rules

The inflected words are arranged into possible phrases with various options for dropping or encliticizing pronouns, and placing the negation particle in the correct place(s).

Phrase building process

  • The full process of phrase building

Distributions

This is published on a private NPM proxy registry as two libraries:

  • @lingdocs/inflect
    • /src/lib
    • The core inflection engine with grammatical information and tools for processing LingDocs dictionary entries and Pashto text.
    • Can be used with Node 16, as CommonJS
  • @lingdocs/ps-react
    • /src/components
    • @lingdocs/inflect plus react components for displaying Pashto text, phrase engine UI etc.
    • Only available as an ES6 Module

@lingdocs/pashto-inflector is deprecated. Use @lingdocs/inflect or @lingdocs/ps-react instead.

Development

The Pashto Verb Explorer website can be used to view and play with the verb conjugations and various components.

cd src/components
yarn install
cd ../lib
yarn install
cd ../..
yarn install
yarn start

Building

⚠ Don't use yarn build. Use one of the commands below: ⚠

Website

To build the Pashto Verb Explorer website:

yarn build-website

This outputs a site at /build

Libraries

To build the @lingdocs/inflet and @lingdocs/ps-react libraries ready for publishing to NPM:

yarn build-library