document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <VoiceCommands xmlns="http://schemas.microsoft.com/voicecommands/1.1">
  4.   <CommandSet xml:lang="en-us" Name="englishCommands">
  5.     <CommandPrefix>KiteBuddy</CommandPrefix>
  6.     <Example>show me some kite surfing spots</Example>
  7.  
  8.     <Command Name="KiteBuddyMainPage">
  9.       <Example>list the best kite surfing spots nearby</Example>
  10.  
  11.       <ListenFor>List</ListenFor>
  12.       <ListenFor>Show {spotPhrases}</ListenFor>
  13.       <ListenFor>Show {spotPhrases} [in] [a] list</ListenFor>
  14.  
  15.       <Feedback>Finding nearby kite surfing spots...</Feedback>
  16.  
  17.       <Navigate Target="MainPage.xaml" />
  18.     </Command>
  19.  
  20.     <Command Name="KiteBuddyMapPage">
  21.       <Example>show me nearby kite surfing spots on a map</Example>
  22.       <ListenFor>Map</ListenFor>
  23.       <ListenFor>Show {spotPhrases} [on] [a] map</ListenFor>
  24.       <Feedback>Mapping nearby kite surfing spots...</Feedback>
  25.       <Navigate Target="MapPage.xaml" />
  26.     </Command>
  27.  
  28.     <Command Name="KiteBuddySearchPage">
  29.       <Example>find \'Tarifa\'</Example>
  30.  
  31.       <ListenFor>Find {*}</ListenFor>
  32.       <ListenFor>Search [for] {*}</ListenFor>
  33.  
  34.       <Feedback>Search for kite surfing spot...</Feedback>
  35.  
  36.       <Navigate Target="SearchPage.xaml" />
  37.     </Command>
  38.  
  39.     <PhraseTopic Label="spotPhrases" Scenario="Kite Spots">
  40.       <Subject>kite spots</Subject>
  41.       <Subject>surf spots</Subject>
  42.       <Subject>kite surfing spots</Subject>
  43.     </PhraseTopic>
  44.  
  45.   </CommandSet>
  46. </VoiceCommands>
');