summaryrefslogtreecommitdiff
path: root/examples/wiki/LexRestaurantFre.gf
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2008-06-25 16:54:35 +0000
committeraarne <aarne@cs.chalmers.se>2008-06-25 16:54:35 +0000
commite9e80fc389365e24d4300d7d5390c7d833a96c50 (patch)
treef0b58473adaa670bd8fc52ada419d8cad470ee03 /examples/wiki/LexRestaurantFre.gf
parentb96b36f43de3e2f8b58d5f539daa6f6d47f25870 (diff)
changed names of resource-1.3; added a note on homepage on release
Diffstat (limited to 'examples/wiki/LexRestaurantFre.gf')
-rw-r--r--examples/wiki/LexRestaurantFre.gf70
1 files changed, 0 insertions, 70 deletions
diff --git a/examples/wiki/LexRestaurantFre.gf b/examples/wiki/LexRestaurantFre.gf
deleted file mode 100644
index fa3623748..000000000
--- a/examples/wiki/LexRestaurantFre.gf
+++ /dev/null
@@ -1,70 +0,0 @@
-
-instance LexRestaurantFre of LexRestaurant = open SyntaxFre,GrammarFre,ParadigmsFre in {
-
- oper
- restaurant_N = mkN "restaurant" ;
- food_N = mkN "manger" ;
- staff_N = mkN "personnel" ;
- wine_N = mkN "vin" ;
- pizza_N = mkN "pizza" feminine ;
- cheese_N = mkN "fromage" masculine ;
- fish_N = mkN "poisson" ;
- dish_N = mkN "plat" ;
- drink_N = mkN "boisson" feminine ;
- dessert_N = mkN "dessert" ;
-
- recommend_V2 = mkV2 (mkV "recommander") ;
-
- chinese_A = mkA "chinois" ;
- french_A = mkA "français" ;
- italian_A = mkA "italien" ;
- japanese_A = mkA "japonais" ;
- mexican_A = mkA "mexicain" ;
- thai_A = mkA "thaïlandais" ;
- expensive_A = mkA "cher" ;
- cheap_A = mkA ["bon marché"] ["bon marché"] ["bon marché"] ["bon marché"] ;
- nice_A = mkA "agréable" ;
- clean_A = mkA "propre" ;
- dirty_A = mkA "sale" ;
- fresh_A = mkA "frais" "fraîche" "frais" "fraîches" ;
- delicious_A = mkA "délicieux" ;
- fatty_A = mkA "gras" "grasse" "gras" "grasses" ;
- tasteless_A = mkA "fade";
- authentic_A = mkA "authentique" ;
- efficient_A = mkA "efficace" ;
- courteous_A = mkA "poli" ;
- helpful_A = mkA "obligeant" ;
- friendly_A = mkA "amical" ;
- personal_A = mkA "personnel" ;
- warm_A = mkA "chaud" ;
- prompt_A = mkA "rapide" ;
- attentive_A = mkA "attentif" ;
- inefficient_A = mkA "inefficace" ;
- rude_A = mkA "rude" ;
- impersonal_A = mkA "impersonnel" ;
- slow_A = mkA "lent" ;
- unattentive_A = mkA "inattentif" ;
- good_A = mkA "bon" "bonne" ;
- great_A = mkA "magnifique" ;
- excellent_A = mkA "excellent" ;
- bad_A = mkA "mauveux" ;
- awful_A = mkA "affreux" ;
- horrible_A = mkA "horrible" ;
- disgusting_A = mkA "dégoûtant" ;
- boring_A = mkA "ennuyeux" ;
- diverse_A = mkA "divers" ;
-
- noAdv_AdV = mkAdV "" ;
- strongly_AdV = mkAdV "fortement" ;
- completely_AdV = mkAdV "complètement";
- certainly_AdV = mkAdV "certainement" ;
- honestly_AdV = mkAdV "honnêtement" ;
- really_AdV = mkAdV "vraiment" ;
- reluctantly_AdV = mkAdV ["avec réticence"] ;
- hardly_AdV = mkAdV ["à peine"] ;
-
--- but_Conj = ss "mais" ** {n = Pl} ;
-
-oper mkAdV : Str -> AdV = \s -> {s = s ; lock_AdV = <>} ;
-
-}