comparison help_mp.h @ 1584:e49b3927c793

more messages for translator :)
author arpi
date Sat, 18 Aug 2001 20:32:09 +0000
parents 435f0a0e6a5c
children d0d7fcc5dcd6
comparison
equal deleted inserted replaced
1583:ca7bf882d2f8 1584:e49b3927c793
1 #ifdef HELP_MP_DEFINE_STATIC
1 static char* banner_text= 2 static char* banner_text=
2 "\n\n" 3 "\n\n"
3 "MPlayer " VERSION "(C) 2000-2001 Arpad Gereoffy (see DOCS/AUTHORS)\n" 4 "MPlayer " VERSION "(C) 2000-2001 Arpad Gereoffy (see DOCS/AUTHORS)\n"
4 "\n"; 5 "\n";
5 6
37 " * or / increase or decrease volume (press 'm' to select master/pcm)\n" 38 " * or / increase or decrease volume (press 'm' to select master/pcm)\n"
38 " z or x adjust subtitle delay by +/- 0.1 second\n" 39 " z or x adjust subtitle delay by +/- 0.1 second\n"
39 "\n" 40 "\n"
40 " * * * SEE MANPAGE FOR DETAILS, FURTHER OPTIONS AND KEYS ! * * *\n" 41 " * * * SEE MANPAGE FOR DETAILS, FURTHER OPTIONS AND KEYS ! * * *\n"
41 "\n"; 42 "\n";
43 #endif
42 44
43 // mplayer.c: 45 // mplayer.c:
44 46
45 #define MSGTR_Exiting "\nExiting... (%s)\n" 47 #define MSGTR_Exiting "\nExiting... (%s)\n"
46 #define MSGTR_Exit_frames "Requested number of frames played" 48 #define MSGTR_Exit_frames "Requested number of frames played"
80 #define MSGTR_StartPlaying "Start playing...\n" 82 #define MSGTR_StartPlaying "Start playing...\n"
81 #define MSGTR_SystemTooSlow "\n************************************************************************"\ 83 #define MSGTR_SystemTooSlow "\n************************************************************************"\
82 "\n** Your system is too SLOW to play this! try with -framedrop or RTFM! **"\ 84 "\n** Your system is too SLOW to play this! try with -framedrop or RTFM! **"\
83 "\n************************************************************************\n" 85 "\n************************************************************************\n"
84 //#define MSGTR_ 86 //#define MSGTR_
87
88 // open.c:
89 #define MSGTR_CdDevNotfound "CD-ROM Device '%s' not found!\n"
90 #define MSGTR_ErrTrackSelect "Error selecting VCD track!"
91 #define MSGTR_ReadSTDIN "Reading from stdin...\n"
92 #define MSGTR_UnableOpenURL "Unable to open URL: %s\n"
93 #define MSGTR_ConnToServer "Connected to server: %s\n"
94 #define MSGTR_FileNotFound "File not found: '%s'\n"
95
96 // demuxer.c:
97 #define MSGTR_AudioStreamRedefined "Warning! Audio stream header %d redefined!\n"
98 #define MSGTR_VideoStreamRedefined "Warning! video stream header %d redefined!\n"
99 #define MSGTR_TooManyAudioInBuffer "\nDEMUXER: Too many (%d in %d bytes) audio packets in the buffer!\n"
100 #define MSGTR_TooManyVideoInBuffer "\nDEMUXER: Too many (%d in %d bytes) video packets in the buffer!\n"
101 #define MSGTR_MaybeNI "(maybe you play a non-interleaved stream/file or the codec failed)\n"
102 #define MSGTR_DetectedAVIfile "Detected AVI file format!\n"
103 #define MSGTR_DetectedASFfile "Detected ASF file format!\n"
104 #define MSGTR_DetectedMPEGPESfile "Detected MPEG-PES file format!\n"
105 #define MSGTR_DetectedMPEGPSfile "Detected MPEG-PS file format!\n"
106 #define MSGTR_DetectedMPEGESfile "Detected MPEG-ES file format!\n"
107 #define MSGTR_DetectedQTMOVfile "Detected QuickTime/MOV file format!\n"
108 #define MSGTR_MissingMpegVideo "Missing MPEG video stream!? contact the author, it may be a bug :(\n"
109 #define MSGTR_InvalidMPEGES "Invalid MPEG-ES stream??? contact the author, it may be a bug :(\n"
110 #define MSGTR_FormatNotRecognized "============= Sorry, this file format not recognized/supported ===============\n"\
111 "=== If this file is an AVI, ASF or MPEG stream, please contact the author! ===\n"
112 #define MSGTR_MissingASFvideo "ASF: no video stream found!\n"
113 #define MSGTR_MissingASFaudio "ASF: No Audio stream found... ->nosound\n"
114 #define MSGTR_MissingMPEGaudio "MPEG: No Audio stream found... ->nosound\n"
115
116 //#define MSGTR_
117
118