From 1e47e4a1a2fb22bb8ec61a117ba0d18d675ac1ff Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 13 Apr 2012 13:49:12 -0500 Subject: [PATCH] Fix missing argument warnings (cherry picked from commit 70be32de2ecf4f60348a4ec2f5e4c80a85d2aae6) --- amarok/src/engine/xine/xine-engine.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/amarok/src/engine/xine/xine-engine.cpp b/amarok/src/engine/xine/xine-engine.cpp index 8eb1a059..8b02865a 100644 --- a/amarok/src/engine/xine/xine-engine.cpp +++ b/amarok/src/engine/xine/xine-engine.cpp @@ -974,11 +974,11 @@ XineEngine::XineEventListener( void *p, const xine_event_t* xineEvent ) case XINE_MSG_UNKNOWN_HOST: message = i18n("The host is unknown for the URL: %1"); goto param; case XINE_MSG_UNKNOWN_DEVICE: - message = i18n("The device name you specified seems invalid."); goto param; + message = i18n("The device name you specified seems invalid.
%1"); goto param; case XINE_MSG_NETWORK_UNREACHABLE: - message = i18n("The network appears unreachable."); goto param; + message = i18n("The network appears unreachable.
%1"); goto param; case XINE_MSG_AUDIO_OUT_UNAVAILABLE: - message = i18n("Audio output unavailable; the device is busy."); goto param; + message = i18n("Audio output unavailable; the device is busy.
%1"); goto param; case XINE_MSG_CONNECTION_REFUSED: message = i18n("The connection was refused for the URL: %1"); goto param; case XINE_MSG_FILE_NOT_FOUND: @@ -988,7 +988,7 @@ XineEngine::XineEventListener( void *p, const xine_event_t* xineEvent ) case XINE_MSG_READ_ERROR: message = i18n("The source cannot be read for the URL: %1"); goto param; case XINE_MSG_LIBRARY_LOAD_ERROR: - message = i18n("A problem occurred while loading a library or decoder."); goto param; + message = i18n("A problem occurred while loading a library or decoder.
%1"); goto param; case XINE_MSG_GENERAL_WARNING: message = i18n("General Warning"); goto explain;