diff libmpcodecs/dec_audio.c @ 16793:8d4fb5469efb

Make a few more messages translatable by moving them into help_mp-en.h. patch by Paul TT < paultt == at == hackerjournal == dot == it >
author diego
date Tue, 18 Oct 2005 11:11:25 +0000
parents efbfac98cab1
children 6ff3379a0862
line wrap: on
line diff
--- a/libmpcodecs/dec_audio.c	Tue Oct 18 08:22:27 2005 +0000
+++ b/libmpcodecs/dec_audio.c	Tue Oct 18 11:11:25 2005 +0000
@@ -241,7 +241,7 @@
     return 0; // failed
 }
 
-mp_msg(MSGT_DECAUDIO,MSGL_INFO,"Selected audio codec: [%s] afm:%s (%s)\n",
+mp_msg(MSGT_DECAUDIO,MSGL_INFO,MSGTR_SelectedAudioCodec,
     sh_audio->codec->name,sh_audio->codec->drv,sh_audio->codec->info);
 return 1; // success
 }
@@ -306,7 +306,7 @@
   // filter config:  
   memcpy(&afs->cfg,&af_cfg,sizeof(af_cfg_t));
   
-  mp_msg(MSGT_DECAUDIO, MSGL_INFO, "Building audio filter chain for %dHz/%dch/%s -> %dHz/%dch/%s...\n",
+  mp_msg(MSGT_DECAUDIO, MSGL_INFO, MSGTR_BuildingAudioFilterChain,
       afs->input.rate,afs->input.nch,af_fmt2str_short(afs->input.format),
       afs->output.rate,afs->output.nch,af_fmt2str_short(afs->output.format));