summaryrefslogtreecommitdiff
path: root/next-lib/doc/paradigms.txt
diff options
context:
space:
mode:
Diffstat (limited to 'next-lib/doc/paradigms.txt')
-rw-r--r--next-lib/doc/paradigms.txt48
1 files changed, 0 insertions, 48 deletions
diff --git a/next-lib/doc/paradigms.txt b/next-lib/doc/paradigms.txt
deleted file mode 100644
index 0c4cf260c..000000000
--- a/next-lib/doc/paradigms.txt
+++ /dev/null
@@ -1,48 +0,0 @@
-Morphological Paradigms in the GF Resource Grammar Library
-Aarne Ranta
-
-
-This is a synopsis of the main morphological paradigms for
-nouns (``N``), adjectives (``A``), and verbs (``V``).
-
-
-=English=
-
-```
- mkN : (flash : Str) -> N ; -- car, bus, ax, hero, fly, boy
- mkN : (man,men : Str) -> N ; -- index, indices
- mkN : (man,men,man's,men's : Str) -> N ;
- mkN : Str -> N -> N ; -- baby boom
-
- mkA : (happy : Str) -> A ; -- small, happy, free
- mkA : (fat,fatter : Str) -> A ;
- mkA : (good,better,best,well : Str) -> A
- compoundA : A -> A ; -- -/more/most ridiculous
-
- mkV : (cry : Str) -> V ; -- call, kiss, echo, cry, pray
- mkV : (stop,stopped : Str) -> V ;
- mkV : (drink,drank,drunk : Str) -> V ;
- mkV : (run,ran,run,running : Str) -> V ;
- mkV : (go,goes,went,gone,going : Str) -> V
-```
-
-=French=
-
-```
- mkN : (cheval : Str) -> N ; -- pas, prix, nez, bijou, cheval
- mkN : (foie : Str) -> Gender -> N ;
- mkN : (oeil,yeux : Str) -> Gender -> N ;
- mkN : N -> Str -> N
-
- mkA : (cher : Str) -> A ; -- banal, heureux, italien, jeune, amer, carré, joli
- mkA : (sec,seche : Str) -> A ;
- mkA : (banal,banale,banaux,banalement : Str) -> A ;
- mkA : (bon : A) -> (meilleur : A) -> A
- prefixA : A -> A ;
-
- mkV : (finir : Str) -> V ; -- aimer, céder, placer, manger, payer, finir
- mkV : (jeter,jette,jettera : Str) -> V ;
- mkV : V2 -> V
- etreV : V -> V ;
- reflV : V -> V ;
-```