diff options
| author | aarne <unknown> | 2005-06-27 12:20:33 +0000 |
|---|---|---|
| committer | aarne <unknown> | 2005-06-27 12:20:33 +0000 |
| commit | 3c508f4f89557318d8e0b50372a3f0d024e317f0 (patch) | |
| tree | 3251ede247f32b51ad4d4204e84a1c325c8fe628 /grammars/TALK/GF_GoDiS/Resource/Events_Locations | |
| parent | b9e13711db0085b25e9257d1034b43a3a2c47b7e (diff) | |
added Ann-Charlotte's grammars
Diffstat (limited to 'grammars/TALK/GF_GoDiS/Resource/Events_Locations')
3 files changed, 83 insertions, 0 deletions
diff --git a/grammars/TALK/GF_GoDiS/Resource/Events_Locations/DB.gf b/grammars/TALK/GF_GoDiS/Resource/Events_Locations/DB.gf new file mode 100644 index 000000000..dbe5d2df2 --- /dev/null +++ b/grammars/TALK/GF_GoDiS/Resource/Events_Locations/DB.gf @@ -0,0 +1,37 @@ +abstract DB = {
+
+cat
+ Event;
+ Location;
+
+fun
+
+ -- anEvent : Event;
+ meeting : Event;
+ presentation : Event;
+ date : Event;
+ lecture : Event;
+
+{-
+ appointment : Event;
+ class : Event;
+ converence : Event;
+ hairdresser : Event;
+ dentist : Event;
+ party : Event;
+ deadline : Event;
+-}
+
+ -- aLocation : Location;
+ plaza : Location;
+ station : Location;
+ university : Location;
+{-
+ fair : Location;
+ ritz : Location;
+ cafe : Location;
+-}
+
+
+
+}
\ No newline at end of file diff --git a/grammars/TALK/GF_GoDiS/Resource/Events_Locations/DBPro.gf b/grammars/TALK/GF_GoDiS/Resource/Events_Locations/DBPro.gf new file mode 100644 index 000000000..7c345f456 --- /dev/null +++ b/grammars/TALK/GF_GoDiS/Resource/Events_Locations/DBPro.gf @@ -0,0 +1,17 @@ +concrete DBPro of DB = {
+
+pattern
+
+ -- anEvent = "EVENT";
+ meeting = "meeting";
+ presentation = "presentation";
+ date = "appointment";
+ lecture = "lecture";
+
+
+ -- aLocation = "LOCATION";
+ plaza = "plaza";
+ station = "station";
+ university = "university";
+
+}
\ No newline at end of file diff --git a/grammars/TALK/GF_GoDiS/Resource/Events_Locations/DBSwe.gf b/grammars/TALK/GF_GoDiS/Resource/Events_Locations/DBSwe.gf new file mode 100644 index 000000000..e664600e6 --- /dev/null +++ b/grammars/TALK/GF_GoDiS/Resource/Events_Locations/DBSwe.gf @@ -0,0 +1,29 @@ +concrete DBSwe of DB = {
+
+pattern
+
+
+ -- anEvent = "EVENT";
+ meeting = ["ett möte"];
+ presentation = ["en presentation"];
+ date = ["en träff"];
+ lecture = ["en lektion"];
+
+ -- aLocation = "LOCATION";
+ plaza = ["på plaza"];
+ station = ["på stationen"];
+ university = ["på universitetet"];
+}
+
+
+
+
+
+
+
+
+
+
+
+
+
|
