annotate help_mp-en.h @ 4559:5dc383bb1c82

added mga_top_reserved module parameter to skip a configurable amount of space at the top of video memory. this is needed to prevent corruption of the kernel's console font when using the "fastfont" option with matroxfb.
author rfelker
date Thu, 07 Feb 2002 02:07:29 +0000
parents 501473faf365
children 1155b2d22f07
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2007
0c22e54b35d5 translations and their status
arpi
parents: 1976
diff changeset
1 // MASTER FILE. Use this file as base for translation!
0c22e54b35d5 translations and their status
arpi
parents: 1976
diff changeset
2
0c22e54b35d5 translations and their status
arpi
parents: 1976
diff changeset
3 // Translated files should be uploaded to ftp://mplayerhq.hu/MPlayer/incoming
0c22e54b35d5 translations and their status
arpi
parents: 1976
diff changeset
4 // and send a notify message to mplayer-dev-eng maillist.
0c22e54b35d5 translations and their status
arpi
parents: 1976
diff changeset
5
1973
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
6 // ========================= MPlayer help ===========================
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
7
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
8 #ifdef HELP_MP_DEFINE_STATIC
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
9 static char* banner_text=
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
10 "\n\n"
3952
2d1021ce5bbf Happy new year! :)
arpi
parents: 3655
diff changeset
11 "MPlayer " VERSION "(C) 2000-2002 Arpad Gereoffy (see DOCS!)\n"
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
12 "\n";
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
13
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
14 static char help_text[]=
1972
78924572fddf help updated
arpi
parents: 1885
diff changeset
15 #ifdef HAVE_NEW_GUI
78924572fddf help updated
arpi
parents: 1885
diff changeset
16 "Usage: mplayer [-gui] [options] [path/]filename\n"
78924572fddf help updated
arpi
parents: 1885
diff changeset
17 #else
78924572fddf help updated
arpi
parents: 1885
diff changeset
18 "Usage: mplayer [options] [path/]filename\n"
78924572fddf help updated
arpi
parents: 1885
diff changeset
19 #endif
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
20 "\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
21 "Options:\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
22 " -vo <drv[:dev]> select video output driver & device (see '-vo help' for list)\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
23 " -ao <drv[:dev]> select audio output driver & device (see '-ao help' for list)\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
24 " -vcd <trackno> play VCD (video cd) track from device instead of plain file\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
25 #ifdef HAVE_LIBCSS
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
26 " -dvdauth <dev> specify DVD device for authentication (for encrypted discs)\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
27 #endif
1972
78924572fddf help updated
arpi
parents: 1885
diff changeset
28 #ifdef USE_DVDREAD
78924572fddf help updated
arpi
parents: 1885
diff changeset
29 " -dvd <titleno> play DVD title/track from device instead of plain file\n"
78924572fddf help updated
arpi
parents: 1885
diff changeset
30 #endif
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
31 " -ss <timepos> seek to given (seconds or hh:mm:ss) position\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
32 " -nosound don't play sound\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
33 #ifdef USE_FAKE_MONO
1972
78924572fddf help updated
arpi
parents: 1885
diff changeset
34 " -stereo <mode> select MPEG1 stereo output (0:stereo 1:left 2:right)\n"
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
35 #endif
3181
c8edb0691f09 Extended oss output driver and libac3 to support 4 and 6 channel output mixes. added -channels command line option
steve
parents: 3102
diff changeset
36 " -channels <n> target number of audio output channels\n"
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
37 " -fs -vm -zoom fullscreen playing options (fullscr,vidmode chg,softw.scale)\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
38 " -x <x> -y <y> scale image to <x> * <y> resolution [if -vo driver supports!]\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
39 " -sub <file> specify subtitle file to use (see also -subfps, -subdelay)\n"
2647
679d3b21bedb -playlist option patch by Panagiotis Issaris <takis@lumumba.luc.ac.be>
arpi
parents: 2163
diff changeset
40 " -playlist <file> specify playlist file\n"
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
41 " -vid x -aid y options to select video (x) and audio (y) stream to play\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
42 " -fps x -srate y options to change video (x fps) and audio (y Hz) rate\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
43 " -pp <quality> enable postprocessing filter (0-4 for DivX, 0-63 for mpegs)\n"
1972
78924572fddf help updated
arpi
parents: 1885
diff changeset
44 " -nobps use alternative A-V sync method for AVI files (may help!)\n"
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
45 " -framedrop enable frame-dropping (for slow machines)\n"
3655
18cca6a6816c Plugger patch by Sam Lin
atmos4
parents: 3595
diff changeset
46 " -wid <window id> use existing window for video output (useful with plugger!)\n"
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
47 "\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
48 "Keys:\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
49 " <- or -> seek backward/forward 10 seconds\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
50 " up or down seek backward/forward 1 minute\n"
2647
679d3b21bedb -playlist option patch by Panagiotis Issaris <takis@lumumba.luc.ac.be>
arpi
parents: 2163
diff changeset
51 " < or > seek backward/forward in playlist\n"
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
52 " p or SPACE pause movie (press any key to continue)\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
53 " q or ESC stop playing and quit program\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
54 " + or - adjust audio delay by +/- 0.1 second\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
55 " o cycle OSD mode: none / seekbar / seekbar+timer\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
56 " * or / increase or decrease volume (press 'm' to select master/pcm)\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
57 " z or x adjust subtitle delay by +/- 0.1 second\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
58 "\n"
1972
78924572fddf help updated
arpi
parents: 1885
diff changeset
59 " * * * SEE MANPAGE FOR DETAILS, FURTHER (ADVANCED) OPTIONS AND KEYS ! * * *\n"
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
60 "\n";
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
61 #endif
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
62
1973
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
63 // ========================= MPlayer messages ===========================
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
64
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
65 // mplayer.c:
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
66
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
67 #define MSGTR_Exiting "\nExiting... (%s)\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
68 #define MSGTR_Exit_frames "Requested number of frames played"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
69 #define MSGTR_Exit_quit "Quit"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
70 #define MSGTR_Exit_eof "End of file"
1638
671802bf867b MSGTR_Exit_error added
arpi
parents: 1618
diff changeset
71 #define MSGTR_Exit_error "Fatal error"
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
72 #define MSGTR_IntBySignal "\nMPlayer interrupted by signal %d in module: %s \n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
73 #define MSGTR_NoHomeDir "Can't find HOME dir\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
74 #define MSGTR_GetpathProblem "get_path(\"config\") problem\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
75 #define MSGTR_CreatingCfgFile "Creating config file: %s\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
76 #define MSGTR_InvalidVOdriver "Invalid video output driver name: %s\nUse '-vo help' to get a list of available video drivers.\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
77 #define MSGTR_InvalidAOdriver "Invalid audio output driver name: %s\nUse '-ao help' to get a list of available audio drivers.\n"
1708
b2e842edc417 codecs.conf message...
arpi
parents: 1638
diff changeset
78 #define MSGTR_CopyCodecsConf "(copy/ln etc/codecs.conf (from MPlayer source tree) to ~/.mplayer/codecs.conf)\n"
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
79 #define MSGTR_CantLoadFont "Can't load font: %s\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
80 #define MSGTR_CantLoadSub "Can't load subtitles: %s\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
81 #define MSGTR_ErrorDVDkey "Error processing DVD KEY.\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
82 #define MSGTR_CmdlineDVDkey "DVD command line requested key is stored for descrambling.\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
83 #define MSGTR_DVDauthOk "DVD auth sequence seems to be OK.\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
84 #define MSGTR_DumpSelectedSteramMissing "dump: FATAL: selected stream missing!\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
85 #define MSGTR_CantOpenDumpfile "Can't open dump file!!!\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
86 #define MSGTR_CoreDumped "core dumped :)\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
87 #define MSGTR_FPSnotspecified "FPS not specified (or invalid) in the header! Use the -fps option!\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
88 #define MSGTR_NoVideoStream "Sorry, no video stream... it's unplayable yet\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
89 #define MSGTR_TryForceAudioFmt "Trying to force audio codec driver family %d ...\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
90 #define MSGTR_CantFindAfmtFallback "Can't find audio codec for forced driver family, fallback to other drivers.\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
91 #define MSGTR_CantFindAudioCodec "Can't find codec for audio format 0x%X !\n"
2163
bd20aefca3fa typo and DOCS fixes by pl <p_l@gmx.fr>
arpi
parents: 2007
diff changeset
92 #define MSGTR_TryUpgradeCodecsConfOrRTFM "*** Try to upgrade %s from etc/codecs.conf\n*** If it's still not OK, then read DOCS/codecs.html!\n"
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
93 #define MSGTR_CouldntInitAudioCodec "Couldn't initialize audio codec! -> nosound\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
94 #define MSGTR_TryForceVideoFmt "Trying to force video codec driver family %d ...\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
95 #define MSGTR_CantFindVfmtFallback "Can't find video codec for forced driver family, fallback to other drivers.\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
96 #define MSGTR_CantFindVideoCodec "Can't find codec for video format 0x%X !\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
97 #define MSGTR_VOincompCodec "Sorry, selected video_out device is incompatible with this codec.\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
98 #define MSGTR_CouldntInitVideoCodec "FATAL: Couldn't initialize video codec :(\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
99 #define MSGTR_EncodeFileExists "File already exists: %s (don't overwrite your favourite AVI!)\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
100 #define MSGTR_CantCreateEncodeFile "Cannot create file for encoding\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
101 #define MSGTR_CannotInitVO "FATAL: Cannot initialize video driver!\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
102 #define MSGTR_CannotInitAO "couldn't open/init audio device -> NOSOUND\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
103 #define MSGTR_StartPlaying "Start playing...\n"
3294
4136c33be229 extedned TOO SLOW description
arpi
parents: 3181
diff changeset
104
4136c33be229 extedned TOO SLOW description
arpi
parents: 3181
diff changeset
105 #define MSGTR_SystemTooSlow "\n\n"\
4136c33be229 extedned TOO SLOW description
arpi
parents: 3181
diff changeset
106 " ************************************************\n"\
4136c33be229 extedned TOO SLOW description
arpi
parents: 3181
diff changeset
107 " **** Your system is too SLOW to play this! ****\n"\
4136c33be229 extedned TOO SLOW description
arpi
parents: 3181
diff changeset
108 " ************************************************\n"\
4136c33be229 extedned TOO SLOW description
arpi
parents: 3181
diff changeset
109 "!!! Possible reasons, problems, workaround: \n"\
4136c33be229 extedned TOO SLOW description
arpi
parents: 3181
diff changeset
110 "- Most common: broken/buggy _audio_ driver. workaround: try -ao sdl or use\n"\
4136c33be229 extedned TOO SLOW description
arpi
parents: 3181
diff changeset
111 " ALSA 0.5 or oss emulation of ALSA 0.9. read DOCS/sound.html for more tipps!\n"\
4136c33be229 extedned TOO SLOW description
arpi
parents: 3181
diff changeset
112 "- Slow video output. try different -vo driver (for list: -vo help) or try\n"\
4136c33be229 extedned TOO SLOW description
arpi
parents: 3181
diff changeset
113 " with -framedrop ! Read DOCS/video.html for video tuning/speedup tipps.\n"\
4136c33be229 extedned TOO SLOW description
arpi
parents: 3181
diff changeset
114 "- Slow cpu. don't try to playback big dvd/divx on slow cpu! try -hardframedrop\n"\
4136c33be229 extedned TOO SLOW description
arpi
parents: 3181
diff changeset
115 "- Broken file. try various combinations of these: -nobps -ni -mc 0 -forceidx\n"\
4136c33be229 extedned TOO SLOW description
arpi
parents: 3181
diff changeset
116 "If none of these apply, then read DOCS/bugreports.html !\n\n"
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
117
1973
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
118 #define MSGTR_NoGui "MPlayer was compiled WITHOUT GUI support!\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
119 #define MSGTR_GuiNeedsX "MPlayer GUI requires X11!\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
120 #define MSGTR_Playing "Playing %s\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
121 #define MSGTR_NoSound "Audio: no sound!!!\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
122 #define MSGTR_FPSforced "FPS forced to be %5.3f (ftime: %5.3f)\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
123
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
124 // open.c, stream.c:
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
125 #define MSGTR_CdDevNotfound "CD-ROM Device '%s' not found!\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
126 #define MSGTR_ErrTrackSelect "Error selecting VCD track!"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
127 #define MSGTR_ReadSTDIN "Reading from stdin...\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
128 #define MSGTR_UnableOpenURL "Unable to open URL: %s\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
129 #define MSGTR_ConnToServer "Connected to server: %s\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
130 #define MSGTR_FileNotFound "File not found: '%s'\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
131
1973
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
132 #define MSGTR_CantOpenDVD "Couldn't open DVD device: %s\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
133 #define MSGTR_DVDwait "Reading disc structure, please wait...\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
134 #define MSGTR_DVDnumTitles "There are %d titles on this DVD.\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
135 #define MSGTR_DVDinvalidTitle "Invalid DVD title number: %d\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
136 #define MSGTR_DVDnumChapters "There are %d chapters in this DVD title.\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
137 #define MSGTR_DVDinvalidChapter "Invalid DVD chapter number: %d\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
138 #define MSGTR_DVDnumAngles "There are %d angles in this DVD title.\n"
1976
4c73c398bdcb 2 typos fixed
gabucino
parents: 1973
diff changeset
139 #define MSGTR_DVDinvalidAngle "Invalid DVD angle number: %d\n"
1973
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
140 #define MSGTR_DVDnoIFO "Can't open the IFO file for DVD title %d.\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
141 #define MSGTR_DVDnoVOBs "Can't open title VOBS (VTS_%02d_1.VOB).\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
142 #define MSGTR_DVDopenOk "DVD successfully opened!\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
143
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
144 // demuxer.c, demux_*.c:
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
145 #define MSGTR_AudioStreamRedefined "Warning! Audio stream header %d redefined!\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
146 #define MSGTR_VideoStreamRedefined "Warning! video stream header %d redefined!\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
147 #define MSGTR_TooManyAudioInBuffer "\nDEMUXER: Too many (%d in %d bytes) audio packets in the buffer!\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
148 #define MSGTR_TooManyVideoInBuffer "\nDEMUXER: Too many (%d in %d bytes) video packets in the buffer!\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
149 #define MSGTR_MaybeNI "(maybe you play a non-interleaved stream/file or the codec failed)\n"
4189
6871d97e4261 initial support for FILM file demuxing
melanson
parents: 3952
diff changeset
150 #define MSGTR_DetectedFILMfile "Detected FILM file format!\n"
3102
fe4e66b588cc added the "FLI format detected" message to all the language help files
melanson
parents: 2659
diff changeset
151 #define MSGTR_DetectedFLIfile "Detected FLI file format!\n"
4449
501473faf365 added help strings for RoQ and REAL file detection
melanson
parents: 4189
diff changeset
152 #define MSGTR_DetectedROQfile "Detected RoQ file format!\n"
501473faf365 added help strings for RoQ and REAL file detection
melanson
parents: 4189
diff changeset
153 #define MSGTR_DetectedREALfile "Detected REAL file format!\n"
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
154 #define MSGTR_DetectedAVIfile "Detected AVI file format!\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
155 #define MSGTR_DetectedASFfile "Detected ASF file format!\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
156 #define MSGTR_DetectedMPEGPESfile "Detected MPEG-PES file format!\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
157 #define MSGTR_DetectedMPEGPSfile "Detected MPEG-PS file format!\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
158 #define MSGTR_DetectedMPEGESfile "Detected MPEG-ES file format!\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
159 #define MSGTR_DetectedQTMOVfile "Detected QuickTime/MOV file format!\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
160 #define MSGTR_MissingMpegVideo "Missing MPEG video stream!? contact the author, it may be a bug :(\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
161 #define MSGTR_InvalidMPEGES "Invalid MPEG-ES stream??? contact the author, it may be a bug :(\n"
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
162 #define MSGTR_FormatNotRecognized "============= Sorry, this file format not recognized/supported ===============\n"\
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
163 "=== If this file is an AVI, ASF or MPEG stream, please contact the author! ===\n"
1973
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
164 #define MSGTR_MissingVideoStream "No video stream found!\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
165 #define MSGTR_MissingAudioStream "No Audio stream found... ->nosound\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
166 #define MSGTR_MissingVideoStreamBug "Missing video stream!? Contact the author, it may be a bug :(\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
167
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
168 #define MSGTR_DoesntContainSelectedStream "demux: file doesn't contain the selected audio or video stream\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
169
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
170 #define MSGTR_NI_Forced "Forced"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
171 #define MSGTR_NI_Detected "Detected"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
172 #define MSGTR_NI_Message "%s NON-INTERLEAVED AVI file-format!\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
173
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
174 #define MSGTR_UsingNINI "Using NON-INTERLEAVED Broken AVI file-format!\n"
1976
4c73c398bdcb 2 typos fixed
gabucino
parents: 1973
diff changeset
175 #define MSGTR_CouldntDetFNo "Couldn't determine number of frames (for absolute seek) \n"
1973
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
176 #define MSGTR_CantSeekRawAVI "Can't seek in raw .AVI streams! (index required, try with the -idx switch!) \n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
177 #define MSGTR_CantSeekFile "Can't seek in this file! \n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
178
2163
bd20aefca3fa typo and DOCS fixes by pl <p_l@gmx.fr>
arpi
parents: 2007
diff changeset
179 #define MSGTR_EncryptedVOB "Encrypted VOB file (not compiled with libcss support)! Read file DOCS/cd-dvd.html\n"
1973
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
180 #define MSGTR_EncryptedVOBauth "Encrypted stream but authentication was not requested by you!!\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
181
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
182 #define MSGTR_MOVcomprhdr "MOV: Compressed headers not (yet) supported!\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
183 #define MSGTR_MOVvariableFourCC "MOV: Warning! variable FOURCC detected!?\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
184 #define MSGTR_MOVtooManyTrk "MOV: Warning! too many tracks!"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
185 #define MSGTR_MOVnotyetsupp "\n****** Quicktime MOV format not yet supported!!!!!!! *******\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
186
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
187 // dec_video.c & dec_audio.c:
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
188 #define MSGTR_CantOpenCodec "could not open codec\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
189 #define MSGTR_CantCloseCodec "could not close codec\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
190
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
191 #define MSGTR_MissingDLLcodec "ERROR: Couldn't open required DirectShow codec: %s\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
192 #define MSGTR_ACMiniterror "Could not load/initialize Win32/ACM AUDIO codec (missing DLL file?)\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
193 #define MSGTR_MissingLAVCcodec "Can't find codec '%s' in libavcodec...\n"
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
194
1973
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
195 #define MSGTR_NoDShowSupport "MPlayer was compiled WITHOUT directshow support!\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
196 #define MSGTR_NoWfvSupport "Support for win32 codecs disabled, or unavailable on non-x86 platforms!\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
197 #define MSGTR_NoDivx4Support "MPlayer was compiled WITHOUT DivX4Linux (libdivxdecore.so) support!\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
198 #define MSGTR_NoLAVCsupport "MPlayer was compiled WITHOUT ffmpeg/libavcodec support!\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
199 #define MSGTR_NoACMSupport "Win32/ACM audio codec disabled, or unavailable on non-x86 CPU -> force nosound :(\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
200 #define MSGTR_NoDShowAudio "Compiled without DirectShow support -> force nosound :(\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
201 #define MSGTR_NoOggVorbis "OggVorbis audio codec disabled -> force nosound :(\n"
2659
39b8b9069f41 xacodec configure support
alex
parents: 2647
diff changeset
202 #define MSGTR_NoXAnimSupport "MPlayer was compiled WITHOUT XAnim support!\n"
1973
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
203
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
204 #define MSGTR_MpegPPhint "WARNING! You requested image postprocessing for an MPEG 1/2 video,\n" \
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
205 " but compiled MPlayer without MPEG 1/2 postprocessing support!\n" \
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
206 " #define MPEG12_POSTPROC in config.h, and recompile libmpeg2!\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
207 #define MSGTR_MpegNoSequHdr "MPEG: FATAL: EOF while searching for sequence header\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
208 #define MSGTR_CannotReadMpegSequHdr "FATAL: Cannot read sequence header!\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
209 #define MSGTR_CannotReadMpegSequHdrEx "FATAL: Cannot read sequence header extension!\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
210 #define MSGTR_BadMpegSequHdr "MPEG: Bad sequence header!\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
211 #define MSGTR_BadMpegSequHdrEx "MPEG: Bad sequence header extension!\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
212
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
213 #define MSGTR_ShMemAllocFail "Cannot allocate shared memory\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
214 #define MSGTR_CantAllocAudioBuf "Cannot allocate audio out buffer\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
215 #define MSGTR_NoMemForDecodedImage "not enough memory for decoded picture buffer (%ld bytes)\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
216
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
217 #define MSGTR_AC3notvalid "AC3 stream not valid.\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
218 #define MSGTR_AC3only48k "Only 48000 Hz streams supported.\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
219 #define MSGTR_UnknownAudio "Unknown/missing audio format, using nosound\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
220
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
221 // LIRC:
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
222 #define MSGTR_SettingUpLIRC "Setting up lirc support...\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
223 #define MSGTR_LIRCdisabled "You won't be able to use your remote control\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
224 #define MSGTR_LIRCopenfailed "Failed opening lirc support!\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
225 #define MSGTR_LIRCsocketerr "Something's wrong with the lirc socket: %s\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
226 #define MSGTR_LIRCcfgerr "Failed to read LIRC config file %s !\n"
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
227
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
228
5216f108cb4f all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents: 1972
diff changeset
229 // ====================== GUI messages/buttons ========================
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
230
1884
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
231 #ifdef HAVE_NEW_GUI
1618
2529379290e8 libdvdread desc.
nick
parents:
diff changeset
232
1884
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
233 // --- labels ---
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
234 #define MSGTR_About "About"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
235 #define MSGTR_FileSelect "Select file ..."
3499
93351eec9f1f Add subtitle loader for gui
pontscho
parents: 3294
diff changeset
236 #define MSGTR_SubtitleSelect "Select subtitle ..."
93351eec9f1f Add subtitle loader for gui
pontscho
parents: 3294
diff changeset
237 #define MSGTR_OtherSelect "Select ..."
1884
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
238 #define MSGTR_MessageBox "MessageBox"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
239 #define MSGTR_PlayList "PlayList"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
240 #define MSGTR_SkinBrowser "Skin Browser"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
241
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
242 // --- buttons ---
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
243 #define MSGTR_Ok "Ok"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
244 #define MSGTR_Cancel "Cancel"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
245 #define MSGTR_Add "Add"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
246 #define MSGTR_Remove "Remove"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
247
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
248 // --- error messages ---
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
249 #define MSGTR_NEMDB "Sorry, not enough memory for draw buffer."
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
250 #define MSGTR_NEMFMR "Sorry, not enough memory for menu rendering."
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
251 #define MSGTR_NEMFMM "Sorry, not enough memory for main window shape mask."
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
252
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
253 // --- skin loader error messages
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
254 #define MSGTR_SKIN_ERRORMESSAGE "[skin] error in skin config file on line %d: %s"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
255 #define MSGTR_SKIN_WARNING1 "[skin] warning in skin config file on line %d: widget found but before \"section\" not found ( %s )"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
256 #define MSGTR_SKIN_WARNING2 "[skin] warning in skin config file on line %d: widget found but before \"subsection\" not found (%s)"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
257 #define MSGTR_SKIN_BITMAP_16bit "16 bits or less depth bitmap not supported ( %s ).\n"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
258 #define MSGTR_SKIN_BITMAP_FileNotFound "file not found ( %s )\n"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
259 #define MSGTR_SKIN_BITMAP_BMPReadError "bmp read error ( %s )\n"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
260 #define MSGTR_SKIN_BITMAP_TGAReadError "tga read error ( %s )\n"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
261 #define MSGTR_SKIN_BITMAP_PNGReadError "png read error ( %s )\n"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
262 #define MSGTR_SKIN_BITMAP_RLENotSupported "RLE packed tga not supported ( %s )\n"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
263 #define MSGTR_SKIN_BITMAP_UnknownFileType "unknown file type ( %s )\n"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
264 #define MSGTR_SKIN_BITMAP_ConvertError "24 bit to 32 bit convert error ( %s )\n"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
265 #define MSGTR_SKIN_BITMAP_UnknownMessage "unknown message: %s\n"
2163
bd20aefca3fa typo and DOCS fixes by pl <p_l@gmx.fr>
arpi
parents: 2007
diff changeset
266 #define MSGTR_SKIN_FONT_NotEnoughtMemory "not enough memory\n"
1884
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
267 #define MSGTR_SKIN_FONT_TooManyFontsDeclared "too many fonts declared\n"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
268 #define MSGTR_SKIN_FONT_FontFileNotFound "font file not found\n"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
269 #define MSGTR_SKIN_FONT_FontImageNotFound "font image file not found\n"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
270 #define MSGTR_SKIN_FONT_NonExistentFontID "non-existent font identifier ( %s )\n"
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
271 #define MSGTR_SKIN_UnknownParameter "unknown parameter ( %s )\n"
2163
bd20aefca3fa typo and DOCS fixes by pl <p_l@gmx.fr>
arpi
parents: 2007
diff changeset
272 #define MSGTR_SKINBROWSER_NotEnoughMemory "[skinbrowser] not enough memory.\n"
3586
a0009a534428 itt a skin nem van hibauzenet igy.
pontscho
parents: 3499
diff changeset
273 #define MSGTR_SKIN_SKINCFG_SkinNotFound "Skin not found ( %s ).\n"
a0009a534428 itt a skin nem van hibauzenet igy.
pontscho
parents: 3499
diff changeset
274 #define MSGTR_SKIN_SKINCFG_SkinCfgReadError "Skin configfile read error ( %s ).\n"
3587
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
275 #define MSGTR_SKIN_LABEL "Skins:"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
276
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
277 // --- gtk menus
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
278 #define MSGTR_MENU_AboutMPlayer "About MPlayer"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
279 #define MSGTR_MENU_Open "Open ..."
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
280 #define MSGTR_MENU_PlayFile "Play file ..."
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
281 #define MSGTR_MENU_PlayVCD "Play VCD ..."
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
282 #define MSGTR_MENU_PlayDVD "Play DVD ..."
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
283 #define MSGTR_MENU_PlayURL "Play URL ..."
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
284 #define MSGTR_MENU_LoadSubtitle "Load subtitle ..."
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
285 #define MSGTR_MENU_Playing "Playing"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
286 #define MSGTR_MENU_Play "Play"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
287 #define MSGTR_MENU_Pause "Pause"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
288 #define MSGTR_MENU_Stop "Stop"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
289 #define MSGTR_MENU_NextStream "Next stream"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
290 #define MSGTR_MENU_PrevStream "Prev stream"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
291 #define MSGTR_MENU_Size "Size"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
292 #define MSGTR_MENU_NormalSize "Normal size"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
293 #define MSGTR_MENU_DoubleSize "Double size"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
294 #define MSGTR_MENU_FullScreen "Fullscreen"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
295 #define MSGTR_MENU_DVD "DVD"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
296 #define MSGTR_MENU_PlayDisc "Play disc ..."
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
297 #define MSGTR_MENU_ShowDVDMenu "Show DVD menu"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
298 #define MSGTR_MENU_Titles "Titles"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
299 #define MSGTR_MENU_Title "Title %2d"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
300 #define MSGTR_MENU_None "(none)"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
301 #define MSGTR_MENU_Chapters "Chapters"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
302 #define MSGTR_MENU_Chapter "Chapter %2d"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
303 #define MSGTR_MENU_AudioLanguages "Audio languages"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
304 #define MSGTR_MENU_SubtitleLanguages "Subtitle languages"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
305 #define MSGTR_MENU_PlayList "Playlist"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
306 #define MSGTR_MENU_SkinBrowser "Skin browser"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
307 #define MSGTR_MENU_Preferences "Preferences"
6e21fbb41a2b full language support for gui
pontscho
parents: 3586
diff changeset
308 #define MSGTR_MENU_Exit "Exit ..."
1884
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
309
3595
728258be2e86 lang support.
pontscho
parents: 3587
diff changeset
310 // --- messagebox
728258be2e86 lang support.
pontscho
parents: 3587
diff changeset
311 #define MSGTR_MSGBOX_LABEL_FatalError "fatal error ..."
728258be2e86 lang support.
pontscho
parents: 3587
diff changeset
312 #define MSGTR_MSGBOX_LABEL_Error "error ..."
728258be2e86 lang support.
pontscho
parents: 3587
diff changeset
313 #define MSGTR_MSGBOX_LABEL_Warning "warning ..."
728258be2e86 lang support.
pontscho
parents: 3587
diff changeset
314
1884
d21f8afc7680 add to multi lang support
pontscho
parents: 1708
diff changeset
315 #endif