summaryrefslogtreecommitdiff
path: root/examples/dialogue/LightsFre.gf
blob: 50f959d0e1efa3286156ff26ce14817291d44975 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--# -path=.:present:prelude

concrete LightsFre of Lights = 
  DialogueFre ** open LangFre, ParadigmsFre, IrregFre, AuxFre in {

  lin
    Light       = UseN (regN "lampe") ;
    Room        = UseN (regN "chambre") ;
    SwitchOnIn  = dirV3 (regV "allumer")  (mkPreposition "dans") ;
    SwitchOffIn = dirV3 éteindre_V2 (mkPreposition "dans") ;
    SwitchOn    = dirV2 (regV "allumer") ;
    SwitchOff   = dirV2 éteindre_V2 ;

    LivingRoom  = defN (regN "salon") ;
    Kitchen     = defN (regN "cuisine") ;

    MorningMode = mkMove ["le mode matinal"] ;

}