updated to FS git HEAD 5e3a6fc5e6f40be5d68c8b3cfbbfa3227fe06c2f
[packages.git] / net / freeswitch / files / etc.packages / say-fr / lang / fr / 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="Veuillez entrer les premières lettres du nom de famille"/>
7       </match>
8     </input>
9     <input pattern="^(first_name)" break_on_match="false">
10       <match>
11         <action function="speak-text" data="Veuillez entrer les premières lettres du prénom"/>
12       </match>
13     </input>
14     <input pattern="^(last_name):([0-9#*])$" break_on_match="false">
15       <match>
16         <action function="speak-text" data="pour chercher par prénom, tapez $2"/>
17       </match>
18     </input>
19     <input pattern="^(first_name):([0-9#*])$" break_on_match="false">
20       <match>
21         <action function="speak-text" data="pour chercher par nom de famille, tapez $2"/>
22       </match>
23     </input>
24   </macro>
25
26   <macro name="directory_min_search_digits">
27     <input pattern="^(1)$">
28       <match>
29         <action function="speak-text" data="Vous devez entrer au minimum une lettre du nom de la personne, essayez encore"/>
30       </match>
31     </input>
32     <input pattern="^(.*)$">
33       <match>
34         <action function="speak-text" data="Vous devez entrer au minimum $1 lettres du nom de la personne, essayer encore"/>
35       </match>
36     </input>
37   </macro>
38
39   <macro name="directory_result_count">
40     <input pattern="^0$" break_on_match="true">
41       <match>
42         <action function="speak-text" data="Votre recherche n'a retournée aucun résultat, essayez encore"/>
43       </match>
44     </input>
45     <input pattern="^(.*)$">
46       <match>
47         <action function="speak-text" data="$1 résultats correspondent à votre recherche"/>
48       </match>
49     </input>
50   </macro>
51
52   <macro name="directory_result_count_too_large">
53     <input pattern="^(.*)$">
54       <match>
55         <action function="speak-text" data="Votre recherche retourne trop de résultats, essayer encore"/>
56       </match>
57     </input>
58   </macro>
59
60   <macro name="directory_result_last">
61     <input pattern="^(.*)$">
62       <match>
63         <action function="speak-text" data="Fin des résultats."/>
64       </match>
65     </input>
66   </macro>
67
68   <macro name="directory_result_item">
69     <input pattern="^(.*)$">
70       <match>
71         <action function="speak-text" data="Résultat numéro $1"/>
72       </match>
73     </input>
74   </macro>
75
76   <macro name="directory_result_menu">
77     <input pattern="^([0-9#*]),([0-9#*]),([0-9#*]),([0-9#*])$">
78       <match>
79         <action function="speak-text" data="Pour sélectionner ce nom, tapez $1, pour le nom suivant tapez $2, pour le nom précédent, tapez $3, pour faire une nouvelle recherche, tapez $4"/>
80       </match>
81     </input>
82   </macro>
83
84   <macro name="directory_result_at">
85     <input pattern="^(.*)$">
86       <match>
87         <action function="speak-text" data="au poste $1"/>
88       </match>
89     </input>
90   </macro>
91   <macro name="directory_result_say_name">
92     <input pattern="^(.*)$">
93       <match>
94         <action function="speak-text" data="$1"/>
95       </match>
96     </input>
97   </macro>
98
99 </include>
100 <!--
101 For Emacs:
102 Local Variables:
103 mode:xml
104 indent-tabs-mode:nil
105 tab-width:2
106 c-basic-offset:2
107 End:
108 For VIM:
109 vim:set softtabstop=2 shiftwidth=2 tabstop=2 expandtab:
110 -->