branch Attitude Adjustment packages
[12.09/packages.git] / net / freeswitch / files / etc.packages / say-en / lang / en / dir / tts.xml
1 <include>
2
3   <macro name="directory_intro">
4     <input pattern="^(last_name)" break_on_match="false">
5       <match>
6         <action function="speak-text" data="Please enter the first few digit of the person last name"/>
7       </match>
8     </input>
9     <input pattern="^(first_name)" break_on_match="false">
10       <match>
11         <action function="speak-text" data="Please enter the first few digit of the person first name"/>
12       </match>
13     </input>
14     <input pattern="^(last_name):([0-9#*])$" break_on_match="false">
15       <match>
16         <action function="speak-text" data="to search by first name, press $2"/>
17       </match>
18     </input>
19     <input pattern="^(first_name):([0-9#*])$" break_on_match="false">
20       <match>
21         <action function="speak-text" data="to search by last name, press $2"/>
22       </match>
23     </input>
24   </macro>
25
26   <macro name="directory_min_search_digits">
27     <input pattern="^(.*)$">
28       <match>
29         <action function="speak-text" data="You need to specify a minimum the first $1 letters of the person name, try again."/>
30       </match>
31     </input>
32   </macro>
33
34   <macro name="directory_result_count">
35     <input pattern="^0$" break_on_match="true">
36       <match>
37         <action function="speak-text" data="Your search match no user on this system, try again."/>
38       </match>
39     </input>
40     <input pattern="^(.*)$">
41       <match>
42         <action function="speak-text" data="$1 result match your search"/>
43       </match>
44     </input>
45   </macro>
46
47   <macro name="directory_result_count_too_large">
48     <input pattern="^(.*)$">
49       <match>
50         <action function="speak-text" data="Your search returned too many result, please try again"/>
51       </match>
52     </input>
53   </macro>
54
55   <macro name="directory_result_last">
56     <input pattern="^(.*)$">
57       <match>
58         <action function="speak-text" data="No more result"/>
59       </match>
60     </input>
61   </macro>
62
63   <macro name="directory_result_item">
64     <input pattern="^(.*)$">
65       <match>
66         <action function="speak-text" data="Result number $1"/>
67       </match>
68     </input>
69   </macro>
70
71   <macro name="directory_result_menu">
72     <input pattern="^([0-9#*]),([0-9#*]),([0-9#*]),([0-9#*])$">
73       <match>
74         <action function="speak-text" data="To select this entry press $1, for the next entry press $2, for the previous entry press $3, to make a new search press $4"/>
75       </match>
76     </input>
77   </macro>
78
79   <macro name="directory_result_at">
80     <input pattern="^(.*)$">
81       <match>
82         <action function="speak-text" data="at extension $1"/>
83       </match>
84     </input>
85   </macro>
86
87   <macro name="directory_result_say_name">
88     <input pattern="^(.*)$">
89       <match>
90         <action function="speak-text" data="$1"/>
91       </match>
92     </input>
93   </macro>
94
95 </include>