summaryrefslogtreecommitdiff
path: root/examples/translator/TranslateFre.gf
diff options
context:
space:
mode:
authoraarne <aarne@chalmers.se>2015-07-20 14:32:50 +0000
committeraarne <aarne@chalmers.se>2015-07-20 14:32:50 +0000
commitdb23eec58eb948e56da9b332eb682f100bc22edb (patch)
tree0d803740f0fa7527a258a28492045bdf4e0fd02d /examples/translator/TranslateFre.gf
parent400195b30768c9812051d13646218a598c894df0 (diff)
removed the obsolete examples/translator directory, which caused confusion
Diffstat (limited to 'examples/translator/TranslateFre.gf')
-rw-r--r--examples/translator/TranslateFre.gf26
1 files changed, 0 insertions, 26 deletions
diff --git a/examples/translator/TranslateFre.gf b/examples/translator/TranslateFre.gf
deleted file mode 100644
index e7389b372..000000000
--- a/examples/translator/TranslateFre.gf
+++ /dev/null
@@ -1,26 +0,0 @@
---# -path=.:alltenses:../phrasebook:../../lib/src/english:../../lib/src/french:../../lib/src/romance
-
-concrete TranslateFre of Translate =
- ParseFre - [open_A],
- PhrasebookFre - [PSentence, PQuestion, PGreetingMale, PGreetingFemale, GObjectPlease] **
- open SyntaxFre, ParadigmsFre, (E = ExtraFre), Prelude in {
-
-flags
- literal = Symb ;
-
-lin
- PPhr p = lin Text p ;
- NP_Person np = {name = lin NP np ; isPron = False ; poss = mkQuant he_Pron} ;
- NP_Object np = lin NP np ;
- NP_Item np = lin NP np ;
- NP_Place np0 = let np = lin NP np0 in
- {name = np ; at = SyntaxFre.mkAdv dative np ; to = SyntaxFre.mkAdv dative np} ;
-
---- to remove Phrasebook punctuation, which makes the output in Translate heterogeneous
-
- PSentence s = lin Text (mkUtt s) ;
- PQuestion s = lin Text (mkUtt s) ;
- PGreetingMale, PGreetingFemale = \g -> lin Text g ;
- GObjectPlease o = lin Text (mkUtt o) ;
-
-} \ No newline at end of file