1693
|
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.";
|
1706
|
19
|
|
20 #if 0
|
1693
|
21 char * langLIRCSNW = "LIRC support not working. Disabled.";
|
|
22 char * langAudioDriverSelectNotSupported = "Your audio driver DOES NOT support select(). Recompile mplayer with #undef HAVE_AUDIO_SELECT in config.h !";
|
|
23 char * langNotSupportedFileFormat = "Sorry, this file format not recognized/supported. If this file is an AVI, ASF or MPEG stream, please contact the author!";
|
|
24 char * langCodecConfNotFound = "The codecs.conf config file not found. Please copy/link DOCS/codecs.conf to ~/.mplayer/codecs.conf.";
|
|
25 char * langErrorProcessingDVDKey = "Error processing DVD KEY.";
|
|
26 char * langErrorInDVDAuth = "Error in DVD authentication.";
|
|
27 char * langAVIMissing = "AVI_NI: missing video stream!? contact the author, it may be a bug. :(";
|
|
28 char * langAVIMissingVideoStream = "AVI: missing video stream!? contact the author, it may be a bug. :(";
|
|
29 char * langASFMissingVideoStream = "ASF: missing video stream!? contact the author, it may be a bug. :(";
|
|
30 char * langMPEGEOFNotFound = "MPEG: FATAL: EOF while searching for sequence header.";
|
|
31 char * langCannotAllocateSharedMem = "Cannot allocate shared memory. ( Not enough memory ? )";
|
|
32 char * langMPEGCannotReadSeqHeader = "MPEG: FATAL: Cannot read sequence header!";
|
|
33 char * langMPEGBadSeqHeader = "MPEG: Bad sequence header!";
|
|
34 char * langMPEGCannotReadSeqHeaderExt = "MPEG: FATAL: Cannot read sequence header extension!";
|
|
35 char * langMPEGBadSeqHeaderExt = "MPEG: Bad sequence header extension!";
|
|
36 char * langCantFindCodec = "Can't find codec for video format";
|
|
37 char * langSelectedVideoOutIncompTheCodec = "Sorry, selected video_out device is incompatible with this codec.";
|
|
38 char * langMPCompWithoutDSSupport = "MPlayer was compiled WITHOUT directshow support!";
|
|
39 char * langDSCodecNotFound = "ERROR: Couldn't open required DirectShow codec: %s. " \
|
|
40 "Maybe you forget to upgrade your win32 codecs?? It's time to download the new " \
|
|
41 "package from: ftp://thot.banki.hu/esp-team/linux/MPlayer/w32codec.zip! " \
|
|
42 "Or you should disable DShow support.";
|
|
43 char * langCantInitVideoDriver = "FATAL: Cannot initialize video driver!";
|
|
44 char * langUnknowError = "Unknow error. Please contact the developer team.";
|
1706
|
45 #endif
|