From b34a88e4f44ee2a926c8c30f8fb3954fc7d71b90 Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Sun, 7 Mar 2010 19:25:52 +0200 Subject: translations: tweak cases that relied on concatenating adjacent strings Tweak some code parts that used to rely on string literals from translation macros being concatenated with other adjacent string literals. Break up the resulting string into independently translated parts, so that the existing translations for those parts can still be used. --- mplayer.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'mplayer.c') diff --git a/mplayer.c b/mplayer.c index ed8bf4da83..b13192496a 100644 --- a/mplayer.c +++ b/mplayer.c @@ -820,9 +820,10 @@ static void exit_sighandler(int x){ kill(getpid(),SIGKILL); #endif } - mp_tmsg(MSGT_CPLAYER,MSGL_FATAL,"\n" "\nMPlayer interrupted by signal %d in module: %s\n",x, - current_module?current_module:"unknown" - ); + mp_msg(MSGT_CPLAYER, MSGL_FATAL, "\n"); + mp_tmsg(MSGT_CPLAYER,MSGL_FATAL, + "\nMPlayer interrupted by signal %d in module: %s\n", x, + current_module ? current_module : "unknown"); mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_SIGNAL=%d\n", x); if(sig_count<=1) switch(x){ -- cgit v1.2.3