summaryrefslogtreecommitdiff
path: root/examples/app/AppGer.gf
diff options
context:
space:
mode:
Diffstat (limited to 'examples/app/AppGer.gf')
-rw-r--r--examples/app/AppGer.gf75
1 files changed, 30 insertions, 45 deletions
diff --git a/examples/app/AppGer.gf b/examples/app/AppGer.gf
index 7b97a7c1f..71db7a3ce 100644
--- a/examples/app/AppGer.gf
+++ b/examples/app/AppGer.gf
@@ -1,47 +1,37 @@
--# -path=.:src/chunk:src/translator:../examples/phrasebook/gfos
concrete AppGer of App =
- TenseGer,
- NounGer - [PPartNP],
- AdjectiveGer,
- NumeralGer,
- SymbolGer [
- PN, Symb, String, CN, Card, NP, MkSymb, SymbPN, CNNumNP
- ],
- ConjunctionGer,
- VerbGer [
- UseV,ComplVV,SlashV2a,ComplSlash,UseComp,CompAP,CompNP,CompAdv,CompCN
- ,AdvVP,AdVVP
- ],
- AdverbGer,
- PhraseGer,
- SentenceGer [
- PredVP,SlashVP,ImpVP,AdvS,
- UseCl,UseQCl,UseSlash,SSubjS,UseRCl
- ],
- QuestionGer - [
- ComplSlashIP,AdvQVP,AddAdvQVP,QuestQVP
- ],
- RelativeGer,
- IdiomGer [
- NP, VP, Tense, Cl, ProgrVP, ExistNP,
- neutr, sjalv
- ],
----- ConstructionGer,
- ChunkGer,
-
- ExtensionsGer [
- CompoundCN,AdAdV,UttAdV,ApposNP,
- MkVPI, MkVPS, PredVPS, that_RP, who_RP
- ],
-
- DocumentationGer,
- DictionaryGer
-
- ,PhrasebookGer - [PSentence, PQuestion, PGreetingMale, PGreetingFemale, GObjectPlease, open_Adv, closed_A, open_A]
-
- ** open MorphoGer, ResGer, ParadigmsGer, SyntaxGer, CommonScand, (E = ExtraGer), Prelude in {
+ TranslateGer - [
+ -- Verb
+ ComplVS, ComplVQ, ComplVA,
+ Slash2V3, Slash3V3, SlashV2V, SlashV2S, SlashV2Q, SlashV2A,
+ SlashVV, SlashV2VNP,
+ ReflVP,
+ AdvVPSlash, AdVVPSlash, VPSlashPrep,
+ -- Sentence
+ PredSCVP,
+ AdvSlash, SlashPrep, SlashVS,
+ EmbedS, EmbedQS, EmbedVP, RelS,
+ -- Question
+ ComplSlashIP,AdvQVP,AddAdvQVP,QuestQVP,
+ -- Idiom
+ CleftNP, CleftAdv,
+ ExistIP,
+ ExistNPAdv, ExistIPAdv,
+ ImpP3,
+ SelfAdvVP, SelfAdVVP, SelfNP,
+ -- Construction
+ hungry_VP, thirsty_VP, has_age_VP, have_name_Cl, married_Cl, what_name_QCl, how_old_QCl, how_far_QCl,
+ weather_adjCl, is_right_VP, is_wrong_VP, n_units_AP, bottle_of_CN, cup_of_CN, glass_of_CN,
+ where_go_QCl, where_come_from_QCl, go_here_VP, come_here_VP, come_from_here_VP, go_there_VP, come_there_VP, come_from_there_VP,
+ -- Extensions
+ PassVPSlash, PassAgentVPSlash
+ ]
+
+ ,PhrasebookGer - [PSentence, PQuestion, PGreetingMale, PGreetingFemale, GObjectPlease, open_Adv, closed_A, open_A]
+
+ ** open ParadigmsGer, SyntaxGer, Prelude in {
flags
literal=Symb ;
@@ -50,13 +40,8 @@ flags
lin
PSentence, PQuestion = \s -> lin Text (mkUtt s) ;
PGreetingMale, PGreetingFemale = \s -> lin Text s ;
-
GObjectPlease o = lin Text (mkUtt o) ;
-
-
-lin
PhrasePhr p = {s = "+" ++ p.s} | p ;
-
Phrase_Chunk p = p ;
}