updated to FS git HEAD 5e3a6fc5e6f40be5d68c8b3cfbbfa3227fe06c2f
[openwrt/svn-archive/archive.git] / net / freeswitch / files / etc.packages / say-ru / lang / ru / 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 <macro name="directory_result_say_name">
87 <input pattern="^(.*)$">
88 <match>
89 <action function="speak-text" data="$1"/>
90 </match>
91 </input>
92 </macro>
93
94 </include>
95 <!--
96 For Emacs:
97 Local Variables:
98 mode:xml
99 indent-tabs-mode:nil
100 tab-width:2
101 c-basic-offset:2
102 End:
103 For VIM:
104 vim:set softtabstop=2 shiftwidth=2 tabstop=2 expandtab:
105 -->