summaryrefslogtreecommitdiff
path: root/examples/dialogue/LightsFre.gf
diff options
context:
space:
mode:
Diffstat (limited to 'examples/dialogue/LightsFre.gf')
-rw-r--r--examples/dialogue/LightsFre.gf19
1 files changed, 19 insertions, 0 deletions
diff --git a/examples/dialogue/LightsFre.gf b/examples/dialogue/LightsFre.gf
new file mode 100644
index 000000000..50f959d0e
--- /dev/null
+++ b/examples/dialogue/LightsFre.gf
@@ -0,0 +1,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"] ;
+
+}