forked from Mirrors/freeswitch
3241200072
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4026 d0543943-73ff-0310-b7d9-9358b9ac24b2
19 lines
650 B
XML
19 lines
650 B
XML
<include><!--This line will be ignored it's here to validate the xml and is optional -->
|
|
<macro name="msgcount">
|
|
<input pattern="(.*)">
|
|
<match>
|
|
<action function="play-file" data="tuas.wav"/>
|
|
<action function="say" data="$1" method="pronounced" type="items"/>
|
|
<action function="play-file" data="messages.wav"/>
|
|
</match>
|
|
</input>
|
|
</macro>
|
|
<macro name="timeleft">
|
|
<input pattern="(\d+):(\d+)">
|
|
<match>
|
|
<action function="speak-text" data="il y a $1 minutes et de $2 secondes de restant"/>
|
|
</match>
|
|
</input>
|
|
</macro>
|
|
</include><!--This line will be ignored it's here to validate the xml and is optional -->
|