make message translatable

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22292 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
ivo 2007-02-20 17:19:06 +00:00
parent b4dac96e5a
commit 3e3ad56106
2 changed files with 3 additions and 2 deletions

View File

@ -1559,6 +1559,7 @@ static char help_text[]=
#define MSGTR_MPDEMUX_XMMS_FoundPlugin "Found plugin: %s (%s).\n"
#define MSGTR_MPDEMUX_XMMS_ClosingPlugin "Closing plugin: %s.\n"
#define MSGTR_MPDEMUX_XMMS_WaitForStart "Waiting for the XMMS plugin to start playback of '%s'...\n"
// ========================== LIBMPMENU ===================================

View File

@ -283,8 +283,8 @@ static int demux_xmms_open(demuxer_t* demuxer) {
ip->get_song_info(demuxer->stream->url,&xmms_title,&xmms_length);
if (xmms_length<=0) demuxer->seekable=0;
mp_msg(MSGT_DEMUX,MSGL_INFO,"Waiting for the XMMS plugin to start "
"playback of '%s'...\n",demuxer->stream->url);
mp_msg(MSGT_DEMUX,MSGL_INFO,MSGTR_MPDEMUX_XMMS_WaitForStart,
demuxer->stream->url);
while (xmms_channels==0) {
usleep(10000);
if(ip->get_time()<0) return 0;