summaryrefslogtreecommitdiff
path: root/src/ui/android/assets/phrases.xml
blob: 847339135f0b2849c2e75749d6d09da298078e32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
<?xml version="1.0" encoding="UTF-8"?>

<phrasebook>
    <sentence desc="Greetings" id="PGreeting">
		<option>
			<function desc="Male Speaker" name="PGreetingMale">
				<call ref="Greeting"/>
			</function>
			<function desc="Female Speaker" name="PGreetingFemale">
				<call ref="Greeting"/>
			</function>
		</option>
    </sentence>

    <sentence desc="Fixed Phrases" id="PPhrase">
		<option>
			<function desc="Male Speaker" name="PGreetingMale">
				<call ref="Phrase"/>
			</function>
			<function desc="Female Speaker" name="PGreetingFemale">
				<call ref="Phrase"/>
			</function>
		</option>
    </sentence>

    <sentence desc="What is somebody's name?" id="QWhatName">
        <function name="PQuestion">
            <function name="QWhatName">
                <call desc="Who are we talking about?" ref="Person"/>
            </function>
        </function>
    </sentence>

    <sentence desc="Somebody's name is..." id="AHasName">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="AHasName">
                    <call ref="Person"/>
                    <function name="NameNN"/>
				</function>
			</function>
		</call>
    </sentence>

    <sentence desc="How old is someone?" id="QWhatAge">
        <function name="PQuestion">
            <function name="QWhatAge">
                <call ref="Person"/>
            </function>
        </function>
    </sentence>

    <sentence desc="Someone's age is..." id="AHasAge">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="AHasAge">
                    <call ref="Person"/>
                    <function name="NNumeral">
						<numeral desc="How many years?"/>
                    </function>
                </function>
            </function>
        </call>
    </sentence>

    <sentence desc="Someone loves someone" id="ALove">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="ALove">
                    <call desc="Who loves someone?" ref="Person"/>
                    <call desc="Who is loved?" ref="Person"/>
                </function>
            </function>
        </call>
    </sentence>

    <sentence advanced="true" desc="Someone is married" id="AMarried">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="AMarried">
                    <call ref="Person"/>
                </function>
            </function>
        </call>
    </sentence>

    <sentence desc="Someone has children" id="AHasChildren">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="AHasChildren">
                    <call ref="Person"/>
                    <function name="NNumeral">
						<numeral desc="How many children?"/>
					</function>
                </function>
            </function>
        </call>
    </sentence>

    <sentence desc="Someone has something" id="SHave">
        <function name="SHave">
            <call ref="Person"/>
            <call desc="What do you have?" ref="Object"/>
        </function>
    </sentence>

    <sentence desc="Someone has currency" id="AHaveCurr">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="AHaveCurr">
                    <call ref="Person"/>
                    <call ref="Currency"/>
                </function>
            </function>
        </call>
    </sentence>

    <sentence desc="Someone lives somewhere" id="ALive">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="ALive">
                    <call ref="Person"/>
                    <call desc="Living where?" ref="country"/>
                </function>
            </function>
        </call>
    </sentence>

    <sentence desc="Someone wants to go somewhere" id="AWantGo">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="AWantGo">
                    <call ref="Person"/>
                    <call ref="Place"/>
                </function>
            </function>
        </call>
    </sentence>

    <sentence desc="Someone is a citizen" id="ACitizen">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="ACitizen">
                    <call ref="Person"/>
                    <call desc="Living where?" ref="country"/>
                </function>
            </function>
        </call>
    </sentence>

    <sentence desc="Someone is somewhere" id="ABePlace">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="ABePlace">
                    <call ref="Person"/>
                    <call ref="Place"/>
                </function>
            </function>
        </call>
    </sentence>

    <sentence desc="Something is something" id="Is">
        <call ref="phraseit">
            <function name="Is">
                <call ref="Item"/>
                <call ref="Quality"/>
            </function>
        </call>
    </sentence>

    <sentence desc="How far is something?" id="HowFar">
        <function name="PQuestion">
            <function name="HowFar">
                <call desc="What place are we asking about?" ref="Place"/>
            </function>
        </function>
    </sentence>

    <sentence desc="How far is something from somewhere?" id="HowFarFrom">
        <function name="PQuestion">
            <function name="HowFarFrom">
                <call desc="Where are we going from?" ref="Place"/>
                <call desc="Where are we going to?" ref="Place"/>
            </function>
        </function>
    </sentence>

    <sentence desc="Some place is open" id="PropOpen">
        <call ref="phraseit">
			<option>
				<function desc="now" name="PropOpen">
					<call ref="Place"/>
				</function>
                <function desc="on a specific date" name="PropOpenDate">
                    <call ref="Place"/>
                    <call ref="Date"/>
                </function>
                <function desc="on a specific day of the week" name="PropOpenDay">
                    <call ref="Place"/>
                    <call ref="Day"/>
                </function>
            </option>
        </call>
    </sentence>

    <sentence desc="Some place is closed" id="PropClosed">
        <call ref="phraseit">
			<option>
				<function desc="now" name="PropClosed">
                    <call ref="Place"/>
                </function>
                <function desc="on a specific date" name="PropClosedDate">
                    <call ref="Place"/>
                    <call ref="Date"/>
                </function>
                <function desc="on a specific day of the week" name="PropClosedDay">
                    <call ref="Place"/>
                    <call ref="Day"/>
                </function>
             </option>
        </call>
    </sentence>

    <sentence desc="Someone wants some food" id="AWant">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="AWant">
                    <call desc="Who wants food?" ref="Person"/>
                    <call ref="Object"/>
                </function>
            </function>
        </call>
    </sentence>

    <sentence desc="Someone likes some food" id="ALike">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="ALike">
                    <call desc="Who likes it?" ref="Person"/>
                    <call ref="Item"/>
                </function>
            </function>
        </call>
    </sentence>

    <sentence desc="Someone has a table" id="AHasTable">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="AHasTable">
                    <call ref="Person"/>
                    <function name="NNumeral">
						<numeral desc="How many persons?"/>
                    </function>
                </function>
            </function>
        </call>
    </sentence>

    <sentence desc="Someone has a room" id="AHasRoom">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="AHasRoom">
                    <call ref="Person"/>
                    <function name="NNumeral">
						<numeral desc="How many persons?"/>
                    </function>
                </function>
            </function>
        </call>
    </sentence>

    <sentence desc="Someone is hungry" id="AHungry">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="AHungry">
                    <call ref="Person"/>
                </function>
            </function>
        </call>
    </sentence>

    <sentence desc="Someone is thirsty" id="AThirsty">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="AThirsty">
                    <call ref="Person" />
                </function>
            </function>
        </call>
    </sentence>

    <sentence desc="Someone is tired" id="ATired">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="ATired">
                    <call ref="Person" />
                </function>
            </function>
        </call>
    </sentence>

    <sentence desc="Someone is scared" id="AScared">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="AScared">
                    <call ref="Person"/>
                </function>
            </function>
        </call>
    </sentence>

    <sentence desc="Someone is ill" id="AIll">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="AIll">
                    <call ref="Person"/>
                </function>
            </function>
        </call>
    </sentence>

    <sentence desc="Someone is ready" id="AReady">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="AReady">
                    <call ref="Person"/>
                </function>
            </function>
        </call>
    </sentence>
    
    <sentence desc="Someone does something" id="ADoVerbPhrase">
		<call ref="phraseit">
            <function name="PropAction">
				<option desc="Modality">
					<call desc="No modality" ref="do"/>
					<call desc="can" ref="modal_do">
						<function desc="can"  name="MCan"/>
					</call>
					<call desc="know" ref="modal_do">
						<function desc="know" name="MKnow"/>
					</call>
					<call desc="must" ref="modal_do">
						<function desc="must" name="MMust"/>
					</call>
					<call desc="want" ref="modal_do">
						<function desc="want" name="MWant"/>
					</call>
				</option>
            </function>
        </call>
    </sentence>

    <sentence desc="Someone speaks a language" id="ASpeak">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="ASpeak">
                    <call desc="Who speaks it?" ref="Person"/>
                    <call ref="language"/>
                </function>
            </function>
        </call>
    </sentence>

    <sentence desc="Someone understands" id="AUnderstand">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="AUnderstand">
                    <call ref="Person"/>
                </function>
            </function>
        </call>
    </sentence>

    <sentence desc="Someone knows" id="AKnow">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="AKnow">
                    <call ref="Person"/>
                </function>
            </function>
        </call>
    </sentence>

    <sentence desc="Someone knows someone" id="AKnowPerson">
        <call ref="phraseit">
            <function name="PropAction">
                <function name="AKnowPerson">
                    <call desc="Who knows it?" ref="Person"/>
                    <call desc="Who is known?" ref="Person"/>
                </function>
            </function>
        </call>
    </sentence>

    <sentence desc="How much does something cost?" id="HowMuchCost">
        <function name="PQuestion">
            <function name="HowMuchCost">
                <call ref="Item"/>
            </function>
        </function>
    </sentence>

    <sentence desc="Something costs ..." id="ItCost">
        <call ref="phraseit">
            <function name="ItCost">
                <call ref="Item"/>
                <call ref="Price"/>
            </function>
        </call>
    </sentence>

	<sentence desc="Commands" id="PImperative">
		<option>
			<function desc="positive, familiar" name="PImperativeFamPos">
				<call ref="VerbPhrase"/>
			</function>
			<function desc="positive, polite" name="PImperativePolPos">
				<call ref="VerbPhrase"/>
			</function>
			<function desc="positive, plural" name="PImperativePlurPos">
				<call ref="VerbPhrase"/>
			</function>
			<function desc="negated, familiar" name="PImperativeFamNeg">
				<call ref="VerbPhrase"/>
			</function>
			<function desc="negated, polite" name="PImperativePolNeg">
				<call ref="VerbPhrase"/>
			</function>
			<function desc="negative, plural" name="PImperativePlurNeg">
				<call ref="VerbPhrase"/>
			</function>
		</option>
	</sentence>

    <sentence desc="Price" id="PPrice">
		<function name="PPrice">
			<call ref="Price"/>
		</function>
	</sentence>
	
	<sentence desc="Number" id="Number">
		<function name="PNumber">
			<function name="NNumeral">
				<numeral desc="Which number?"/>
			</function>
		</function>
	</sentence>

    <!-- ___________________________________________________________________________________________ -->
    <!--Option lists -->
    <option desc="Who are we talking about?" id="Person">
        <function desc="me (male)" name="IMale" />
        <function desc="me (female)" name="IFemale" />
        <function desc="you (a male friend)" name="YouFamMale" />
        <function desc="you (a female friend)" name="YouFamFemale" />
        <function desc="you (a male stranger)" name="YouPolMale" />
        <function desc="you (a female stranger)" name="YouPolFemale" />
        <function desc="he" name="He"/>
        <function desc="she" name="She"/>
        <function desc="we (male)" name="WeMale"/>
        <function desc="we (female)" name="WeFemale"/>
        <function desc="you (male friends)" name="YouPlurFamMale"/>
        <function desc="you (female friends)" name="YouPlurFamFemale"/>
        <function desc="you (male strangers)" name="YouPlurPolMale"/>
        <function desc="you (female strangers)" name="YouPlurPolFemale"/>
        <function desc="they (male)" name="TheyMale"/>
        <function desc="they (female)" name="TheyFemale"/>
        <function desc="Wife of ..." name="Wife">
            <call ref="Person"/>
        </function>
        <function desc="Husband of ..." name="Husband">
            <call ref="Person"/>
        </function>
        <function desc="Daughter of ..." name="Daughter">
            <call ref="Person"/>
        </function>
        <function desc="Son of ..." name="Son">
            <call ref="Person"/>
        </function>
        <function desc="Children of ..." name="Children">
            <call ref="Person"/>
        </function>
    </option>

    <option desc="How to phrase it?" id="phraseit">
        <function desc="As a statement" name="PSentence">
            <function name="SProp">
				<boolean desc="Reported Speech">
					<argument/>
					<function name="PropAction">
						<option>
                            <function desc="As a statement" name="AKnowSentence">
    					        <call ref="Person"/>
                                <function name="SProp">
	    					        <argument/>
		    			        </function>
                            </function>
                            <function desc="As a question" name="AKnowQuestion">
    						    <call ref="Person"/>
                                <function name="QProp">
   		    				        <argument/>
			    			    </function>
                            </function>
                            <function desc="As a negation" name="AKnowSentence">
   						        <call ref="Person"/>
                                <function name="SPropNot">
	    					        <argument/>
		    			        </function>
                            </function>
                        </option>
                    </function>
                </boolean>
            </function>
        </function>
        <function desc="As a question" name="PQuestion">
            <function name="QProp">
				<boolean desc="Reported Speech">
					<argument/>
					<function name="PropAction">
						<option>
                            <function desc="As a statement" name="AKnowSentence">
    					        <call ref="Person"/>
                                <function name="SProp">
	    					        <argument/>
		    			        </function>
                            </function>
                            <function desc="As a question" name="AKnowQuestion">
    						    <call ref="Person"/>
                                <function name="QProp">
   		    				        <argument/>
			    			    </function>
                            </function>
                            <function desc="As a negation" name="AKnowSentence">
   						        <call ref="Person"/>
                                <function name="SPropNot">
	    					        <argument/>
		    			        </function>
                            </function>
                        </option>
                    </function>
                </boolean>
            </function>
        </function>
        <function desc="As a negation" name="PSentence">
            <function name="SPropNot">
				<boolean desc="Reported Speech">
					<argument/>
					<function name="PropAction">
						<option>
                            <function desc="As a statement" name="AKnowSentence">
    					        <call ref="Person"/>
                                <function name="SProp">
	    					        <argument/>
		    			        </function>
                            </function>
                            <function desc="As a question" name="AKnowQuestion">
    						    <call ref="Person"/>
                                <function name="QProp">
   		    				        <argument/>
			    			    </function>
                            </function>
                            <function desc="As a negation" name="AKnowSentence">
   						        <call ref="Person"/>
                                <function name="SPropNot">
	    					        <argument/>
		    			        </function>
                            </function>
                        </option>
                    </function>
                </boolean>
            </function>
        </function>
    </option>

    <option id="language" desc="What language?">
        <function desc="Bulgarian" name="(LangNat Bulgarian)"/>
        <function desc="Catalan" name="(LangNat Catalan)"/>
        <function desc="Danish" name="(LangNat Danish)"/>
        <function desc="Dutch" name="(LangNat Dutch)"/>
        <function desc="English" name="(LangNat English)"/>
        <function desc="Finnish" name="(LangNat Finnish)"/>
        <function desc="Flemish" name="Flemish"/>
        <function desc="French" name="(LangNat French)"/>
        <function desc="German" name="(LangNat German)"/>
        <function desc="Italian" name="(LangNat Italian)"/>
        <function desc="Norwegian" name="(LangNat Norwegian)"/>
        <function desc="Polish" name="(LangNat Polish)"/>
        <function desc="Romanian" name="(LangNat Romanian)"/>
        <function desc="Russian" name="(LangNat Russian)"/>
        <function desc="Spanish" name="(LangNat Spanish)"/>
        <function desc="Swedish" name="(LangNat Swedish)"/>
    </option>

    <option id="Citizenship" desc="What nationality">
        <function desc="Belgian" name="Belgian"/>
        <function desc="Bulgarian" name="CitiNat Bulgarian"/>
        <function desc="Catalan" name="CitiNat Catalan"/>
        <function desc="Dutch" name="CitiNat Dutch"/>
        <function desc="Danish" name="CitiNat Danish"/>
        <function desc="English" name="CitiNat English"/>
        <function desc="Finnish" name="CitiNat Finnish"/>
        <function desc="French" name="CitiNat French"/>
        <function desc="German" name="CitiNat German"/>
        <function desc="Italian" name="CitiNat Italian"/>
        <function desc="Norwegian" name="CitiNat Norwegian"/>
        <function desc="Polish" name="CitiNat Polish"/>
        <function desc="Romanian" name="CitiNat Romanian"/>
        <function desc="Russian" name="CitiNat Russian"/>
        <function desc="Spanish" name="CitiNat Spanish"/>
        <function desc="Swedish" name="CitiNat Swedish"/>
    </option>

    <option desc="What place are we asking about?" id="PlaceKind">
        <function desc="airport" name="Airport"/>
        <function desc="amusement park" name="AmusementPark"/>
        <function desc="bank" name="Bank"/>
        <function desc="bar" name="Bar"/>
        <function desc="cafeteria" name="Cafeteria"/>
        <function desc="center" name="Center"/>
        <function desc="church" name="Church"/>
        <function desc="cinema" name="Cinema"/>
        <function desc="car park" name="Parking"/>
        <function desc="disco" name="Disco"/>
        <function desc="hospital" name="Hospital"/>
        <function desc="hotel" name="Hotel"/>
        <function desc="museum" name="Museum"/>
        <function desc="park" name="Park"/>
        <function desc="pharmacy" name="Pharmacy"/>
        <function desc="post office" name="PostOffice"/>
        <function desc="pub" name="Pub"/>
        <function desc="restaurant" name="Restaurant"/>
        <function desc="restaurant (National)" name="CitRestaurant">
            <call ref="Citizenship"/>
        </function>
        <function desc="school" name="School"/>
        <function desc="shop" name="Shop"/>
        <function desc="station" name="Station"/>
        <function desc="supermarket" name="Supermarket"/>
        <function desc="theatre" name="Theatre"/>
        <function desc="toilet" name="Toilet"/>
        <function desc="university" name="University"/>
        <function desc="zoo" name="Zoo"/>
    </option>

    <option id="Place">
        <function desc="a/an" name="APlace">
            <call ref="PlaceKind"/>
        </function>
        <function desc="the" name="ThePlace">
			<call ref="PlaceKind"/>
		</function>
        <function desc="the best" name="SuperlPlace">
			<function name="TheBest"/>
			<call ref="PlaceKind"/>
        </function>
        <function desc="the worst" name="SuperlPlace">
			<function name="TheWorst"/>
			<call ref="PlaceKind"/>
        </function>
        <function desc="the nearest" name="SuperlPlace">
			<function name="TheClosest"/>
			<call ref="PlaceKind"/>
        </function>
        <function desc="the cheapest" name="SuperlPlace">
			<function name="TheCheapest"/>
			<call ref="PlaceKind"/>
        </function>
        <function desc="the most expensive" name="SuperlPlace">
			<function name="TheMostExpensive"/>
			<call ref="PlaceKind"/>
        </function>
        <function desc="the most popular" name="SuperlPlace">
			<function name="TheMostPopular"/>
			<call ref="PlaceKind"/>
        </function>
    </option>

    <option id="country" desc="What nationality">
        <function desc="Belgium" name="Belgium"/>
        <function desc="Bulgaria" name="(CountryNat Bulgarian)"/>
        <function desc="Catalonia" name="(CountryNat Catalan)"/>
        <function desc="The Netherlands" name="(CountryNat Dutch)"/>
        <function desc="Denmark" name="(CountryNat Danish)"/>
        <function desc="England" name="(CountryNat English)"/>
        <function desc="Finland" name="(CountryNat Finnish)"/>
        <function desc="France" name="(CountryNat French)"/>
        <function desc="Germany" name="(CountryNat German)"/>
        <function desc="Italy" name="(CountryNat Italian)"/>
        <function desc="Norway" name="(CountryNat Norwegian)"/>
        <function desc="Poland" name="(CountryNat Polish)"/>
        <function desc="Romania" name="(CountryNat Romanian)"/>
        <function desc="Russia" name="(CountryNat Russian)"/>
        <function desc="Spain" name="(CountryNat Spanish)"/>
        <function desc="Sweden" name="(CountryNat Swedish)"/>
    </option>

    <option desc="What is being wanted?" id="Object">
        <function desc="a/an" name="OneObj">
            <call ref="IndefItem"/>
        </function>
        <function desc="the" name="OneObj">
            <function name="ObjItem">
                <call ref="DefItem"/>
            </function>
        </function>
        <function desc="this" name="OneObj">
            <function name="ObjItem">
                <call ref="ThisItem"/>
            </function>
        </function>
        <function desc="that" name="OneObj">
            <function name="ObjItem">
				<call ref="ThatItem"/>
            </function>
        </function>
        <function desc="(plural)" name="OneObj">
            <function name="ObjPlural">
				<call ref="Kind"/>
            </function>
        </function>
    </option>

    <option desc="Determiner" id="Item">
        <call desc="the"  ref="DefItem"/>
        <call desc="this" ref="ThisItem"/>
		<call desc="that" ref="ThatItem"/>
    </option>

	<option id="IndefItem" desc="What are we talking about?">
		<function desc="apple" name="(ObjIndef Apple)"/>
        <function desc="beer" name="(ObjMass (MassDrink Beer))"/>
        <function desc="bread" name="(ObjMass Bread)"/>
        <function desc="cheese" name="(ObjMass Cheese)"/>
        <function desc="chicken" name="(ObjMass Chicken)"/>
        <function desc="coffee" name="(ObjMass (MassDrink Coffee))"/>
        <function desc="fish" name="(ObjMass Fish)"/>
        <function desc="meat" name="(ObjMass Meat)"/>
        <function desc="milk" name="(ObjMass Milk)"/>
        <function desc="pizza" name="(ObjIndef Pizza)"/>
        <function desc="salt" name="(ObjMass Salt)"/>
        <function desc="tea" name="(ObjMass (MassDrink Tea))"/>
        <function desc="water" name="(ObjMass (MassDrink Water))"/>
        <function desc="wine" name="(ObjMass (MassDrink Wine))"/>
        <function desc="(with quality)" name="ObjMass">
			<function name="SuchMassKind">
				<call ref="Quality"/>
				<call ref="MassKind"/>
			</function>
        </function>
    </option>

	<option id="DefItem" desc="What are we talking about?">
		<function desc="apple" name="(The Apple)"/>
        <function desc="beer" name="(TheMass (MassDrink Beer))"/>
        <function desc="bread" name="(TheMass Bread)"/>
        <function desc="cheese" name="(TheMass Cheese)"/>
        <function desc="chicken" name="(TheMass Chicken)"/>
        <function desc="coffee" name="(TheMass (MassDrink Coffee))"/>
        <function desc="fish" name="(TheMass Fish)"/>
        <function desc="meat" name="(TheMass Meat)"/>
        <function desc="milk" name="(TheMass Milk)"/>
        <function desc="pizza" name="(The Pizza)"/>
        <function desc="salt" name="(TheMass Salt)"/>
        <function desc="tea" name="(TheMass (MassDrink Tea))"/>
        <function desc="water" name="(TheMass (MassDrink Water))"/>
        <function desc="wine" name="(TheMass (MassDrink Wine))"/>
        <function desc="(with quality)" name="TheMass">
			<function name="SuchMassKind">
				<call ref="Quality"/>
				<call ref="MassKind"/>
			</function>
        </function>
    </option>

	<option id="ThisItem" desc="What are we talking about?">
		<function desc="apple" name="(This Apple)"/>
        <function desc="beer" name="(ThisMass (MassDrink Beer))"/>
        <function desc="bread" name="(ThisMass Bread)"/>
        <function desc="cheese" name="(ThisMass Cheese)"/>
        <function desc="chicken" name="(ThisMass Chicken)"/>
        <function desc="coffee" name="(ThisMass (MassDrink Coffee))"/>
        <function desc="fish" name="(ThisMass Fish)"/>
        <function desc="meat" name="(ThisMass Meat)"/>
        <function desc="milk" name="(ThisMass Milk)"/>
        <function desc="pizza" name="(This Pizza)"/>
        <function desc="salt" name="(ThisMass Salt)"/>
        <function desc="tea" name="(ThisMass (MassDrink Tea))"/>
        <function desc="water" name="(ThisMass (MassDrink Water))"/>
        <function desc="wine" name="(ThisMass (MassDrink Wine))"/>
        <function desc="(with quality)" name="ThisMass">
			<function name="SuchMassKind">
				<call ref="Quality"/>
				<call ref="MassKind"/>
			</function>
        </function>
    </option>

	<option id="ThatItem" desc="What are we talking about?">
		<function desc="apple" name="(That Apple)"/>
        <function desc="beer" name="(ThatMass (MassDrink Beer))"/>
        <function desc="bread" name="(ThatMass Bread)"/>
        <function desc="cheese" name="(ThatMass Cheese)"/>
        <function desc="chicken" name="(ThatMass Chicken)"/>
        <function desc="coffee" name="(ThatMass (MassDrink Coffee))"/>
        <function desc="fish" name="(ThatMass Fish)"/>
        <function desc="meat" name="(ThatMass Meat)"/>
        <function desc="milk" name="(ThatMass Milk)"/>
        <function desc="pizza" name="(That Pizza)"/>
        <function desc="salt" name="(ThatMass Salt)"/>
        <function desc="tea" name="(ThatMass (MassDrink Tea))"/>
        <function desc="water" name="(ThatMass (MassDrink Water))"/>
        <function desc="wine" name="(ThatMass (MassDrink Wine))"/>
        <function desc="(with quality)" name="ThatMass">
			<function name="SuchMassKind">
				<call ref="Quality"/>
				<call ref="MassKind"/>
			</function>
        </function>
    </option>

    <option id="MassKind" desc="What are we talking about?">
        <function desc="beer" name="(MassDrink Beer)"/>
        <function desc="bread" name="Bread"/>
        <function desc="cheese" name="Cheese"/>
        <function desc="chicken" name="Chicken"/>
        <function desc="coffee" name="(MassDrink Coffee)"/>
        <function desc="fish" name="Fish"/>
        <function desc="meat" name="Meat"/>
        <function desc="milk" name="Milk"/>
        <function desc="salt" name="Salt"/>
        <function desc="tea" name="(MassDrink Tea)"/>
        <function desc="water" name="(MassDrink Water)"/>
        <function desc="wine" name="(MassDrink Wine)"/>
        <function desc="(with quality)" name="SuchMassKind">
			<call ref="Quality"/>
			<call ref="MassKind"/>
        </function>
    </option>

	<option id="Kind" desc="What are we talking about?">
		<function desc="apple" name="Apple"/>
        <function desc="pizza" name="Pizza"/>
        <function desc="(with quality)" name="SuchKind">
			<call ref="Quality"/>
			<call ref="Kind"/>
        </function>
    </option>

    <option id="Quality" desc="What quality does it have?">
        <function desc="bad" name="(PropQuality Bad)"/>
        <function desc="boring" name="(PropQuality Boring)"/>
        <function desc="cheap" name="(PropQuality Cheap)"/>
        <function desc="cold" name="(PropQuality Cold)"/>
        <function desc="delicious" name="(PropQuality Delicious)"/>
        <function desc="expensive" name="(PropQuality Expensive)"/>
        <function desc="fresh" name="(PropQuality Fresh)"/>
        <function desc="good" name="(PropQuality Good)"/>
        <function desc="suspect" name="(PropQuality Suspect)"/>
        <function desc="warm" name="(PropQuality Warm)"/>

        <function desc="too bad" name="(Too Bad)"/>
        <function desc="too boring" name="(Too Boring)"/>
        <function desc="too cheap" name="(Too Cheap)"/>
        <function desc="too cold" name="(Too Cold)"/>
        <function desc="too delicious" name="(Too Delicious)"/>
        <function desc="too expensive" name="(Too Expensive)"/>
        <function desc="too fresh" name="(Too Fresh)"/>
        <function desc="too good" name="(Too Good)"/>
        <function desc="too suspect" name="(Too Suspect)"/>
        <function desc="too warm" name="(Too Warm)"/>

        <function desc="very bad" name="(Very Bad)"/>
        <function desc="very boring" name="(Very Boring)"/>
        <function desc="very cheap" name="(Very Cheap)"/>
        <function desc="very cold" name="(Very Cold)"/>
        <function desc="very delicious" name="(Very Delicious)"/>
        <function desc="very expensive" name="(Very Expensive)"/>
        <function desc="very fresh" name="(Very Fresh)"/>
        <function desc="very good" name="(Very Good)"/>
        <function desc="very suspect" name="(Very Suspect)"/>
        <function desc="very warm" name="(Very Warm)"/>

        <function desc="(with nationality)" name="PropQuality">
			<function name="PropCit">
				<call ref="Citizenship"/>
			</function>
        </function>
    </option>

	<function name="AmountCurrency" id="Price">
		<function name="NNumeral">
			<numeral desc="How much does it cost?"/>
		</function>
		<call ref="Currency"/>
	</function>

    <option id="Currency">
        <function desc="Euro"  name="Euro"/>
        <function desc="Dollar" name="Dollar"/>
        <function desc="Danish Crown" name="DanishCrown"/>
        <function desc="Norwegian Crown" name="NorwegianCrown"/>
        <function desc="Swedish Crown" name="SwedishCrown"/>
        <function desc="Pound" name="Pound"/>
        <function desc="Rouble" name="Rouble"/>
        <function desc="Rupee" name="Rupee"/>
        <function desc="Lei" name="Lei"/>
        <function desc="Leva" name="Leva"/>
        <function desc="Yuan" name="Yuan"/>
        <function desc="Zloty" name="Zloty"/>
    </option>
    
    <option desc="When?" id="Date">
		<function desc="today" name="Today"/>
		<function desc="tomorrow" name="Tomorrow"/>
		<function desc="on Monday" name="(OnDay Monday)"/>
		<function desc="on Tuesday" name="(OnDay Tuesday)"/>
		<function desc="on Wednesday" name="(OnDay Wednesday)"/>
		<function desc="on Thursday" name="(OnDay Thursday)"/>
		<function desc="on Friday" name="(OnDay Friday)"/>
		<function desc="on Saturday" name="(OnDay Saturday)"/>
		<function desc="on Sunday" name="(OnDay Sunday)"/>
	</option>

    <option desc="On which days?" id="Day">
		<function desc="Monday" name="Monday"/>
		<function desc="Tuesday" name="Tuesday"/>
		<function desc="Wednesday" name="Wednesday"/>
		<function desc="Thursday" name="Thursday"/>
		<function desc="Friday" name="Friday"/>
		<function desc="Saturday" name="Saturday"/>
		<function desc="Sunday" name="Sunday"/>
	</option>

	<option dec="Greeting" id="Greeting">
		<function desc="Hello" name="GHello"/>
		<function desc="Good Day" name="GGoodDay"/>
		<function desc="Good Evening" name="GGoodEvening"/>
		<function desc="Good Morning" name="GGoodMorning"/>
		<function desc="Good Night" name="GGoodNight"/>
		<function desc="Good Luck" name="GGoodLuck"/>
		<function desc="See You Soon" name="GSeeYouSoon"/>
		<function desc="See You on a Day" name="PSeeYouDate">
			<call ref="Date"/>
		</function>
		<function desc="See You Somewhere" name="PSeeYouPlace">
			<call ref="Place"/>
		</function>
		<function desc="See You Somewhere on a Day" name="PSeeYouPlaceDate">
			<call ref="Place"/>
			<call ref="Date"/>
		</function>
		<function desc="Goodbye" name="GGoodbye"/>
		<function desc="Bye" name="GBye"/>
		<function desc="Cheers" name="GCheers"/>
		<function desc="Congratulations" name="GCongratulations"/>
		<function desc="Damn" name="GDamn"/>
		<function desc="Excuse me" name="GExcuse"/>
		<function desc="Excuse me (polite)" name="GExcusePol"/>
		<function desc="Happy Birthday" name="GHappyBirthday"/>
		<function desc="Help" name="GHelp"/>
		<function desc="How Are You" name="GHowAreYou"/>
		<function desc="Nice to Meet You" name="GNiceToMeetYou"/>
		<function desc="Sorry" name="GSorry"/>
		<function desc="Sorry (polite)" name="GSorryPol"/>
		<function desc="Thanks" name="GThanks"/>
	</option>

	<option dec="Phrase" id="Phrase">
		<function desc="Yes" name="PYes"/>
		<function desc="Yes (as an answer to no)" name="PYesToNo"/>
		<function desc="No" name="PNo"/>
		<function desc="What is the time?" name="GWhatTime"/>
		<function desc="The Bill" name="GTheCheck"/>
		<function desc="Look Out" name="GLookOut"/>
		<function desc="Something please" name="GObjectPlease">
			<call ref="Object"/>
		</function>
		<function desc="Please" name="GPleaseGive"/>
		<function desc="Please (polite)" name="GPleaseGivePol"/>
	</option>

	<option id="do">
		<function desc="In general" name="ADoVerbPhrase">
			<call ref="Person"/>
			<call ref="VerbPhrase"/>
		</function>
		<function desc="In some place" name="ADoVerbPhrasePlace">
			<call ref="Person"/>
			<call ref="VerbPhrase"/>
			<call ref="Place"/>
		</function>
	</option>

	<option id="modal_do">
		<function desc="In general" name="AModVerbPhrase">
			<argument/>
			<call ref="Person"/>
			<call ref="VerbPhrase"/>
		</function>
		<function desc="In some place" name="AModVerbPhrasePlace">
			<argument/>
			<call ref="Person"/>
			<call ref="VerbPhrase"/>
			<call ref="Place"/>
		</function>
	</option>

	<option desc="Verb" id="VerbPhrase">
		<function desc="Buy" name="V2Buy">
			<call desc="What should be bought?" ref="Object"/>
		</function>
		<function desc="Drink" name="VDrink"/>
		<function desc="Drink Something" name="V2Drink">
			<call desc="What should be drunk?" ref="Object"/>
		</function>
		<function desc="Eat" name="VEat"/>
		<function desc="Eat Something" name="V2Eat">
			<call desc="What should be eaten?" ref="Object"/>
		</function>
		<function desc="Wait for Someone" name="V2Wait">
			<call desc="Whom should we wait for?" ref="Person"/>
		</function>
		<function desc="Play" name="VPlay"/>
		<function desc="Read" name="VRead"/>
		<function desc="Run" name="VRun"/>
		<function desc="Sit" name="VSit"/>
		<function desc="Sleep" name="VSleep"/>
		<function desc="Stop" name="VStop"/>
		<function desc="Swim" name="VSwim"/>
		<function desc="Wait" name="VWait"/>
		<function desc="Walk" name="VWalk"/>
		<function desc="Write" name="VWrite"/>
	</option>
</phrasebook>