summaryrefslogtreecommitdiff
path: root/examples/phrasebook/WordsFin.gf
diff options
context:
space:
mode:
authorramona.enache <ramona.enache@chalmers.se>2010-05-28 12:15:28 +0000
committerramona.enache <ramona.enache@chalmers.se>2010-05-28 12:15:28 +0000
commit8f9eb4f7f32560803d690be2b75e9dcc6cb08502 (patch)
tree595441a5b991f7576d221025515b6b37469692e8 /examples/phrasebook/WordsFin.gf
parent2d44390bbf681b060574bbcfd95811a4459935db (diff)
added inherent number to places, fixed places in French
Diffstat (limited to 'examples/phrasebook/WordsFin.gf')
-rw-r--r--examples/phrasebook/WordsFin.gf7
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/phrasebook/WordsFin.gf b/examples/phrasebook/WordsFin.gf
index b36461c7a..29494ccb2 100644
--- a/examples/phrasebook/WordsFin.gf
+++ b/examples/phrasebook/WordsFin.gf
@@ -58,7 +58,7 @@ concrete WordsFin of Words = SentencesFin **
School = mkPlace (mkN "koulu") lla ;
CitRestaurant cit = {
- name = mkCN cit (mkN "ravintola") ; at = casePrep inessive ; to = casePrep illative
+ name = mkCN cit (mkN "ravintola") ; at = casePrep inessive ; to = casePrep illative; isPl = False
} ;
Parking = mkPlace (mkN "pysäköinti" (mkN "alue")) lla ;
Supermarket = mkPlace (mkN "supermarket") ssa ;
@@ -238,11 +238,12 @@ concrete WordsFin of Words = SentencesFin **
habitual = ParadigmsFin.mkAdv s
} ;
- mkPlace : N -> Bool -> {name : CN ; at : Prep ; to : Prep} = \p,e -> {
+ mkPlace : N -> Bool -> {name : CN ; at : Prep ; to : Prep; isPl : Bool} = \p,e -> {
name = mkCN p ;
at = casePrep (if_then_else Case e adessive inessive) ; -- True: external
to = casePrep (if_then_else Case e allative illative) ;
- } ;
+ isPl = False
+ } ;
ssa = False ;
lla = True ;