summaryrefslogtreecommitdiff
path: root/sound-theme/sound-naming-spec.xml
blob: d94e593d1b4c95bb6369aef40e0ecd42fe6d2474 (plain)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
<?xml version="1.0"?>
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
]>
<article id="index">
  <articleinfo>
    <title>Sound Naming Specification</title>
    <releaseinfo>Post-0.3 Snapshot</releaseinfo>
    <date>Post 2008</date>
    <authorgroup>
      <author>
	<firstname>Marc-Andre</firstname>
	<surname>Lureau</surname>
	<authorblurb><para>Sound Naming Specification</para></authorblurb>
	<affiliation>
	  <address>
	    <email>marcandre.lureau@gmail.com</email>
	  </address>
	</affiliation>
      </author>
      <author>
	<firstname>Lennart</firstname>
	<surname>Poettering</surname>
	<authorblurb><para>PulseAudio Project</para></authorblurb>
	<affiliation>
	  <address>
	    <email>lennart@poettering.net</email>
	  </address>
	</affiliation>
      </author>
      <author>
	<firstname>Rodney</firstname>
	<surname>Dawes</surname>
	<authorblurb><para>Icon Naming Specification</para></authorblurb>
	<affiliation>
	  <address>
	    <email>dobey.pwns@gmail.com</email>
	  </address>
	</affiliation>
      </author>
      <author>
	<firstname>Jon</firstname>
	<surname>Bold</surname>
	<authorblurb><para>Bango! Project</para></authorblurb>
	<affiliation>
	  <address>
	    <email>jon.wordescapes@co.uk</email>
	  </address>
	</affiliation>
      </author>
    </authorgroup>
  </articleinfo>

  <sect1 id="overview">
    <title>Overview</title>
    <para>
This specification gives direction on how to name the sounds that are
available for use by applications, when creating a sound theme. It
does so by laying out a standard naming scheme for sound creation, as
well as providing a minimal list of must have sounds, and a larger
list with many more examples to help with the creation of extended
sounds for third party applications, with different event types and
usage.
    </para>
  </sect1>

  <sect1 id="context">
    <title>Context</title>

    <para>
      The list of default contexts for the sound theme are:
    </para>

    <table>
      <title>Standard Contexts</title>

      <tgroup cols="3">
	<thead>
	  <row>
	    <entry>Name</entry>
	    <entry>Description</entry>
	    <entry>Directory</entry>
	  </row>
	</thead>
	<tbody>
	  <row>
	    <entry>Alerts</entry>
	    <entry>
	      Sounds to alert the user of an action or event which may
	      have a major impact on the system or their current use,
	      such as <action>dialog-error</action>.
	    </entry>
	    <entry>alert</entry>
	  </row>
	  <row>
	    <entry>Notifications</entry>
	    <entry>
	      Sounds to notify the user that the system, or their
	      current use case has changed state in some way, e.g. new
	      email arriving, new non-critical update available...
	    </entry>
	    <entry>notification</entry>
	  </row>
	  <row>
	    <entry>Actions</entry>
	    <entry>
	      Sounds that give the user feedback on their
	      actions.
	    </entry>
	    <entry>action</entry>
	  </row>
	  <row>
	    <entry>Input Feedback</entry>
	    <entry>
	      Sounds that give direct response to input events from the user, such as mouse clicks or key presses.
	    </entry>
	    <entry>action</entry>
	  </row>
	  <row>
	    <entry>Game</entry>
	    <entry>
	      Sound used in games.
	    </entry>
	    <entry>game</entry>
	  </row>
	</tbody>
      </tgroup>
    </table>
  </sect1>

  <sect1 id="guidelines">
    <title>Sound Naming Guidelines</title>

    <para>
      Here we define some guidelines for when creating new sounds that
      extend the standardized list of sound names defined here, in
      order to provide sounds for more specific events and usages.
      <itemizedlist>
	<listitem>
	  <para>
	    Sound names are in the en_US.US_ASCII locale. This means
	    that the characters allowed in the sound names must
	    fall within the US-ASCII character set. As a further
	    restriction, all sound names may only contain lowercase
	    letters, numbers, underscore, dash, or period
	    characters. Spaces, colons, slashes, and backslashes are
	    not allowed. Also, sound names must be spelled as they are
	    in the en_US dictionary.
	  </para>
	</listitem>
	<listitem>
	  <para>
	    The dash <quote>-</quote> character is used to separate
	    levels of specificity in sound names.  For instance, we
	    use <quote>search-results</quote> as the generic item for
	    all search results, and we use
	    <quote>search-results-empty</quote> for an empty search
	    result. However, if the more specific item does not exist
	    in the current theme, and does exist in a parent theme,
	    the generic sound from the current theme is preferred, in
	    order to keep consistent style. From left to right the
	    words in a sound name become more specific. In some cases
	    what word in a name is more specific is
	    ambiguous. (i.e. "dialog-error" and "error-dialog" both
	    make sense, the former would ease defining the same sound
	    for all dialogs popping up, regardless of its context, the
	    latter would ease defining the same sound for all errors,
	    regardless of how it is presented to the user). In such
	    cases it is generally preferred to put the UI element noun
	    left -- if there is one --, however exceptions of this
	    rule are acceptable.
	  </para>
	</listitem>
        <listitem>
          <para>
	    Sounds for branded applications should be named the same
	    as the binary executable for the application, prefixed by
	    the string <quote>x-</quote>, to avoid name space clashes with future
	    standardized names. Example: <quote>x-openoffice-foobar</quote>.
	  </para>
	</listitem>
        <listitem>
          <para>
            Please send suggestions for new standardized names to the XDG mailing list: <email>xdg@lists.freedesktop.org</email>
          </para>
        </listitem>
      </itemizedlist>
    </para>
  </sect1>

  <sect1 id="names">
    <title>Standard Sounds Names</title>

    <para>
      This section describes the standard sounds names that should be
      used by artists when creating themes, and by developers when
      writing applications which will use the Sound Theme
      Specification.
    </para>

    <sect2 id="alerts">
      <title>Alerts</title>
      <para>
	This is to notify the user of an action or event which may
	have a major impact on the system or their current use case.
      </para>

      <table id="alerts-table">
	<title>Standard Alert Sounds</title>
	<tgroup cols="2">
	  <thead>
	    <row>
	      <entry>Name</entry>
	      <entry>Description</entry>
	    </row>
	  </thead>
	  <tbody>
	    <row>
	      <entry>network-connectivity-lost</entry>
	      <entry>
		The sound used when network connectivity is lost.
	      </entry>
	    </row>
	    <row>
	      <entry>network-connectivity-error</entry>
	      <entry>
		The sound used when an error occurs when it is tried
		to initialize the network connection of the computing
		device.
	      </entry>
	    </row>
	    <row>
	      <entry>dialog-error</entry>
	      <entry>
		The sound used when a dialog is opened to explain an
		error condition to the user.
	      </entry>
	    </row>
	    <row>
	      <entry>battery-low</entry>
	      <entry>
		The sound used when the battery is low (below 20%, for
		example).
	      </entry>
	    </row>
	    <row>
	      <entry>suspend-error</entry>
	      <entry>
		The machine failed to suspend.
	      </entry>
	    </row>
	    <row>
	      <entry>software-update-urgent</entry>
	      <entry>
		The sound used when an urgent update is available
		through the system software update program.
	      </entry>
	    </row>
	    <row>
	      <entry>power-unplug-battery-low</entry>
	      <entry>
		The power cable has been unplugged and the battery level is low.
	      </entry>
	    </row>
	  </tbody>
	</tgroup>
      </table>
    </sect2>

    <sect2 id="notification">
      <title>Notifications</title>
      <para>
	This is to alert the user that the system, or their current
	use case has changed state in some way - mew email arriving,
	new non-critical update to an application available.
      </para>

      <table id="notifications-table">
	<title>Standard Notifications Sounds</title>
	<tgroup cols="2">
	  <thead>
	    <row>
	      <entry>Name</entry>
	      <entry>Description</entry>
	    </row>
	  </thead>
	  <tbody>
	    <row>
	      <entry>message-new-instant</entry>
	      <entry>
		The sound used when a new IM is recieved.
	      </entry>
	    </row>
	    <row>
	      <entry>message-new-email</entry>
	      <entry>
		The sound used when a new email is recieved.
	      </entry>
	    </row>
	    <row>
	      <entry>complete-media-burn</entry>
	      <entry>
		The sound used when an optical medium completed burning.
	      </entry>
	    </row>
	    <row>
	      <entry>complete-media-burn-test</entry>
	      <entry>
		The sound used when an optical medium completed a dummy burn run.
	      </entry>
	    </row>
	    <row>
	      <entry>complete-media-rip</entry>
	      <entry>
		The sound used when an (optical) medium completed ripping.
	      </entry>
	    </row>
	    <row>
	      <entry>complete-media-format</entry>
	      <entry>
		The sound used when a disk/medium completed formatting/blanking.
	      </entry>
	    </row>
	    <row>
	      <entry>complete-download</entry>
	      <entry>
		The sound used when a file completed downloading.
	      </entry>
	    </row>
	    <row>
	      <entry>complete-copy</entry>
	      <entry>
		The sound used when a file completed copying.
	      </entry>
	    </row>
	    <row>
	      <entry>complete-scan</entry>
	      <entry>
		The sound used when a scanner completed image acquisition and software completed image processing.
	      </entry>
	    </row>
	    <row>
	      <entry>phone-incoming-call</entry>
	      <entry>
		The sound used when an phone/voip call is coming in. Usually some kind of ring sound.
	      </entry>
	    </row>
	    <row>
	      <entry>phone-outgoing-busy</entry>
	      <entry>
		The sound used when a phone/voip call is dialed out and the responder is not available.
	      </entry>
	    </row>
	    <row>
	      <entry>phone-hangup</entry>
	      <entry>
		The sound used when a phone/voip call is ended due to hangup.
	      </entry>
	    </row>
	    <row>
	      <entry>phone-failure</entry>
	      <entry>
		The sound used when a phone/voip call is canceled due to some error.
	      </entry>
	    </row>
	    <row>
	      <entry>network-connectivity-established</entry>
	      <entry>
		The sound used when network connectivity is established.
	      </entry>
	    </row>
	    <row>
	      <entry>system-bootup</entry>
	      <entry>
		The sound used when the computer is being booted up, played as as early in bootup as possible.
	      </entry>
	    </row>
	    <row>
	      <entry>system-ready</entry>
	      <entry>
		The sound used when the computer is booted up and shows the login screen.
	      </entry>
	    </row>
	    <row>
	      <entry>system-shutdown</entry>
	      <entry>
		The sound used when the computer is being shut down.
	      </entry>
	    </row>
	    <row>
	      <entry>search-results</entry>
	      <entry>
		The sound used when one or more search results are
		returned.
	      </entry>
	    </row>
	    <row>
	      <entry>search-results-empty</entry>
	      <entry>
		The sound used when no search results are returned.
	      </entry>
	    </row>
	    <row>
	      <entry>desktop-login</entry>
	      <entry>
		The sound used when a user logs into the system, played as a welcome sound immediately after the login screen disappeared.
	      </entry>
	    </row>
	    <row>
	      <entry>desktop-logout</entry>
	      <entry>
		The sound used when a user logs out of the system.
	      </entry>
	    </row>
	    <row>
	      <entry>desktop-screen-lock</entry>
	      <entry>
		The sound used when the user locks their current
		session.
	      </entry>
	    </row>
	    <row>
	      <entry>service-login</entry>
	      <entry>
		The sound used when a user logs into a service
		(i.e. Gaim login)
	      </entry>
	    </row>
	    <row>
	      <entry>service-logout</entry>
	      <entry>
		The sound used when a user logs out of a service
		(i.e. Gaim logout)
	      </entry>
	    </row>
	    <row>
	      <entry>battery-caution</entry>
	      <entry>
		The sound used when the battery is nearing exhaustion (below 40%, for
		example)
	      </entry>
	    </row>
	    <row>
	      <entry>battery-full</entry>
	      <entry>
		The sound used when the battery is fully loaded up.
	      </entry>
	    </row>
	    <row>
	      <entry>dialog-warning</entry>
	      <entry>
		The sound used when a dialog is opened to give
		information to the user that may be pertinent to the
		requested action.
	      </entry>
	    </row>
	    <row>
	      <entry>dialog-information</entry>
	      <entry>
		The sound used when a dialog is opened to give
		information to the user that may be pertinent to the
		requested action.
	      </entry>
	    </row>
	    <row>
	      <entry>dialog-question</entry>
	      <entry>
		The sound used when a dialog is opened to ask the user a question.
	      </entry>
	    </row>
	    <row>
	      <entry>software-update-available</entry>
	      <entry>
		The sound used when an update is available for
		software installed on the computing device, through
		the system software update program.
	      </entry>
	    </row>
	    <row>
	      <entry>device-added</entry>
	      <entry>
		The sound used when a device has become available to the desktop, i.e. due to USB plugging.
	      </entry>
	    </row>
	    <row>
	      <entry>device-added-audio</entry>
	      <entry>
		The sound used when an audio device has become available to the desktop, i.e. due to USB plugging.
	      </entry>
	    </row>
	    <row>
	      <entry>device-added-media</entry>
	      <entry>
		The sound used when a disk/medium has become available to the desktop, i.e. due to USB plugging.
	      </entry>
	    </row>
	    <row>
	      <entry>device-removed</entry>
	      <entry>
		The sound used when a device has become unavailable to the desktop, i.e. due to USB unplug.
	      </entry>
	    </row>
	    <row>
	      <entry>device-removed-media</entry>
	      <entry>
		The sound used when a disk/medium has become unavailable to the desktop, i.e. due to USB unplug.
	      </entry>
	    </row>
	    <row>
	      <entry>device-removed-audio</entry>
	      <entry>
		The sound used when an audio device has become unavailable to the desktop, i.e. due to USB unplug.
	      </entry>
	    </row>
	    <row>
	      <entry>window-new</entry>
	      <entry>
		The sound used when a new window or dialog is opened.
	      </entry>
	    </row>
	    <row>
	      <entry>power-plug</entry>
	      <entry>
		The power cable has been plugged in.
	      </entry>
	    </row>
	    <row>
	      <entry>power-unplug</entry>
	      <entry>
		The power cable has been unplugged.
	      </entry>
	    </row>
	    <row>
	      <entry>suspend-start</entry>
	      <entry>
		The machine is about to suspend.
	      </entry>
	    </row>
	    <row>
	      <entry>suspend-resume</entry>
	      <entry>
		The machine has returned from suspended state.
	      </entry>
	    </row>
	    <row>
	      <entry>lid-open</entry>
	      <entry>
		The lid has been opened (for laptops, mobile devices)
	      </entry>
	    </row>
	    <row>
	      <entry>lid-close</entry>
	      <entry>
		The lid has been closed (for laptops, mobile devices)
	      </entry>
	    </row>
	    <row>
	      <entry>alarm-clock-elapsed</entry>
	      <entry>
		A user configured alarm elapsed.
	      </entry>
	    </row>
	    <row>
	      <entry>window-attention-active</entry>
	      <entry>
		An active/visible window demands attention.
	      </entry>
	    </row>
	    <row>
	      <entry>window-attention-inactive</entry>
	      <entry>
		An inactive/invisible window demands attention.
	      </entry>
	    </row>
	  </tbody>
	</tgroup>
      </table>
    </sect2>

    <sect2 id="actions">
      <title>Actions</title>
      <para>
	Action sounds are used as feedback for user operations.
      </para>

      <table id="actions-table">
	<title>Standard Action Sounds</title>
	<tgroup cols="2">
	  <thead>
	    <row>
	      <entry>Name</entry>
	      <entry>Description</entry>
	    </row>
	  </thead>
	  <tbody>
	    <row>
	      <entry>phone-outgoing-calling</entry>
	      <entry>
		The sound used when a phone/voip call is dialed out.
	      </entry>
	    </row>
	    <row>
	      <entry>message-sent-instant</entry>
	      <entry>
		The sound used when a new IM is sent.
	      </entry>
	    </row>
	    <row>
	      <entry>message-sent-email</entry>
	      <entry>
		The sound used when a new email is sent.
	      </entry>
	    </row>
	    <row>
	      <entry>bell-terminal</entry>
	      <entry>
		The sound to use as a terminal bell.
	      </entry>
	    </row>
	    <row>
	      <entry>bell-window-system</entry>
	      <entry>
		The sound to use as a generic bell for X11 or other window systems.
	      </entry>
	    </row>
	    <row>
	      <entry>trash-empty</entry>
	      <entry>
		The sound used when the user empties the trash.
	      </entry>
	    </row>
	    <row>
	      <entry>item-deleted</entry>
	      <entry>
		The sound used when a item is deleted.
	      </entry>
	    </row>
	    <row>
	      <entry>file-trash</entry>
	      <entry>
		The sound used when a file or folder is sent to the
		trash.
	      </entry>
	    </row>
	    <row>
	      <entry>camera-shutter</entry>
	      <entry>
		A photo has been shot.
	      </entry>
	    </row>
	    <row>
	      <entry>camera-focus</entry>
	      <entry>
		A camera has the focus.
	      </entry>
	    </row>
	    <row>
	      <entry>screen-capture</entry>
	      <entry>
		A screenshot was made.
	      </entry>
	    </row>
	    <row>
	      <entry>count-down</entry>
	      <entry>
		A countdown (e.g. for a photo shooting) sound that is repeated each second.
	      </entry>
	    </row>
            <row>
              <entry>completion-sucess</entry>
	      <entry>
                A text completion was attempted and was successful.
	      </entry>
	    </row>
            <row>
              <entry>completion-fail</entry>
	      <entry>
                A text completion was attempted and was not successful.
	      </entry>
	    </row>
            <row>
              <entry>completion-partial</entry>
	      <entry>
                A text completion was attempted and was partially successful.
	      </entry>
	    </row>
            <row>
              <entry>completion-rotation</entry>
	      <entry>
                A text completion was attempted and the list of available options reached the end and completion started from the beginning.
	      </entry>
	    </row>
	    <row>
	      <entry>audio-volume-change</entry>
	      <entry>
		The test sound that is used to make volume changes noticeable by the user when he uses a volume slider.
	      </entry>
	    </row>
	    <row>
	      <entry>audio-channel-left</entry>
	      <entry>
		The test sound for identifying the left speaker. A mono file with a voice saying "left".
	      </entry>
	    </row>
	    <row>
	      <entry>audio-channel-right</entry>
	      <entry>
		The test sound for identifying the right speaker. A mono file with a voice saying "right".
	      </entry>
	    </row>
	    <row>
	      <entry>audio-channel-front-left</entry>
	      <entry>
		The test sound for identifying the front-left speaker. A mono file with a voice saying "front left".
	      </entry>
	    </row>
	    <row>
	      <entry>audio-channel-front-right</entry>
	      <entry>
		The test sound for identifying the front-right speaker. A mono file with a voice saying "front right".
	      </entry>
	    </row>
	    <row>
	      <entry>audio-channel-front-center</entry>
	      <entry>
		The test sound for identifying the front-center speaker. A mono file with a voice saying "front center".
	      </entry>
	    </row>
	    <row>
	      <entry>audio-channel-rear-left</entry>
	      <entry>
		The test sound for identifying the front-left speaker. A mono file with a voice saying "rear left".
	      </entry>
	    </row>
	    <row>
	      <entry>audio-channel-rear-right</entry>
	      <entry>
		The test sound for identifying the front-right speaker. A mono file with a voice saying "rear right".
	      </entry>
	    </row>
	    <row>
	      <entry>audio-channel-rear-center</entry>
	      <entry>
		The test sound for identifying the front-center speaker. A mono file with a voice saying "rear center".
	      </entry>
	    </row>
	    <row>
	      <entry>audio-channel-lfe</entry>
	      <entry>
		The test sound for identifying the lfe/subwoofer speaker. A mono file with a voice saying "subwoofer", alternatively a low frequency noise.
	      </entry>
	    </row>
	    <row>
	      <entry>audio-channel-side-left</entry>
	      <entry>
		The test sound for identifying the side-left speaker. A mono file with a voice saying "side left".
	      </entry>
	    </row>
	    <row>
	      <entry>audio-channel-side-right</entry>
	      <entry>
		The test sound for identifying the side-right speaker. A mono file with a voice saying "side right".
	      </entry>
	    </row>
	    <row>
	      <entry>audio-test-signal</entry>
	      <entry>
		The test sound for testing audio.
	      </entry>
	    </row>
	    <row>
	      <entry>theme-demo</entry>
	      <entry>
                A sound that should be played for demoing this
                theme. Usually this should just be an alias for a very
                representative sound (such as desktop-login) of a theme that would work nicely
                as a demo sound for a theme in the theme selector
                dialog.
	      </entry>
	    </row>
	  </tbody>
	</tgroup>
      </table>
    </sect2>

    <sect2 id="inputfeedback">
      <title>Input Feedback</title>
      <para>
	Actions sounds are used as feedback for user input events,
	such as mouse clicks, or key presses. In contrast to the
	sounds listed as "Actions" these sounds contain much less
	context information are are solely used to give the user
	audible feedback to input events the user himself directly
	caused.
      </para>

      <table id="inputfeedback-table">
	<title>Standard Input Feedback Sounds</title>
	<tgroup cols="2">
	  <thead>
	    <row>
	      <entry>Name</entry>
	      <entry>Description</entry>
	    </row>
	  </thead>
	  <tbody>
	    <row>
	      <entry>window-close</entry>
	      <entry>
		The sound used when an existing window is closed.
	      </entry>
	    </row>
	    <row>
	      <entry>window-slide-in</entry>
	      <entry>
		The sound used when a window is slided in by some means. Example: panel.
	      </entry>
	    </row>
	    <row>
	      <entry>window-slide-out</entry>
	      <entry>
		The sound used when a window is slided out by some means. Example: panel.
	      </entry>
	    </row>
	    <row>
	      <entry>window-minimized</entry>
	      <entry>
		The sound used when an existing window is minimized.
	      </entry>
	    </row>
	    <row>
	      <entry>window-unminimized</entry>
	      <entry>
		The sound used when an existing window is unminimized.
	      </entry>
	    </row>
	    <row>
	      <entry>window-maximized</entry>
	      <entry>
		The sound used when an existing window is maximized.
	      </entry>
	    </row>
	    <row>
	      <entry>window-unmaximized</entry>
	      <entry>
		The sound used when an existing window is unmaximized.
	      </entry>
	    </row>
	    <row>
	      <entry>window-inactive-click</entry>
	      <entry>
		The sound used when the user clicks on an inactive window.
	      </entry>
	    </row>
	    <row>
	      <entry>window-move-start</entry>
	      <entry>
		A window move started.
	      </entry>
	    </row>
	    <row>
	      <entry>window-move-end</entry>
	      <entry>
		A window move ended.
	      </entry>
	    </row>
	    <row>
	      <entry>window-resize-start</entry>
	      <entry>
		A window resize started.
	      </entry>
	    </row>
	    <row>
	      <entry>window-resize-end</entry>
	      <entry>
		A window resize ended.
	      </entry>
	    </row>
	    <row>
	      <entry>desktop-switch-left</entry>
	      <entry>
		The sound used when the window manager switches to another desktop which is located to the left of the current screen.
	      </entry>
	    </row>
	    <row>
	      <entry>desktop-switch-right</entry>
	      <entry>
		The sound used when the window manager switches to another desktop which is located to the right of the current screen.
	      </entry>
	    </row>
	    <row>
	      <entry>window-switch</entry>
	      <entry>
		The sound used when the window manager switches to another window.
	      </entry>
	    </row>
	    <row>
	      <entry>notebook-tab-changed</entry>
	      <entry>
		The sound used when a notebook tab is changed.
	      </entry>
	    </row>
            <row>
              <entry>scroll-up</entry>
	      <entry>
                Some window was scrolled up.
	      </entry>
	    </row>
            <row>
              <entry>scroll-down</entry>
	      <entry>
                Some window was scrolled down.
	      </entry>
	    </row>
            <row>
              <entry>scroll-left</entry>
	      <entry>
                Some window was scrolled left.
	      </entry>
	    </row>
            <row>
              <entry>scroll-right</entry>
	      <entry>
                Some window was scrolled right.
	      </entry>
	    </row>
            <row>
              <entry>scroll-up-end</entry>
	      <entry>
                Some window was scrolled up and reached the end of the scrollbar.
	      </entry>
	    </row>
            <row>
              <entry>scroll-down-end</entry>
	      <entry>
                Some window was scrolled down and reached the end of the scrollbar.
	      </entry>
	    </row>
            <row>
              <entry>scroll-left-end</entry>
	      <entry>
                Some window was scrolled left and reached the end of the scrollbar.
	      </entry>
	    </row>
            <row>
              <entry>scroll-right-end</entry>
	      <entry>
                Some window was scrolled right and reached the end of the scrollbar.
	      </entry>
	    </row>
	    <row>
	      <entry>dialog-ok</entry>
	      <entry>
		The sound used when a windows is closed by clicking on the OK button for a window.
	      </entry>
	    </row>
	    <row>
	      <entry>dialog-cancel</entry>
	      <entry>
		The sound used when a windows is closed by clicking on the Cancel button for a window.
	      </entry>
	    </row>
	    <row>
	      <entry>drag-start</entry>
	      <entry>
		The sound used when drag of a file/item is started.
	      </entry>
	    </row>
	    <row>
	      <entry>drag-accept</entry>
	      <entry>
		The sound used when a file/item drag is accepted by a window,
		such as a folder or IM conversation.
	      </entry>
	    </row>
	    <row>
	      <entry>drag-fail</entry>
	      <entry>
		The sound used when a file/item drag is not accepted by a window,
		such as a folder or IM conversation.
	      </entry>
	    </row>
	    <row>
	      <entry>link-pressed</entry>
	      <entry>
		The sound used when a link in a web or help browser is pressed.
	      </entry>
	    </row>
	    <row>
	      <entry>link-released</entry>
	      <entry>
		The sound used when a link in a web or help browser is releaed.
	      </entry>
	    </row>
	    <row>
	      <entry>button-pressed</entry>
	      <entry>
		The sound used when a button is pressed.
	      </entry>
	    </row>
	    <row>
	      <entry>button-released</entry>
	      <entry>
		The sound used when a button is released.
	      </entry>
	    </row>
	    <row>
	      <entry>menu-click</entry>
	      <entry>
		The sound used when a menu item is clicked.
	      </entry>
	    </row>
	    <row>
	      <entry>button-toggle-on</entry>
	      <entry>
		The sound used when a toggle/check/radio button is activated.
	      </entry>
	    </row>
	    <row>
	      <entry>button-toggle-off</entry>
	      <entry>
		The sound used when a toggle/check/radio button is deactivated.
	      </entry>
	    </row>
	    <row>
	      <entry>expander-toggle-on</entry>
	      <entry>
		The sound used when an expander is activated.
	      </entry>
	    </row>
	    <row>
	      <entry>expander-toggle-off</entry>
	      <entry>
		The sound used when an expander is deactivated.
	      </entry>
	    </row>
	    <row>
	      <entry>menu-popup</entry>
	      <entry>
		The sound used when a menu is popped up.
	      </entry>
	    </row>
	    <row>
	      <entry>menu-popdown</entry>
	      <entry>
		The sound used when a menu is popped down.
	      </entry>
	    </row>
	    <row>
	      <entry>menu-replace</entry>
	      <entry>
		The sound used when replacing an active menu with another menu.
	      </entry>
	    </row>
	    <row>
	      <entry>tooltip-popup</entry>
	      <entry>
		The sound used when a tooltip is popped up.
	      </entry>
	    </row>
	    <row>
	      <entry>tooltip-popdown</entry>
	      <entry>
		The sound used when a tooltip is popped down.
	      </entry>
	    </row>
	    <row>
	      <entry>item-selected</entry>
	      <entry>
		The sound used when an item is selected.
	      </entry>
	    </row>
	  </tbody>
	</tgroup>
      </table>
    </sect2>


    <sect2 id="games">
      <title>Game</title>
      <para>
      Sounds for usage in games.
      </para>

      <table id="games-table">
	<title>Standard Games Sounds</title>
	<tgroup cols="2">
	  <thead>
	    <row>
	      <entry>Name</entry>
	      <entry>Description</entry>
	    </row>
	  </thead>
	  <tbody>
	    <row>
	      <entry>game-over-winner</entry>
	      <entry>
		Guess what...!
	      </entry>
	    </row>
	    <row>
	      <entry>game-over-loser</entry>
	      <entry>
		Guess what...!
	      </entry>
	    </row>
	    <row>
	      <entry>game-card-shuffle</entry>
	      <entry>
		In card games, when the cards are shuffled.
	      </entry>
	    </row>
	    <row>
	      <entry>game-human-move</entry>
	      <entry>
		When the user makes a move.
	      </entry>
	    </row>
	    <row>
	      <entry>game-computer-move</entry>
	      <entry>
		When the a computer makes a move.
	      </entry>
	    </row>
	  </tbody>
	</tgroup>
      </table>
    </sect2>

  </sect1>

  <sect1 id="background">
    <title>Background</title>
    <para>
    The sound naming specification is heavily based on the "Icon
    Naming Specification" by Rodney Dawes and the "Bango Project"
    started by Jon Bolt.
    </para>
  </sect1>

  <appendix id="changelog">
    <title>Change History</title>
    <formalpara>
      <title>Version 0.3, 25 July 2008, Lennart Poettering</title>
      <para>
        <itemizedlist>
          <listitem>
	    <para>
              Split out section about "Input Feedback" sounds.
	    </para>
	  </listitem>
          <listitem>
	    <para>
              Document the logic behind choosing "dialog-error" instead of "error-dialog".
	    </para>
	  </listitem>
	</itemizedlist>
      </para>
    </formalpara>
    <formalpara>
      <title>Version 0.2, 4 June 2008, Marc-Andre Lureau and Lennart Poettering</title>
      <para>
        <itemizedlist>
          <listitem>
	    <para>
              Naming changes.
	    </para>
	  </listitem>
	</itemizedlist>
      </para>
    </formalpara>
    <formalpara>
      <title>Version 0.1, February 12 2008, Marc-Andre Lureau</title>
      <para>
        <itemizedlist>
          <listitem>
	    <para>
              Created initial draft.
	    </para>
	  </listitem>
	</itemizedlist>
      </para>
    </formalpara>
  </appendix>
</article>
<!-- TODO: inverting naming--><!-- TODO: jack sensing -->