1<include><!--This line will be ignored it's here to validate the xml and is optional -->
2
3	<macro name="directory_intro">
4		<input pattern="^(last_name)" break_on_match="false">
5			<match>
6				<action function="speak-text" data="Por favor introduza os primeiras letras do apelido da pessoa"/>
7			</match>
8		</input>
9		<input pattern="^(first_name)" break_on_match="false">
10			<match>
11				<action function="speak-text" data="Por favor introduza os primeiros dígitos do primeiro nome da pessoa"/>
12			</match>
13		</input>
14		<input pattern="^(last_name):([0-9#*])$" break_on_match="false">
15			<match>
16				<action function="speak-text" data="Para pesquisar por primeiro nome, marque $2"/>
17			</match>
18		</input>
19		<input pattern="^(first_name):([0-9#*])$" break_on_match="false">
20			<match>
21				<action function="speak-text" data="Para pesquisar por apelido, marque $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="Você necessita de especificar um mínimo de $1 letras do nome da pessoa, tente novamente."/>
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="Não foram encontrados resultados, tente novamente."/>
38			</match>
39		</input>
40		<input pattern="^(.*)$">
41			<match>
42				<action function="speak-text" data="$1 resultados encontrados para a sua pesquisa."/>
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="A sua pesquisa devolveu demasiados resultados, por favor tente novamente."/>
51			</match>
52		</input>
53
54	</macro>
55
56	<macro name="directory_result_last">
57		<input pattern="^(.*)$">
58			<match>
59				<action function="speak-text" data="Não há mais resultados"/>
60			</match>
61		</input>
62
63	</macro>
64
65	<macro name="directory_result_item">
66		<input pattern="^(.*)$">
67			<match>
68				<action function="speak-text" data="Resultado número $1"/>
69			</match>
70		</input>
71	</macro>
72
73	<macro name="directory_result_menu">
74		<input pattern="^([0-9#*]),([0-9#*]),([0-9#*]),([0-9#*])$">
75			<match>
76				<action function="speak-text" data="Para seleccionar este resultado marque $1, Para o resultado seguinte marque $2, Para o resultado anterior marque $3, Para iniciar uma nova pesquisa marque $4"/>
77			</match>
78		</input>
79	</macro>
80
81	<macro name="directory_result_at">
82		<input pattern="^(.*)$">
83			<match>
84				<action function="speak-text" data="Na extensão $1"/>
85			</match>
86		</input>
87	</macro>
88	<macro name="directory_result_say_name">
89		<input pattern="^(.*)$">
90			<match>
91				<action function="speak-text" data="$1"/>
92			</match>
93		</input>
94	</macro>
95
96</include><!--This line will be ignored it's here to validate the xml and is optional -->
97