102 lines
3.0 KiB
XML
102 lines
3.0 KiB
XML
<include><!--This line will be ignored it's here to validate the xml and is optional -->
|
|
|
|
<macro name="directory_intro">
|
|
<input pattern="^(last_name)" break_on_match="false">
|
|
<match>
|
|
<action function="speak-text" data="Veuillez entrer les premiere lettre du nom de famille"/>
|
|
</match>
|
|
</input>
|
|
<input pattern="^(first_name)" break_on_match="false">
|
|
<match>
|
|
<action function="speak-text" data="Veuillez entrer les premiere lettre du prénom"/>
|
|
</match>
|
|
</input>
|
|
<input pattern="^(last_name):([0-9#*])$" break_on_match="false">
|
|
<match>
|
|
<action function="speak-text" data="pour chercher par prénom, appuyer sur le $2"/>
|
|
</match>
|
|
</input>
|
|
<input pattern="^(first_name):([0-9#*])$" break_on_match="false">
|
|
<match>
|
|
<action function="speak-text" data="pour chercher par nom de famille, appuyer sur le $2"/>
|
|
</match>
|
|
</input>
|
|
</macro>
|
|
|
|
<macro name="directory_min_search_digits">
|
|
<input pattern="^(1)$">
|
|
<match>
|
|
<action function="speak-text" data="Vous devez entré au minimum une lettre du nom de la personne, essayer de nouveaux"/>
|
|
</match>
|
|
</input>
|
|
<input pattern="^(.*)$">
|
|
<match>
|
|
<action function="speak-text" data="Vous devez entré au minimum $1 lettre du nom de la personne, essayer de nouveaux"/>
|
|
</match>
|
|
</input>
|
|
</macro>
|
|
|
|
<macro name="directory_result_count">
|
|
<input pattern="^0$" break_on_match="true">
|
|
<match>
|
|
<action function="speak-text" data="Votre recherche a retourner aucune résultat, essayer de nouveaux"/>
|
|
</match>
|
|
</input>
|
|
<input pattern="^(.*)$">
|
|
<match>
|
|
<action function="speak-text" data="$1 résultats correspond a votre recherche"/>
|
|
</match>
|
|
</input>
|
|
</macro>
|
|
|
|
<macro name="directory_result_count_too_large">
|
|
<input pattern="^(.*)$">
|
|
<match>
|
|
<action function="speak-text" data="Votre recherche retourne trop de résultat, essayer de nouveaux."/>
|
|
</match>
|
|
</input>
|
|
|
|
</macro>
|
|
|
|
<macro name="directory_result_last">
|
|
<input pattern="^(.*)$">
|
|
<match>
|
|
<action function="speak-text" data="Fin des résultats."/>
|
|
</match>
|
|
</input>
|
|
|
|
</macro>
|
|
|
|
<macro name="directory_result_item">
|
|
<input pattern="^(.*)$">
|
|
<match>
|
|
<action function="speak-text" data="Résultat numéro $1"/>
|
|
</match>
|
|
</input>
|
|
</macro>
|
|
|
|
<macro name="directory_result_menu">
|
|
<input pattern="^([0-9#*]),([0-9#*]),([0-9#*]),([0-9#*])$">
|
|
<match>
|
|
<action function="speak-text" data="Pour selectionner ce nom appuyer sur le $1, pour le nom suivant appuyer sur le $2, pour le nom précédent appuyer sur le $3 ou pour faire une nouvelle recherche appuyer sur le $4"/>
|
|
</match>
|
|
</input>
|
|
</macro>
|
|
|
|
<macro name="directory_result_at">
|
|
<input pattern="^(.*)$">
|
|
<match>
|
|
<action function="speak-text" data="aux poste $1"/>
|
|
</match>
|
|
</input>
|
|
</macro>
|
|
<macro name="directory_result_say_name">
|
|
<input pattern="^(.*)$">
|
|
<match>
|
|
<action function="speak-text" data="$1"/>
|
|
</match>
|
|
</input>
|
|
</macro>
|
|
|
|
</include><!--This line will be ignored it's here to validate the xml and is optional -->
|