[FileItem] Fix mimetype content lookup
[xbmc.git] / addons / resource.uisounds.kodi / resources / sounds.xml
blob89cb87bed8ed05a9642c74f7fb1362663fab1a3f
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- This file contains the mapping of actions to sounds                    -->
4 <!-- The <actions> section contains global mapping                          -->
6 <!-- To map a action to a sound, add a block like this to <actions>:        -->
7 <!--    <action>                                                            -->
8 <!--      <name>left</name>                                                 -->
9 <!--      <file>cursor.wav</file>                                           -->
10 <!--    </action>                                                           -->
11 <!-- Where <name> specifies the action to map a sound to and <file> the wav -->
12 <!-- file to play when the action occurs.                                   -->
14 <!-- Valid entries for <name> can be found at                               -->
15 <!-- http://kodi.wiki/view/Keymap                                           -->
18 <!-- Also window specific sound can be played                               -->
20 <!-- To map a sound to a window, add a block like this to <windows>:        -->
21 <!--    <window>                                                            -->
22 <!--      <name>notification</name>                                         -->
23 <!--      <activate>notify.wav</activate>                                   -->
24 <!--      <deactivate>out.wav</deactivate>                                  -->
25 <!--    </window>                                                           -->
26 <!-- Where <name> specifies the window to map a sound to                    -->
27 <!-- <activate> and <deactivate> are the events a sound can be mapped to    -->
28 <!-- by setting the file to play.                                           -->
30 <!-- Valid entries for <name> can be found at                               -->
31 <!-- http://kodi.wiki/view/Window_IDs                                       -->
33 <!-- Note: Only wav files are supported                                     -->
35 <sounds>
36   <actions>
37     <action>
38       <name>left</name>
39       <file>cursor.wav</file>
40     </action>
41     <action>
42       <name>right</name>
43       <file>cursor.wav</file>
44     </action>
45     <action>
46       <name>up</name>
47       <file>cursor.wav</file>
48     </action>
49     <action>
50       <name>down</name>
51       <file>cursor.wav</file>
52     </action>
53     <action>
54       <name>select</name>
55       <file>click.wav</file>
56     </action>
57     <action>
58       <name>parentdir</name>
59       <file>back.wav</file>
60     </action>
61     <action>
62       <name>previousmenu</name>
63       <file>back.wav</file>
64     </action>
65     <action>
66       <name>screenshot</name>
67       <file>shutter.wav</file>
68     </action>
69     <action>
70       <name>error</name>
71       <file>notify.wav</file>
72     </action>
73   </actions>
75   <windows>
76     <window>
77       <name>notification</name>
78       <activate>notify.wav</activate>
79       <deactivate>out.wav</deactivate>
80     </window>
81     <window>
82       <name>startup</name>
83       <activate></activate>
84     </window>
85   </windows>
86 </sounds>