-
Notifications
You must be signed in to change notification settings - Fork 1
/
vcd.xml
54 lines (54 loc) · 2.47 KB
/
vcd.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="utf-8"?>
<VoiceCommands xmlns="http://schemas.microsoft.com/voicecommands/1.2">
<CommandSet xml:lang="en-us" Name="groupPost">
<CommandPrefix>Group Post</CommandPrefix>
<Example>Group Post add note</Example>
<Command Name="addNote">
<Example>add a note {message} using group post</Example>
<ListenFor RequireAppName="BeforeOrAfterPhrase">[please] add a note [that] {noteSubject}</ListenFor>
<Feedback>adding {noteSubject} to Group Post</Feedback>
<Navigate Target="/addNote.htm"/>
</Command>
<Command Name="showNote">
<Example>Show Notes on group post</Example>
<ListenFor RequireAppName="BeforeOrAfterPhrase">show [my] notes</ListenFor>
<Feedback>Showing your notes</Feedback>
<Navigate Target="/showNote.htm"/>
</Command>
<PhraseTopic Label="noteSubject" Scenario="Dictation"></PhraseTopic>
</CommandSet>
<CommandSet xml:lang="zh-cn" Name="ChineseGroupPost">
<CommandPrefix>群交</CommandPrefix>
<Example>组文章加注</Example>
<Command Name="addNote">
<Example>添加备注[消息]使用[组文章]</Example>
<ListenFor RequireAppName="BeforePhrase">添加备注{noteSubject}</ListenFor>
<Feedback>加入{noteSubject} 到邮政集团</Feedback>
<Navigate Target="/addNote.htm"/>
</Command>
<Command Name="showNote">
<Example>在组展后的注意事项</Example>
<ListenFor RequireAppName="BeforePhrase">显示票据</ListenFor>
<Feedback>显示您的笔记</Feedback>
<Navigate Target="/showNote.htm"/>
</Command>
<PhraseTopic Label="noteSubject" Scenario="Dictation"></PhraseTopic>
</CommandSet>
<CommandSet xml:lang="fr-fr" Name="FrenchGroupPost">
<CommandPrefix>Group Post</CommandPrefix>
<Example>Group Post add note</Example>
<Command Name="addNote">
<Example>add a note {message} using group post</Example>
<ListenFor RequireAppName="BeforeOrAfterPhrase">[s'il vous plaît] ajouter une note [que] {noteSubject}</ListenFor>
<Feedback>ajoutant</Feedback>
<Navigate Target="/addNote.htm"/>
</Command>
<Command Name="showNote">
<Example>Voir les Notes sur Group Post</Example>
<ListenFor RequireAppName="BeforeOrAfterPhrase">montrer [mes] notes</ListenFor>
<Feedback>Afficher vos notes</Feedback>
<Navigate Target="/showNote.htm"/>
</Command>
<PhraseTopic Label="noteSubject" Scenario="Dictation"></PhraseTopic>
</CommandSet>
</VoiceCommands>