]> git.sesse.net Git - vlc/blob - include/vlc_help.h
8e0f92231a3450e32d45625bfd987723b505d573
[vlc] / include / vlc_help.h
1 /*****************************************************************************
2  * vlc_help.h: Help strings
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id: vlc_help.h,v 1.3 2003/10/08 19:40:42 gbazin Exp $
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Anil Daoud <anil@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 #ifndef _VLC_HELP_H
26 #define _VLC_HELP_H 1
27
28 /*
29  *  First, we need help strings for the General Settings and for the
30  *  Plugins screen
31  */
32 #define GENERAL_TITLE N_( "VLC Preferences" )
33 #define GENERAL_HELP N_( \
34     "Configure some global options in General Settings " \
35      "and configure each VLC plugin in the Plugins section.\n" \
36      "Click on 'Advanced Options' to see every options." )
37
38 #define PLUGIN_TITLE N_( "VLC Plugins Preferences" )
39 #define PLUGIN_HELP N_( \
40     "In this tree, you can set options for every plugin used by VLC.\n" \
41     "Plugins are sorted by type.\nHave fun tuning VLC !" )
42
43 /*
44  *  Then, help for each module capabilities.
45  */
46
47 #define ACCESS_TITLE N_( "Access modules settings" )
48 #define ACCESS_HELP N_( \
49     "Settings related to the various access methods used by VLC.\n" \
50     "Common settings you may want to alter are http proxy or " \
51     "caching settings." )
52
53 #define AUDIO_FILTER_TITLE N_("Audio filters settings")
54 #define AUDIO_FILTER_HELP N_( \
55     "Audio filters can be set in the Audio section, and configured " \
56     "here.")
57
58 #define AOUT_TITLE N_("Audio output modules settings")
59 #define AOUT_HELP N_("These are general settings for audio output modules.")
60
61 #define CHROMA_TITLE N_("Chroma modules settings")
62 #define CHROMA_HELP N_(" ")
63
64 #define DECODER_TITLE  N_("Decoder modules settings" )
65 #define DECODER_HELP N_( \
66     "In the Subsdec section you may want to set your preferred subtitles " \
67     "text encoding.")
68
69 #define DEMUX_TITLE N_("Demuxers settings")
70 #define DEMUX_HELP N_( " ")
71
72 #define INTERFACE_TITLE N_("Interface plugins settings")
73 #define INTERFACE_HELP  N_( \
74     "Interface plugins can be enabled in the Interface section and " \
75     "configured here.")
76
77 #define SOUT_TITLE N_("Stream output access modules settings")
78 #define SOUT_HELP N_( \
79     "In this section you can set the caching value for the UDP stream" \
80     "output access module.")
81
82 #define SUBTITLE_DEMUX_TITLE N_("Subtitle demuxer settings")
83 #define SUBTITLE_DEMUX_HELP N_( \
84     "In this section you can force the behaviour of the subtitle demuxer, " \
85     "for example by setting the subtitles type or file name.")
86
87 #define TEXT_TITLE N_("Text renderer settings")
88 #define TEXT_HELP N_( \
89     "Use these settings to choose the font you want VLC to use for text " \
90     "rendering (to display subtitles for example).")
91
92 #define VOUT__TITLE N_("Video output modules settings")
93 #define VOUT_HELP N_( \
94     "Choose your preferred video output in the Video section, " \
95     "and configure it here." )
96
97 #define VIDEO_FILTER_TITLE N_("Video filters settings")
98 #define VIDEO_FILTER_HELP N_( \
99     "Video filters can be enabled in the Video section and configured " \
100     "here.\n" \
101     "Configure the \"adjust\" filter to modify contrast/hue/saturation " \
102     " settings.")
103
104 /*
105  *  A little help for modules with unknown capabilities
106  */
107
108 #define UNKNOWN_TITLE N_("No help available" )
109 #define UNKNOWN_HELP N_("No help is available for these modules")
110
111 #endif /* VLC_HELP_H */