comparison Gui/language.c @ 1693:d237c5d4b216

GUI version n-1
author arpi
date Sat, 25 Aug 2001 21:04:29 +0000
parents
children e8f61691814e
comparison
equal deleted inserted replaced
1692:6c98e425c091 1693:d237c5d4b216
1
2 // --- labels ---
3 char * langAbout = "About";
4 char * langFileSelect = "Select file ...";
5 char * langMessageBox = "MessageBox";
6 char * langPlayList = "PlayList";
7 char * langSkinBrowser = "Skin Browser";
8
9 // --- buttons ---
10 char * langOk = "Ok";
11 char * langCancel = "Cancel";
12 char * langAdd = "Add";
13 char * langRemove = "Remove";
14
15 // --- error messages ---
16 char * langNEMDB = "Sorry, not enough memory for draw buffer.";
17 char * langNEMFMR = "Sorry, not enough memory for menu rendering.";
18 char * langNEMFMM = "Sorry, not enough memory for main window shape mask.";
19 char * langLIRCSNW = "LIRC support not working. Disabled.";
20 char * langAudioDriverSelectNotSupported = "Your audio driver DOES NOT support select(). Recompile mplayer with #undef HAVE_AUDIO_SELECT in config.h !";
21 char * langNotSupportedFileFormat = "Sorry, this file format not recognized/supported. If this file is an AVI, ASF or MPEG stream, please contact the author!";
22 char * langCodecConfNotFound = "The codecs.conf config file not found. Please copy/link DOCS/codecs.conf to ~/.mplayer/codecs.conf.";
23 char * langErrorProcessingDVDKey = "Error processing DVD KEY.";
24 char * langErrorInDVDAuth = "Error in DVD authentication.";
25 char * langAVIMissing = "AVI_NI: missing video stream!? contact the author, it may be a bug. :(";
26 char * langAVIMissingVideoStream = "AVI: missing video stream!? contact the author, it may be a bug. :(";
27 char * langASFMissingVideoStream = "ASF: missing video stream!? contact the author, it may be a bug. :(";
28 char * langMPEGEOFNotFound = "MPEG: FATAL: EOF while searching for sequence header.";
29 char * langCannotAllocateSharedMem = "Cannot allocate shared memory. ( Not enough memory ? )";
30 char * langMPEGCannotReadSeqHeader = "MPEG: FATAL: Cannot read sequence header!";
31 char * langMPEGBadSeqHeader = "MPEG: Bad sequence header!";
32 char * langMPEGCannotReadSeqHeaderExt = "MPEG: FATAL: Cannot read sequence header extension!";
33 char * langMPEGBadSeqHeaderExt = "MPEG: Bad sequence header extension!";
34 char * langCantFindCodec = "Can't find codec for video format";
35 char * langSelectedVideoOutIncompTheCodec = "Sorry, selected video_out device is incompatible with this codec.";
36 char * langMPCompWithoutDSSupport = "MPlayer was compiled WITHOUT directshow support!";
37 char * langDSCodecNotFound = "ERROR: Couldn't open required DirectShow codec: %s. " \
38 "Maybe you forget to upgrade your win32 codecs?? It's time to download the new " \
39 "package from: ftp://thot.banki.hu/esp-team/linux/MPlayer/w32codec.zip! " \
40 "Or you should disable DShow support.";
41 char * langCantInitVideoDriver = "FATAL: Cannot initialize video driver!";
42 char * langUnknowError = "Unknow error. Please contact the developer team.";
43