]> git.sesse.net Git - vlc/blob - src/libvlc.h
hadded keys to cycle audio track and subtitle track
[vlc] / src / libvlc.h
1 /*****************************************************************************
2  * libvlc.h: main libvlc header
3  *****************************************************************************
4  * Copyright (C) 1998-2002 VideoLAN
5  * $Id$
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Gildas Bazin <gbazin@netcourrier.com>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 #define Nothing here, this is just to prevent update-po from being stupid
27 #include "vlc_keys.h"
28
29 static char *ppsz_language[] =
30 { "auto", "en", "en_GB", "es", "de",
31   "fr", "hu", "it", "ja", "nl", "no",
32   "pl", "pt_BR", "ru", "sv" };
33 static char *ppsz_language_text[] =
34 { N_("Auto"), N_("American"), N_("British"), N_("Spanish"), N_("German"),
35   N_("French"), N_("Hungarian"), N_("Italian"), N_("Japanese"), N_("Dutch"),
36   N_("Norwegian"), N_("Polish"), N_("Brazilian"), N_("Russian"),
37   N_("Swedish") };
38
39 /*****************************************************************************
40  * Configuration options for the main program. Each module will also separatly
41  * define its own configuration options.
42  * Look into configuration.h if you need to know more about the following
43  * macros.
44  *****************************************************************************/
45
46 #define INTF_CAT_LONGTEXT N_( \
47     "These options allow you to configure the interfaces used by VLC.\n" \
48     "You can select the main interface, additional " \
49     "interface modules, and define various related options." )
50
51 #define INTF_TEXT N_("Interface module")
52 #define INTF_LONGTEXT N_( \
53     "This option allows you to select the interface used by VLC.\n" \
54     "The default behavior is to automatically select the best module " \
55     "available.")
56
57 #define EXTRAINTF_TEXT N_("Extra interface modules")
58 #define EXTRAINTF_LONGTEXT N_( \
59     "This option allows you to select additional interfaces used by VLC. " \
60     "They will be launched in the background in addition to the default " \
61     "interface. Use a comma separated list of interface modules. (common " \
62     "values are logger, gestures, sap, rc, http or screensaver)")
63
64 #define VERBOSE_TEXT N_("Verbosity (0,1,2)")
65 #define VERBOSE_LONGTEXT N_( \
66     "This options sets the verbosity level (0=only errors and " \
67     "standard messages, 1=warnings, 2=debug).")
68
69 #define QUIET_TEXT N_("Be quiet")
70 #define QUIET_LONGTEXT N_( \
71     "This options turns off all warning and information messages.")
72
73 #define LANGUAGE_TEXT N_("Language")
74 #define LANGUAGE_LONGTEXT N_( "This option allows you to set the language " \
75     "of the interface. The system language is auto-detected if \"auto\" is " \
76     "specified here." )
77
78 #define COLOR_TEXT N_("Color messages")
79 #define COLOR_LONGTEXT N_( \
80     "When this option is turned on, the messages sent to the console will " \
81     "be colorized. Your terminal needs Linux color support for this to work.")
82
83 #define ADVANCED_TEXT N_("Show advanced options")
84 #define ADVANCED_LONGTEXT N_( \
85     "When this option is turned on, the preferences and/or interfaces  will " \
86     "show all the available options, including those that most users should " \
87     "never touch.")
88
89 #define AOUT_CAT_LONGTEXT N_( \
90     "These options allow you to modify the behavior of the audio " \
91     "subsystem, and to add audio filters which can be used for " \
92     "post processing or visual effects (spectrum analyzer, ...).\n" \
93     "Enable these filters here, and configure them in the \"audio filters\" " \
94     "modules section.")
95
96 #define AOUT_TEXT N_("Audio output module")
97 #define AOUT_LONGTEXT N_( \
98     "This option allows you to select the audio output method used by VLC. " \
99     "The default behavior is to automatically select the best method " \
100     "available.")
101
102 #define AUDIO_TEXT N_("Enable audio")
103 #define AUDIO_LONGTEXT N_( \
104     "You can completely disable the audio output. In this case, the audio " \
105     "decoding stage will not take place, thus saving some processing power.")
106
107 #define MONO_TEXT N_("Force mono audio")
108 #define MONO_LONGTEXT N_("This will force a mono audio output.")
109
110 #define VOLUME_TEXT N_("Audio output volume")
111 #define VOLUME_LONGTEXT N_( \
112     "You can set the default audio output volume here, in a range from 0 to " \
113     "1024.")
114
115 #define VOLUME_SAVE_TEXT N_("Audio output saved volume")
116 #define VOLUME_SAVE_LONGTEXT N_( \
117     "This saves the audio output volume when you select mute.")
118
119 #define AOUT_RATE_TEXT N_("Audio output frequency (Hz)")
120 #define AOUT_RATE_LONGTEXT N_( \
121     "You can force the audio output frequency here. Common values are " \
122     "-1 (default), 48000, 44100, 32000, 22050, 16000, 11025, 8000.")
123
124 #if !defined( SYS_DARWIN )
125 #define AOUT_RESAMP_TEXT N_("High quality audio resampling")
126 #define AOUT_RESAMP_LONGTEXT N_( \
127     "This uses a high quality audio resampling algorithm. High quality "\
128     "audio resampling can be processor intensive so you can " \
129     "disable it and a cheaper resampling algorithm will be used instead.")
130 #endif
131
132 #define DESYNC_TEXT N_("Audio desynchronization compensation")
133 #define DESYNC_LONGTEXT N_( \
134     "This option allows you to delay the audio output. You must give a " \
135     "number of milliseconds. This can be handy if you notice a lag " \
136     "between the video and the audio.")
137
138 #define MULTICHA_TEXT N_("Preferred audio output channels mode")
139 #define MULTICHA_LONGTEXT N_( \
140     "This option allows you to set the audio output channels mode that will " \
141     "be used by default when possible (ie. if your hardware supports it as " \
142     "well as the audio stream being played).")
143
144 #define SPDIF_TEXT N_("Use the S/PDIF audio output when available")
145 #define SPDIF_LONGTEXT N_( \
146     "This option allows you to use the S/PDIF audio output by default when " \
147     "your hardware supports it as well as the audio stream being played.")
148
149 #define AUDIO_FILTER_TEXT N_("Audio filters")
150 #define AUDIO_FILTER_LONGTEXT N_( \
151     "This allows you to add audio post processing filters, to modify " \
152     "the sound, or audio visualization modules (spectrum analyzer, ...).")
153
154 #define AUDIO_CHANNEL_MIXER N_("Channel mixer")
155 #define AUDIO_CHANNEL_MIXER_LONGTEXT N_( \
156      "This allows you to choose a specific audio channel mixer. For " \
157      "instance, you can use the \"headphone\" mixer that gives 5.1 feeling " \
158      "with a headphone.")
159
160 #define VOUT_CAT_LONGTEXT N_( \
161     "These options allow you to modify the behavior of the video output " \
162     "subsystem. You can for example enable video filters (deinterlacing, " \
163     "image adjusting, ...). Enable these filters here and configure " \
164     "them in the \"video filters\" modules section. You can also set many " \
165     "miscellaneous video options." )
166
167 #define VOUT_TEXT N_("Video output module")
168 #define VOUT_LONGTEXT N_( \
169     "This option allows you to select the video output method used by VLC. " \
170     "The default behavior is to automatically select the best " \
171     "method available.")
172
173 #define VIDEO_TEXT N_("Enable video")
174 #define VIDEO_LONGTEXT N_( \
175     "You can completely disable the video output. In this case, the video " \
176     "decoding stage will not take place, thus saving some processing power.")
177
178 #define WIDTH_TEXT N_("Video width")
179 #define WIDTH_LONGTEXT N_( \
180     "You can enforce the video width here. By default (-1) VLC will " \
181     "adapt to the video characteristics.")
182
183 #define HEIGHT_TEXT N_("Video height")
184 #define HEIGHT_LONGTEXT N_( \
185     "You can enforce the video height here. By default (-1) VLC will " \
186     "adapt to the video characteristics.")
187
188 #define VIDEOX_TEXT N_("Video x coordinate")
189 #define VIDEOX_LONGTEXT N_( \
190     "You can enforce the position of the top left corner of the video window "\
191     "here (x coordinate).")
192
193 #define VIDEOY_TEXT N_("Video y coordinate")
194 #define VIDEOY_LONGTEXT N_( \
195     "You can enforce the position of the top left corner of the video window "\
196     "here (y coordinate).")
197
198 #define VIDEO_TITLE_TEXT N_("Video title")
199 #define VIDEO_TITLE_LONGTEXT N_( \
200     "You can specify a custom video window title here.")
201
202 #define ALIGN_TEXT N_("Video alignment")
203 #define ALIGN_LONGTEXT N_( \
204     "You can enforce the video alignment in its window. By default (0) it " \
205     "will be centered (0=center, 1=left, 2=right, 4=top, 8=bottom, you can " \
206     "also use combinations of these values).")
207 static int pi_align_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 };
208 static char *ppsz_align_descriptions[] =
209 { N_("Center"), N_("Left"), N_("Right"), N_("Top"), N_("Bottom"),
210   N_("Top-Left"), N_("Top-Right"), N_("Bottom-Left"), N_("Bottom-Right") };
211
212 #define ZOOM_TEXT N_("Zoom video")
213 #define ZOOM_LONGTEXT N_( \
214     "You can zoom the video by the specified factor.")
215
216 #define GRAYSCALE_TEXT N_("Grayscale video output")
217 #define GRAYSCALE_LONGTEXT N_( \
218     "When enabled, the color information from the video won't be decoded " \
219     "(this can also allow you to save some processing power).")
220
221 #define FULLSCREEN_TEXT N_("Fullscreen video output")
222 #define FULLSCREEN_LONGTEXT N_( \
223     "If this option is enabled, VLC will always start a video in fullscreen " \
224     "mode.")
225
226 #define OVERLAY_TEXT N_("Overlay video output")
227 #define OVERLAY_LONGTEXT N_( \
228     "If enabled, VLC will try to take advantage of the overlay capabilities " \
229     "of your graphics card (hardware acceleration).")
230
231 #define VIDEO_ON_TOP_TEXT N_("Always on top")
232 #define VIDEO_ON_TOP_LONGTEXT N_("Always place the video window on top of " \
233     "other windows." )
234
235 #define SPUMARGIN_TEXT N_("Force SPU position")
236 #define SPUMARGIN_LONGTEXT N_( \
237     "You can use this option to place the subtitles under the movie, " \
238     "instead of over the movie. Try several positions.")
239
240 #define OSD_TEXT N_("On Screen Display")
241 #define OSD_LONGTEXT N_( \
242     "VLC can display messages on the video. This is called OSD (On Screen " \
243     "Display). You can disable this feature here.")
244
245 #define FILTER_TEXT N_("Video filter module")
246 #define FILTER_LONGTEXT N_( \
247     "This will allow you to add a post-processing filter to enhance the " \
248     "picture quality, for instance deinterlacing, or to clone or distort " \
249     "the video window.")
250
251 #define ASPECT_RATIO_TEXT N_("Source aspect ratio")
252 #define ASPECT_RATIO_LONGTEXT N_( \
253     "This will force the source aspect ratio. For instance, some DVDs claim " \
254     "to be 16:9 while they are actually 4:3. This can also be used as a " \
255     "hint for VLC when a movie does not have aspect ratio information. " \
256     "Accepted formats are x:y (4:3, 16:9, etc.) expressing the global image " \
257     "aspect, or a float value (1.25, 1.3333, etc.) expressing pixel " \
258     "squareness.")
259
260 #define INPUT_CAT_LONGTEXT N_( \
261     "These options allow you to modify the behavior of the input " \
262     "subsystem, such as the DVD or VCD device, the network interface " \
263     "settings or the subtitle channel.")
264
265 #define CR_AVERAGE_TEXT N_("Clock reference average counter")
266 #define CR_AVERAGE_LONGTEXT N_( \
267     "When using the PVR input (or a very irregular source), you should " \
268     "set this to 10000.")
269
270 #define SERVER_PORT_TEXT N_("Server port")
271 #define SERVER_PORT_LONGTEXT N_( \
272     "This is the port used for UDP streams. By default, we chose 1234.")
273
274 #define MTU_TEXT N_("MTU of the network interface")
275 #define MTU_LONGTEXT N_( \
276     "This is the typical size of UDP packets that we expect. On Ethernet " \
277     "it is usually 1500.")
278
279 #define IFACE_ADDR_TEXT N_("Network interface address")
280 #define IFACE_ADDR_LONGTEXT N_( \
281     "If you have several interfaces on your machine and use the " \
282     "multicast solution, you will probably have to indicate the IP address " \
283     "of your multicasting interface here.")
284
285 #define TTL_TEXT N_("Time to live")
286 #define TTL_LONGTEXT N_( \
287     "Indicate here the Time To Live of the multicast packets sent by " \
288     "the stream output.")
289
290 #define INPUT_PROGRAM_TEXT N_("Choose program (SID)")
291 #define INPUT_PROGRAM_LONGTEXT N_( \
292     "Choose the program to select by giving its Service ID.")
293
294 #define INPUT_AUDIO_TEXT N_("Choose audio")
295 #define INPUT_AUDIO_LONGTEXT N_( \
296     "Give the default type of audio you want to use in a DVD. " \
297     "(Developers only)")
298
299 #define INPUT_CHAN_TEXT N_("Choose audio channel")
300 #define INPUT_CHAN_LONGTEXT N_( \
301     "Give the stream number of the audio channel you want to use in a DVD " \
302     "(from 1 to n).")
303
304 #define INPUT_SUBT_TEXT N_("Choose subtitle track")
305 #define INPUT_SUBT_LONGTEXT N_( \
306     "Give the stream number of the subtitle channel you want to use " \
307     "(from 1 to n).")
308
309 #define INPUT_REPEAT_TEXT N_("Number of time the same input will be repeated")
310 #define INPUT_REPEAT_LONGTEXT N_("Number of time the same input will be repeated")
311
312 #define START_TIME_TEXT N_("Input start time (seconds)")
313 #define START_TIME_LONGTEXT N_("Input start time (seconds)")
314
315 #define STOP_TIME_TEXT N_("Input stop time (seconds)")
316 #define STOP_TIME_LONGTEXT N_("Input stop time (seconds)")
317
318 #define INPUT_SLAVE_TEXT N_("Input slave (experimental)")
319 #define INPUT_SLAVE_LONGTEXT N_("Input slave (experimental)")
320
321 #define BOOKMARKS_TEXT N_("Bookmarks list for a stream")
322 #define BOOKMARKS_LONGTEXT N_("You can specify a list of bookmarks for a stream in " \
323     "the form \"{name=bookmark-name,time=optional-time-offset," \
324     "bytes=optional-byte-offset},{etc...}\"")
325
326 #define SUB_AUTO_TEXT N_("Autodetect subtitle files")
327 #define SUB_AUTO_LONGTEXT \
328     N_("Automatically detect a subtitle file, if no subtitle filename is " \
329     "specified.")
330
331 #define SUB_FUZZY_TEXT N_("Subtitle autodetection fuzziness")
332 #define SUB_FUZZY_LONGTEXT \
333     N_("This determines how fuzzy subtitle and movie filename matching " \
334     "will be. Options are:\n" \
335     "0 = no subtitles autodetected\n" \
336     "1 = any subtitle file\n" \
337     "2 = any subtitle file containing the movie name\n" \
338     "3 = subtitle file matching the movie name with additional chars\n" \
339     "4 = subtitle file matching the movie name exactly")
340
341 #define SUB_PATH_TEXT N_("Subtitle autodetection paths")
342 #define SUB_PATH_LONGTEXT \
343     N_("Look for a subtitle file in those paths too, if your subtitle " \
344     "file was not found in the current directory.")
345
346 #define SUB_FILE_TEXT N_("Use subtitle file")
347 #define SUB_FILE_LONGTEXT \
348     N_("Load this subtitle file. To be used when autodetect cannot detect " \
349     "your subtitle file.")
350
351 #define DVD_DEV_TEXT N_("DVD device")
352 #ifdef WIN32
353 #define DVD_DEV_LONGTEXT N_( \
354     "This is the default DVD drive (or file) to use. Don't forget the colon " \
355     "after the drive letter (eg. D:)")
356 #else
357 #define DVD_DEV_LONGTEXT N_( \
358     "This is the default DVD device to use.")
359 #endif
360
361 #define VCD_DEV_TEXT N_("VCD device")
362 #ifdef HAVE_VCDX
363 #define VCD_DEV_LONGTEXT N_( \
364     "This is the default VCD device to use. " \
365     "If you don't specify anything, we'll scan for a suitable CD-ROM device." )
366 #else
367 #define VCD_DEV_LONGTEXT N_( \
368     "This is the default VCD device to use." )
369 #endif
370
371 #define CDAUDIO_DEV_TEXT N_("Audio CD device")
372 #ifdef HAVE_CDDAX
373 #define CDAUDIO_DEV_LONGTEXT N_( \
374     "This is the default Audio CD device to use. " \
375     "If you don't specify anything, we'll scan for a suitable CD-ROM device." )
376 #else
377 #define CDAUDIO_DEV_LONGTEXT N_( \
378     "This is the default Audio CD device to use." )
379 #endif
380
381 #define IPV6_TEXT N_("Force IPv6")
382 #define IPV6_LONGTEXT N_( \
383     "If you check this box, IPv6 will be used by default for all UDP and " \
384     "HTTP connections.")
385
386 #define IPV4_TEXT N_("Force IPv4")
387 #define IPV4_LONGTEXT N_( \
388     "If you check this box, IPv4 will be used by default for all UDP and " \
389     "HTTP connections.")
390
391 #define META_TITLE_TEXT N_("Title metadata")
392 #define META_TITLE_LONGTEXT N_( \
393      "Allows you to specify a \"title\" metadata for an input.")
394
395 #define META_AUTHOR_TEXT N_("Author metadata")
396 #define META_AUTHOR_LONGTEXT N_( \
397      "Allows you to specify an \"author\" metadata for an input.")
398
399 #define META_ARTIST_TEXT N_("Artist metadata")
400 #define META_ARTIST_LONGTEXT N_( \
401      "Allows you to specify an \"artist\" metadata for an input.")
402
403 #define META_GENRE_TEXT N_("Genre metadata")
404 #define META_GENRE_LONGTEXT N_( \
405      "Allows you to specify a \"genre\" metadata for an input.")
406
407 #define META_CPYR_TEXT N_("Copyright metadata")
408 #define META_CPYR_LONGTEXT N_( \
409      "Allows you to specify a \"copyright\" metadata for an input.")
410
411 #define META_DESCR_TEXT N_("Description metadata")
412 #define META_DESCR_LONGTEXT N_( \
413      "Allows you to specify a \"description\" metadata for an input.")
414
415 #define META_DATE_TEXT N_("Date metadata")
416 #define META_DATE_LONGTEXT N_( \
417      "Allows you to specify a \"date\" metadata for an input.")
418
419 #define META_URL_TEXT N_("URL metadata")
420 #define META_URL_LONGTEXT N_( \
421      "Allows you to specify a \"url\" metadata for an input.")
422
423 #define CODEC_CAT_LONGTEXT N_( \
424     "This option can be used to alter the way VLC selects " \
425     "its codecs (decompression methods). Only advanced users should " \
426     "alter this option as it can break playback of all your streams." )
427
428 #define CODEC_TEXT N_("Preferred codecs list")
429 #define CODEC_LONGTEXT N_( \
430     "This allows you to select a list of codecs that VLC will use in " \
431     "priority. For instance, 'dummy,a52' will try the dummy and a52 codecs " \
432     "before trying the other ones.")
433
434 #define ENCODER_TEXT N_("Preferred encoders list")
435 #define ENCODER_LONGTEXT N_( \
436     "This allows you to select a list of encoders that VLC will use in " \
437     "priority")
438
439 #define SOUT_CAT_LONGTEXT N_( \
440     "These options allow you to set default global options for the " \
441     "stream output subsystem." )
442
443 #define SOUT_TEXT N_("Choose a stream output")
444 #define SOUT_LONGTEXT N_( \
445     "Empty if no stream output.")
446
447 #define SOUT_ALL_TEXT N_("Enable streaming of all ES")
448 #define SOUT_ALL_LONGTEXT N_( \
449     "This allows you to stream all ES (video, audio and subtitles)")
450
451 #define SOUT_DISPLAY_TEXT N_("Display while streaming")
452 #define SOUT_DISPLAY_LONGTEXT N_( \
453     "This allows you to play the stream while streaming it.")
454
455 #define SOUT_VIDEO_TEXT N_("Enable video stream output")
456 #define SOUT_VIDEO_LONGTEXT N_( \
457     "This allows you to choose if the video stream should be redirected to " \
458     "the stream output facility when this last one is enabled.")
459
460 #define SOUT_AUDIO_TEXT N_("Enable audio stream output")
461 #define SOUT_AUDIO_LONGTEXT N_( \
462     "This allows you to choose if the video stream should be redirected to " \
463     "the stream output facility when this last one is enabled.")
464
465 #define SOUT_KEEP_TEXT N_("Keep stream output open" )
466 #define SOUT_KEEP_LONGTEXT N_( \
467     "This allows you to keep an unique stream output instance across " \
468     "multiple playlist item (automatically insert the gather stream output " \
469     "if not specified)" )
470
471 #define PACKETIZER_TEXT N_("Preferred packetizer list")
472 #define PACKETIZER_LONGTEXT N_( \
473     "This allows you to select the order in which VLC will choose its " \
474     "packetizers."  )
475
476 #define MUX_TEXT N_("Mux module")
477 #define MUX_LONGTEXT N_( \
478     "This is a legacy entry to let you configure mux modules")
479
480 #define ACCESS_OUTPUT_TEXT N_("Access output module")
481 #define ACCESS_OUTPUT_LONGTEXT N_( \
482     "This is a legacy entry to let you configure access output modules")
483
484 #define ANN_SAPCTRL_TEXT N_("Control SAP flow")
485 #define ANN_SAPCTRL_LONGTEXT N_("If this option is enabled, the flow on " \
486     "the SAP multicast address will be controlled. This is needed if you " \
487     "want to make announcements on the MBone" )
488
489 #define ANN_SAPINTV_TEXT N_("SAP announcement interval")
490 #define ANN_SAPINTV_LONGTEXT N_("When the SAP flow control is disabled, " \
491     "this lets you set the fixed interval between SAP announcements" )
492
493 #define CPU_CAT_LONGTEXT N_( \
494     "These options allow you to enable special CPU optimizations.\n" \
495     "You should always leave all these enabled." )
496
497 #define MMX_TEXT N_("Enable CPU MMX support")
498 #define MMX_LONGTEXT N_( \
499     "If your processor supports the MMX instructions set, VLC can take " \
500     "advantage of them.")
501
502 #define THREE_DN_TEXT N_("Enable CPU 3D Now! support")
503 #define THREE_DN_LONGTEXT N_( \
504     "If your processor supports the 3D Now! instructions set, VLC can take " \
505     "advantage of them.")
506
507 #define MMXEXT_TEXT N_("Enable CPU MMX EXT support")
508 #define MMXEXT_LONGTEXT N_( \
509     "If your processor supports the MMX EXT instructions set, VLC can take " \
510     "advantage of them.")
511
512 #define SSE_TEXT N_("Enable CPU SSE support")
513 #define SSE_LONGTEXT N_( \
514     "If your processor supports the SSE instructions set, VLC can take " \
515     "advantage of them.")
516
517 #define SSE2_TEXT N_("Enable CPU SSE2 support")
518 #define SSE2_LONGTEXT N_( \
519     "If your processor supports the SSE2 instructions set, VLC can take " \
520     "advantage of them.")
521
522 #define ALTIVEC_TEXT N_("Enable CPU AltiVec support")
523 #define ALTIVEC_LONGTEXT N_( \
524     "If your processor supports the AltiVec instructions set, VLC can take " \
525     "advantage of them.")
526
527 #define PLAYLIST_CAT_LONGTEXT N_( \
528      "These options define the behavior of the playlist. Some " \
529      "of them can be overridden in the playlist dialog box." )
530
531 #define RANDOM_TEXT N_("Play files randomly forever")
532 #define RANDOM_LONGTEXT N_( \
533     "When selected, VLC will randomly play files in the playlist until " \
534     "interrupted.")
535
536 #define LOOP_TEXT N_("Loop playlist on end")
537 #define LOOP_LONGTEXT N_( \
538     "If you want VLC to keep playing the playlist indefinitely then enable " \
539     "this option.")
540
541 #define REPEAT_TEXT N_("Repeat the current item")
542 #define REPEAT_LONGTEXT N_( \
543     "When this is active, VLC will keep playing the current playlist item " \
544     "over and over again.")
545
546 #define PAS_TEXT N_("Play and stop")
547 #define PAS_LONGTEXT N_( \
548     "Stop the playlist after each played playlistitem." \
549     "Does advance the playlistindex.")
550
551 #define MISC_CAT_LONGTEXT N_( \
552     "These options allow you to select default modules. Leave these " \
553     "alone unless you really know what you are doing." )
554
555 #define MEMCPY_TEXT N_("Memory copy module")
556 #define MEMCPY_LONGTEXT N_( \
557     "You can select which memory copy module you want to use. By default " \
558     "VLC will select the fastest one supported by your hardware.")
559
560 #define ACCESS_TEXT N_("Access module")
561 #define ACCESS_LONGTEXT N_( \
562     "This is a legacy entry to let you configure access modules.")
563
564 #define DEMUX_TEXT N_("Demux module")
565 #define DEMUX_LONGTEXT N_( \
566     "This is a legacy entry to let you configure demux modules.")
567
568 #define RT_PRIORITY_TEXT N_("Allow real-time priority")
569 #define RT_PRIORITY_LONGTEXT N_( \
570     "Running VLC in real-time priority will allow for much more precise " \
571     "scheduling and yield better, especially when streaming content. " \
572     "It can however lock up your whole machine, or make it very very " \
573     "slow. You should only activate this if you know what you're " \
574     "doing.")
575
576 #define RT_OFFSET_TEXT N_("Adjust VLC priority")
577 #define RT_OFFSET_LONGTEXT N_( \
578     "This option adds an offset (positive or negative) to VLC default " \
579     "priorities. You can use it to tune VLC priority against other " \
580     "programs, or against other VLC instances.")
581
582 #define MINIMIZE_THREADS_TEXT N_("Minimize number of threads")
583 #define MINIMIZE_THREADS_LONGTEXT N_( \
584      "This option minimizes the number of threads needed to run VLC")
585
586 #define PLUGIN_PATH_TEXT N_("Modules search path")
587 #define PLUGIN_PATH_LONGTEXT N_( \
588     "This option allows you to specify an additional path for VLC to look " \
589     "for its modules.")
590
591 #define PLUGINS_CACHE_TEXT N_("Use a plugins cache")
592 #define PLUGINS_CACHE_LONGTEXT N_( \
593     "This option allows you to use a plugins cache which will greatly " \
594     "improve the start time of VLC.")
595
596 #define DAEMON_TEXT N_("Run as daemon process")
597 #define DAEMON_LONGTEXT N_( \
598      "Runs VLC as a background daemon process.")
599
600 #define ONEINSTANCE_TEXT N_("Allow only one running instance")
601 #define ONEINSTANCE_LONGTEXT N_( \
602     "Allowing only one running instance of VLC can sometimes be useful, " \
603     "for instance if you associated VLC with some media types and you " \
604     "don't want a new instance of VLC to be opened each time you " \
605     "double-click on a file in the explorer. This option will allow you " \
606     "to play the file with the already running instance or enqueue it.")
607
608 #define HPRIORITY_TEXT N_("Increase the priority of the process")
609 #define HPRIORITY_LONGTEXT N_( \
610     "Increasing the priority of the process will very likely improve your " \
611     "playing experience as it allows VLC not to be disturbed by other " \
612     "applications that could otherwise take too much processor time.\n" \
613     "However be advised that in certain circumstances (bugs) VLC could take " \
614     "all the processor time and render the whole system unresponsive which " \
615     "might require a reboot of your machine.")
616
617 #define FAST_MUTEX_TEXT N_("Fast mutex on NT/2K/XP (developers only)")
618 #define FAST_MUTEX_LONGTEXT N_( \
619     "On Windows NT/2K/XP we use a slow mutex implementation but which " \
620     "allows us to correctly implement condition variables. " \
621     "You can also use the faster Win9x implementation but you might " \
622     "experience problems with it.")
623
624 #define WIN9X_CV_TEXT N_("Condition variables implementation for Win9x " \
625     "(developers only)")
626 #define WIN9X_CV_LONGTEXT N_( \
627     "On Windows 9x/Me you can use a fast but incorrect condition variables " \
628     "implementation (more precisely there is a possibility for a race " \
629     "condition to happen). " \
630     "However it is possible to use slower alternatives which are more " \
631     "robust. " \
632     "Currently you can choose between implementation 0 (which is the " \
633     "fastest but slightly incorrect), 1 (default) and 2.")
634
635 #define HOTKEY_CAT_LONGTEXT N_( "These settings are the global VLC key " \
636     "bindings, known as \"hotkeys\"." )
637
638 #define FULLSCREEN_KEY_TEXT N_("Fullscreen")
639 #define FULLSCREEN_KEY_LONGTEXT N_("Select the hotkey to use to swap fullscreen state.")
640 #define PLAY_PAUSE_KEY_TEXT N_("Play/Pause")
641 #define PLAY_PAUSE_KEY_LONGTEXT N_("Select the hotkey to use to swap paused state.")
642 #define PAUSE_KEY_TEXT N_("Pause only")
643 #define PAUSE_KEY_LONGTEXT N_("Select the hotkey to use to pause.")
644 #define PLAY_KEY_TEXT N_("Play only")
645 #define PLAY_KEY_LONGTEXT N_("Select the hotkey to use to play.")
646 #define FASTER_KEY_TEXT N_("Faster")
647 #define FASTER_KEY_LONGTEXT N_("Select the hotkey to use for fast forward playback.")
648 #define SLOWER_KEY_TEXT N_("Slower")
649 #define SLOWER_KEY_LONGTEXT N_("Select the hotkey to use for slow motion playback.")
650 #define NEXT_KEY_TEXT N_("Next")
651 #define NEXT_KEY_LONGTEXT N_("Select the hotkey to use to skip to the next item in the playlist.")
652 #define PREV_KEY_TEXT N_("Previous")
653 #define PREV_KEY_LONGTEXT N_("Select the hotkey to use to skip to the previous item in the playlist.")
654 #define STOP_KEY_TEXT N_("Stop")
655 #define STOP_KEY_LONGTEXT N_("Select the hotkey to stop the playback.")
656 #define POSITION_KEY_TEXT N_("Position")
657 #define POSITION_KEY_LONGTEXT N_("Select the hotkey to display the position.")
658
659 #define JB10SEC_KEY_TEXT N_("Jump 10 seconds backwards")
660 #define JB10SEC_KEY_LONGTEXT N_("Select the hotkey to jump 10 seconds backwards.")
661
662 #define JB1MIN_KEY_TEXT N_("Jump 1 minute backwards")
663 #define JB1MIN_KEY_LONGTEXT N_("Select the hotkey to jump 1 minute backwards.")
664 #define JB5MIN_KEY_TEXT N_("Jump 5 minutes backwards")
665 #define JB5MIN_KEY_LONGTEXT N_("Select the hotkey to jump 5 minutes backwards.")
666 #define JF10SEC_KEY_TEXT N_("Jump 10 seconds forward")
667 #define JF10SEC_KEY_LONGTEXT N_("Select the hotkey to jump 10 seconds forward.")
668
669 #define JF1MIN_KEY_TEXT N_("Jump 1 minute forward")
670 #define JF1MIN_KEY_LONGTEXT N_("Select the hotkey to jump 1 minute forward.")
671
672 #define JF5MIN_KEY_TEXT N_("Jump 5 minutes forward")
673 #define JF5MIN_KEY_LONGTEXT N_("Select the hotkey to jump 5 minutes forward.")
674
675 #define QUIT_KEY_TEXT N_("Quit")
676 #define QUIT_KEY_LONGTEXT N_("Select the hotkey to quit the application.")
677 #define NAV_UP_KEY_TEXT N_("Navigate up")
678 #define NAV_UP_KEY_LONGTEXT N_("Select the key to move the selector up in DVD menus.")
679 #define NAV_DOWN_KEY_TEXT N_("Navigate down")
680 #define NAV_DOWN_KEY_LONGTEXT N_("Select the key to move the selector down in DVD menus.")
681 #define NAV_LEFT_KEY_TEXT N_("Navigate left")
682 #define NAV_LEFT_KEY_LONGTEXT N_("Select the key to move the selector left in DVD menus.")
683 #define NAV_RIGHT_KEY_TEXT N_("Navigate right")
684 #define NAV_RIGHT_KEY_LONGTEXT N_("Select the key to move the selector right in DVD menus.")
685 #define NAV_ACTIVATE_KEY_TEXT N_("Activate")
686 #define NAV_ACTIVATE_KEY_LONGTEXT N_("Select the key to activate selected item in DVD menus.")
687 #define VOL_UP_KEY_TEXT N_("Volume up")
688 #define VOL_UP_KEY_LONGTEXT N_("Select the key to increase audio volume.")
689 #define VOL_DOWN_KEY_TEXT N_("Volume down")
690 #define VOL_DOWN_KEY_LONGTEXT N_("Select the key to decrease audio volume.")
691 #define VOL_MUTE_KEY_TEXT N_("Mute")
692 #define VOL_MUTE_KEY_LONGTEXT N_("Select the key to turn off audio volume.")
693 #define SUBDELAY_UP_KEY_TEXT N_("Subtitle delay up")
694 #define SUBDELAY_UP_KEY_LONGTEXT N_("Select the key to increase the subtitle delay.")
695 #define SUBDELAY_DOWN_KEY_TEXT N_("Subtitle delay down")
696 #define SUBDELAY_DOWN_KEY_LONGTEXT N_("Select the key to decrease the subtitle delay.")
697 #define PLAY_BOOKMARK1_KEY_TEXT N_("Play playlist bookmark 1")
698 #define PLAY_BOOKMARK2_KEY_TEXT N_("Play playlist bookmark 2")
699 #define PLAY_BOOKMARK3_KEY_TEXT N_("Play playlist bookmark 3")
700 #define PLAY_BOOKMARK4_KEY_TEXT N_("Play playlist bookmark 4")
701 #define PLAY_BOOKMARK5_KEY_TEXT N_("Play playlist bookmark 5")
702 #define PLAY_BOOKMARK6_KEY_TEXT N_("Play playlist bookmark 6")
703 #define PLAY_BOOKMARK7_KEY_TEXT N_("Play playlist bookmark 7")
704 #define PLAY_BOOKMARK8_KEY_TEXT N_("Play playlist bookmark 8")
705 #define PLAY_BOOKMARK9_KEY_TEXT N_("Play playlist bookmark 9")
706 #define PLAY_BOOKMARK10_KEY_TEXT N_("Play playlist bookmark 10")
707 #define PLAY_BOOKMARK_KEY_LONGTEXT N_("Select the key to play this bookmark.")
708 #define SET_BOOKMARK1_KEY_TEXT N_("Set playlist bookmark 1")
709 #define SET_BOOKMARK2_KEY_TEXT N_("Set playlist bookmark 2")
710 #define SET_BOOKMARK3_KEY_TEXT N_("Set playlist bookmark 3")
711 #define SET_BOOKMARK4_KEY_TEXT N_("Set playlist bookmark 4")
712 #define SET_BOOKMARK5_KEY_TEXT N_("Set playlist bookmark 5")
713 #define SET_BOOKMARK6_KEY_TEXT N_("Set playlist bookmark 6")
714 #define SET_BOOKMARK7_KEY_TEXT N_("Set playlist bookmark 7")
715 #define SET_BOOKMARK8_KEY_TEXT N_("Set playlist bookmark 8")
716 #define SET_BOOKMARK9_KEY_TEXT N_("Set playlist bookmark 9")
717 #define SET_BOOKMARK10_KEY_TEXT N_("Set playlist bookmark 10")
718 #define SET_BOOKMARK_KEY_LONGTEXT N_("Select the key to set this playlist bookmark.")
719
720 #define HISTORY_BACK_TEXT N_("Go back in browsing history")
721 #define HISTORY_BACK_LONGTEXT N_("Select the key to go back (to the previous media item) in the browsing history.")
722 #define HISTORY_FORWARD_TEXT N_("Go forward in browsing history")
723 #define HISTORY_FORWARD_LONGTEXT N_("Select the key to go forward (to the next media item) in the browsing history.")
724
725 #define AUDIO_TRACK_KEY_TEXT N_("Cycle audio track")
726 #define AUDIO_TRACK_KEY_LONGTEXT N_("Cycle through the available audio tracks(languages)")
727 #define SUBTITLE_TRACK_KEY_TEXT N_("Cycle subtitle track")
728 #define SUBTITLE_TRACK_KEY_LONGTEXT N_("Cycle through the available subtitle tracks")
729
730 #define PLAYLIST_USAGE N_("\nPlaylist items:" \
731     "\n  *.mpg, *.vob                   plain MPEG-1/2 files" \
732     "\n  [dvd://][device][@raw_device][@[title][,[chapter][,angle]]]" \
733     "\n                                 DVD device" \
734     "\n  [vcd://][device][@{S|T|E|P}[number]]" \
735     "\n                                 VCD device" \
736     "\n  [cdda://][device][@[T][track-number]]" \
737     "\n                                 Audio CD device" \
738     "\n  udpstream:[[<source address>]@[<bind address>][:<bind port>]]" \
739     "\n                                 UDP stream sent by a streaming server" \
740     "\n  vlc:pause                      pause execution of " \
741     "playlist items" \
742     "\n  vlc:quit                       quit VLC" \
743     "\n")
744
745
746 /*
747  * Quick usage guide for the configuration options:
748  *
749  * add_category_hint( N_(text), N_(longtext), b_advanced_option );
750  * add_subcategory_hint( N_(text), N_(longtext), b_advanced_option );
751  * add_usage_hint( N_(text), b_advanced_option );
752  * add_string( option_name, value, p_callback, N_(text), N_(longtext),
753                b_advanced_option );
754  * add_file( option_name, psz_value, p_callback, N_(text), N_(longtext) );
755  * add_module( option_name, psz_value, i_capability, p_callback,
756  *             N_(text), N_(longtext) );
757  * add_integer( option_name, i_value, p_callback, N_(text), N_(longtext),
758                 b_advanced_option );
759  * add_bool( option_name, b_value, p_callback, N_(text), N_(longtext), 
760              b_advanced_option );
761  */
762
763 vlc_module_begin();
764     /* Interface options */
765     add_category_hint( N_("Interface"), INTF_CAT_LONGTEXT , VLC_FALSE );
766     add_module( "intf", "interface", NULL, NULL, INTF_TEXT,
767                 INTF_LONGTEXT, VLC_TRUE );
768         change_short('I');
769     add_string( "extraintf", NULL, NULL, EXTRAINTF_TEXT,
770                      EXTRAINTF_LONGTEXT, VLC_FALSE );
771     add_integer( "verbose", 0, NULL, VERBOSE_TEXT, VERBOSE_LONGTEXT,
772                  VLC_FALSE );
773         change_short('v');
774     add_bool( "quiet", 0, NULL, QUIET_TEXT, QUIET_LONGTEXT, VLC_TRUE );
775         change_short('q');
776     add_string( "language", "auto", NULL, LANGUAGE_TEXT, LANGUAGE_LONGTEXT,
777                 VLC_FALSE );
778         change_string_list( ppsz_language, ppsz_language_text, 0 );
779     add_bool( "color", 0, NULL, COLOR_TEXT, COLOR_LONGTEXT, VLC_TRUE );
780     add_bool( "advanced", 0, NULL, ADVANCED_TEXT,
781                             ADVANCED_LONGTEXT, VLC_FALSE );
782
783     /* Audio options */
784     add_category_hint( N_("Audio"), AOUT_CAT_LONGTEXT , VLC_FALSE );
785     add_module( "aout", "audio output", NULL, NULL, AOUT_TEXT, AOUT_LONGTEXT,
786                 VLC_TRUE );
787         change_short('A');
788     add_bool( "audio", 1, NULL, AUDIO_TEXT, AUDIO_LONGTEXT, VLC_FALSE );
789     add_integer_with_range( "volume", AOUT_VOLUME_DEFAULT, AOUT_VOLUME_MIN,
790                             AOUT_VOLUME_MAX, NULL, VOLUME_TEXT,
791                             VOLUME_LONGTEXT, VLC_FALSE );
792     add_integer_with_range( "saved-volume", AOUT_VOLUME_DEFAULT,
793                             AOUT_VOLUME_MIN, AOUT_VOLUME_MAX, NULL,
794                             VOLUME_SAVE_TEXT, VOLUME_SAVE_LONGTEXT, VLC_TRUE );
795     add_integer( "aout-rate", -1, NULL, AOUT_RATE_TEXT, AOUT_RATE_LONGTEXT, VLC_TRUE );
796 #if !defined( SYS_DARWIN )
797     add_bool( "hq-resampling", 1, NULL, AOUT_RESAMP_TEXT, AOUT_RESAMP_LONGTEXT, VLC_TRUE );
798 #endif
799     add_bool( "spdif", 0, NULL, SPDIF_TEXT, SPDIF_LONGTEXT, VLC_FALSE );
800     add_integer( "audio-desync", 0, NULL, DESYNC_TEXT, DESYNC_LONGTEXT, VLC_TRUE );
801     add_string("audio-filter",0,NULL,AUDIO_FILTER_TEXT,
802                     AUDIO_FILTER_LONGTEXT,VLC_FALSE);
803     add_module( "audio-channel-mixer", "audio filter", NULL, NULL,
804                     AUDIO_CHANNEL_MIXER, AUDIO_CHANNEL_MIXER_LONGTEXT,
805                     VLC_FALSE );
806
807     /* Video options */
808     add_category_hint( N_("Video"), VOUT_CAT_LONGTEXT , VLC_FALSE );
809     add_module( "vout", "video output", NULL, NULL, VOUT_TEXT, VOUT_LONGTEXT,
810                 VLC_TRUE );
811         change_short('V');
812     add_bool( "video", 1, NULL, VIDEO_TEXT, VIDEO_LONGTEXT, VLC_TRUE );
813     add_integer( "width", -1, NULL, WIDTH_TEXT, WIDTH_LONGTEXT, VLC_TRUE );
814     add_integer( "height", -1, NULL, HEIGHT_TEXT, HEIGHT_LONGTEXT, VLC_TRUE );
815     add_integer( "video-x", -1, NULL, VIDEOX_TEXT, VIDEOX_LONGTEXT, VLC_TRUE );
816     add_integer( "video-y", -1, NULL, VIDEOY_TEXT, VIDEOY_LONGTEXT, VLC_TRUE );
817     add_string( "video-title", NULL, NULL, VIDEO_TITLE_TEXT,
818                  VIDEO_TITLE_LONGTEXT, VLC_TRUE );
819     add_integer( "align", 0, NULL, ALIGN_TEXT, ALIGN_LONGTEXT, VLC_TRUE );
820         change_integer_list( pi_align_values, ppsz_align_descriptions, 0 );
821     add_float( "zoom", 1, NULL, ZOOM_TEXT, ZOOM_LONGTEXT, VLC_TRUE );
822     add_bool( "grayscale", 0, NULL, GRAYSCALE_TEXT, GRAYSCALE_LONGTEXT, VLC_TRUE );
823     add_bool( "fullscreen", 0, NULL, FULLSCREEN_TEXT,
824                         FULLSCREEN_LONGTEXT, VLC_FALSE );
825 #ifndef SYS_DARWIN
826     add_bool( "overlay", 1, NULL, OVERLAY_TEXT, OVERLAY_LONGTEXT, VLC_TRUE );
827 #endif
828
829     add_bool( "video-on-top", 0, NULL, VIDEO_ON_TOP_TEXT, VIDEO_ON_TOP_LONGTEXT, VLC_FALSE );
830     add_integer( "spumargin", -1, NULL, SPUMARGIN_TEXT,
831                         SPUMARGIN_LONGTEXT, VLC_TRUE );
832     add_bool( "osd", 1, NULL, OSD_TEXT, OSD_LONGTEXT, VLC_FALSE );
833     add_module( "filter", "video filter", NULL, NULL,
834                 FILTER_TEXT, FILTER_LONGTEXT, VLC_FALSE );
835     add_string( "aspect-ratio", "", NULL,
836                 ASPECT_RATIO_TEXT, ASPECT_RATIO_LONGTEXT, VLC_TRUE );
837 #if 0
838     add_string( "pixel-ratio", "1", NULL, PIXEL_RATIO_TEXT, PIXEL_RATIO_TEXT );
839 #endif
840
841     /* Input options */
842     add_category_hint( N_("Input"), INPUT_CAT_LONGTEXT , VLC_FALSE );
843     add_integer( "cr-average", 40, NULL, CR_AVERAGE_TEXT,
844                  CR_AVERAGE_LONGTEXT, VLC_FALSE );
845     add_integer( "server-port", 1234, NULL,
846                  SERVER_PORT_TEXT, SERVER_PORT_LONGTEXT, VLC_FALSE );
847     add_integer( "mtu", 1500, NULL, MTU_TEXT, MTU_LONGTEXT, VLC_TRUE );
848     add_string( "iface-addr", "", NULL, IFACE_ADDR_TEXT, IFACE_ADDR_LONGTEXT, VLC_TRUE );
849
850     add_integer( "program", 0, NULL,
851                  INPUT_PROGRAM_TEXT, INPUT_PROGRAM_LONGTEXT, VLC_TRUE );
852     add_integer( "audio-type", -1, NULL,
853                  INPUT_AUDIO_TEXT, INPUT_AUDIO_LONGTEXT, VLC_TRUE );
854     add_integer( "audio-channel", -1, NULL,
855                  INPUT_CHAN_TEXT, INPUT_CHAN_LONGTEXT, VLC_FALSE );
856     add_integer( "spu-channel", -1, NULL,
857                  INPUT_SUBT_TEXT, INPUT_SUBT_LONGTEXT, VLC_FALSE );
858     add_bool( "sub-autodetect-file", VLC_TRUE, NULL,
859                  SUB_AUTO_TEXT, SUB_AUTO_LONGTEXT, VLC_FALSE );
860     add_integer( "sub-autodetect-fuzzy", 3, NULL,
861                  SUB_FUZZY_TEXT, SUB_FUZZY_LONGTEXT, VLC_TRUE );
862 #ifdef WIN32
863 #   define SUB_PATH ".\\subtitles"
864 #else
865 #   define SUB_PATH "./Subtitles, ./subtitles"
866 #endif
867     add_string( "sub-autodetect-path", SUB_PATH, NULL,
868                  SUB_PATH_TEXT, SUB_PATH_LONGTEXT, VLC_TRUE );
869     add_file( "sub-file", NULL, NULL,
870                  SUB_FILE_TEXT, SUB_FILE_LONGTEXT, VLC_TRUE );
871     add_integer( "input-repeat", 0, NULL,
872                  INPUT_REPEAT_TEXT, INPUT_REPEAT_LONGTEXT, VLC_TRUE );
873     add_integer( "start-time", 0, NULL,
874                  START_TIME_TEXT, START_TIME_LONGTEXT, VLC_TRUE );
875     add_integer( "stop-time", 0, NULL,
876                  STOP_TIME_TEXT, STOP_TIME_LONGTEXT, VLC_TRUE );
877     add_string( "input-slave", NULL, NULL,
878                  INPUT_SLAVE_TEXT, INPUT_SLAVE_LONGTEXT, VLC_TRUE );
879
880     add_string( "bookmarks", NULL, NULL,
881                  BOOKMARKS_TEXT, BOOKMARKS_LONGTEXT, VLC_TRUE );
882
883     add_file( "dvd", DVD_DEVICE, NULL, DVD_DEV_TEXT, DVD_DEV_LONGTEXT,
884               VLC_FALSE );
885     add_file( "vcd", VCD_DEVICE, NULL, VCD_DEV_TEXT, VCD_DEV_LONGTEXT,
886               VLC_FALSE );
887     add_file( "cd-audio", CDAUDIO_DEVICE, NULL, CDAUDIO_DEV_TEXT,
888               CDAUDIO_DEV_LONGTEXT, VLC_FALSE );
889
890     add_bool( "ipv6", 0, NULL, IPV6_TEXT, IPV6_LONGTEXT, VLC_FALSE );
891         change_short('6');
892     add_bool( "ipv4", 0, NULL, IPV4_TEXT, IPV4_LONGTEXT, VLC_FALSE );
893         change_short('4');
894
895     add_string( "meta-title", NULL, NULL, META_TITLE_TEXT,
896                 META_TITLE_LONGTEXT, VLC_TRUE );
897     add_string( "meta-author", NULL, NULL, META_AUTHOR_TEXT,
898                 META_AUTHOR_LONGTEXT, VLC_TRUE );
899     add_string( "meta-artist", NULL, NULL, META_ARTIST_TEXT,
900                 META_ARTIST_LONGTEXT, VLC_TRUE );
901     add_string( "meta-genre", NULL, NULL, META_GENRE_TEXT,
902                 META_GENRE_LONGTEXT, VLC_TRUE );
903     add_string( "meta-copyright", NULL, NULL, META_CPYR_TEXT,
904                 META_CPYR_LONGTEXT, VLC_TRUE );
905     add_string( "meta-description", NULL, NULL, META_DESCR_TEXT,
906                 META_DESCR_LONGTEXT, VLC_TRUE );
907     add_string( "meta-date", NULL, NULL, META_DATE_TEXT,
908                 META_DATE_LONGTEXT, VLC_TRUE );
909     add_string( "meta-url", NULL, NULL, META_URL_TEXT,
910                 META_URL_LONGTEXT, VLC_TRUE );
911
912     /* Decoder options */
913     add_category_hint( N_("Decoders"), CODEC_CAT_LONGTEXT , VLC_TRUE );
914     add_module( "codec", "decoder", NULL, NULL, CODEC_TEXT, CODEC_LONGTEXT, VLC_TRUE );
915     add_module( "encoder", "encoder", NULL, NULL, ENCODER_TEXT, ENCODER_LONGTEXT, VLC_TRUE );
916
917
918     /* Stream output options */
919     add_category_hint( N_("Stream output"), SOUT_CAT_LONGTEXT , VLC_TRUE );
920     add_string( "sout", NULL, NULL, SOUT_TEXT, SOUT_LONGTEXT, VLC_TRUE );
921     add_bool( "sout-display", VLC_FALSE, NULL, SOUT_DISPLAY_TEXT,
922                                 SOUT_DISPLAY_LONGTEXT, VLC_TRUE );
923     add_bool( "sout-keep", VLC_FALSE, NULL, SOUT_KEEP_TEXT,
924                                 SOUT_KEEP_LONGTEXT, VLC_TRUE );
925     add_bool( "sout-all", 0, NULL, SOUT_ALL_TEXT,
926                                 SOUT_ALL_LONGTEXT, VLC_TRUE );
927     add_bool( "sout-audio", 1, NULL, SOUT_AUDIO_TEXT,
928                                 SOUT_AUDIO_LONGTEXT, VLC_TRUE );
929     add_bool( "sout-video", 1, NULL, SOUT_VIDEO_TEXT,
930                                 SOUT_VIDEO_LONGTEXT, VLC_TRUE );
931
932     add_module( "packetizer", "packetizer", NULL, NULL,
933                 PACKETIZER_TEXT, PACKETIZER_LONGTEXT, VLC_TRUE );
934     add_module( "mux", "sout mux", NULL, NULL, MUX_TEXT,
935                                 MUX_LONGTEXT, VLC_TRUE );
936     add_module( "access_output", "sout access", NULL, NULL,
937                 ACCESS_OUTPUT_TEXT, ACCESS_OUTPUT_LONGTEXT, VLC_TRUE );
938     add_integer( "ttl", 1, NULL, TTL_TEXT, TTL_LONGTEXT, VLC_TRUE );
939
940     add_bool( "sap-flow-control", VLC_FALSE, NULL, ANN_SAPCTRL_TEXT,
941                                ANN_SAPCTRL_LONGTEXT, VLC_TRUE );
942     add_integer( "sap-interval", 5, NULL, ANN_SAPINTV_TEXT,
943                                ANN_SAPINTV_LONGTEXT, VLC_TRUE );
944
945     /* CPU options */
946     add_category_hint( N_("CPU"), CPU_CAT_LONGTEXT, VLC_TRUE );
947 #if defined( __i386__ )
948     add_bool( "mmx", 1, NULL, MMX_TEXT, MMX_LONGTEXT, VLC_TRUE );
949     add_bool( "3dn", 1, NULL, THREE_DN_TEXT, THREE_DN_LONGTEXT, VLC_TRUE );
950     add_bool( "mmxext", 1, NULL, MMXEXT_TEXT, MMXEXT_LONGTEXT, VLC_TRUE );
951     add_bool( "sse", 1, NULL, SSE_TEXT, SSE_LONGTEXT, VLC_TRUE );
952     add_bool( "sse2", 1, NULL, SSE2_TEXT, SSE2_LONGTEXT, VLC_TRUE );
953 #endif
954 #if defined( __powerpc__ ) || defined( SYS_DARWIN )
955     add_bool( "altivec", 1, NULL, ALTIVEC_TEXT, ALTIVEC_LONGTEXT, VLC_TRUE );
956 #endif
957
958     /* Playlist options */
959     add_category_hint( N_("Playlist"), PLAYLIST_CAT_LONGTEXT , VLC_FALSE );
960     add_bool( "random", 0, NULL, RANDOM_TEXT, RANDOM_LONGTEXT, VLC_FALSE );
961         change_short('Z');
962     add_bool( "loop", 0, NULL, LOOP_TEXT, LOOP_LONGTEXT, VLC_FALSE );
963         change_short('L');
964     add_bool( "repeat", 0, NULL, REPEAT_TEXT, REPEAT_LONGTEXT, VLC_TRUE );
965         change_short('R');
966     add_bool( "play-and-stop", 0, NULL, PAS_TEXT, PAS_LONGTEXT, VLC_TRUE );
967
968     /* Misc options */
969     add_category_hint( N_("Miscellaneous"), MISC_CAT_LONGTEXT, VLC_TRUE );
970     add_module( "memcpy", "memcpy", NULL, NULL, MEMCPY_TEXT,
971                 MEMCPY_LONGTEXT, VLC_TRUE );
972     add_module( "access", "access", NULL, NULL, ACCESS_TEXT,
973                 ACCESS_LONGTEXT, VLC_TRUE );
974     add_module( "demux", "demux", NULL, NULL, DEMUX_TEXT,
975                 DEMUX_LONGTEXT, VLC_TRUE );
976     add_bool( "minimize-threads", 0, NULL, MINIMIZE_THREADS_TEXT,
977               MINIMIZE_THREADS_LONGTEXT, VLC_TRUE );
978     add_bool( "plugins-cache", 0, NULL, PLUGINS_CACHE_TEXT,
979               PLUGINS_CACHE_LONGTEXT, VLC_TRUE );
980     add_directory( "plugin-path", NULL, NULL, PLUGIN_PATH_TEXT,
981                    PLUGIN_PATH_LONGTEXT, VLC_TRUE );
982
983 #if !defined(WIN32)
984     add_bool( "daemon", 0, NULL, DAEMON_TEXT, DAEMON_LONGTEXT, VLC_TRUE );
985         change_short('d');
986 #endif
987
988 #if !defined(SYS_DARWIN) && !defined(SYS_BEOS) && defined(PTHREAD_COND_T_IN_PTHREAD_H)
989     add_bool( "rt-priority", 0, NULL, RT_PRIORITY_TEXT,
990               RT_PRIORITY_LONGTEXT, VLC_TRUE );
991 #endif
992
993 #if !defined(SYS_BEOS) && defined(PTHREAD_COND_T_IN_PTHREAD_H)
994     add_integer( "rt-offset", 0, NULL, RT_OFFSET_TEXT,
995                  RT_OFFSET_LONGTEXT, VLC_TRUE );
996 #endif
997
998 #if defined(WIN32)
999     add_bool( "one-instance", 0, NULL, ONEINSTANCE_TEXT,
1000               ONEINSTANCE_LONGTEXT, VLC_TRUE );
1001     add_bool( "high-priority", 0, NULL, HPRIORITY_TEXT,
1002               HPRIORITY_LONGTEXT, VLC_TRUE );
1003     add_bool( "fast-mutex", 0, NULL, FAST_MUTEX_TEXT,
1004               FAST_MUTEX_LONGTEXT, VLC_TRUE );
1005     add_integer( "win9x-cv-method", 1, NULL, WIN9X_CV_TEXT,
1006                   WIN9X_CV_LONGTEXT, VLC_TRUE );
1007 #endif
1008
1009     /* Hotkey options*/
1010     add_category_hint( N_("Hot keys"), HOTKEY_CAT_LONGTEXT , VLC_FALSE );
1011 #if defined(SYS_DARWIN)
1012     add_key( "key-fullscreen", KEY_MODIFIER_COMMAND|'f', NULL, FULLSCREEN_KEY_TEXT, FULLSCREEN_KEY_LONGTEXT, VLC_FALSE );
1013     add_key( "key-play-pause", KEY_MODIFIER_COMMAND|'p', NULL, PLAY_PAUSE_KEY_TEXT, PLAY_PAUSE_KEY_LONGTEXT, VLC_FALSE );
1014     add_key( "key-pause", 0, NULL, PAUSE_KEY_TEXT, PAUSE_KEY_LONGTEXT, VLC_TRUE );
1015     add_key( "key-play", 0, NULL, PLAY_KEY_TEXT, PLAY_KEY_LONGTEXT, VLC_TRUE );
1016     add_key( "key-faster", KEY_MODIFIER_COMMAND|'=', NULL, FASTER_KEY_TEXT, FASTER_KEY_LONGTEXT, VLC_FALSE );
1017     add_key( "key-slower", KEY_MODIFIER_COMMAND|'-', NULL, SLOWER_KEY_TEXT, SLOWER_KEY_LONGTEXT, VLC_FALSE );
1018     add_key( "key-next", KEY_MODIFIER_COMMAND|KEY_RIGHT, NULL, NEXT_KEY_TEXT, NEXT_KEY_LONGTEXT, VLC_FALSE );
1019     add_key( "key-prev", KEY_MODIFIER_COMMAND|KEY_LEFT, NULL, PREV_KEY_TEXT, PREV_KEY_LONGTEXT, VLC_FALSE );
1020     add_key( "key-stop", KEY_MODIFIER_COMMAND|'.', NULL, STOP_KEY_TEXT, STOP_KEY_LONGTEXT, VLC_FALSE );
1021     add_key( "key-position", 't', NULL, POSITION_KEY_TEXT, POSITION_KEY_LONGTEXT, VLC_TRUE );
1022     add_key( "key-jump-10sec", KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|KEY_LEFT, NULL, JB10SEC_KEY_TEXT, JB10SEC_KEY_LONGTEXT, VLC_FALSE );
1023     add_key( "key-jump+10sec", KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|KEY_RIGHT, NULL, JF10SEC_KEY_TEXT, JF10SEC_KEY_LONGTEXT, VLC_FALSE );
1024     add_key( "key-jump-1min", KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_LEFT, NULL, JB1MIN_KEY_TEXT, JB1MIN_KEY_LONGTEXT, VLC_FALSE );
1025     add_key( "key-jump+1min", KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_RIGHT, NULL, JF1MIN_KEY_TEXT, JF1MIN_KEY_LONGTEXT, VLC_FALSE );
1026     add_key( "key-jump-5min", KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_MODIFIER_ALT|KEY_LEFT, NULL, JB5MIN_KEY_TEXT, JB5MIN_KEY_LONGTEXT, VLC_FALSE );
1027     add_key( "key-jump+5min", KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_MODIFIER_ALT|KEY_RIGHT, NULL, JF5MIN_KEY_TEXT, JF5MIN_KEY_LONGTEXT, VLC_FALSE );
1028     add_key( "key-nav-activate", KEY_ENTER, NULL, NAV_ACTIVATE_KEY_TEXT, NAV_ACTIVATE_KEY_LONGTEXT, VLC_TRUE );
1029     add_key( "key-nav-up", KEY_UP, NULL, NAV_UP_KEY_TEXT, NAV_UP_KEY_LONGTEXT, VLC_TRUE );
1030     add_key( "key-nav-down", KEY_DOWN, NULL, NAV_DOWN_KEY_TEXT, NAV_DOWN_KEY_LONGTEXT, VLC_TRUE );
1031     add_key( "key-nav-left", KEY_LEFT, NULL, NAV_LEFT_KEY_TEXT, NAV_LEFT_KEY_LONGTEXT, VLC_TRUE );
1032     add_key( "key-nav-right", KEY_RIGHT, NULL, NAV_RIGHT_KEY_TEXT, NAV_RIGHT_KEY_LONGTEXT, VLC_TRUE );
1033     add_key( "key-quit", KEY_MODIFIER_COMMAND|'q', NULL, QUIT_KEY_TEXT, QUIT_KEY_LONGTEXT, VLC_FALSE );
1034     add_key( "key-vol-up", KEY_MODIFIER_COMMAND|KEY_UP, NULL, VOL_UP_KEY_TEXT, VOL_UP_KEY_LONGTEXT, VLC_FALSE );
1035     add_key( "key-vol-down", KEY_MODIFIER_COMMAND|KEY_DOWN, NULL, VOL_DOWN_KEY_TEXT, VOL_DOWN_KEY_LONGTEXT, VLC_FALSE );
1036     add_key( "key-vol-mute", KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'m', NULL, VOL_MUTE_KEY_TEXT, VOL_MUTE_KEY_LONGTEXT, VLC_FALSE );
1037     add_key( "key-subdelay-up", KEY_MODIFIER_COMMAND|'k', NULL,
1038              SUBDELAY_UP_KEY_TEXT, SUBDELAY_UP_KEY_LONGTEXT, VLC_TRUE );
1039     add_key( "key-subdelay-down", KEY_MODIFIER_COMMAND|'j', NULL,
1040              SUBDELAY_DOWN_KEY_TEXT, SUBDELAY_DOWN_KEY_LONGTEXT, VLC_TRUE );
1041     add_key( "key-set-bookmark1", KEY_MODIFIER_COMMAND|KEY_F1, NULL, SET_BOOKMARK1_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1042     add_key( "key-set-bookmark2", KEY_MODIFIER_COMMAND|KEY_F2, NULL, SET_BOOKMARK2_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1043     add_key( "key-set-bookmark3", KEY_MODIFIER_COMMAND|KEY_F3, NULL, SET_BOOKMARK3_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1044     add_key( "key-set-bookmark4", KEY_MODIFIER_COMMAND|KEY_F4, NULL, SET_BOOKMARK4_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1045     add_key( "key-set-bookmark5", KEY_MODIFIER_COMMAND|KEY_F5, NULL, SET_BOOKMARK5_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1046     add_key( "key-set-bookmark6", KEY_MODIFIER_COMMAND|KEY_F6, NULL, SET_BOOKMARK6_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1047     add_key( "key-set-bookmark7", KEY_MODIFIER_COMMAND|KEY_F7, NULL, SET_BOOKMARK7_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1048     add_key( "key-set-bookmark8", KEY_MODIFIER_COMMAND|KEY_F8, NULL, SET_BOOKMARK8_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1049     add_key( "key-set-bookmark9", KEY_UNSET, NULL, SET_BOOKMARK9_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1050     add_key( "key-set-bookmark10", KEY_UNSET, NULL, SET_BOOKMARK10_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1051     add_key( "key-play-bookmark1", KEY_F1, NULL, PLAY_BOOKMARK1_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1052     add_key( "key-play-bookmark2", KEY_F2, NULL, PLAY_BOOKMARK2_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1053     add_key( "key-play-bookmark3", KEY_F3, NULL, PLAY_BOOKMARK3_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1054     add_key( "key-play-bookmark4", KEY_F4, NULL, PLAY_BOOKMARK4_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1055     add_key( "key-play-bookmark5", KEY_F5, NULL, PLAY_BOOKMARK5_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1056     add_key( "key-play-bookmark6", KEY_F6, NULL, PLAY_BOOKMARK6_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1057     add_key( "key-play-bookmark7", KEY_F7, NULL, PLAY_BOOKMARK7_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1058     add_key( "key-play-bookmark8", KEY_F8, NULL, PLAY_BOOKMARK8_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1059     add_key( "key-play-bookmark9", KEY_UNSET, NULL, PLAY_BOOKMARK9_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1060     add_key( "key-play-bookmark10", KEY_UNSET, NULL, PLAY_BOOKMARK10_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1061     add_key( "key-history-back", KEY_MODIFIER_COMMAND|'[', NULL, HISTORY_BACK_TEXT, HISTORY_BACK_LONGTEXT, VLC_TRUE );
1062     add_key( "key-history-forward", KEY_MODIFIER_COMMAND|']', NULL, HISTORY_FORWARD_TEXT, HISTORY_FORWARD_LONGTEXT, VLC_TRUE );
1063 #else
1064     add_key( "key-fullscreen", 'f', NULL, FULLSCREEN_KEY_TEXT, FULLSCREEN_KEY_LONGTEXT, VLC_FALSE );
1065     add_key( "key-play-pause", KEY_SPACE, NULL, PLAY_PAUSE_KEY_TEXT, PLAY_PAUSE_KEY_LONGTEXT, VLC_FALSE );
1066     add_key( "key-pause", 0, NULL, PAUSE_KEY_TEXT, PAUSE_KEY_LONGTEXT, VLC_TRUE );
1067     add_key( "key-play", 0, NULL, PLAY_KEY_TEXT, PLAY_KEY_LONGTEXT, VLC_TRUE );
1068     add_key( "key-faster", '+', NULL, FASTER_KEY_TEXT, FASTER_KEY_LONGTEXT, VLC_FALSE );
1069     add_key( "key-slower", '-', NULL, SLOWER_KEY_TEXT, SLOWER_KEY_LONGTEXT, VLC_FALSE );
1070     add_key( "key-next", 'n', NULL, NEXT_KEY_TEXT, NEXT_KEY_LONGTEXT, VLC_FALSE );
1071     add_key( "key-prev", 'p', NULL, PREV_KEY_TEXT, PREV_KEY_LONGTEXT, VLC_FALSE );
1072     add_key( "key-stop", 's', NULL, STOP_KEY_TEXT, STOP_KEY_LONGTEXT, VLC_FALSE );
1073     add_key( "key-position", 't', NULL, POSITION_KEY_TEXT, POSITION_KEY_LONGTEXT, VLC_TRUE );
1074     add_key( "key-jump-10sec", KEY_MODIFIER_ALT|KEY_LEFT, NULL, JB10SEC_KEY_TEXT, JB10SEC_KEY_LONGTEXT, VLC_FALSE );
1075     add_key( "key-jump+10sec", KEY_MODIFIER_ALT|KEY_RIGHT, NULL, JF10SEC_KEY_TEXT, JF10SEC_KEY_LONGTEXT, VLC_FALSE );
1076     add_key( "key-jump-1min", KEY_MODIFIER_CTRL|KEY_LEFT, NULL, JB1MIN_KEY_TEXT, JB1MIN_KEY_LONGTEXT, VLC_FALSE );
1077     add_key( "key-jump+1min", KEY_MODIFIER_CTRL|KEY_RIGHT, NULL, JF1MIN_KEY_TEXT, JF1MIN_KEY_LONGTEXT, VLC_FALSE );
1078     add_key( "key-jump-5min", KEY_MODIFIER_CTRL|KEY_MODIFIER_ALT|KEY_LEFT, NULL, JB5MIN_KEY_TEXT, JB5MIN_KEY_LONGTEXT, VLC_FALSE );
1079     add_key( "key-jump+5min", KEY_MODIFIER_CTRL|KEY_MODIFIER_ALT|KEY_RIGHT, NULL, JF5MIN_KEY_TEXT, JF5MIN_KEY_LONGTEXT, VLC_FALSE );
1080     add_key( "key-nav-activate", KEY_ENTER, NULL, NAV_ACTIVATE_KEY_TEXT, NAV_ACTIVATE_KEY_LONGTEXT, VLC_TRUE );
1081     add_key( "key-nav-up", KEY_UP, NULL, NAV_UP_KEY_TEXT, NAV_UP_KEY_LONGTEXT, VLC_TRUE );
1082     add_key( "key-nav-down", KEY_DOWN, NULL, NAV_DOWN_KEY_TEXT, NAV_DOWN_KEY_LONGTEXT, VLC_TRUE );
1083     add_key( "key-nav-left", KEY_LEFT, NULL, NAV_LEFT_KEY_TEXT, NAV_LEFT_KEY_LONGTEXT, VLC_TRUE );
1084     add_key( "key-nav-right", KEY_RIGHT, NULL, NAV_RIGHT_KEY_TEXT, NAV_RIGHT_KEY_LONGTEXT, VLC_TRUE );
1085     add_key( "key-quit", KEY_MODIFIER_CTRL|'q', NULL, QUIT_KEY_TEXT, QUIT_KEY_LONGTEXT, VLC_FALSE );
1086     add_key( "key-vol-up", 'a', NULL, VOL_UP_KEY_TEXT, VOL_UP_KEY_LONGTEXT, VLC_FALSE );
1087     add_key( "key-vol-down", 'z', NULL, VOL_DOWN_KEY_TEXT, VOL_DOWN_KEY_LONGTEXT, VLC_FALSE );
1088     add_key( "key-vol-mute", 'm', NULL, VOL_MUTE_KEY_TEXT, VOL_MUTE_KEY_LONGTEXT, VLC_FALSE );
1089     add_key( "key-subdelay-up", KEY_MODIFIER_COMMAND|'h', NULL,
1090              SUBDELAY_UP_KEY_TEXT, SUBDELAY_UP_KEY_LONGTEXT, VLC_TRUE );
1091     add_key( "key-subdelay-down", KEY_MODIFIER_COMMAND|'j', NULL,
1092              SUBDELAY_DOWN_KEY_TEXT, SUBDELAY_DOWN_KEY_LONGTEXT, VLC_TRUE );
1093     add_key( "key-set-bookmark1", KEY_MODIFIER_CTRL|KEY_F1, NULL, SET_BOOKMARK1_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1094     add_key( "key-set-bookmark2", KEY_MODIFIER_CTRL|KEY_F2, NULL, SET_BOOKMARK2_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1095     add_key( "key-set-bookmark3", KEY_MODIFIER_CTRL|KEY_F3, NULL, SET_BOOKMARK3_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1096     add_key( "key-set-bookmark4", KEY_MODIFIER_CTRL|KEY_F4, NULL, SET_BOOKMARK4_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1097     add_key( "key-set-bookmark5", KEY_MODIFIER_CTRL|KEY_F5, NULL, SET_BOOKMARK5_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1098     add_key( "key-set-bookmark6", KEY_MODIFIER_CTRL|KEY_F6, NULL, SET_BOOKMARK6_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1099     add_key( "key-set-bookmark7", KEY_MODIFIER_CTRL|KEY_F7, NULL, SET_BOOKMARK7_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1100     add_key( "key-set-bookmark8", KEY_MODIFIER_CTRL|KEY_F8, NULL, SET_BOOKMARK8_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1101     add_key( "key-set-bookmark9", KEY_MODIFIER_CTRL|KEY_F9, NULL, SET_BOOKMARK9_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1102     add_key( "key-set-bookmark10", KEY_MODIFIER_CTRL|KEY_F10, NULL, SET_BOOKMARK10_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1103     add_key( "key-play-bookmark1", KEY_F1, NULL, PLAY_BOOKMARK1_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1104     add_key( "key-play-bookmark2", KEY_F2, NULL, PLAY_BOOKMARK2_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1105     add_key( "key-play-bookmark3", KEY_F3, NULL, PLAY_BOOKMARK3_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1106     add_key( "key-play-bookmark4", KEY_F4, NULL, PLAY_BOOKMARK4_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1107     add_key( "key-play-bookmark5", KEY_F5, NULL, PLAY_BOOKMARK5_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1108     add_key( "key-play-bookmark6", KEY_F6, NULL, PLAY_BOOKMARK6_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1109     add_key( "key-play-bookmark7", KEY_F7, NULL, PLAY_BOOKMARK7_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1110     add_key( "key-play-bookmark8", KEY_F8, NULL, PLAY_BOOKMARK8_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1111     add_key( "key-play-bookmark9", KEY_F9, NULL, PLAY_BOOKMARK9_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1112     add_key( "key-play-bookmark10", KEY_F10, NULL, PLAY_BOOKMARK10_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1113     add_key( "key-history-back", KEY_MODIFIER_CTRL|'[', NULL, HISTORY_BACK_TEXT, HISTORY_BACK_LONGTEXT, VLC_TRUE );
1114     add_key( "key-history-forward", KEY_MODIFIER_CTRL|']', NULL, HISTORY_FORWARD_TEXT, HISTORY_FORWARD_LONGTEXT, VLC_TRUE );
1115     add_key( "key-audio-track", 'l', NULL, AUDIO_TRACK_KEY_TEXT, AUDIO_TRACK_KEY_LONGTEXT, VLC_FALSE );
1116     add_key( "key-subtitle-track", 's', NULL, SUBTITLE_TRACK_KEY_TEXT, SUBTITLE_TRACK_KEY_LONGTEXT, VLC_FALSE );
1117 #endif
1118
1119     /* Usage (mainly useful for cmd line stuff) */
1120     add_usage_hint( PLAYLIST_USAGE );
1121
1122     set_description( N_("main program") );
1123     set_capability( "main", 100 );
1124 vlc_module_end();
1125
1126 static module_config_t p_help_config[] =
1127 {
1128     { CONFIG_ITEM_BOOL, NULL, "help", 'h',
1129       N_("print help (can be combined with --advanced)") },
1130     { CONFIG_ITEM_BOOL, NULL, "longhelp", 'H',
1131       N_("print detailed help (can be combined with --advanced)") },
1132     { CONFIG_ITEM_BOOL, NULL, "list", 'l',
1133       N_("print a list of available modules") },
1134     { CONFIG_ITEM_STRING, NULL, "module", 'p',
1135       N_("print help on module (can be combined with --advanced)") },
1136     { CONFIG_ITEM_BOOL, NULL, "save-config", '\0',
1137       N_("save the current command line options in the config") },
1138     { CONFIG_ITEM_BOOL, NULL, "reset-config", '\0',
1139       N_("reset the current config to the default values") },
1140     { CONFIG_ITEM_STRING, NULL, "config", '\0',
1141       N_("use alternate config file") },
1142     { CONFIG_ITEM_BOOL, NULL, "reset-plugins-cache", '\0',
1143       N_("resets the current plugins cache") },
1144     { CONFIG_ITEM_BOOL, NULL, "version", '\0',
1145       N_("print version information") },
1146     { CONFIG_HINT_END, NULL, NULL, '\0', NULL }
1147 };
1148
1149 /*****************************************************************************
1150  * End configuration.
1151  *****************************************************************************/
1152
1153 /*****************************************************************************
1154  * Initializer for the vlc_t structure storing the action / key associations
1155  *****************************************************************************/
1156 static struct hotkey p_hotkeys[] =
1157 {
1158     { "key-quit", ACTIONID_QUIT, 0 },
1159     { "key-play-pause", ACTIONID_PLAY_PAUSE, 0 },
1160     { "key-play", ACTIONID_PLAY, 0 },
1161     { "key-pause", ACTIONID_PAUSE, 0 },
1162     { "key-stop", ACTIONID_STOP, 0 },
1163     { "key-position", ACTIONID_POSITION, 0 },
1164     { "key-jump-10sec", ACTIONID_JUMP_BACKWARD_10SEC, 0 },
1165     { "key-jump+10sec", ACTIONID_JUMP_FORWARD_10SEC, 0 },
1166     { "key-jump-1min", ACTIONID_JUMP_BACKWARD_1MIN, 0 },
1167     { "key-jump+1min", ACTIONID_JUMP_FORWARD_1MIN, 0 },
1168     { "key-jump-5min", ACTIONID_JUMP_BACKWARD_5MIN, 0 },
1169     { "key-jump+5min", ACTIONID_JUMP_FORWARD_5MIN, 0 },
1170     { "key-prev", ACTIONID_PREV, 0 },
1171     { "key-next", ACTIONID_NEXT, 0 },
1172     { "key-faster", ACTIONID_FASTER, 0 },
1173     { "key-slower", ACTIONID_SLOWER, 0 },
1174     { "key-fullscreen", ACTIONID_FULLSCREEN, 0 },
1175     { "key-vol-up", ACTIONID_VOL_UP, 0 },
1176     { "key-vol-down", ACTIONID_VOL_DOWN, 0 },
1177     { "key-vol-mute", ACTIONID_VOL_MUTE, 0 },
1178     { "key-subdelay-down", ACTIONID_SUBDELAY_DOWN, 0 },
1179     { "key-subdelay-up", ACTIONID_SUBDELAY_UP, 0 },
1180     { "key-nav-activate", ACTIONID_NAV_ACTIVATE, 0 },
1181     { "key-nav-up", ACTIONID_NAV_UP, 0 },
1182     { "key-nav-down", ACTIONID_NAV_DOWN, 0 },
1183     { "key-nav-left", ACTIONID_NAV_LEFT, 0 },
1184     { "key-nav-right", ACTIONID_NAV_RIGHT, 0 },
1185     { "key-set-bookmark1", ACTIONID_SET_BOOKMARK1, 0},
1186     { "key-set-bookmark2", ACTIONID_SET_BOOKMARK2, 0},
1187     { "key-set-bookmark3", ACTIONID_SET_BOOKMARK3, 0},
1188     { "key-set-bookmark4", ACTIONID_SET_BOOKMARK4, 0},
1189     { "key-set-bookmark5", ACTIONID_SET_BOOKMARK5, 0},
1190     { "key-set-bookmark6", ACTIONID_SET_BOOKMARK6, 0},
1191     { "key-set-bookmark7", ACTIONID_SET_BOOKMARK7, 0},
1192     { "key-set-bookmark8", ACTIONID_SET_BOOKMARK8, 0},
1193     { "key-set-bookmark9", ACTIONID_SET_BOOKMARK9, 0},
1194     { "key-set-bookmark10", ACTIONID_SET_BOOKMARK10, 0},
1195     { "key-play-bookmark1", ACTIONID_PLAY_BOOKMARK1, 0},
1196     { "key-play-bookmark2", ACTIONID_PLAY_BOOKMARK2, 0},
1197     { "key-play-bookmark3", ACTIONID_PLAY_BOOKMARK3, 0},
1198     { "key-play-bookmark4", ACTIONID_PLAY_BOOKMARK4, 0},
1199     { "key-play-bookmark5", ACTIONID_PLAY_BOOKMARK5, 0},
1200     { "key-play-bookmark6", ACTIONID_PLAY_BOOKMARK6, 0},
1201     { "key-play-bookmark7", ACTIONID_PLAY_BOOKMARK7, 0},
1202     { "key-play-bookmark8", ACTIONID_PLAY_BOOKMARK8, 0},
1203     { "key-play-bookmark9", ACTIONID_PLAY_BOOKMARK9, 0},
1204     { "key-play-bookmark10", ACTIONID_PLAY_BOOKMARK10, 0},
1205     { "key-history-back", ACTIONID_HISTORY_BACK, 0},
1206     { "key-history-forward", ACTIONID_HISTORY_FORWARD, 0},
1207     { "key-audio-track", ACTIONID_AUDIO_TRACK, 0},
1208     { "key-subtitle-track", ACTIONID_SUBTITLE_TRACK, 0},
1209     { NULL, 0, 0 }
1210 };